pax_global_header00006660000000000000000000000064123455474670014533gustar00rootroot0000000000000052 comment=191f1d46ff94f71a02861e058d6ca9f692193728 gtg-trace-0.2-2+dfsg/000077500000000000000000000000001234554746700143275ustar00rootroot00000000000000gtg-trace-0.2-2+dfsg/AUTHORS000066400000000000000000000002721234554746700154000ustar00rootroot00000000000000 Francois Rue Francois Trahay Johnny Jazeix Kevin Coulomb Mathieu Faverge Olivier Lagrasse gtg-trace-0.2-2+dfsg/COPYING000066400000000000000000000026701234554746700153670ustar00rootroot00000000000000Copyright © CNRS, INRIA, Université Bordeaux 1. This software is governed by the CeCILL-C license under French law and abiding by the rules of distribution of free software. You can use, modify and/ or redistribute the software under the terms of the CeCILL-C license as circulated by CEA, CNRS and INRIA at the following URL "http://www.cecill.info". As a counterpart to the access to the source code and rights to copy, modify and redistribute granted by the license, users are provided only with a limited warranty and the software's author, the holder of the economic rights, and the successive licensors have only limited liability. In this respect, the user's attention is drawn to the risks associated with loading, using, modifying and/or developing or reproducing the software by the user in light of its specific status of free software, that may mean that it is complicated to manipulate, and that also therefore means that it is reserved for developers and experienced professionals having in-depth computer knowledge. Users are therefore encouraged to load and test the software's suitability as regards their requirements in conditions enabling the security of their systems and/or data to be ensured and, more generally, to use and operate it in the same conditions as regards security. The fact that you are presently reading this means that you have had knowledge of the CeCILL-C license and that you accept its terms. gtg-trace-0.2-2+dfsg/ChangeLog000066400000000000000000000003621234554746700161020ustar00rootroot00000000000000Version 0.2 ----------- * Events can now be recorded out of order * Add an AddComment function (not implemented for OTF files) * Improved Vampir/Triva compatibility * Paje traces can now be compressed Version 0.1 ----------- * First release gtg-trace-0.2-2+dfsg/INSTALL000066400000000000000000000366101234554746700153660ustar00rootroot00000000000000Installation Instructions ************************* Copyright (C) 1994-1996, 1999-2002, 2004-2013 Free Software Foundation, Inc. Copying and distribution of this file, with or without modification, are permitted in any medium without royalty provided the copyright notice and this notice are preserved. This file is offered as-is, without warranty of any kind. Basic Installation ================== Briefly, the shell command `./configure && make && make install' should configure, build, and install this package. The following more-detailed instructions are generic; see the `README' file for instructions specific to this package. Some packages provide this `INSTALL' file but do not implement all of the features documented below. The lack of an optional feature in a given package is not necessarily a bug. More recommendations for GNU packages can be found in *note Makefile Conventions: (standards)Makefile Conventions. The `configure' shell script attempts to guess correct values for various system-dependent variables used during compilation. It uses those values to create a `Makefile' in each directory of the package. It may also create one or more `.h' files containing system-dependent definitions. Finally, it creates a shell script `config.status' that you can run in the future to recreate the current configuration, and a file `config.log' containing compiler output (useful mainly for debugging `configure'). It can also use an optional file (typically called `config.cache' and enabled with `--cache-file=config.cache' or simply `-C') that saves the results of its tests to speed up reconfiguring. Caching is disabled by default to prevent problems with accidental use of stale cache files. If you need to do unusual things to compile the package, please try to figure out how `configure' could check whether to do them, and mail diffs or instructions to the address given in the `README' so they can be considered for the next release. If you are using the cache, and at some point `config.cache' contains results you don't want to keep, you may remove or edit it. The file `configure.ac' (or `configure.in') is used to create `configure' by a program called `autoconf'. You need `configure.ac' if you want to change it or regenerate `configure' using a newer version of `autoconf'. The simplest way to compile this package is: 1. `cd' to the directory containing the package's source code and type `./configure' to configure the package for your system. Running `configure' might take a while. While running, it prints some messages telling which features it is checking for. 2. Type `make' to compile the package. 3. Optionally, type `make check' to run any self-tests that come with the package, generally using the just-built uninstalled binaries. 4. Type `make install' to install the programs and any data files and documentation. When installing into a prefix owned by root, it is recommended that the package be configured and built as a regular user, and only the `make install' phase executed with root privileges. 5. Optionally, type `make installcheck' to repeat any self-tests, but this time using the binaries in their final installed location. This target does not install anything. Running this target as a regular user, particularly if the prior `make install' required root privileges, verifies that the installation completed correctly. 6. You can remove the program binaries and object files from the source code directory by typing `make clean'. To also remove the files that `configure' created (so you can compile the package for a different kind of computer), type `make distclean'. There is also a `make maintainer-clean' target, but that is intended mainly for the package's developers. If you use it, you may have to get all sorts of other programs in order to regenerate files that came with the distribution. 7. Often, you can also type `make uninstall' to remove the installed files again. In practice, not all packages have tested that uninstallation works correctly, even though it is required by the GNU Coding Standards. 8. Some packages, particularly those that use Automake, provide `make distcheck', which can by used by developers to test that all other targets like `make install' and `make uninstall' work correctly. This target is generally not run by end users. Compilers and Options ===================== Some systems require unusual options for compilation or linking that the `configure' script does not know about. Run `./configure --help' for details on some of the pertinent environment variables. You can give `configure' initial values for configuration parameters by setting variables in the command line or in the environment. Here is an example: ./configure CC=c99 CFLAGS=-g LIBS=-lposix *Note Defining Variables::, for more details. Compiling For Multiple Architectures ==================================== You can compile the package for more than one kind of computer at the same time, by placing the object files for each architecture in their own directory. To do this, you can use GNU `make'. `cd' to the directory where you want the object files and executables to go and run the `configure' script. `configure' automatically checks for the source code in the directory that `configure' is in and in `..'. This is known as a "VPATH" build. With a non-GNU `make', it is safer to compile the package for one architecture at a time in the source code directory. After you have installed the package for one architecture, use `make distclean' before reconfiguring for another architecture. On MacOS X 10.5 and later systems, you can create libraries and executables that work on multiple system types--known as "fat" or "universal" binaries--by specifying multiple `-arch' options to the compiler but only a single `-arch' option to the preprocessor. Like this: ./configure CC="gcc -arch i386 -arch x86_64 -arch ppc -arch ppc64" \ CXX="g++ -arch i386 -arch x86_64 -arch ppc -arch ppc64" \ CPP="gcc -E" CXXCPP="g++ -E" This is not guaranteed to produce working output in all cases, you may have to build one architecture at a time and combine the results using the `lipo' tool if you have problems. Installation Names ================== By default, `make install' installs the package's commands under `/usr/local/bin', include files under `/usr/local/include', etc. You can specify an installation prefix other than `/usr/local' by giving `configure' the option `--prefix=PREFIX', where PREFIX must be an absolute file name. You can specify separate installation prefixes for architecture-specific files and architecture-independent files. If you pass the option `--exec-prefix=PREFIX' to `configure', the package uses PREFIX as the prefix for installing programs and libraries. Documentation and other data files still use the regular prefix. In addition, if you use an unusual directory layout you can give options like `--bindir=DIR' to specify different values for particular kinds of files. Run `configure --help' for a list of the directories you can set and what kinds of files go in them. In general, the default for these options is expressed in terms of `${prefix}', so that specifying just `--prefix' will affect all of the other directory specifications that were not explicitly provided. The most portable way to affect installation locations is to pass the correct locations to `configure'; however, many packages provide one or both of the following shortcuts of passing variable assignments to the `make install' command line to change installation locations without having to reconfigure or recompile. The first method involves providing an override variable for each affected directory. For example, `make install prefix=/alternate/directory' will choose an alternate location for all directory configuration variables that were expressed in terms of `${prefix}'. Any directories that were specified during `configure', but not in terms of `${prefix}', must each be overridden at install time for the entire installation to be relocated. The approach of makefile variable overrides for each directory variable is required by the GNU Coding Standards, and ideally causes no recompilation. However, some platforms have known limitations with the semantics of shared libraries that end up requiring recompilation when using this method, particularly noticeable in packages that use GNU Libtool. The second method involves providing the `DESTDIR' variable. For example, `make install DESTDIR=/alternate/directory' will prepend `/alternate/directory' before all installation names. The approach of `DESTDIR' overrides is not required by the GNU Coding Standards, and does not work on platforms that have drive letters. On the other hand, it does better at avoiding recompilation issues, and works well even when some directory options were not specified in terms of `${prefix}' at `configure' time. Optional Features ================= If the package supports it, you can cause programs to be installed with an extra prefix or suffix on their names by giving `configure' the option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'. Some packages pay attention to `--enable-FEATURE' options to `configure', where FEATURE indicates an optional part of the package. They may also pay attention to `--with-PACKAGE' options, where PACKAGE is something like `gnu-as' or `x' (for the X Window System). The `README' should mention any `--enable-' and `--with-' options that the package recognizes. For packages that use the X Window System, `configure' can usually find the X include and library files automatically, but if it doesn't, you can use the `configure' options `--x-includes=DIR' and `--x-libraries=DIR' to specify their locations. Some packages offer the ability to configure how verbose the execution of `make' will be. For these packages, running `./configure --enable-silent-rules' sets the default to minimal output, which can be overridden with `make V=1'; while running `./configure --disable-silent-rules' sets the default to verbose, which can be overridden with `make V=0'. Particular systems ================== On HP-UX, the default C compiler is not ANSI C compatible. If GNU CC is not installed, it is recommended to use the following options in order to use an ANSI C compiler: ./configure CC="cc -Ae -D_XOPEN_SOURCE=500" and if that doesn't work, install pre-built binaries of GCC for HP-UX. HP-UX `make' updates targets which have the same time stamps as their prerequisites, which makes it generally unusable when shipped generated files such as `configure' are involved. Use GNU `make' instead. On OSF/1 a.k.a. Tru64, some versions of the default C compiler cannot parse its `' header file. The option `-nodtk' can be used as a workaround. If GNU CC is not installed, it is therefore recommended to try ./configure CC="cc" and if that doesn't work, try ./configure CC="cc -nodtk" On Solaris, don't put `/usr/ucb' early in your `PATH'. This directory contains several dysfunctional programs; working variants of these programs are available in `/usr/bin'. So, if you need `/usr/ucb' in your `PATH', put it _after_ `/usr/bin'. On Haiku, software installed for all users goes in `/boot/common', not `/usr/local'. It is recommended to use the following options: ./configure --prefix=/boot/common Specifying the System Type ========================== There may be some features `configure' cannot figure out automatically, but needs to determine by the type of machine the package will run on. Usually, assuming the package is built to be run on the _same_ architectures, `configure' can figure that out, but if it prints a message saying it cannot guess the machine type, give it the `--build=TYPE' option. TYPE can either be a short name for the system type, such as `sun4', or a canonical name which has the form: CPU-COMPANY-SYSTEM where SYSTEM can have one of these forms: OS KERNEL-OS See the file `config.sub' for the possible values of each field. If `config.sub' isn't included in this package, then this package doesn't need to know the machine type. If you are _building_ compiler tools for cross-compiling, you should use the option `--target=TYPE' to select the type of system they will produce code for. If you want to _use_ a cross compiler, that generates code for a platform different from the build platform, you should specify the "host" platform (i.e., that on which the generated programs will eventually be run) with `--host=TYPE'. Sharing Defaults ================ If you want to set default values for `configure' scripts to share, you can create a site shell script called `config.site' that gives default values for variables like `CC', `cache_file', and `prefix'. `configure' looks for `PREFIX/share/config.site' if it exists, then `PREFIX/etc/config.site' if it exists. Or, you can set the `CONFIG_SITE' environment variable to the location of the site script. A warning: not all `configure' scripts look for a site script. Defining Variables ================== Variables not defined in a site shell script can be set in the environment passed to `configure'. However, some packages may run configure again during the build, and the customized values of these variables may be lost. In order to avoid this problem, you should set them in the `configure' command line, using `VAR=value'. For example: ./configure CC=/usr/local2/bin/gcc causes the specified `gcc' to be used as the C compiler (unless it is overridden in the site shell script). Unfortunately, this technique does not work for `CONFIG_SHELL' due to an Autoconf limitation. Until the limitation is lifted, you can use this workaround: CONFIG_SHELL=/bin/bash ./configure CONFIG_SHELL=/bin/bash `configure' Invocation ====================== `configure' recognizes the following options to control how it operates. `--help' `-h' Print a summary of all of the options to `configure', and exit. `--help=short' `--help=recursive' Print a summary of the options unique to this package's `configure', and exit. The `short' variant lists options used only in the top level, while the `recursive' variant lists options also present in any nested packages. `--version' `-V' Print the version of Autoconf used to generate the `configure' script, and exit. `--cache-file=FILE' Enable the cache: use and save the results of the tests in FILE, traditionally `config.cache'. FILE defaults to `/dev/null' to disable caching. `--config-cache' `-C' Alias for `--cache-file=config.cache'. `--quiet' `--silent' `-q' Do not print messages saying which checks are being made. To suppress all normal output, redirect it to `/dev/null' (any error messages will still be shown). `--srcdir=DIR' Look for the package's source code in directory DIR. Usually `configure' can determine that directory automatically. `--prefix=DIR' Use DIR as the installation prefix. *note Installation Names:: for more details, including other options available for fine-tuning the installation locations. `--no-create' `-n' Run the configure checks, but stop before creating any output files. `configure' also accepts some other, not widely useful, options. Run `configure --help' for more details. gtg-trace-0.2-2+dfsg/Makefile.am000066400000000000000000000004631234554746700163660ustar00rootroot00000000000000SUBDIRS = extlib/ inc/ src/ doc/ pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = gtg.pc EXTRA_DIST = exm/gtg_color.c \ exm/Makefile \ exm/otf_example.c \ exm/paje_example2.c \ exm/paje_example.c \ exm/paje_example.F90 \ exm/vite_example.c gtg-trace-0.2-2+dfsg/Makefile.in000066400000000000000000000651601234554746700164040ustar00rootroot00000000000000# Makefile.in generated by automake 1.14.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 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@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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 = INSTALL NEWS README AUTHORS ChangeLog \ $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(top_srcdir)/configure $(am__configure_deps) \ $(srcdir)/gtg.pc.in COPYING compile config.guess config.sub \ depcomp install-sh missing ltmain.sh 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 = gtg.pc CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac 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__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } am__installdirs = "$(DESTDIR)$(pkgconfigdir)" DATA = $(pkgconfig_DATA) RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ cscope distdir dist dist-all distcheck am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags CSCOPE = cscope DIST_SUBDIRS = $(SUBDIRS) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) distdir = $(PACKAGE)-$(VERSION) top_distdir = $(distdir) am__remove_distdir = \ if test -d "$(distdir)"; then \ find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \ && rm -rf "$(distdir)" \ || { sleep 5 && rm -rf "$(distdir)"; }; \ else :; fi am__post_remove_distdir = $(am__remove_distdir) am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" DIST_ARCHIVES = $(distdir).tar.gz GZIP_ENV = --best DIST_TARGETS = dist-gzip distuninstallcheck_listfiles = find . -type f -print am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \ | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$' distcleancheck_listfiles = find . -type f -print ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ F77 = @F77@ FFLAGS = @FFLAGS@ FGREP = @FGREP@ GREP = @GREP@ HAVE_DOXYGEN = @HAVE_DOXYGEN@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MPIDIR = @MPIDIR@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTFDIR = @OTFDIR@ OTF_INC = @OTF_INC@ OTF_LIB = @OTF_LIB@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ 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@ PDFLATEX = @PDFLATEX@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_MPIDIR_FROM_USER = @USE_MPIDIR_FROM_USER@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_F77 = @ac_ct_F77@ 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@ subdirs = @subdirs@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SUBDIRS = extlib/ inc/ src/ doc/ pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = gtg.pc EXTRA_DIST = exm/gtg_color.c \ exm/Makefile \ exm/otf_example.c \ exm/paje_example2.c \ exm/paje_example.c \ exm/paje_example.F90 \ exm/vite_example.c all: all-recursive .SUFFIXES: am--refresh: Makefile @: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ echo ' cd $(srcdir) && $(AUTOMAKE) --gnu'; \ $(am__cd) $(srcdir) && $(AUTOMAKE) --gnu \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu 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: $(am__configure_deps) $(am__cd) $(srcdir) && $(AUTOCONF) $(ACLOCAL_M4): $(am__aclocal_m4_deps) $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) $(am__aclocal_m4_deps): gtg.pc: $(top_builddir)/config.status $(srcdir)/gtg.pc.in cd $(top_builddir) && $(SHELL) ./config.status $@ mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs distclean-libtool: -rm -f libtool config.lt install-pkgconfigDATA: $(pkgconfig_DATA) @$(NORMAL_INSTALL) @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(pkgconfigdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)" || exit 1; \ fi; \ 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|^.*/||'`; \ dir='$(DESTDIR)$(pkgconfigdir)'; $(am__uninstall_files_from_dir) # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ 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-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ 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" cscope: cscope.files test ! -s cscope.files \ || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS) clean-cscope: -rm -f cscope.files cscope.files: clean-cscope cscopelist cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -rm -f cscope.out cscope.in.out cscope.po.out cscope.files 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 @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ $(am__make_dryrun) \ || test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done -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__post_remove_distdir) dist-bzip2: distdir tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2 $(am__post_remove_distdir) dist-lzip: distdir tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz $(am__post_remove_distdir) dist-xz: distdir tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz $(am__post_remove_distdir) dist-tarZ: distdir @echo WARNING: "Support for shar distribution archives is" \ "deprecated." >&2 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z $(am__post_remove_distdir) dist-shar: distdir @echo WARNING: "Support for distribution archives compressed with" \ "legacy program 'compress' is deprecated." >&2 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz $(am__post_remove_distdir) dist-zip: distdir -rm -f $(distdir).zip zip -rq $(distdir).zip $(distdir) $(am__post_remove_distdir) dist dist-all: $(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:' $(am__post_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.lz*) \ lzip -dc $(distdir).tar.lz | $(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 u+w $(distdir) mkdir $(distdir)/_build $(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 \ $(AM_DISTCHECK_CONFIGURE_FLAGS) \ $(DISTCHECK_CONFIGURE_FLAGS) \ --srcdir=.. --prefix="$$dc_install_base" \ && $(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__post_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: @test -n '$(distuninstallcheck_dir)' || { \ echo 'ERROR: trying to run $@ with an empty' \ '$$(distuninstallcheck_dir)' >&2; \ exit 1; \ }; \ $(am__cd) '$(distuninstallcheck_dir)' || { \ echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \ exit 1; \ }; \ test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \ || { 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-recursive all-am: Makefile $(DATA) installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(pkgconfigdir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: 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." clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -f Makefile distclean-am: clean-am distclean-generic distclean-libtool \ distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-pkgconfigDATA install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -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-recursive mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: uninstall-pkgconfigDATA .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \ am--refresh check check-am clean clean-cscope clean-generic \ clean-libtool cscope cscopelist-am ctags ctags-am dist \ dist-all dist-bzip2 dist-gzip dist-lzip dist-shar dist-tarZ \ dist-xz dist-zip distcheck distclean distclean-generic \ distclean-libtool 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-pdf install-pdf-am install-pkgconfigDATA install-ps \ install-ps-am install-strip installcheck installcheck-am \ installdirs installdirs-am maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ uninstall-am uninstall-pkgconfigDATA # 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: gtg-trace-0.2-2+dfsg/NEWS000066400000000000000000000000001234554746700150140ustar00rootroot00000000000000gtg-trace-0.2-2+dfsg/README000066400000000000000000000051331234554746700152110ustar00rootroot00000000000000============================================== === Introduction : == ============================================== This directory contains the Generic Trace Generator (GTG) project. Authors are : Francois Rue , Francois Trahay , Johnny Jazeix , Kevin Coulomb, Mathieu Faverge, Olivier Lagrasse ============================================== === Files : == ============================================== -- Files README : This file, presenting the project AUTHORS : The authors of the project ChangeLog : The list of the changes by version configure.ac : Used to create the configure file with autoreconf COPYING : The copying rule COPYRIGHT : The licence of the library INSTALL : How to install the GTG library Makefile.am : Some hints to generate the Makefile throught configure NEWS : News about the project -- Directories *exm* : Contains examples of programm using the library *inc* : Contains files to include *src/C* : Contains the C implementation of the API *src/FORTRAN* : Contains the Fortran implementation of the API *test* : Regular developers test ============================================== === Building from the SVN repository: == ============================================== First, you need to generate the configure files by running autoreconf: $ autoreconf -vfi Then, simply run configure && make && make install ============================================== === Examples : == ============================================== The examples show code using the library. You can compile them with *make examples*. Their execution enables the creation of traces : gtg_color creates the gtg_color.trace trace cpaje creates the cpaje.trace using the C API fpaje creates the fpaje.trace using the Fortran API cpaje2 creates the cpaje2.trace using the C API cvite creates the cvite_root.ept trace (with cvite_proc*.ept) using the C API The traces can be viewed using the ViTE tool. This API is used by the eztrace that automatically generate traces for code, without modifying it manually. ============================================== === Support : == ============================================== If you encounter any problem, please contact the GTG developper mailing list (gtg-devel@lists.gforge.inria.fr) so that we can fix the feature as soon as possible. You can also give us some feedback to help us improve the API. gtg-trace-0.2-2+dfsg/aclocal.m4000066400000000000000000012554661234554746700162120ustar00rootroot00000000000000# generated automatically by aclocal 1.14.1 -*- Autoconf -*- # Copyright (C) 1996-2013 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_CONFIG_MACRO_DIRS], [m4_defun([_AM_CONFIG_MACRO_DIRS], [])m4_defun([AC_CONFIG_MACRO_DIRS], [_AM_CONFIG_MACRO_DIRS($@)])]) m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.69],, [m4_warning([this file was generated for autoconf 2.69. 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'.])]) # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- # # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, # 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # Written by Gordon Matzigkeit, 1996 # # 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. m4_define([_LT_COPYING], [dnl # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, # 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # Written by Gordon Matzigkeit, 1996 # # This file is part of GNU Libtool. # # GNU Libtool 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. # # As a special exception to the GNU General Public License, # if you distribute this file as part of a program or library that # is built using GNU Libtool, you may include this file under the # same distribution terms that you use for the rest of that program. # # GNU Libtool 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 GNU Libtool; see the file COPYING. If not, a copy # can be downloaded from http://www.gnu.org/licenses/gpl.html, or # obtained by writing to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. ]) # serial 57 LT_INIT # LT_PREREQ(VERSION) # ------------------ # Complain and exit if this libtool version is less that VERSION. m4_defun([LT_PREREQ], [m4_if(m4_version_compare(m4_defn([LT_PACKAGE_VERSION]), [$1]), -1, [m4_default([$3], [m4_fatal([Libtool version $1 or higher is required], 63)])], [$2])]) # _LT_CHECK_BUILDDIR # ------------------ # Complain if the absolute build directory name contains unusual characters m4_defun([_LT_CHECK_BUILDDIR], [case `pwd` in *\ * | *\ *) AC_MSG_WARN([Libtool does not cope well with whitespace in `pwd`]) ;; esac ]) # LT_INIT([OPTIONS]) # ------------------ AC_DEFUN([LT_INIT], [AC_PREREQ([2.58])dnl We use AC_INCLUDES_DEFAULT AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl AC_BEFORE([$0], [LT_LANG])dnl AC_BEFORE([$0], [LT_OUTPUT])dnl AC_BEFORE([$0], [LTDL_INIT])dnl m4_require([_LT_CHECK_BUILDDIR])dnl dnl Autoconf doesn't catch unexpanded LT_ macros by default: m4_pattern_forbid([^_?LT_[A-Z_]+$])dnl m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])dnl dnl aclocal doesn't pull ltoptions.m4, ltsugar.m4, or ltversion.m4 dnl unless we require an AC_DEFUNed macro: AC_REQUIRE([LTOPTIONS_VERSION])dnl AC_REQUIRE([LTSUGAR_VERSION])dnl AC_REQUIRE([LTVERSION_VERSION])dnl AC_REQUIRE([LTOBSOLETE_VERSION])dnl m4_require([_LT_PROG_LTMAIN])dnl _LT_SHELL_INIT([SHELL=${CONFIG_SHELL-/bin/sh}]) dnl Parse OPTIONS _LT_SET_OPTIONS([$0], [$1]) # This can be used to rebuild libtool when needed LIBTOOL_DEPS="$ltmain" # Always use our own libtool. LIBTOOL='$(SHELL) $(top_builddir)/libtool' AC_SUBST(LIBTOOL)dnl _LT_SETUP # Only expand once: m4_define([LT_INIT]) ])# LT_INIT # Old names: AU_ALIAS([AC_PROG_LIBTOOL], [LT_INIT]) AU_ALIAS([AM_PROG_LIBTOOL], [LT_INIT]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_PROG_LIBTOOL], []) dnl AC_DEFUN([AM_PROG_LIBTOOL], []) # _LT_CC_BASENAME(CC) # ------------------- # Calculate cc_basename. Skip known compiler wrappers and cross-prefix. m4_defun([_LT_CC_BASENAME], [for cc_temp in $1""; do case $cc_temp in compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;; distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` ]) # _LT_FILEUTILS_DEFAULTS # ---------------------- # It is okay to use these file commands and assume they have been set # sensibly after `m4_require([_LT_FILEUTILS_DEFAULTS])'. m4_defun([_LT_FILEUTILS_DEFAULTS], [: ${CP="cp -f"} : ${MV="mv -f"} : ${RM="rm -f"} ])# _LT_FILEUTILS_DEFAULTS # _LT_SETUP # --------- m4_defun([_LT_SETUP], [AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl AC_REQUIRE([_LT_PREPARE_SED_QUOTE_VARS])dnl AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])dnl _LT_DECL([], [PATH_SEPARATOR], [1], [The PATH separator for the build system])dnl dnl _LT_DECL([], [host_alias], [0], [The host system])dnl _LT_DECL([], [host], [0])dnl _LT_DECL([], [host_os], [0])dnl dnl _LT_DECL([], [build_alias], [0], [The build system])dnl _LT_DECL([], [build], [0])dnl _LT_DECL([], [build_os], [0])dnl dnl AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([LT_PATH_LD])dnl AC_REQUIRE([LT_PATH_NM])dnl dnl AC_REQUIRE([AC_PROG_LN_S])dnl test -z "$LN_S" && LN_S="ln -s" _LT_DECL([], [LN_S], [1], [Whether we need soft or hard links])dnl dnl AC_REQUIRE([LT_CMD_MAX_LEN])dnl _LT_DECL([objext], [ac_objext], [0], [Object file suffix (normally "o")])dnl _LT_DECL([], [exeext], [0], [Executable file suffix (normally "")])dnl dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_CHECK_SHELL_FEATURES])dnl m4_require([_LT_PATH_CONVERSION_FUNCTIONS])dnl m4_require([_LT_CMD_RELOAD])dnl m4_require([_LT_CHECK_MAGIC_METHOD])dnl m4_require([_LT_CHECK_SHAREDLIB_FROM_LINKLIB])dnl m4_require([_LT_CMD_OLD_ARCHIVE])dnl m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl m4_require([_LT_WITH_SYSROOT])dnl _LT_CONFIG_LIBTOOL_INIT([ # See if we are running on zsh, and set the options which allow our # commands through without removal of \ escapes INIT. if test -n "\${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi ]) if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi _LT_CHECK_OBJDIR m4_require([_LT_TAG_COMPILER])dnl case $host_os in aix3*) # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test "X${COLLECT_NAMES+set}" != Xset; then COLLECT_NAMES= export COLLECT_NAMES fi ;; esac # Global variables: ofile=libtool can_build_shared=yes # All known linkers require a `.a' archive for static linking (except MSVC, # which needs '.lib'). libext=a with_gnu_ld="$lt_cv_prog_gnu_ld" old_CC="$CC" old_CFLAGS="$CFLAGS" # Set sane defaults for various variables test -z "$CC" && CC=cc test -z "$LTCC" && LTCC=$CC test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS test -z "$LD" && LD=ld test -z "$ac_objext" && ac_objext=o _LT_CC_BASENAME([$compiler]) # Only perform the check for file, if the check method requires it test -z "$MAGIC_CMD" && MAGIC_CMD=file case $deplibs_check_method in file_magic*) if test "$file_magic_cmd" = '$MAGIC_CMD'; then _LT_PATH_MAGIC fi ;; esac # Use C for the default configuration in the libtool script LT_SUPPORTED_TAG([CC]) _LT_LANG_C_CONFIG _LT_LANG_DEFAULT_CONFIG _LT_CONFIG_COMMANDS ])# _LT_SETUP # _LT_PREPARE_SED_QUOTE_VARS # -------------------------- # Define a few sed substitution that help us do robust quoting. m4_defun([_LT_PREPARE_SED_QUOTE_VARS], [# Backslashify metacharacters that are still active within # double-quoted strings. sed_quote_subst='s/\([["`$\\]]\)/\\\1/g' # Same as above, but do not quote variable references. double_quote_subst='s/\([["`\\]]\)/\\\1/g' # Sed substitution to delay expansion of an escaped shell variable in a # double_quote_subst'ed string. delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' # Sed substitution to delay expansion of an escaped single quote. delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g' # Sed substitution to avoid accidental globbing in evaled expressions no_glob_subst='s/\*/\\\*/g' ]) # _LT_PROG_LTMAIN # --------------- # Note that this code is called both from `configure', and `config.status' # now that we use AC_CONFIG_COMMANDS to generate libtool. Notably, # `config.status' has no value for ac_aux_dir unless we are using Automake, # so we pass a copy along to make sure it has a sensible value anyway. m4_defun([_LT_PROG_LTMAIN], [m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([ltmain.sh])])dnl _LT_CONFIG_LIBTOOL_INIT([ac_aux_dir='$ac_aux_dir']) ltmain="$ac_aux_dir/ltmain.sh" ])# _LT_PROG_LTMAIN # So that we can recreate a full libtool script including additional # tags, we accumulate the chunks of code to send to AC_CONFIG_COMMANDS # in macros and then make a single call at the end using the `libtool' # label. # _LT_CONFIG_LIBTOOL_INIT([INIT-COMMANDS]) # ---------------------------------------- # Register INIT-COMMANDS to be passed to AC_CONFIG_COMMANDS later. m4_define([_LT_CONFIG_LIBTOOL_INIT], [m4_ifval([$1], [m4_append([_LT_OUTPUT_LIBTOOL_INIT], [$1 ])])]) # Initialize. m4_define([_LT_OUTPUT_LIBTOOL_INIT]) # _LT_CONFIG_LIBTOOL([COMMANDS]) # ------------------------------ # Register COMMANDS to be passed to AC_CONFIG_COMMANDS later. m4_define([_LT_CONFIG_LIBTOOL], [m4_ifval([$1], [m4_append([_LT_OUTPUT_LIBTOOL_COMMANDS], [$1 ])])]) # Initialize. m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS]) # _LT_CONFIG_SAVE_COMMANDS([COMMANDS], [INIT_COMMANDS]) # ----------------------------------------------------- m4_defun([_LT_CONFIG_SAVE_COMMANDS], [_LT_CONFIG_LIBTOOL([$1]) _LT_CONFIG_LIBTOOL_INIT([$2]) ]) # _LT_FORMAT_COMMENT([COMMENT]) # ----------------------------- # Add leading comment marks to the start of each line, and a trailing # full-stop to the whole comment if one is not present already. m4_define([_LT_FORMAT_COMMENT], [m4_ifval([$1], [ m4_bpatsubst([m4_bpatsubst([$1], [^ *], [# ])], [['`$\]], [\\\&])]m4_bmatch([$1], [[!?.]$], [], [.]) )]) # _LT_DECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION], [IS-TAGGED?]) # ------------------------------------------------------------------- # CONFIGNAME is the name given to the value in the libtool script. # VARNAME is the (base) name used in the configure script. # VALUE may be 0, 1 or 2 for a computed quote escaped value based on # VARNAME. Any other value will be used directly. m4_define([_LT_DECL], [lt_if_append_uniq([lt_decl_varnames], [$2], [, ], [lt_dict_add_subkey([lt_decl_dict], [$2], [libtool_name], [m4_ifval([$1], [$1], [$2])]) lt_dict_add_subkey([lt_decl_dict], [$2], [value], [$3]) m4_ifval([$4], [lt_dict_add_subkey([lt_decl_dict], [$2], [description], [$4])]) lt_dict_add_subkey([lt_decl_dict], [$2], [tagged?], [m4_ifval([$5], [yes], [no])])]) ]) # _LT_TAGDECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION]) # -------------------------------------------------------- m4_define([_LT_TAGDECL], [_LT_DECL([$1], [$2], [$3], [$4], [yes])]) # lt_decl_tag_varnames([SEPARATOR], [VARNAME1...]) # ------------------------------------------------ m4_define([lt_decl_tag_varnames], [_lt_decl_filter([tagged?], [yes], $@)]) # _lt_decl_filter(SUBKEY, VALUE, [SEPARATOR], [VARNAME1..]) # --------------------------------------------------------- m4_define([_lt_decl_filter], [m4_case([$#], [0], [m4_fatal([$0: too few arguments: $#])], [1], [m4_fatal([$0: too few arguments: $#: $1])], [2], [lt_dict_filter([lt_decl_dict], [$1], [$2], [], lt_decl_varnames)], [3], [lt_dict_filter([lt_decl_dict], [$1], [$2], [$3], lt_decl_varnames)], [lt_dict_filter([lt_decl_dict], $@)])[]dnl ]) # lt_decl_quote_varnames([SEPARATOR], [VARNAME1...]) # -------------------------------------------------- m4_define([lt_decl_quote_varnames], [_lt_decl_filter([value], [1], $@)]) # lt_decl_dquote_varnames([SEPARATOR], [VARNAME1...]) # --------------------------------------------------- m4_define([lt_decl_dquote_varnames], [_lt_decl_filter([value], [2], $@)]) # lt_decl_varnames_tagged([SEPARATOR], [VARNAME1...]) # --------------------------------------------------- m4_define([lt_decl_varnames_tagged], [m4_assert([$# <= 2])dnl _$0(m4_quote(m4_default([$1], [[, ]])), m4_ifval([$2], [[$2]], [m4_dquote(lt_decl_tag_varnames)]), m4_split(m4_normalize(m4_quote(_LT_TAGS)), [ ]))]) m4_define([_lt_decl_varnames_tagged], [m4_ifval([$3], [lt_combine([$1], [$2], [_], $3)])]) # lt_decl_all_varnames([SEPARATOR], [VARNAME1...]) # ------------------------------------------------ m4_define([lt_decl_all_varnames], [_$0(m4_quote(m4_default([$1], [[, ]])), m4_if([$2], [], m4_quote(lt_decl_varnames), m4_quote(m4_shift($@))))[]dnl ]) m4_define([_lt_decl_all_varnames], [lt_join($@, lt_decl_varnames_tagged([$1], lt_decl_tag_varnames([[, ]], m4_shift($@))))dnl ]) # _LT_CONFIG_STATUS_DECLARE([VARNAME]) # ------------------------------------ # Quote a variable value, and forward it to `config.status' so that its # declaration there will have the same value as in `configure'. VARNAME # must have a single quote delimited value for this to work. m4_define([_LT_CONFIG_STATUS_DECLARE], [$1='`$ECHO "$][$1" | $SED "$delay_single_quote_subst"`']) # _LT_CONFIG_STATUS_DECLARATIONS # ------------------------------ # We delimit libtool config variables with single quotes, so when # we write them to config.status, we have to be sure to quote all # embedded single quotes properly. In configure, this macro expands # each variable declared with _LT_DECL (and _LT_TAGDECL) into: # # ='`$ECHO "$" | $SED "$delay_single_quote_subst"`' m4_defun([_LT_CONFIG_STATUS_DECLARATIONS], [m4_foreach([_lt_var], m4_quote(lt_decl_all_varnames), [m4_n([_LT_CONFIG_STATUS_DECLARE(_lt_var)])])]) # _LT_LIBTOOL_TAGS # ---------------- # Output comment and list of tags supported by the script m4_defun([_LT_LIBTOOL_TAGS], [_LT_FORMAT_COMMENT([The names of the tagged configurations supported by this script])dnl available_tags="_LT_TAGS"dnl ]) # _LT_LIBTOOL_DECLARE(VARNAME, [TAG]) # ----------------------------------- # Extract the dictionary values for VARNAME (optionally with TAG) and # expand to a commented shell variable setting: # # # Some comment about what VAR is for. # visible_name=$lt_internal_name m4_define([_LT_LIBTOOL_DECLARE], [_LT_FORMAT_COMMENT(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [description])))[]dnl m4_pushdef([_libtool_name], m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [libtool_name])))[]dnl m4_case(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [value])), [0], [_libtool_name=[$]$1], [1], [_libtool_name=$lt_[]$1], [2], [_libtool_name=$lt_[]$1], [_libtool_name=lt_dict_fetch([lt_decl_dict], [$1], [value])])[]dnl m4_ifval([$2], [_$2])[]m4_popdef([_libtool_name])[]dnl ]) # _LT_LIBTOOL_CONFIG_VARS # ----------------------- # Produce commented declarations of non-tagged libtool config variables # suitable for insertion in the LIBTOOL CONFIG section of the `libtool' # script. Tagged libtool config variables (even for the LIBTOOL CONFIG # section) are produced by _LT_LIBTOOL_TAG_VARS. m4_defun([_LT_LIBTOOL_CONFIG_VARS], [m4_foreach([_lt_var], m4_quote(_lt_decl_filter([tagged?], [no], [], lt_decl_varnames)), [m4_n([_LT_LIBTOOL_DECLARE(_lt_var)])])]) # _LT_LIBTOOL_TAG_VARS(TAG) # ------------------------- m4_define([_LT_LIBTOOL_TAG_VARS], [m4_foreach([_lt_var], m4_quote(lt_decl_tag_varnames), [m4_n([_LT_LIBTOOL_DECLARE(_lt_var, [$1])])])]) # _LT_TAGVAR(VARNAME, [TAGNAME]) # ------------------------------ m4_define([_LT_TAGVAR], [m4_ifval([$2], [$1_$2], [$1])]) # _LT_CONFIG_COMMANDS # ------------------- # Send accumulated output to $CONFIG_STATUS. Thanks to the lists of # variables for single and double quote escaping we saved from calls # to _LT_DECL, we can put quote escaped variables declarations # into `config.status', and then the shell code to quote escape them in # for loops in `config.status'. Finally, any additional code accumulated # from calls to _LT_CONFIG_LIBTOOL_INIT is expanded. m4_defun([_LT_CONFIG_COMMANDS], [AC_PROVIDE_IFELSE([LT_OUTPUT], dnl If the libtool generation code has been placed in $CONFIG_LT, dnl instead of duplicating it all over again into config.status, dnl then we will have config.status run $CONFIG_LT later, so it dnl needs to know what name is stored there: [AC_CONFIG_COMMANDS([libtool], [$SHELL $CONFIG_LT || AS_EXIT(1)], [CONFIG_LT='$CONFIG_LT'])], dnl If the libtool generation code is destined for config.status, dnl expand the accumulated commands and init code now: [AC_CONFIG_COMMANDS([libtool], [_LT_OUTPUT_LIBTOOL_COMMANDS], [_LT_OUTPUT_LIBTOOL_COMMANDS_INIT])]) ])#_LT_CONFIG_COMMANDS # Initialize. m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS_INIT], [ # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH sed_quote_subst='$sed_quote_subst' double_quote_subst='$double_quote_subst' delay_variable_subst='$delay_variable_subst' _LT_CONFIG_STATUS_DECLARATIONS LTCC='$LTCC' LTCFLAGS='$LTCFLAGS' compiler='$compiler_DEFAULT' # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF \$[]1 _LTECHO_EOF' } # Quote evaled strings. for var in lt_decl_all_varnames([[ \ ]], lt_decl_quote_varnames); do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[[\\\\\\\`\\"\\\$]]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done # Double-quote double-evaled strings. for var in lt_decl_all_varnames([[ \ ]], lt_decl_dquote_varnames); do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[[\\\\\\\`\\"\\\$]]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done _LT_OUTPUT_LIBTOOL_INIT ]) # _LT_GENERATED_FILE_INIT(FILE, [COMMENT]) # ------------------------------------ # Generate a child script FILE with all initialization necessary to # reuse the environment learned by the parent script, and make the # file executable. If COMMENT is supplied, it is inserted after the # `#!' sequence but before initialization text begins. After this # macro, additional text can be appended to FILE to form the body of # the child script. The macro ends with non-zero status if the # file could not be fully written (such as if the disk is full). m4_ifdef([AS_INIT_GENERATED], [m4_defun([_LT_GENERATED_FILE_INIT],[AS_INIT_GENERATED($@)])], [m4_defun([_LT_GENERATED_FILE_INIT], [m4_require([AS_PREPARE])]dnl [m4_pushdef([AS_MESSAGE_LOG_FD])]dnl [lt_write_fail=0 cat >$1 <<_ASEOF || lt_write_fail=1 #! $SHELL # Generated by $as_me. $2 SHELL=\${CONFIG_SHELL-$SHELL} export SHELL _ASEOF cat >>$1 <<\_ASEOF || lt_write_fail=1 AS_SHELL_SANITIZE _AS_PREPARE exec AS_MESSAGE_FD>&1 _ASEOF test $lt_write_fail = 0 && chmod +x $1[]dnl m4_popdef([AS_MESSAGE_LOG_FD])])])# _LT_GENERATED_FILE_INIT # LT_OUTPUT # --------- # This macro allows early generation of the libtool script (before # AC_OUTPUT is called), incase it is used in configure for compilation # tests. AC_DEFUN([LT_OUTPUT], [: ${CONFIG_LT=./config.lt} AC_MSG_NOTICE([creating $CONFIG_LT]) _LT_GENERATED_FILE_INIT(["$CONFIG_LT"], [# Run this file to recreate a libtool stub with the current configuration.]) cat >>"$CONFIG_LT" <<\_LTEOF lt_cl_silent=false exec AS_MESSAGE_LOG_FD>>config.log { echo AS_BOX([Running $as_me.]) } >&AS_MESSAGE_LOG_FD lt_cl_help="\ \`$as_me' creates a local libtool stub from the current configuration, for use in further configure time tests before the real libtool is generated. Usage: $[0] [[OPTIONS]] -h, --help print this help, then exit -V, --version print version number, then exit -q, --quiet do not print progress messages -d, --debug don't remove temporary files Report bugs to ." lt_cl_version="\ m4_ifset([AC_PACKAGE_NAME], [AC_PACKAGE_NAME ])config.lt[]dnl m4_ifset([AC_PACKAGE_VERSION], [ AC_PACKAGE_VERSION]) configured by $[0], generated by m4_PACKAGE_STRING. Copyright (C) 2011 Free Software Foundation, Inc. This config.lt script is free software; the Free Software Foundation gives unlimited permision to copy, distribute and modify it." while test $[#] != 0 do case $[1] in --version | --v* | -V ) echo "$lt_cl_version"; exit 0 ;; --help | --h* | -h ) echo "$lt_cl_help"; exit 0 ;; --debug | --d* | -d ) debug=: ;; --quiet | --q* | --silent | --s* | -q ) lt_cl_silent=: ;; -*) AC_MSG_ERROR([unrecognized option: $[1] Try \`$[0] --help' for more information.]) ;; *) AC_MSG_ERROR([unrecognized argument: $[1] Try \`$[0] --help' for more information.]) ;; esac shift done if $lt_cl_silent; then exec AS_MESSAGE_FD>/dev/null fi _LTEOF cat >>"$CONFIG_LT" <<_LTEOF _LT_OUTPUT_LIBTOOL_COMMANDS_INIT _LTEOF cat >>"$CONFIG_LT" <<\_LTEOF AC_MSG_NOTICE([creating $ofile]) _LT_OUTPUT_LIBTOOL_COMMANDS AS_EXIT(0) _LTEOF chmod +x "$CONFIG_LT" # configure is writing to config.log, but config.lt does its own redirection, # appending to config.log, which fails on DOS, as config.log is still kept # open by configure. Here we exec the FD to /dev/null, effectively closing # config.log, so it can be properly (re)opened and appended to by config.lt. lt_cl_success=: test "$silent" = yes && lt_config_lt_args="$lt_config_lt_args --quiet" exec AS_MESSAGE_LOG_FD>/dev/null $SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false exec AS_MESSAGE_LOG_FD>>config.log $lt_cl_success || AS_EXIT(1) ])# LT_OUTPUT # _LT_CONFIG(TAG) # --------------- # If TAG is the built-in tag, create an initial libtool script with a # default configuration from the untagged config vars. Otherwise add code # to config.status for appending the configuration named by TAG from the # matching tagged config vars. m4_defun([_LT_CONFIG], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl _LT_CONFIG_SAVE_COMMANDS([ m4_define([_LT_TAG], m4_if([$1], [], [C], [$1]))dnl m4_if(_LT_TAG, [C], [ # See if we are running on zsh, and set the options which allow our # commands through without removal of \ escapes. if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi cfgfile="${ofile}T" trap "$RM \"$cfgfile\"; exit 1" 1 2 15 $RM "$cfgfile" cat <<_LT_EOF >> "$cfgfile" #! $SHELL # `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services. # Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # NOTE: Changes made to this file will be lost: look at ltmain.sh. # _LT_COPYING _LT_LIBTOOL_TAGS # ### BEGIN LIBTOOL CONFIG _LT_LIBTOOL_CONFIG_VARS _LT_LIBTOOL_TAG_VARS # ### END LIBTOOL CONFIG _LT_EOF case $host_os in aix3*) cat <<\_LT_EOF >> "$cfgfile" # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test "X${COLLECT_NAMES+set}" != Xset; then COLLECT_NAMES= export COLLECT_NAMES fi _LT_EOF ;; esac _LT_PROG_LTMAIN # We use sed instead of cat because bash on DJGPP gets confused if # if finds mixed CR/LF and LF-only lines. Since sed operates in # text mode, it properly converts lines to CR/LF. This bash problem # is reportedly fixed, but why not run on old versions too? sed '$q' "$ltmain" >> "$cfgfile" \ || (rm -f "$cfgfile"; exit 1) _LT_PROG_REPLACE_SHELLFNS mv -f "$cfgfile" "$ofile" || (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") chmod +x "$ofile" ], [cat <<_LT_EOF >> "$ofile" dnl Unfortunately we have to use $1 here, since _LT_TAG is not expanded dnl in a comment (ie after a #). # ### BEGIN LIBTOOL TAG CONFIG: $1 _LT_LIBTOOL_TAG_VARS(_LT_TAG) # ### END LIBTOOL TAG CONFIG: $1 _LT_EOF ])dnl /m4_if ], [m4_if([$1], [], [ PACKAGE='$PACKAGE' VERSION='$VERSION' TIMESTAMP='$TIMESTAMP' RM='$RM' ofile='$ofile'], []) ])dnl /_LT_CONFIG_SAVE_COMMANDS ])# _LT_CONFIG # LT_SUPPORTED_TAG(TAG) # --------------------- # Trace this macro to discover what tags are supported by the libtool # --tag option, using: # autoconf --trace 'LT_SUPPORTED_TAG:$1' AC_DEFUN([LT_SUPPORTED_TAG], []) # C support is built-in for now m4_define([_LT_LANG_C_enabled], []) m4_define([_LT_TAGS], []) # LT_LANG(LANG) # ------------- # Enable libtool support for the given language if not already enabled. AC_DEFUN([LT_LANG], [AC_BEFORE([$0], [LT_OUTPUT])dnl m4_case([$1], [C], [_LT_LANG(C)], [C++], [_LT_LANG(CXX)], [Go], [_LT_LANG(GO)], [Java], [_LT_LANG(GCJ)], [Fortran 77], [_LT_LANG(F77)], [Fortran], [_LT_LANG(FC)], [Windows Resource], [_LT_LANG(RC)], [m4_ifdef([_LT_LANG_]$1[_CONFIG], [_LT_LANG($1)], [m4_fatal([$0: unsupported language: "$1"])])])dnl ])# LT_LANG # _LT_LANG(LANGNAME) # ------------------ m4_defun([_LT_LANG], [m4_ifdef([_LT_LANG_]$1[_enabled], [], [LT_SUPPORTED_TAG([$1])dnl m4_append([_LT_TAGS], [$1 ])dnl m4_define([_LT_LANG_]$1[_enabled], [])dnl _LT_LANG_$1_CONFIG($1)])dnl ])# _LT_LANG m4_ifndef([AC_PROG_GO], [ # NOTE: This macro has been submitted for inclusion into # # GNU Autoconf as AC_PROG_GO. When it is available in # # a released version of Autoconf we should remove this # # macro and use it instead. # m4_defun([AC_PROG_GO], [AC_LANG_PUSH(Go)dnl AC_ARG_VAR([GOC], [Go compiler command])dnl AC_ARG_VAR([GOFLAGS], [Go compiler flags])dnl _AC_ARG_VAR_LDFLAGS()dnl AC_CHECK_TOOL(GOC, gccgo) if test -z "$GOC"; then if test -n "$ac_tool_prefix"; then AC_CHECK_PROG(GOC, [${ac_tool_prefix}gccgo], [${ac_tool_prefix}gccgo]) fi fi if test -z "$GOC"; then AC_CHECK_PROG(GOC, gccgo, gccgo, false) fi ])#m4_defun ])#m4_ifndef # _LT_LANG_DEFAULT_CONFIG # ----------------------- m4_defun([_LT_LANG_DEFAULT_CONFIG], [AC_PROVIDE_IFELSE([AC_PROG_CXX], [LT_LANG(CXX)], [m4_define([AC_PROG_CXX], defn([AC_PROG_CXX])[LT_LANG(CXX)])]) AC_PROVIDE_IFELSE([AC_PROG_F77], [LT_LANG(F77)], [m4_define([AC_PROG_F77], defn([AC_PROG_F77])[LT_LANG(F77)])]) AC_PROVIDE_IFELSE([AC_PROG_FC], [LT_LANG(FC)], [m4_define([AC_PROG_FC], defn([AC_PROG_FC])[LT_LANG(FC)])]) dnl The call to [A][M_PROG_GCJ] is quoted like that to stop aclocal dnl pulling things in needlessly. AC_PROVIDE_IFELSE([AC_PROG_GCJ], [LT_LANG(GCJ)], [AC_PROVIDE_IFELSE([A][M_PROG_GCJ], [LT_LANG(GCJ)], [AC_PROVIDE_IFELSE([LT_PROG_GCJ], [LT_LANG(GCJ)], [m4_ifdef([AC_PROG_GCJ], [m4_define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[LT_LANG(GCJ)])]) m4_ifdef([A][M_PROG_GCJ], [m4_define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[LT_LANG(GCJ)])]) m4_ifdef([LT_PROG_GCJ], [m4_define([LT_PROG_GCJ], defn([LT_PROG_GCJ])[LT_LANG(GCJ)])])])])]) AC_PROVIDE_IFELSE([AC_PROG_GO], [LT_LANG(GO)], [m4_define([AC_PROG_GO], defn([AC_PROG_GO])[LT_LANG(GO)])]) AC_PROVIDE_IFELSE([LT_PROG_RC], [LT_LANG(RC)], [m4_define([LT_PROG_RC], defn([LT_PROG_RC])[LT_LANG(RC)])]) ])# _LT_LANG_DEFAULT_CONFIG # Obsolete macros: AU_DEFUN([AC_LIBTOOL_CXX], [LT_LANG(C++)]) AU_DEFUN([AC_LIBTOOL_F77], [LT_LANG(Fortran 77)]) AU_DEFUN([AC_LIBTOOL_FC], [LT_LANG(Fortran)]) AU_DEFUN([AC_LIBTOOL_GCJ], [LT_LANG(Java)]) AU_DEFUN([AC_LIBTOOL_RC], [LT_LANG(Windows Resource)]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_CXX], []) dnl AC_DEFUN([AC_LIBTOOL_F77], []) dnl AC_DEFUN([AC_LIBTOOL_FC], []) dnl AC_DEFUN([AC_LIBTOOL_GCJ], []) dnl AC_DEFUN([AC_LIBTOOL_RC], []) # _LT_TAG_COMPILER # ---------------- m4_defun([_LT_TAG_COMPILER], [AC_REQUIRE([AC_PROG_CC])dnl _LT_DECL([LTCC], [CC], [1], [A C compiler])dnl _LT_DECL([LTCFLAGS], [CFLAGS], [1], [LTCC compiler flags])dnl _LT_TAGDECL([CC], [compiler], [1], [A language specific compiler])dnl _LT_TAGDECL([with_gcc], [GCC], [0], [Is the compiler the GNU compiler?])dnl # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC ])# _LT_TAG_COMPILER # _LT_COMPILER_BOILERPLATE # ------------------------ # Check for compiler boilerplate output or warnings with # the simple compiler test code. m4_defun([_LT_COMPILER_BOILERPLATE], [m4_require([_LT_DECL_SED])dnl ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $RM conftest* ])# _LT_COMPILER_BOILERPLATE # _LT_LINKER_BOILERPLATE # ---------------------- # Check for linker boilerplate output or warnings with # the simple link test code. m4_defun([_LT_LINKER_BOILERPLATE], [m4_require([_LT_DECL_SED])dnl ac_outfile=conftest.$ac_objext echo "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $RM -r conftest* ])# _LT_LINKER_BOILERPLATE # _LT_REQUIRED_DARWIN_CHECKS # ------------------------- m4_defun_once([_LT_REQUIRED_DARWIN_CHECKS],[ case $host_os in rhapsody* | darwin*) AC_CHECK_TOOL([DSYMUTIL], [dsymutil], [:]) AC_CHECK_TOOL([NMEDIT], [nmedit], [:]) AC_CHECK_TOOL([LIPO], [lipo], [:]) AC_CHECK_TOOL([OTOOL], [otool], [:]) AC_CHECK_TOOL([OTOOL64], [otool64], [:]) _LT_DECL([], [DSYMUTIL], [1], [Tool to manipulate archived DWARF debug symbol files on Mac OS X]) _LT_DECL([], [NMEDIT], [1], [Tool to change global to local symbols on Mac OS X]) _LT_DECL([], [LIPO], [1], [Tool to manipulate fat objects and archives on Mac OS X]) _LT_DECL([], [OTOOL], [1], [ldd/readelf like tool for Mach-O binaries on Mac OS X]) _LT_DECL([], [OTOOL64], [1], [ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4]) AC_CACHE_CHECK([for -single_module linker flag],[lt_cv_apple_cc_single_mod], [lt_cv_apple_cc_single_mod=no if test -z "${LT_MULTI_MODULE}"; then # By default we will add the -single_module flag. You can override # by either setting the environment variable LT_MULTI_MODULE # non-empty at configure time, or by adding -multi_module to the # link flags. rm -rf libconftest.dylib* echo "int foo(void){return 1;}" > conftest.c echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c" >&AS_MESSAGE_LOG_FD $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c 2>conftest.err _lt_result=$? # If there is a non-empty error log, and "single_module" # appears in it, assume the flag caused a linker warning if test -s conftest.err && $GREP single_module conftest.err; then cat conftest.err >&AS_MESSAGE_LOG_FD # Otherwise, if the output was created with a 0 exit code from # the compiler, it worked. elif test -f libconftest.dylib && test $_lt_result -eq 0; then lt_cv_apple_cc_single_mod=yes else cat conftest.err >&AS_MESSAGE_LOG_FD fi rm -rf libconftest.dylib* rm -f conftest.* fi]) AC_CACHE_CHECK([for -exported_symbols_list linker flag], [lt_cv_ld_exported_symbols_list], [lt_cv_ld_exported_symbols_list=no save_LDFLAGS=$LDFLAGS echo "_main" > conftest.sym LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], [lt_cv_ld_exported_symbols_list=yes], [lt_cv_ld_exported_symbols_list=no]) LDFLAGS="$save_LDFLAGS" ]) AC_CACHE_CHECK([for -force_load linker flag],[lt_cv_ld_force_load], [lt_cv_ld_force_load=no cat > conftest.c << _LT_EOF int forced_loaded() { return 2;} _LT_EOF echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&AS_MESSAGE_LOG_FD $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&AS_MESSAGE_LOG_FD echo "$AR cru libconftest.a conftest.o" >&AS_MESSAGE_LOG_FD $AR cru libconftest.a conftest.o 2>&AS_MESSAGE_LOG_FD echo "$RANLIB libconftest.a" >&AS_MESSAGE_LOG_FD $RANLIB libconftest.a 2>&AS_MESSAGE_LOG_FD cat > conftest.c << _LT_EOF int main() { return 0;} _LT_EOF echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&AS_MESSAGE_LOG_FD $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err _lt_result=$? if test -s conftest.err && $GREP force_load conftest.err; then cat conftest.err >&AS_MESSAGE_LOG_FD elif test -f conftest && test $_lt_result -eq 0 && $GREP forced_load conftest >/dev/null 2>&1 ; then lt_cv_ld_force_load=yes else cat conftest.err >&AS_MESSAGE_LOG_FD fi rm -f conftest.err libconftest.a conftest conftest.c rm -rf conftest.dSYM ]) case $host_os in rhapsody* | darwin1.[[012]]) _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;; darwin1.*) _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; darwin*) # darwin 5.x on # if running on 10.5 or later, the deployment target defaults # to the OS version, if on x86, and 10.4, the deployment # target defaults to 10.4. Don't you love it? case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in 10.0,*86*-darwin8*|10.0,*-darwin[[91]]*) _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; 10.[[012]]*) _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; 10.*) _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; esac ;; esac if test "$lt_cv_apple_cc_single_mod" = "yes"; then _lt_dar_single_mod='$single_module' fi if test "$lt_cv_ld_exported_symbols_list" = "yes"; then _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym' else _lt_dar_export_syms='~$NMEDIT -s $output_objdir/${libname}-symbols.expsym ${lib}' fi if test "$DSYMUTIL" != ":" && test "$lt_cv_ld_force_load" = "no"; then _lt_dsymutil='~$DSYMUTIL $lib || :' else _lt_dsymutil= fi ;; esac ]) # _LT_DARWIN_LINKER_FEATURES([TAG]) # --------------------------------- # Checks for linker and compiler features on darwin m4_defun([_LT_DARWIN_LINKER_FEATURES], [ m4_require([_LT_REQUIRED_DARWIN_CHECKS]) _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_automatic, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported if test "$lt_cv_ld_force_load" = "yes"; then _LT_TAGVAR(whole_archive_flag_spec, $1)='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' m4_case([$1], [F77], [_LT_TAGVAR(compiler_needs_object, $1)=yes], [FC], [_LT_TAGVAR(compiler_needs_object, $1)=yes]) else _LT_TAGVAR(whole_archive_flag_spec, $1)='' fi _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(allow_undefined_flag, $1)="$_lt_dar_allow_undefined" case $cc_basename in ifort*) _lt_dar_can_shared=yes ;; *) _lt_dar_can_shared=$GCC ;; esac if test "$_lt_dar_can_shared" = "yes"; then output_verbose_link_cmd=func_echo_all _LT_TAGVAR(archive_cmds, $1)="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" _LT_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" _LT_TAGVAR(module_expsym_cmds, $1)="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" m4_if([$1], [CXX], [ if test "$lt_cv_apple_cc_single_mod" != "yes"; then _LT_TAGVAR(archive_cmds, $1)="\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dsymutil}" _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dar_export_syms}${_lt_dsymutil}" fi ],[]) else _LT_TAGVAR(ld_shlibs, $1)=no fi ]) # _LT_SYS_MODULE_PATH_AIX([TAGNAME]) # ---------------------------------- # Links a minimal program and checks the executable # for the system default hardcoded library path. In most cases, # this is /usr/lib:/lib, but when the MPI compilers are used # the location of the communication and MPI libs are included too. # If we don't find anything, use the default library path according # to the aix ld manual. # Store the results from the different compilers for each TAGNAME. # Allow to override them for all tags through lt_cv_aix_libpath. m4_defun([_LT_SYS_MODULE_PATH_AIX], [m4_require([_LT_DECL_SED])dnl if test "${lt_cv_aix_libpath+set}" = set; then aix_libpath=$lt_cv_aix_libpath else AC_CACHE_VAL([_LT_TAGVAR([lt_cv_aix_libpath_], [$1])], [AC_LINK_IFELSE([AC_LANG_PROGRAM],[ lt_aix_libpath_sed='[ /Import File Strings/,/^$/ { /^0/ { s/^0 *\([^ ]*\) *$/\1/ p } }]' _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi],[]) if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then _LT_TAGVAR([lt_cv_aix_libpath_], [$1])="/usr/lib:/lib" fi ]) aix_libpath=$_LT_TAGVAR([lt_cv_aix_libpath_], [$1]) fi ])# _LT_SYS_MODULE_PATH_AIX # _LT_SHELL_INIT(ARG) # ------------------- m4_define([_LT_SHELL_INIT], [m4_divert_text([M4SH-INIT], [$1 ])])# _LT_SHELL_INIT # _LT_PROG_ECHO_BACKSLASH # ----------------------- # Find how we can fake an echo command that does not interpret backslash. # In particular, with Autoconf 2.60 or later we add some code to the start # of the generated configure script which will find a shell with a builtin # printf (which we can use as an echo command). m4_defun([_LT_PROG_ECHO_BACKSLASH], [ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO AC_MSG_CHECKING([how to print strings]) # Test print first, because it will be a builtin if present. if test "X`( print -r -- -n ) 2>/dev/null`" = X-n && \ test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then ECHO='print -r --' elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then ECHO='printf %s\n' else # Use this function as a fallback that always works. func_fallback_echo () { eval 'cat <<_LTECHO_EOF $[]1 _LTECHO_EOF' } ECHO='func_fallback_echo' fi # func_echo_all arg... # Invoke $ECHO with all args, space-separated. func_echo_all () { $ECHO "$*" } case "$ECHO" in printf*) AC_MSG_RESULT([printf]) ;; print*) AC_MSG_RESULT([print -r]) ;; *) AC_MSG_RESULT([cat]) ;; esac m4_ifdef([_AS_DETECT_SUGGESTED], [_AS_DETECT_SUGGESTED([ test -n "${ZSH_VERSION+set}${BASH_VERSION+set}" || ( ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO PATH=/empty FPATH=/empty; export PATH FPATH test "X`printf %s $ECHO`" = "X$ECHO" \ || test "X`print -r -- $ECHO`" = "X$ECHO" )])]) _LT_DECL([], [SHELL], [1], [Shell to use when invoking shell scripts]) _LT_DECL([], [ECHO], [1], [An echo program that protects backslashes]) ])# _LT_PROG_ECHO_BACKSLASH # _LT_WITH_SYSROOT # ---------------- AC_DEFUN([_LT_WITH_SYSROOT], [AC_MSG_CHECKING([for sysroot]) AC_ARG_WITH([sysroot], [ --with-sysroot[=DIR] Search for dependent libraries within DIR (or the compiler's sysroot if not specified).], [], [with_sysroot=no]) dnl lt_sysroot will always be passed unquoted. We quote it here dnl in case the user passed a directory name. lt_sysroot= case ${with_sysroot} in #( yes) if test "$GCC" = yes; then lt_sysroot=`$CC --print-sysroot 2>/dev/null` fi ;; #( /*) lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"` ;; #( no|'') ;; #( *) AC_MSG_RESULT([${with_sysroot}]) AC_MSG_ERROR([The sysroot must be an absolute path.]) ;; esac AC_MSG_RESULT([${lt_sysroot:-no}]) _LT_DECL([], [lt_sysroot], [0], [The root where to search for ]dnl [dependent libraries, and in which our libraries should be installed.])]) # _LT_ENABLE_LOCK # --------------- m4_defun([_LT_ENABLE_LOCK], [AC_ARG_ENABLE([libtool-lock], [AS_HELP_STRING([--disable-libtool-lock], [avoid locking (might break parallel builds)])]) test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes # Some flags need to be propagated to the compiler or linker for good # libtool support. case $host in ia64-*-hpux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.$ac_objext` in *ELF-32*) HPUX_IA64_MODE="32" ;; *ELF-64*) HPUX_IA64_MODE="64" ;; esac fi rm -rf conftest* ;; *-*-irix6*) # Find out which ABI we are using. echo '[#]line '$LINENO' "configure"' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then if test "$lt_cv_prog_gnu_ld" = yes; then case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -melf32bsmip" ;; *N32*) LD="${LD-ld} -melf32bmipn32" ;; *64-bit*) LD="${LD-ld} -melf64bmip" ;; esac else case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -32" ;; *N32*) LD="${LD-ld} -n32" ;; *64-bit*) LD="${LD-ld} -64" ;; esac fi fi rm -rf conftest* ;; x86_64-*kfreebsd*-gnu|x86_64-*linux*|powerpc*-*linux*| \ s390*-*linux*|s390*-*tpf*|sparc*-*linux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.o` in *32-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_i386_fbsd" ;; x86_64-*linux*) case `/usr/bin/file conftest.o` in *x86-64*) LD="${LD-ld} -m elf32_x86_64" ;; *) LD="${LD-ld} -m elf_i386" ;; esac ;; powerpc64le-*) LD="${LD-ld} -m elf32lppclinux" ;; powerpc64-*) LD="${LD-ld} -m elf32ppclinux" ;; s390x-*linux*) LD="${LD-ld} -m elf_s390" ;; sparc64-*linux*) LD="${LD-ld} -m elf32_sparc" ;; esac ;; *64-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_x86_64_fbsd" ;; x86_64-*linux*) LD="${LD-ld} -m elf_x86_64" ;; powerpcle-*) LD="${LD-ld} -m elf64lppc" ;; powerpc-*) LD="${LD-ld} -m elf64ppc" ;; s390*-*linux*|s390*-*tpf*) LD="${LD-ld} -m elf64_s390" ;; sparc*-*linux*) LD="${LD-ld} -m elf64_sparc" ;; esac ;; esac fi rm -rf conftest* ;; *-*-sco3.2v5*) # On SCO OpenServer 5, we need -belf to get full-featured binaries. SAVE_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -belf" AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf, [AC_LANG_PUSH(C) AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],[[]])],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no]) AC_LANG_POP]) if test x"$lt_cv_cc_needs_belf" != x"yes"; then # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf CFLAGS="$SAVE_CFLAGS" fi ;; *-*solaris*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.o` in *64-bit*) case $lt_cv_prog_gnu_ld in yes*) case $host in i?86-*-solaris*) LD="${LD-ld} -m elf_x86_64" ;; sparc*-*-solaris*) LD="${LD-ld} -m elf64_sparc" ;; esac # GNU ld 2.21 introduced _sol2 emulations. Use them if available. if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then LD="${LD-ld}_sol2" fi ;; *) if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then LD="${LD-ld} -64" fi ;; esac ;; esac fi rm -rf conftest* ;; esac need_locks="$enable_libtool_lock" ])# _LT_ENABLE_LOCK # _LT_PROG_AR # ----------- m4_defun([_LT_PROG_AR], [AC_CHECK_TOOLS(AR, [ar], false) : ${AR=ar} : ${AR_FLAGS=cru} _LT_DECL([], [AR], [1], [The archiver]) _LT_DECL([], [AR_FLAGS], [1], [Flags to create an archive]) AC_CACHE_CHECK([for archiver @FILE support], [lt_cv_ar_at_file], [lt_cv_ar_at_file=no AC_COMPILE_IFELSE([AC_LANG_PROGRAM], [echo conftest.$ac_objext > conftest.lst lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&AS_MESSAGE_LOG_FD' AC_TRY_EVAL([lt_ar_try]) if test "$ac_status" -eq 0; then # Ensure the archiver fails upon bogus file names. rm -f conftest.$ac_objext libconftest.a AC_TRY_EVAL([lt_ar_try]) if test "$ac_status" -ne 0; then lt_cv_ar_at_file=@ fi fi rm -f conftest.* libconftest.a ]) ]) if test "x$lt_cv_ar_at_file" = xno; then archiver_list_spec= else archiver_list_spec=$lt_cv_ar_at_file fi _LT_DECL([], [archiver_list_spec], [1], [How to feed a file listing to the archiver]) ])# _LT_PROG_AR # _LT_CMD_OLD_ARCHIVE # ------------------- m4_defun([_LT_CMD_OLD_ARCHIVE], [_LT_PROG_AR AC_CHECK_TOOL(STRIP, strip, :) test -z "$STRIP" && STRIP=: _LT_DECL([], [STRIP], [1], [A symbol stripping program]) AC_CHECK_TOOL(RANLIB, ranlib, :) test -z "$RANLIB" && RANLIB=: _LT_DECL([], [RANLIB], [1], [Commands used to install an old-style archive]) # Determine commands to create old-style static archives. old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' old_postinstall_cmds='chmod 644 $oldlib' old_postuninstall_cmds= if test -n "$RANLIB"; then case $host_os in openbsd*) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib" ;; *) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$tool_oldlib" ;; esac old_archive_cmds="$old_archive_cmds~\$RANLIB \$tool_oldlib" fi case $host_os in darwin*) lock_old_archive_extraction=yes ;; *) lock_old_archive_extraction=no ;; esac _LT_DECL([], [old_postinstall_cmds], [2]) _LT_DECL([], [old_postuninstall_cmds], [2]) _LT_TAGDECL([], [old_archive_cmds], [2], [Commands used to build an old-style archive]) _LT_DECL([], [lock_old_archive_extraction], [0], [Whether to use a lock for old archive extraction]) ])# _LT_CMD_OLD_ARCHIVE # _LT_COMPILER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, # [OUTPUT-FILE], [ACTION-SUCCESS], [ACTION-FAILURE]) # ---------------------------------------------------------------- # Check whether the given compiler option works AC_DEFUN([_LT_COMPILER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_SED])dnl AC_CACHE_CHECK([$1], [$2], [$2=no m4_if([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4]) echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$3" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&AS_MESSAGE_LOG_FD echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then $2=yes fi fi $RM conftest* ]) if test x"[$]$2" = xyes; then m4_if([$5], , :, [$5]) else m4_if([$6], , :, [$6]) fi ])# _LT_COMPILER_OPTION # Old name: AU_ALIAS([AC_LIBTOOL_COMPILER_OPTION], [_LT_COMPILER_OPTION]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], []) # _LT_LINKER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, # [ACTION-SUCCESS], [ACTION-FAILURE]) # ---------------------------------------------------- # Check whether the given linker option works AC_DEFUN([_LT_LINKER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_SED])dnl AC_CACHE_CHECK([$1], [$2], [$2=no save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS $3" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&AS_MESSAGE_LOG_FD $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then $2=yes fi else $2=yes fi fi $RM -r conftest* LDFLAGS="$save_LDFLAGS" ]) if test x"[$]$2" = xyes; then m4_if([$4], , :, [$4]) else m4_if([$5], , :, [$5]) fi ])# _LT_LINKER_OPTION # Old name: AU_ALIAS([AC_LIBTOOL_LINKER_OPTION], [_LT_LINKER_OPTION]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], []) # LT_CMD_MAX_LEN #--------------- AC_DEFUN([LT_CMD_MAX_LEN], [AC_REQUIRE([AC_CANONICAL_HOST])dnl # find the maximum length of command line arguments AC_MSG_CHECKING([the maximum length of command line arguments]) AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl i=0 teststring="ABCD" case $build_os in msdosdjgpp*) # On DJGPP, this test can blow up pretty badly due to problems in libc # (any single argument exceeding 2000 bytes causes a buffer overrun # during glob expansion). Even if it were fixed, the result of this # check would be larger than it should be. lt_cv_sys_max_cmd_len=12288; # 12K is about right ;; gnu*) # Under GNU Hurd, this test is not required because there is # no limit to the length of command line arguments. # Libtool will interpret -1 as no limit whatsoever lt_cv_sys_max_cmd_len=-1; ;; cygwin* | mingw* | cegcc*) # On Win9x/ME, this test blows up -- it succeeds, but takes # about 5 minutes as the teststring grows exponentially. # Worse, since 9x/ME are not pre-emptively multitasking, # you end up with a "frozen" computer, even though with patience # the test eventually succeeds (with a max line length of 256k). # Instead, let's just punt: use the minimum linelength reported by # all of the supported platforms: 8192 (on NT/2K/XP). lt_cv_sys_max_cmd_len=8192; ;; mint*) # On MiNT this can take a long time and run out of memory. lt_cv_sys_max_cmd_len=8192; ;; amigaos*) # On AmigaOS with pdksh, this test takes hours, literally. # So we just punt and use a minimum line length of 8192. lt_cv_sys_max_cmd_len=8192; ;; netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) # This has been around since 386BSD, at least. Likely further. if test -x /sbin/sysctl; then lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` elif test -x /usr/sbin/sysctl; then lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` else lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs fi # And add a safety zone lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` ;; interix*) # We know the value 262144 and hardcode it with a safety zone (like BSD) lt_cv_sys_max_cmd_len=196608 ;; os2*) # The test takes a long time on OS/2. lt_cv_sys_max_cmd_len=8192 ;; osf*) # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not # nice to cause kernel panics so lets avoid the loop below. # First set a reasonable default. lt_cv_sys_max_cmd_len=16384 # if test -x /sbin/sysconfig; then case `/sbin/sysconfig -q proc exec_disable_arg_limit` in *1*) lt_cv_sys_max_cmd_len=-1 ;; esac fi ;; sco3.2v5*) lt_cv_sys_max_cmd_len=102400 ;; sysv5* | sco5v6* | sysv4.2uw2*) kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` if test -n "$kargmax"; then lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[ ]]//'` else lt_cv_sys_max_cmd_len=32768 fi ;; *) lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` if test -n "$lt_cv_sys_max_cmd_len" && \ test undefined != "$lt_cv_sys_max_cmd_len"; then lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` else # Make teststring a little bigger before we do anything with it. # a 1K string should be a reasonable start. for i in 1 2 3 4 5 6 7 8 ; do teststring=$teststring$teststring done SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} # If test is not a shell built-in, we'll probably end up computing a # maximum length that is only half of the actual maximum length, but # we can't tell. while { test "X"`env echo "$teststring$teststring" 2>/dev/null` \ = "X$teststring$teststring"; } >/dev/null 2>&1 && test $i != 17 # 1/2 MB should be enough do i=`expr $i + 1` teststring=$teststring$teststring done # Only check the string length outside the loop. lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` teststring= # Add a significant safety factor because C++ compilers can tack on # massive amounts of additional arguments before passing them to the # linker. It appears as though 1/2 is a usable value. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` fi ;; esac ]) if test -n $lt_cv_sys_max_cmd_len ; then AC_MSG_RESULT($lt_cv_sys_max_cmd_len) else AC_MSG_RESULT(none) fi max_cmd_len=$lt_cv_sys_max_cmd_len _LT_DECL([], [max_cmd_len], [0], [What is the maximum length of a command?]) ])# LT_CMD_MAX_LEN # Old name: AU_ALIAS([AC_LIBTOOL_SYS_MAX_CMD_LEN], [LT_CMD_MAX_LEN]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], []) # _LT_HEADER_DLFCN # ---------------- m4_defun([_LT_HEADER_DLFCN], [AC_CHECK_HEADERS([dlfcn.h], [], [], [AC_INCLUDES_DEFAULT])dnl ])# _LT_HEADER_DLFCN # _LT_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE, # ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING) # ---------------------------------------------------------------- m4_defun([_LT_TRY_DLOPEN_SELF], [m4_require([_LT_HEADER_DLFCN])dnl if test "$cross_compiling" = yes; then : [$4] else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF [#line $LINENO "configure" #include "confdefs.h" #if HAVE_DLFCN_H #include #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif /* When -fvisbility=hidden is used, assume the code has been annotated correspondingly for the symbols needed. */ #if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) int fnord () __attribute__((visibility("default"))); #endif int fnord () { return 42; } int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else { if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; else puts (dlerror ()); } /* dlclose (self); */ } else puts (dlerror ()); return status; }] _LT_EOF if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) $1 ;; x$lt_dlneed_uscore) $2 ;; x$lt_dlunknown|x*) $3 ;; esac else : # compilation failed $3 fi fi rm -fr conftest* ])# _LT_TRY_DLOPEN_SELF # LT_SYS_DLOPEN_SELF # ------------------ AC_DEFUN([LT_SYS_DLOPEN_SELF], [m4_require([_LT_HEADER_DLFCN])dnl if test "x$enable_dlopen" != xyes; then enable_dlopen=unknown enable_dlopen_self=unknown enable_dlopen_self_static=unknown else lt_cv_dlopen=no lt_cv_dlopen_libs= case $host_os in beos*) lt_cv_dlopen="load_add_on" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ;; mingw* | pw32* | cegcc*) lt_cv_dlopen="LoadLibrary" lt_cv_dlopen_libs= ;; cygwin*) lt_cv_dlopen="dlopen" lt_cv_dlopen_libs= ;; darwin*) # if libdl is installed we need to link against it AC_CHECK_LIB([dl], [dlopen], [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],[ lt_cv_dlopen="dyld" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ]) ;; *) AC_CHECK_FUNC([shl_load], [lt_cv_dlopen="shl_load"], [AC_CHECK_LIB([dld], [shl_load], [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld"], [AC_CHECK_FUNC([dlopen], [lt_cv_dlopen="dlopen"], [AC_CHECK_LIB([dl], [dlopen], [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"], [AC_CHECK_LIB([svld], [dlopen], [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"], [AC_CHECK_LIB([dld], [dld_link], [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld"]) ]) ]) ]) ]) ]) ;; esac if test "x$lt_cv_dlopen" != xno; then enable_dlopen=yes else enable_dlopen=no fi case $lt_cv_dlopen in dlopen) save_CPPFLAGS="$CPPFLAGS" test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" save_LDFLAGS="$LDFLAGS" wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" save_LIBS="$LIBS" LIBS="$lt_cv_dlopen_libs $LIBS" AC_CACHE_CHECK([whether a program can dlopen itself], lt_cv_dlopen_self, [dnl _LT_TRY_DLOPEN_SELF( lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes, lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross) ]) if test "x$lt_cv_dlopen_self" = xyes; then wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" AC_CACHE_CHECK([whether a statically linked program can dlopen itself], lt_cv_dlopen_self_static, [dnl _LT_TRY_DLOPEN_SELF( lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross) ]) fi CPPFLAGS="$save_CPPFLAGS" LDFLAGS="$save_LDFLAGS" LIBS="$save_LIBS" ;; esac case $lt_cv_dlopen_self in yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; *) enable_dlopen_self=unknown ;; esac case $lt_cv_dlopen_self_static in yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; *) enable_dlopen_self_static=unknown ;; esac fi _LT_DECL([dlopen_support], [enable_dlopen], [0], [Whether dlopen is supported]) _LT_DECL([dlopen_self], [enable_dlopen_self], [0], [Whether dlopen of programs is supported]) _LT_DECL([dlopen_self_static], [enable_dlopen_self_static], [0], [Whether dlopen of statically linked programs is supported]) ])# LT_SYS_DLOPEN_SELF # Old name: AU_ALIAS([AC_LIBTOOL_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], []) # _LT_COMPILER_C_O([TAGNAME]) # --------------------------- # Check to see if options -c and -o are simultaneously supported by compiler. # This macro does not hard code the compiler like AC_PROG_CC_C_O. m4_defun([_LT_COMPILER_C_O], [m4_require([_LT_DECL_SED])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_TAG_COMPILER])dnl AC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext], [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)], [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no $RM -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&AS_MESSAGE_LOG_FD echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then _LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes fi fi chmod u+w . 2>&AS_MESSAGE_LOG_FD $RM conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files $RM out/* && rmdir out cd .. $RM -r conftest $RM conftest* ]) _LT_TAGDECL([compiler_c_o], [lt_cv_prog_compiler_c_o], [1], [Does compiler simultaneously support -c and -o options?]) ])# _LT_COMPILER_C_O # _LT_COMPILER_FILE_LOCKS([TAGNAME]) # ---------------------------------- # Check to see if we can do hard links to lock some files if needed m4_defun([_LT_COMPILER_FILE_LOCKS], [m4_require([_LT_ENABLE_LOCK])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl _LT_COMPILER_C_O([$1]) hard_links="nottested" if test "$_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)" = no && test "$need_locks" != no; then # do not overwrite the value of need_locks provided by the user AC_MSG_CHECKING([if we can lock with hard links]) hard_links=yes $RM conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no AC_MSG_RESULT([$hard_links]) if test "$hard_links" = no; then AC_MSG_WARN([`$CC' does not support `-c -o', so `make -j' may be unsafe]) need_locks=warn fi else need_locks=no fi _LT_DECL([], [need_locks], [1], [Must we lock files when doing compilation?]) ])# _LT_COMPILER_FILE_LOCKS # _LT_CHECK_OBJDIR # ---------------- m4_defun([_LT_CHECK_OBJDIR], [AC_CACHE_CHECK([for objdir], [lt_cv_objdir], [rm -f .libs 2>/dev/null mkdir .libs 2>/dev/null if test -d .libs; then lt_cv_objdir=.libs else # MS-DOS does not allow filenames that begin with a dot. lt_cv_objdir=_libs fi rmdir .libs 2>/dev/null]) objdir=$lt_cv_objdir _LT_DECL([], [objdir], [0], [The name of the directory that contains temporary libtool files])dnl m4_pattern_allow([LT_OBJDIR])dnl AC_DEFINE_UNQUOTED(LT_OBJDIR, "$lt_cv_objdir/", [Define to the sub-directory in which libtool stores uninstalled libraries.]) ])# _LT_CHECK_OBJDIR # _LT_LINKER_HARDCODE_LIBPATH([TAGNAME]) # -------------------------------------- # Check hardcoding attributes. m4_defun([_LT_LINKER_HARDCODE_LIBPATH], [AC_MSG_CHECKING([how to hardcode library paths into programs]) _LT_TAGVAR(hardcode_action, $1)= if test -n "$_LT_TAGVAR(hardcode_libdir_flag_spec, $1)" || test -n "$_LT_TAGVAR(runpath_var, $1)" || test "X$_LT_TAGVAR(hardcode_automatic, $1)" = "Xyes" ; then # We can hardcode non-existent directories. if test "$_LT_TAGVAR(hardcode_direct, $1)" != no && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test "$_LT_TAGVAR(hardcode_shlibpath_var, $1)" != no && test "$_LT_TAGVAR(hardcode_minus_L, $1)" != no; then # Linking always hardcodes the temporary library directory. _LT_TAGVAR(hardcode_action, $1)=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. _LT_TAGVAR(hardcode_action, $1)=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. _LT_TAGVAR(hardcode_action, $1)=unsupported fi AC_MSG_RESULT([$_LT_TAGVAR(hardcode_action, $1)]) if test "$_LT_TAGVAR(hardcode_action, $1)" = relink || test "$_LT_TAGVAR(inherit_rpath, $1)" = yes; then # Fast installation is not supported enable_fast_install=no elif test "$shlibpath_overrides_runpath" = yes || test "$enable_shared" = no; then # Fast installation is not necessary enable_fast_install=needless fi _LT_TAGDECL([], [hardcode_action], [0], [How to hardcode a shared library path into an executable]) ])# _LT_LINKER_HARDCODE_LIBPATH # _LT_CMD_STRIPLIB # ---------------- m4_defun([_LT_CMD_STRIPLIB], [m4_require([_LT_DECL_EGREP]) striplib= old_striplib= AC_MSG_CHECKING([whether stripping libraries is possible]) if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" test -z "$striplib" && striplib="$STRIP --strip-unneeded" AC_MSG_RESULT([yes]) else # FIXME - insert some real tests, host_os isn't really good enough case $host_os in darwin*) if test -n "$STRIP" ; then striplib="$STRIP -x" old_striplib="$STRIP -S" AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) fi ;; *) AC_MSG_RESULT([no]) ;; esac fi _LT_DECL([], [old_striplib], [1], [Commands to strip libraries]) _LT_DECL([], [striplib], [1]) ])# _LT_CMD_STRIPLIB # _LT_SYS_DYNAMIC_LINKER([TAG]) # ----------------------------- # PORTME Fill in your ld.so characteristics m4_defun([_LT_SYS_DYNAMIC_LINKER], [AC_REQUIRE([AC_CANONICAL_HOST])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_OBJDUMP])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_CHECK_SHELL_FEATURES])dnl AC_MSG_CHECKING([dynamic linker characteristics]) m4_if([$1], [], [ if test "$GCC" = yes; then case $host_os in darwin*) lt_awk_arg="/^libraries:/,/LR/" ;; *) lt_awk_arg="/^libraries:/" ;; esac case $host_os in mingw* | cegcc*) lt_sed_strip_eq="s,=\([[A-Za-z]]:\),\1,g" ;; *) lt_sed_strip_eq="s,=/,/,g" ;; esac lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq` case $lt_search_path_spec in *\;*) # if the path contains ";" then we assume it to be the separator # otherwise default to the standard path separator (i.e. ":") - it is # assumed that no part of a normal pathname contains ";" but that should # okay in the real world where ";" in dirpaths is itself problematic. lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'` ;; *) lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"` ;; esac # Ok, now we have the path, separated by spaces, we can step through it # and add multilib dir if necessary. lt_tmp_lt_search_path_spec= lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` for lt_sys_path in $lt_search_path_spec; do if test -d "$lt_sys_path/$lt_multi_os_dir"; then lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir" else test -d "$lt_sys_path" && \ lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" fi done lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk ' BEGIN {RS=" "; FS="/|\n";} { lt_foo=""; lt_count=0; for (lt_i = NF; lt_i > 0; lt_i--) { if ($lt_i != "" && $lt_i != ".") { if ($lt_i == "..") { lt_count++; } else { if (lt_count == 0) { lt_foo="/" $lt_i lt_foo; } else { lt_count--; } } } } if (lt_foo != "") { lt_freq[[lt_foo]]++; } if (lt_freq[[lt_foo]] == 1) { print lt_foo; } }'` # AWK program above erroneously prepends '/' to C:/dos/paths # for these hosts. case $host_os in mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\ $SED 's,/\([[A-Za-z]]:\),\1,g'` ;; esac sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP` else sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" fi]) library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=".so" postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown case $host_os in aix3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='${libname}${release}${shared_ext}$major' ;; aix[[4-9]]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no hardcode_into_libs=yes if test "$host_cpu" = ia64; then # AIX 5 supports IA64 library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line `#! .'. This would cause the generated library to # depend on `.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[[01]] | aix4.[[01]].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then : else can_build_shared=no fi ;; esac # AIX (on Power*) has no versioning support, so currently we can not hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. if test "$aix_use_runtimelinking" = yes; then # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' else # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='${libname}${release}.a $libname.a' soname_spec='${libname}${release}${shared_ext}$major' fi shlibpath_var=LIBPATH fi ;; amigaos*) case $host_cpu in powerpc) # Since July 2007 AmigaOS4 officially supports .so libraries. # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' ;; m68k) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; esac ;; beos*) library_names_spec='${libname}${shared_ext}' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[[45]]*) version_type=linux # correct to gnu/linux during the next big refactor need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32* | cegcc*) version_type=windows shrext_cmds=".dll" need_version=no need_lib_prefix=no case $GCC,$cc_basename in yes,*) # gcc library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname~ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; fi' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' m4_if([$1], [],[ sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api"]) ;; mingw* | cegcc*) # MinGW DLLs use traditional 'lib' prefix soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' ;; esac dynamic_linker='Win32 ld.exe' ;; *,cl*) # Native MSVC libname_spec='$name' soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' library_names_spec='${libname}.dll.lib' case $build_os in mingw*) sys_lib_search_path_spec= lt_save_ifs=$IFS IFS=';' for lt_path in $LIB do IFS=$lt_save_ifs # Let DOS variable expansion print the short 8.3 style file name. lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"` sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path" done IFS=$lt_save_ifs # Convert to MSYS style. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([[a-zA-Z]]\\):| /\\1|g' -e 's|^ ||'` ;; cygwin*) # Convert to unix form, then to dos form, then back to unix form # but this time dos style (no spaces!) so that the unix form looks # like /cygdrive/c/PROGRA~1:/cygdr... sys_lib_search_path_spec=`cygpath --path --unix "$LIB"` sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null` sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` ;; *) sys_lib_search_path_spec="$LIB" if $ECHO "$sys_lib_search_path_spec" | [$GREP ';[c-zC-Z]:/' >/dev/null]; then # It is most probably a Windows format PATH. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi # FIXME: find the short name or the path components, as spaces are # common. (e.g. "Program Files" -> "PROGRA~1") ;; esac # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes dynamic_linker='Win32 link.exe' ;; *) # Assume MSVC wrapper library_names_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext} $libname.lib' dynamic_linker='Win32 ld.exe' ;; esac # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' soname_spec='${libname}${release}${major}$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' m4_if([$1], [],[ sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib"]) sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd* | dragonfly*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. if test -x /usr/bin/objformat; then objformat=`/usr/bin/objformat` else case $host_os in freebsd[[23]].*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2.*) shlibpath_overrides_runpath=yes ;; freebsd3.[[01]]* | freebsdelf3.[[01]]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; freebsd3.[[2-9]]* | freebsdelf3.[[2-9]]* | \ freebsd4.[[0-5]] | freebsdelf4.[[0-5]] | freebsd4.1.1 | freebsdelf4.1.1) shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; *) # from 4.6 on, and DragonFly shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; haiku*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no dynamic_linker="$host_os runtime_loader" library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LIBRARY_PATH shlibpath_overrides_runpath=yes sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' if test "X$HPUX_IA64_MODE" = X32; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" fi sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555, ... postinstall_cmds='chmod 555 $lib' # or fails outright, so override atomically: install_override_mode=555 ;; interix[[3-9]]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test "$lt_cv_prog_gnu_ld" = yes; then version_type=linux # correct to gnu/linux during the next big refactor else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # Some binutils ld are patched to set DT_RUNPATH AC_CACHE_VAL([lt_cv_shlibpath_overrides_runpath], [lt_cv_shlibpath_overrides_runpath=no save_LDFLAGS=$LDFLAGS save_libdir=$libdir eval "libdir=/foo; wl=\"$_LT_TAGVAR(lt_prog_compiler_wl, $1)\"; \ LDFLAGS=\"\$LDFLAGS $_LT_TAGVAR(hardcode_libdir_flag_spec, $1)\"" AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], [AS_IF([ ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null], [lt_cv_shlibpath_overrides_runpath=yes])]) LDFLAGS=$save_LDFLAGS libdir=$save_libdir ]) shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; netbsdelf*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='NetBSD ld.elf_so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; *nto* | *qnx*) version_type=qnx need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='ldqnx.so' ;; openbsd*) version_type=sunos sys_lib_dlsearch_path_spec="/usr/lib" need_lib_prefix=no # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. case $host_os in openbsd3.3 | openbsd3.3.*) need_version=yes ;; *) need_version=no ;; esac library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then case $host_os in openbsd2.[[89]] | openbsd2.[[89]].*) shlibpath_overrides_runpath=no ;; *) shlibpath_overrides_runpath=yes ;; esac else shlibpath_overrides_runpath=yes fi ;; os2*) libname_spec='$name' shrext_cmds=".dll" need_lib_prefix=no library_names_spec='$libname${shared_ext} $libname.a' dynamic_linker='OS/2 ld.exe' shlibpath_var=LIBPATH ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" ;; rdos*) dynamic_linker=no ;; solaris*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test "$with_gnu_ld" = yes; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec ;then version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' soname_spec='$libname${shared_ext}.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=freebsd-elf need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes if test "$with_gnu_ld" = yes; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' case $host_os in sco3.2v5*) sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ;; esac fi sys_lib_dlsearch_path_spec='/usr/lib' ;; tpf*) # TPF is a cross-target only. Preferred cross-host = GNU/Linux. version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; uts4*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac AC_MSG_RESULT([$dynamic_linker]) test "$dynamic_linker" = no && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test "$GCC" = yes; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" fi if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" fi _LT_DECL([], [variables_saved_for_relink], [1], [Variables whose values should be saved in libtool wrapper scripts and restored at link time]) _LT_DECL([], [need_lib_prefix], [0], [Do we need the "lib" prefix for modules?]) _LT_DECL([], [need_version], [0], [Do we need a version for libraries?]) _LT_DECL([], [version_type], [0], [Library versioning type]) _LT_DECL([], [runpath_var], [0], [Shared library runtime path variable]) _LT_DECL([], [shlibpath_var], [0],[Shared library path variable]) _LT_DECL([], [shlibpath_overrides_runpath], [0], [Is shlibpath searched before the hard-coded library search path?]) _LT_DECL([], [libname_spec], [1], [Format of library name prefix]) _LT_DECL([], [library_names_spec], [1], [[List of archive names. First name is the real one, the rest are links. The last name is the one that the linker finds with -lNAME]]) _LT_DECL([], [soname_spec], [1], [[The coded name of the library, if different from the real name]]) _LT_DECL([], [install_override_mode], [1], [Permission mode override for installation of shared libraries]) _LT_DECL([], [postinstall_cmds], [2], [Command to use after installation of a shared archive]) _LT_DECL([], [postuninstall_cmds], [2], [Command to use after uninstallation of a shared archive]) _LT_DECL([], [finish_cmds], [2], [Commands used to finish a libtool library installation in a directory]) _LT_DECL([], [finish_eval], [1], [[As "finish_cmds", except a single script fragment to be evaled but not shown]]) _LT_DECL([], [hardcode_into_libs], [0], [Whether we should hardcode library paths into libraries]) _LT_DECL([], [sys_lib_search_path_spec], [2], [Compile-time system search path for libraries]) _LT_DECL([], [sys_lib_dlsearch_path_spec], [2], [Run-time system search path for libraries]) ])# _LT_SYS_DYNAMIC_LINKER # _LT_PATH_TOOL_PREFIX(TOOL) # -------------------------- # find a file program which can recognize shared library AC_DEFUN([_LT_PATH_TOOL_PREFIX], [m4_require([_LT_DECL_EGREP])dnl AC_MSG_CHECKING([for $1]) AC_CACHE_VAL(lt_cv_path_MAGIC_CMD, [case $MAGIC_CMD in [[\\/*] | ?:[\\/]*]) lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. ;; *) lt_save_MAGIC_CMD="$MAGIC_CMD" lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR dnl $ac_dummy forces splitting on constant user-supplied paths. dnl POSIX.2 word splitting is done only on the output of word expansions, dnl not every word. This closes a longstanding sh security hole. ac_dummy="m4_if([$2], , $PATH, [$2])" for ac_dir in $ac_dummy; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/$1; then lt_cv_path_MAGIC_CMD="$ac_dir/$1" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <<_LT_EOF 1>&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org _LT_EOF fi ;; esac fi break fi done IFS="$lt_save_ifs" MAGIC_CMD="$lt_save_MAGIC_CMD" ;; esac]) MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if test -n "$MAGIC_CMD"; then AC_MSG_RESULT($MAGIC_CMD) else AC_MSG_RESULT(no) fi _LT_DECL([], [MAGIC_CMD], [0], [Used to examine libraries when file_magic_cmd begins with "file"])dnl ])# _LT_PATH_TOOL_PREFIX # Old name: AU_ALIAS([AC_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_PATH_TOOL_PREFIX], []) # _LT_PATH_MAGIC # -------------- # find a file program which can recognize a shared library m4_defun([_LT_PATH_MAGIC], [_LT_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH) if test -z "$lt_cv_path_MAGIC_CMD"; then if test -n "$ac_tool_prefix"; then _LT_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH) else MAGIC_CMD=: fi fi ])# _LT_PATH_MAGIC # LT_PATH_LD # ---------- # find the pathname to the GNU or non-GNU linker AC_DEFUN([LT_PATH_LD], [AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_PROG_ECHO_BACKSLASH])dnl AC_ARG_WITH([gnu-ld], [AS_HELP_STRING([--with-gnu-ld], [assume the C compiler uses GNU ld @<:@default=no@:>@])], [test "$withval" = no || with_gnu_ld=yes], [with_gnu_ld=no])dnl ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. AC_MSG_CHECKING([for ld used by $CC]) case $host in *-*-mingw*) # gcc leaves a trailing carriage return which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [[\\/]]* | ?:[[\\/]]*) re_direlt='/[[^/]][[^/]]*/\.\./' # Canonicalize the pathname of ld ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` done test -z "$LD" && LD="$ac_prog" ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test "$with_gnu_ld" = yes; then AC_MSG_CHECKING([for GNU ld]) else AC_MSG_CHECKING([for non-GNU ld]) fi AC_CACHE_VAL(lt_cv_path_LD, [if test -z "$LD"; then lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then lt_cv_path_LD="$ac_dir/$ac_prog" # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 &1 /dev/null 2>&1; then lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' else # Keep this pattern in sync with the one in func_win32_libid. lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' lt_cv_file_magic_cmd='$OBJDUMP -f' fi ;; cegcc*) # use the weaker test based on 'objdump'. See mingw*. lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?' lt_cv_file_magic_cmd='$OBJDUMP -f' ;; darwin* | rhapsody*) lt_cv_deplibs_check_method=pass_all ;; freebsd* | dragonfly*) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then case $host_cpu in i*86 ) # Not sure whether the presence of OpenBSD here was a mistake. # Let's accept both of them until this is cleared up. lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand paged shared library' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` ;; esac else lt_cv_deplibs_check_method=pass_all fi ;; haiku*) lt_cv_deplibs_check_method=pass_all ;; hpux10.20* | hpux11*) lt_cv_file_magic_cmd=/usr/bin/file case $host_cpu in ia64*) lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64' lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so ;; hppa*64*) [lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF[ -][0-9][0-9])(-bit)?( [LM]SB)? shared object( file)?[, -]* PA-RISC [0-9]\.[0-9]'] lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl ;; *) lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]]\.[[0-9]]) shared library' lt_cv_file_magic_test_file=/usr/lib/libc.sl ;; esac ;; interix[[3-9]]*) # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|\.a)$' ;; irix5* | irix6* | nonstopux*) case $LD in *-32|*"-32 ") libmagic=32-bit;; *-n32|*"-n32 ") libmagic=N32;; *-64|*"-64 ") libmagic=64-bit;; *) libmagic=never-match;; esac lt_cv_deplibs_check_method=pass_all ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) lt_cv_deplibs_check_method=pass_all ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|_pic\.a)$' fi ;; newos6*) lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=/usr/lib/libnls.so ;; *nto* | *qnx*) lt_cv_deplibs_check_method=pass_all ;; openbsd*) if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' fi ;; osf3* | osf4* | osf5*) lt_cv_deplibs_check_method=pass_all ;; rdos*) lt_cv_deplibs_check_method=pass_all ;; solaris*) lt_cv_deplibs_check_method=pass_all ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) lt_cv_deplibs_check_method=pass_all ;; sysv4 | sysv4.3*) case $host_vendor in motorola) lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib) M[[0-9]][[0-9]]* Version [[0-9]]' lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` ;; ncr) lt_cv_deplibs_check_method=pass_all ;; sequent) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )' ;; sni) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib" lt_cv_file_magic_test_file=/lib/libc.so ;; siemens) lt_cv_deplibs_check_method=pass_all ;; pc) lt_cv_deplibs_check_method=pass_all ;; esac ;; tpf*) lt_cv_deplibs_check_method=pass_all ;; esac ]) file_magic_glob= want_nocaseglob=no if test "$build" = "$host"; then case $host_os in mingw* | pw32*) if ( shopt | grep nocaseglob ) >/dev/null 2>&1; then want_nocaseglob=yes else file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e "s/\(..\)/s\/[[\1]]\/[[\1]]\/g;/g"` fi ;; esac fi file_magic_cmd=$lt_cv_file_magic_cmd deplibs_check_method=$lt_cv_deplibs_check_method test -z "$deplibs_check_method" && deplibs_check_method=unknown _LT_DECL([], [deplibs_check_method], [1], [Method to check whether dependent libraries are shared objects]) _LT_DECL([], [file_magic_cmd], [1], [Command to use when deplibs_check_method = "file_magic"]) _LT_DECL([], [file_magic_glob], [1], [How to find potential files when deplibs_check_method = "file_magic"]) _LT_DECL([], [want_nocaseglob], [1], [Find potential files using nocaseglob when deplibs_check_method = "file_magic"]) ])# _LT_CHECK_MAGIC_METHOD # LT_PATH_NM # ---------- # find the pathname to a BSD- or MS-compatible name lister AC_DEFUN([LT_PATH_NM], [AC_REQUIRE([AC_PROG_CC])dnl AC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM, [if test -n "$NM"; then # Let the user override the test. lt_cv_path_NM="$NM" else lt_nm_to_check="${ac_tool_prefix}nm" if test -n "$ac_tool_prefix" && test "$build" = "$host"; then lt_nm_to_check="$lt_nm_to_check nm" fi for lt_tmp_nm in $lt_nm_to_check; do lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. tmp_nm="$ac_dir/$lt_tmp_nm" if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then # Check to see if the nm accepts a BSD-compat flag. # Adding the `sed 1q' prevents false positives on HP-UX, which says: # nm: unknown option "B" ignored # Tru64's nm complains that /dev/null is an invalid object file case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in */dev/null* | *'Invalid file or object type'*) lt_cv_path_NM="$tmp_nm -B" break ;; *) case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in */dev/null*) lt_cv_path_NM="$tmp_nm -p" break ;; *) lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but continue # so that we can try to find one that supports BSD flags ;; esac ;; esac fi done IFS="$lt_save_ifs" done : ${lt_cv_path_NM=no} fi]) if test "$lt_cv_path_NM" != "no"; then NM="$lt_cv_path_NM" else # Didn't find any BSD compatible name lister, look for dumpbin. if test -n "$DUMPBIN"; then : # Let the user override the test. else AC_CHECK_TOOLS(DUMPBIN, [dumpbin "link -dump"], :) case `$DUMPBIN -symbols /dev/null 2>&1 | sed '1q'` in *COFF*) DUMPBIN="$DUMPBIN -symbols" ;; *) DUMPBIN=: ;; esac fi AC_SUBST([DUMPBIN]) if test "$DUMPBIN" != ":"; then NM="$DUMPBIN" fi fi test -z "$NM" && NM=nm AC_SUBST([NM]) _LT_DECL([], [NM], [1], [A BSD- or MS-compatible name lister])dnl AC_CACHE_CHECK([the name lister ($NM) interface], [lt_cv_nm_interface], [lt_cv_nm_interface="BSD nm" echo "int some_variable = 0;" > conftest.$ac_ext (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$ac_compile" 2>conftest.err) cat conftest.err >&AS_MESSAGE_LOG_FD (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&AS_MESSAGE_LOG_FD) (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) cat conftest.err >&AS_MESSAGE_LOG_FD (eval echo "\"\$as_me:$LINENO: output\"" >&AS_MESSAGE_LOG_FD) cat conftest.out >&AS_MESSAGE_LOG_FD if $GREP 'External.*some_variable' conftest.out > /dev/null; then lt_cv_nm_interface="MS dumpbin" fi rm -f conftest*]) ])# LT_PATH_NM # Old names: AU_ALIAS([AM_PROG_NM], [LT_PATH_NM]) AU_ALIAS([AC_PROG_NM], [LT_PATH_NM]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AM_PROG_NM], []) dnl AC_DEFUN([AC_PROG_NM], []) # _LT_CHECK_SHAREDLIB_FROM_LINKLIB # -------------------------------- # how to determine the name of the shared library # associated with a specific link library. # -- PORTME fill in with the dynamic library characteristics m4_defun([_LT_CHECK_SHAREDLIB_FROM_LINKLIB], [m4_require([_LT_DECL_EGREP]) m4_require([_LT_DECL_OBJDUMP]) m4_require([_LT_DECL_DLLTOOL]) AC_CACHE_CHECK([how to associate runtime and link libraries], lt_cv_sharedlib_from_linklib_cmd, [lt_cv_sharedlib_from_linklib_cmd='unknown' case $host_os in cygwin* | mingw* | pw32* | cegcc*) # two different shell functions defined in ltmain.sh # decide which to use based on capabilities of $DLLTOOL case `$DLLTOOL --help 2>&1` in *--identify-strict*) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib ;; *) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib_fallback ;; esac ;; *) # fallback: assume linklib IS sharedlib lt_cv_sharedlib_from_linklib_cmd="$ECHO" ;; esac ]) sharedlib_from_linklib_cmd=$lt_cv_sharedlib_from_linklib_cmd test -z "$sharedlib_from_linklib_cmd" && sharedlib_from_linklib_cmd=$ECHO _LT_DECL([], [sharedlib_from_linklib_cmd], [1], [Command to associate shared and link libraries]) ])# _LT_CHECK_SHAREDLIB_FROM_LINKLIB # _LT_PATH_MANIFEST_TOOL # ---------------------- # locate the manifest tool m4_defun([_LT_PATH_MANIFEST_TOOL], [AC_CHECK_TOOL(MANIFEST_TOOL, mt, :) test -z "$MANIFEST_TOOL" && MANIFEST_TOOL=mt AC_CACHE_CHECK([if $MANIFEST_TOOL is a manifest tool], [lt_cv_path_mainfest_tool], [lt_cv_path_mainfest_tool=no echo "$as_me:$LINENO: $MANIFEST_TOOL '-?'" >&AS_MESSAGE_LOG_FD $MANIFEST_TOOL '-?' 2>conftest.err > conftest.out cat conftest.err >&AS_MESSAGE_LOG_FD if $GREP 'Manifest Tool' conftest.out > /dev/null; then lt_cv_path_mainfest_tool=yes fi rm -f conftest*]) if test "x$lt_cv_path_mainfest_tool" != xyes; then MANIFEST_TOOL=: fi _LT_DECL([], [MANIFEST_TOOL], [1], [Manifest tool])dnl ])# _LT_PATH_MANIFEST_TOOL # LT_LIB_M # -------- # check for math library AC_DEFUN([LT_LIB_M], [AC_REQUIRE([AC_CANONICAL_HOST])dnl LIBM= case $host in *-*-beos* | *-*-cegcc* | *-*-cygwin* | *-*-haiku* | *-*-pw32* | *-*-darwin*) # These system don't have libm, or don't need it ;; *-ncr-sysv4.3*) AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw") AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm") ;; *) AC_CHECK_LIB(m, cos, LIBM="-lm") ;; esac AC_SUBST([LIBM]) ])# LT_LIB_M # Old name: AU_ALIAS([AC_CHECK_LIBM], [LT_LIB_M]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_CHECK_LIBM], []) # _LT_COMPILER_NO_RTTI([TAGNAME]) # ------------------------------- m4_defun([_LT_COMPILER_NO_RTTI], [m4_require([_LT_TAG_COMPILER])dnl _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= if test "$GCC" = yes; then case $cc_basename in nvcc*) _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -Xcompiler -fno-builtin' ;; *) _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' ;; esac _LT_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions], lt_cv_prog_compiler_rtti_exceptions, [-fno-rtti -fno-exceptions], [], [_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"]) fi _LT_TAGDECL([no_builtin_flag], [lt_prog_compiler_no_builtin_flag], [1], [Compiler flag to turn off builtin functions]) ])# _LT_COMPILER_NO_RTTI # _LT_CMD_GLOBAL_SYMBOLS # ---------------------- m4_defun([_LT_CMD_GLOBAL_SYMBOLS], [AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_PROG_AWK])dnl AC_REQUIRE([LT_PATH_NM])dnl AC_REQUIRE([LT_PATH_LD])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_TAG_COMPILER])dnl # Check for command to grab the raw symbol name followed by C symbol from nm. AC_MSG_CHECKING([command to parse $NM output from $compiler object]) AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe], [ # These are sane defaults that work on at least a few old systems. # [They come from Ultrix. What could be older than Ultrix?!! ;)] # Character class describing NM global symbol codes. symcode='[[BCDEGRST]]' # Regexp to match symbols that can be accessed directly from C. sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)' # Define system-specific variables. case $host_os in aix*) symcode='[[BCDT]]' ;; cygwin* | mingw* | pw32* | cegcc*) symcode='[[ABCDGISTW]]' ;; hpux*) if test "$host_cpu" = ia64; then symcode='[[ABCDEGRST]]' fi ;; irix* | nonstopux*) symcode='[[BCDEGRST]]' ;; osf*) symcode='[[BCDEGQRST]]' ;; solaris*) symcode='[[BDRT]]' ;; sco3.2v5*) symcode='[[DT]]' ;; sysv4.2uw2*) symcode='[[DT]]' ;; sysv5* | sco5v6* | unixware* | OpenUNIX*) symcode='[[ABDT]]' ;; sysv4) symcode='[[DFNSTU]]' ;; esac # If we're using GNU nm, then use its standard symbol codes. case `$NM -V 2>&1` in *GNU* | *'with BFD'*) symcode='[[ABCDGIRSTW]]' ;; esac # Transform an extracted symbol line into a proper C declaration. # Some systems (esp. on ia64) link data and code symbols differently, # so use this general approach. lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" # Transform an extracted symbol line into symbol name and symbol address lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\)[[ ]]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (void *) \&\2},/p'" lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \([[^ ]]*\)[[ ]]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \(lib[[^ ]]*\)$/ {\"\2\", (void *) \&\2},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"lib\2\", (void *) \&\2},/p'" # Handle CRLF in mingw tool chain opt_cr= case $build_os in mingw*) opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp ;; esac # Try without a prefix underscore, then with it. for ac_symprfx in "" "_"; do # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. symxfrm="\\1 $ac_symprfx\\2 \\2" # Write the raw and C identifiers. if test "$lt_cv_nm_interface" = "MS dumpbin"; then # Fake it for dumpbin and say T for any non-static function # and D for any global variable. # Also find C++ and __fastcall symbols from MSVC++, # which start with @ or ?. lt_cv_sys_global_symbol_pipe="$AWK ['"\ " {last_section=section; section=\$ 3};"\ " /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\ " /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ " \$ 0!~/External *\|/{next};"\ " / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ " {if(hide[section]) next};"\ " {f=0}; \$ 0~/\(\).*\|/{f=1}; {printf f ? \"T \" : \"D \"};"\ " {split(\$ 0, a, /\||\r/); split(a[2], s)};"\ " s[1]~/^[@?]/{print s[1], s[1]; next};"\ " s[1]~prfx {split(s[1],t,\"@\"); print t[1], substr(t[1],length(prfx))}"\ " ' prfx=^$ac_symprfx]" else lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[ ]]\($symcode$symcode*\)[[ ]][[ ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" fi lt_cv_sys_global_symbol_pipe="$lt_cv_sys_global_symbol_pipe | sed '/ __gnu_lto/d'" # Check to see that the pipe works correctly. pipe_works=no rm -f conftest* cat > conftest.$ac_ext <<_LT_EOF #ifdef __cplusplus extern "C" { #endif char nm_test_var; void nm_test_func(void); void nm_test_func(void){} #ifdef __cplusplus } #endif int main(){nm_test_var='a';nm_test_func();return(0);} _LT_EOF if AC_TRY_EVAL(ac_compile); then # Now try to grab the symbols. nlist=conftest.nm if AC_TRY_EVAL(NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) && test -s "$nlist"; then # Try sorting and uniquifying the output. if sort "$nlist" | uniq > "$nlist"T; then mv -f "$nlist"T "$nlist" else rm -f "$nlist"T fi # Make sure that we snagged all the symbols we need. if $GREP ' nm_test_var$' "$nlist" >/dev/null; then if $GREP ' nm_test_func$' "$nlist" >/dev/null; then cat <<_LT_EOF > conftest.$ac_ext /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ #if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE) /* DATA imports from DLLs on WIN32 con't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs. */ # define LT@&t@_DLSYM_CONST #elif defined(__osf__) /* This system does not cope well with relocations in const data. */ # define LT@&t@_DLSYM_CONST #else # define LT@&t@_DLSYM_CONST const #endif #ifdef __cplusplus extern "C" { #endif _LT_EOF # Now generate the symbol file. eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext' cat <<_LT_EOF >> conftest.$ac_ext /* The mapping between symbol names and symbols. */ LT@&t@_DLSYM_CONST struct { const char *name; void *address; } lt__PROGRAM__LTX_preloaded_symbols[[]] = { { "@PROGRAM@", (void *) 0 }, _LT_EOF $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (void *) \&\2},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext cat <<\_LT_EOF >> conftest.$ac_ext {0, (void *) 0} }; /* This works around a problem in FreeBSD linker */ #ifdef FREEBSD_WORKAROUND static const void *lt_preloaded_setup() { return lt__PROGRAM__LTX_preloaded_symbols; } #endif #ifdef __cplusplus } #endif _LT_EOF # Now try linking the two files. mv conftest.$ac_objext conftstm.$ac_objext lt_globsym_save_LIBS=$LIBS lt_globsym_save_CFLAGS=$CFLAGS LIBS="conftstm.$ac_objext" CFLAGS="$CFLAGS$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)" if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext}; then pipe_works=yes fi LIBS=$lt_globsym_save_LIBS CFLAGS=$lt_globsym_save_CFLAGS else echo "cannot find nm_test_func in $nlist" >&AS_MESSAGE_LOG_FD fi else echo "cannot find nm_test_var in $nlist" >&AS_MESSAGE_LOG_FD fi else echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD fi else echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD cat conftest.$ac_ext >&5 fi rm -rf conftest* conftst* # Do not use the global_symbol_pipe unless it works. if test "$pipe_works" = yes; then break else lt_cv_sys_global_symbol_pipe= fi done ]) if test -z "$lt_cv_sys_global_symbol_pipe"; then lt_cv_sys_global_symbol_to_cdecl= fi if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then AC_MSG_RESULT(failed) else AC_MSG_RESULT(ok) fi # Response file support. if test "$lt_cv_nm_interface" = "MS dumpbin"; then nm_file_list_spec='@' elif $NM --help 2>/dev/null | grep '[[@]]FILE' >/dev/null; then nm_file_list_spec='@' fi _LT_DECL([global_symbol_pipe], [lt_cv_sys_global_symbol_pipe], [1], [Take the output of nm and produce a listing of raw symbols and C names]) _LT_DECL([global_symbol_to_cdecl], [lt_cv_sys_global_symbol_to_cdecl], [1], [Transform the output of nm in a proper C declaration]) _LT_DECL([global_symbol_to_c_name_address], [lt_cv_sys_global_symbol_to_c_name_address], [1], [Transform the output of nm in a C name address pair]) _LT_DECL([global_symbol_to_c_name_address_lib_prefix], [lt_cv_sys_global_symbol_to_c_name_address_lib_prefix], [1], [Transform the output of nm in a C name address pair when lib prefix is needed]) _LT_DECL([], [nm_file_list_spec], [1], [Specify filename containing input files for $NM]) ]) # _LT_CMD_GLOBAL_SYMBOLS # _LT_COMPILER_PIC([TAGNAME]) # --------------------------- m4_defun([_LT_COMPILER_PIC], [m4_require([_LT_TAG_COMPILER])dnl _LT_TAGVAR(lt_prog_compiler_wl, $1)= _LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_static, $1)= m4_if([$1], [CXX], [ # C++ specific cases for pic, static, wl, etc. if test "$GXX" = yes; then _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' ;; esac ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | os2* | pw32* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' ;; *djgpp*) # DJGPP does not support shared libraries at all _LT_TAGVAR(lt_prog_compiler_pic, $1)= ;; haiku*) # PIC is the default for Haiku. # The "-static" flag exists, but is broken. _LT_TAGVAR(lt_prog_compiler_static, $1)= ;; interix[[3-9]]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; sysv4*MP*) if test -d /usr/nec; then _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic fi ;; hpux*) # PIC is the default for 64-bit PA HP-UX, but not for 32-bit # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag # sets the default TLS model and affects inlining. case $host_cpu in hppa*64*) ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac ;; *qnx* | *nto*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac else case $host_os in aix[[4-9]]*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' else _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' fi ;; chorus*) case $cc_basename in cxch68*) # Green Hills C++ Compiler # _LT_TAGVAR(lt_prog_compiler_static, $1)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" ;; esac ;; mingw* | cygwin* | os2* | pw32* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) ;; dgux*) case $cc_basename in ec++*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ;; ghcx*) # Green Hills C++ Compiler _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; *) ;; esac ;; freebsd* | dragonfly*) # FreeBSD uses GNU C++ ;; hpux9* | hpux10* | hpux11*) case $cc_basename in CC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' if test "$host_cpu" != ia64; then _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' fi ;; aCC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' ;; esac ;; *) ;; esac ;; interix*) # This is c89, which is MS Visual C++ (no shared libs) # Anyone wants to do a port? ;; irix5* | irix6* | nonstopux*) case $cc_basename in CC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' # CC pic flag -KPIC is the default. ;; *) ;; esac ;; linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in KCC*) # KAI C++ Compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; ecpc* ) # old Intel C++ for x86_64 which still supported -KPIC. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; icpc* ) # Intel C++, used to be incompatible with GCC. # ICC 10 doesn't accept -KPIC any more. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; pgCC* | pgcpp*) # Portland Group C++ compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; cxx*) # Compaq C++ # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. _LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; xlc* | xlC* | bgxl[[cC]]* | mpixl[[cC]]*) # IBM XL 8.0, 9.0 on PPC and BlueGene _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ;; esac ;; esac ;; lynxos*) ;; m88k*) ;; mvs*) case $cc_basename in cxx*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall' ;; *) ;; esac ;; netbsd* | netbsdelf*-gnu) ;; *qnx* | *nto*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; osf3* | osf4* | osf5*) case $cc_basename in KCC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' ;; RCC*) # Rational C++ 2.4.1 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; cxx*) # Digital/Compaq C++ _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. _LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; *) ;; esac ;; psos*) ;; solaris*) case $cc_basename in CC* | sunCC*) # Sun C++ 4.2, 5.x and Centerline C++ _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ;; gcx*) # Green Hills C++ Compiler _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' ;; *) ;; esac ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; lcc*) # Lucid _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; *) ;; esac ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) case $cc_basename in CC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ;; *) ;; esac ;; vxworks*) ;; *) _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; esac fi ], [ if test "$GCC" = yes; then _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' ;; esac ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' ;; haiku*) # PIC is the default for Haiku. # The "-static" flag exists, but is broken. _LT_TAGVAR(lt_prog_compiler_static, $1)= ;; hpux*) # PIC is the default for 64-bit PA HP-UX, but not for 32-bit # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag # sets the default TLS model and affects inlining. case $host_cpu in hppa*64*) # +Z the default ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac ;; interix[[3-9]]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; msdosdjgpp*) # Just because we use GCC doesn't mean we suddenly get shared libraries # on systems that don't support them. _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no enable_shared=no ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; sysv4*MP*) if test -d /usr/nec; then _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic fi ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac case $cc_basename in nvcc*) # Cuda Compiler Driver 2.2 _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Xlinker ' if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then _LT_TAGVAR(lt_prog_compiler_pic, $1)="-Xcompiler $_LT_TAGVAR(lt_prog_compiler_pic, $1)" fi ;; esac else # PORTME Check for flag to pass linker flags through the system compiler. case $host_os in aix*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' else _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' fi ;; mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) ;; hpux9* | hpux10* | hpux11*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # PIC (with -KPIC) is the default. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in # old Intel for x86_64 which still supported -KPIC. ecc*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; # icc used to be incompatible with GCC. # ICC 10 doesn't accept -KPIC any more. icc* | ifort*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; # Lahey Fortran 8.1. lf95*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='--shared' _LT_TAGVAR(lt_prog_compiler_static, $1)='--static' ;; nagfor*) # NAG Fortran compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,-Wl,,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group compilers (*not* the Pentium gcc compiler, # which looks to be a dead project) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; ccc*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # All Alpha code is PIC. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; xl* | bgxl* | bgf* | mpixl*) # IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [[1-7]].* | *Sun*Fortran*\ 8.[[0-3]]*) # Sun Fortran 8.3 passes all unrecognized flags to the linker _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='' ;; *Sun\ F* | *Sun*Fortran*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ;; *Sun\ C*) # Sun C 5.9 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ;; *Intel*\ [[CF]]*Compiler*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; *Portland\ Group*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; esac ;; esac ;; newsos6) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; osf3* | osf4* | osf5*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # All OSF/1 code is PIC. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; rdos*) _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; solaris*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' case $cc_basename in f77* | f90* | f95* | sunf77* | sunf90* | sunf95*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ';; *) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,';; esac ;; sunos4*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; sysv4 | sysv4.2uw2* | sysv4.3*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; sysv4*MP*) if test -d /usr/nec ;then _LT_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; unicos*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; uts4*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; *) _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; esac fi ]) case $host_os in # For platforms which do not support PIC, -DPIC is meaningless: *djgpp*) _LT_TAGVAR(lt_prog_compiler_pic, $1)= ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)="$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])" ;; esac AC_CACHE_CHECK([for $compiler option to produce PIC], [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)], [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_prog_compiler_pic, $1)]) _LT_TAGVAR(lt_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_cv_prog_compiler_pic, $1) # # Check to make sure the PIC flag actually works. # if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then _LT_COMPILER_OPTION([if $compiler PIC flag $_LT_TAGVAR(lt_prog_compiler_pic, $1) works], [_LT_TAGVAR(lt_cv_prog_compiler_pic_works, $1)], [$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])], [], [case $_LT_TAGVAR(lt_prog_compiler_pic, $1) in "" | " "*) ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)=" $_LT_TAGVAR(lt_prog_compiler_pic, $1)" ;; esac], [_LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no]) fi _LT_TAGDECL([pic_flag], [lt_prog_compiler_pic], [1], [Additional compiler flags for building library objects]) _LT_TAGDECL([wl], [lt_prog_compiler_wl], [1], [How to pass a linker flag through the compiler]) # # Check to make sure the static flag actually works. # wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) eval lt_tmp_static_flag=\"$_LT_TAGVAR(lt_prog_compiler_static, $1)\" _LT_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], _LT_TAGVAR(lt_cv_prog_compiler_static_works, $1), $lt_tmp_static_flag, [], [_LT_TAGVAR(lt_prog_compiler_static, $1)=]) _LT_TAGDECL([link_static_flag], [lt_prog_compiler_static], [1], [Compiler flag to prevent dynamic linking]) ])# _LT_COMPILER_PIC # _LT_LINKER_SHLIBS([TAGNAME]) # ---------------------------- # See if the linker supports building shared libraries. m4_defun([_LT_LINKER_SHLIBS], [AC_REQUIRE([LT_PATH_LD])dnl AC_REQUIRE([LT_PATH_NM])dnl m4_require([_LT_PATH_MANIFEST_TOOL])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl m4_require([_LT_TAG_COMPILER])dnl AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) m4_if([$1], [CXX], [ _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] case $host_os in aix[[4-9]]*) # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm # Also, AIX nm treats weak defined symbols like other global defined # symbols, whereas GNU nm marks them as "W". if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' else _LT_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' fi ;; pw32*) _LT_TAGVAR(export_symbols_cmds, $1)="$ltdll_cmds" ;; cygwin* | mingw* | cegcc*) case $cc_basename in cl*) _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' ;; *) _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'] ;; esac ;; linux* | k*bsd*-gnu | gnu*) _LT_TAGVAR(link_all_deplibs, $1)=no ;; *) _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' ;; esac ], [ runpath_var= _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_cmds, $1)= _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(compiler_needs_object, $1)=no _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(old_archive_from_new_cmds, $1)= _LT_TAGVAR(old_archive_from_expsyms_cmds, $1)= _LT_TAGVAR(thread_safe_flag_spec, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= # include_expsyms should be a list of space-separated symbols to be *always* # included in the symbol list _LT_TAGVAR(include_expsyms, $1)= # exclude_expsyms can be an extended regexp of symbols to exclude # it will be wrapped by ` (' and `)$', so one must not match beginning or # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', # as well as any symbol that contains `d'. _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out # platforms (ab)use it in PIC code, but their linkers get confused if # the symbol is explicitly referenced. Since portable code cannot # rely on this symbol name, it's probably fine to never include it in # preloaded symbol tables. # Exclude shared library initialization/finalization symbols. dnl Note also adjust exclude_expsyms for C++ above. extract_expsyms_cmds= case $host_os in cygwin* | mingw* | pw32* | cegcc*) # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. if test "$GCC" != yes; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; openbsd*) with_gnu_ld=no ;; linux* | k*bsd*-gnu | gnu*) _LT_TAGVAR(link_all_deplibs, $1)=no ;; esac _LT_TAGVAR(ld_shlibs, $1)=yes # On some targets, GNU ld is compatible enough with the native linker # that we're better off using the native interface for both. lt_use_gnu_ld_interface=no if test "$with_gnu_ld" = yes; then case $host_os in aix*) # The AIX port of GNU ld has always aspired to compatibility # with the native linker. However, as the warning in the GNU ld # block says, versions before 2.19.5* couldn't really create working # shared libraries, regardless of the interface used. case `$LD -v 2>&1` in *\ \(GNU\ Binutils\)\ 2.19.5*) ;; *\ \(GNU\ Binutils\)\ 2.[[2-9]]*) ;; *\ \(GNU\ Binutils\)\ [[3-9]]*) ;; *) lt_use_gnu_ld_interface=yes ;; esac ;; *) lt_use_gnu_ld_interface=yes ;; esac fi if test "$lt_use_gnu_ld_interface" = yes; then # If archive_cmds runs LD, not CC, wlarc should be empty wlarc='${wl}' # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. runpath_var=LD_RUN_PATH _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else _LT_TAGVAR(whole_archive_flag_spec, $1)= fi supports_anon_versioning=no case `$LD -v 2>&1` in *GNU\ gold*) supports_anon_versioning=yes ;; *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... *\ 2.11.*) ;; # other 2.11 versions *) supports_anon_versioning=yes ;; esac # See if GNU ld supports shared libraries. case $host_os in aix[[3-9]]*) # On AIX/PPC, the GNU linker is very broken if test "$host_cpu" != ia64; then _LT_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 *** Warning: the GNU linker, at least up to release 2.19, is reported *** to be unable to reliably create shared libraries on AIX. *** Therefore, libtool is disabling shared libraries support. If you *** really care for shared libraries, you may want to install binutils *** 2.20 or above, or modify your PATH so that a non-GNU linker is found. *** You will then need to restart the configuration process. _LT_EOF fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='' ;; m68k) _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes ;; esac ;; beos*) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(allow_undefined_flag, $1)=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; cygwin* | mingw* | pw32* | cegcc*) # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, # as there is no search path for DLLs. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-all-symbols' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'] if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; haiku*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(link_all_deplibs, $1)=yes ;; interix[[3-9]]*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) tmp_diet=no if test "$host_os" = linux-dietlibc; then case $cc_basename in diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) esac fi if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ && test "$tmp_diet" = no then tmp_addflag=' $pic_flag' tmp_sharedflag='-shared' case $cc_basename,$host_cpu in pgcc*) # Portland Group C compiler _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group f77 and f90 compilers _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag -Mnomain' ;; ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 tmp_addflag=' -i_dynamic' ;; efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 tmp_addflag=' -i_dynamic -nofor_main' ;; ifc* | ifort*) # Intel Fortran compiler tmp_addflag=' -nofor_main' ;; lf95*) # Lahey Fortran 8.1 _LT_TAGVAR(whole_archive_flag_spec, $1)= tmp_sharedflag='--shared' ;; xl[[cC]]* | bgxl[[cC]]* | mpixl[[cC]]*) # IBM XL C 8.0 on PPC (deal with xlf below) tmp_sharedflag='-qmkshrobj' tmp_addflag= ;; nvcc*) # Cuda Compiler Driver 2.2 _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes ;; esac case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C 5.9 _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes tmp_sharedflag='-G' ;; *Sun\ F*) # Sun Fortran 8.3 tmp_sharedflag='-G' ;; esac _LT_TAGVAR(archive_cmds, $1)='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' if test "x$supports_anon_versioning" = xyes; then _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' fi case $cc_basename in xlf* | bgf* | bgxlf* | mpixlf*) # IBM XL Fortran 10.1 on PPC cannot create shared libs itself _LT_TAGVAR(whole_archive_flag_spec, $1)='--whole-archive$convenience --no-whole-archive' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib' if test "x$supports_anon_versioning" = xyes; then _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' fi ;; esac else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' fi ;; solaris*) if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then _LT_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 *** Warning: The releases 2.8.* of the GNU linker cannot reliably *** create shared libraries on Solaris systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.9.1 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) case `$LD -v 2>&1` in *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.1[[0-5]].*) _LT_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 *** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not *** reliably create shared libraries on SCO systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.16.91.0.3 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF ;; *) # For security reasons, it is highly recommended that you always # use absolute paths for naming shared libraries, and exclude the # DT_RUNPATH tag from executables and libraries. But doing so # requires that you compile everything twice, which is a pain. if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; sunos4*) _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' wlarc= _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac if test "$_LT_TAGVAR(ld_shlibs, $1)" = no; then runpath_var= _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= fi else # PORTME fill in a description of your system's linker (not GNU ld) case $host_os in aix3*) _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=yes _LT_TAGVAR(archive_expsym_cmds, $1)='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. _LT_TAGVAR(hardcode_minus_L, $1)=yes if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. _LT_TAGVAR(hardcode_direct, $1)=unsupported fi ;; aix[[4-9]]*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm # Also, AIX nm treats weak defined symbols like other global # defined symbols, whereas GNU nm marks them as "W". if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' else _LT_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) for ld_flag in $LDFLAGS; do if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then aix_use_runtimelinking=yes break fi done ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. _LT_TAGVAR(archive_cmds, $1)='' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(file_list_spec, $1)='${wl}-f,' if test "$GCC" = yes; then case $host_os in aix4.[[012]]|aix4.[[012]].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 _LT_TAGVAR(hardcode_direct, $1)=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)= fi ;; esac shared_flag='-shared' if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi _LT_TAGVAR(link_all_deplibs, $1)=no else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. _LT_TAGVAR(always_export_symbols, $1)=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. _LT_TAGVAR(allow_undefined_flag, $1)='-berok' # Determine the default libpath from the value encoded in an # empty executable. _LT_SYS_MODULE_PATH_AIX([$1]) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. _LT_SYS_MODULE_PATH_AIX([$1]) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' if test "$with_gnu_ld" = yes; then # We only use this code for GNU lds that support --whole-archive. _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' fi _LT_TAGVAR(archive_cmds_need_lc, $1)=yes # This is similar to how AIX traditionally builds its shared libraries. _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='' ;; m68k) _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes ;; esac ;; bsdi[[45]]*) _LT_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic ;; cygwin* | mingw* | pw32* | cegcc*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. case $cc_basename in cl*) # Native MSVC _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=yes _LT_TAGVAR(file_list_spec, $1)='@' # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then sed -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; else sed -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; fi~ $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1,DATA/'\'' | $SED -e '\''/^[[AITW]][[ ]]/s/.*[[ ]]//'\'' | sort | uniq > $export_symbols' # Don't use ranlib _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib' _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~ lt_tool_outputfile="@TOOL_OUTPUT@"~ case $lt_outputfile in *.exe|*.EXE) ;; *) lt_outputfile="$lt_outputfile.exe" lt_tool_outputfile="$lt_tool_outputfile.exe" ;; esac~ if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; $RM "$lt_outputfile.manifest"; fi' ;; *) # Assume MSVC wrapper _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. _LT_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' # FIXME: Should let the user specify the lib program. _LT_TAGVAR(old_archive_cmds, $1)='lib -OUT:$oldlib$oldobjs$old_deplibs' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes ;; esac ;; darwin* | rhapsody*) _LT_DARWIN_LINKER_FEATURES($1) ;; dgux*) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor # support. Future versions do this automatically, but an explicit c++rt0.o # does not break anything, and helps significantly (at the cost of a little # extra space). freebsd2.2*) _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. freebsd2.*) _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. freebsd* | dragonfly*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; hpux9*) if test "$GCC" = yes; then _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_direct, $1)=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' ;; hpux10*) if test "$GCC" = yes && test "$with_gnu_ld" = no; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi if test "$with_gnu_ld" = no; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_TAGVAR(hardcode_minus_L, $1)=yes fi ;; hpux11*) if test "$GCC" = yes && test "$with_gnu_ld" = no; then case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) m4_if($1, [], [ # Older versions of the 11.00 compiler do not understand -b yet # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does) _LT_LINKER_OPTION([if $CC understands -b], _LT_TAGVAR(lt_cv_prog_compiler__b, $1), [-b], [_LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'], [_LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'])], [_LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags']) ;; esac fi if test "$with_gnu_ld" = no; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: case $host_cpu in hppa*64*|ia64*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_TAGVAR(hardcode_minus_L, $1)=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) if test "$GCC" = yes; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' # Try to use the -exported_symbol ld option, if it does not # work, assume that -exports_file does not work either and # implicitly export all symbols. # This should be the same for all languages, so no per-tag cache variable. AC_CACHE_CHECK([whether the $host_os linker accepts -exported_symbol], [lt_cv_irix_exported_symbol], [save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null" AC_LINK_IFELSE( [AC_LANG_SOURCE( [AC_LANG_CASE([C], [[int foo (void) { return 0; }]], [C++], [[int foo (void) { return 0; }]], [Fortran 77], [[ subroutine foo end]], [Fortran], [[ subroutine foo end]])])], [lt_cv_irix_exported_symbol=yes], [lt_cv_irix_exported_symbol=no]) LDFLAGS="$save_LDFLAGS"]) if test "$lt_cv_irix_exported_symbol" = yes; then _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib' fi else _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib' fi _LT_TAGVAR(archive_cmds_need_lc, $1)='no' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(inherit_rpath, $1)=yes _LT_TAGVAR(link_all_deplibs, $1)=yes ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else _LT_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; newsos6) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *nto* | *qnx*) ;; openbsd*) if test -f /usr/libexec/ld.so; then _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=yes if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' else case $host_os in openbsd[[01]].* | openbsd2.[[0-7]] | openbsd2.[[0-7]].*) _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' ;; esac fi else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; os2*) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~echo DATA >> $output_objdir/$libname.def~echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' _LT_TAGVAR(old_archive_from_new_cmds, $1)='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' ;; osf3*) if test "$GCC" = yes; then _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' fi _LT_TAGVAR(archive_cmds_need_lc, $1)='no' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag if test "$GCC" = yes; then _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $pic_flag $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' else _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp' # Both c and cxx compiler support -rpath directly _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' fi _LT_TAGVAR(archive_cmds_need_lc, $1)='no' _LT_TAGVAR(hardcode_libdir_separator, $1)=: ;; solaris*) _LT_TAGVAR(no_undefined_flag, $1)=' -z defs' if test "$GCC" = yes; then wlarc='${wl}' _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' else case `$CC -V 2>&1` in *"Compilers 5.0"*) wlarc='' _LT_TAGVAR(archive_cmds, $1)='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' ;; *) wlarc='${wl}' _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' ;; esac fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands `-z linker_flag'. GCC discards it without `$wl', # but is careful enough not to reorder. # Supported since Solaris 2.6 (maybe 2.5.1?) if test "$GCC" = yes; then _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' else _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' fi ;; esac _LT_TAGVAR(link_all_deplibs, $1)=yes ;; sunos4*) if test "x$host_vendor" = xsequent; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; sysv4) case $host_vendor in sni) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=yes # is this really true??? ;; siemens) ## LD is ld it makes a PLAMLIB ## CC just makes a GrossModule. _LT_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(reload_cmds, $1)='$CC -r -o $output$reload_objs' _LT_TAGVAR(hardcode_direct, $1)=no ;; motorola) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=no #Motorola manual says yes, but my tests say they lie ;; esac runpath_var='LD_RUN_PATH' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; sysv4.3*) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport' ;; sysv4*MP*) if test -d /usr/nec; then _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var=LD_RUN_PATH hardcode_runpath_var=yes _LT_TAGVAR(ld_shlibs, $1)=yes fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; uts4*) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_TAGVAR(ld_shlibs, $1)=no ;; esac if test x$host_vendor = xsni; then case $host in sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Blargedynsym' ;; esac fi fi ]) AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no _LT_TAGVAR(with_gnu_ld, $1)=$with_gnu_ld _LT_DECL([], [libext], [0], [Old archive suffix (normally "a")])dnl _LT_DECL([], [shrext_cmds], [1], [Shared library suffix (normally ".so")])dnl _LT_DECL([], [extract_expsyms_cmds], [2], [The commands to extract the exported symbol list from a shared archive]) # # Do we need to explicitly link libc? # case "x$_LT_TAGVAR(archive_cmds_need_lc, $1)" in x|xyes) # Assume -lc should be added _LT_TAGVAR(archive_cmds_need_lc, $1)=yes if test "$enable_shared" = yes && test "$GCC" = yes; then case $_LT_TAGVAR(archive_cmds, $1) in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. AC_CACHE_CHECK([whether -lc should be explicitly linked in], [lt_cv_]_LT_TAGVAR(archive_cmds_need_lc, $1), [$RM conftest* echo "$lt_simple_compile_test_code" > conftest.$ac_ext if AC_TRY_EVAL(ac_compile) 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) pic_flag=$_LT_TAGVAR(lt_prog_compiler_pic, $1) compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$_LT_TAGVAR(allow_undefined_flag, $1) _LT_TAGVAR(allow_undefined_flag, $1)= if AC_TRY_EVAL(_LT_TAGVAR(archive_cmds, $1) 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) then lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=no else lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=yes fi _LT_TAGVAR(allow_undefined_flag, $1)=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $RM conftest* ]) _LT_TAGVAR(archive_cmds_need_lc, $1)=$lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1) ;; esac fi ;; esac _LT_TAGDECL([build_libtool_need_lc], [archive_cmds_need_lc], [0], [Whether or not to add -lc for building shared libraries]) _LT_TAGDECL([allow_libtool_libs_with_static_runtimes], [enable_shared_with_static_runtimes], [0], [Whether or not to disallow shared libs when runtime libs are static]) _LT_TAGDECL([], [export_dynamic_flag_spec], [1], [Compiler flag to allow reflexive dlopens]) _LT_TAGDECL([], [whole_archive_flag_spec], [1], [Compiler flag to generate shared objects directly from archives]) _LT_TAGDECL([], [compiler_needs_object], [1], [Whether the compiler copes with passing no objects directly]) _LT_TAGDECL([], [old_archive_from_new_cmds], [2], [Create an old-style archive from a shared archive]) _LT_TAGDECL([], [old_archive_from_expsyms_cmds], [2], [Create a temporary old-style archive to link instead of a shared archive]) _LT_TAGDECL([], [archive_cmds], [2], [Commands used to build a shared archive]) _LT_TAGDECL([], [archive_expsym_cmds], [2]) _LT_TAGDECL([], [module_cmds], [2], [Commands used to build a loadable module if different from building a shared archive.]) _LT_TAGDECL([], [module_expsym_cmds], [2]) _LT_TAGDECL([], [with_gnu_ld], [1], [Whether we are building with GNU ld or not]) _LT_TAGDECL([], [allow_undefined_flag], [1], [Flag that allows shared libraries with undefined symbols to be built]) _LT_TAGDECL([], [no_undefined_flag], [1], [Flag that enforces no undefined symbols]) _LT_TAGDECL([], [hardcode_libdir_flag_spec], [1], [Flag to hardcode $libdir into a binary during linking. This must work even if $libdir does not exist]) _LT_TAGDECL([], [hardcode_libdir_separator], [1], [Whether we need a single "-rpath" flag with a separated argument]) _LT_TAGDECL([], [hardcode_direct], [0], [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the resulting binary]) _LT_TAGDECL([], [hardcode_direct_absolute], [0], [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the resulting binary and the resulting library dependency is "absolute", i.e impossible to change by setting ${shlibpath_var} if the library is relocated]) _LT_TAGDECL([], [hardcode_minus_L], [0], [Set to "yes" if using the -LDIR flag during linking hardcodes DIR into the resulting binary]) _LT_TAGDECL([], [hardcode_shlibpath_var], [0], [Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into the resulting binary]) _LT_TAGDECL([], [hardcode_automatic], [0], [Set to "yes" if building a shared library automatically hardcodes DIR into the library and all subsequent libraries and executables linked against it]) _LT_TAGDECL([], [inherit_rpath], [0], [Set to yes if linker adds runtime paths of dependent libraries to runtime path list]) _LT_TAGDECL([], [link_all_deplibs], [0], [Whether libtool must link a program against all its dependency libraries]) _LT_TAGDECL([], [always_export_symbols], [0], [Set to "yes" if exported symbols are required]) _LT_TAGDECL([], [export_symbols_cmds], [2], [The commands to list exported symbols]) _LT_TAGDECL([], [exclude_expsyms], [1], [Symbols that should not be listed in the preloaded symbols]) _LT_TAGDECL([], [include_expsyms], [1], [Symbols that must always be exported]) _LT_TAGDECL([], [prelink_cmds], [2], [Commands necessary for linking programs (against libraries) with templates]) _LT_TAGDECL([], [postlink_cmds], [2], [Commands necessary for finishing linking programs]) _LT_TAGDECL([], [file_list_spec], [1], [Specify filename containing input files]) dnl FIXME: Not yet implemented dnl _LT_TAGDECL([], [thread_safe_flag_spec], [1], dnl [Compiler flag to generate thread safe objects]) ])# _LT_LINKER_SHLIBS # _LT_LANG_C_CONFIG([TAG]) # ------------------------ # Ensure that the configuration variables for a C compiler are suitably # defined. These variables are subsequently used by _LT_CONFIG to write # the compiler configuration to `libtool'. m4_defun([_LT_LANG_C_CONFIG], [m4_require([_LT_DECL_EGREP])dnl lt_save_CC="$CC" AC_LANG_PUSH(C) # Source file extension for C test sources. ac_ext=c # Object file extension for compiled C test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" # Code to be used in simple link tests lt_simple_link_test_code='int main(){return(0);}' _LT_TAG_COMPILER # Save the default compiler, since it gets overwritten when the other # tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP. compiler_DEFAULT=$CC # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE if test -n "$compiler"; then _LT_COMPILER_NO_RTTI($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) LT_SYS_DLOPEN_SELF _LT_CMD_STRIPLIB # Report which library types will actually be built AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) test "$can_build_shared" = "no" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no fi ;; esac AC_MSG_RESULT([$enable_shared]) AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. test "$enable_shared" = yes || enable_static=yes AC_MSG_RESULT([$enable_static]) _LT_CONFIG($1) fi AC_LANG_POP CC="$lt_save_CC" ])# _LT_LANG_C_CONFIG # _LT_LANG_CXX_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for a C++ compiler are suitably # defined. These variables are subsequently used by _LT_CONFIG to write # the compiler configuration to `libtool'. m4_defun([_LT_LANG_CXX_CONFIG], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_PATH_MANIFEST_TOOL])dnl if test -n "$CXX" && ( test "X$CXX" != "Xno" && ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || (test "X$CXX" != "Xg++"))) ; then AC_PROG_CXXCPP else _lt_caught_CXX_error=yes fi AC_LANG_PUSH(C++) _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(compiler_needs_object, $1)=no _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds _LT_TAGVAR(no_undefined_flag, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no # Source file extension for C++ test sources. ac_ext=cpp # Object file extension for compiled C++ test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # No sense in running all these tests if we already determined that # the CXX compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. if test "$_lt_caught_CXX_error" != yes; then # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" # Code to be used in simple link tests lt_simple_link_test_code='int main(int, char *[[]]) { return(0); }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_CFLAGS=$CFLAGS lt_save_LD=$LD lt_save_GCC=$GCC GCC=$GXX lt_save_with_gnu_ld=$with_gnu_ld lt_save_path_LD=$lt_cv_path_LD if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx else $as_unset lt_cv_prog_gnu_ld fi if test -n "${lt_cv_path_LDCXX+set}"; then lt_cv_path_LD=$lt_cv_path_LDCXX else $as_unset lt_cv_path_LD fi test -z "${LDCXX+set}" || LD=$LDCXX CC=${CXX-"c++"} CFLAGS=$CXXFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) if test -n "$compiler"; then # We don't want -fno-exception when compiling C++ code, so set the # no_builtin_flag separately if test "$GXX" = yes; then _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' else _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= fi if test "$GXX" = yes; then # Set up default GNU C++ configuration LT_PATH_LD # Check if GNU C++ uses GNU ld as the underlying linker, since the # archiving commands below assume that GNU ld is being used. if test "$with_gnu_ld" = yes; then _LT_TAGVAR(archive_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' # If archive_cmds runs LD, not CC, wlarc should be empty # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to # investigate it a little bit more. (MM) wlarc='${wl}' # ancient GNU ld didn't support --whole-archive et. al. if eval "`$CC -print-prog-name=ld` --help 2>&1" | $GREP 'no-whole-archive' > /dev/null; then _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else _LT_TAGVAR(whole_archive_flag_spec, $1)= fi else with_gnu_ld=no wlarc= # A generic and very simple default shared library creation # command for GNU C++ for the case where it uses the native # linker, instead of GNU ld. If possible, this setting should # overridden to take advantage of the native linker features on # the platform it is being used on. _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' fi # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' else GXX=no with_gnu_ld=no wlarc= fi # PORTME: fill in a description of your system's C++ link characteristics AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) _LT_TAGVAR(ld_shlibs, $1)=yes case $host_os in aix3*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; aix[[4-9]]*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) for ld_flag in $LDFLAGS; do case $ld_flag in *-brtl*) aix_use_runtimelinking=yes break ;; esac done ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. _LT_TAGVAR(archive_cmds, $1)='' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(file_list_spec, $1)='${wl}-f,' if test "$GXX" = yes; then case $host_os in aix4.[[012]]|aix4.[[012]].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 _LT_TAGVAR(hardcode_direct, $1)=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)= fi esac shared_flag='-shared' if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to # export. _LT_TAGVAR(always_export_symbols, $1)=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. _LT_TAGVAR(allow_undefined_flag, $1)='-berok' # Determine the default libpath from the value encoded in an empty # executable. _LT_SYS_MODULE_PATH_AIX([$1]) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. _LT_SYS_MODULE_PATH_AIX([$1]) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' if test "$with_gnu_ld" = yes; then # We only use this code for GNU lds that support --whole-archive. _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' fi _LT_TAGVAR(archive_cmds_need_lc, $1)=yes # This is similar to how AIX traditionally builds its shared # libraries. _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; beos*) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(allow_undefined_flag, $1)=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; chorus*) case $cc_basename in *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; cygwin* | mingw* | pw32* | cegcc*) case $GXX,$cc_basename in ,cl* | no,cl*) # Native MSVC # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=yes _LT_TAGVAR(file_list_spec, $1)='@' # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then $SED -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; else $SED -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; fi~ $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes # Don't use ranlib _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib' _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~ lt_tool_outputfile="@TOOL_OUTPUT@"~ case $lt_outputfile in *.exe|*.EXE) ;; *) lt_outputfile="$lt_outputfile.exe" lt_tool_outputfile="$lt_tool_outputfile.exe" ;; esac~ func_to_tool_file "$lt_outputfile"~ if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; $RM "$lt_outputfile.manifest"; fi' ;; *) # g++ # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, # as there is no search path for DLLs. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-all-symbols' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; darwin* | rhapsody*) _LT_DARWIN_LINKER_FEATURES($1) ;; dgux*) case $cc_basename in ec++*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; ghcx*) # Green Hills C++ Compiler # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; freebsd2.*) # C++ shared libraries reported to be fairly broken before # switch to ELF _LT_TAGVAR(ld_shlibs, $1)=no ;; freebsd-elf*) _LT_TAGVAR(archive_cmds_need_lc, $1)=no ;; freebsd* | dragonfly*) # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF # conventions _LT_TAGVAR(ld_shlibs, $1)=yes ;; haiku*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(link_all_deplibs, $1)=yes ;; hpux9*) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, # but as the default # location of the library. case $cc_basename in CC*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; aCC*) _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) if test "$GXX" = yes; then _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared -nostdlib $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; hpux10*|hpux11*) if test $with_gnu_ld = no; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: case $host_cpu in hppa*64*|ia64*) ;; *) _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' ;; esac fi case $host_cpu in hppa*64*|ia64*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, # but as the default # location of the library. ;; esac case $cc_basename in CC*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; aCC*) case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) if test "$GXX" = yes; then if test $with_gnu_ld = no; then case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac fi else # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; interix[[3-9]]*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; irix5* | irix6*) case $cc_basename in CC*) # SGI C++ _LT_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' # Archives containing C++ object files must be created using # "CC -ar", where "CC" is the IRIX C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs' ;; *) if test "$GXX" = yes; then if test "$with_gnu_ld" = no; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` -o $lib' fi fi _LT_TAGVAR(link_all_deplibs, $1)=yes ;; esac _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(inherit_rpath, $1)=yes ;; linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' # Archives containing C++ object files must be created using # "CC -Bstatic", where "CC" is the KAI C++ compiler. _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; icpc* | ecpc* ) # Intel C++ with_gnu_ld=yes # version 8.0 and above of icpc choke on multiply defined symbols # if we add $predep_objects and $postdep_objects, however 7.1 and # earlier do not add the objects themselves. case `$CC -V 2>&1` in *"Version 7."*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ;; *) # Version 8.0 or newer tmp_idyn= case $host_cpu in ia64*) tmp_idyn=' -i_dynamic';; esac _LT_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ;; esac _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' ;; pgCC* | pgcpp*) # Portland Group C++ compiler case `$CC -V` in *pgCC\ [[1-5]].* | *pgcpp\ [[1-5]].*) _LT_TAGVAR(prelink_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~ compile_command="$compile_command `find $tpldir -name \*.o | sort | $NL2SP`"' _LT_TAGVAR(old_archive_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~ $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | sort | $NL2SP`~ $RANLIB $oldlib' _LT_TAGVAR(archive_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' ;; *) # Version 6 and above use weak symbols _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' ;; esac _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' ;; cxx*) # Compaq C++ _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols' runpath_var=LD_RUN_PATH _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "X$list" | $Xsed' ;; xl* | mpixl* | bgxl*) # IBM XL 8.0 on PPC, with GNU ld _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' _LT_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' if test "x$supports_anon_versioning" = xyes; then _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' fi ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file ${wl}$export_symbols' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes # Not sure whether something based on # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 # would be better. output_verbose_link_cmd='func_echo_all' # Archives containing C++ object files must be created using # "CC -xar", where "CC" is the Sun C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' ;; esac ;; esac ;; lynxos*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; m88k*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; mvs*) case $cc_basename in cxx*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' wlarc= _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no fi # Workaround some broken pre-1.5 toolchains output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' ;; *nto* | *qnx*) _LT_TAGVAR(ld_shlibs, $1)=yes ;; openbsd2*) # C++ shared libraries are fairly broken _LT_TAGVAR(ld_shlibs, $1)=no ;; openbsd*) if test -f /usr/libexec/ld.so; then _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' fi output_verbose_link_cmd=func_echo_all else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; osf3* | osf4* | osf5*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Archives containing C++ object files must be created using # the KAI C++ compiler. case $host in osf3*) _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; *) _LT_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs' ;; esac ;; RCC*) # Rational C++ 2.4.1 # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; cxx*) case $host in osf3*) _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && func_echo_all "${wl}-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' ;; *) _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ echo "-hidden">> $lib.exp~ $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname ${wl}-input ${wl}$lib.exp `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~ $RM $lib.exp' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' ;; esac _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) if test "$GXX" = yes && test "$with_gnu_ld" = no; then _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' case $host in osf3*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' ;; esac _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' else # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; psos*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; lcc*) # Lucid # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; solaris*) case $cc_basename in CC* | sunCC*) # Sun C++ 4.2, 5.x and Centerline C++ _LT_TAGVAR(archive_cmds_need_lc,$1)=yes _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands `-z linker_flag'. # Supported since Solaris 2.6 (maybe 2.5.1?) _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' ;; esac _LT_TAGVAR(link_all_deplibs, $1)=yes output_verbose_link_cmd='func_echo_all' # Archives containing C++ object files must be created using # "CC -xar", where "CC" is the Sun C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' ;; gcx*) # Green Hills C++ Compiler _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' # The C++ compiler must be used to create the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs' ;; *) # GNU C++ compiler with Solaris linker if test "$GXX" = yes && test "$with_gnu_ld" = no; then _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-z ${wl}defs' if $CC --version | $GREP -v '^2\.7' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -shared $pic_flag -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' else # g++ 2.7 appears to require `-G' NOT `-shared' on this # platform. _LT_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $wl$libdir' case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' ;; esac fi ;; esac ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var='LD_RUN_PATH' case $cc_basename in CC*) _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' runpath_var='LD_RUN_PATH' case $cc_basename in CC*) _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(old_archive_cmds, $1)='$CC -Tprelink_objects $oldobjs~ '"$_LT_TAGVAR(old_archive_cmds, $1)" _LT_TAGVAR(reload_cmds, $1)='$CC -Tprelink_objects $reload_objs~ '"$_LT_TAGVAR(reload_cmds, $1)" ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; vxworks*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no _LT_TAGVAR(GCC, $1)="$GXX" _LT_TAGVAR(LD, $1)="$LD" ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... _LT_SYS_HIDDEN_LIBDEPS($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi # test -n "$compiler" CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS LDCXX=$LD LD=$lt_save_LD GCC=$lt_save_GCC with_gnu_ld=$lt_save_with_gnu_ld lt_cv_path_LDCXX=$lt_cv_path_LD lt_cv_path_LD=$lt_save_path_LD lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld fi # test "$_lt_caught_CXX_error" != yes AC_LANG_POP ])# _LT_LANG_CXX_CONFIG # _LT_FUNC_STRIPNAME_CNF # ---------------------- # func_stripname_cnf prefix suffix name # strip PREFIX and SUFFIX off of NAME. # PREFIX and SUFFIX must not contain globbing or regex special # characters, hashes, percent signs, but SUFFIX may contain a leading # dot (in which case that matches only a dot). # # This function is identical to the (non-XSI) version of func_stripname, # except this one can be used by m4 code that may be executed by configure, # rather than the libtool script. m4_defun([_LT_FUNC_STRIPNAME_CNF],[dnl AC_REQUIRE([_LT_DECL_SED]) AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH]) func_stripname_cnf () { case ${2} in .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;; *) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;; esac } # func_stripname_cnf ])# _LT_FUNC_STRIPNAME_CNF # _LT_SYS_HIDDEN_LIBDEPS([TAGNAME]) # --------------------------------- # Figure out "hidden" library dependencies from verbose # compiler output when linking a shared library. # Parse the compiler output and extract the necessary # objects, libraries and library flags. m4_defun([_LT_SYS_HIDDEN_LIBDEPS], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl AC_REQUIRE([_LT_FUNC_STRIPNAME_CNF])dnl # Dependencies to place before and after the object being linked: _LT_TAGVAR(predep_objects, $1)= _LT_TAGVAR(postdep_objects, $1)= _LT_TAGVAR(predeps, $1)= _LT_TAGVAR(postdeps, $1)= _LT_TAGVAR(compiler_lib_search_path, $1)= dnl we can't use the lt_simple_compile_test_code here, dnl because it contains code intended for an executable, dnl not a library. It's possible we should let each dnl tag define a new lt_????_link_test_code variable, dnl but it's only used here... m4_if([$1], [], [cat > conftest.$ac_ext <<_LT_EOF int a; void foo (void) { a = 0; } _LT_EOF ], [$1], [CXX], [cat > conftest.$ac_ext <<_LT_EOF class Foo { public: Foo (void) { a = 0; } private: int a; }; _LT_EOF ], [$1], [F77], [cat > conftest.$ac_ext <<_LT_EOF subroutine foo implicit none integer*4 a a=0 return end _LT_EOF ], [$1], [FC], [cat > conftest.$ac_ext <<_LT_EOF subroutine foo implicit none integer a a=0 return end _LT_EOF ], [$1], [GCJ], [cat > conftest.$ac_ext <<_LT_EOF public class foo { private int a; public void bar (void) { a = 0; } }; _LT_EOF ], [$1], [GO], [cat > conftest.$ac_ext <<_LT_EOF package foo func foo() { } _LT_EOF ]) _lt_libdeps_save_CFLAGS=$CFLAGS case "$CC $CFLAGS " in #( *\ -flto*\ *) CFLAGS="$CFLAGS -fno-lto" ;; *\ -fwhopr*\ *) CFLAGS="$CFLAGS -fno-whopr" ;; *\ -fuse-linker-plugin*\ *) CFLAGS="$CFLAGS -fno-use-linker-plugin" ;; esac dnl Parse the compiler output and extract the necessary dnl objects, libraries and library flags. if AC_TRY_EVAL(ac_compile); then # Parse the compiler output and extract the necessary # objects, libraries and library flags. # Sentinel used to keep track of whether or not we are before # the conftest object file. pre_test_object_deps_done=no for p in `eval "$output_verbose_link_cmd"`; do case ${prev}${p} in -L* | -R* | -l*) # Some compilers place space between "-{L,R}" and the path. # Remove the space. if test $p = "-L" || test $p = "-R"; then prev=$p continue fi # Expand the sysroot to ease extracting the directories later. if test -z "$prev"; then case $p in -L*) func_stripname_cnf '-L' '' "$p"; prev=-L; p=$func_stripname_result ;; -R*) func_stripname_cnf '-R' '' "$p"; prev=-R; p=$func_stripname_result ;; -l*) func_stripname_cnf '-l' '' "$p"; prev=-l; p=$func_stripname_result ;; esac fi case $p in =*) func_stripname_cnf '=' '' "$p"; p=$lt_sysroot$func_stripname_result ;; esac if test "$pre_test_object_deps_done" = no; then case ${prev} in -L | -R) # Internal compiler library paths should come after those # provided the user. The postdeps already come after the # user supplied libs so there is no need to process them. if test -z "$_LT_TAGVAR(compiler_lib_search_path, $1)"; then _LT_TAGVAR(compiler_lib_search_path, $1)="${prev}${p}" else _LT_TAGVAR(compiler_lib_search_path, $1)="${_LT_TAGVAR(compiler_lib_search_path, $1)} ${prev}${p}" fi ;; # The "-l" case would never come before the object being # linked, so don't bother handling this case. esac else if test -z "$_LT_TAGVAR(postdeps, $1)"; then _LT_TAGVAR(postdeps, $1)="${prev}${p}" else _LT_TAGVAR(postdeps, $1)="${_LT_TAGVAR(postdeps, $1)} ${prev}${p}" fi fi prev= ;; *.lto.$objext) ;; # Ignore GCC LTO objects *.$objext) # This assumes that the test object file only shows up # once in the compiler output. if test "$p" = "conftest.$objext"; then pre_test_object_deps_done=yes continue fi if test "$pre_test_object_deps_done" = no; then if test -z "$_LT_TAGVAR(predep_objects, $1)"; then _LT_TAGVAR(predep_objects, $1)="$p" else _LT_TAGVAR(predep_objects, $1)="$_LT_TAGVAR(predep_objects, $1) $p" fi else if test -z "$_LT_TAGVAR(postdep_objects, $1)"; then _LT_TAGVAR(postdep_objects, $1)="$p" else _LT_TAGVAR(postdep_objects, $1)="$_LT_TAGVAR(postdep_objects, $1) $p" fi fi ;; *) ;; # Ignore the rest. esac done # Clean up. rm -f a.out a.exe else echo "libtool.m4: error: problem compiling $1 test program" fi $RM -f confest.$objext CFLAGS=$_lt_libdeps_save_CFLAGS # PORTME: override above test on systems where it is broken m4_if([$1], [CXX], [case $host_os in interix[[3-9]]*) # Interix 3.5 installs completely hosed .la files for C++, so rather than # hack all around it, let's just trust "g++" to DTRT. _LT_TAGVAR(predep_objects,$1)= _LT_TAGVAR(postdep_objects,$1)= _LT_TAGVAR(postdeps,$1)= ;; linux*) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 # The more standards-conforming stlport4 library is # incompatible with the Cstd library. Avoid specifying # it if it's in CXXFLAGS. Ignore libCrun as # -library=stlport4 depends on it. case " $CXX $CXXFLAGS " in *" -library=stlport4 "*) solaris_use_stlport4=yes ;; esac if test "$solaris_use_stlport4" != yes; then _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun' fi ;; esac ;; solaris*) case $cc_basename in CC* | sunCC*) # The more standards-conforming stlport4 library is # incompatible with the Cstd library. Avoid specifying # it if it's in CXXFLAGS. Ignore libCrun as # -library=stlport4 depends on it. case " $CXX $CXXFLAGS " in *" -library=stlport4 "*) solaris_use_stlport4=yes ;; esac # Adding this requires a known-good setup of shared libraries for # Sun compiler versions before 5.6, else PIC objects from an old # archive will be linked into the output, leading to subtle bugs. if test "$solaris_use_stlport4" != yes; then _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun' fi ;; esac ;; esac ]) case " $_LT_TAGVAR(postdeps, $1) " in *" -lc "*) _LT_TAGVAR(archive_cmds_need_lc, $1)=no ;; esac _LT_TAGVAR(compiler_lib_search_dirs, $1)= if test -n "${_LT_TAGVAR(compiler_lib_search_path, $1)}"; then _LT_TAGVAR(compiler_lib_search_dirs, $1)=`echo " ${_LT_TAGVAR(compiler_lib_search_path, $1)}" | ${SED} -e 's! -L! !g' -e 's!^ !!'` fi _LT_TAGDECL([], [compiler_lib_search_dirs], [1], [The directories searched by this compiler when creating a shared library]) _LT_TAGDECL([], [predep_objects], [1], [Dependencies to place before and after the objects being linked to create a shared library]) _LT_TAGDECL([], [postdep_objects], [1]) _LT_TAGDECL([], [predeps], [1]) _LT_TAGDECL([], [postdeps], [1]) _LT_TAGDECL([], [compiler_lib_search_path], [1], [The library search path used internally by the compiler when linking a shared library]) ])# _LT_SYS_HIDDEN_LIBDEPS # _LT_LANG_F77_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for a Fortran 77 compiler are # suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to `libtool'. m4_defun([_LT_LANG_F77_CONFIG], [AC_LANG_PUSH(Fortran 77) if test -z "$F77" || test "X$F77" = "Xno"; then _lt_disable_F77=yes fi _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds _LT_TAGVAR(no_undefined_flag, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no # Source file extension for f77 test sources. ac_ext=f # Object file extension for compiled f77 test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # No sense in running all these tests if we already determined that # the F77 compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. if test "$_lt_disable_F77" != yes; then # Code to be used in simple compile tests lt_simple_compile_test_code="\ subroutine t return end " # Code to be used in simple link tests lt_simple_link_test_code="\ program t end " # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC="$CC" lt_save_GCC=$GCC lt_save_CFLAGS=$CFLAGS CC=${F77-"f77"} CFLAGS=$FFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) GCC=$G77 if test -n "$compiler"; then AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) test "$can_build_shared" = "no" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no fi ;; esac AC_MSG_RESULT([$enable_shared]) AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. test "$enable_shared" = yes || enable_static=yes AC_MSG_RESULT([$enable_static]) _LT_TAGVAR(GCC, $1)="$G77" _LT_TAGVAR(LD, $1)="$LD" ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi # test -n "$compiler" GCC=$lt_save_GCC CC="$lt_save_CC" CFLAGS="$lt_save_CFLAGS" fi # test "$_lt_disable_F77" != yes AC_LANG_POP ])# _LT_LANG_F77_CONFIG # _LT_LANG_FC_CONFIG([TAG]) # ------------------------- # Ensure that the configuration variables for a Fortran compiler are # suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to `libtool'. m4_defun([_LT_LANG_FC_CONFIG], [AC_LANG_PUSH(Fortran) if test -z "$FC" || test "X$FC" = "Xno"; then _lt_disable_FC=yes fi _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds _LT_TAGVAR(no_undefined_flag, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no # Source file extension for fc test sources. ac_ext=${ac_fc_srcext-f} # Object file extension for compiled fc test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # No sense in running all these tests if we already determined that # the FC compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. if test "$_lt_disable_FC" != yes; then # Code to be used in simple compile tests lt_simple_compile_test_code="\ subroutine t return end " # Code to be used in simple link tests lt_simple_link_test_code="\ program t end " # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC="$CC" lt_save_GCC=$GCC lt_save_CFLAGS=$CFLAGS CC=${FC-"f95"} CFLAGS=$FCFLAGS compiler=$CC GCC=$ac_cv_fc_compiler_gnu _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) if test -n "$compiler"; then AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) test "$can_build_shared" = "no" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no fi ;; esac AC_MSG_RESULT([$enable_shared]) AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. test "$enable_shared" = yes || enable_static=yes AC_MSG_RESULT([$enable_static]) _LT_TAGVAR(GCC, $1)="$ac_cv_fc_compiler_gnu" _LT_TAGVAR(LD, $1)="$LD" ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... _LT_SYS_HIDDEN_LIBDEPS($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi # test -n "$compiler" GCC=$lt_save_GCC CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS fi # test "$_lt_disable_FC" != yes AC_LANG_POP ])# _LT_LANG_FC_CONFIG # _LT_LANG_GCJ_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for the GNU Java Compiler compiler # are suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to `libtool'. m4_defun([_LT_LANG_GCJ_CONFIG], [AC_REQUIRE([LT_PROG_GCJ])dnl AC_LANG_SAVE # Source file extension for Java test sources. ac_ext=java # Object file extension for compiled Java test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="class foo {}" # Code to be used in simple link tests lt_simple_link_test_code='public class conftest { public static void main(String[[]] argv) {}; }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_CFLAGS=$CFLAGS lt_save_GCC=$GCC GCC=yes CC=${GCJ-"gcj"} CFLAGS=$GCJFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_TAGVAR(LD, $1)="$LD" _LT_CC_BASENAME([$compiler]) # GCJ did not exist at the time GCC didn't implicitly link libc in. _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds if test -n "$compiler"; then _LT_COMPILER_NO_RTTI($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi AC_LANG_RESTORE GCC=$lt_save_GCC CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS ])# _LT_LANG_GCJ_CONFIG # _LT_LANG_GO_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for the GNU Go compiler # are suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to `libtool'. m4_defun([_LT_LANG_GO_CONFIG], [AC_REQUIRE([LT_PROG_GO])dnl AC_LANG_SAVE # Source file extension for Go test sources. ac_ext=go # Object file extension for compiled Go test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="package main; func main() { }" # Code to be used in simple link tests lt_simple_link_test_code='package main; func main() { }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_CFLAGS=$CFLAGS lt_save_GCC=$GCC GCC=yes CC=${GOC-"gccgo"} CFLAGS=$GOFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_TAGVAR(LD, $1)="$LD" _LT_CC_BASENAME([$compiler]) # Go did not exist at the time GCC didn't implicitly link libc in. _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds if test -n "$compiler"; then _LT_COMPILER_NO_RTTI($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi AC_LANG_RESTORE GCC=$lt_save_GCC CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS ])# _LT_LANG_GO_CONFIG # _LT_LANG_RC_CONFIG([TAG]) # ------------------------- # Ensure that the configuration variables for the Windows resource compiler # are suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to `libtool'. m4_defun([_LT_LANG_RC_CONFIG], [AC_REQUIRE([LT_PROG_RC])dnl AC_LANG_SAVE # Source file extension for RC test sources. ac_ext=rc # Object file extension for compiled RC test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }' # Code to be used in simple link tests lt_simple_link_test_code="$lt_simple_compile_test_code" # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC="$CC" lt_save_CFLAGS=$CFLAGS lt_save_GCC=$GCC GCC= CC=${RC-"windres"} CFLAGS= compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) _LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes if test -n "$compiler"; then : _LT_CONFIG($1) fi GCC=$lt_save_GCC AC_LANG_RESTORE CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS ])# _LT_LANG_RC_CONFIG # LT_PROG_GCJ # ----------- AC_DEFUN([LT_PROG_GCJ], [m4_ifdef([AC_PROG_GCJ], [AC_PROG_GCJ], [m4_ifdef([A][M_PROG_GCJ], [A][M_PROG_GCJ], [AC_CHECK_TOOL(GCJ, gcj,) test "x${GCJFLAGS+set}" = xset || GCJFLAGS="-g -O2" AC_SUBST(GCJFLAGS)])])[]dnl ]) # Old name: AU_ALIAS([LT_AC_PROG_GCJ], [LT_PROG_GCJ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([LT_AC_PROG_GCJ], []) # LT_PROG_GO # ---------- AC_DEFUN([LT_PROG_GO], [AC_CHECK_TOOL(GOC, gccgo,) ]) # LT_PROG_RC # ---------- AC_DEFUN([LT_PROG_RC], [AC_CHECK_TOOL(RC, windres,) ]) # Old name: AU_ALIAS([LT_AC_PROG_RC], [LT_PROG_RC]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([LT_AC_PROG_RC], []) # _LT_DECL_EGREP # -------------- # If we don't have a new enough Autoconf to choose the best grep # available, choose the one first in the user's PATH. m4_defun([_LT_DECL_EGREP], [AC_REQUIRE([AC_PROG_EGREP])dnl AC_REQUIRE([AC_PROG_FGREP])dnl test -z "$GREP" && GREP=grep _LT_DECL([], [GREP], [1], [A grep program that handles long lines]) _LT_DECL([], [EGREP], [1], [An ERE matcher]) _LT_DECL([], [FGREP], [1], [A literal string matcher]) dnl Non-bleeding-edge autoconf doesn't subst GREP, so do it here too AC_SUBST([GREP]) ]) # _LT_DECL_OBJDUMP # -------------- # If we don't have a new enough Autoconf to choose the best objdump # available, choose the one first in the user's PATH. m4_defun([_LT_DECL_OBJDUMP], [AC_CHECK_TOOL(OBJDUMP, objdump, false) test -z "$OBJDUMP" && OBJDUMP=objdump _LT_DECL([], [OBJDUMP], [1], [An object symbol dumper]) AC_SUBST([OBJDUMP]) ]) # _LT_DECL_DLLTOOL # ---------------- # Ensure DLLTOOL variable is set. m4_defun([_LT_DECL_DLLTOOL], [AC_CHECK_TOOL(DLLTOOL, dlltool, false) test -z "$DLLTOOL" && DLLTOOL=dlltool _LT_DECL([], [DLLTOOL], [1], [DLL creation program]) AC_SUBST([DLLTOOL]) ]) # _LT_DECL_SED # ------------ # Check for a fully-functional sed program, that truncates # as few characters as possible. Prefer GNU sed if found. m4_defun([_LT_DECL_SED], [AC_PROG_SED test -z "$SED" && SED=sed Xsed="$SED -e 1s/^X//" _LT_DECL([], [SED], [1], [A sed program that does not truncate output]) _LT_DECL([], [Xsed], ["\$SED -e 1s/^X//"], [Sed that helps us avoid accidentally triggering echo(1) options like -n]) ])# _LT_DECL_SED m4_ifndef([AC_PROG_SED], [ # NOTE: This macro has been submitted for inclusion into # # GNU Autoconf as AC_PROG_SED. When it is available in # # a released version of Autoconf we should remove this # # macro and use it instead. # m4_defun([AC_PROG_SED], [AC_MSG_CHECKING([for a sed that does not truncate output]) AC_CACHE_VAL(lt_cv_path_SED, [# Loop through the user's path and test for sed and gsed. # Then use that list of sed's as ones to test for truncation. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for lt_ac_prog in sed gsed; do for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$lt_ac_prog$ac_exec_ext"; then lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext" fi done done done IFS=$as_save_IFS lt_ac_max=0 lt_ac_count=0 # Add /usr/xpg4/bin/sed as it is typically found on Solaris # along with /bin/sed that truncates output. for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do test ! -f $lt_ac_sed && continue cat /dev/null > conftest.in lt_ac_count=0 echo $ECHO_N "0123456789$ECHO_C" >conftest.in # Check for GNU sed and select it if it is found. if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then lt_cv_path_SED=$lt_ac_sed break fi while true; do cat conftest.in conftest.in >conftest.tmp mv conftest.tmp conftest.in cp conftest.in conftest.nl echo >>conftest.nl $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break cmp -s conftest.out conftest.nl || break # 10000 chars as input seems more than enough test $lt_ac_count -gt 10 && break lt_ac_count=`expr $lt_ac_count + 1` if test $lt_ac_count -gt $lt_ac_max; then lt_ac_max=$lt_ac_count lt_cv_path_SED=$lt_ac_sed fi done done ]) SED=$lt_cv_path_SED AC_SUBST([SED]) AC_MSG_RESULT([$SED]) ])#AC_PROG_SED ])#m4_ifndef # Old name: AU_ALIAS([LT_AC_PROG_SED], [AC_PROG_SED]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([LT_AC_PROG_SED], []) # _LT_CHECK_SHELL_FEATURES # ------------------------ # Find out whether the shell is Bourne or XSI compatible, # or has some other useful features. m4_defun([_LT_CHECK_SHELL_FEATURES], [AC_MSG_CHECKING([whether the shell understands some XSI constructs]) # Try some XSI features xsi_shell=no ( _lt_dummy="a/b/c" test "${_lt_dummy##*/},${_lt_dummy%/*},${_lt_dummy#??}"${_lt_dummy%"$_lt_dummy"}, \ = c,a/b,b/c, \ && eval 'test $(( 1 + 1 )) -eq 2 \ && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \ && xsi_shell=yes AC_MSG_RESULT([$xsi_shell]) _LT_CONFIG_LIBTOOL_INIT([xsi_shell='$xsi_shell']) AC_MSG_CHECKING([whether the shell understands "+="]) lt_shell_append=no ( foo=bar; set foo baz; eval "$[1]+=\$[2]" && test "$foo" = barbaz ) \ >/dev/null 2>&1 \ && lt_shell_append=yes AC_MSG_RESULT([$lt_shell_append]) _LT_CONFIG_LIBTOOL_INIT([lt_shell_append='$lt_shell_append']) if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then lt_unset=unset else lt_unset=false fi _LT_DECL([], [lt_unset], [0], [whether the shell understands "unset"])dnl # test EBCDIC or ASCII case `echo X|tr X '\101'` in A) # ASCII based system # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr lt_SP2NL='tr \040 \012' lt_NL2SP='tr \015\012 \040\040' ;; *) # EBCDIC based system lt_SP2NL='tr \100 \n' lt_NL2SP='tr \r\n \100\100' ;; esac _LT_DECL([SP2NL], [lt_SP2NL], [1], [turn spaces into newlines])dnl _LT_DECL([NL2SP], [lt_NL2SP], [1], [turn newlines into spaces])dnl ])# _LT_CHECK_SHELL_FEATURES # _LT_PROG_FUNCTION_REPLACE (FUNCNAME, REPLACEMENT-BODY) # ------------------------------------------------------ # In `$cfgfile', look for function FUNCNAME delimited by `^FUNCNAME ()$' and # '^} FUNCNAME ', and replace its body with REPLACEMENT-BODY. m4_defun([_LT_PROG_FUNCTION_REPLACE], [dnl { sed -e '/^$1 ()$/,/^} # $1 /c\ $1 ()\ {\ m4_bpatsubsts([$2], [$], [\\], [^\([ ]\)], [\\\1]) } # Extended-shell $1 implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: ]) # _LT_PROG_REPLACE_SHELLFNS # ------------------------- # Replace existing portable implementations of several shell functions with # equivalent extended shell implementations where those features are available.. m4_defun([_LT_PROG_REPLACE_SHELLFNS], [if test x"$xsi_shell" = xyes; then _LT_PROG_FUNCTION_REPLACE([func_dirname], [dnl case ${1} in */*) func_dirname_result="${1%/*}${2}" ;; * ) func_dirname_result="${3}" ;; esac]) _LT_PROG_FUNCTION_REPLACE([func_basename], [dnl func_basename_result="${1##*/}"]) _LT_PROG_FUNCTION_REPLACE([func_dirname_and_basename], [dnl case ${1} in */*) func_dirname_result="${1%/*}${2}" ;; * ) func_dirname_result="${3}" ;; esac func_basename_result="${1##*/}"]) _LT_PROG_FUNCTION_REPLACE([func_stripname], [dnl # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are # positional parameters, so assign one to ordinary parameter first. func_stripname_result=${3} func_stripname_result=${func_stripname_result#"${1}"} func_stripname_result=${func_stripname_result%"${2}"}]) _LT_PROG_FUNCTION_REPLACE([func_split_long_opt], [dnl func_split_long_opt_name=${1%%=*} func_split_long_opt_arg=${1#*=}]) _LT_PROG_FUNCTION_REPLACE([func_split_short_opt], [dnl func_split_short_opt_arg=${1#??} func_split_short_opt_name=${1%"$func_split_short_opt_arg"}]) _LT_PROG_FUNCTION_REPLACE([func_lo2o], [dnl case ${1} in *.lo) func_lo2o_result=${1%.lo}.${objext} ;; *) func_lo2o_result=${1} ;; esac]) _LT_PROG_FUNCTION_REPLACE([func_xform], [ func_xform_result=${1%.*}.lo]) _LT_PROG_FUNCTION_REPLACE([func_arith], [ func_arith_result=$(( $[*] ))]) _LT_PROG_FUNCTION_REPLACE([func_len], [ func_len_result=${#1}]) fi if test x"$lt_shell_append" = xyes; then _LT_PROG_FUNCTION_REPLACE([func_append], [ eval "${1}+=\\${2}"]) _LT_PROG_FUNCTION_REPLACE([func_append_quoted], [dnl func_quote_for_eval "${2}" dnl m4 expansion turns \\\\ into \\, and then the shell eval turns that into \ eval "${1}+=\\\\ \\$func_quote_for_eval_result"]) # Save a `func_append' function call where possible by direct use of '+=' sed -e 's%func_append \([[a-zA-Z_]]\{1,\}\) "%\1+="%g' $cfgfile > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: else # Save a `func_append' function call even when '+=' is not available sed -e 's%func_append \([[a-zA-Z_]]\{1,\}\) "%\1="$\1%g' $cfgfile > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: fi if test x"$_lt_function_replace_fail" = x":"; then AC_MSG_WARN([Unable to substitute extended shell functions in $ofile]) fi ]) # _LT_PATH_CONVERSION_FUNCTIONS # ----------------------------- # Determine which file name conversion functions should be used by # func_to_host_file (and, implicitly, by func_to_host_path). These are needed # for certain cross-compile configurations and native mingw. m4_defun([_LT_PATH_CONVERSION_FUNCTIONS], [AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl AC_MSG_CHECKING([how to convert $build file names to $host format]) AC_CACHE_VAL(lt_cv_to_host_file_cmd, [case $host in *-*-mingw* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_host_file_cmd=func_convert_file_msys_to_w32 ;; *-*-cygwin* ) lt_cv_to_host_file_cmd=func_convert_file_cygwin_to_w32 ;; * ) # otherwise, assume *nix lt_cv_to_host_file_cmd=func_convert_file_nix_to_w32 ;; esac ;; *-*-cygwin* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_host_file_cmd=func_convert_file_msys_to_cygwin ;; *-*-cygwin* ) lt_cv_to_host_file_cmd=func_convert_file_noop ;; * ) # otherwise, assume *nix lt_cv_to_host_file_cmd=func_convert_file_nix_to_cygwin ;; esac ;; * ) # unhandled hosts (and "normal" native builds) lt_cv_to_host_file_cmd=func_convert_file_noop ;; esac ]) to_host_file_cmd=$lt_cv_to_host_file_cmd AC_MSG_RESULT([$lt_cv_to_host_file_cmd]) _LT_DECL([to_host_file_cmd], [lt_cv_to_host_file_cmd], [0], [convert $build file names to $host format])dnl AC_MSG_CHECKING([how to convert $build file names to toolchain format]) AC_CACHE_VAL(lt_cv_to_tool_file_cmd, [#assume ordinary cross tools, or native build. lt_cv_to_tool_file_cmd=func_convert_file_noop case $host in *-*-mingw* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_tool_file_cmd=func_convert_file_msys_to_w32 ;; esac ;; esac ]) to_tool_file_cmd=$lt_cv_to_tool_file_cmd AC_MSG_RESULT([$lt_cv_to_tool_file_cmd]) _LT_DECL([to_tool_file_cmd], [lt_cv_to_tool_file_cmd], [0], [convert $build files to toolchain format])dnl ])# _LT_PATH_CONVERSION_FUNCTIONS # Helper functions for option handling. -*- Autoconf -*- # # Copyright (C) 2004, 2005, 2007, 2008, 2009 Free Software Foundation, # Inc. # Written by Gary V. Vaughan, 2004 # # 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 7 ltoptions.m4 # This is to help aclocal find these macros, as it can't see m4_define. AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])]) # _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME) # ------------------------------------------ m4_define([_LT_MANGLE_OPTION], [[_LT_OPTION_]m4_bpatsubst($1__$2, [[^a-zA-Z0-9_]], [_])]) # _LT_SET_OPTION(MACRO-NAME, OPTION-NAME) # --------------------------------------- # Set option OPTION-NAME for macro MACRO-NAME, and if there is a # matching handler defined, dispatch to it. Other OPTION-NAMEs are # saved as a flag. m4_define([_LT_SET_OPTION], [m4_define(_LT_MANGLE_OPTION([$1], [$2]))dnl m4_ifdef(_LT_MANGLE_DEFUN([$1], [$2]), _LT_MANGLE_DEFUN([$1], [$2]), [m4_warning([Unknown $1 option `$2'])])[]dnl ]) # _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET]) # ------------------------------------------------------------ # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. m4_define([_LT_IF_OPTION], [m4_ifdef(_LT_MANGLE_OPTION([$1], [$2]), [$3], [$4])]) # _LT_UNLESS_OPTIONS(MACRO-NAME, OPTION-LIST, IF-NOT-SET) # ------------------------------------------------------- # Execute IF-NOT-SET unless all options in OPTION-LIST for MACRO-NAME # are set. m4_define([_LT_UNLESS_OPTIONS], [m4_foreach([_LT_Option], m4_split(m4_normalize([$2])), [m4_ifdef(_LT_MANGLE_OPTION([$1], _LT_Option), [m4_define([$0_found])])])[]dnl m4_ifdef([$0_found], [m4_undefine([$0_found])], [$3 ])[]dnl ]) # _LT_SET_OPTIONS(MACRO-NAME, OPTION-LIST) # ---------------------------------------- # OPTION-LIST is a space-separated list of Libtool options associated # with MACRO-NAME. If any OPTION has a matching handler declared with # LT_OPTION_DEFINE, dispatch to that macro; otherwise complain about # the unknown option and exit. m4_defun([_LT_SET_OPTIONS], [# Set options m4_foreach([_LT_Option], m4_split(m4_normalize([$2])), [_LT_SET_OPTION([$1], _LT_Option)]) m4_if([$1],[LT_INIT],[ dnl dnl Simply set some default values (i.e off) if boolean options were not dnl specified: _LT_UNLESS_OPTIONS([LT_INIT], [dlopen], [enable_dlopen=no ]) _LT_UNLESS_OPTIONS([LT_INIT], [win32-dll], [enable_win32_dll=no ]) dnl dnl If no reference was made to various pairs of opposing options, then dnl we run the default mode handler for the pair. For example, if neither dnl `shared' nor `disable-shared' was passed, we enable building of shared dnl archives by default: _LT_UNLESS_OPTIONS([LT_INIT], [shared disable-shared], [_LT_ENABLE_SHARED]) _LT_UNLESS_OPTIONS([LT_INIT], [static disable-static], [_LT_ENABLE_STATIC]) _LT_UNLESS_OPTIONS([LT_INIT], [pic-only no-pic], [_LT_WITH_PIC]) _LT_UNLESS_OPTIONS([LT_INIT], [fast-install disable-fast-install], [_LT_ENABLE_FAST_INSTALL]) ]) ])# _LT_SET_OPTIONS # _LT_MANGLE_DEFUN(MACRO-NAME, OPTION-NAME) # ----------------------------------------- m4_define([_LT_MANGLE_DEFUN], [[_LT_OPTION_DEFUN_]m4_bpatsubst(m4_toupper([$1__$2]), [[^A-Z0-9_]], [_])]) # LT_OPTION_DEFINE(MACRO-NAME, OPTION-NAME, CODE) # ----------------------------------------------- m4_define([LT_OPTION_DEFINE], [m4_define(_LT_MANGLE_DEFUN([$1], [$2]), [$3])[]dnl ])# LT_OPTION_DEFINE # dlopen # ------ LT_OPTION_DEFINE([LT_INIT], [dlopen], [enable_dlopen=yes ]) AU_DEFUN([AC_LIBTOOL_DLOPEN], [_LT_SET_OPTION([LT_INIT], [dlopen]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the `dlopen' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_DLOPEN], []) # win32-dll # --------- # Declare package support for building win32 dll's. LT_OPTION_DEFINE([LT_INIT], [win32-dll], [enable_win32_dll=yes case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-cegcc*) AC_CHECK_TOOL(AS, as, false) AC_CHECK_TOOL(DLLTOOL, dlltool, false) AC_CHECK_TOOL(OBJDUMP, objdump, false) ;; esac test -z "$AS" && AS=as _LT_DECL([], [AS], [1], [Assembler program])dnl test -z "$DLLTOOL" && DLLTOOL=dlltool _LT_DECL([], [DLLTOOL], [1], [DLL creation program])dnl test -z "$OBJDUMP" && OBJDUMP=objdump _LT_DECL([], [OBJDUMP], [1], [Object dumper program])dnl ])# win32-dll AU_DEFUN([AC_LIBTOOL_WIN32_DLL], [AC_REQUIRE([AC_CANONICAL_HOST])dnl _LT_SET_OPTION([LT_INIT], [win32-dll]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the `win32-dll' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_WIN32_DLL], []) # _LT_ENABLE_SHARED([DEFAULT]) # ---------------------------- # implement the --enable-shared flag, and supports the `shared' and # `disable-shared' LT_INIT options. # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. m4_define([_LT_ENABLE_SHARED], [m4_define([_LT_ENABLE_SHARED_DEFAULT], [m4_if($1, no, no, yes)])dnl AC_ARG_ENABLE([shared], [AS_HELP_STRING([--enable-shared@<:@=PKGS@:>@], [build shared libraries @<:@default=]_LT_ENABLE_SHARED_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_shared=yes ;; no) enable_shared=no ;; *) enable_shared=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_shared=yes fi done IFS="$lt_save_ifs" ;; esac], [enable_shared=]_LT_ENABLE_SHARED_DEFAULT) _LT_DECL([build_libtool_libs], [enable_shared], [0], [Whether or not to build shared libraries]) ])# _LT_ENABLE_SHARED LT_OPTION_DEFINE([LT_INIT], [shared], [_LT_ENABLE_SHARED([yes])]) LT_OPTION_DEFINE([LT_INIT], [disable-shared], [_LT_ENABLE_SHARED([no])]) # Old names: AC_DEFUN([AC_ENABLE_SHARED], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[shared]) ]) AC_DEFUN([AC_DISABLE_SHARED], [_LT_SET_OPTION([LT_INIT], [disable-shared]) ]) AU_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)]) AU_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AM_ENABLE_SHARED], []) dnl AC_DEFUN([AM_DISABLE_SHARED], []) # _LT_ENABLE_STATIC([DEFAULT]) # ---------------------------- # implement the --enable-static flag, and support the `static' and # `disable-static' LT_INIT options. # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. m4_define([_LT_ENABLE_STATIC], [m4_define([_LT_ENABLE_STATIC_DEFAULT], [m4_if($1, no, no, yes)])dnl AC_ARG_ENABLE([static], [AS_HELP_STRING([--enable-static@<:@=PKGS@:>@], [build static libraries @<:@default=]_LT_ENABLE_STATIC_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_static=yes ;; no) enable_static=no ;; *) enable_static=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_static=yes fi done IFS="$lt_save_ifs" ;; esac], [enable_static=]_LT_ENABLE_STATIC_DEFAULT) _LT_DECL([build_old_libs], [enable_static], [0], [Whether or not to build static libraries]) ])# _LT_ENABLE_STATIC LT_OPTION_DEFINE([LT_INIT], [static], [_LT_ENABLE_STATIC([yes])]) LT_OPTION_DEFINE([LT_INIT], [disable-static], [_LT_ENABLE_STATIC([no])]) # Old names: AC_DEFUN([AC_ENABLE_STATIC], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static]) ]) AC_DEFUN([AC_DISABLE_STATIC], [_LT_SET_OPTION([LT_INIT], [disable-static]) ]) AU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)]) AU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AM_ENABLE_STATIC], []) dnl AC_DEFUN([AM_DISABLE_STATIC], []) # _LT_ENABLE_FAST_INSTALL([DEFAULT]) # ---------------------------------- # implement the --enable-fast-install flag, and support the `fast-install' # and `disable-fast-install' LT_INIT options. # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. m4_define([_LT_ENABLE_FAST_INSTALL], [m4_define([_LT_ENABLE_FAST_INSTALL_DEFAULT], [m4_if($1, no, no, yes)])dnl AC_ARG_ENABLE([fast-install], [AS_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@], [optimize for fast installation @<:@default=]_LT_ENABLE_FAST_INSTALL_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_fast_install=yes ;; no) enable_fast_install=no ;; *) enable_fast_install=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_fast_install=yes fi done IFS="$lt_save_ifs" ;; esac], [enable_fast_install=]_LT_ENABLE_FAST_INSTALL_DEFAULT) _LT_DECL([fast_install], [enable_fast_install], [0], [Whether or not to optimize for fast installation])dnl ])# _LT_ENABLE_FAST_INSTALL LT_OPTION_DEFINE([LT_INIT], [fast-install], [_LT_ENABLE_FAST_INSTALL([yes])]) LT_OPTION_DEFINE([LT_INIT], [disable-fast-install], [_LT_ENABLE_FAST_INSTALL([no])]) # Old names: AU_DEFUN([AC_ENABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the `fast-install' option into LT_INIT's first parameter.]) ]) AU_DEFUN([AC_DISABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], [disable-fast-install]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the `disable-fast-install' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_ENABLE_FAST_INSTALL], []) dnl AC_DEFUN([AM_DISABLE_FAST_INSTALL], []) # _LT_WITH_PIC([MODE]) # -------------------- # implement the --with-pic flag, and support the `pic-only' and `no-pic' # LT_INIT options. # MODE is either `yes' or `no'. If omitted, it defaults to `both'. m4_define([_LT_WITH_PIC], [AC_ARG_WITH([pic], [AS_HELP_STRING([--with-pic@<:@=PKGS@:>@], [try to use only PIC/non-PIC objects @<:@default=use both@:>@])], [lt_p=${PACKAGE-default} case $withval in yes|no) pic_mode=$withval ;; *) pic_mode=default # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for lt_pkg in $withval; do IFS="$lt_save_ifs" if test "X$lt_pkg" = "X$lt_p"; then pic_mode=yes fi done IFS="$lt_save_ifs" ;; esac], [pic_mode=default]) test -z "$pic_mode" && pic_mode=m4_default([$1], [default]) _LT_DECL([], [pic_mode], [0], [What type of objects to build])dnl ])# _LT_WITH_PIC LT_OPTION_DEFINE([LT_INIT], [pic-only], [_LT_WITH_PIC([yes])]) LT_OPTION_DEFINE([LT_INIT], [no-pic], [_LT_WITH_PIC([no])]) # Old name: AU_DEFUN([AC_LIBTOOL_PICMODE], [_LT_SET_OPTION([LT_INIT], [pic-only]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the `pic-only' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_PICMODE], []) m4_define([_LTDL_MODE], []) LT_OPTION_DEFINE([LTDL_INIT], [nonrecursive], [m4_define([_LTDL_MODE], [nonrecursive])]) LT_OPTION_DEFINE([LTDL_INIT], [recursive], [m4_define([_LTDL_MODE], [recursive])]) LT_OPTION_DEFINE([LTDL_INIT], [subproject], [m4_define([_LTDL_MODE], [subproject])]) m4_define([_LTDL_TYPE], []) LT_OPTION_DEFINE([LTDL_INIT], [installable], [m4_define([_LTDL_TYPE], [installable])]) LT_OPTION_DEFINE([LTDL_INIT], [convenience], [m4_define([_LTDL_TYPE], [convenience])]) # ltsugar.m4 -- libtool m4 base layer. -*-Autoconf-*- # # Copyright (C) 2004, 2005, 2007, 2008 Free Software Foundation, Inc. # Written by Gary V. Vaughan, 2004 # # 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 ltsugar.m4 # This is to help aclocal find these macros, as it can't see m4_define. AC_DEFUN([LTSUGAR_VERSION], [m4_if([0.1])]) # lt_join(SEP, ARG1, [ARG2...]) # ----------------------------- # Produce ARG1SEPARG2...SEPARGn, omitting [] arguments and their # associated separator. # Needed until we can rely on m4_join from Autoconf 2.62, since all earlier # versions in m4sugar had bugs. m4_define([lt_join], [m4_if([$#], [1], [], [$#], [2], [[$2]], [m4_if([$2], [], [], [[$2]_])$0([$1], m4_shift(m4_shift($@)))])]) m4_define([_lt_join], [m4_if([$#$2], [2], [], [m4_if([$2], [], [], [[$1$2]])$0([$1], m4_shift(m4_shift($@)))])]) # lt_car(LIST) # lt_cdr(LIST) # ------------ # Manipulate m4 lists. # These macros are necessary as long as will still need to support # Autoconf-2.59 which quotes differently. m4_define([lt_car], [[$1]]) m4_define([lt_cdr], [m4_if([$#], 0, [m4_fatal([$0: cannot be called without arguments])], [$#], 1, [], [m4_dquote(m4_shift($@))])]) m4_define([lt_unquote], $1) # lt_append(MACRO-NAME, STRING, [SEPARATOR]) # ------------------------------------------ # Redefine MACRO-NAME to hold its former content plus `SEPARATOR'`STRING'. # Note that neither SEPARATOR nor STRING are expanded; they are appended # to MACRO-NAME as is (leaving the expansion for when MACRO-NAME is invoked). # No SEPARATOR is output if MACRO-NAME was previously undefined (different # than defined and empty). # # This macro is needed until we can rely on Autoconf 2.62, since earlier # versions of m4sugar mistakenly expanded SEPARATOR but not STRING. m4_define([lt_append], [m4_define([$1], m4_ifdef([$1], [m4_defn([$1])[$3]])[$2])]) # lt_combine(SEP, PREFIX-LIST, INFIX, SUFFIX1, [SUFFIX2...]) # ---------------------------------------------------------- # Produce a SEP delimited list of all paired combinations of elements of # PREFIX-LIST with SUFFIX1 through SUFFIXn. Each element of the list # has the form PREFIXmINFIXSUFFIXn. # Needed until we can rely on m4_combine added in Autoconf 2.62. m4_define([lt_combine], [m4_if(m4_eval([$# > 3]), [1], [m4_pushdef([_Lt_sep], [m4_define([_Lt_sep], m4_defn([lt_car]))])]]dnl [[m4_foreach([_Lt_prefix], [$2], [m4_foreach([_Lt_suffix], ]m4_dquote(m4_dquote(m4_shift(m4_shift(m4_shift($@)))))[, [_Lt_sep([$1])[]m4_defn([_Lt_prefix])[$3]m4_defn([_Lt_suffix])])])])]) # lt_if_append_uniq(MACRO-NAME, VARNAME, [SEPARATOR], [UNIQ], [NOT-UNIQ]) # ----------------------------------------------------------------------- # Iff MACRO-NAME does not yet contain VARNAME, then append it (delimited # by SEPARATOR if supplied) and expand UNIQ, else NOT-UNIQ. m4_define([lt_if_append_uniq], [m4_ifdef([$1], [m4_if(m4_index([$3]m4_defn([$1])[$3], [$3$2$3]), [-1], [lt_append([$1], [$2], [$3])$4], [$5])], [lt_append([$1], [$2], [$3])$4])]) # lt_dict_add(DICT, KEY, VALUE) # ----------------------------- m4_define([lt_dict_add], [m4_define([$1($2)], [$3])]) # lt_dict_add_subkey(DICT, KEY, SUBKEY, VALUE) # -------------------------------------------- m4_define([lt_dict_add_subkey], [m4_define([$1($2:$3)], [$4])]) # lt_dict_fetch(DICT, KEY, [SUBKEY]) # ---------------------------------- m4_define([lt_dict_fetch], [m4_ifval([$3], m4_ifdef([$1($2:$3)], [m4_defn([$1($2:$3)])]), m4_ifdef([$1($2)], [m4_defn([$1($2)])]))]) # lt_if_dict_fetch(DICT, KEY, [SUBKEY], VALUE, IF-TRUE, [IF-FALSE]) # ----------------------------------------------------------------- m4_define([lt_if_dict_fetch], [m4_if(lt_dict_fetch([$1], [$2], [$3]), [$4], [$5], [$6])]) # lt_dict_filter(DICT, [SUBKEY], VALUE, [SEPARATOR], KEY, [...]) # -------------------------------------------------------------- m4_define([lt_dict_filter], [m4_if([$5], [], [], [lt_join(m4_quote(m4_default([$4], [[, ]])), lt_unquote(m4_split(m4_normalize(m4_foreach(_Lt_key, lt_car([m4_shiftn(4, $@)]), [lt_if_dict_fetch([$1], _Lt_key, [$2], [$3], [_Lt_key ])])))))])[]dnl ]) # ltversion.m4 -- version numbers -*- Autoconf -*- # # Copyright (C) 2004 Free Software Foundation, Inc. # Written by Scott James Remnant, 2004 # # 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. # @configure_input@ # serial 3337 ltversion.m4 # This file is part of GNU Libtool m4_define([LT_PACKAGE_VERSION], [2.4.2]) m4_define([LT_PACKAGE_REVISION], [1.3337]) AC_DEFUN([LTVERSION_VERSION], [macro_version='2.4.2' macro_revision='1.3337' _LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?]) _LT_DECL(, macro_revision, 0) ]) # lt~obsolete.m4 -- aclocal satisfying obsolete definitions. -*-Autoconf-*- # # Copyright (C) 2004, 2005, 2007, 2009 Free Software Foundation, Inc. # Written by Scott James Remnant, 2004. # # 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 lt~obsolete.m4 # These exist entirely to fool aclocal when bootstrapping libtool. # # In the past libtool.m4 has provided macros via AC_DEFUN (or AU_DEFUN) # which have later been changed to m4_define as they aren't part of the # exported API, or moved to Autoconf or Automake where they belong. # # The trouble is, aclocal is a bit thick. It'll see the old AC_DEFUN # in /usr/share/aclocal/libtool.m4 and remember it, then when it sees us # using a macro with the same name in our local m4/libtool.m4 it'll # pull the old libtool.m4 in (it doesn't see our shiny new m4_define # and doesn't know about Autoconf macros at all.) # # So we provide this file, which has a silly filename so it's always # included after everything else. This provides aclocal with the # AC_DEFUNs it wants, but when m4 processes it, it doesn't do anything # because those macros already exist, or will be overwritten later. # We use AC_DEFUN over AU_DEFUN for compatibility with aclocal-1.6. # # Anytime we withdraw an AC_DEFUN or AU_DEFUN, remember to add it here. # Yes, that means every name once taken will need to remain here until # we give up compatibility with versions before 1.7, at which point # we need to keep only those names which we still refer to. # This is to help aclocal find these macros, as it can't see m4_define. AC_DEFUN([LTOBSOLETE_VERSION], [m4_if([1])]) m4_ifndef([AC_LIBTOOL_LINKER_OPTION], [AC_DEFUN([AC_LIBTOOL_LINKER_OPTION])]) m4_ifndef([AC_PROG_EGREP], [AC_DEFUN([AC_PROG_EGREP])]) m4_ifndef([_LT_AC_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH])]) m4_ifndef([_LT_AC_SHELL_INIT], [AC_DEFUN([_LT_AC_SHELL_INIT])]) m4_ifndef([_LT_AC_SYS_LIBPATH_AIX], [AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX])]) m4_ifndef([_LT_PROG_LTMAIN], [AC_DEFUN([_LT_PROG_LTMAIN])]) m4_ifndef([_LT_AC_TAGVAR], [AC_DEFUN([_LT_AC_TAGVAR])]) m4_ifndef([AC_LTDL_ENABLE_INSTALL], [AC_DEFUN([AC_LTDL_ENABLE_INSTALL])]) m4_ifndef([AC_LTDL_PREOPEN], [AC_DEFUN([AC_LTDL_PREOPEN])]) m4_ifndef([_LT_AC_SYS_COMPILER], [AC_DEFUN([_LT_AC_SYS_COMPILER])]) m4_ifndef([_LT_AC_LOCK], [AC_DEFUN([_LT_AC_LOCK])]) m4_ifndef([AC_LIBTOOL_SYS_OLD_ARCHIVE], [AC_DEFUN([AC_LIBTOOL_SYS_OLD_ARCHIVE])]) m4_ifndef([_LT_AC_TRY_DLOPEN_SELF], [AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF])]) m4_ifndef([AC_LIBTOOL_PROG_CC_C_O], [AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O])]) m4_ifndef([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], [AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS])]) m4_ifndef([AC_LIBTOOL_OBJDIR], [AC_DEFUN([AC_LIBTOOL_OBJDIR])]) m4_ifndef([AC_LTDL_OBJDIR], [AC_DEFUN([AC_LTDL_OBJDIR])]) m4_ifndef([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], [AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH])]) m4_ifndef([AC_LIBTOOL_SYS_LIB_STRIP], [AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP])]) m4_ifndef([AC_PATH_MAGIC], [AC_DEFUN([AC_PATH_MAGIC])]) m4_ifndef([AC_PROG_LD_GNU], [AC_DEFUN([AC_PROG_LD_GNU])]) m4_ifndef([AC_PROG_LD_RELOAD_FLAG], [AC_DEFUN([AC_PROG_LD_RELOAD_FLAG])]) m4_ifndef([AC_DEPLIBS_CHECK_METHOD], [AC_DEFUN([AC_DEPLIBS_CHECK_METHOD])]) m4_ifndef([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI])]) m4_ifndef([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], [AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])]) m4_ifndef([AC_LIBTOOL_PROG_COMPILER_PIC], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC])]) m4_ifndef([AC_LIBTOOL_PROG_LD_SHLIBS], [AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS])]) m4_ifndef([AC_LIBTOOL_POSTDEP_PREDEP], [AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP])]) m4_ifndef([LT_AC_PROG_EGREP], [AC_DEFUN([LT_AC_PROG_EGREP])]) m4_ifndef([LT_AC_PROG_SED], [AC_DEFUN([LT_AC_PROG_SED])]) m4_ifndef([_LT_CC_BASENAME], [AC_DEFUN([_LT_CC_BASENAME])]) m4_ifndef([_LT_COMPILER_BOILERPLATE], [AC_DEFUN([_LT_COMPILER_BOILERPLATE])]) m4_ifndef([_LT_LINKER_BOILERPLATE], [AC_DEFUN([_LT_LINKER_BOILERPLATE])]) m4_ifndef([_AC_PROG_LIBTOOL], [AC_DEFUN([_AC_PROG_LIBTOOL])]) m4_ifndef([AC_LIBTOOL_SETUP], [AC_DEFUN([AC_LIBTOOL_SETUP])]) m4_ifndef([_LT_AC_CHECK_DLFCN], [AC_DEFUN([_LT_AC_CHECK_DLFCN])]) m4_ifndef([AC_LIBTOOL_SYS_DYNAMIC_LINKER], [AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER])]) m4_ifndef([_LT_AC_TAGCONFIG], [AC_DEFUN([_LT_AC_TAGCONFIG])]) m4_ifndef([AC_DISABLE_FAST_INSTALL], [AC_DEFUN([AC_DISABLE_FAST_INSTALL])]) m4_ifndef([_LT_AC_LANG_CXX], [AC_DEFUN([_LT_AC_LANG_CXX])]) m4_ifndef([_LT_AC_LANG_F77], [AC_DEFUN([_LT_AC_LANG_F77])]) m4_ifndef([_LT_AC_LANG_GCJ], [AC_DEFUN([_LT_AC_LANG_GCJ])]) m4_ifndef([AC_LIBTOOL_LANG_C_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG])]) m4_ifndef([_LT_AC_LANG_C_CONFIG], [AC_DEFUN([_LT_AC_LANG_C_CONFIG])]) m4_ifndef([AC_LIBTOOL_LANG_CXX_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG])]) m4_ifndef([_LT_AC_LANG_CXX_CONFIG], [AC_DEFUN([_LT_AC_LANG_CXX_CONFIG])]) m4_ifndef([AC_LIBTOOL_LANG_F77_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG])]) m4_ifndef([_LT_AC_LANG_F77_CONFIG], [AC_DEFUN([_LT_AC_LANG_F77_CONFIG])]) m4_ifndef([AC_LIBTOOL_LANG_GCJ_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG])]) m4_ifndef([_LT_AC_LANG_GCJ_CONFIG], [AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG])]) m4_ifndef([AC_LIBTOOL_LANG_RC_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG])]) m4_ifndef([_LT_AC_LANG_RC_CONFIG], [AC_DEFUN([_LT_AC_LANG_RC_CONFIG])]) m4_ifndef([AC_LIBTOOL_CONFIG], [AC_DEFUN([AC_LIBTOOL_CONFIG])]) m4_ifndef([_LT_AC_FILE_LTDLL_C], [AC_DEFUN([_LT_AC_FILE_LTDLL_C])]) m4_ifndef([_LT_REQUIRED_DARWIN_CHECKS], [AC_DEFUN([_LT_REQUIRED_DARWIN_CHECKS])]) m4_ifndef([_LT_AC_PROG_CXXCPP], [AC_DEFUN([_LT_AC_PROG_CXXCPP])]) m4_ifndef([_LT_PREPARE_SED_QUOTE_VARS], [AC_DEFUN([_LT_PREPARE_SED_QUOTE_VARS])]) m4_ifndef([_LT_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_PROG_ECHO_BACKSLASH])]) m4_ifndef([_LT_PROG_F77], [AC_DEFUN([_LT_PROG_F77])]) m4_ifndef([_LT_PROG_FC], [AC_DEFUN([_LT_PROG_FC])]) m4_ifndef([_LT_PROG_CXX], [AC_DEFUN([_LT_PROG_CXX])]) # Copyright (C) 2002-2013 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.14' 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.14.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.14.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-2013 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-2013 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_CONDITIONAL(NAME, SHELL-CONDITION) # ------------------------------------- # Define a conditional. AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ([2.52])dnl m4_if([$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-2013 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. # 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", "OBJC", "OBJCXX", "UPC", or "GJC". # 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 m4_if([$1], [CC], [depcc="$CC" am_compiler_list=], [$1], [CXX], [depcc="$CXX" am_compiler_list=], [$1], [OBJC], [depcc="$OBJC" am_compiler_list='gcc3 gcc'], [$1], [OBJCXX], [depcc="$OBJCXX" 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". rm -rf conftest.dir 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 10 /bin/sh. echo '/* dummy */' > 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 ;; msvc7 | msvc7msys | 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], [dnl AS_HELP_STRING( [--enable-dependency-tracking], [do not reject slow dependency extractors]) AS_HELP_STRING( [--disable-dependency-tracking], [speeds up one-time build])]) if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' am__nodep='_no' fi AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) AC_SUBST([AMDEPBACKSLASH])dnl _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl AC_SUBST([am__nodep])dnl _AM_SUBST_NOTMAKE([am__nodep])dnl ]) # Generate code to set up dependency tracking. -*- Autoconf -*- # Copyright (C) 1999-2013 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_OUTPUT_DEPENDENCY_COMMANDS # ------------------------------ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [{ # Older Autoconf 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"` # 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'`; 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-2013 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 macro actually does too much. Some checks are only needed if # your package does certain things. But this isn't really a big deal. dnl Redefine AC_PROG_CC to automatically invoke _AM_PROG_CC_C_O. m4_define([AC_PROG_CC], m4_defn([AC_PROG_CC]) [_AM_PROG_CC_C_O ]) # 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.65])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], [AC_DIAGNOSE([obsolete], [$0: two- and three-arguments forms are deprecated.]) 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], [ok]):m4_ifdef([AC_PACKAGE_VERSION], [ok]), [ok:ok],, [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([AC_PROG_MKDIR_P])dnl # For better backward compatibility. To be removed once Automake 1.9.x # dies out for good. For more background, see: # # AC_SUBST([mkdir_p], ['$(MKDIR_P)']) # 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])], [m4_define([AC_PROG_CC], m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl AC_PROVIDE_IFELSE([AC_PROG_CXX], [_AM_DEPENDENCIES([CXX])], [m4_define([AC_PROG_CXX], m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl AC_PROVIDE_IFELSE([AC_PROG_OBJC], [_AM_DEPENDENCIES([OBJC])], [m4_define([AC_PROG_OBJC], m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl AC_PROVIDE_IFELSE([AC_PROG_OBJCXX], [_AM_DEPENDENCIES([OBJCXX])], [m4_define([AC_PROG_OBJCXX], m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl ]) AC_REQUIRE([AM_SILENT_RULES])dnl dnl The testsuite driver may need to know about EXEEXT, so add the dnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This dnl macro 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 # POSIX will say in a future version that running "rm -f" with no argument # is OK; and we want to be able to make that assumption in our Makefile # recipes. So use an aggressive probe to check that the usage we want is # actually supported "in the wild" to an acceptable degree. # See automake bug#10828. # To make any issue more visible, cause the running configure to be aborted # by default if the 'rm' program in use doesn't match our expectations; the # user can still override this though. if rm -f && rm -fr && rm -rf; then : OK; else cat >&2 <<'END' Oops! Your 'rm' program seems unable to run without file operands specified on the command line, even when the '-f' option is present. This is contrary to the behaviour of most rm programs out there, and not conforming with the upcoming POSIX standard: Please tell bug-automake@gnu.org about your system, including the value of your $PATH and any error possibly output before this message. This can help us improve future automake versions. END if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then echo 'Configuration will proceed anyway, since you have set the' >&2 echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2 echo >&2 else cat >&2 <<'END' Aborting the configuration process, to ensure you take notice of the issue. You can download and install GNU coreutils to get an 'rm' implementation that behaves properly: . If you want to complete the configuration process using your problematic 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM to "yes", and re-run configure. END AC_MSG_ERROR([Your 'rm' program is bad, sorry.]) fi fi ]) 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-2013 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-2013 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. # 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])]) # Check to see how 'make' treats includes. -*- Autoconf -*- # Copyright (C) 2001-2013 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_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-2013 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_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 is modern enough. # If it is, 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 --is-lightweight"; then am_missing_run="$MISSING " else am_missing_run= AC_MSG_WARN(['missing' script is too old or missing]) fi ]) # Helper functions for option handling. -*- Autoconf -*- # Copyright (C) 2001-2013 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_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])]) # Copyright (C) 1999-2013 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_CC_C_O # --------------- # Like AC_PROG_CC_C_O, but changed for automake. We rewrite AC_PROG_CC # to automatically call this. AC_DEFUN([_AM_PROG_CC_C_O], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl AC_REQUIRE_AUX_FILE([compile])dnl AC_LANG_PUSH([C])dnl AC_CACHE_CHECK( [whether $CC understands -c and -o together], [am_cv_prog_cc_c_o], [AC_LANG_CONFTEST([AC_LANG_PROGRAM([])]) # Make sure it works both with $CC and with simple cc. # Following AC_PROG_CC_C_O, we do the test twice because some # compilers refuse to overwrite an existing .o file with -o, # though they will create one. am_cv_prog_cc_c_o=yes for am_i in 1 2; do if AM_RUN_LOG([$CC -c conftest.$ac_ext -o conftest2.$ac_objext]) \ && test -f conftest2.$ac_objext; then : OK else am_cv_prog_cc_c_o=no break fi done rm -f core conftest* unset am_i]) if test "$am_cv_prog_cc_c_o" != yes; then # Losing compiler, so override with the script. # FIXME: It is wrong to rewrite CC. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__CC in this case, # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" CC="$am_aux_dir/compile $CC" fi AC_LANG_POP([C])]) # For backward compatibility. AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])]) # Copyright (C) 2001-2013 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_RUN_LOG(COMMAND) # ------------------- # Run COMMAND, save the exit status in ac_status, and log it. # (This has been adapted from Autoconf's _AC_RUN_LOG macro.) AC_DEFUN([AM_RUN_LOG], [{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD (exit $ac_status); }]) # Check to make sure that the build environment is sane. -*- Autoconf -*- # Copyright (C) 1996-2013 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_SANITY_CHECK # --------------- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane]) # 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 ( am_has_slept=no for am_try in 1 2; do echo "timestamp, slept: $am_has_slept" > conftest.file 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 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 if test "$[2]" = conftest.file || test $am_try -eq 2; then break fi # Just in case. sleep 1 am_has_slept=yes done 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]) # If we didn't sleep, we still need to ensure time stamps of config.status and # generated files are strictly newer. am_sleep_pid= if grep 'slept: no' conftest.file >/dev/null 2>&1; then ( sleep 1 ) & am_sleep_pid=$! fi AC_CONFIG_COMMANDS_PRE( [AC_MSG_CHECKING([that generated files are newer than configure]) if test -n "$am_sleep_pid"; then # Hide warnings about reused PIDs. wait $am_sleep_pid 2>/dev/null fi AC_MSG_RESULT([done])]) rm -f conftest.file ]) # Copyright (C) 2009-2013 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_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], [dnl AS_HELP_STRING( [--enable-silent-rules], [less verbose build output (undo: "make V=1")]) AS_HELP_STRING( [--disable-silent-rules], [verbose build output (undo: "make V=0")])dnl ]) 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 dnl dnl A few 'make' implementations (e.g., NonStop OS and NextStep) dnl do not support nested variable expansions. dnl See automake bug#9928 and bug#10237. am_make=${MAKE-make} AC_CACHE_CHECK([whether $am_make supports nested variables], [am_cv_make_support_nested_variables], [if AS_ECHO([['TRUE=$(BAR$(V)) BAR0=false BAR1=true V=1 am__doit: @$(TRUE) .PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then am_cv_make_support_nested_variables=yes else am_cv_make_support_nested_variables=no fi]) if test $am_cv_make_support_nested_variables = yes; then dnl Using '$V' instead of '$(V)' breaks IRIX make. AM_V='$(V)' AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' else AM_V=$AM_DEFAULT_VERBOSITY AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY fi AC_SUBST([AM_V])dnl AM_SUBST_NOTMAKE([AM_V])dnl AC_SUBST([AM_DEFAULT_V])dnl AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl AC_SUBST([AM_DEFAULT_VERBOSITY])dnl AM_BACKSLASH='\' AC_SUBST([AM_BACKSLASH])dnl _AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl ]) # Copyright (C) 2001-2013 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-2013 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_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-2013 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_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. Yes, it's still used # in the wild :-( We should find a proper way to deprecate it ... AC_SUBST([AMTAR], ['$${TAR-tar}']) # We'll loop over all known methods to create a tar archive until one works. _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' m4_if([$1], [v7], [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'], [m4_case([$1], [ustar], [# The POSIX 1988 'ustar' format is defined with fixed-size fields. # There is notably a 21 bits limit for the UID and the GID. In fact, # the 'pax' utility can hang on bigger UID/GID (see automake bug#8343 # and bug#13588). am_max_uid=2097151 # 2^21 - 1 am_max_gid=$am_max_uid # The $UID and $GID variables are not portable, so we need to resort # to the POSIX-mandated id(1) utility. Errors in the 'id' calls # below are definitely unexpected, so allow the users to see them # (that is, avoid stderr redirection). am_uid=`id -u || echo unknown` am_gid=`id -g || echo unknown` AC_MSG_CHECKING([whether UID '$am_uid' is supported by ustar format]) if test $am_uid -le $am_max_uid; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) _am_tools=none fi AC_MSG_CHECKING([whether GID '$am_gid' is supported by ustar format]) if test $am_gid -le $am_max_gid; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) _am_tools=none fi], [pax], [], [m4_fatal([Unknown tar format])]) AC_MSG_CHECKING([how to create a $1 tar archive]) # Go ahead even if we have the value already cached. We do so because we # need to set the values for the 'am__tar' and 'am__untar' variables. _am_tools=${am_cv_prog_tar_$1-$_am_tools} 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 gtg-trace-0.2-2+dfsg/compile000077500000000000000000000162451234554746700157150ustar00rootroot00000000000000#! /bin/sh # Wrapper for compilers which do not understand '-c -o'. scriptversion=2012-10-14.11; # UTC # Copyright (C) 1999-2013 Free Software Foundation, Inc. # Written by Tom Tromey . # # 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. # This file is maintained in Automake, please report # bugs to or send patches to # . nl=' ' # We need space, tab and new line, in precisely that order. Quoting is # there to prevent tools from complaining about whitespace usage. IFS=" "" $nl" file_conv= # func_file_conv build_file lazy # Convert a $build file to $host form and store it in $file # Currently only supports Windows hosts. If the determined conversion # type is listed in (the comma separated) LAZY, no conversion will # take place. func_file_conv () { file=$1 case $file in / | /[!/]*) # absolute file, and not a UNC file if test -z "$file_conv"; then # lazily determine how to convert abs files case `uname -s` in MINGW*) file_conv=mingw ;; CYGWIN*) file_conv=cygwin ;; *) file_conv=wine ;; esac fi case $file_conv/,$2, in *,$file_conv,*) ;; mingw/*) file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'` ;; cygwin/*) file=`cygpath -m "$file" || echo "$file"` ;; wine/*) file=`winepath -w "$file" || echo "$file"` ;; esac ;; esac } # func_cl_dashL linkdir # Make cl look for libraries in LINKDIR func_cl_dashL () { func_file_conv "$1" if test -z "$lib_path"; then lib_path=$file else lib_path="$lib_path;$file" fi linker_opts="$linker_opts -LIBPATH:$file" } # func_cl_dashl library # Do a library search-path lookup for cl func_cl_dashl () { lib=$1 found=no save_IFS=$IFS IFS=';' for dir in $lib_path $LIB do IFS=$save_IFS if $shared && test -f "$dir/$lib.dll.lib"; then found=yes lib=$dir/$lib.dll.lib break fi if test -f "$dir/$lib.lib"; then found=yes lib=$dir/$lib.lib break fi if test -f "$dir/lib$lib.a"; then found=yes lib=$dir/lib$lib.a break fi done IFS=$save_IFS if test "$found" != yes; then lib=$lib.lib fi } # func_cl_wrapper cl arg... # Adjust compile command to suit cl func_cl_wrapper () { # Assume a capable shell lib_path= shared=: linker_opts= for arg do if test -n "$eat"; then eat= else case $1 in -o) # configure might choose to run compile as 'compile cc -o foo foo.c'. eat=1 case $2 in *.o | *.[oO][bB][jJ]) func_file_conv "$2" set x "$@" -Fo"$file" shift ;; *) func_file_conv "$2" set x "$@" -Fe"$file" shift ;; esac ;; -I) eat=1 func_file_conv "$2" mingw set x "$@" -I"$file" shift ;; -I*) func_file_conv "${1#-I}" mingw set x "$@" -I"$file" shift ;; -l) eat=1 func_cl_dashl "$2" set x "$@" "$lib" shift ;; -l*) func_cl_dashl "${1#-l}" set x "$@" "$lib" shift ;; -L) eat=1 func_cl_dashL "$2" ;; -L*) func_cl_dashL "${1#-L}" ;; -static) shared=false ;; -Wl,*) arg=${1#-Wl,} save_ifs="$IFS"; IFS=',' for flag in $arg; do IFS="$save_ifs" linker_opts="$linker_opts $flag" done IFS="$save_ifs" ;; -Xlinker) eat=1 linker_opts="$linker_opts $2" ;; -*) set x "$@" "$1" shift ;; *.cc | *.CC | *.cxx | *.CXX | *.[cC]++) func_file_conv "$1" set x "$@" -Tp"$file" shift ;; *.c | *.cpp | *.CPP | *.lib | *.LIB | *.Lib | *.OBJ | *.obj | *.[oO]) func_file_conv "$1" mingw set x "$@" "$file" shift ;; *) set x "$@" "$1" shift ;; esac fi shift done if test -n "$linker_opts"; then linker_opts="-link$linker_opts" fi exec "$@" $linker_opts exit 1 } eat= case $1 in '') echo "$0: No command. Try '$0 --help' for more information." 1>&2 exit 1; ;; -h | --h*) cat <<\EOF Usage: compile [--help] [--version] PROGRAM [ARGS] Wrapper for compilers which do not understand '-c -o'. Remove '-o dest.o' from ARGS, run PROGRAM with the remaining arguments, and rename the output as expected. If you are trying to build a whole package this is not the right script to run: please start by reading the file 'INSTALL'. Report bugs to . EOF exit $? ;; -v | --v*) echo "compile $scriptversion" exit $? ;; cl | *[/\\]cl | cl.exe | *[/\\]cl.exe ) func_cl_wrapper "$@" # Doesn't return... ;; esac ofile= cfile= for arg do if test -n "$eat"; then eat= else case $1 in -o) # configure might choose to run compile as 'compile cc -o foo foo.c'. # So we strip '-o arg' only if arg is an object. eat=1 case $2 in *.o | *.obj) ofile=$2 ;; *) set x "$@" -o "$2" shift ;; esac ;; *.c) cfile=$1 set x "$@" "$1" shift ;; *) set x "$@" "$1" shift ;; esac fi shift done if test -z "$ofile" || test -z "$cfile"; then # If no '-o' option was seen then we might have been invoked from a # pattern rule where we don't need one. That is ok -- this is a # normal compilation that the losing compiler can handle. If no # '.c' file was seen then we are probably linking. That is also # ok. exec "$@" fi # Name of file we expect compiler to create. cofile=`echo "$cfile" | sed 's|^.*[\\/]||; s|^[a-zA-Z]:||; s/\.c$/.o/'` # Create the lock directory. # Note: use '[/\\:.-]' here to ensure that we don't use the same name # that we are using for the .o file. Also, base the name on the expected # object file name, since that is what matters with a parallel build. lockdir=`echo "$cofile" | sed -e 's|[/\\:.-]|_|g'`.d while true; do if mkdir "$lockdir" >/dev/null 2>&1; then break fi sleep 1 done # FIXME: race condition here if user kills between mkdir and trap. trap "rmdir '$lockdir'; exit 1" 1 2 15 # Run the compile. "$@" ret=$? if test -f "$cofile"; then test "$cofile" = "$ofile" || mv "$cofile" "$ofile" elif test -f "${cofile}bj"; then test "${cofile}bj" = "$ofile" || mv "${cofile}bj" "$ofile" fi rmdir "$lockdir" exit $ret # Local Variables: # mode: shell-script # sh-indentation: 2 # 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: gtg-trace-0.2-2+dfsg/config.guess000077500000000000000000001235501234554746700166550ustar00rootroot00000000000000#! /bin/sh # Attempt to guess a canonical system name. # Copyright 1992-2014 Free Software Foundation, Inc. timestamp='2014-03-23' # 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 3 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, 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. This Exception is an additional permission under section 7 # of the GNU General Public License, version 3 ("GPLv3"). # # Originally written by Per Bothner. # # 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 # # Please send patches with a ChangeLog entry to config-patches@gnu.org. 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 1992-2014 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' 1 2 15 # 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" 1 2 13 15 ; : ${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 case "${UNAME_SYSTEM}" in Linux|GNU|GNU/*) # If the system lacks a compiler, then just pick glibc. # We could probably try harder. LIBC=gnu eval $set_cc_for_build cat <<-EOF > $dummy.c #include #if defined(__UCLIBC__) LIBC=uclibc #elif defined(__dietlibc__) LIBC=dietlibc #else LIBC=gnu #endif EOF eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC' | sed 's, ,,g'` ;; esac # 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 tuples: *-*-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 ;; *:Bitrig:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/Bitrig.//'` echo ${UNAME_MACHINE_ARCH}-unknown-bitrig${UNAME_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'` # Reset EXIT trap before exiting to avoid spurious non-zero exit code. exitcode=$? trap '' 0 exit $exitcode ;; 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:*:*) UNAME_PROCESSOR=`/usr/bin/uname -p` case ${UNAME_PROCESSOR} in amd64) echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; *) echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; esac exit ;; i*:CYGWIN*:*) echo ${UNAME_MACHINE}-pc-cygwin exit ;; *:MINGW64*:*) echo ${UNAME_MACHINE}-pc-mingw64 exit ;; *:MINGW*:*) echo ${UNAME_MACHINE}-pc-mingw32 exit ;; *:MSYS*:*) echo ${UNAME_MACHINE}-pc-msys 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-${LIBC}`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/[-(].*//'`-${LIBC} exit ;; i*86:Minix:*:*) echo ${UNAME_MACHINE}-pc-minix exit ;; aarch64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; aarch64_be:Linux:*:*) UNAME_MACHINE=aarch64_be echo ${UNAME_MACHINE}-unknown-linux-${LIBC} 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="gnulibc1" ; fi echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; arc:Linux:*:* | arceb:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${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-${LIBC} else if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_PCS_VFP then echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabi else echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabihf fi fi exit ;; avr32*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; cris:Linux:*:*) echo ${UNAME_MACHINE}-axis-linux-${LIBC} exit ;; crisv32:Linux:*:*) echo ${UNAME_MACHINE}-axis-linux-${LIBC} exit ;; frv:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; hexagon:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; i*86:Linux:*:*) echo ${UNAME_MACHINE}-pc-linux-${LIBC} exit ;; ia64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; m32r*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; m68*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} 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-${LIBC}"; exit; } ;; openrisc*:Linux:*:*) echo or1k-unknown-linux-${LIBC} exit ;; or32:Linux:*:* | or1k*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; padre:Linux:*:*) echo sparc-unknown-linux-${LIBC} exit ;; parisc64:Linux:*:* | hppa64:Linux:*:*) echo hppa64-unknown-linux-${LIBC} 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-${LIBC} ;; PA8*) echo hppa2.0-unknown-linux-${LIBC} ;; *) echo hppa-unknown-linux-${LIBC} ;; esac exit ;; ppc64:Linux:*:*) echo powerpc64-unknown-linux-${LIBC} exit ;; ppc:Linux:*:*) echo powerpc-unknown-linux-${LIBC} exit ;; ppc64le:Linux:*:*) echo powerpc64le-unknown-linux-${LIBC} exit ;; ppcle:Linux:*:*) echo powerpcle-unknown-linux-${LIBC} exit ;; s390:Linux:*:* | s390x:Linux:*:*) echo ${UNAME_MACHINE}-ibm-linux-${LIBC} exit ;; sh64*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; sh*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; sparc:Linux:*:* | sparc64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; tile*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; vax:Linux:*:*) echo ${UNAME_MACHINE}-dec-linux-${LIBC} exit ;; x86_64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; xtensa*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} 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 ;; x86_64:Haiku:*:*) echo x86_64-unknown-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 eval $set_cc_for_build if test "$UNAME_PROCESSOR" = unknown ; then UNAME_PROCESSOR=powerpc fi if test `echo "$UNAME_RELEASE" | sed -e 's/\..*//'` -le 10 ; then 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 case $UNAME_PROCESSOR in i386) UNAME_PROCESSOR=x86_64 ;; powerpc) UNAME_PROCESSOR=powerpc64 ;; esac fi fi elif test "$UNAME_PROCESSOR" = i386 ; then # Avoid executing cc on OS X 10.9, as it ships with a stub # that puts up a graphical alert prompting to install # developer tools. Any system running Mac OS X 10.7 or # later (Darwin 11 and later) is required to have a 64-bit # processor. This is not true of the ARM version of Darwin # that Apple uses in portable devices. UNAME_PROCESSOR=x86_64 fi 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 ;; NEO-?:NONSTOP_KERNEL:*:*) echo neo-tandem-nsk${UNAME_RELEASE} 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 ;; x86_64:VMkernel:*:*) echo ${UNAME_MACHINE}-unknown-esx exit ;; esac 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: gtg-trace-0.2-2+dfsg/config.sub000077500000000000000000001056341234554746700163230ustar00rootroot00000000000000#! /bin/sh # Configuration validation subroutine script. # Copyright 1992-2014 Free Software Foundation, Inc. timestamp='2014-05-01' # 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 3 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, 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. This Exception is an additional permission under section 7 # of the GNU General Public License, version 3 ("GPLv3"). # Please send patches with a ChangeLog entry to config-patches@gnu.org. # # 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 1992-2014 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-musl* | 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/'` ;; android-linux) os=-linux-android basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`-unknown ;; *) 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*178) os=-lynxos178 ;; -lynx*5) os=-lynxos5 ;; -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 \ | aarch64 | aarch64_be \ | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ | am33_2.0 \ | arc | arceb \ | arm | arm[bl]e | arme[lb] | armv[2-8] | armv[3-8][lb] | armv7[arm] \ | avr | avr32 \ | be32 | be64 \ | bfin \ | c4x | c8051 | clipper \ | d10v | d30v | dlx | dsp16xx \ | epiphany \ | fido | fr30 | frv \ | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ | hexagon \ | i370 | i860 | i960 | ia64 \ | ip2k | iq2000 \ | k1om \ | le32 | le64 \ | lm32 \ | m32c | m32r | m32rle | m68000 | m68k | m88k \ | maxq | mb | microblaze | microblazeel | 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 \ | mipsisa32r6 | mipsisa32r6el \ | mipsisa64 | mipsisa64el \ | mipsisa64r2 | mipsisa64r2el \ | mipsisa64r6 | mipsisa64r6el \ | mipsisa64sb1 | mipsisa64sb1el \ | mipsisa64sr71k | mipsisa64sr71kel \ | mipsr5900 | mipsr5900el \ | mipstx39 | mipstx39el \ | mn10200 | mn10300 \ | moxie \ | mt \ | msp430 \ | nds32 | nds32le | nds32be \ | nios | nios2 | nios2eb | nios2el \ | ns16k | ns32k \ | open8 | or1k | or1knd | or32 \ | pdp10 | pdp11 | pj | pjl \ | powerpc | powerpc64 | powerpc64le | powerpcle \ | pyramid \ | rl78 | 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 \ | tahoe | tic4x | tic54x | tic55x | tic6x | tic80 | tron \ | ubicom32 \ | v850 | v850e | v850e1 | v850e2 | v850es | v850e2v3 \ | we32k \ | x86 | xc16x | 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 | m68hcs12x | nvptx | picochip) basic_machine=$basic_machine-unknown os=-none ;; m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k) ;; ms1) basic_machine=mt-unknown ;; strongarm | thumb | xscale) basic_machine=arm-unknown ;; xgate) basic_machine=$basic_machine-unknown os=-none ;; xscaleeb) basic_machine=armeb-unknown ;; xscaleel) basic_machine=armel-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-* \ | aarch64-* | aarch64_be-* \ | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ | alphapca5[67]-* | alpha64pca5[67]-* | arc-* | arceb-* \ | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ | avr-* | avr32-* \ | be32-* | be64-* \ | bfin-* | bs2000-* \ | c[123]* | c30-* | [cjt]90-* | c4x-* \ | c8051-* | 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-* \ | hexagon-* \ | i*86-* | i860-* | i960-* | ia64-* \ | ip2k-* | iq2000-* \ | k1om-* \ | le32-* | le64-* \ | lm32-* \ | m32c-* | m32r-* | m32rle-* \ | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ | m88110-* | m88k-* | maxq-* | mcore-* | metag-* \ | microblaze-* | microblazeel-* \ | 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-* \ | mipsisa32r6-* | mipsisa32r6el-* \ | mipsisa64-* | mipsisa64el-* \ | mipsisa64r2-* | mipsisa64r2el-* \ | mipsisa64r6-* | mipsisa64r6el-* \ | mipsisa64sb1-* | mipsisa64sb1el-* \ | mipsisa64sr71k-* | mipsisa64sr71kel-* \ | mipsr5900-* | mipsr5900el-* \ | mipstx39-* | mipstx39el-* \ | mmix-* \ | mt-* \ | msp430-* \ | nds32-* | nds32le-* | nds32be-* \ | nios-* | nios2-* | nios2eb-* | nios2el-* \ | none-* | np1-* | ns16k-* | ns32k-* \ | open8-* \ | or1k*-* \ | orion-* \ | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \ | pyramid-* \ | rl78-* | 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-* | sv1-* | sx?-* \ | tahoe-* \ | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ | tile*-* \ | tron-* \ | ubicom32-* \ | v850-* | v850e-* | v850e1-* | v850es-* | v850e2-* | v850e2v3-* \ | vax-* \ | we32k-* \ | x86-* | x86_64-* | xc16x-* | xps100-* \ | 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 | 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*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 ;; mingw64) basic_machine=x86_64-pc os=-mingw64 ;; mingw32) basic_machine=i686-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-/'` ;; msys) basic_machine=i686-pc os=-msys ;; mvs) basic_machine=i370-ibm os=-mvs ;; nacl) basic_machine=le32-unknown os=-nacl ;; 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 | ppcbe) basic_machine=powerpc-unknown ;; ppc-* | ppcbe-*) 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 | rdos64) basic_machine=x86_64-pc os=-rdos ;; rdos32) 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 ;; strongarm-* | thumb-*) basic_machine=arm-`echo $basic_machine | sed 's/^[^-]*-//'` ;; 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 ;; tile*) basic_machine=$basic_machine-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 ;; xscale-* | xscalee[bl]-*) basic_machine=`echo $basic_machine | sed 's/^xscale/arm/'` ;; 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* | -plan9* \ | -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* \ | -bitrig* | -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* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ | -mingw32* | -mingw64* | -linux-gnu* | -linux-android* \ | -linux-newlib* | -linux-musl* | -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* | -tirtos*) # 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 ;; -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 ;; c8051-*) os=-elf ;; hexagon-*) os=-elf ;; 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 ;; 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: gtg-trace-0.2-2+dfsg/configure000077500000000000000000020560661234554746700162550ustar00rootroot00000000000000#! /bin/sh # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.69 for GTG 0.2-2. # # Report bugs to . # # # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. # # # This configure script is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi as_nl=' ' export as_nl # Printing a long string crashes Solaris 7 /usr/bin/printf. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo # Prefer a ksh shell builtin over an external printf program on Solaris, # but without wasting forks for bash or zsh. if test -z "$BASH_VERSION$ZSH_VERSION" \ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='print -r --' as_echo_n='print -rn --' elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='printf %s\n' as_echo_n='printf %s' else if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' as_echo_n='/usr/ucb/echo -n' else as_echo_body='eval expr "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 # Use a proper internal environment variable to ensure we don't fall # into an infinite loop, continuously re-executing ourselves. if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then _as_can_reexec=no; export _as_can_reexec; # We cannot yet assume a decent shell, so we have to provide a # neutralization value for shells without unset; and this also # works around shells that cannot unset nonexistent variables. # Preserve -v and -x to the replacement shell. BASH_ENV=/dev/null ENV=/dev/null (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV case $- in # (((( *v*x* | *x*v* ) as_opts=-vx ;; *v* ) as_opts=-v ;; *x* ) as_opts=-x ;; * ) as_opts= ;; esac exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} # Admittedly, this is quite paranoid, since all the known shells bail # out after a failed `exec'. $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 as_fn_exit 255 fi # We don't want this to propagate to other subprocesses. { _as_can_reexec=; unset _as_can_reexec;} if test "x$CONFIG_SHELL" = x; then as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which # is contrary to our usage. Disable this feature. alias -g '\${1+\"\$@\"}'='\"\$@\"' setopt NO_GLOB_SUBST else case \`(set -o) 2>/dev/null\` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi " as_required="as_fn_return () { (exit \$1); } as_fn_success () { as_fn_return 0; } as_fn_failure () { as_fn_return 1; } as_fn_ret_success () { return 0; } as_fn_ret_failure () { return 1; } exitcode=0 as_fn_success || { exitcode=1; echo as_fn_success failed.; } as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then : else exitcode=1; echo positional parameters were not saved. fi test x\$exitcode = x0 || exit 1 test -x / || exit 1" as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1 test -n \"\${ZSH_VERSION+set}\${BASH_VERSION+set}\" || ( ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO ECHO=\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO PATH=/empty FPATH=/empty; export PATH FPATH test \"X\`printf %s \$ECHO\`\" = \"X\$ECHO\" \\ || test \"X\`print -r -- \$ECHO\`\" = \"X\$ECHO\" ) || 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 : export CONFIG_SHELL # We cannot yet assume a decent shell, so we have to provide a # neutralization value for shells without unset; and this also # works around shells that cannot unset nonexistent variables. # Preserve -v and -x to the replacement shell. BASH_ENV=/dev/null ENV=/dev/null (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV case $- in # (((( *v*x* | *x*v* ) as_opts=-vx ;; *v* ) as_opts=-v ;; *x* ) as_opts=-x ;; * ) as_opts= ;; esac exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} # Admittedly, this is quite paranoid, since all the known shells bail # out after a failed `exec'. $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 exit 255 fi if test x$as_have_required = xno; then : $as_echo "$0: This script requires a shell more modern than all" $as_echo "$0: the shells that I found on your system." if test x${ZSH_VERSION+set} = xset ; then $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should" $as_echo "$0: be upgraded to zsh 4.3.4 or later." else $as_echo "$0: Please tell bug-autoconf@gnu.org and $0: gtg-devel@lists.gforge.inria.fr about your system, $0: including any error possibly output before this $0: message. Then install a modern shell, or manually run $0: the script under such a shell if you do have one." fi exit 1 fi fi fi SHELL=${CONFIG_SHELL-/bin/sh} export SHELL # Unset more variables known to interfere with behavior of common tools. CLICOLOR_FORCE= GREP_OPTIONS= unset CLICOLOR_FORCE GREP_OPTIONS ## --------------------- ## ## M4sh Shell Functions. ## ## --------------------- ## # as_fn_unset VAR # --------------- # Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset # as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. as_fn_set_status () { return $1 } # as_fn_set_status # as_fn_exit STATUS # ----------------- # Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } # as_fn_exit # as_fn_mkdir_p # ------------- # Create "$as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p # as_fn_executable_p FILE # ----------------------- # Test if FILE is an executable regular file. as_fn_executable_p () { test -f "$1" && test -x "$1" } # as_fn_executable_p # as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : eval 'as_fn_append () { eval $1+=\$2 }' else as_fn_append () { eval $1=\$$1\$2 } fi # as_fn_append # as_fn_arith ARG... # ------------------ # Perform arithmetic evaluation on the ARGs, and store the result in the # global $as_val. Take advantage of shells that can avoid forks. The arguments # must be portable across $(()) and expr. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : eval 'as_fn_arith () { as_val=$(( $* )) }' else as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } fi # as_fn_arith # as_fn_error STATUS ERROR [LINENO LOG_FD] # ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the # script with STATUS, using 1 if that was 0. as_fn_error () { as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi $as_echo "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || $as_echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits as_lineno_1=$LINENO as_lineno_1a=$LINENO as_lineno_2=$LINENO as_lineno_2a=$LINENO eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) sed -n ' p /[$]LINENO/= ' <$as_myself | sed ' s/[$]LINENO.*/&-/ t lineno b :lineno N :loop s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ t loop s/-\n.*// ' >$as_me.lineno && chmod +x "$as_me.lineno" || { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } # If we had to re-execute with $CONFIG_SHELL, we're ensured to have # already done that, so ensure we don't try to do so again and fall # in an infinite loop. This has already happened in practice. _as_can_reexec=no; export _as_can_reexec # Don't try to exec as it changes $[0], causing all sort of problems # (the dirname of $[0] is not the place where we might find the # original and so on. Autoconf is especially sensitive to this). . "./$as_me.lineno" # Exit status is that of the last command. exit } ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in #((((( -n*) case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. xy) ECHO_C='\c';; *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -pR'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -pR' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -pR' fi else as_ln_s='cp -pR' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi as_test_x='test -x' as_executable_p=as_fn_executable_p # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" SHELL=${CONFIG_SHELL-/bin/sh} 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='GTG' PACKAGE_TARNAME='gtg' PACKAGE_VERSION='0.2-2' PACKAGE_STRING='GTG 0.2-2' PACKAGE_BUGREPORT='gtg-devel@lists.gforge.inria.fr' PACKAGE_URL='' # 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" enable_option_checking=no ac_subst_vars='am__EXEEXT_FALSE am__EXEEXT_TRUE LTLIBOBJS LIBOBJS subdirs USE_DOXYGEN_FALSE USE_DOXYGEN_TRUE USE_PDFLATEX_FALSE USE_PDFLATEX_TRUE PDFLATEX HAVE_DOXYGEN DONT_USE_INTERNAL_OTF_FALSE DONT_USE_INTERNAL_OTF_TRUE USE_OTF_FALSE USE_OTF_TRUE OTF_LIB OTF_INC OTFDIR USE_MPI_FALSE USE_MPI_TRUE USE_MPIDIR_FROM_USER MPIDIR FORTRAN_FALSE FORTRAN_TRUE HAVE_LIBZ_FALSE HAVE_LIBZ_TRUE CPP OTOOL64 OTOOL LIPO NMEDIT DSYMUTIL MANIFEST_TOOL RANLIB ac_ct_AR AR DLLTOOL OBJDUMP LN_S NM ac_ct_DUMPBIN DUMPBIN LD FGREP EGREP GREP SED host_os host_vendor host_cpu host build_os build_vendor build_cpu build LIBTOOL ac_ct_F77 FFLAGS F77 am__fastdepCC_FALSE am__fastdepCC_TRUE CCDEPMODE am__nodep AMDEPBACKSLASH AMDEP_FALSE AMDEP_TRUE am__quote am__include DEPDIR OBJEXT EXEEXT ac_ct_CC CPPFLAGS LDFLAGS CFLAGS CC AM_BACKSLASH AM_DEFAULT_VERBOSITY AM_DEFAULT_V AM_V 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_silent_rules enable_dependency_tracking enable_shared enable_static with_pic enable_fast_install with_gnu_ld with_sysroot enable_libtool_lock with_libz with_fortran with_mpi with_otf with_otf_include with_otf_lib ' ac_precious_vars='build_alias host_alias target_alias CC CFLAGS LDFLAGS LIBS CPPFLAGS F77 FFLAGS CPP PDFLATEX' ac_subdirs_all='extlib/otf' # Initialize some variables set by options. ac_init_help= ac_init_version=false ac_unrecognized_opts= ac_unrecognized_sep= # The variables have the same names as the options, with # dashes changed to underlines. cache_file=/dev/null exec_prefix=NONE no_create= no_recursion= prefix=NONE program_prefix=NONE program_suffix=NONE program_transform_name=s,x,x, silent= site= srcdir= verbose= x_includes=NONE x_libraries=NONE # Installation directory options. # These are left unexpanded so users can "make install exec_prefix=/foo" # and all the variables that are supposed to be based on exec_prefix # by default will actually change. # Use braces instead of parens because sh, perl, etc. also accept them. # (The list follows the same order as the GNU Coding Standards.) bindir='${exec_prefix}/bin' sbindir='${exec_prefix}/sbin' libexecdir='${exec_prefix}/libexec' datarootdir='${prefix}/share' datadir='${datarootdir}' sysconfdir='${prefix}/etc' sharedstatedir='${prefix}/com' localstatedir='${prefix}/var' includedir='${prefix}/include' oldincludedir='/usr/include' docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' infodir='${datarootdir}/info' htmldir='${docdir}' dvidir='${docdir}' pdfdir='${docdir}' psdir='${docdir}' libdir='${exec_prefix}/lib' localedir='${datarootdir}/locale' mandir='${datarootdir}/man' ac_prev= ac_dashdash= for ac_option do # If the previous option needs an argument, assign it. if test -n "$ac_prev"; then eval $ac_prev=\$ac_option ac_prev= continue fi case $ac_option in *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; *=) ac_optarg= ;; *) ac_optarg=yes ;; esac # Accept the important Cygnus configure options, so we can diagnose typos. case $ac_dashdash$ac_option in --) ac_dashdash=yes ;; -bindir | --bindir | --bindi | --bind | --bin | --bi) ac_prev=bindir ;; -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) bindir=$ac_optarg ;; -build | --build | --buil | --bui | --bu) ac_prev=build_alias ;; -build=* | --build=* | --buil=* | --bui=* | --bu=*) build_alias=$ac_optarg ;; -cache-file | --cache-file | --cache-fil | --cache-fi \ | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) ac_prev=cache_file ;; -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) cache_file=$ac_optarg ;; --config-cache | -C) cache_file=config.cache ;; -datadir | --datadir | --datadi | --datad) ac_prev=datadir ;; -datadir=* | --datadir=* | --datadi=* | --datad=*) datadir=$ac_optarg ;; -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ | --dataroo | --dataro | --datar) ac_prev=datarootdir ;; -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) datarootdir=$ac_optarg ;; -disable-* | --disable-*) ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid feature name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=no ;; -docdir | --docdir | --docdi | --doc | --do) ac_prev=docdir ;; -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) docdir=$ac_optarg ;; -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) ac_prev=dvidir ;; -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) dvidir=$ac_optarg ;; -enable-* | --enable-*) ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid feature name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=\$ac_optarg ;; -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ | --exec | --exe | --ex) ac_prev=exec_prefix ;; -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ | --exec=* | --exe=* | --ex=*) exec_prefix=$ac_optarg ;; -gas | --gas | --ga | --g) # Obsolete; use --with-gas. with_gas=yes ;; -help | --help | --hel | --he | -h) ac_init_help=long ;; -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) ac_init_help=recursive ;; -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) ac_init_help=short ;; -host | --host | --hos | --ho) ac_prev=host_alias ;; -host=* | --host=* | --hos=* | --ho=*) host_alias=$ac_optarg ;; -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) ac_prev=htmldir ;; -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ | --ht=*) htmldir=$ac_optarg ;; -includedir | --includedir | --includedi | --included | --include \ | --includ | --inclu | --incl | --inc) ac_prev=includedir ;; -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ | --includ=* | --inclu=* | --incl=* | --inc=*) includedir=$ac_optarg ;; -infodir | --infodir | --infodi | --infod | --info | --inf) ac_prev=infodir ;; -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) infodir=$ac_optarg ;; -libdir | --libdir | --libdi | --libd) ac_prev=libdir ;; -libdir=* | --libdir=* | --libdi=* | --libd=*) libdir=$ac_optarg ;; -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ | --libexe | --libex | --libe) ac_prev=libexecdir ;; -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ | --libexe=* | --libex=* | --libe=*) libexecdir=$ac_optarg ;; -localedir | --localedir | --localedi | --localed | --locale) ac_prev=localedir ;; -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) localedir=$ac_optarg ;; -localstatedir | --localstatedir | --localstatedi | --localstated \ | --localstate | --localstat | --localsta | --localst | --locals) ac_prev=localstatedir ;; -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) localstatedir=$ac_optarg ;; -mandir | --mandir | --mandi | --mand | --man | --ma | --m) ac_prev=mandir ;; -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) mandir=$ac_optarg ;; -nfp | --nfp | --nf) # Obsolete; use --without-fp. with_fp=no ;; -no-create | --no-create | --no-creat | --no-crea | --no-cre \ | --no-cr | --no-c | -n) no_create=yes ;; -no-recursion | --no-recursion | --no-recursio | --no-recursi \ | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) no_recursion=yes ;; -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ | --oldin | --oldi | --old | --ol | --o) ac_prev=oldincludedir ;; -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) oldincludedir=$ac_optarg ;; -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) ac_prev=prefix ;; -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) prefix=$ac_optarg ;; -program-prefix | --program-prefix | --program-prefi | --program-pref \ | --program-pre | --program-pr | --program-p) ac_prev=program_prefix ;; -program-prefix=* | --program-prefix=* | --program-prefi=* \ | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) program_prefix=$ac_optarg ;; -program-suffix | --program-suffix | --program-suffi | --program-suff \ | --program-suf | --program-su | --program-s) ac_prev=program_suffix ;; -program-suffix=* | --program-suffix=* | --program-suffi=* \ | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) program_suffix=$ac_optarg ;; -program-transform-name | --program-transform-name \ | --program-transform-nam | --program-transform-na \ | --program-transform-n | --program-transform- \ | --program-transform | --program-transfor \ | --program-transfo | --program-transf \ | --program-trans | --program-tran \ | --progr-tra | --program-tr | --program-t) ac_prev=program_transform_name ;; -program-transform-name=* | --program-transform-name=* \ | --program-transform-nam=* | --program-transform-na=* \ | --program-transform-n=* | --program-transform-=* \ | --program-transform=* | --program-transfor=* \ | --program-transfo=* | --program-transf=* \ | --program-trans=* | --program-tran=* \ | --progr-tra=* | --program-tr=* | --program-t=*) program_transform_name=$ac_optarg ;; -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) ac_prev=pdfdir ;; -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) pdfdir=$ac_optarg ;; -psdir | --psdir | --psdi | --psd | --ps) ac_prev=psdir ;; -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) psdir=$ac_optarg ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) silent=yes ;; -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) ac_prev=sbindir ;; -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ | --sbi=* | --sb=*) sbindir=$ac_optarg ;; -sharedstatedir | --sharedstatedir | --sharedstatedi \ | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ | --sharedst | --shareds | --shared | --share | --shar \ | --sha | --sh) ac_prev=sharedstatedir ;; -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ | --sha=* | --sh=*) sharedstatedir=$ac_optarg ;; -site | --site | --sit) ac_prev=site ;; -site=* | --site=* | --sit=*) site=$ac_optarg ;; -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) ac_prev=srcdir ;; -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) srcdir=$ac_optarg ;; -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ | --syscon | --sysco | --sysc | --sys | --sy) ac_prev=sysconfdir ;; -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) sysconfdir=$ac_optarg ;; -target | --target | --targe | --targ | --tar | --ta | --t) ac_prev=target_alias ;; -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) target_alias=$ac_optarg ;; -v | -verbose | --verbose | --verbos | --verbo | --verb) verbose=yes ;; -version | --version | --versio | --versi | --vers | -V) ac_init_version=: ;; -with-* | --with-*) ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid package name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=\$ac_optarg ;; -without-* | --without-*) ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid package name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=no ;; --x) # Obsolete; use --with-x. with_x=yes ;; -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ | --x-incl | --x-inc | --x-in | --x-i) ac_prev=x_includes ;; -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) x_includes=$ac_optarg ;; -x-libraries | --x-libraries | --x-librarie | --x-librari \ | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) ac_prev=x_libraries ;; -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) x_libraries=$ac_optarg ;; -*) as_fn_error $? "unrecognized option: \`$ac_option' Try \`$0 --help' for more information" ;; *=*) ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` # Reject names that are not valid shell variable names. case $ac_envvar in #( '' | [0-9]* | *[!_$as_cr_alnum]* ) as_fn_error $? "invalid variable name: \`$ac_envvar'" ;; esac eval $ac_envvar=\$ac_optarg export $ac_envvar ;; *) # FIXME: should be removed in autoconf 3.0. $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}" ;; esac done if test -n "$ac_prev"; then ac_option=--`echo $ac_prev | sed 's/_/-/g'` as_fn_error $? "missing argument to $ac_option" fi if test -n "$ac_unrecognized_opts"; then case $enable_option_checking in no) ;; fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;; *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; esac fi # Check all directory arguments for consistency. for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ datadir sysconfdir sharedstatedir localstatedir includedir \ oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ libdir localedir mandir do eval ac_val=\$$ac_var # Remove trailing slashes. case $ac_val in */ ) ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` eval $ac_var=\$ac_val;; esac # Be sure to have absolute directory names. case $ac_val in [\\/$]* | ?:[\\/]* ) continue;; NONE | '' ) case $ac_var in *prefix ) continue;; esac;; esac as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val" done # There might be people who depend on the old broken behavior: `$host' # used to hold the argument of --host etc. # FIXME: To remove some day. build=$build_alias host=$host_alias target=$target_alias # FIXME: To remove some day. if test "x$host_alias" != x; then if test "x$build_alias" = x; then cross_compiling=maybe elif test "x$build_alias" != "x$host_alias"; then cross_compiling=yes fi fi ac_tool_prefix= test -n "$host_alias" && ac_tool_prefix=$host_alias- test "$silent" = yes && exec 6>/dev/null ac_pwd=`pwd` && test -n "$ac_pwd" && ac_ls_di=`ls -di .` && ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || as_fn_error $? "working directory cannot be determined" test "X$ac_ls_di" = "X$ac_pwd_ls_di" || as_fn_error $? "pwd does not report name of working directory" # Find the source files, if location was not specified. if test -z "$srcdir"; then ac_srcdir_defaulted=yes # Try the directory containing this script, then the parent directory. ac_confdir=`$as_dirname -- "$as_myself" || $as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_myself" : 'X\(//\)[^/]' \| \ X"$as_myself" : 'X\(//\)$' \| \ X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_myself" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` srcdir=$ac_confdir if test ! -r "$srcdir/$ac_unique_file"; then srcdir=.. fi else ac_srcdir_defaulted=no fi if test ! -r "$srcdir/$ac_unique_file"; then test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir" fi ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" ac_abs_confdir=`( cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg" pwd)` # When building in place, set srcdir=. if test "$ac_abs_confdir" = "$ac_pwd"; then srcdir=. fi # Remove unnecessary trailing slashes from srcdir. # Double slashes in file names in object file debugging info # mess up M-x gdb in Emacs. case $srcdir in */) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; esac for ac_var in $ac_precious_vars; do eval ac_env_${ac_var}_set=\${${ac_var}+set} eval ac_env_${ac_var}_value=\$${ac_var} eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} eval ac_cv_env_${ac_var}_value=\$${ac_var} done # # Report the --help message. # if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF \`configure' configures GTG 0.2-2 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/gtg] --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 GTG 0.2-2:";; 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-silent-rules less verbose build output (undo: "make V=1") --disable-silent-rules verbose build output (undo: "make V=0") --enable-dependency-tracking do not reject slow dependency extractors --disable-dependency-tracking speeds up one-time build --enable-shared[=PKGS] build shared libraries [default=yes] --enable-static[=PKGS] build static libraries [default=yes] --enable-fast-install[=PKGS] optimize for fast installation [default=yes] --disable-libtool-lock avoid locking (might break parallel builds) Optional Packages: --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) --with-pic[=PKGS] try to use only PIC/non-PIC objects [default=use both] --with-gnu-ld assume the C compiler uses GNU ld [default=no] --with-sysroot=DIR Search for dependent libraries within DIR (or the compiler's sysroot if not specified). --with-libz= Enable libZ --with-fortran= Enable fortran --with-mpi= Use a specific MPI installation --with-otf= Use a specific OTF installation --with-otf-include= Use a specific OTF header directory --with-otf-lib= Use a specific libotf.so directory 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 F77 Fortran 77 compiler command FFLAGS Fortran 77 compiler flags CPP C preprocessor PDFLATEX Location of the pdflatex program (required for building the hwloc doxygen documentation) 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 GTG configure 0.2-2 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. _ACEOF exit fi ## ------------------------ ## ## Autoconf initialization. ## ## ------------------------ ## # 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_f77_try_compile LINENO # ---------------------------- # Try to compile conftest.$ac_ext, and return whether this succeeded. ac_fn_f77_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_f77_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_f77_try_compile # ac_fn_c_try_link LINENO # ----------------------- # Try to link conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_link () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext conftest$ac_exeext 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>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_exeext && { test "$cross_compiling" = yes || test -x conftest$ac_exeext }; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would # interfere with the next link command; also delete a directory that is # left behind by Apple's compiler. We do this before executing the actions. 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_link # 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 # 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_func LINENO FUNC VAR # ---------------------------------- # Tests whether FUNC exists, setting the cache variable VAR accordingly ac_fn_c_check_func () { 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. */ /* Define $2 to an innocuous variant, in case declares $2. For example, HP-UX 11i declares gettimeofday. */ #define $2 innocuous_$2 /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $2 (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef $2 /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char $2 (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined __stub_$2 || defined __stub___$2 choke me #endif int main () { return $2 (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : eval "$3=yes" else eval "$3=no" fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext 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_func # ac_fn_f77_try_link LINENO # ------------------------- # Try to link conftest.$ac_ext, and return whether this succeeded. ac_fn_f77_try_link () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext conftest$ac_exeext 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>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_f77_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && { test "$cross_compiling" = yes || test -x conftest$ac_exeext }; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would # interfere with the next link command; also delete a directory that is # left behind by Apple's compiler. We do this before executing the actions. 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_f77_try_link # ac_fn_c_check_header_mongrel LINENO HEADER VAR INCLUDES # ------------------------------------------------------- # Tests whether HEADER exists, giving a warning if it cannot be compiled using # the include files in INCLUDES and setting the cache variable VAR # accordingly. ac_fn_c_check_header_mongrel () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if eval \${$3+:} false; then : { $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 fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } else # Is the header compilable? { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5 $as_echo_n "checking $2 usability... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 #include <$2> _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_header_compiler=yes else ac_header_compiler=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5 $as_echo "$ac_header_compiler" >&6; } # Is the header present? { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5 $as_echo_n "checking $2 presence... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include <$2> _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : ac_header_preproc=yes else ac_header_preproc=no fi rm -f conftest.err conftest.i conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 $as_echo "$ac_header_preproc" >&6; } # So? What about this header? case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in #(( yes:no: ) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5 $as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ;; no:yes:* ) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5 $as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5 $as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5 $as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5 $as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ( $as_echo "## ---------------------------------------------- ## ## Report this to gtg-devel@lists.gforge.inria.fr ## ## ---------------------------------------------- ##" ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac { $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 eval "$3=\$ac_header_compiler" fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_header_mongrel 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 GTG $as_me 0.2-2, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ _ACEOF exec 5>>config.log { cat <<_ASUNAME ## --------- ## ## Platform. ## ## --------- ## hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` uname -m = `(uname -m) 2>/dev/null || echo unknown` uname -r = `(uname -r) 2>/dev/null || echo unknown` uname -s = `(uname -s) 2>/dev/null || echo unknown` uname -v = `(uname -v) 2>/dev/null || echo unknown` /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` /bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` /bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` /usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` /bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` /bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` _ASUNAME as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. $as_echo "PATH: $as_dir" done IFS=$as_save_IFS } >&5 cat >&5 <<_ACEOF ## ----------- ## ## Core tests. ## ## ----------- ## _ACEOF # Keep a trace of the command line. # Strip out --no-create and --no-recursion so they do not pile up. # Strip out --silent because we don't want to record it for future runs. # Also quote any args containing shell meta-characters. # Make two passes to allow for proper duplicate-argument suppression. ac_configure_args= ac_configure_args0= ac_configure_args1= ac_must_keep_next=false for ac_pass in 1 2 do for ac_arg do case $ac_arg in -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) continue ;; *\'*) ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; esac case $ac_pass in 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; 2) as_fn_append ac_configure_args1 " '$ac_arg'" if test $ac_must_keep_next = true; then ac_must_keep_next=false # Got value, back to normal. else case $ac_arg in *=* | --config-cache | -C | -disable-* | --disable-* \ | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ | -with-* | --with-* | -without-* | --without-* | --x) case "$ac_configure_args0 " in "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; esac ;; -* ) ac_must_keep_next=true ;; esac fi as_fn_append ac_configure_args " '$ac_arg'" ;; esac done done { ac_configure_args0=; unset ac_configure_args0;} { ac_configure_args1=; unset ac_configure_args1;} # When interrupted or exit'd, cleanup temporary files, and complete # config.log. We remove comments because anyway the quotes in there # would cause problems or look ugly. # WARNING: Use '\'' to represent an apostrophe within the trap. # WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. trap 'exit_status=$? # Save into config.log some information that might help in debugging. { echo $as_echo "## ---------------- ## ## Cache variables. ## ## ---------------- ##" echo # The following way of writing the cache mishandles newlines in values, ( for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( *${as_nl}ac_space=\ *) sed -n \ "s/'\''/'\''\\\\'\'''\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" ;; #( *) sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) echo $as_echo "## ----------------- ## ## Output variables. ## ## ----------------- ##" echo for ac_var in $ac_subst_vars do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac $as_echo "$ac_var='\''$ac_val'\''" done | sort echo if test -n "$ac_subst_files"; then $as_echo "## ------------------- ## ## File substitutions. ## ## ------------------- ##" echo for ac_var in $ac_subst_files do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac $as_echo "$ac_var='\''$ac_val'\''" done | sort echo fi if test -s confdefs.h; then $as_echo "## ----------- ## ## confdefs.h. ## ## ----------- ##" echo cat confdefs.h echo fi test "$ac_signal" != 0 && $as_echo "$as_me: caught signal $ac_signal" $as_echo "$as_me: exit $exit_status" } >&5 rm -f core *.core core.conftest.* && rm -f -r conftest* confdefs* conf$$* $ac_clean_files && exit $exit_status ' 0 for ac_signal in 1 2 13 15; do trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal done ac_signal=0 # confdefs.h avoids OS command line length limits that DEFS can exceed. rm -f -r conftest* confdefs.h $as_echo "/* confdefs.h */" > confdefs.h # Predefined preprocessor variables. cat >>confdefs.h <<_ACEOF #define PACKAGE_NAME "$PACKAGE_NAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_TARNAME "$PACKAGE_TARNAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_VERSION "$PACKAGE_VERSION" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_STRING "$PACKAGE_STRING" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_URL "$PACKAGE_URL" _ACEOF # Let the site file select an alternate cache file if it wants to. # Prefer an explicitly selected file to automatically selected ones. ac_site_file1=NONE ac_site_file2=NONE if test -n "$CONFIG_SITE"; then # We do not want a PATH search for config.site. case $CONFIG_SITE in #(( -*) ac_site_file1=./$CONFIG_SITE;; */*) ac_site_file1=$CONFIG_SITE;; *) ac_site_file1=./$CONFIG_SITE;; esac elif test "x$prefix" != xNONE; then ac_site_file1=$prefix/share/config.site ac_site_file2=$prefix/etc/config.site else ac_site_file1=$ac_default_prefix/share/config.site ac_site_file2=$ac_default_prefix/etc/config.site fi for ac_site_file in "$ac_site_file1" "$ac_site_file2" do test "x$ac_site_file" = xNONE && continue if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 $as_echo "$as_me: loading site script $ac_site_file" >&6;} sed 's/^/| /' "$ac_site_file" >&5 . "$ac_site_file" \ || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "failed to load site script $ac_site_file See \`config.log' for more details" "$LINENO" 5; } fi done if test -r "$cache_file"; then # Some versions of bash will fail to source /dev/null (special files # actually), so we avoid doing that. DJGPP emulates it as a regular file. if test /dev/null != "$cache_file" && test -f "$cache_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 $as_echo "$as_me: loading cache $cache_file" >&6;} case $cache_file in [\\/]* | ?:[\\/]* ) . "$cache_file";; *) . "./$cache_file";; esac fi else { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 $as_echo "$as_me: creating cache $cache_file" >&6;} >$cache_file fi # Check that the precious variables saved in the cache have kept the same # value. ac_cache_corrupted=false for ac_var in $ac_precious_vars; do eval ac_old_set=\$ac_cv_env_${ac_var}_set eval ac_new_set=\$ac_env_${ac_var}_set eval ac_old_val=\$ac_cv_env_${ac_var}_value eval ac_new_val=\$ac_env_${ac_var}_value case $ac_old_set,$ac_new_set in set,) { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 $as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} ac_cache_corrupted=: ;; ,set) { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5 $as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} ac_cache_corrupted=: ;; ,);; *) if test "x$ac_old_val" != "x$ac_new_val"; then # differences in whitespace do not lead to failure. ac_old_val_w=`echo x $ac_old_val` ac_new_val_w=`echo x $ac_new_val` if test "$ac_old_val_w" != "$ac_new_val_w"; then { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 $as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} ac_cache_corrupted=: else { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 $as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} eval $ac_var=\$ac_old_val fi { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 $as_echo "$as_me: former value: \`$ac_old_val'" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 $as_echo "$as_me: current value: \`$ac_new_val'" >&2;} fi;; esac # Pass precious variables to config.status. if test "$ac_new_set" = set; then case $ac_new_val in *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; *) ac_arg=$ac_var=$ac_new_val ;; esac case " $ac_configure_args " in *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. *) as_fn_append ac_configure_args " '$ac_arg'" ;; esac fi done if $ac_cache_corrupted; then { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 $as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 fi ## -------------------- ## ## Main body of script. ## ## -------------------- ## ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu am__api_version='1.14' ac_aux_dir= for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do if test -f "$ac_dir/install-sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install-sh -c" break elif test -f "$ac_dir/install.sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install.sh -c" break elif test -f "$ac_dir/shtool"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/shtool install -c" break fi done if test -z "$ac_aux_dir"; then as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5 fi # These three variables are undocumented and unsupported, # and are intended to be withdrawn in a future Autoconf release. # They can cause serious problems if a builder's source tree is in a directory # whose full name contains unusual characters. ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. # Find a good install program. We prefer a C program (faster), # so one script is as good as another. But avoid the broken or # incompatible versions: # SysV /etc/install, /usr/sbin/install # SunOS /usr/etc/install # IRIX /sbin/install # AIX /bin/install # AmigaOS /C/install, which installs bootblocks on floppy discs # AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag # AFS /usr/afsws/bin/install, which mishandles nonexistent args # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" # OS/2's system install, which has a completely different semantic # ./install, which can be erroneously created by make from ./install.sh. # Reject install programs that cannot install multiple files. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 $as_echo_n "checking for a BSD-compatible install... " >&6; } if test -z "$INSTALL"; then if ${ac_cv_path_install+:} false; then : $as_echo_n "(cached) " >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. # Account for people who put trailing slashes in PATH elements. case $as_dir/ in #(( ./ | .// | /[cC]/* | \ /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \ /usr/ucb/* ) ;; *) # OSF1 and SCO ODT 3.0 have their own names for install. # Don't use installbsd from OSF since it installs stuff as root # by default. for ac_prog in ginstall scoinst install; do for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then if test $ac_prog = install && grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # AIX install. It has an incompatible calling convention. : elif test $ac_prog = install && grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # program-specific install script used by HP pwplus--don't use. : else rm -rf conftest.one conftest.two conftest.dir echo one > conftest.one echo two > conftest.two mkdir conftest.dir if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && test -s conftest.one && test -s conftest.two && test -s conftest.dir/conftest.one && test -s conftest.dir/conftest.two then ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" break 3 fi fi fi done done ;; esac done IFS=$as_save_IFS rm -rf conftest.one conftest.two conftest.dir fi if test "${ac_cv_path_install+set}" = set; then INSTALL=$ac_cv_path_install else # As a last resort, use the slow shell script. Don't cache a # value for INSTALL within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. INSTALL=$ac_install_sh fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 $as_echo "$INSTALL" >&6; } # Use test -z because SunOS4 sh mishandles braces in ${var-val}. # It thinks the first close brace ends the variable substitution. test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 $as_echo_n "checking whether build environment is sane... " >&6; } # 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 ( am_has_slept=no for am_try in 1 2; do echo "timestamp, slept: $am_has_slept" > conftest.file 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 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 if test "$2" = conftest.file || test $am_try -eq 2; then break fi # Just in case. sleep 1 am_has_slept=yes done 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; } # If we didn't sleep, we still need to ensure time stamps of config.status and # generated files are strictly newer. am_sleep_pid= if grep 'slept: no' conftest.file >/dev/null 2>&1; then ( sleep 1 ) & am_sleep_pid=$! fi rm -f conftest.file 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 --is-lightweight"; then am_missing_run="$MISSING " 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 as_fn_executable_p "$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 as_fn_executable_p "$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 as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( 'mkdir (GNU coreutils) '* | \ 'mkdir (coreutils) '* | \ 'mkdir (fileutils) '4.1*) ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext break 3;; esac done done done IFS=$as_save_IFS fi test -d ./--version && rmdir ./--version if test "${ac_cv_path_mkdir+set}" = set; then MKDIR_P="$ac_cv_path_mkdir -p" else # As a last resort, use the slow shell script. Don't cache a # value for MKDIR_P within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. MKDIR_P="$ac_install_sh -d" fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5 $as_echo "$MKDIR_P" >&6; } 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 as_fn_executable_p "$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 # 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=1;; esac am_make=${MAKE-make} { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5 $as_echo_n "checking whether $am_make supports nested variables... " >&6; } if ${am_cv_make_support_nested_variables+:} false; then : $as_echo_n "(cached) " >&6 else if $as_echo 'TRUE=$(BAR$(V)) BAR0=false BAR1=true V=1 am__doit: @$(TRUE) .PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then am_cv_make_support_nested_variables=yes else am_cv_make_support_nested_variables=no fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5 $as_echo "$am_cv_make_support_nested_variables" >&6; } if test $am_cv_make_support_nested_variables = yes; then AM_V='$(V)' AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' else AM_V=$AM_DEFAULT_VERBOSITY AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY fi AM_BACKSLASH='\' 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='gtg' VERSION='0.2-2' 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"} # For better backward compatibility. To be removed once Automake 1.9.x # dies out for good. For more background, see: # # mkdir_p='$(MKDIR_P)' # We need awk for the "check" target. The system "awk" is bad on # some platforms. # Always define AMTAR for backward compatibility. Yes, it's still used # in the wild :-( We should find a proper way to deprecate it ... AMTAR='$${TAR-tar}' # We'll loop over all known methods to create a tar archive until one works. _am_tools='gnutar pax cpio none' am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -' # POSIX will say in a future version that running "rm -f" with no argument # is OK; and we want to be able to make that assumption in our Makefile # recipes. So use an aggressive probe to check that the usage we want is # actually supported "in the wild" to an acceptable degree. # See automake bug#10828. # To make any issue more visible, cause the running configure to be aborted # by default if the 'rm' program in use doesn't match our expectations; the # user can still override this though. if rm -f && rm -fr && rm -rf; then : OK; else cat >&2 <<'END' Oops! Your 'rm' program seems unable to run without file operands specified on the command line, even when the '-f' option is present. This is contrary to the behaviour of most rm programs out there, and not conforming with the upcoming POSIX standard: Please tell bug-automake@gnu.org about your system, including the value of your $PATH and any error possibly output before this message. This can help us improve future automake versions. END if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then echo 'Configuration will proceed anyway, since you have set the' >&2 echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2 echo >&2 else cat >&2 <<'END' Aborting the configuration process, to ensure you take notice of the issue. You can download and install GNU coreutils to get an 'rm' implementation that behaves properly: . If you want to complete the configuration process using your problematic 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM to "yes", and re-run configure. END as_fn_error $? "Your 'rm' program is bad, sorry." "$LINENO" 5 fi fi # Checks for programs. 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 as_fn_executable_p "$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 as_fn_executable_p "$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 as_fn_executable_p "$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 as_fn_executable_p "$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 as_fn_executable_p "$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 as_fn_executable_p "$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 struct stat; /* 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 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 whether $CC understands -c and -o together" >&5 $as_echo_n "checking whether $CC understands -c and -o together... " >&6; } if ${am_cv_prog_cc_c_o+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF # Make sure it works both with $CC and with simple cc. # Following AC_PROG_CC_C_O, we do the test twice because some # compilers refuse to overwrite an existing .o file with -o, # though they will create one. am_cv_prog_cc_c_o=yes for am_i in 1 2; do if { echo "$as_me:$LINENO: $CC -c conftest.$ac_ext -o conftest2.$ac_objext" >&5 ($CC -c conftest.$ac_ext -o conftest2.$ac_objext) >&5 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } \ && test -f conftest2.$ac_objext; then : OK else am_cv_prog_cc_c_o=no break fi done rm -f core conftest* unset am_i fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_cc_c_o" >&5 $as_echo "$am_cv_prog_cc_c_o" >&6; } if test "$am_cv_prog_cc_c_o" != yes; then # Losing compiler, so override with the script. # FIXME: It is wrong to rewrite CC. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__CC in this case, # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" CC="$am_aux_dir/compile $CC" 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 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='\' am__nodep='_no' fi if test "x$enable_dependency_tracking" != xno; then AMDEP_TRUE= AMDEP_FALSE='#' else AMDEP_TRUE='#' AMDEP_FALSE= fi 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". rm -rf conftest.dir 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 10 /bin/sh. echo '/* dummy */' > 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 ;; msvc7 | msvc7msys | 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 ac_ext=f ac_compile='$F77 -c $FFLAGS conftest.$ac_ext >&5' ac_link='$F77 -o conftest$ac_exeext $FFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_f77_compiler_gnu if test -n "$ac_tool_prefix"; then for ac_prog in g77 xlf f77 frt pgf77 cf77 fort77 fl32 af77 xlf90 f90 pgf90 pghpf epcf90 gfortran g95 xlf95 f95 fort ifort ifc efc pgfortran pgf95 lf95 ftn nagfor 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_F77+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$F77"; then ac_cv_prog_F77="$F77" # 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 as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_F77="$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 F77=$ac_cv_prog_F77 if test -n "$F77"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $F77" >&5 $as_echo "$F77" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$F77" && break done fi if test -z "$F77"; then ac_ct_F77=$F77 for ac_prog in g77 xlf f77 frt pgf77 cf77 fort77 fl32 af77 xlf90 f90 pgf90 pghpf epcf90 gfortran g95 xlf95 f95 fort ifort ifc efc pgfortran pgf95 lf95 ftn nagfor 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_F77+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_F77"; then ac_cv_prog_ac_ct_F77="$ac_ct_F77" # 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 as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_F77="$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_F77=$ac_cv_prog_ac_ct_F77 if test -n "$ac_ct_F77"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_F77" >&5 $as_echo "$ac_ct_F77" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_F77" && break done if test "x$ac_ct_F77" = x; then F77="" 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 F77=$ac_ct_F77 fi fi # Provide some information about the compiler. $as_echo "$as_me:${as_lineno-$LINENO}: checking for Fortran 77 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 rm -f a.out # If we don't use `.F' as extension, the preprocessor is not run on the # input file. (Note that this only needs to work for GNU compilers.) ac_save_ext=$ac_ext ac_ext=F { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU Fortran 77 compiler" >&5 $as_echo_n "checking whether we are using the GNU Fortran 77 compiler... " >&6; } if ${ac_cv_f77_compiler_gnu+:} false; then : $as_echo_n "(cached) " >&6 else cat > conftest.$ac_ext <<_ACEOF program main #ifndef __GNUC__ choke me #endif end _ACEOF if ac_fn_f77_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_f77_compiler_gnu=$ac_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_f77_compiler_gnu" >&5 $as_echo "$ac_cv_f77_compiler_gnu" >&6; } ac_ext=$ac_save_ext ac_test_FFLAGS=${FFLAGS+set} ac_save_FFLAGS=$FFLAGS FFLAGS= { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $F77 accepts -g" >&5 $as_echo_n "checking whether $F77 accepts -g... " >&6; } if ${ac_cv_prog_f77_g+:} false; then : $as_echo_n "(cached) " >&6 else FFLAGS=-g cat > conftest.$ac_ext <<_ACEOF program main end _ACEOF if ac_fn_f77_try_compile "$LINENO"; then : ac_cv_prog_f77_g=yes else ac_cv_prog_f77_g=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_f77_g" >&5 $as_echo "$ac_cv_prog_f77_g" >&6; } if test "$ac_test_FFLAGS" = set; then FFLAGS=$ac_save_FFLAGS elif test $ac_cv_prog_f77_g = yes; then if test "x$ac_cv_f77_compiler_gnu" = xyes; then FFLAGS="-g -O2" else FFLAGS="-g" fi else if test "x$ac_cv_f77_compiler_gnu" = xyes; then FFLAGS="-O2" else FFLAGS= fi fi if test $ac_compiler_gnu = yes; then G77=yes else G77= 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 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 case `pwd` in *\ * | *\ *) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&5 $as_echo "$as_me: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&2;} ;; esac macro_version='2.4.2' macro_revision='1.3337' ltmain="$ac_aux_dir/ltmain.sh" # 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 # Backslashify metacharacters that are still active within # double-quoted strings. sed_quote_subst='s/\(["`$\\]\)/\\\1/g' # Same as above, but do not quote variable references. double_quote_subst='s/\(["`\\]\)/\\\1/g' # Sed substitution to delay expansion of an escaped shell variable in a # double_quote_subst'ed string. delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' # Sed substitution to delay expansion of an escaped single quote. delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g' # Sed substitution to avoid accidental globbing in evaled expressions no_glob_subst='s/\*/\\\*/g' ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to print strings" >&5 $as_echo_n "checking how to print strings... " >&6; } # Test print first, because it will be a builtin if present. if test "X`( print -r -- -n ) 2>/dev/null`" = X-n && \ test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then ECHO='print -r --' elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then ECHO='printf %s\n' else # Use this function as a fallback that always works. func_fallback_echo () { eval 'cat <<_LTECHO_EOF $1 _LTECHO_EOF' } ECHO='func_fallback_echo' fi # func_echo_all arg... # Invoke $ECHO with all args, space-separated. func_echo_all () { $ECHO "" } case "$ECHO" in printf*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: printf" >&5 $as_echo "printf" >&6; } ;; print*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: print -r" >&5 $as_echo "print -r" >&6; } ;; *) { $as_echo "$as_me:${as_lineno-$LINENO}: result: cat" >&5 $as_echo "cat" >&6; } ;; 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" as_fn_executable_p "$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 test -z "$SED" && SED=sed Xsed="$SED -e 1s/^X//" { $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" as_fn_executable_p "$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" as_fn_executable_p "$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 fgrep" >&5 $as_echo_n "checking for fgrep... " >&6; } if ${ac_cv_path_FGREP+:} false; then : $as_echo_n "(cached) " >&6 else if echo 'ab*c' | $GREP -F 'ab*c' >/dev/null 2>&1 then ac_cv_path_FGREP="$GREP -F" else if test -z "$FGREP"; then ac_path_FGREP_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 fgrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_FGREP="$as_dir/$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_FGREP" || continue # Check for GNU ac_path_FGREP and select it if it is found. # Check for GNU $ac_path_FGREP case `"$ac_path_FGREP" --version 2>&1` in *GNU*) ac_cv_path_FGREP="$ac_path_FGREP" ac_path_FGREP_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 'FGREP' >> "conftest.nl" "$ac_path_FGREP" FGREP < "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_FGREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_FGREP="$ac_path_FGREP" ac_path_FGREP_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_FGREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_FGREP"; then as_fn_error $? "no acceptable fgrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_FGREP=$FGREP fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_FGREP" >&5 $as_echo "$ac_cv_path_FGREP" >&6; } FGREP="$ac_cv_path_FGREP" test -z "$GREP" && GREP=grep # Check whether --with-gnu-ld was given. if test "${with_gnu_ld+set}" = set; then : withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes else with_gnu_ld=no fi ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 $as_echo_n "checking for ld used by $CC... " >&6; } case $host in *-*-mingw*) # gcc leaves a trailing carriage return which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [\\/]* | ?:[\\/]*) re_direlt='/[^/][^/]*/\.\./' # Canonicalize the pathname of ld ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` done test -z "$LD" && LD="$ac_prog" ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test "$with_gnu_ld" = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 $as_echo_n "checking for GNU ld... " >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 $as_echo_n "checking for non-GNU ld... " >&6; } fi if ${lt_cv_path_LD+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$LD"; then lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then lt_cv_path_LD="$ac_dir/$ac_prog" # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 &5 $as_echo "$LD" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 $as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } if ${lt_cv_prog_gnu_ld+:} false; then : $as_echo_n "(cached) " >&6 else # I'd rather use --version here, but apparently some GNU lds only accept -v. case `$LD -v 2>&1 &5 $as_echo "$lt_cv_prog_gnu_ld" >&6; } with_gnu_ld=$lt_cv_prog_gnu_ld { $as_echo "$as_me:${as_lineno-$LINENO}: checking for BSD- or MS-compatible name lister (nm)" >&5 $as_echo_n "checking for BSD- or MS-compatible name lister (nm)... " >&6; } if ${lt_cv_path_NM+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$NM"; then # Let the user override the test. lt_cv_path_NM="$NM" else lt_nm_to_check="${ac_tool_prefix}nm" if test -n "$ac_tool_prefix" && test "$build" = "$host"; then lt_nm_to_check="$lt_nm_to_check nm" fi for lt_tmp_nm in $lt_nm_to_check; do lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. tmp_nm="$ac_dir/$lt_tmp_nm" if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then # Check to see if the nm accepts a BSD-compat flag. # Adding the `sed 1q' prevents false positives on HP-UX, which says: # nm: unknown option "B" ignored # Tru64's nm complains that /dev/null is an invalid object file case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in */dev/null* | *'Invalid file or object type'*) lt_cv_path_NM="$tmp_nm -B" break ;; *) case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in */dev/null*) lt_cv_path_NM="$tmp_nm -p" break ;; *) lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but continue # so that we can try to find one that supports BSD flags ;; esac ;; esac fi done IFS="$lt_save_ifs" done : ${lt_cv_path_NM=no} fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_NM" >&5 $as_echo "$lt_cv_path_NM" >&6; } if test "$lt_cv_path_NM" != "no"; then NM="$lt_cv_path_NM" else # Didn't find any BSD compatible name lister, look for dumpbin. if test -n "$DUMPBIN"; then : # Let the user override the test. else if test -n "$ac_tool_prefix"; then for ac_prog in dumpbin "link -dump" 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_DUMPBIN+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$DUMPBIN"; then ac_cv_prog_DUMPBIN="$DUMPBIN" # 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 as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_DUMPBIN="$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 DUMPBIN=$ac_cv_prog_DUMPBIN if test -n "$DUMPBIN"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DUMPBIN" >&5 $as_echo "$DUMPBIN" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$DUMPBIN" && break done fi if test -z "$DUMPBIN"; then ac_ct_DUMPBIN=$DUMPBIN for ac_prog in dumpbin "link -dump" 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_DUMPBIN+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_DUMPBIN"; then ac_cv_prog_ac_ct_DUMPBIN="$ac_ct_DUMPBIN" # 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 as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_DUMPBIN="$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_DUMPBIN=$ac_cv_prog_ac_ct_DUMPBIN if test -n "$ac_ct_DUMPBIN"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DUMPBIN" >&5 $as_echo "$ac_ct_DUMPBIN" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_DUMPBIN" && break done if test "x$ac_ct_DUMPBIN" = x; then DUMPBIN=":" 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 DUMPBIN=$ac_ct_DUMPBIN fi fi case `$DUMPBIN -symbols /dev/null 2>&1 | sed '1q'` in *COFF*) DUMPBIN="$DUMPBIN -symbols" ;; *) DUMPBIN=: ;; esac fi if test "$DUMPBIN" != ":"; then NM="$DUMPBIN" fi fi test -z "$NM" && NM=nm { $as_echo "$as_me:${as_lineno-$LINENO}: checking the name lister ($NM) interface" >&5 $as_echo_n "checking the name lister ($NM) interface... " >&6; } if ${lt_cv_nm_interface+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_nm_interface="BSD nm" echo "int some_variable = 0;" > conftest.$ac_ext (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&5) (eval "$ac_compile" 2>conftest.err) cat conftest.err >&5 (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&5) (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) cat conftest.err >&5 (eval echo "\"\$as_me:$LINENO: output\"" >&5) cat conftest.out >&5 if $GREP 'External.*some_variable' conftest.out > /dev/null; then lt_cv_nm_interface="MS dumpbin" fi rm -f conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_nm_interface" >&5 $as_echo "$lt_cv_nm_interface" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ln -s works" >&5 $as_echo_n "checking whether ln -s works... " >&6; } LN_S=$as_ln_s if test "$LN_S" = "ln -s"; 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, using $LN_S" >&5 $as_echo "no, using $LN_S" >&6; } fi # find the maximum length of command line arguments { $as_echo "$as_me:${as_lineno-$LINENO}: checking the maximum length of command line arguments" >&5 $as_echo_n "checking the maximum length of command line arguments... " >&6; } if ${lt_cv_sys_max_cmd_len+:} false; then : $as_echo_n "(cached) " >&6 else i=0 teststring="ABCD" case $build_os in msdosdjgpp*) # On DJGPP, this test can blow up pretty badly due to problems in libc # (any single argument exceeding 2000 bytes causes a buffer overrun # during glob expansion). Even if it were fixed, the result of this # check would be larger than it should be. lt_cv_sys_max_cmd_len=12288; # 12K is about right ;; gnu*) # Under GNU Hurd, this test is not required because there is # no limit to the length of command line arguments. # Libtool will interpret -1 as no limit whatsoever lt_cv_sys_max_cmd_len=-1; ;; cygwin* | mingw* | cegcc*) # On Win9x/ME, this test blows up -- it succeeds, but takes # about 5 minutes as the teststring grows exponentially. # Worse, since 9x/ME are not pre-emptively multitasking, # you end up with a "frozen" computer, even though with patience # the test eventually succeeds (with a max line length of 256k). # Instead, let's just punt: use the minimum linelength reported by # all of the supported platforms: 8192 (on NT/2K/XP). lt_cv_sys_max_cmd_len=8192; ;; mint*) # On MiNT this can take a long time and run out of memory. lt_cv_sys_max_cmd_len=8192; ;; amigaos*) # On AmigaOS with pdksh, this test takes hours, literally. # So we just punt and use a minimum line length of 8192. lt_cv_sys_max_cmd_len=8192; ;; netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) # This has been around since 386BSD, at least. Likely further. if test -x /sbin/sysctl; then lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` elif test -x /usr/sbin/sysctl; then lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` else lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs fi # And add a safety zone lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` ;; interix*) # We know the value 262144 and hardcode it with a safety zone (like BSD) lt_cv_sys_max_cmd_len=196608 ;; os2*) # The test takes a long time on OS/2. lt_cv_sys_max_cmd_len=8192 ;; osf*) # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not # nice to cause kernel panics so lets avoid the loop below. # First set a reasonable default. lt_cv_sys_max_cmd_len=16384 # if test -x /sbin/sysconfig; then case `/sbin/sysconfig -q proc exec_disable_arg_limit` in *1*) lt_cv_sys_max_cmd_len=-1 ;; esac fi ;; sco3.2v5*) lt_cv_sys_max_cmd_len=102400 ;; sysv5* | sco5v6* | sysv4.2uw2*) kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` if test -n "$kargmax"; then lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[ ]//'` else lt_cv_sys_max_cmd_len=32768 fi ;; *) lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` if test -n "$lt_cv_sys_max_cmd_len" && \ test undefined != "$lt_cv_sys_max_cmd_len"; then lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` else # Make teststring a little bigger before we do anything with it. # a 1K string should be a reasonable start. for i in 1 2 3 4 5 6 7 8 ; do teststring=$teststring$teststring done SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} # If test is not a shell built-in, we'll probably end up computing a # maximum length that is only half of the actual maximum length, but # we can't tell. while { test "X"`env echo "$teststring$teststring" 2>/dev/null` \ = "X$teststring$teststring"; } >/dev/null 2>&1 && test $i != 17 # 1/2 MB should be enough do i=`expr $i + 1` teststring=$teststring$teststring done # Only check the string length outside the loop. lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` teststring= # Add a significant safety factor because C++ compilers can tack on # massive amounts of additional arguments before passing them to the # linker. It appears as though 1/2 is a usable value. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` fi ;; esac fi if test -n $lt_cv_sys_max_cmd_len ; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_sys_max_cmd_len" >&5 $as_echo "$lt_cv_sys_max_cmd_len" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: none" >&5 $as_echo "none" >&6; } fi max_cmd_len=$lt_cv_sys_max_cmd_len : ${CP="cp -f"} : ${MV="mv -f"} : ${RM="rm -f"} { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the shell understands some XSI constructs" >&5 $as_echo_n "checking whether the shell understands some XSI constructs... " >&6; } # Try some XSI features xsi_shell=no ( _lt_dummy="a/b/c" test "${_lt_dummy##*/},${_lt_dummy%/*},${_lt_dummy#??}"${_lt_dummy%"$_lt_dummy"}, \ = c,a/b,b/c, \ && eval 'test $(( 1 + 1 )) -eq 2 \ && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \ && xsi_shell=yes { $as_echo "$as_me:${as_lineno-$LINENO}: result: $xsi_shell" >&5 $as_echo "$xsi_shell" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the shell understands \"+=\"" >&5 $as_echo_n "checking whether the shell understands \"+=\"... " >&6; } lt_shell_append=no ( foo=bar; set foo baz; eval "$1+=\$2" && test "$foo" = barbaz ) \ >/dev/null 2>&1 \ && lt_shell_append=yes { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_shell_append" >&5 $as_echo "$lt_shell_append" >&6; } if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then lt_unset=unset else lt_unset=false fi # test EBCDIC or ASCII case `echo X|tr X '\101'` in A) # ASCII based system # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr lt_SP2NL='tr \040 \012' lt_NL2SP='tr \015\012 \040\040' ;; *) # EBCDIC based system lt_SP2NL='tr \100 \n' lt_NL2SP='tr \r\n \100\100' ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to convert $build file names to $host format" >&5 $as_echo_n "checking how to convert $build file names to $host format... " >&6; } if ${lt_cv_to_host_file_cmd+:} false; then : $as_echo_n "(cached) " >&6 else case $host in *-*-mingw* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_host_file_cmd=func_convert_file_msys_to_w32 ;; *-*-cygwin* ) lt_cv_to_host_file_cmd=func_convert_file_cygwin_to_w32 ;; * ) # otherwise, assume *nix lt_cv_to_host_file_cmd=func_convert_file_nix_to_w32 ;; esac ;; *-*-cygwin* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_host_file_cmd=func_convert_file_msys_to_cygwin ;; *-*-cygwin* ) lt_cv_to_host_file_cmd=func_convert_file_noop ;; * ) # otherwise, assume *nix lt_cv_to_host_file_cmd=func_convert_file_nix_to_cygwin ;; esac ;; * ) # unhandled hosts (and "normal" native builds) lt_cv_to_host_file_cmd=func_convert_file_noop ;; esac fi to_host_file_cmd=$lt_cv_to_host_file_cmd { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_to_host_file_cmd" >&5 $as_echo "$lt_cv_to_host_file_cmd" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to convert $build file names to toolchain format" >&5 $as_echo_n "checking how to convert $build file names to toolchain format... " >&6; } if ${lt_cv_to_tool_file_cmd+:} false; then : $as_echo_n "(cached) " >&6 else #assume ordinary cross tools, or native build. lt_cv_to_tool_file_cmd=func_convert_file_noop case $host in *-*-mingw* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_tool_file_cmd=func_convert_file_msys_to_w32 ;; esac ;; esac fi to_tool_file_cmd=$lt_cv_to_tool_file_cmd { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_to_tool_file_cmd" >&5 $as_echo "$lt_cv_to_tool_file_cmd" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $LD option to reload object files" >&5 $as_echo_n "checking for $LD option to reload object files... " >&6; } if ${lt_cv_ld_reload_flag+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_ld_reload_flag='-r' fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_reload_flag" >&5 $as_echo "$lt_cv_ld_reload_flag" >&6; } reload_flag=$lt_cv_ld_reload_flag case $reload_flag in "" | " "*) ;; *) reload_flag=" $reload_flag" ;; esac reload_cmds='$LD$reload_flag -o $output$reload_objs' case $host_os in cygwin* | mingw* | pw32* | cegcc*) if test "$GCC" != yes; then reload_cmds=false fi ;; darwin*) if test "$GCC" = yes; then reload_cmds='$LTCC $LTCFLAGS -nostdlib ${wl}-r -o $output$reload_objs' else reload_cmds='$LD$reload_flag -o $output$reload_objs' fi ;; esac if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}objdump", so it can be a program name with args. set dummy ${ac_tool_prefix}objdump; 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_OBJDUMP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$OBJDUMP"; then ac_cv_prog_OBJDUMP="$OBJDUMP" # 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 as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_OBJDUMP="${ac_tool_prefix}objdump" $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 OBJDUMP=$ac_cv_prog_OBJDUMP if test -n "$OBJDUMP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OBJDUMP" >&5 $as_echo "$OBJDUMP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_OBJDUMP"; then ac_ct_OBJDUMP=$OBJDUMP # Extract the first word of "objdump", so it can be a program name with args. set dummy objdump; 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_OBJDUMP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_OBJDUMP"; then ac_cv_prog_ac_ct_OBJDUMP="$ac_ct_OBJDUMP" # 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 as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_OBJDUMP="objdump" $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_OBJDUMP=$ac_cv_prog_ac_ct_OBJDUMP if test -n "$ac_ct_OBJDUMP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OBJDUMP" >&5 $as_echo "$ac_ct_OBJDUMP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_OBJDUMP" = x; then OBJDUMP="false" 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 OBJDUMP=$ac_ct_OBJDUMP fi else OBJDUMP="$ac_cv_prog_OBJDUMP" fi test -z "$OBJDUMP" && OBJDUMP=objdump { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to recognize dependent libraries" >&5 $as_echo_n "checking how to recognize dependent libraries... " >&6; } if ${lt_cv_deplibs_check_method+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_file_magic_cmd='$MAGIC_CMD' lt_cv_file_magic_test_file= lt_cv_deplibs_check_method='unknown' # Need to set the preceding variable on all platforms that support # interlibrary dependencies. # 'none' -- dependencies not supported. # `unknown' -- same as none, but documents that we really don't know. # 'pass_all' -- all dependencies passed with no checks. # 'test_compile' -- check by making test program. # 'file_magic [[regex]]' -- check by looking for files in library path # which responds to the $file_magic_cmd with a given extended regex. # If you have `file' or equivalent on your system and you're not sure # whether `pass_all' will *always* work, you probably want this one. case $host_os in aix[4-9]*) lt_cv_deplibs_check_method=pass_all ;; beos*) lt_cv_deplibs_check_method=pass_all ;; bsdi[45]*) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib)' lt_cv_file_magic_cmd='/usr/bin/file -L' lt_cv_file_magic_test_file=/shlib/libc.so ;; cygwin*) # func_win32_libid is a shell function defined in ltmain.sh lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' ;; mingw* | pw32*) # Base MSYS/MinGW do not provide the 'file' command needed by # func_win32_libid shell function, so use a weaker test based on 'objdump', # unless we find 'file', for example because we are cross-compiling. # func_win32_libid assumes BSD nm, so disallow it if using MS dumpbin. if ( test "$lt_cv_nm_interface" = "BSD nm" && file / ) >/dev/null 2>&1; then lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' else # Keep this pattern in sync with the one in func_win32_libid. lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' lt_cv_file_magic_cmd='$OBJDUMP -f' fi ;; cegcc*) # use the weaker test based on 'objdump'. See mingw*. lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?' lt_cv_file_magic_cmd='$OBJDUMP -f' ;; darwin* | rhapsody*) lt_cv_deplibs_check_method=pass_all ;; freebsd* | dragonfly*) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then case $host_cpu in i*86 ) # Not sure whether the presence of OpenBSD here was a mistake. # Let's accept both of them until this is cleared up. lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[3-9]86 (compact )?demand paged shared library' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` ;; esac else lt_cv_deplibs_check_method=pass_all fi ;; haiku*) lt_cv_deplibs_check_method=pass_all ;; hpux10.20* | hpux11*) lt_cv_file_magic_cmd=/usr/bin/file case $host_cpu in ia64*) lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - IA64' lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so ;; hppa*64*) lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF[ -][0-9][0-9])(-bit)?( [LM]SB)? shared object( file)?[, -]* PA-RISC [0-9]\.[0-9]' lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl ;; *) lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|PA-RISC[0-9]\.[0-9]) shared library' lt_cv_file_magic_test_file=/usr/lib/libc.sl ;; esac ;; interix[3-9]*) # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|\.a)$' ;; irix5* | irix6* | nonstopux*) case $LD in *-32|*"-32 ") libmagic=32-bit;; *-n32|*"-n32 ") libmagic=N32;; *-64|*"-64 ") libmagic=64-bit;; *) libmagic=never-match;; esac lt_cv_deplibs_check_method=pass_all ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) lt_cv_deplibs_check_method=pass_all ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|_pic\.a)$' fi ;; newos6*) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (executable|dynamic lib)' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=/usr/lib/libnls.so ;; *nto* | *qnx*) lt_cv_deplibs_check_method=pass_all ;; openbsd*) if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|\.so|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' fi ;; osf3* | osf4* | osf5*) lt_cv_deplibs_check_method=pass_all ;; rdos*) lt_cv_deplibs_check_method=pass_all ;; solaris*) lt_cv_deplibs_check_method=pass_all ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) lt_cv_deplibs_check_method=pass_all ;; sysv4 | sysv4.3*) case $host_vendor in motorola) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib) M[0-9][0-9]* Version [0-9]' lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` ;; ncr) lt_cv_deplibs_check_method=pass_all ;; sequent) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB (shared object|dynamic lib )' ;; sni) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method="file_magic ELF [0-9][0-9]*-bit [LM]SB dynamic lib" lt_cv_file_magic_test_file=/lib/libc.so ;; siemens) lt_cv_deplibs_check_method=pass_all ;; pc) lt_cv_deplibs_check_method=pass_all ;; esac ;; tpf*) lt_cv_deplibs_check_method=pass_all ;; esac fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_deplibs_check_method" >&5 $as_echo "$lt_cv_deplibs_check_method" >&6; } file_magic_glob= want_nocaseglob=no if test "$build" = "$host"; then case $host_os in mingw* | pw32*) if ( shopt | grep nocaseglob ) >/dev/null 2>&1; then want_nocaseglob=yes else file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e "s/\(..\)/s\/[\1]\/[\1]\/g;/g"` fi ;; esac fi file_magic_cmd=$lt_cv_file_magic_cmd deplibs_check_method=$lt_cv_deplibs_check_method test -z "$deplibs_check_method" && deplibs_check_method=unknown if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}dlltool", so it can be a program name with args. set dummy ${ac_tool_prefix}dlltool; 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_DLLTOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$DLLTOOL"; then ac_cv_prog_DLLTOOL="$DLLTOOL" # 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 as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_DLLTOOL="${ac_tool_prefix}dlltool" $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 DLLTOOL=$ac_cv_prog_DLLTOOL if test -n "$DLLTOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DLLTOOL" >&5 $as_echo "$DLLTOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_DLLTOOL"; then ac_ct_DLLTOOL=$DLLTOOL # Extract the first word of "dlltool", so it can be a program name with args. set dummy dlltool; 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_DLLTOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_DLLTOOL"; then ac_cv_prog_ac_ct_DLLTOOL="$ac_ct_DLLTOOL" # 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 as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_DLLTOOL="dlltool" $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_DLLTOOL=$ac_cv_prog_ac_ct_DLLTOOL if test -n "$ac_ct_DLLTOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DLLTOOL" >&5 $as_echo "$ac_ct_DLLTOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_DLLTOOL" = x; then DLLTOOL="false" 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 DLLTOOL=$ac_ct_DLLTOOL fi else DLLTOOL="$ac_cv_prog_DLLTOOL" fi test -z "$DLLTOOL" && DLLTOOL=dlltool { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to associate runtime and link libraries" >&5 $as_echo_n "checking how to associate runtime and link libraries... " >&6; } if ${lt_cv_sharedlib_from_linklib_cmd+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_sharedlib_from_linklib_cmd='unknown' case $host_os in cygwin* | mingw* | pw32* | cegcc*) # two different shell functions defined in ltmain.sh # decide which to use based on capabilities of $DLLTOOL case `$DLLTOOL --help 2>&1` in *--identify-strict*) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib ;; *) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib_fallback ;; esac ;; *) # fallback: assume linklib IS sharedlib lt_cv_sharedlib_from_linklib_cmd="$ECHO" ;; esac fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_sharedlib_from_linklib_cmd" >&5 $as_echo "$lt_cv_sharedlib_from_linklib_cmd" >&6; } sharedlib_from_linklib_cmd=$lt_cv_sharedlib_from_linklib_cmd test -z "$sharedlib_from_linklib_cmd" && sharedlib_from_linklib_cmd=$ECHO if test -n "$ac_tool_prefix"; then for ac_prog in ar 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_AR+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$AR"; then ac_cv_prog_AR="$AR" # 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 as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_AR="$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 AR=$ac_cv_prog_AR if test -n "$AR"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AR" >&5 $as_echo "$AR" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$AR" && break done fi if test -z "$AR"; then ac_ct_AR=$AR for ac_prog in ar 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_AR+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_AR"; then ac_cv_prog_ac_ct_AR="$ac_ct_AR" # 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 as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_AR="$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_AR=$ac_cv_prog_ac_ct_AR if test -n "$ac_ct_AR"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR" >&5 $as_echo "$ac_ct_AR" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_AR" && break done if test "x$ac_ct_AR" = x; then AR="false" 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 AR=$ac_ct_AR fi fi : ${AR=ar} : ${AR_FLAGS=cru} { $as_echo "$as_me:${as_lineno-$LINENO}: checking for archiver @FILE support" >&5 $as_echo_n "checking for archiver @FILE support... " >&6; } if ${lt_cv_ar_at_file+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_ar_at_file=no cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : echo conftest.$ac_objext > conftest.lst lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&5' { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$lt_ar_try\""; } >&5 (eval $lt_ar_try) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if test "$ac_status" -eq 0; then # Ensure the archiver fails upon bogus file names. rm -f conftest.$ac_objext libconftest.a { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$lt_ar_try\""; } >&5 (eval $lt_ar_try) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if test "$ac_status" -ne 0; then lt_cv_ar_at_file=@ fi fi rm -f conftest.* libconftest.a fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ar_at_file" >&5 $as_echo "$lt_cv_ar_at_file" >&6; } if test "x$lt_cv_ar_at_file" = xno; then archiver_list_spec= else archiver_list_spec=$lt_cv_ar_at_file fi 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 as_fn_executable_p "$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 as_fn_executable_p "$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 test -z "$STRIP" && STRIP=: if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. set dummy ${ac_tool_prefix}ranlib; 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_RANLIB+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$RANLIB"; then ac_cv_prog_RANLIB="$RANLIB" # 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 as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" $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 RANLIB=$ac_cv_prog_RANLIB if test -n "$RANLIB"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5 $as_echo "$RANLIB" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_RANLIB"; then ac_ct_RANLIB=$RANLIB # Extract the first word of "ranlib", so it can be a program name with args. set dummy ranlib; 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_RANLIB+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_RANLIB"; then ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # 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 as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_RANLIB="ranlib" $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_RANLIB=$ac_cv_prog_ac_ct_RANLIB if test -n "$ac_ct_RANLIB"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5 $as_echo "$ac_ct_RANLIB" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_RANLIB" = x; then RANLIB=":" 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 RANLIB=$ac_ct_RANLIB fi else RANLIB="$ac_cv_prog_RANLIB" fi test -z "$RANLIB" && RANLIB=: # Determine commands to create old-style static archives. old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' old_postinstall_cmds='chmod 644 $oldlib' old_postuninstall_cmds= if test -n "$RANLIB"; then case $host_os in openbsd*) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib" ;; *) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$tool_oldlib" ;; esac old_archive_cmds="$old_archive_cmds~\$RANLIB \$tool_oldlib" fi case $host_os in darwin*) lock_old_archive_extraction=yes ;; *) lock_old_archive_extraction=no ;; esac # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # Check for command to grab the raw symbol name followed by C symbol from nm. { $as_echo "$as_me:${as_lineno-$LINENO}: checking command to parse $NM output from $compiler object" >&5 $as_echo_n "checking command to parse $NM output from $compiler object... " >&6; } if ${lt_cv_sys_global_symbol_pipe+:} false; then : $as_echo_n "(cached) " >&6 else # These are sane defaults that work on at least a few old systems. # [They come from Ultrix. What could be older than Ultrix?!! ;)] # Character class describing NM global symbol codes. symcode='[BCDEGRST]' # Regexp to match symbols that can be accessed directly from C. sympat='\([_A-Za-z][_A-Za-z0-9]*\)' # Define system-specific variables. case $host_os in aix*) symcode='[BCDT]' ;; cygwin* | mingw* | pw32* | cegcc*) symcode='[ABCDGISTW]' ;; hpux*) if test "$host_cpu" = ia64; then symcode='[ABCDEGRST]' fi ;; irix* | nonstopux*) symcode='[BCDEGRST]' ;; osf*) symcode='[BCDEGQRST]' ;; solaris*) symcode='[BDRT]' ;; sco3.2v5*) symcode='[DT]' ;; sysv4.2uw2*) symcode='[DT]' ;; sysv5* | sco5v6* | unixware* | OpenUNIX*) symcode='[ABDT]' ;; sysv4) symcode='[DFNSTU]' ;; esac # If we're using GNU nm, then use its standard symbol codes. case `$NM -V 2>&1` in *GNU* | *'with BFD'*) symcode='[ABCDGIRSTW]' ;; esac # Transform an extracted symbol line into a proper C declaration. # Some systems (esp. on ia64) link data and code symbols differently, # so use this general approach. lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" # Transform an extracted symbol line into symbol name and symbol address lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([^ ]*\)[ ]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"\2\", (void *) \&\2},/p'" lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \([^ ]*\)[ ]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([^ ]*\) \(lib[^ ]*\)$/ {\"\2\", (void *) \&\2},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"lib\2\", (void *) \&\2},/p'" # Handle CRLF in mingw tool chain opt_cr= case $build_os in mingw*) opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp ;; esac # Try without a prefix underscore, then with it. for ac_symprfx in "" "_"; do # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. symxfrm="\\1 $ac_symprfx\\2 \\2" # Write the raw and C identifiers. if test "$lt_cv_nm_interface" = "MS dumpbin"; then # Fake it for dumpbin and say T for any non-static function # and D for any global variable. # Also find C++ and __fastcall symbols from MSVC++, # which start with @ or ?. lt_cv_sys_global_symbol_pipe="$AWK '"\ " {last_section=section; section=\$ 3};"\ " /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\ " /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ " \$ 0!~/External *\|/{next};"\ " / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ " {if(hide[section]) next};"\ " {f=0}; \$ 0~/\(\).*\|/{f=1}; {printf f ? \"T \" : \"D \"};"\ " {split(\$ 0, a, /\||\r/); split(a[2], s)};"\ " s[1]~/^[@?]/{print s[1], s[1]; next};"\ " s[1]~prfx {split(s[1],t,\"@\"); print t[1], substr(t[1],length(prfx))}"\ " ' prfx=^$ac_symprfx" else lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[ ]\($symcode$symcode*\)[ ][ ]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" fi lt_cv_sys_global_symbol_pipe="$lt_cv_sys_global_symbol_pipe | sed '/ __gnu_lto/d'" # Check to see that the pipe works correctly. pipe_works=no rm -f conftest* cat > conftest.$ac_ext <<_LT_EOF #ifdef __cplusplus extern "C" { #endif char nm_test_var; void nm_test_func(void); void nm_test_func(void){} #ifdef __cplusplus } #endif int main(){nm_test_var='a';nm_test_func();return(0);} _LT_EOF if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then # Now try to grab the symbols. nlist=conftest.nm if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist\""; } >&5 (eval $NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && test -s "$nlist"; then # Try sorting and uniquifying the output. if sort "$nlist" | uniq > "$nlist"T; then mv -f "$nlist"T "$nlist" else rm -f "$nlist"T fi # Make sure that we snagged all the symbols we need. if $GREP ' nm_test_var$' "$nlist" >/dev/null; then if $GREP ' nm_test_func$' "$nlist" >/dev/null; then cat <<_LT_EOF > conftest.$ac_ext /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ #if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE) /* DATA imports from DLLs on WIN32 con't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs. */ # define LT_DLSYM_CONST #elif defined(__osf__) /* This system does not cope well with relocations in const data. */ # define LT_DLSYM_CONST #else # define LT_DLSYM_CONST const #endif #ifdef __cplusplus extern "C" { #endif _LT_EOF # Now generate the symbol file. eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext' cat <<_LT_EOF >> conftest.$ac_ext /* The mapping between symbol names and symbols. */ LT_DLSYM_CONST struct { const char *name; void *address; } lt__PROGRAM__LTX_preloaded_symbols[] = { { "@PROGRAM@", (void *) 0 }, _LT_EOF $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (void *) \&\2},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext cat <<\_LT_EOF >> conftest.$ac_ext {0, (void *) 0} }; /* This works around a problem in FreeBSD linker */ #ifdef FREEBSD_WORKAROUND static const void *lt_preloaded_setup() { return lt__PROGRAM__LTX_preloaded_symbols; } #endif #ifdef __cplusplus } #endif _LT_EOF # Now try linking the two files. mv conftest.$ac_objext conftstm.$ac_objext lt_globsym_save_LIBS=$LIBS lt_globsym_save_CFLAGS=$CFLAGS LIBS="conftstm.$ac_objext" CFLAGS="$CFLAGS$lt_prog_compiler_no_builtin_flag" if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 (eval $ac_link) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && test -s conftest${ac_exeext}; then pipe_works=yes fi LIBS=$lt_globsym_save_LIBS CFLAGS=$lt_globsym_save_CFLAGS else echo "cannot find nm_test_func in $nlist" >&5 fi else echo "cannot find nm_test_var in $nlist" >&5 fi else echo "cannot run $lt_cv_sys_global_symbol_pipe" >&5 fi else echo "$progname: failed program was:" >&5 cat conftest.$ac_ext >&5 fi rm -rf conftest* conftst* # Do not use the global_symbol_pipe unless it works. if test "$pipe_works" = yes; then break else lt_cv_sys_global_symbol_pipe= fi done fi if test -z "$lt_cv_sys_global_symbol_pipe"; then lt_cv_sys_global_symbol_to_cdecl= fi if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: failed" >&5 $as_echo "failed" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: ok" >&5 $as_echo "ok" >&6; } fi # Response file support. if test "$lt_cv_nm_interface" = "MS dumpbin"; then nm_file_list_spec='@' elif $NM --help 2>/dev/null | grep '[@]FILE' >/dev/null; then nm_file_list_spec='@' fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sysroot" >&5 $as_echo_n "checking for sysroot... " >&6; } # Check whether --with-sysroot was given. if test "${with_sysroot+set}" = set; then : withval=$with_sysroot; else with_sysroot=no fi lt_sysroot= case ${with_sysroot} in #( yes) if test "$GCC" = yes; then lt_sysroot=`$CC --print-sysroot 2>/dev/null` fi ;; #( /*) lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"` ;; #( no|'') ;; #( *) { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${with_sysroot}" >&5 $as_echo "${with_sysroot}" >&6; } as_fn_error $? "The sysroot must be an absolute path." "$LINENO" 5 ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${lt_sysroot:-no}" >&5 $as_echo "${lt_sysroot:-no}" >&6; } # Check whether --enable-libtool-lock was given. if test "${enable_libtool_lock+set}" = set; then : enableval=$enable_libtool_lock; fi test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes # Some flags need to be propagated to the compiler or linker for good # libtool support. case $host in ia64-*-hpux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then case `/usr/bin/file conftest.$ac_objext` in *ELF-32*) HPUX_IA64_MODE="32" ;; *ELF-64*) HPUX_IA64_MODE="64" ;; esac fi rm -rf conftest* ;; *-*-irix6*) # Find out which ABI we are using. echo '#line '$LINENO' "configure"' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then if test "$lt_cv_prog_gnu_ld" = yes; then case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -melf32bsmip" ;; *N32*) LD="${LD-ld} -melf32bmipn32" ;; *64-bit*) LD="${LD-ld} -melf64bmip" ;; esac else case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -32" ;; *N32*) LD="${LD-ld} -n32" ;; *64-bit*) LD="${LD-ld} -64" ;; esac fi fi rm -rf conftest* ;; x86_64-*kfreebsd*-gnu|x86_64-*linux*|powerpc*-*linux*| \ s390*-*linux*|s390*-*tpf*|sparc*-*linux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then case `/usr/bin/file conftest.o` in *32-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_i386_fbsd" ;; x86_64-*linux*) case `/usr/bin/file conftest.o` in *x86-64*) LD="${LD-ld} -m elf32_x86_64" ;; *) LD="${LD-ld} -m elf_i386" ;; esac ;; powerpc64le-*) LD="${LD-ld} -m elf32lppclinux" ;; powerpc64-*) LD="${LD-ld} -m elf32ppclinux" ;; s390x-*linux*) LD="${LD-ld} -m elf_s390" ;; sparc64-*linux*) LD="${LD-ld} -m elf32_sparc" ;; esac ;; *64-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_x86_64_fbsd" ;; x86_64-*linux*) LD="${LD-ld} -m elf_x86_64" ;; powerpcle-*) LD="${LD-ld} -m elf64lppc" ;; powerpc-*) LD="${LD-ld} -m elf64ppc" ;; s390*-*linux*|s390*-*tpf*) LD="${LD-ld} -m elf64_s390" ;; sparc*-*linux*) LD="${LD-ld} -m elf64_sparc" ;; esac ;; esac fi rm -rf conftest* ;; *-*-sco3.2v5*) # On SCO OpenServer 5, we need -belf to get full-featured binaries. SAVE_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -belf" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler needs -belf" >&5 $as_echo_n "checking whether the C compiler needs -belf... " >&6; } if ${lt_cv_cc_needs_belf+:} false; then : $as_echo_n "(cached) " >&6 else 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 cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : lt_cv_cc_needs_belf=yes else lt_cv_cc_needs_belf=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext 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 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_cc_needs_belf" >&5 $as_echo "$lt_cv_cc_needs_belf" >&6; } if test x"$lt_cv_cc_needs_belf" != x"yes"; then # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf CFLAGS="$SAVE_CFLAGS" fi ;; *-*solaris*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then case `/usr/bin/file conftest.o` in *64-bit*) case $lt_cv_prog_gnu_ld in yes*) case $host in i?86-*-solaris*) LD="${LD-ld} -m elf_x86_64" ;; sparc*-*-solaris*) LD="${LD-ld} -m elf64_sparc" ;; esac # GNU ld 2.21 introduced _sol2 emulations. Use them if available. if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then LD="${LD-ld}_sol2" fi ;; *) if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then LD="${LD-ld} -64" fi ;; esac ;; esac fi rm -rf conftest* ;; esac need_locks="$enable_libtool_lock" if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}mt", so it can be a program name with args. set dummy ${ac_tool_prefix}mt; 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_MANIFEST_TOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$MANIFEST_TOOL"; then ac_cv_prog_MANIFEST_TOOL="$MANIFEST_TOOL" # 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 as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_MANIFEST_TOOL="${ac_tool_prefix}mt" $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 MANIFEST_TOOL=$ac_cv_prog_MANIFEST_TOOL if test -n "$MANIFEST_TOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MANIFEST_TOOL" >&5 $as_echo "$MANIFEST_TOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_MANIFEST_TOOL"; then ac_ct_MANIFEST_TOOL=$MANIFEST_TOOL # Extract the first word of "mt", so it can be a program name with args. set dummy mt; 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_MANIFEST_TOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_MANIFEST_TOOL"; then ac_cv_prog_ac_ct_MANIFEST_TOOL="$ac_ct_MANIFEST_TOOL" # 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 as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_MANIFEST_TOOL="mt" $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_MANIFEST_TOOL=$ac_cv_prog_ac_ct_MANIFEST_TOOL if test -n "$ac_ct_MANIFEST_TOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_MANIFEST_TOOL" >&5 $as_echo "$ac_ct_MANIFEST_TOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_MANIFEST_TOOL" = x; then MANIFEST_TOOL=":" 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 MANIFEST_TOOL=$ac_ct_MANIFEST_TOOL fi else MANIFEST_TOOL="$ac_cv_prog_MANIFEST_TOOL" fi test -z "$MANIFEST_TOOL" && MANIFEST_TOOL=mt { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $MANIFEST_TOOL is a manifest tool" >&5 $as_echo_n "checking if $MANIFEST_TOOL is a manifest tool... " >&6; } if ${lt_cv_path_mainfest_tool+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_path_mainfest_tool=no echo "$as_me:$LINENO: $MANIFEST_TOOL '-?'" >&5 $MANIFEST_TOOL '-?' 2>conftest.err > conftest.out cat conftest.err >&5 if $GREP 'Manifest Tool' conftest.out > /dev/null; then lt_cv_path_mainfest_tool=yes fi rm -f conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_mainfest_tool" >&5 $as_echo "$lt_cv_path_mainfest_tool" >&6; } if test "x$lt_cv_path_mainfest_tool" != xyes; then MANIFEST_TOOL=: fi case $host_os in rhapsody* | darwin*) if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}dsymutil", so it can be a program name with args. set dummy ${ac_tool_prefix}dsymutil; 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_DSYMUTIL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$DSYMUTIL"; then ac_cv_prog_DSYMUTIL="$DSYMUTIL" # 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 as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_DSYMUTIL="${ac_tool_prefix}dsymutil" $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 DSYMUTIL=$ac_cv_prog_DSYMUTIL if test -n "$DSYMUTIL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DSYMUTIL" >&5 $as_echo "$DSYMUTIL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_DSYMUTIL"; then ac_ct_DSYMUTIL=$DSYMUTIL # Extract the first word of "dsymutil", so it can be a program name with args. set dummy dsymutil; 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_DSYMUTIL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_DSYMUTIL"; then ac_cv_prog_ac_ct_DSYMUTIL="$ac_ct_DSYMUTIL" # 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 as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_DSYMUTIL="dsymutil" $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_DSYMUTIL=$ac_cv_prog_ac_ct_DSYMUTIL if test -n "$ac_ct_DSYMUTIL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DSYMUTIL" >&5 $as_echo "$ac_ct_DSYMUTIL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_DSYMUTIL" = x; then DSYMUTIL=":" 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 DSYMUTIL=$ac_ct_DSYMUTIL fi else DSYMUTIL="$ac_cv_prog_DSYMUTIL" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}nmedit", so it can be a program name with args. set dummy ${ac_tool_prefix}nmedit; 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_NMEDIT+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$NMEDIT"; then ac_cv_prog_NMEDIT="$NMEDIT" # 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 as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_NMEDIT="${ac_tool_prefix}nmedit" $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 NMEDIT=$ac_cv_prog_NMEDIT if test -n "$NMEDIT"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $NMEDIT" >&5 $as_echo "$NMEDIT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_NMEDIT"; then ac_ct_NMEDIT=$NMEDIT # Extract the first word of "nmedit", so it can be a program name with args. set dummy nmedit; 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_NMEDIT+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_NMEDIT"; then ac_cv_prog_ac_ct_NMEDIT="$ac_ct_NMEDIT" # 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 as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_NMEDIT="nmedit" $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_NMEDIT=$ac_cv_prog_ac_ct_NMEDIT if test -n "$ac_ct_NMEDIT"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_NMEDIT" >&5 $as_echo "$ac_ct_NMEDIT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_NMEDIT" = x; then NMEDIT=":" 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 NMEDIT=$ac_ct_NMEDIT fi else NMEDIT="$ac_cv_prog_NMEDIT" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}lipo", so it can be a program name with args. set dummy ${ac_tool_prefix}lipo; 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_LIPO+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$LIPO"; then ac_cv_prog_LIPO="$LIPO" # 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 as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_LIPO="${ac_tool_prefix}lipo" $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 LIPO=$ac_cv_prog_LIPO if test -n "$LIPO"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIPO" >&5 $as_echo "$LIPO" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_LIPO"; then ac_ct_LIPO=$LIPO # Extract the first word of "lipo", so it can be a program name with args. set dummy lipo; 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_LIPO+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_LIPO"; then ac_cv_prog_ac_ct_LIPO="$ac_ct_LIPO" # 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 as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_LIPO="lipo" $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_LIPO=$ac_cv_prog_ac_ct_LIPO if test -n "$ac_ct_LIPO"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_LIPO" >&5 $as_echo "$ac_ct_LIPO" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_LIPO" = x; then LIPO=":" 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 LIPO=$ac_ct_LIPO fi else LIPO="$ac_cv_prog_LIPO" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}otool", so it can be a program name with args. set dummy ${ac_tool_prefix}otool; 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_OTOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$OTOOL"; then ac_cv_prog_OTOOL="$OTOOL" # 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 as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_OTOOL="${ac_tool_prefix}otool" $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 OTOOL=$ac_cv_prog_OTOOL if test -n "$OTOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL" >&5 $as_echo "$OTOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_OTOOL"; then ac_ct_OTOOL=$OTOOL # Extract the first word of "otool", so it can be a program name with args. set dummy otool; 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_OTOOL+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_OTOOL"; then ac_cv_prog_ac_ct_OTOOL="$ac_ct_OTOOL" # 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 as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_OTOOL="otool" $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_OTOOL=$ac_cv_prog_ac_ct_OTOOL if test -n "$ac_ct_OTOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL" >&5 $as_echo "$ac_ct_OTOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_OTOOL" = x; then OTOOL=":" 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 OTOOL=$ac_ct_OTOOL fi else OTOOL="$ac_cv_prog_OTOOL" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}otool64", so it can be a program name with args. set dummy ${ac_tool_prefix}otool64; 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_OTOOL64+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$OTOOL64"; then ac_cv_prog_OTOOL64="$OTOOL64" # 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 as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_OTOOL64="${ac_tool_prefix}otool64" $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 OTOOL64=$ac_cv_prog_OTOOL64 if test -n "$OTOOL64"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL64" >&5 $as_echo "$OTOOL64" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_OTOOL64"; then ac_ct_OTOOL64=$OTOOL64 # Extract the first word of "otool64", so it can be a program name with args. set dummy otool64; 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_OTOOL64+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_OTOOL64"; then ac_cv_prog_ac_ct_OTOOL64="$ac_ct_OTOOL64" # 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 as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_OTOOL64="otool64" $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_OTOOL64=$ac_cv_prog_ac_ct_OTOOL64 if test -n "$ac_ct_OTOOL64"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL64" >&5 $as_echo "$ac_ct_OTOOL64" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_OTOOL64" = x; then OTOOL64=":" 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 OTOOL64=$ac_ct_OTOOL64 fi else OTOOL64="$ac_cv_prog_OTOOL64" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -single_module linker flag" >&5 $as_echo_n "checking for -single_module linker flag... " >&6; } if ${lt_cv_apple_cc_single_mod+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_apple_cc_single_mod=no if test -z "${LT_MULTI_MODULE}"; then # By default we will add the -single_module flag. You can override # by either setting the environment variable LT_MULTI_MODULE # non-empty at configure time, or by adding -multi_module to the # link flags. rm -rf libconftest.dylib* echo "int foo(void){return 1;}" > conftest.c echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c" >&5 $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c 2>conftest.err _lt_result=$? # If there is a non-empty error log, and "single_module" # appears in it, assume the flag caused a linker warning if test -s conftest.err && $GREP single_module conftest.err; then cat conftest.err >&5 # Otherwise, if the output was created with a 0 exit code from # the compiler, it worked. elif test -f libconftest.dylib && test $_lt_result -eq 0; then lt_cv_apple_cc_single_mod=yes else cat conftest.err >&5 fi rm -rf libconftest.dylib* rm -f conftest.* fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_apple_cc_single_mod" >&5 $as_echo "$lt_cv_apple_cc_single_mod" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -exported_symbols_list linker flag" >&5 $as_echo_n "checking for -exported_symbols_list linker flag... " >&6; } if ${lt_cv_ld_exported_symbols_list+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_ld_exported_symbols_list=no save_LDFLAGS=$LDFLAGS echo "_main" > conftest.sym LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : lt_cv_ld_exported_symbols_list=yes else lt_cv_ld_exported_symbols_list=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LDFLAGS="$save_LDFLAGS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_exported_symbols_list" >&5 $as_echo "$lt_cv_ld_exported_symbols_list" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -force_load linker flag" >&5 $as_echo_n "checking for -force_load linker flag... " >&6; } if ${lt_cv_ld_force_load+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_ld_force_load=no cat > conftest.c << _LT_EOF int forced_loaded() { return 2;} _LT_EOF echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&5 $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&5 echo "$AR cru libconftest.a conftest.o" >&5 $AR cru libconftest.a conftest.o 2>&5 echo "$RANLIB libconftest.a" >&5 $RANLIB libconftest.a 2>&5 cat > conftest.c << _LT_EOF int main() { return 0;} _LT_EOF echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&5 $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err _lt_result=$? if test -s conftest.err && $GREP force_load conftest.err; then cat conftest.err >&5 elif test -f conftest && test $_lt_result -eq 0 && $GREP forced_load conftest >/dev/null 2>&1 ; then lt_cv_ld_force_load=yes else cat conftest.err >&5 fi rm -f conftest.err libconftest.a conftest conftest.c rm -rf conftest.dSYM fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_force_load" >&5 $as_echo "$lt_cv_ld_force_load" >&6; } case $host_os in rhapsody* | darwin1.[012]) _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;; darwin1.*) _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; darwin*) # darwin 5.x on # if running on 10.5 or later, the deployment target defaults # to the OS version, if on x86, and 10.4, the deployment # target defaults to 10.4. Don't you love it? case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in 10.0,*86*-darwin8*|10.0,*-darwin[91]*) _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; 10.[012]*) _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; 10.*) _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; esac ;; esac if test "$lt_cv_apple_cc_single_mod" = "yes"; then _lt_dar_single_mod='$single_module' fi if test "$lt_cv_ld_exported_symbols_list" = "yes"; then _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym' else _lt_dar_export_syms='~$NMEDIT -s $output_objdir/${libname}-symbols.expsym ${lib}' fi if test "$DSYMUTIL" != ":" && test "$lt_cv_ld_force_load" = "no"; then _lt_dsymutil='~$DSYMUTIL $lib || :' else _lt_dsymutil= fi ;; esac 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 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 for ac_header in dlfcn.h do : ac_fn_c_check_header_compile "$LINENO" "dlfcn.h" "ac_cv_header_dlfcn_h" "$ac_includes_default " if test "x$ac_cv_header_dlfcn_h" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_DLFCN_H 1 _ACEOF fi done # Set options enable_dlopen=no enable_win32_dll=no # Check whether --enable-shared was given. if test "${enable_shared+set}" = set; then : enableval=$enable_shared; p=${PACKAGE-default} case $enableval in yes) enable_shared=yes ;; no) enable_shared=no ;; *) enable_shared=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_shared=yes fi done IFS="$lt_save_ifs" ;; esac else enable_shared=yes fi # Check whether --enable-static was given. if test "${enable_static+set}" = set; then : enableval=$enable_static; p=${PACKAGE-default} case $enableval in yes) enable_static=yes ;; no) enable_static=no ;; *) enable_static=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_static=yes fi done IFS="$lt_save_ifs" ;; esac else enable_static=yes fi # Check whether --with-pic was given. if test "${with_pic+set}" = set; then : withval=$with_pic; lt_p=${PACKAGE-default} case $withval in yes|no) pic_mode=$withval ;; *) pic_mode=default # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for lt_pkg in $withval; do IFS="$lt_save_ifs" if test "X$lt_pkg" = "X$lt_p"; then pic_mode=yes fi done IFS="$lt_save_ifs" ;; esac else pic_mode=default fi test -z "$pic_mode" && pic_mode=default # Check whether --enable-fast-install was given. if test "${enable_fast_install+set}" = set; then : enableval=$enable_fast_install; p=${PACKAGE-default} case $enableval in yes) enable_fast_install=yes ;; no) enable_fast_install=no ;; *) enable_fast_install=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_fast_install=yes fi done IFS="$lt_save_ifs" ;; esac else enable_fast_install=yes fi # This can be used to rebuild libtool when needed LIBTOOL_DEPS="$ltmain" # Always use our own libtool. LIBTOOL='$(SHELL) $(top_builddir)/libtool' test -z "$LN_S" && LN_S="ln -s" if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for objdir" >&5 $as_echo_n "checking for objdir... " >&6; } if ${lt_cv_objdir+:} false; then : $as_echo_n "(cached) " >&6 else rm -f .libs 2>/dev/null mkdir .libs 2>/dev/null if test -d .libs; then lt_cv_objdir=.libs else # MS-DOS does not allow filenames that begin with a dot. lt_cv_objdir=_libs fi rmdir .libs 2>/dev/null fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_objdir" >&5 $as_echo "$lt_cv_objdir" >&6; } objdir=$lt_cv_objdir cat >>confdefs.h <<_ACEOF #define LT_OBJDIR "$lt_cv_objdir/" _ACEOF case $host_os in aix3*) # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test "X${COLLECT_NAMES+set}" != Xset; then COLLECT_NAMES= export COLLECT_NAMES fi ;; esac # Global variables: ofile=libtool can_build_shared=yes # All known linkers require a `.a' archive for static linking (except MSVC, # which needs '.lib'). libext=a with_gnu_ld="$lt_cv_prog_gnu_ld" old_CC="$CC" old_CFLAGS="$CFLAGS" # Set sane defaults for various variables test -z "$CC" && CC=cc test -z "$LTCC" && LTCC=$CC test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS test -z "$LD" && LD=ld test -z "$ac_objext" && ac_objext=o for cc_temp in $compiler""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` # Only perform the check for file, if the check method requires it test -z "$MAGIC_CMD" && MAGIC_CMD=file case $deplibs_check_method in file_magic*) if test "$file_magic_cmd" = '$MAGIC_CMD'; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ${ac_tool_prefix}file" >&5 $as_echo_n "checking for ${ac_tool_prefix}file... " >&6; } if ${lt_cv_path_MAGIC_CMD+:} false; then : $as_echo_n "(cached) " >&6 else case $MAGIC_CMD in [\\/*] | ?:[\\/]*) lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. ;; *) lt_save_MAGIC_CMD="$MAGIC_CMD" lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" for ac_dir in $ac_dummy; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/${ac_tool_prefix}file; then lt_cv_path_MAGIC_CMD="$ac_dir/${ac_tool_prefix}file" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <<_LT_EOF 1>&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org _LT_EOF fi ;; esac fi break fi done IFS="$lt_save_ifs" MAGIC_CMD="$lt_save_MAGIC_CMD" ;; esac fi MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if test -n "$MAGIC_CMD"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 $as_echo "$MAGIC_CMD" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test -z "$lt_cv_path_MAGIC_CMD"; then if test -n "$ac_tool_prefix"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for file" >&5 $as_echo_n "checking for file... " >&6; } if ${lt_cv_path_MAGIC_CMD+:} false; then : $as_echo_n "(cached) " >&6 else case $MAGIC_CMD in [\\/*] | ?:[\\/]*) lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. ;; *) lt_save_MAGIC_CMD="$MAGIC_CMD" lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" for ac_dir in $ac_dummy; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/file; then lt_cv_path_MAGIC_CMD="$ac_dir/file" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <<_LT_EOF 1>&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org _LT_EOF fi ;; esac fi break fi done IFS="$lt_save_ifs" MAGIC_CMD="$lt_save_MAGIC_CMD" ;; esac fi MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if test -n "$MAGIC_CMD"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 $as_echo "$MAGIC_CMD" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi else MAGIC_CMD=: fi fi fi ;; esac # Use C for the default configuration in the libtool script lt_save_CC="$CC" 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 # Source file extension for C test sources. ac_ext=c # Object file extension for compiled C test sources. objext=o objext=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" # Code to be used in simple link tests lt_simple_link_test_code='int main(){return(0);}' # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # Save the default compiler, since it gets overwritten when the other # tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP. compiler_DEFAULT=$CC # save warnings/boilerplate of simple test code ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $RM conftest* ac_outfile=conftest.$ac_objext echo "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $RM -r conftest* if test -n "$compiler"; then lt_prog_compiler_no_builtin_flag= if test "$GCC" = yes; then case $cc_basename in nvcc*) lt_prog_compiler_no_builtin_flag=' -Xcompiler -fno-builtin' ;; *) lt_prog_compiler_no_builtin_flag=' -fno-builtin' ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 $as_echo_n "checking if $compiler supports -fno-rtti -fno-exceptions... " >&6; } if ${lt_cv_prog_compiler_rtti_exceptions+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_rtti_exceptions=no ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-fno-rtti -fno-exceptions" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_rtti_exceptions=yes fi fi $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 $as_echo "$lt_cv_prog_compiler_rtti_exceptions" >&6; } if test x"$lt_cv_prog_compiler_rtti_exceptions" = xyes; then lt_prog_compiler_no_builtin_flag="$lt_prog_compiler_no_builtin_flag -fno-rtti -fno-exceptions" else : fi fi lt_prog_compiler_wl= lt_prog_compiler_pic= lt_prog_compiler_static= if test "$GCC" = yes; then lt_prog_compiler_wl='-Wl,' lt_prog_compiler_static='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static='-Bstatic' fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support lt_prog_compiler_pic='-fPIC' ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. lt_prog_compiler_pic='-m68020 -resident32 -malways-restore-a4' ;; esac ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries lt_prog_compiler_pic='-DDLL_EXPORT' ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files lt_prog_compiler_pic='-fno-common' ;; haiku*) # PIC is the default for Haiku. # The "-static" flag exists, but is broken. lt_prog_compiler_static= ;; hpux*) # PIC is the default for 64-bit PA HP-UX, but not for 32-bit # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag # sets the default TLS model and affects inlining. case $host_cpu in hppa*64*) # +Z the default ;; *) lt_prog_compiler_pic='-fPIC' ;; esac ;; interix[3-9]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; msdosdjgpp*) # Just because we use GCC doesn't mean we suddenly get shared libraries # on systems that don't support them. lt_prog_compiler_can_build_shared=no enable_shared=no ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. lt_prog_compiler_pic='-fPIC -shared' ;; sysv4*MP*) if test -d /usr/nec; then lt_prog_compiler_pic=-Kconform_pic fi ;; *) lt_prog_compiler_pic='-fPIC' ;; esac case $cc_basename in nvcc*) # Cuda Compiler Driver 2.2 lt_prog_compiler_wl='-Xlinker ' if test -n "$lt_prog_compiler_pic"; then lt_prog_compiler_pic="-Xcompiler $lt_prog_compiler_pic" fi ;; esac else # PORTME Check for flag to pass linker flags through the system compiler. case $host_os in aix*) lt_prog_compiler_wl='-Wl,' if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static='-Bstatic' else lt_prog_compiler_static='-bnso -bI:/lib/syscalls.exp' fi ;; mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). lt_prog_compiler_pic='-DDLL_EXPORT' ;; hpux9* | hpux10* | hpux11*) lt_prog_compiler_wl='-Wl,' # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic='+Z' ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? lt_prog_compiler_static='${wl}-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) lt_prog_compiler_wl='-Wl,' # PIC (with -KPIC) is the default. lt_prog_compiler_static='-non_shared' ;; linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in # old Intel for x86_64 which still supported -KPIC. ecc*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-static' ;; # icc used to be incompatible with GCC. # ICC 10 doesn't accept -KPIC any more. icc* | ifort*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fPIC' lt_prog_compiler_static='-static' ;; # Lahey Fortran 8.1. lf95*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='--shared' lt_prog_compiler_static='--static' ;; nagfor*) # NAG Fortran compiler lt_prog_compiler_wl='-Wl,-Wl,,' lt_prog_compiler_pic='-PIC' lt_prog_compiler_static='-Bstatic' ;; pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group compilers (*not* the Pentium gcc compiler, # which looks to be a dead project) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fpic' lt_prog_compiler_static='-Bstatic' ;; ccc*) lt_prog_compiler_wl='-Wl,' # All Alpha code is PIC. lt_prog_compiler_static='-non_shared' ;; xl* | bgxl* | bgf* | mpixl*) # IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-qpic' lt_prog_compiler_static='-qstaticlink' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [1-7].* | *Sun*Fortran*\ 8.[0-3]*) # Sun Fortran 8.3 passes all unrecognized flags to the linker lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' lt_prog_compiler_wl='' ;; *Sun\ F* | *Sun*Fortran*) lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' lt_prog_compiler_wl='-Qoption ld ' ;; *Sun\ C*) # Sun C 5.9 lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' lt_prog_compiler_wl='-Wl,' ;; *Intel*\ [CF]*Compiler*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fPIC' lt_prog_compiler_static='-static' ;; *Portland\ Group*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fpic' lt_prog_compiler_static='-Bstatic' ;; esac ;; esac ;; newsos6) lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. lt_prog_compiler_pic='-fPIC -shared' ;; osf3* | osf4* | osf5*) lt_prog_compiler_wl='-Wl,' # All OSF/1 code is PIC. lt_prog_compiler_static='-non_shared' ;; rdos*) lt_prog_compiler_static='-non_shared' ;; solaris*) lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' case $cc_basename in f77* | f90* | f95* | sunf77* | sunf90* | sunf95*) lt_prog_compiler_wl='-Qoption ld ';; *) lt_prog_compiler_wl='-Wl,';; esac ;; sunos4*) lt_prog_compiler_wl='-Qoption ld ' lt_prog_compiler_pic='-PIC' lt_prog_compiler_static='-Bstatic' ;; sysv4 | sysv4.2uw2* | sysv4.3*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; sysv4*MP*) if test -d /usr/nec ;then lt_prog_compiler_pic='-Kconform_pic' lt_prog_compiler_static='-Bstatic' fi ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; unicos*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_can_build_shared=no ;; uts4*) lt_prog_compiler_pic='-pic' lt_prog_compiler_static='-Bstatic' ;; *) lt_prog_compiler_can_build_shared=no ;; esac fi case $host_os in # For platforms which do not support PIC, -DPIC is meaningless: *djgpp*) lt_prog_compiler_pic= ;; *) lt_prog_compiler_pic="$lt_prog_compiler_pic -DPIC" ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5 $as_echo_n "checking for $compiler option to produce PIC... " >&6; } if ${lt_cv_prog_compiler_pic+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_pic=$lt_prog_compiler_pic fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic" >&5 $as_echo "$lt_cv_prog_compiler_pic" >&6; } lt_prog_compiler_pic=$lt_cv_prog_compiler_pic # # Check to make sure the PIC flag actually works. # if test -n "$lt_prog_compiler_pic"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5 $as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic works... " >&6; } if ${lt_cv_prog_compiler_pic_works+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_pic_works=no ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$lt_prog_compiler_pic -DPIC" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_pic_works=yes fi fi $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works" >&5 $as_echo "$lt_cv_prog_compiler_pic_works" >&6; } if test x"$lt_cv_prog_compiler_pic_works" = xyes; then case $lt_prog_compiler_pic in "" | " "*) ;; *) lt_prog_compiler_pic=" $lt_prog_compiler_pic" ;; esac else lt_prog_compiler_pic= lt_prog_compiler_can_build_shared=no fi fi # # Check to make sure the static flag actually works. # wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\" { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5 $as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } if ${lt_cv_prog_compiler_static_works+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_static_works=no save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS $lt_tmp_static_flag" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&5 $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_static_works=yes fi else lt_cv_prog_compiler_static_works=yes fi fi $RM -r conftest* LDFLAGS="$save_LDFLAGS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works" >&5 $as_echo "$lt_cv_prog_compiler_static_works" >&6; } if test x"$lt_cv_prog_compiler_static_works" = xyes; then : else lt_prog_compiler_static= fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 $as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } if ${lt_cv_prog_compiler_c_o+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_c_o=no $RM -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o=yes fi fi chmod u+w . 2>&5 $RM conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files $RM out/* && rmdir out cd .. $RM -r conftest $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 $as_echo "$lt_cv_prog_compiler_c_o" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 $as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } if ${lt_cv_prog_compiler_c_o+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_c_o=no $RM -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o=yes fi fi chmod u+w . 2>&5 $RM conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files $RM out/* && rmdir out cd .. $RM -r conftest $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 $as_echo "$lt_cv_prog_compiler_c_o" >&6; } hard_links="nottested" if test "$lt_cv_prog_compiler_c_o" = no && test "$need_locks" != no; then # do not overwrite the value of need_locks provided by the user { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 $as_echo_n "checking if we can lock with hard links... " >&6; } hard_links=yes $RM conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 $as_echo "$hard_links" >&6; } if test "$hard_links" = no; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 $as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} need_locks=warn fi else need_locks=no fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 $as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } runpath_var= allow_undefined_flag= always_export_symbols=no archive_cmds= archive_expsym_cmds= compiler_needs_object=no enable_shared_with_static_runtimes=no export_dynamic_flag_spec= export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' hardcode_automatic=no hardcode_direct=no hardcode_direct_absolute=no hardcode_libdir_flag_spec= hardcode_libdir_separator= hardcode_minus_L=no hardcode_shlibpath_var=unsupported inherit_rpath=no link_all_deplibs=unknown module_cmds= module_expsym_cmds= old_archive_from_new_cmds= old_archive_from_expsyms_cmds= thread_safe_flag_spec= whole_archive_flag_spec= # include_expsyms should be a list of space-separated symbols to be *always* # included in the symbol list include_expsyms= # exclude_expsyms can be an extended regexp of symbols to exclude # it will be wrapped by ` (' and `)$', so one must not match beginning or # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', # as well as any symbol that contains `d'. exclude_expsyms='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out # platforms (ab)use it in PIC code, but their linkers get confused if # the symbol is explicitly referenced. Since portable code cannot # rely on this symbol name, it's probably fine to never include it in # preloaded symbol tables. # Exclude shared library initialization/finalization symbols. extract_expsyms_cmds= case $host_os in cygwin* | mingw* | pw32* | cegcc*) # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. if test "$GCC" != yes; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; openbsd*) with_gnu_ld=no ;; linux* | k*bsd*-gnu | gnu*) link_all_deplibs=no ;; esac ld_shlibs=yes # On some targets, GNU ld is compatible enough with the native linker # that we're better off using the native interface for both. lt_use_gnu_ld_interface=no if test "$with_gnu_ld" = yes; then case $host_os in aix*) # The AIX port of GNU ld has always aspired to compatibility # with the native linker. However, as the warning in the GNU ld # block says, versions before 2.19.5* couldn't really create working # shared libraries, regardless of the interface used. case `$LD -v 2>&1` in *\ \(GNU\ Binutils\)\ 2.19.5*) ;; *\ \(GNU\ Binutils\)\ 2.[2-9]*) ;; *\ \(GNU\ Binutils\)\ [3-9]*) ;; *) lt_use_gnu_ld_interface=yes ;; esac ;; *) lt_use_gnu_ld_interface=yes ;; esac fi if test "$lt_use_gnu_ld_interface" = yes; then # If archive_cmds runs LD, not CC, wlarc should be empty wlarc='${wl}' # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. runpath_var=LD_RUN_PATH hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' export_dynamic_flag_spec='${wl}--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then whole_archive_flag_spec="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else whole_archive_flag_spec= fi supports_anon_versioning=no case `$LD -v 2>&1` in *GNU\ gold*) supports_anon_versioning=yes ;; *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... *\ 2.11.*) ;; # other 2.11 versions *) supports_anon_versioning=yes ;; esac # See if GNU ld supports shared libraries. case $host_os in aix[3-9]*) # On AIX/PPC, the GNU linker is very broken if test "$host_cpu" != ia64; then ld_shlibs=no cat <<_LT_EOF 1>&2 *** Warning: the GNU linker, at least up to release 2.19, is reported *** to be unable to reliably create shared libraries on AIX. *** Therefore, libtool is disabling shared libraries support. If you *** really care for shared libraries, you may want to install binutils *** 2.20 or above, or modify your PATH so that a non-GNU linker is found. *** You will then need to restart the configuration process. _LT_EOF fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='' ;; m68k) archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes ;; esac ;; beos*) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then allow_undefined_flag=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME archive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else ld_shlibs=no fi ;; cygwin* | mingw* | pw32* | cegcc*) # _LT_TAGVAR(hardcode_libdir_flag_spec, ) is actually meaningless, # as there is no search path for DLLs. hardcode_libdir_flag_spec='-L$libdir' export_dynamic_flag_spec='${wl}--export-all-symbols' allow_undefined_flag=unsupported always_export_symbols=no enable_shared_with_static_runtimes=yes export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/;s/^.*[ ]__nm__\([^ ]*\)[ ][^ ]*/\1 DATA/;/^I[ ]/d;/^[AITW][ ]/s/.* //'\'' | sort | uniq > $export_symbols' exclude_expsyms='[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname' if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... archive_expsym_cmds='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else ld_shlibs=no fi ;; haiku*) archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' link_all_deplibs=yes ;; interix[3-9]*) hardcode_direct=no hardcode_shlibpath_var=no hardcode_libdir_flag_spec='${wl}-rpath,$libdir' export_dynamic_flag_spec='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' archive_expsym_cmds='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) tmp_diet=no if test "$host_os" = linux-dietlibc; then case $cc_basename in diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) esac fi if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ && test "$tmp_diet" = no then tmp_addflag=' $pic_flag' tmp_sharedflag='-shared' case $cc_basename,$host_cpu in pgcc*) # Portland Group C compiler whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group f77 and f90 compilers whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag -Mnomain' ;; ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 tmp_addflag=' -i_dynamic' ;; efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 tmp_addflag=' -i_dynamic -nofor_main' ;; ifc* | ifort*) # Intel Fortran compiler tmp_addflag=' -nofor_main' ;; lf95*) # Lahey Fortran 8.1 whole_archive_flag_spec= tmp_sharedflag='--shared' ;; xl[cC]* | bgxl[cC]* | mpixl[cC]*) # IBM XL C 8.0 on PPC (deal with xlf below) tmp_sharedflag='-qmkshrobj' tmp_addflag= ;; nvcc*) # Cuda Compiler Driver 2.2 whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' compiler_needs_object=yes ;; esac case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C 5.9 whole_archive_flag_spec='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' compiler_needs_object=yes tmp_sharedflag='-G' ;; *Sun\ F*) # Sun Fortran 8.3 tmp_sharedflag='-G' ;; esac archive_cmds='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' if test "x$supports_anon_versioning" = xyes; then archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' fi case $cc_basename in xlf* | bgf* | bgxlf* | mpixlf*) # IBM XL Fortran 10.1 on PPC cannot create shared libs itself whole_archive_flag_spec='--whole-archive$convenience --no-whole-archive' hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' archive_cmds='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib' if test "x$supports_anon_versioning" = xyes; then archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' fi ;; esac else ld_shlibs=no fi ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' fi ;; solaris*) if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then ld_shlibs=no cat <<_LT_EOF 1>&2 *** Warning: The releases 2.8.* of the GNU linker cannot reliably *** create shared libraries on Solaris systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.9.1 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) case `$LD -v 2>&1` in *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) ld_shlibs=no cat <<_LT_EOF 1>&2 *** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not *** reliably create shared libraries on SCO systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.16.91.0.3 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF ;; *) # For security reasons, it is highly recommended that you always # use absolute paths for naming shared libraries, and exclude the # DT_RUNPATH tag from executables and libraries. But doing so # requires that you compile everything twice, which is a pain. if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi ;; esac ;; sunos4*) archive_cmds='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' wlarc= hardcode_direct=yes hardcode_shlibpath_var=no ;; *) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi ;; esac if test "$ld_shlibs" = no; then runpath_var= hardcode_libdir_flag_spec= export_dynamic_flag_spec= whole_archive_flag_spec= fi else # PORTME fill in a description of your system's linker (not GNU ld) case $host_os in aix3*) allow_undefined_flag=unsupported always_export_symbols=yes archive_expsym_cmds='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. hardcode_minus_L=yes if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. hardcode_direct=unsupported fi ;; aix[4-9]*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm # Also, AIX nm treats weak defined symbols like other global # defined symbols, whereas GNU nm marks them as "W". if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then export_symbols_cmds='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' else export_symbols_cmds='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) for ld_flag in $LDFLAGS; do if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then aix_use_runtimelinking=yes break fi done ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. archive_cmds='' hardcode_direct=yes hardcode_direct_absolute=yes hardcode_libdir_separator=':' link_all_deplibs=yes file_list_spec='${wl}-f,' if test "$GCC" = yes; then case $host_os in aix4.[012]|aix4.[012].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 hardcode_direct=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking hardcode_minus_L=yes hardcode_libdir_flag_spec='-L$libdir' hardcode_libdir_separator= fi ;; esac shared_flag='-shared' if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi link_all_deplibs=no else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi export_dynamic_flag_spec='${wl}-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. always_export_symbols=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. allow_undefined_flag='-berok' # Determine the default libpath from the value encoded in an # empty executable. if test "${lt_cv_aix_libpath+set}" = set; then aix_libpath=$lt_cv_aix_libpath else if ${lt_cv_aix_libpath_+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\([^ ]*\) *$/\1/ p } }' lt_cv_aix_libpath_=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$lt_cv_aix_libpath_"; then lt_cv_aix_libpath_=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$lt_cv_aix_libpath_"; then lt_cv_aix_libpath_="/usr/lib:/lib" fi fi aix_libpath=$lt_cv_aix_libpath_ fi hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" archive_expsym_cmds='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib' allow_undefined_flag="-z nodefs" archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. if test "${lt_cv_aix_libpath+set}" = set; then aix_libpath=$lt_cv_aix_libpath else if ${lt_cv_aix_libpath_+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\([^ ]*\) *$/\1/ p } }' lt_cv_aix_libpath_=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$lt_cv_aix_libpath_"; then lt_cv_aix_libpath_=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$lt_cv_aix_libpath_"; then lt_cv_aix_libpath_="/usr/lib:/lib" fi fi aix_libpath=$lt_cv_aix_libpath_ fi hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. no_undefined_flag=' ${wl}-bernotok' allow_undefined_flag=' ${wl}-berok' if test "$with_gnu_ld" = yes; then # We only use this code for GNU lds that support --whole-archive. whole_archive_flag_spec='${wl}--whole-archive$convenience ${wl}--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives whole_archive_flag_spec='$convenience' fi archive_cmds_need_lc=yes # This is similar to how AIX traditionally builds its shared libraries. archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='' ;; m68k) archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes ;; esac ;; bsdi[45]*) export_dynamic_flag_spec=-rdynamic ;; cygwin* | mingw* | pw32* | cegcc*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. case $cc_basename in cl*) # Native MSVC hardcode_libdir_flag_spec=' ' allow_undefined_flag=unsupported always_export_symbols=yes file_list_spec='@' # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. archive_cmds='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' archive_expsym_cmds='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then sed -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; else sed -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; fi~ $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, )='true' enable_shared_with_static_runtimes=yes exclude_expsyms='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1,DATA/'\'' | $SED -e '\''/^[AITW][ ]/s/.*[ ]//'\'' | sort | uniq > $export_symbols' # Don't use ranlib old_postinstall_cmds='chmod 644 $oldlib' postlink_cmds='lt_outputfile="@OUTPUT@"~ lt_tool_outputfile="@TOOL_OUTPUT@"~ case $lt_outputfile in *.exe|*.EXE) ;; *) lt_outputfile="$lt_outputfile.exe" lt_tool_outputfile="$lt_tool_outputfile.exe" ;; esac~ if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; $RM "$lt_outputfile.manifest"; fi' ;; *) # Assume MSVC wrapper hardcode_libdir_flag_spec=' ' allow_undefined_flag=unsupported # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. archive_cmds='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. old_archive_from_new_cmds='true' # FIXME: Should let the user specify the lib program. old_archive_cmds='lib -OUT:$oldlib$oldobjs$old_deplibs' enable_shared_with_static_runtimes=yes ;; esac ;; darwin* | rhapsody*) archive_cmds_need_lc=no hardcode_direct=no hardcode_automatic=yes hardcode_shlibpath_var=unsupported if test "$lt_cv_ld_force_load" = "yes"; then whole_archive_flag_spec='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' else whole_archive_flag_spec='' fi link_all_deplibs=yes allow_undefined_flag="$_lt_dar_allow_undefined" case $cc_basename in ifort*) _lt_dar_can_shared=yes ;; *) _lt_dar_can_shared=$GCC ;; esac if test "$_lt_dar_can_shared" = "yes"; then output_verbose_link_cmd=func_echo_all archive_cmds="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" module_cmds="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" archive_expsym_cmds="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" module_expsym_cmds="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" else ld_shlibs=no fi ;; dgux*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec='-L$libdir' hardcode_shlibpath_var=no ;; # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor # support. Future versions do this automatically, but an explicit c++rt0.o # does not break anything, and helps significantly (at the cost of a little # extra space). freebsd2.2*) archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. freebsd2.*) archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes hardcode_minus_L=yes hardcode_shlibpath_var=no ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. freebsd* | dragonfly*) archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; hpux9*) if test "$GCC" = yes; then archive_cmds='$RM $output_objdir/$soname~$CC -shared $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else archive_cmds='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' fi hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: hardcode_direct=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes export_dynamic_flag_spec='${wl}-E' ;; hpux10*) if test "$GCC" = yes && test "$with_gnu_ld" = no; then archive_cmds='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi if test "$with_gnu_ld" = no; then hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: hardcode_direct=yes hardcode_direct_absolute=yes export_dynamic_flag_spec='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes fi ;; hpux11*) if test "$GCC" = yes && test "$with_gnu_ld" = no; then case $host_cpu in hppa*64*) archive_cmds='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case $host_cpu in hppa*64*) archive_cmds='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) # Older versions of the 11.00 compiler do not understand -b yet # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does) { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC understands -b" >&5 $as_echo_n "checking if $CC understands -b... " >&6; } if ${lt_cv_prog_compiler__b+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler__b=no save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS -b" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&5 $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler__b=yes fi else lt_cv_prog_compiler__b=yes fi fi $RM -r conftest* LDFLAGS="$save_LDFLAGS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler__b" >&5 $as_echo "$lt_cv_prog_compiler__b" >&6; } if test x"$lt_cv_prog_compiler__b" = xyes; then archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi ;; esac fi if test "$with_gnu_ld" = no; then hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: case $host_cpu in hppa*64*|ia64*) hardcode_direct=no hardcode_shlibpath_var=no ;; *) hardcode_direct=yes hardcode_direct_absolute=yes export_dynamic_flag_spec='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) if test "$GCC" = yes; then archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' # Try to use the -exported_symbol ld option, if it does not # work, assume that -exports_file does not work either and # implicitly export all symbols. # This should be the same for all languages, so no per-tag cache variable. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $host_os linker accepts -exported_symbol" >&5 $as_echo_n "checking whether the $host_os linker accepts -exported_symbol... " >&6; } if ${lt_cv_irix_exported_symbol+:} false; then : $as_echo_n "(cached) " >&6 else save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int foo (void) { return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : lt_cv_irix_exported_symbol=yes else lt_cv_irix_exported_symbol=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LDFLAGS="$save_LDFLAGS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_irix_exported_symbol" >&5 $as_echo "$lt_cv_irix_exported_symbol" >&6; } if test "$lt_cv_irix_exported_symbol" = yes; then archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib' fi else archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib' fi archive_cmds_need_lc='no' hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: inherit_rpath=yes link_all_deplibs=yes ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else archive_cmds='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF fi hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; newsos6) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: hardcode_shlibpath_var=no ;; *nto* | *qnx*) ;; openbsd*) if test -f /usr/libexec/ld.so; then hardcode_direct=yes hardcode_shlibpath_var=no hardcode_direct_absolute=yes if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' hardcode_libdir_flag_spec='${wl}-rpath,$libdir' export_dynamic_flag_spec='${wl}-E' else case $host_os in openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec='-R$libdir' ;; *) archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec='${wl}-rpath,$libdir' ;; esac fi else ld_shlibs=no fi ;; os2*) hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes allow_undefined_flag=unsupported archive_cmds='$ECHO "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~echo DATA >> $output_objdir/$libname.def~echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' old_archive_from_new_cmds='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' ;; osf3*) if test "$GCC" = yes; then allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else allow_undefined_flag=' -expect_unresolved \*' archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' fi archive_cmds_need_lc='no' hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag if test "$GCC" = yes; then allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' archive_cmds='$CC -shared${allow_undefined_flag} $pic_flag $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' else allow_undefined_flag=' -expect_unresolved \*' archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' archive_expsym_cmds='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp' # Both c and cxx compiler support -rpath directly hardcode_libdir_flag_spec='-rpath $libdir' fi archive_cmds_need_lc='no' hardcode_libdir_separator=: ;; solaris*) no_undefined_flag=' -z defs' if test "$GCC" = yes; then wlarc='${wl}' archive_cmds='$CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' else case `$CC -V 2>&1` in *"Compilers 5.0"*) wlarc='' archive_cmds='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' ;; *) wlarc='${wl}' archive_cmds='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' ;; esac fi hardcode_libdir_flag_spec='-R$libdir' hardcode_shlibpath_var=no case $host_os in solaris2.[0-5] | solaris2.[0-5].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands `-z linker_flag'. GCC discards it without `$wl', # but is careful enough not to reorder. # Supported since Solaris 2.6 (maybe 2.5.1?) if test "$GCC" = yes; then whole_archive_flag_spec='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' else whole_archive_flag_spec='-z allextract$convenience -z defaultextract' fi ;; esac link_all_deplibs=yes ;; sunos4*) if test "x$host_vendor" = xsequent; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. archive_cmds='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi hardcode_libdir_flag_spec='-L$libdir' hardcode_direct=yes hardcode_minus_L=yes hardcode_shlibpath_var=no ;; sysv4) case $host_vendor in sni) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes # is this really true??? ;; siemens) ## LD is ld it makes a PLAMLIB ## CC just makes a GrossModule. archive_cmds='$LD -G -o $lib $libobjs $deplibs $linker_flags' reload_cmds='$CC -r -o $output$reload_objs' hardcode_direct=no ;; motorola) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=no #Motorola manual says yes, but my tests say they lie ;; esac runpath_var='LD_RUN_PATH' hardcode_shlibpath_var=no ;; sysv4.3*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var=no export_dynamic_flag_spec='-Bexport' ;; sysv4*MP*) if test -d /usr/nec; then archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var=no runpath_var=LD_RUN_PATH hardcode_runpath_var=yes ld_shlibs=yes fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) no_undefined_flag='${wl}-z,text' archive_cmds_need_lc=no hardcode_shlibpath_var=no runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then archive_cmds='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. no_undefined_flag='${wl}-z,text' allow_undefined_flag='${wl}-z,nodefs' archive_cmds_need_lc=no hardcode_shlibpath_var=no hardcode_libdir_flag_spec='${wl}-R,$libdir' hardcode_libdir_separator=':' link_all_deplibs=yes export_dynamic_flag_spec='${wl}-Bexport' runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then archive_cmds='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; uts4*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec='-L$libdir' hardcode_shlibpath_var=no ;; *) ld_shlibs=no ;; esac if test x$host_vendor = xsni; then case $host in sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) export_dynamic_flag_spec='${wl}-Blargedynsym' ;; esac fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs" >&5 $as_echo "$ld_shlibs" >&6; } test "$ld_shlibs" = no && can_build_shared=no with_gnu_ld=$with_gnu_ld # # Do we need to explicitly link libc? # case "x$archive_cmds_need_lc" in x|xyes) # Assume -lc should be added archive_cmds_need_lc=yes if test "$enable_shared" = yes && test "$GCC" = yes; then case $archive_cmds in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5 $as_echo_n "checking whether -lc should be explicitly linked in... " >&6; } if ${lt_cv_archive_cmds_need_lc+:} false; then : $as_echo_n "(cached) " >&6 else $RM conftest* echo "$lt_simple_compile_test_code" > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$lt_prog_compiler_wl pic_flag=$lt_prog_compiler_pic compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$allow_undefined_flag allow_undefined_flag= if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1\""; } >&5 (eval $archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } then lt_cv_archive_cmds_need_lc=no else lt_cv_archive_cmds_need_lc=yes fi allow_undefined_flag=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_archive_cmds_need_lc" >&5 $as_echo "$lt_cv_archive_cmds_need_lc" >&6; } archive_cmds_need_lc=$lt_cv_archive_cmds_need_lc ;; esac fi ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 $as_echo_n "checking dynamic linker characteristics... " >&6; } if test "$GCC" = yes; then case $host_os in darwin*) lt_awk_arg="/^libraries:/,/LR/" ;; *) lt_awk_arg="/^libraries:/" ;; esac case $host_os in mingw* | cegcc*) lt_sed_strip_eq="s,=\([A-Za-z]:\),\1,g" ;; *) lt_sed_strip_eq="s,=/,/,g" ;; esac lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq` case $lt_search_path_spec in *\;*) # if the path contains ";" then we assume it to be the separator # otherwise default to the standard path separator (i.e. ":") - it is # assumed that no part of a normal pathname contains ";" but that should # okay in the real world where ";" in dirpaths is itself problematic. lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'` ;; *) lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"` ;; esac # Ok, now we have the path, separated by spaces, we can step through it # and add multilib dir if necessary. lt_tmp_lt_search_path_spec= lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` for lt_sys_path in $lt_search_path_spec; do if test -d "$lt_sys_path/$lt_multi_os_dir"; then lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir" else test -d "$lt_sys_path" && \ lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" fi done lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk ' BEGIN {RS=" "; FS="/|\n";} { lt_foo=""; lt_count=0; for (lt_i = NF; lt_i > 0; lt_i--) { if ($lt_i != "" && $lt_i != ".") { if ($lt_i == "..") { lt_count++; } else { if (lt_count == 0) { lt_foo="/" $lt_i lt_foo; } else { lt_count--; } } } } if (lt_foo != "") { lt_freq[lt_foo]++; } if (lt_freq[lt_foo] == 1) { print lt_foo; } }'` # AWK program above erroneously prepends '/' to C:/dos/paths # for these hosts. case $host_os in mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\ $SED 's,/\([A-Za-z]:\),\1,g'` ;; esac sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP` else sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" fi library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=".so" postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown case $host_os in aix3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='${libname}${release}${shared_ext}$major' ;; aix[4-9]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no hardcode_into_libs=yes if test "$host_cpu" = ia64; then # AIX 5 supports IA64 library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line `#! .'. This would cause the generated library to # depend on `.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[01] | aix4.[01].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then : else can_build_shared=no fi ;; esac # AIX (on Power*) has no versioning support, so currently we can not hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. if test "$aix_use_runtimelinking" = yes; then # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' else # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='${libname}${release}.a $libname.a' soname_spec='${libname}${release}${shared_ext}$major' fi shlibpath_var=LIBPATH fi ;; amigaos*) case $host_cpu in powerpc) # Since July 2007 AmigaOS4 officially supports .so libraries. # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' ;; m68k) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; esac ;; beos*) library_names_spec='${libname}${shared_ext}' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[45]*) version_type=linux # correct to gnu/linux during the next big refactor need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32* | cegcc*) version_type=windows shrext_cmds=".dll" need_version=no need_lib_prefix=no case $GCC,$cc_basename in yes,*) # gcc library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname~ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; fi' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api" ;; mingw* | cegcc*) # MinGW DLLs use traditional 'lib' prefix soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' ;; esac dynamic_linker='Win32 ld.exe' ;; *,cl*) # Native MSVC libname_spec='$name' soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' library_names_spec='${libname}.dll.lib' case $build_os in mingw*) sys_lib_search_path_spec= lt_save_ifs=$IFS IFS=';' for lt_path in $LIB do IFS=$lt_save_ifs # Let DOS variable expansion print the short 8.3 style file name. lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"` sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path" done IFS=$lt_save_ifs # Convert to MSYS style. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([a-zA-Z]\\):| /\\1|g' -e 's|^ ||'` ;; cygwin*) # Convert to unix form, then to dos form, then back to unix form # but this time dos style (no spaces!) so that the unix form looks # like /cygdrive/c/PROGRA~1:/cygdr... sys_lib_search_path_spec=`cygpath --path --unix "$LIB"` sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null` sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` ;; *) sys_lib_search_path_spec="$LIB" if $ECHO "$sys_lib_search_path_spec" | $GREP ';[c-zC-Z]:/' >/dev/null; then # It is most probably a Windows format PATH. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi # FIXME: find the short name or the path components, as spaces are # common. (e.g. "Program Files" -> "PROGRA~1") ;; esac # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes dynamic_linker='Win32 link.exe' ;; *) # Assume MSVC wrapper library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' dynamic_linker='Win32 ld.exe' ;; esac # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' soname_spec='${libname}${release}${major}$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib" sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd* | dragonfly*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. if test -x /usr/bin/objformat; then objformat=`/usr/bin/objformat` else case $host_os in freebsd[23].*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2.*) shlibpath_overrides_runpath=yes ;; freebsd3.[01]* | freebsdelf3.[01]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; *) # from 4.6 on, and DragonFly shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; haiku*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no dynamic_linker="$host_os runtime_loader" library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LIBRARY_PATH shlibpath_overrides_runpath=yes sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' if test "X$HPUX_IA64_MODE" = X32; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" fi sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555, ... postinstall_cmds='chmod 555 $lib' # or fails outright, so override atomically: install_override_mode=555 ;; interix[3-9]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test "$lt_cv_prog_gnu_ld" = yes; then version_type=linux # correct to gnu/linux during the next big refactor else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # Some binutils ld are patched to set DT_RUNPATH if ${lt_cv_shlibpath_overrides_runpath+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_shlibpath_overrides_runpath=no save_LDFLAGS=$LDFLAGS save_libdir=$libdir eval "libdir=/foo; wl=\"$lt_prog_compiler_wl\"; \ LDFLAGS=\"\$LDFLAGS $hardcode_libdir_flag_spec\"" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : if ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null; then : lt_cv_shlibpath_overrides_runpath=yes fi fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LDFLAGS=$save_LDFLAGS libdir=$save_libdir fi shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; netbsdelf*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='NetBSD ld.elf_so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; *nto* | *qnx*) version_type=qnx need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='ldqnx.so' ;; openbsd*) version_type=sunos sys_lib_dlsearch_path_spec="/usr/lib" need_lib_prefix=no # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. case $host_os in openbsd3.3 | openbsd3.3.*) need_version=yes ;; *) need_version=no ;; esac library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then case $host_os in openbsd2.[89] | openbsd2.[89].*) shlibpath_overrides_runpath=no ;; *) shlibpath_overrides_runpath=yes ;; esac else shlibpath_overrides_runpath=yes fi ;; os2*) libname_spec='$name' shrext_cmds=".dll" need_lib_prefix=no library_names_spec='$libname${shared_ext} $libname.a' dynamic_linker='OS/2 ld.exe' shlibpath_var=LIBPATH ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" ;; rdos*) dynamic_linker=no ;; solaris*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test "$with_gnu_ld" = yes; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec ;then version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' soname_spec='$libname${shared_ext}.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=freebsd-elf need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes if test "$with_gnu_ld" = yes; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' case $host_os in sco3.2v5*) sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ;; esac fi sys_lib_dlsearch_path_spec='/usr/lib' ;; tpf*) # TPF is a cross-target only. Preferred cross-host = GNU/Linux. version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; uts4*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 $as_echo "$dynamic_linker" >&6; } test "$dynamic_linker" = no && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test "$GCC" = yes; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" fi if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs" >&5 $as_echo_n "checking how to hardcode library paths into programs... " >&6; } hardcode_action= if test -n "$hardcode_libdir_flag_spec" || test -n "$runpath_var" || test "X$hardcode_automatic" = "Xyes" ; then # We can hardcode non-existent directories. if test "$hardcode_direct" != no && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test "$_LT_TAGVAR(hardcode_shlibpath_var, )" != no && test "$hardcode_minus_L" != no; then # Linking always hardcodes the temporary library directory. hardcode_action=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. hardcode_action=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. hardcode_action=unsupported fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action" >&5 $as_echo "$hardcode_action" >&6; } if test "$hardcode_action" = relink || test "$inherit_rpath" = yes; then # Fast installation is not supported enable_fast_install=no elif test "$shlibpath_overrides_runpath" = yes || test "$enable_shared" = no; then # Fast installation is not necessary enable_fast_install=needless fi if test "x$enable_dlopen" != xyes; then enable_dlopen=unknown enable_dlopen_self=unknown enable_dlopen_self_static=unknown else lt_cv_dlopen=no lt_cv_dlopen_libs= case $host_os in beos*) lt_cv_dlopen="load_add_on" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ;; mingw* | pw32* | cegcc*) lt_cv_dlopen="LoadLibrary" lt_cv_dlopen_libs= ;; cygwin*) lt_cv_dlopen="dlopen" lt_cv_dlopen_libs= ;; darwin*) # if libdl is installed we need to link against it { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 $as_echo_n "checking for dlopen in -ldl... " >&6; } if ${ac_cv_lib_dl_dlopen+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dlopen (); int main () { return dlopen (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_dl_dlopen=yes else ac_cv_lib_dl_dlopen=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 $as_echo "$ac_cv_lib_dl_dlopen" >&6; } if test "x$ac_cv_lib_dl_dlopen" = xyes; then : lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" else lt_cv_dlopen="dyld" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes fi ;; *) ac_fn_c_check_func "$LINENO" "shl_load" "ac_cv_func_shl_load" if test "x$ac_cv_func_shl_load" = xyes; then : lt_cv_dlopen="shl_load" else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shl_load in -ldld" >&5 $as_echo_n "checking for shl_load in -ldld... " >&6; } if ${ac_cv_lib_dld_shl_load+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldld $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char shl_load (); int main () { return shl_load (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_dld_shl_load=yes else ac_cv_lib_dld_shl_load=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_shl_load" >&5 $as_echo "$ac_cv_lib_dld_shl_load" >&6; } if test "x$ac_cv_lib_dld_shl_load" = xyes; then : lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld" else ac_fn_c_check_func "$LINENO" "dlopen" "ac_cv_func_dlopen" if test "x$ac_cv_func_dlopen" = xyes; then : lt_cv_dlopen="dlopen" else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 $as_echo_n "checking for dlopen in -ldl... " >&6; } if ${ac_cv_lib_dl_dlopen+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dlopen (); int main () { return dlopen (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_dl_dlopen=yes else ac_cv_lib_dl_dlopen=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 $as_echo "$ac_cv_lib_dl_dlopen" >&6; } if test "x$ac_cv_lib_dl_dlopen" = xyes; then : lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -lsvld" >&5 $as_echo_n "checking for dlopen in -lsvld... " >&6; } if ${ac_cv_lib_svld_dlopen+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lsvld $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dlopen (); int main () { return dlopen (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_svld_dlopen=yes else ac_cv_lib_svld_dlopen=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_svld_dlopen" >&5 $as_echo "$ac_cv_lib_svld_dlopen" >&6; } if test "x$ac_cv_lib_svld_dlopen" = xyes; then : lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld" else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dld_link in -ldld" >&5 $as_echo_n "checking for dld_link in -ldld... " >&6; } if ${ac_cv_lib_dld_dld_link+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldld $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dld_link (); int main () { return dld_link (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_dld_dld_link=yes else ac_cv_lib_dld_dld_link=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_dld_link" >&5 $as_echo "$ac_cv_lib_dld_dld_link" >&6; } if test "x$ac_cv_lib_dld_dld_link" = xyes; then : lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld" fi fi fi fi fi fi ;; esac if test "x$lt_cv_dlopen" != xno; then enable_dlopen=yes else enable_dlopen=no fi case $lt_cv_dlopen in dlopen) save_CPPFLAGS="$CPPFLAGS" test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" save_LDFLAGS="$LDFLAGS" wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" save_LIBS="$LIBS" LIBS="$lt_cv_dlopen_libs $LIBS" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a program can dlopen itself" >&5 $as_echo_n "checking whether a program can dlopen itself... " >&6; } if ${lt_cv_dlopen_self+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : lt_cv_dlopen_self=cross else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF #line $LINENO "configure" #include "confdefs.h" #if HAVE_DLFCN_H #include #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif /* When -fvisbility=hidden is used, assume the code has been annotated correspondingly for the symbols needed. */ #if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) int fnord () __attribute__((visibility("default"))); #endif int fnord () { return 42; } int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else { if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; else puts (dlerror ()); } /* dlclose (self); */ } else puts (dlerror ()); return status; } _LT_EOF if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 (eval $ac_link) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && test -s conftest${ac_exeext} 2>/dev/null; then (./conftest; exit; ) >&5 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) lt_cv_dlopen_self=yes ;; x$lt_dlneed_uscore) lt_cv_dlopen_self=yes ;; x$lt_dlunknown|x*) lt_cv_dlopen_self=no ;; esac else : # compilation failed lt_cv_dlopen_self=no fi fi rm -fr conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self" >&5 $as_echo "$lt_cv_dlopen_self" >&6; } if test "x$lt_cv_dlopen_self" = xyes; then wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a statically linked program can dlopen itself" >&5 $as_echo_n "checking whether a statically linked program can dlopen itself... " >&6; } if ${lt_cv_dlopen_self_static+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : lt_cv_dlopen_self_static=cross else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF #line $LINENO "configure" #include "confdefs.h" #if HAVE_DLFCN_H #include #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif /* When -fvisbility=hidden is used, assume the code has been annotated correspondingly for the symbols needed. */ #if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) int fnord () __attribute__((visibility("default"))); #endif int fnord () { return 42; } int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else { if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; else puts (dlerror ()); } /* dlclose (self); */ } else puts (dlerror ()); return status; } _LT_EOF if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 (eval $ac_link) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && test -s conftest${ac_exeext} 2>/dev/null; then (./conftest; exit; ) >&5 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) lt_cv_dlopen_self_static=yes ;; x$lt_dlneed_uscore) lt_cv_dlopen_self_static=yes ;; x$lt_dlunknown|x*) lt_cv_dlopen_self_static=no ;; esac else : # compilation failed lt_cv_dlopen_self_static=no fi fi rm -fr conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self_static" >&5 $as_echo "$lt_cv_dlopen_self_static" >&6; } fi CPPFLAGS="$save_CPPFLAGS" LDFLAGS="$save_LDFLAGS" LIBS="$save_LIBS" ;; esac case $lt_cv_dlopen_self in yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; *) enable_dlopen_self=unknown ;; esac case $lt_cv_dlopen_self_static in yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; *) enable_dlopen_self_static=unknown ;; esac fi striplib= old_striplib= { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether stripping libraries is possible" >&5 $as_echo_n "checking whether stripping libraries is possible... " >&6; } if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" test -z "$striplib" && striplib="$STRIP --strip-unneeded" { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else # FIXME - insert some real tests, host_os isn't really good enough case $host_os in darwin*) if test -n "$STRIP" ; then striplib="$STRIP -x" old_striplib="$STRIP -S" { $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; } fi ;; *) { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } ;; esac fi # Report which library types will actually be built { $as_echo "$as_me:${as_lineno-$LINENO}: checking if libtool supports shared libraries" >&5 $as_echo_n "checking if libtool supports shared libraries... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $can_build_shared" >&5 $as_echo "$can_build_shared" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build shared libraries" >&5 $as_echo_n "checking whether to build shared libraries... " >&6; } test "$can_build_shared" = "no" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[4-9]*) if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no fi ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_shared" >&5 $as_echo "$enable_shared" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build static libraries" >&5 $as_echo_n "checking whether to build static libraries... " >&6; } # Make sure either enable_shared or enable_static is yes. test "$enable_shared" = yes || enable_static=yes { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_static" >&5 $as_echo "$enable_static" >&6; } 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 CC="$lt_save_CC" ac_ext=f ac_compile='$F77 -c $FFLAGS conftest.$ac_ext >&5' ac_link='$F77 -o conftest$ac_exeext $FFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_f77_compiler_gnu if test -z "$F77" || test "X$F77" = "Xno"; then _lt_disable_F77=yes fi archive_cmds_need_lc_F77=no allow_undefined_flag_F77= always_export_symbols_F77=no archive_expsym_cmds_F77= export_dynamic_flag_spec_F77= hardcode_direct_F77=no hardcode_direct_absolute_F77=no hardcode_libdir_flag_spec_F77= hardcode_libdir_separator_F77= hardcode_minus_L_F77=no hardcode_automatic_F77=no inherit_rpath_F77=no module_cmds_F77= module_expsym_cmds_F77= link_all_deplibs_F77=unknown old_archive_cmds_F77=$old_archive_cmds reload_flag_F77=$reload_flag reload_cmds_F77=$reload_cmds no_undefined_flag_F77= whole_archive_flag_spec_F77= enable_shared_with_static_runtimes_F77=no # Source file extension for f77 test sources. ac_ext=f # Object file extension for compiled f77 test sources. objext=o objext_F77=$objext # No sense in running all these tests if we already determined that # the F77 compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. if test "$_lt_disable_F77" != yes; then # Code to be used in simple compile tests lt_simple_compile_test_code="\ subroutine t return end " # Code to be used in simple link tests lt_simple_link_test_code="\ program t end " # ltmain only uses $CC for tagged configurations so make sure $CC is set. # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # save warnings/boilerplate of simple test code ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $RM conftest* ac_outfile=conftest.$ac_objext echo "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $RM -r conftest* # Allow CC to be a program name with arguments. lt_save_CC="$CC" lt_save_GCC=$GCC lt_save_CFLAGS=$CFLAGS CC=${F77-"f77"} CFLAGS=$FFLAGS compiler=$CC compiler_F77=$CC for cc_temp in $compiler""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` GCC=$G77 if test -n "$compiler"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking if libtool supports shared libraries" >&5 $as_echo_n "checking if libtool supports shared libraries... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $can_build_shared" >&5 $as_echo "$can_build_shared" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build shared libraries" >&5 $as_echo_n "checking whether to build shared libraries... " >&6; } test "$can_build_shared" = "no" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[4-9]*) if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no fi ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_shared" >&5 $as_echo "$enable_shared" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build static libraries" >&5 $as_echo_n "checking whether to build static libraries... " >&6; } # Make sure either enable_shared or enable_static is yes. test "$enable_shared" = yes || enable_static=yes { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_static" >&5 $as_echo "$enable_static" >&6; } GCC_F77="$G77" LD_F77="$LD" ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... lt_prog_compiler_wl_F77= lt_prog_compiler_pic_F77= lt_prog_compiler_static_F77= if test "$GCC" = yes; then lt_prog_compiler_wl_F77='-Wl,' lt_prog_compiler_static_F77='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static_F77='-Bstatic' fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support lt_prog_compiler_pic_F77='-fPIC' ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. lt_prog_compiler_pic_F77='-m68020 -resident32 -malways-restore-a4' ;; esac ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries lt_prog_compiler_pic_F77='-DDLL_EXPORT' ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files lt_prog_compiler_pic_F77='-fno-common' ;; haiku*) # PIC is the default for Haiku. # The "-static" flag exists, but is broken. lt_prog_compiler_static_F77= ;; hpux*) # PIC is the default for 64-bit PA HP-UX, but not for 32-bit # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag # sets the default TLS model and affects inlining. case $host_cpu in hppa*64*) # +Z the default ;; *) lt_prog_compiler_pic_F77='-fPIC' ;; esac ;; interix[3-9]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; msdosdjgpp*) # Just because we use GCC doesn't mean we suddenly get shared libraries # on systems that don't support them. lt_prog_compiler_can_build_shared_F77=no enable_shared=no ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. lt_prog_compiler_pic_F77='-fPIC -shared' ;; sysv4*MP*) if test -d /usr/nec; then lt_prog_compiler_pic_F77=-Kconform_pic fi ;; *) lt_prog_compiler_pic_F77='-fPIC' ;; esac case $cc_basename in nvcc*) # Cuda Compiler Driver 2.2 lt_prog_compiler_wl_F77='-Xlinker ' if test -n "$lt_prog_compiler_pic_F77"; then lt_prog_compiler_pic_F77="-Xcompiler $lt_prog_compiler_pic_F77" fi ;; esac else # PORTME Check for flag to pass linker flags through the system compiler. case $host_os in aix*) lt_prog_compiler_wl_F77='-Wl,' if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static_F77='-Bstatic' else lt_prog_compiler_static_F77='-bnso -bI:/lib/syscalls.exp' fi ;; mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). lt_prog_compiler_pic_F77='-DDLL_EXPORT' ;; hpux9* | hpux10* | hpux11*) lt_prog_compiler_wl_F77='-Wl,' # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic_F77='+Z' ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? lt_prog_compiler_static_F77='${wl}-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) lt_prog_compiler_wl_F77='-Wl,' # PIC (with -KPIC) is the default. lt_prog_compiler_static_F77='-non_shared' ;; linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in # old Intel for x86_64 which still supported -KPIC. ecc*) lt_prog_compiler_wl_F77='-Wl,' lt_prog_compiler_pic_F77='-KPIC' lt_prog_compiler_static_F77='-static' ;; # icc used to be incompatible with GCC. # ICC 10 doesn't accept -KPIC any more. icc* | ifort*) lt_prog_compiler_wl_F77='-Wl,' lt_prog_compiler_pic_F77='-fPIC' lt_prog_compiler_static_F77='-static' ;; # Lahey Fortran 8.1. lf95*) lt_prog_compiler_wl_F77='-Wl,' lt_prog_compiler_pic_F77='--shared' lt_prog_compiler_static_F77='--static' ;; nagfor*) # NAG Fortran compiler lt_prog_compiler_wl_F77='-Wl,-Wl,,' lt_prog_compiler_pic_F77='-PIC' lt_prog_compiler_static_F77='-Bstatic' ;; pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group compilers (*not* the Pentium gcc compiler, # which looks to be a dead project) lt_prog_compiler_wl_F77='-Wl,' lt_prog_compiler_pic_F77='-fpic' lt_prog_compiler_static_F77='-Bstatic' ;; ccc*) lt_prog_compiler_wl_F77='-Wl,' # All Alpha code is PIC. lt_prog_compiler_static_F77='-non_shared' ;; xl* | bgxl* | bgf* | mpixl*) # IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene lt_prog_compiler_wl_F77='-Wl,' lt_prog_compiler_pic_F77='-qpic' lt_prog_compiler_static_F77='-qstaticlink' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [1-7].* | *Sun*Fortran*\ 8.[0-3]*) # Sun Fortran 8.3 passes all unrecognized flags to the linker lt_prog_compiler_pic_F77='-KPIC' lt_prog_compiler_static_F77='-Bstatic' lt_prog_compiler_wl_F77='' ;; *Sun\ F* | *Sun*Fortran*) lt_prog_compiler_pic_F77='-KPIC' lt_prog_compiler_static_F77='-Bstatic' lt_prog_compiler_wl_F77='-Qoption ld ' ;; *Sun\ C*) # Sun C 5.9 lt_prog_compiler_pic_F77='-KPIC' lt_prog_compiler_static_F77='-Bstatic' lt_prog_compiler_wl_F77='-Wl,' ;; *Intel*\ [CF]*Compiler*) lt_prog_compiler_wl_F77='-Wl,' lt_prog_compiler_pic_F77='-fPIC' lt_prog_compiler_static_F77='-static' ;; *Portland\ Group*) lt_prog_compiler_wl_F77='-Wl,' lt_prog_compiler_pic_F77='-fpic' lt_prog_compiler_static_F77='-Bstatic' ;; esac ;; esac ;; newsos6) lt_prog_compiler_pic_F77='-KPIC' lt_prog_compiler_static_F77='-Bstatic' ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. lt_prog_compiler_pic_F77='-fPIC -shared' ;; osf3* | osf4* | osf5*) lt_prog_compiler_wl_F77='-Wl,' # All OSF/1 code is PIC. lt_prog_compiler_static_F77='-non_shared' ;; rdos*) lt_prog_compiler_static_F77='-non_shared' ;; solaris*) lt_prog_compiler_pic_F77='-KPIC' lt_prog_compiler_static_F77='-Bstatic' case $cc_basename in f77* | f90* | f95* | sunf77* | sunf90* | sunf95*) lt_prog_compiler_wl_F77='-Qoption ld ';; *) lt_prog_compiler_wl_F77='-Wl,';; esac ;; sunos4*) lt_prog_compiler_wl_F77='-Qoption ld ' lt_prog_compiler_pic_F77='-PIC' lt_prog_compiler_static_F77='-Bstatic' ;; sysv4 | sysv4.2uw2* | sysv4.3*) lt_prog_compiler_wl_F77='-Wl,' lt_prog_compiler_pic_F77='-KPIC' lt_prog_compiler_static_F77='-Bstatic' ;; sysv4*MP*) if test -d /usr/nec ;then lt_prog_compiler_pic_F77='-Kconform_pic' lt_prog_compiler_static_F77='-Bstatic' fi ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) lt_prog_compiler_wl_F77='-Wl,' lt_prog_compiler_pic_F77='-KPIC' lt_prog_compiler_static_F77='-Bstatic' ;; unicos*) lt_prog_compiler_wl_F77='-Wl,' lt_prog_compiler_can_build_shared_F77=no ;; uts4*) lt_prog_compiler_pic_F77='-pic' lt_prog_compiler_static_F77='-Bstatic' ;; *) lt_prog_compiler_can_build_shared_F77=no ;; esac fi case $host_os in # For platforms which do not support PIC, -DPIC is meaningless: *djgpp*) lt_prog_compiler_pic_F77= ;; *) lt_prog_compiler_pic_F77="$lt_prog_compiler_pic_F77" ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5 $as_echo_n "checking for $compiler option to produce PIC... " >&6; } if ${lt_cv_prog_compiler_pic_F77+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_pic_F77=$lt_prog_compiler_pic_F77 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_F77" >&5 $as_echo "$lt_cv_prog_compiler_pic_F77" >&6; } lt_prog_compiler_pic_F77=$lt_cv_prog_compiler_pic_F77 # # Check to make sure the PIC flag actually works. # if test -n "$lt_prog_compiler_pic_F77"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic_F77 works" >&5 $as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic_F77 works... " >&6; } if ${lt_cv_prog_compiler_pic_works_F77+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_pic_works_F77=no ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$lt_prog_compiler_pic_F77" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_pic_works_F77=yes fi fi $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works_F77" >&5 $as_echo "$lt_cv_prog_compiler_pic_works_F77" >&6; } if test x"$lt_cv_prog_compiler_pic_works_F77" = xyes; then case $lt_prog_compiler_pic_F77 in "" | " "*) ;; *) lt_prog_compiler_pic_F77=" $lt_prog_compiler_pic_F77" ;; esac else lt_prog_compiler_pic_F77= lt_prog_compiler_can_build_shared_F77=no fi fi # # Check to make sure the static flag actually works. # wl=$lt_prog_compiler_wl_F77 eval lt_tmp_static_flag=\"$lt_prog_compiler_static_F77\" { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5 $as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } if ${lt_cv_prog_compiler_static_works_F77+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_static_works_F77=no save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS $lt_tmp_static_flag" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&5 $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_static_works_F77=yes fi else lt_cv_prog_compiler_static_works_F77=yes fi fi $RM -r conftest* LDFLAGS="$save_LDFLAGS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works_F77" >&5 $as_echo "$lt_cv_prog_compiler_static_works_F77" >&6; } if test x"$lt_cv_prog_compiler_static_works_F77" = xyes; then : else lt_prog_compiler_static_F77= fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 $as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } if ${lt_cv_prog_compiler_c_o_F77+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_c_o_F77=no $RM -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o_F77=yes fi fi chmod u+w . 2>&5 $RM conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files $RM out/* && rmdir out cd .. $RM -r conftest $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o_F77" >&5 $as_echo "$lt_cv_prog_compiler_c_o_F77" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 $as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } if ${lt_cv_prog_compiler_c_o_F77+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_c_o_F77=no $RM -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o_F77=yes fi fi chmod u+w . 2>&5 $RM conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files $RM out/* && rmdir out cd .. $RM -r conftest $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o_F77" >&5 $as_echo "$lt_cv_prog_compiler_c_o_F77" >&6; } hard_links="nottested" if test "$lt_cv_prog_compiler_c_o_F77" = no && test "$need_locks" != no; then # do not overwrite the value of need_locks provided by the user { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 $as_echo_n "checking if we can lock with hard links... " >&6; } hard_links=yes $RM conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 $as_echo "$hard_links" >&6; } if test "$hard_links" = no; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 $as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} need_locks=warn fi else need_locks=no fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 $as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } runpath_var= allow_undefined_flag_F77= always_export_symbols_F77=no archive_cmds_F77= archive_expsym_cmds_F77= compiler_needs_object_F77=no enable_shared_with_static_runtimes_F77=no export_dynamic_flag_spec_F77= export_symbols_cmds_F77='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' hardcode_automatic_F77=no hardcode_direct_F77=no hardcode_direct_absolute_F77=no hardcode_libdir_flag_spec_F77= hardcode_libdir_separator_F77= hardcode_minus_L_F77=no hardcode_shlibpath_var_F77=unsupported inherit_rpath_F77=no link_all_deplibs_F77=unknown module_cmds_F77= module_expsym_cmds_F77= old_archive_from_new_cmds_F77= old_archive_from_expsyms_cmds_F77= thread_safe_flag_spec_F77= whole_archive_flag_spec_F77= # include_expsyms should be a list of space-separated symbols to be *always* # included in the symbol list include_expsyms_F77= # exclude_expsyms can be an extended regexp of symbols to exclude # it will be wrapped by ` (' and `)$', so one must not match beginning or # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', # as well as any symbol that contains `d'. exclude_expsyms_F77='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out # platforms (ab)use it in PIC code, but their linkers get confused if # the symbol is explicitly referenced. Since portable code cannot # rely on this symbol name, it's probably fine to never include it in # preloaded symbol tables. # Exclude shared library initialization/finalization symbols. extract_expsyms_cmds= case $host_os in cygwin* | mingw* | pw32* | cegcc*) # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. if test "$GCC" != yes; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; openbsd*) with_gnu_ld=no ;; linux* | k*bsd*-gnu | gnu*) link_all_deplibs_F77=no ;; esac ld_shlibs_F77=yes # On some targets, GNU ld is compatible enough with the native linker # that we're better off using the native interface for both. lt_use_gnu_ld_interface=no if test "$with_gnu_ld" = yes; then case $host_os in aix*) # The AIX port of GNU ld has always aspired to compatibility # with the native linker. However, as the warning in the GNU ld # block says, versions before 2.19.5* couldn't really create working # shared libraries, regardless of the interface used. case `$LD -v 2>&1` in *\ \(GNU\ Binutils\)\ 2.19.5*) ;; *\ \(GNU\ Binutils\)\ 2.[2-9]*) ;; *\ \(GNU\ Binutils\)\ [3-9]*) ;; *) lt_use_gnu_ld_interface=yes ;; esac ;; *) lt_use_gnu_ld_interface=yes ;; esac fi if test "$lt_use_gnu_ld_interface" = yes; then # If archive_cmds runs LD, not CC, wlarc should be empty wlarc='${wl}' # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. runpath_var=LD_RUN_PATH hardcode_libdir_flag_spec_F77='${wl}-rpath ${wl}$libdir' export_dynamic_flag_spec_F77='${wl}--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then whole_archive_flag_spec_F77="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else whole_archive_flag_spec_F77= fi supports_anon_versioning=no case `$LD -v 2>&1` in *GNU\ gold*) supports_anon_versioning=yes ;; *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... *\ 2.11.*) ;; # other 2.11 versions *) supports_anon_versioning=yes ;; esac # See if GNU ld supports shared libraries. case $host_os in aix[3-9]*) # On AIX/PPC, the GNU linker is very broken if test "$host_cpu" != ia64; then ld_shlibs_F77=no cat <<_LT_EOF 1>&2 *** Warning: the GNU linker, at least up to release 2.19, is reported *** to be unable to reliably create shared libraries on AIX. *** Therefore, libtool is disabling shared libraries support. If you *** really care for shared libraries, you may want to install binutils *** 2.20 or above, or modify your PATH so that a non-GNU linker is found. *** You will then need to restart the configuration process. _LT_EOF fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_F77='' ;; m68k) archive_cmds_F77='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec_F77='-L$libdir' hardcode_minus_L_F77=yes ;; esac ;; beos*) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then allow_undefined_flag_F77=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME archive_cmds_F77='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else ld_shlibs_F77=no fi ;; cygwin* | mingw* | pw32* | cegcc*) # _LT_TAGVAR(hardcode_libdir_flag_spec, F77) is actually meaningless, # as there is no search path for DLLs. hardcode_libdir_flag_spec_F77='-L$libdir' export_dynamic_flag_spec_F77='${wl}--export-all-symbols' allow_undefined_flag_F77=unsupported always_export_symbols_F77=no enable_shared_with_static_runtimes_F77=yes export_symbols_cmds_F77='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/;s/^.*[ ]__nm__\([^ ]*\)[ ][^ ]*/\1 DATA/;/^I[ ]/d;/^[AITW][ ]/s/.* //'\'' | sort | uniq > $export_symbols' exclude_expsyms_F77='[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname' if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... archive_expsym_cmds_F77='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else ld_shlibs_F77=no fi ;; haiku*) archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' link_all_deplibs_F77=yes ;; interix[3-9]*) hardcode_direct_F77=no hardcode_shlibpath_var_F77=no hardcode_libdir_flag_spec_F77='${wl}-rpath,$libdir' export_dynamic_flag_spec_F77='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. archive_cmds_F77='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' archive_expsym_cmds_F77='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) tmp_diet=no if test "$host_os" = linux-dietlibc; then case $cc_basename in diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) esac fi if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ && test "$tmp_diet" = no then tmp_addflag=' $pic_flag' tmp_sharedflag='-shared' case $cc_basename,$host_cpu in pgcc*) # Portland Group C compiler whole_archive_flag_spec_F77='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group f77 and f90 compilers whole_archive_flag_spec_F77='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag -Mnomain' ;; ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 tmp_addflag=' -i_dynamic' ;; efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 tmp_addflag=' -i_dynamic -nofor_main' ;; ifc* | ifort*) # Intel Fortran compiler tmp_addflag=' -nofor_main' ;; lf95*) # Lahey Fortran 8.1 whole_archive_flag_spec_F77= tmp_sharedflag='--shared' ;; xl[cC]* | bgxl[cC]* | mpixl[cC]*) # IBM XL C 8.0 on PPC (deal with xlf below) tmp_sharedflag='-qmkshrobj' tmp_addflag= ;; nvcc*) # Cuda Compiler Driver 2.2 whole_archive_flag_spec_F77='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' compiler_needs_object_F77=yes ;; esac case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C 5.9 whole_archive_flag_spec_F77='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' compiler_needs_object_F77=yes tmp_sharedflag='-G' ;; *Sun\ F*) # Sun Fortran 8.3 tmp_sharedflag='-G' ;; esac archive_cmds_F77='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' if test "x$supports_anon_versioning" = xyes; then archive_expsym_cmds_F77='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' fi case $cc_basename in xlf* | bgf* | bgxlf* | mpixlf*) # IBM XL Fortran 10.1 on PPC cannot create shared libs itself whole_archive_flag_spec_F77='--whole-archive$convenience --no-whole-archive' hardcode_libdir_flag_spec_F77='${wl}-rpath ${wl}$libdir' archive_cmds_F77='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib' if test "x$supports_anon_versioning" = xyes; then archive_expsym_cmds_F77='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' fi ;; esac else ld_shlibs_F77=no fi ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then archive_cmds_F77='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else archive_cmds_F77='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_F77='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' fi ;; solaris*) if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then ld_shlibs_F77=no cat <<_LT_EOF 1>&2 *** Warning: The releases 2.8.* of the GNU linker cannot reliably *** create shared libraries on Solaris systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.9.1 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then archive_cmds_F77='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_F77='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs_F77=no fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) case `$LD -v 2>&1` in *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) ld_shlibs_F77=no cat <<_LT_EOF 1>&2 *** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not *** reliably create shared libraries on SCO systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.16.91.0.3 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF ;; *) # For security reasons, it is highly recommended that you always # use absolute paths for naming shared libraries, and exclude the # DT_RUNPATH tag from executables and libraries. But doing so # requires that you compile everything twice, which is a pain. if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then hardcode_libdir_flag_spec_F77='${wl}-rpath ${wl}$libdir' archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs_F77=no fi ;; esac ;; sunos4*) archive_cmds_F77='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' wlarc= hardcode_direct_F77=yes hardcode_shlibpath_var_F77=no ;; *) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then archive_cmds_F77='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_F77='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs_F77=no fi ;; esac if test "$ld_shlibs_F77" = no; then runpath_var= hardcode_libdir_flag_spec_F77= export_dynamic_flag_spec_F77= whole_archive_flag_spec_F77= fi else # PORTME fill in a description of your system's linker (not GNU ld) case $host_os in aix3*) allow_undefined_flag_F77=unsupported always_export_symbols_F77=yes archive_expsym_cmds_F77='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. hardcode_minus_L_F77=yes if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. hardcode_direct_F77=unsupported fi ;; aix[4-9]*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm # Also, AIX nm treats weak defined symbols like other global # defined symbols, whereas GNU nm marks them as "W". if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then export_symbols_cmds_F77='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' else export_symbols_cmds_F77='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) for ld_flag in $LDFLAGS; do if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then aix_use_runtimelinking=yes break fi done ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. archive_cmds_F77='' hardcode_direct_F77=yes hardcode_direct_absolute_F77=yes hardcode_libdir_separator_F77=':' link_all_deplibs_F77=yes file_list_spec_F77='${wl}-f,' if test "$GCC" = yes; then case $host_os in aix4.[012]|aix4.[012].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 hardcode_direct_F77=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking hardcode_minus_L_F77=yes hardcode_libdir_flag_spec_F77='-L$libdir' hardcode_libdir_separator_F77= fi ;; esac shared_flag='-shared' if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi link_all_deplibs_F77=no else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi export_dynamic_flag_spec_F77='${wl}-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. always_export_symbols_F77=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. allow_undefined_flag_F77='-berok' # Determine the default libpath from the value encoded in an # empty executable. if test "${lt_cv_aix_libpath+set}" = set; then aix_libpath=$lt_cv_aix_libpath else if ${lt_cv_aix_libpath__F77+:} false; then : $as_echo_n "(cached) " >&6 else cat > conftest.$ac_ext <<_ACEOF program main end _ACEOF if ac_fn_f77_try_link "$LINENO"; then : lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\([^ ]*\) *$/\1/ p } }' lt_cv_aix_libpath__F77=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$lt_cv_aix_libpath__F77"; then lt_cv_aix_libpath__F77=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$lt_cv_aix_libpath__F77"; then lt_cv_aix_libpath__F77="/usr/lib:/lib" fi fi aix_libpath=$lt_cv_aix_libpath__F77 fi hardcode_libdir_flag_spec_F77='${wl}-blibpath:$libdir:'"$aix_libpath" archive_expsym_cmds_F77='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then hardcode_libdir_flag_spec_F77='${wl}-R $libdir:/usr/lib:/lib' allow_undefined_flag_F77="-z nodefs" archive_expsym_cmds_F77="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. if test "${lt_cv_aix_libpath+set}" = set; then aix_libpath=$lt_cv_aix_libpath else if ${lt_cv_aix_libpath__F77+:} false; then : $as_echo_n "(cached) " >&6 else cat > conftest.$ac_ext <<_ACEOF program main end _ACEOF if ac_fn_f77_try_link "$LINENO"; then : lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\([^ ]*\) *$/\1/ p } }' lt_cv_aix_libpath__F77=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$lt_cv_aix_libpath__F77"; then lt_cv_aix_libpath__F77=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$lt_cv_aix_libpath__F77"; then lt_cv_aix_libpath__F77="/usr/lib:/lib" fi fi aix_libpath=$lt_cv_aix_libpath__F77 fi hardcode_libdir_flag_spec_F77='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. no_undefined_flag_F77=' ${wl}-bernotok' allow_undefined_flag_F77=' ${wl}-berok' if test "$with_gnu_ld" = yes; then # We only use this code for GNU lds that support --whole-archive. whole_archive_flag_spec_F77='${wl}--whole-archive$convenience ${wl}--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives whole_archive_flag_spec_F77='$convenience' fi archive_cmds_need_lc_F77=yes # This is similar to how AIX traditionally builds its shared libraries. archive_expsym_cmds_F77="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_F77='' ;; m68k) archive_cmds_F77='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec_F77='-L$libdir' hardcode_minus_L_F77=yes ;; esac ;; bsdi[45]*) export_dynamic_flag_spec_F77=-rdynamic ;; cygwin* | mingw* | pw32* | cegcc*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. case $cc_basename in cl*) # Native MSVC hardcode_libdir_flag_spec_F77=' ' allow_undefined_flag_F77=unsupported always_export_symbols_F77=yes file_list_spec_F77='@' # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. archive_cmds_F77='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' archive_expsym_cmds_F77='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then sed -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; else sed -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; fi~ $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, F77)='true' enable_shared_with_static_runtimes_F77=yes exclude_expsyms_F77='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' export_symbols_cmds_F77='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1,DATA/'\'' | $SED -e '\''/^[AITW][ ]/s/.*[ ]//'\'' | sort | uniq > $export_symbols' # Don't use ranlib old_postinstall_cmds_F77='chmod 644 $oldlib' postlink_cmds_F77='lt_outputfile="@OUTPUT@"~ lt_tool_outputfile="@TOOL_OUTPUT@"~ case $lt_outputfile in *.exe|*.EXE) ;; *) lt_outputfile="$lt_outputfile.exe" lt_tool_outputfile="$lt_tool_outputfile.exe" ;; esac~ if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; $RM "$lt_outputfile.manifest"; fi' ;; *) # Assume MSVC wrapper hardcode_libdir_flag_spec_F77=' ' allow_undefined_flag_F77=unsupported # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. archive_cmds_F77='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. old_archive_from_new_cmds_F77='true' # FIXME: Should let the user specify the lib program. old_archive_cmds_F77='lib -OUT:$oldlib$oldobjs$old_deplibs' enable_shared_with_static_runtimes_F77=yes ;; esac ;; darwin* | rhapsody*) archive_cmds_need_lc_F77=no hardcode_direct_F77=no hardcode_automatic_F77=yes hardcode_shlibpath_var_F77=unsupported if test "$lt_cv_ld_force_load" = "yes"; then whole_archive_flag_spec_F77='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' compiler_needs_object_F77=yes else whole_archive_flag_spec_F77='' fi link_all_deplibs_F77=yes allow_undefined_flag_F77="$_lt_dar_allow_undefined" case $cc_basename in ifort*) _lt_dar_can_shared=yes ;; *) _lt_dar_can_shared=$GCC ;; esac if test "$_lt_dar_can_shared" = "yes"; then output_verbose_link_cmd=func_echo_all archive_cmds_F77="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" module_cmds_F77="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" archive_expsym_cmds_F77="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" module_expsym_cmds_F77="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" else ld_shlibs_F77=no fi ;; dgux*) archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec_F77='-L$libdir' hardcode_shlibpath_var_F77=no ;; # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor # support. Future versions do this automatically, but an explicit c++rt0.o # does not break anything, and helps significantly (at the cost of a little # extra space). freebsd2.2*) archive_cmds_F77='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' hardcode_libdir_flag_spec_F77='-R$libdir' hardcode_direct_F77=yes hardcode_shlibpath_var_F77=no ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. freebsd2.*) archive_cmds_F77='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_direct_F77=yes hardcode_minus_L_F77=yes hardcode_shlibpath_var_F77=no ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. freebsd* | dragonfly*) archive_cmds_F77='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec_F77='-R$libdir' hardcode_direct_F77=yes hardcode_shlibpath_var_F77=no ;; hpux9*) if test "$GCC" = yes; then archive_cmds_F77='$RM $output_objdir/$soname~$CC -shared $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else archive_cmds_F77='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' fi hardcode_libdir_flag_spec_F77='${wl}+b ${wl}$libdir' hardcode_libdir_separator_F77=: hardcode_direct_F77=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L_F77=yes export_dynamic_flag_spec_F77='${wl}-E' ;; hpux10*) if test "$GCC" = yes && test "$with_gnu_ld" = no; then archive_cmds_F77='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds_F77='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi if test "$with_gnu_ld" = no; then hardcode_libdir_flag_spec_F77='${wl}+b ${wl}$libdir' hardcode_libdir_separator_F77=: hardcode_direct_F77=yes hardcode_direct_absolute_F77=yes export_dynamic_flag_spec_F77='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L_F77=yes fi ;; hpux11*) if test "$GCC" = yes && test "$with_gnu_ld" = no; then case $host_cpu in hppa*64*) archive_cmds_F77='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds_F77='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds_F77='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case $host_cpu in hppa*64*) archive_cmds_F77='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds_F77='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds_F77='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac fi if test "$with_gnu_ld" = no; then hardcode_libdir_flag_spec_F77='${wl}+b ${wl}$libdir' hardcode_libdir_separator_F77=: case $host_cpu in hppa*64*|ia64*) hardcode_direct_F77=no hardcode_shlibpath_var_F77=no ;; *) hardcode_direct_F77=yes hardcode_direct_absolute_F77=yes export_dynamic_flag_spec_F77='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L_F77=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) if test "$GCC" = yes; then archive_cmds_F77='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' # Try to use the -exported_symbol ld option, if it does not # work, assume that -exports_file does not work either and # implicitly export all symbols. # This should be the same for all languages, so no per-tag cache variable. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $host_os linker accepts -exported_symbol" >&5 $as_echo_n "checking whether the $host_os linker accepts -exported_symbol... " >&6; } if ${lt_cv_irix_exported_symbol+:} false; then : $as_echo_n "(cached) " >&6 else save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null" cat > conftest.$ac_ext <<_ACEOF subroutine foo end _ACEOF if ac_fn_f77_try_link "$LINENO"; then : lt_cv_irix_exported_symbol=yes else lt_cv_irix_exported_symbol=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LDFLAGS="$save_LDFLAGS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_irix_exported_symbol" >&5 $as_echo "$lt_cv_irix_exported_symbol" >&6; } if test "$lt_cv_irix_exported_symbol" = yes; then archive_expsym_cmds_F77='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib' fi else archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' archive_expsym_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib' fi archive_cmds_need_lc_F77='no' hardcode_libdir_flag_spec_F77='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_F77=: inherit_rpath_F77=yes link_all_deplibs_F77=yes ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then archive_cmds_F77='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else archive_cmds_F77='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF fi hardcode_libdir_flag_spec_F77='-R$libdir' hardcode_direct_F77=yes hardcode_shlibpath_var_F77=no ;; newsos6) archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct_F77=yes hardcode_libdir_flag_spec_F77='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_F77=: hardcode_shlibpath_var_F77=no ;; *nto* | *qnx*) ;; openbsd*) if test -f /usr/libexec/ld.so; then hardcode_direct_F77=yes hardcode_shlibpath_var_F77=no hardcode_direct_absolute_F77=yes if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then archive_cmds_F77='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_F77='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' hardcode_libdir_flag_spec_F77='${wl}-rpath,$libdir' export_dynamic_flag_spec_F77='${wl}-E' else case $host_os in openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) archive_cmds_F77='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec_F77='-R$libdir' ;; *) archive_cmds_F77='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec_F77='${wl}-rpath,$libdir' ;; esac fi else ld_shlibs_F77=no fi ;; os2*) hardcode_libdir_flag_spec_F77='-L$libdir' hardcode_minus_L_F77=yes allow_undefined_flag_F77=unsupported archive_cmds_F77='$ECHO "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~echo DATA >> $output_objdir/$libname.def~echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' old_archive_from_new_cmds_F77='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' ;; osf3*) if test "$GCC" = yes; then allow_undefined_flag_F77=' ${wl}-expect_unresolved ${wl}\*' archive_cmds_F77='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else allow_undefined_flag_F77=' -expect_unresolved \*' archive_cmds_F77='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' fi archive_cmds_need_lc_F77='no' hardcode_libdir_flag_spec_F77='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_F77=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag if test "$GCC" = yes; then allow_undefined_flag_F77=' ${wl}-expect_unresolved ${wl}\*' archive_cmds_F77='$CC -shared${allow_undefined_flag} $pic_flag $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec_F77='${wl}-rpath ${wl}$libdir' else allow_undefined_flag_F77=' -expect_unresolved \*' archive_cmds_F77='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' archive_expsym_cmds_F77='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp' # Both c and cxx compiler support -rpath directly hardcode_libdir_flag_spec_F77='-rpath $libdir' fi archive_cmds_need_lc_F77='no' hardcode_libdir_separator_F77=: ;; solaris*) no_undefined_flag_F77=' -z defs' if test "$GCC" = yes; then wlarc='${wl}' archive_cmds_F77='$CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_F77='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' else case `$CC -V 2>&1` in *"Compilers 5.0"*) wlarc='' archive_cmds_F77='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' archive_expsym_cmds_F77='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' ;; *) wlarc='${wl}' archive_cmds_F77='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_F77='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' ;; esac fi hardcode_libdir_flag_spec_F77='-R$libdir' hardcode_shlibpath_var_F77=no case $host_os in solaris2.[0-5] | solaris2.[0-5].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands `-z linker_flag'. GCC discards it without `$wl', # but is careful enough not to reorder. # Supported since Solaris 2.6 (maybe 2.5.1?) if test "$GCC" = yes; then whole_archive_flag_spec_F77='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' else whole_archive_flag_spec_F77='-z allextract$convenience -z defaultextract' fi ;; esac link_all_deplibs_F77=yes ;; sunos4*) if test "x$host_vendor" = xsequent; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. archive_cmds_F77='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds_F77='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi hardcode_libdir_flag_spec_F77='-L$libdir' hardcode_direct_F77=yes hardcode_minus_L_F77=yes hardcode_shlibpath_var_F77=no ;; sysv4) case $host_vendor in sni) archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct_F77=yes # is this really true??? ;; siemens) ## LD is ld it makes a PLAMLIB ## CC just makes a GrossModule. archive_cmds_F77='$LD -G -o $lib $libobjs $deplibs $linker_flags' reload_cmds_F77='$CC -r -o $output$reload_objs' hardcode_direct_F77=no ;; motorola) archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct_F77=no #Motorola manual says yes, but my tests say they lie ;; esac runpath_var='LD_RUN_PATH' hardcode_shlibpath_var_F77=no ;; sysv4.3*) archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var_F77=no export_dynamic_flag_spec_F77='-Bexport' ;; sysv4*MP*) if test -d /usr/nec; then archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var_F77=no runpath_var=LD_RUN_PATH hardcode_runpath_var=yes ld_shlibs_F77=yes fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) no_undefined_flag_F77='${wl}-z,text' archive_cmds_need_lc_F77=no hardcode_shlibpath_var_F77=no runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then archive_cmds_F77='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_F77='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds_F77='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_F77='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. no_undefined_flag_F77='${wl}-z,text' allow_undefined_flag_F77='${wl}-z,nodefs' archive_cmds_need_lc_F77=no hardcode_shlibpath_var_F77=no hardcode_libdir_flag_spec_F77='${wl}-R,$libdir' hardcode_libdir_separator_F77=':' link_all_deplibs_F77=yes export_dynamic_flag_spec_F77='${wl}-Bexport' runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then archive_cmds_F77='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_F77='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds_F77='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_F77='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; uts4*) archive_cmds_F77='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec_F77='-L$libdir' hardcode_shlibpath_var_F77=no ;; *) ld_shlibs_F77=no ;; esac if test x$host_vendor = xsni; then case $host in sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) export_dynamic_flag_spec_F77='${wl}-Blargedynsym' ;; esac fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs_F77" >&5 $as_echo "$ld_shlibs_F77" >&6; } test "$ld_shlibs_F77" = no && can_build_shared=no with_gnu_ld_F77=$with_gnu_ld # # Do we need to explicitly link libc? # case "x$archive_cmds_need_lc_F77" in x|xyes) # Assume -lc should be added archive_cmds_need_lc_F77=yes if test "$enable_shared" = yes && test "$GCC" = yes; then case $archive_cmds_F77 in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5 $as_echo_n "checking whether -lc should be explicitly linked in... " >&6; } if ${lt_cv_archive_cmds_need_lc_F77+:} false; then : $as_echo_n "(cached) " >&6 else $RM conftest* echo "$lt_simple_compile_test_code" > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$lt_prog_compiler_wl_F77 pic_flag=$lt_prog_compiler_pic_F77 compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$allow_undefined_flag_F77 allow_undefined_flag_F77= if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$archive_cmds_F77 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1\""; } >&5 (eval $archive_cmds_F77 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } then lt_cv_archive_cmds_need_lc_F77=no else lt_cv_archive_cmds_need_lc_F77=yes fi allow_undefined_flag_F77=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_archive_cmds_need_lc_F77" >&5 $as_echo "$lt_cv_archive_cmds_need_lc_F77" >&6; } archive_cmds_need_lc_F77=$lt_cv_archive_cmds_need_lc_F77 ;; esac fi ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 $as_echo_n "checking dynamic linker characteristics... " >&6; } library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=".so" postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown case $host_os in aix3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='${libname}${release}${shared_ext}$major' ;; aix[4-9]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no hardcode_into_libs=yes if test "$host_cpu" = ia64; then # AIX 5 supports IA64 library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line `#! .'. This would cause the generated library to # depend on `.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[01] | aix4.[01].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then : else can_build_shared=no fi ;; esac # AIX (on Power*) has no versioning support, so currently we can not hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. if test "$aix_use_runtimelinking" = yes; then # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' else # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='${libname}${release}.a $libname.a' soname_spec='${libname}${release}${shared_ext}$major' fi shlibpath_var=LIBPATH fi ;; amigaos*) case $host_cpu in powerpc) # Since July 2007 AmigaOS4 officially supports .so libraries. # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' ;; m68k) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; esac ;; beos*) library_names_spec='${libname}${shared_ext}' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[45]*) version_type=linux # correct to gnu/linux during the next big refactor need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32* | cegcc*) version_type=windows shrext_cmds=".dll" need_version=no need_lib_prefix=no case $GCC,$cc_basename in yes,*) # gcc library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname~ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; fi' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' ;; mingw* | cegcc*) # MinGW DLLs use traditional 'lib' prefix soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' ;; esac dynamic_linker='Win32 ld.exe' ;; *,cl*) # Native MSVC libname_spec='$name' soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' library_names_spec='${libname}.dll.lib' case $build_os in mingw*) sys_lib_search_path_spec= lt_save_ifs=$IFS IFS=';' for lt_path in $LIB do IFS=$lt_save_ifs # Let DOS variable expansion print the short 8.3 style file name. lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"` sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path" done IFS=$lt_save_ifs # Convert to MSYS style. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([a-zA-Z]\\):| /\\1|g' -e 's|^ ||'` ;; cygwin*) # Convert to unix form, then to dos form, then back to unix form # but this time dos style (no spaces!) so that the unix form looks # like /cygdrive/c/PROGRA~1:/cygdr... sys_lib_search_path_spec=`cygpath --path --unix "$LIB"` sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null` sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` ;; *) sys_lib_search_path_spec="$LIB" if $ECHO "$sys_lib_search_path_spec" | $GREP ';[c-zC-Z]:/' >/dev/null; then # It is most probably a Windows format PATH. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi # FIXME: find the short name or the path components, as spaces are # common. (e.g. "Program Files" -> "PROGRA~1") ;; esac # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes dynamic_linker='Win32 link.exe' ;; *) # Assume MSVC wrapper library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' dynamic_linker='Win32 ld.exe' ;; esac # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' soname_spec='${libname}${release}${major}$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd* | dragonfly*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. if test -x /usr/bin/objformat; then objformat=`/usr/bin/objformat` else case $host_os in freebsd[23].*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2.*) shlibpath_overrides_runpath=yes ;; freebsd3.[01]* | freebsdelf3.[01]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; *) # from 4.6 on, and DragonFly shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; haiku*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no dynamic_linker="$host_os runtime_loader" library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LIBRARY_PATH shlibpath_overrides_runpath=yes sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' if test "X$HPUX_IA64_MODE" = X32; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" fi sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555, ... postinstall_cmds='chmod 555 $lib' # or fails outright, so override atomically: install_override_mode=555 ;; interix[3-9]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test "$lt_cv_prog_gnu_ld" = yes; then version_type=linux # correct to gnu/linux during the next big refactor else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # Some binutils ld are patched to set DT_RUNPATH if ${lt_cv_shlibpath_overrides_runpath+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_shlibpath_overrides_runpath=no save_LDFLAGS=$LDFLAGS save_libdir=$libdir eval "libdir=/foo; wl=\"$lt_prog_compiler_wl_F77\"; \ LDFLAGS=\"\$LDFLAGS $hardcode_libdir_flag_spec_F77\"" cat > conftest.$ac_ext <<_ACEOF program main end _ACEOF if ac_fn_f77_try_link "$LINENO"; then : if ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null; then : lt_cv_shlibpath_overrides_runpath=yes fi fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LDFLAGS=$save_LDFLAGS libdir=$save_libdir fi shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; netbsdelf*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='NetBSD ld.elf_so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; *nto* | *qnx*) version_type=qnx need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='ldqnx.so' ;; openbsd*) version_type=sunos sys_lib_dlsearch_path_spec="/usr/lib" need_lib_prefix=no # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. case $host_os in openbsd3.3 | openbsd3.3.*) need_version=yes ;; *) need_version=no ;; esac library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then case $host_os in openbsd2.[89] | openbsd2.[89].*) shlibpath_overrides_runpath=no ;; *) shlibpath_overrides_runpath=yes ;; esac else shlibpath_overrides_runpath=yes fi ;; os2*) libname_spec='$name' shrext_cmds=".dll" need_lib_prefix=no library_names_spec='$libname${shared_ext} $libname.a' dynamic_linker='OS/2 ld.exe' shlibpath_var=LIBPATH ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" ;; rdos*) dynamic_linker=no ;; solaris*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test "$with_gnu_ld" = yes; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec ;then version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' soname_spec='$libname${shared_ext}.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=freebsd-elf need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes if test "$with_gnu_ld" = yes; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' case $host_os in sco3.2v5*) sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ;; esac fi sys_lib_dlsearch_path_spec='/usr/lib' ;; tpf*) # TPF is a cross-target only. Preferred cross-host = GNU/Linux. version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; uts4*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 $as_echo "$dynamic_linker" >&6; } test "$dynamic_linker" = no && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test "$GCC" = yes; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" fi if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs" >&5 $as_echo_n "checking how to hardcode library paths into programs... " >&6; } hardcode_action_F77= if test -n "$hardcode_libdir_flag_spec_F77" || test -n "$runpath_var_F77" || test "X$hardcode_automatic_F77" = "Xyes" ; then # We can hardcode non-existent directories. if test "$hardcode_direct_F77" != no && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test "$_LT_TAGVAR(hardcode_shlibpath_var, F77)" != no && test "$hardcode_minus_L_F77" != no; then # Linking always hardcodes the temporary library directory. hardcode_action_F77=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. hardcode_action_F77=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. hardcode_action_F77=unsupported fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action_F77" >&5 $as_echo "$hardcode_action_F77" >&6; } if test "$hardcode_action_F77" = relink || test "$inherit_rpath_F77" = yes; then # Fast installation is not supported enable_fast_install=no elif test "$shlibpath_overrides_runpath" = yes || test "$enable_shared" = no; then # Fast installation is not necessary enable_fast_install=needless fi fi # test -n "$compiler" GCC=$lt_save_GCC CC="$lt_save_CC" CFLAGS="$lt_save_CFLAGS" fi # test "$_lt_disable_F77" != yes ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu ac_config_commands="$ac_config_commands libtool" # Only expand once: # Correct install paths if test x"$prefix" = x -o x"$prefix" = "xNONE"; then : prefix="/usr/local" fi if test x"$exec_prefix" = x -o x"$exec_prefix" = "xNONE"; then : exec_prefix="\${prefix}" fi if test "$docdir" = "\${datarootdir}/doc/\${PACKAGE_TARNAME}"; then : docdir="\${datarootdir}/doc" fi # Checks for header files. for ac_header in stdio.h string.h stdlib.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_mongrel "$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 for ac_func in getline do : ac_fn_c_check_func "$LINENO" "getline" "ac_cv_func_getline" if test "x$ac_cv_func_getline" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_GETLINE 1 _ACEOF have_getline=yes fi done if test "x$have_getline" = xyes ; then CFLAGS="${CFLAGS} -DHAVE_GETLINE" fi use_libz=yes # Check whether --with-libz was given. if test "${with_libz+set}" = set; then : withval=$with_libz; if test x$withval != xno; then use_libz=yes else use_libz=no fi fi if test $use_libz = yes ; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for deflate in -lz" >&5 $as_echo_n "checking for deflate in -lz... " >&6; } if ${ac_cv_lib_z_deflate+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lz $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char deflate (); int main () { return deflate (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_z_deflate=yes else ac_cv_lib_z_deflate=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_z_deflate" >&5 $as_echo "$ac_cv_lib_z_deflate" >&6; } if test "x$ac_cv_lib_z_deflate" = xyes; then : have_libz=yes fi fi if test "x$have_libz" = xyes; then HAVE_LIBZ_TRUE= HAVE_LIBZ_FALSE='#' else HAVE_LIBZ_TRUE='#' HAVE_LIBZ_FALSE= fi # crappy hack: of the macros AC_PROG_{CC,CXX,F77,FC}, only the # first expanded one will check for object file extension etc, # and fail if that doesn't work. ### No fortran by default. # use --with-fortran to build fortran interface use_fortran=yes # Check whether --with-fortran was given. if test "${with_fortran+set}" = set; then : withval=$with_fortran; if test x$withval != xno; then use_fortran=yes else use_fortran=no fi fi if test $use_fortran = yes ; then if test x$F77 = x; then as_fn_error $? "A Fortran compiler is required" "$LINENO" 5 fi fi if test "x$use_fortran" = xyes; then FORTRAN_TRUE= FORTRAN_FALSE='#' else FORTRAN_TRUE='#' FORTRAN_FALSE= fi # MPI stuff use_mpi=yes # Check whether --with-mpi was given. if test "${with_mpi+set}" = set; then : withval=$with_mpi; if test x$withval != xno; then if test x$withval = xyes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } use_mpi_from_system=yes else # use specified path use_mpi_from_system=no mpidir=$withval { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes using $mpidir" >&5 $as_echo "yes using $mpidir" >&6; } MPIDIR=$mpidir fi else # either --without-mpi or --with-mpi=no is set use_mpi=no fi fi if test $use_mpi = yes ; then USE_MPIDIR_FROM_USER=$use_mpi_from_system if test x$use_mpi_from_system = xno; then CPPFLAGS="${CPPFLAGS} -I$mpidir/include " LDFLAGS="${LDFLAGS} -L$mpidir/lib " fi # MPI header ac_fn_c_check_header_mongrel "$LINENO" "mpi.h" "ac_cv_header_mpi_h" "$ac_includes_default" if test "x$ac_cv_header_mpi_h" = xyes; then : enable_mpi=yes fi else enable_mpi=no fi if test "x$enable_mpi" = xyes; then USE_MPI_TRUE= USE_MPI_FALSE='#' else USE_MPI_TRUE='#' USE_MPI_FALSE= fi # OTF stuff use_internal_otf=yes otf_asked=no use_otf=yes # Check whether --with-otf was given. if test "${with_otf+set}" = set; then : withval=$with_otf; if test x$withval != xno; then otf_asked=yes if test x$withval = xyes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } use_internal_otf=yes else # use specified path use_internal_otf=no otfdir=$withval { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes using $otfdir" >&5 $as_echo "yes using $otfdir" >&6; } OTFDIR=$otfdir OTF_INC=$otfdir/include OTF_LIB=$otfdir/lib fi else # either --without-otf or --with-otf=no is set use_internal_otf=no use_otf=no fi fi # Check whether --with-otf-include was given. if test "${with_otf_include+set}" = set; then : withval=$with_otf_include; if test x$withval != xno; then otf_asked=yes if test x$withval = xyes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } use_internal_otf=yes else # use specified path use_internal_otf=no otf_inc_dir=$withval { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes using $otf_inc_dir" >&5 $as_echo "yes using $otf_inc_dir" >&6; } OTF_INC=$otf_inc_dir OTF_INC=$otf_inc_dir fi fi fi # Check whether --with-otf-lib was given. if test "${with_otf_lib+set}" = set; then : withval=$with_otf_lib; if test x$withval != xno; then otf_asked=yes if test x$withval = xyes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } use_internal_otf=yes else # use specified path use_internal_otf=no otf_lib_dir=$withval { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes using $otf_lib_dir" >&5 $as_echo "yes using $otf_lib_dir" >&6; } OTF_LIB=$otf_lib_dir OTF_LIB=$otf_lib_dir fi fi fi if test $use_otf = yes ; then enable_otf=yes if test x$use_internal_otf = xno; then CPPFLAGS="${CPPFLAGS} -I$OTF_INC/" LDFLAGS="${LDFLAGS} -L$OTF_LIB" # Check for OTF header ac_fn_c_check_header_mongrel "$LINENO" "otf.h" "ac_cv_header_otf_h" "$ac_includes_default" if test "x$ac_cv_header_otf_h" = xyes; then : enable_otf=yes else { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Cannot find libOTF." >&5 $as_echo "$as_me: WARNING: Cannot find libOTF." >&2;} fi if test $enable_otf = no && test $otf_asked = yes ; then as_fn_error $? "Cannot find libOTF." "$LINENO" 5 fi else otf_parent_dir=`pwd` otf_dir="extlib/otf" { $as_echo "$as_me:${as_lineno-$LINENO}: configuring in otf_dir ($otf_parent_dir/$otf_dir)" >&5 $as_echo "$as_me: configuring in otf_dir ($otf_parent_dir/$otf_dir)" >&6;} if test "$srcdir" != "."; then : test -d "$otf_dir" || mkdir -p "$otf_dir" || as_fn_error $? "cannot create $otf_dir" "$LINENO" 5 fi cd $otf_dir case $srcdir in .) otf_srcdir="$srcdir" ;; /*) otf_srcdir="$srcdir/$otf_dir" ;; *) otf_srcdir="../../$srcdir/$otf_dir" ;; esac otf_conf_cmd="$otf_srcdir/configure" otf_conf_args="$otf_conf_args --prefix=\"$prefix\" --exec-prefix=\"$exec_prefix\" --bindir=\"$bindir\" --libdir=\"$libdir\" --includedir=\"$includedir\" --docdir=\"$docdir/otf\" $OTFFLAGS --cache-file=\"/dev/null\" --srcdir=\"$otf_srcdir\"" { $as_echo "$as_me:${as_lineno-$LINENO}: running $SHELL $otf_conf_cmd $otf_conf_args" >&5 $as_echo "$as_me: running $SHELL $otf_conf_cmd $otf_conf_args" >&6;} eval "$SHELL '$otf_conf_cmd' $otf_conf_args" if test $? != "0"; then : as_fn_error $? "$otf_conf_cmd failed for $otf_dir" "$LINENO" 5 fi cd $otf_parent_dir if test x"$OTFLIB" = x; then : OTF_LDFLAGS="-lotf" fi # OTF_CPPFLAGS="$OTF_CPPFLAGS -I${prefix}/include/otf" # CPPFLAGS="${CPPFLAGS} -I${prefix}/include/otf" fi else enable_otf=no fi if test "x$enable_otf" = xyes; then USE_OTF_TRUE= USE_OTF_FALSE='#' else USE_OTF_TRUE='#' USE_OTF_FALSE= fi { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: use otf = $use_internal_otf" >&5 $as_echo "$as_me: WARNING: use otf = $use_internal_otf" >&2;} if test x"$use_internal_otf" != "xyes"; then DONT_USE_INTERNAL_OTF_TRUE= DONT_USE_INTERNAL_OTF_FALSE='#' else DONT_USE_INTERNAL_OTF_TRUE='#' DONT_USE_INTERNAL_OTF_FALSE= fi # Checks for programs # Extract the first word of "doxygen", so it can be a program name with args. set dummy doxygen; 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_HAVE_DOXYGEN+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$HAVE_DOXYGEN"; then ac_cv_prog_HAVE_DOXYGEN="$HAVE_DOXYGEN" # 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 as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_HAVE_DOXYGEN="yes" $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 test -z "$ac_cv_prog_HAVE_DOXYGEN" && ac_cv_prog_HAVE_DOXYGEN="no" fi fi HAVE_DOXYGEN=$ac_cv_prog_HAVE_DOXYGEN if test -n "$HAVE_DOXYGEN"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $HAVE_DOXYGEN" >&5 $as_echo "$HAVE_DOXYGEN" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test x$HAVE_DOXYGEN = xno ; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Cannot find doxygen" >&5 $as_echo "$as_me: WARNING: Cannot find doxygen" >&2;} fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}pdflatex", so it can be a program name with args. set dummy ${ac_tool_prefix}pdflatex; 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_PDFLATEX+:} false; then : $as_echo_n "(cached) " >&6 else case $PDFLATEX in [\\/]* | ?:[\\/]*) ac_cv_path_PDFLATEX="$PDFLATEX" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_PDFLATEX="$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 PDFLATEX=$ac_cv_path_PDFLATEX if test -n "$PDFLATEX"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PDFLATEX" >&5 $as_echo "$PDFLATEX" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_path_PDFLATEX"; then ac_pt_PDFLATEX=$PDFLATEX # Extract the first word of "pdflatex", so it can be a program name with args. set dummy pdflatex; 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_PDFLATEX+:} false; then : $as_echo_n "(cached) " >&6 else case $ac_pt_PDFLATEX in [\\/]* | ?:[\\/]*) ac_cv_path_ac_pt_PDFLATEX="$ac_pt_PDFLATEX" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_ac_pt_PDFLATEX="$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_PDFLATEX=$ac_cv_path_ac_pt_PDFLATEX if test -n "$ac_pt_PDFLATEX"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_PDFLATEX" >&5 $as_echo "$ac_pt_PDFLATEX" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_pt_PDFLATEX" = x; then PDFLATEX="no" 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 PDFLATEX=$ac_pt_PDFLATEX fi else PDFLATEX="$ac_cv_path_PDFLATEX" fi if test "x$PDFLATEX" != xno; then USE_PDFLATEX_TRUE= USE_PDFLATEX_FALSE='#' else USE_PDFLATEX_TRUE='#' USE_PDFLATEX_FALSE= fi if test "x$HAVE_DOXYGEN" = xyes; then USE_DOXYGEN_TRUE= USE_DOXYGEN_FALSE='#' else USE_DOXYGEN_TRUE='#' USE_DOXYGEN_FALSE= fi subdirs="$subdirs extlib/otf" ac_config_files="$ac_config_files Makefile gtg.pc extlib/Makefile inc/Makefile src/Makefile doc/Makefile doc/Doxyfile" 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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking that generated files are newer than configure" >&5 $as_echo_n "checking that generated files are newer than configure... " >&6; } if test -n "$am_sleep_pid"; then # Hide warnings about reused PIDs. wait $am_sleep_pid 2>/dev/null fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 $as_echo "done" >&6; } if test -n "$EXEEXT"; then am__EXEEXT_TRUE= am__EXEEXT_FALSE='#' else am__EXEEXT_TRUE='#' am__EXEEXT_FALSE= 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 if test -z "${HAVE_LIBZ_TRUE}" && test -z "${HAVE_LIBZ_FALSE}"; then as_fn_error $? "conditional \"HAVE_LIBZ\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${FORTRAN_TRUE}" && test -z "${FORTRAN_FALSE}"; then as_fn_error $? "conditional \"FORTRAN\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${USE_MPI_TRUE}" && test -z "${USE_MPI_FALSE}"; then as_fn_error $? "conditional \"USE_MPI\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${USE_OTF_TRUE}" && test -z "${USE_OTF_FALSE}"; then as_fn_error $? "conditional \"USE_OTF\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${DONT_USE_INTERNAL_OTF_TRUE}" && test -z "${DONT_USE_INTERNAL_OTF_FALSE}"; then as_fn_error $? "conditional \"DONT_USE_INTERNAL_OTF\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${USE_PDFLATEX_TRUE}" && test -z "${USE_PDFLATEX_FALSE}"; then as_fn_error $? "conditional \"USE_PDFLATEX\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${USE_DOXYGEN_TRUE}" && test -z "${USE_DOXYGEN_FALSE}"; then as_fn_error $? "conditional \"USE_DOXYGEN\" 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 -pR'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -pR' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -pR' fi else as_ln_s='cp -pR' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null # as_fn_mkdir_p # ------------- # Create "$as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi # as_fn_executable_p FILE # ----------------------- # Test if FILE is an executable regular file. as_fn_executable_p () { test -f "$1" && test -x "$1" } # as_fn_executable_p as_test_x='test -x' as_executable_p=as_fn_executable_p # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" exec 6>&1 ## ----------------------------------- ## ## Main body of $CONFIG_STATUS script. ## ## ----------------------------------- ## _ASEOF test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Save the log message, to keep $0 and so on meaningful, and to # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" This file was extended by GTG $as_me 0.2-2, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES CONFIG_HEADERS = $CONFIG_HEADERS CONFIG_LINKS = $CONFIG_LINKS CONFIG_COMMANDS = $CONFIG_COMMANDS $ $0 $@ on `(hostname || uname -n) 2>/dev/null | sed 1q` " _ACEOF case $ac_config_files in *" "*) set x $ac_config_files; shift; ac_config_files=$*;; esac cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # Files that config.status was made for. config_files="$ac_config_files" 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="\\ GTG config.status 0.2-2 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" Copyright (C) 2012 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." ac_pwd='$ac_pwd' srcdir='$srcdir' INSTALL='$INSTALL' MKDIR_P='$MKDIR_P' 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" # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH sed_quote_subst='$sed_quote_subst' double_quote_subst='$double_quote_subst' delay_variable_subst='$delay_variable_subst' macro_version='`$ECHO "$macro_version" | $SED "$delay_single_quote_subst"`' macro_revision='`$ECHO "$macro_revision" | $SED "$delay_single_quote_subst"`' enable_shared='`$ECHO "$enable_shared" | $SED "$delay_single_quote_subst"`' enable_static='`$ECHO "$enable_static" | $SED "$delay_single_quote_subst"`' pic_mode='`$ECHO "$pic_mode" | $SED "$delay_single_quote_subst"`' enable_fast_install='`$ECHO "$enable_fast_install" | $SED "$delay_single_quote_subst"`' SHELL='`$ECHO "$SHELL" | $SED "$delay_single_quote_subst"`' ECHO='`$ECHO "$ECHO" | $SED "$delay_single_quote_subst"`' PATH_SEPARATOR='`$ECHO "$PATH_SEPARATOR" | $SED "$delay_single_quote_subst"`' host_alias='`$ECHO "$host_alias" | $SED "$delay_single_quote_subst"`' host='`$ECHO "$host" | $SED "$delay_single_quote_subst"`' host_os='`$ECHO "$host_os" | $SED "$delay_single_quote_subst"`' build_alias='`$ECHO "$build_alias" | $SED "$delay_single_quote_subst"`' build='`$ECHO "$build" | $SED "$delay_single_quote_subst"`' build_os='`$ECHO "$build_os" | $SED "$delay_single_quote_subst"`' SED='`$ECHO "$SED" | $SED "$delay_single_quote_subst"`' Xsed='`$ECHO "$Xsed" | $SED "$delay_single_quote_subst"`' GREP='`$ECHO "$GREP" | $SED "$delay_single_quote_subst"`' EGREP='`$ECHO "$EGREP" | $SED "$delay_single_quote_subst"`' FGREP='`$ECHO "$FGREP" | $SED "$delay_single_quote_subst"`' LD='`$ECHO "$LD" | $SED "$delay_single_quote_subst"`' NM='`$ECHO "$NM" | $SED "$delay_single_quote_subst"`' LN_S='`$ECHO "$LN_S" | $SED "$delay_single_quote_subst"`' max_cmd_len='`$ECHO "$max_cmd_len" | $SED "$delay_single_quote_subst"`' ac_objext='`$ECHO "$ac_objext" | $SED "$delay_single_quote_subst"`' exeext='`$ECHO "$exeext" | $SED "$delay_single_quote_subst"`' lt_unset='`$ECHO "$lt_unset" | $SED "$delay_single_quote_subst"`' lt_SP2NL='`$ECHO "$lt_SP2NL" | $SED "$delay_single_quote_subst"`' lt_NL2SP='`$ECHO "$lt_NL2SP" | $SED "$delay_single_quote_subst"`' lt_cv_to_host_file_cmd='`$ECHO "$lt_cv_to_host_file_cmd" | $SED "$delay_single_quote_subst"`' lt_cv_to_tool_file_cmd='`$ECHO "$lt_cv_to_tool_file_cmd" | $SED "$delay_single_quote_subst"`' reload_flag='`$ECHO "$reload_flag" | $SED "$delay_single_quote_subst"`' reload_cmds='`$ECHO "$reload_cmds" | $SED "$delay_single_quote_subst"`' OBJDUMP='`$ECHO "$OBJDUMP" | $SED "$delay_single_quote_subst"`' deplibs_check_method='`$ECHO "$deplibs_check_method" | $SED "$delay_single_quote_subst"`' file_magic_cmd='`$ECHO "$file_magic_cmd" | $SED "$delay_single_quote_subst"`' file_magic_glob='`$ECHO "$file_magic_glob" | $SED "$delay_single_quote_subst"`' want_nocaseglob='`$ECHO "$want_nocaseglob" | $SED "$delay_single_quote_subst"`' DLLTOOL='`$ECHO "$DLLTOOL" | $SED "$delay_single_quote_subst"`' sharedlib_from_linklib_cmd='`$ECHO "$sharedlib_from_linklib_cmd" | $SED "$delay_single_quote_subst"`' AR='`$ECHO "$AR" | $SED "$delay_single_quote_subst"`' AR_FLAGS='`$ECHO "$AR_FLAGS" | $SED "$delay_single_quote_subst"`' archiver_list_spec='`$ECHO "$archiver_list_spec" | $SED "$delay_single_quote_subst"`' STRIP='`$ECHO "$STRIP" | $SED "$delay_single_quote_subst"`' RANLIB='`$ECHO "$RANLIB" | $SED "$delay_single_quote_subst"`' old_postinstall_cmds='`$ECHO "$old_postinstall_cmds" | $SED "$delay_single_quote_subst"`' old_postuninstall_cmds='`$ECHO "$old_postuninstall_cmds" | $SED "$delay_single_quote_subst"`' old_archive_cmds='`$ECHO "$old_archive_cmds" | $SED "$delay_single_quote_subst"`' lock_old_archive_extraction='`$ECHO "$lock_old_archive_extraction" | $SED "$delay_single_quote_subst"`' CC='`$ECHO "$CC" | $SED "$delay_single_quote_subst"`' CFLAGS='`$ECHO "$CFLAGS" | $SED "$delay_single_quote_subst"`' compiler='`$ECHO "$compiler" | $SED "$delay_single_quote_subst"`' GCC='`$ECHO "$GCC" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_pipe='`$ECHO "$lt_cv_sys_global_symbol_pipe" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_cdecl='`$ECHO "$lt_cv_sys_global_symbol_to_cdecl" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_c_name_address='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address_lib_prefix" | $SED "$delay_single_quote_subst"`' nm_file_list_spec='`$ECHO "$nm_file_list_spec" | $SED "$delay_single_quote_subst"`' lt_sysroot='`$ECHO "$lt_sysroot" | $SED "$delay_single_quote_subst"`' objdir='`$ECHO "$objdir" | $SED "$delay_single_quote_subst"`' MAGIC_CMD='`$ECHO "$MAGIC_CMD" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_no_builtin_flag='`$ECHO "$lt_prog_compiler_no_builtin_flag" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_pic='`$ECHO "$lt_prog_compiler_pic" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_wl='`$ECHO "$lt_prog_compiler_wl" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_static='`$ECHO "$lt_prog_compiler_static" | $SED "$delay_single_quote_subst"`' lt_cv_prog_compiler_c_o='`$ECHO "$lt_cv_prog_compiler_c_o" | $SED "$delay_single_quote_subst"`' need_locks='`$ECHO "$need_locks" | $SED "$delay_single_quote_subst"`' MANIFEST_TOOL='`$ECHO "$MANIFEST_TOOL" | $SED "$delay_single_quote_subst"`' DSYMUTIL='`$ECHO "$DSYMUTIL" | $SED "$delay_single_quote_subst"`' NMEDIT='`$ECHO "$NMEDIT" | $SED "$delay_single_quote_subst"`' LIPO='`$ECHO "$LIPO" | $SED "$delay_single_quote_subst"`' OTOOL='`$ECHO "$OTOOL" | $SED "$delay_single_quote_subst"`' OTOOL64='`$ECHO "$OTOOL64" | $SED "$delay_single_quote_subst"`' libext='`$ECHO "$libext" | $SED "$delay_single_quote_subst"`' shrext_cmds='`$ECHO "$shrext_cmds" | $SED "$delay_single_quote_subst"`' extract_expsyms_cmds='`$ECHO "$extract_expsyms_cmds" | $SED "$delay_single_quote_subst"`' archive_cmds_need_lc='`$ECHO "$archive_cmds_need_lc" | $SED "$delay_single_quote_subst"`' enable_shared_with_static_runtimes='`$ECHO "$enable_shared_with_static_runtimes" | $SED "$delay_single_quote_subst"`' export_dynamic_flag_spec='`$ECHO "$export_dynamic_flag_spec" | $SED "$delay_single_quote_subst"`' whole_archive_flag_spec='`$ECHO "$whole_archive_flag_spec" | $SED "$delay_single_quote_subst"`' compiler_needs_object='`$ECHO "$compiler_needs_object" | $SED "$delay_single_quote_subst"`' old_archive_from_new_cmds='`$ECHO "$old_archive_from_new_cmds" | $SED "$delay_single_quote_subst"`' old_archive_from_expsyms_cmds='`$ECHO "$old_archive_from_expsyms_cmds" | $SED "$delay_single_quote_subst"`' archive_cmds='`$ECHO "$archive_cmds" | $SED "$delay_single_quote_subst"`' archive_expsym_cmds='`$ECHO "$archive_expsym_cmds" | $SED "$delay_single_quote_subst"`' module_cmds='`$ECHO "$module_cmds" | $SED "$delay_single_quote_subst"`' module_expsym_cmds='`$ECHO "$module_expsym_cmds" | $SED "$delay_single_quote_subst"`' with_gnu_ld='`$ECHO "$with_gnu_ld" | $SED "$delay_single_quote_subst"`' allow_undefined_flag='`$ECHO "$allow_undefined_flag" | $SED "$delay_single_quote_subst"`' no_undefined_flag='`$ECHO "$no_undefined_flag" | $SED "$delay_single_quote_subst"`' hardcode_libdir_flag_spec='`$ECHO "$hardcode_libdir_flag_spec" | $SED "$delay_single_quote_subst"`' hardcode_libdir_separator='`$ECHO "$hardcode_libdir_separator" | $SED "$delay_single_quote_subst"`' hardcode_direct='`$ECHO "$hardcode_direct" | $SED "$delay_single_quote_subst"`' hardcode_direct_absolute='`$ECHO "$hardcode_direct_absolute" | $SED "$delay_single_quote_subst"`' hardcode_minus_L='`$ECHO "$hardcode_minus_L" | $SED "$delay_single_quote_subst"`' hardcode_shlibpath_var='`$ECHO "$hardcode_shlibpath_var" | $SED "$delay_single_quote_subst"`' hardcode_automatic='`$ECHO "$hardcode_automatic" | $SED "$delay_single_quote_subst"`' inherit_rpath='`$ECHO "$inherit_rpath" | $SED "$delay_single_quote_subst"`' link_all_deplibs='`$ECHO "$link_all_deplibs" | $SED "$delay_single_quote_subst"`' always_export_symbols='`$ECHO "$always_export_symbols" | $SED "$delay_single_quote_subst"`' export_symbols_cmds='`$ECHO "$export_symbols_cmds" | $SED "$delay_single_quote_subst"`' exclude_expsyms='`$ECHO "$exclude_expsyms" | $SED "$delay_single_quote_subst"`' include_expsyms='`$ECHO "$include_expsyms" | $SED "$delay_single_quote_subst"`' prelink_cmds='`$ECHO "$prelink_cmds" | $SED "$delay_single_quote_subst"`' postlink_cmds='`$ECHO "$postlink_cmds" | $SED "$delay_single_quote_subst"`' file_list_spec='`$ECHO "$file_list_spec" | $SED "$delay_single_quote_subst"`' variables_saved_for_relink='`$ECHO "$variables_saved_for_relink" | $SED "$delay_single_quote_subst"`' need_lib_prefix='`$ECHO "$need_lib_prefix" | $SED "$delay_single_quote_subst"`' need_version='`$ECHO "$need_version" | $SED "$delay_single_quote_subst"`' version_type='`$ECHO "$version_type" | $SED "$delay_single_quote_subst"`' runpath_var='`$ECHO "$runpath_var" | $SED "$delay_single_quote_subst"`' shlibpath_var='`$ECHO "$shlibpath_var" | $SED "$delay_single_quote_subst"`' shlibpath_overrides_runpath='`$ECHO "$shlibpath_overrides_runpath" | $SED "$delay_single_quote_subst"`' libname_spec='`$ECHO "$libname_spec" | $SED "$delay_single_quote_subst"`' library_names_spec='`$ECHO "$library_names_spec" | $SED "$delay_single_quote_subst"`' soname_spec='`$ECHO "$soname_spec" | $SED "$delay_single_quote_subst"`' install_override_mode='`$ECHO "$install_override_mode" | $SED "$delay_single_quote_subst"`' postinstall_cmds='`$ECHO "$postinstall_cmds" | $SED "$delay_single_quote_subst"`' postuninstall_cmds='`$ECHO "$postuninstall_cmds" | $SED "$delay_single_quote_subst"`' finish_cmds='`$ECHO "$finish_cmds" | $SED "$delay_single_quote_subst"`' finish_eval='`$ECHO "$finish_eval" | $SED "$delay_single_quote_subst"`' hardcode_into_libs='`$ECHO "$hardcode_into_libs" | $SED "$delay_single_quote_subst"`' sys_lib_search_path_spec='`$ECHO "$sys_lib_search_path_spec" | $SED "$delay_single_quote_subst"`' sys_lib_dlsearch_path_spec='`$ECHO "$sys_lib_dlsearch_path_spec" | $SED "$delay_single_quote_subst"`' hardcode_action='`$ECHO "$hardcode_action" | $SED "$delay_single_quote_subst"`' enable_dlopen='`$ECHO "$enable_dlopen" | $SED "$delay_single_quote_subst"`' enable_dlopen_self='`$ECHO "$enable_dlopen_self" | $SED "$delay_single_quote_subst"`' enable_dlopen_self_static='`$ECHO "$enable_dlopen_self_static" | $SED "$delay_single_quote_subst"`' old_striplib='`$ECHO "$old_striplib" | $SED "$delay_single_quote_subst"`' striplib='`$ECHO "$striplib" | $SED "$delay_single_quote_subst"`' LD_F77='`$ECHO "$LD_F77" | $SED "$delay_single_quote_subst"`' reload_flag_F77='`$ECHO "$reload_flag_F77" | $SED "$delay_single_quote_subst"`' reload_cmds_F77='`$ECHO "$reload_cmds_F77" | $SED "$delay_single_quote_subst"`' old_archive_cmds_F77='`$ECHO "$old_archive_cmds_F77" | $SED "$delay_single_quote_subst"`' compiler_F77='`$ECHO "$compiler_F77" | $SED "$delay_single_quote_subst"`' GCC_F77='`$ECHO "$GCC_F77" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_no_builtin_flag_F77='`$ECHO "$lt_prog_compiler_no_builtin_flag_F77" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_pic_F77='`$ECHO "$lt_prog_compiler_pic_F77" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_wl_F77='`$ECHO "$lt_prog_compiler_wl_F77" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_static_F77='`$ECHO "$lt_prog_compiler_static_F77" | $SED "$delay_single_quote_subst"`' lt_cv_prog_compiler_c_o_F77='`$ECHO "$lt_cv_prog_compiler_c_o_F77" | $SED "$delay_single_quote_subst"`' archive_cmds_need_lc_F77='`$ECHO "$archive_cmds_need_lc_F77" | $SED "$delay_single_quote_subst"`' enable_shared_with_static_runtimes_F77='`$ECHO "$enable_shared_with_static_runtimes_F77" | $SED "$delay_single_quote_subst"`' export_dynamic_flag_spec_F77='`$ECHO "$export_dynamic_flag_spec_F77" | $SED "$delay_single_quote_subst"`' whole_archive_flag_spec_F77='`$ECHO "$whole_archive_flag_spec_F77" | $SED "$delay_single_quote_subst"`' compiler_needs_object_F77='`$ECHO "$compiler_needs_object_F77" | $SED "$delay_single_quote_subst"`' old_archive_from_new_cmds_F77='`$ECHO "$old_archive_from_new_cmds_F77" | $SED "$delay_single_quote_subst"`' old_archive_from_expsyms_cmds_F77='`$ECHO "$old_archive_from_expsyms_cmds_F77" | $SED "$delay_single_quote_subst"`' archive_cmds_F77='`$ECHO "$archive_cmds_F77" | $SED "$delay_single_quote_subst"`' archive_expsym_cmds_F77='`$ECHO "$archive_expsym_cmds_F77" | $SED "$delay_single_quote_subst"`' module_cmds_F77='`$ECHO "$module_cmds_F77" | $SED "$delay_single_quote_subst"`' module_expsym_cmds_F77='`$ECHO "$module_expsym_cmds_F77" | $SED "$delay_single_quote_subst"`' with_gnu_ld_F77='`$ECHO "$with_gnu_ld_F77" | $SED "$delay_single_quote_subst"`' allow_undefined_flag_F77='`$ECHO "$allow_undefined_flag_F77" | $SED "$delay_single_quote_subst"`' no_undefined_flag_F77='`$ECHO "$no_undefined_flag_F77" | $SED "$delay_single_quote_subst"`' hardcode_libdir_flag_spec_F77='`$ECHO "$hardcode_libdir_flag_spec_F77" | $SED "$delay_single_quote_subst"`' hardcode_libdir_separator_F77='`$ECHO "$hardcode_libdir_separator_F77" | $SED "$delay_single_quote_subst"`' hardcode_direct_F77='`$ECHO "$hardcode_direct_F77" | $SED "$delay_single_quote_subst"`' hardcode_direct_absolute_F77='`$ECHO "$hardcode_direct_absolute_F77" | $SED "$delay_single_quote_subst"`' hardcode_minus_L_F77='`$ECHO "$hardcode_minus_L_F77" | $SED "$delay_single_quote_subst"`' hardcode_shlibpath_var_F77='`$ECHO "$hardcode_shlibpath_var_F77" | $SED "$delay_single_quote_subst"`' hardcode_automatic_F77='`$ECHO "$hardcode_automatic_F77" | $SED "$delay_single_quote_subst"`' inherit_rpath_F77='`$ECHO "$inherit_rpath_F77" | $SED "$delay_single_quote_subst"`' link_all_deplibs_F77='`$ECHO "$link_all_deplibs_F77" | $SED "$delay_single_quote_subst"`' always_export_symbols_F77='`$ECHO "$always_export_symbols_F77" | $SED "$delay_single_quote_subst"`' export_symbols_cmds_F77='`$ECHO "$export_symbols_cmds_F77" | $SED "$delay_single_quote_subst"`' exclude_expsyms_F77='`$ECHO "$exclude_expsyms_F77" | $SED "$delay_single_quote_subst"`' include_expsyms_F77='`$ECHO "$include_expsyms_F77" | $SED "$delay_single_quote_subst"`' prelink_cmds_F77='`$ECHO "$prelink_cmds_F77" | $SED "$delay_single_quote_subst"`' postlink_cmds_F77='`$ECHO "$postlink_cmds_F77" | $SED "$delay_single_quote_subst"`' file_list_spec_F77='`$ECHO "$file_list_spec_F77" | $SED "$delay_single_quote_subst"`' hardcode_action_F77='`$ECHO "$hardcode_action_F77" | $SED "$delay_single_quote_subst"`' LTCC='$LTCC' LTCFLAGS='$LTCFLAGS' compiler='$compiler_DEFAULT' # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF \$1 _LTECHO_EOF' } # Quote evaled strings. for var in SHELL \ ECHO \ PATH_SEPARATOR \ SED \ GREP \ EGREP \ FGREP \ LD \ NM \ LN_S \ lt_SP2NL \ lt_NL2SP \ reload_flag \ OBJDUMP \ deplibs_check_method \ file_magic_cmd \ file_magic_glob \ want_nocaseglob \ DLLTOOL \ sharedlib_from_linklib_cmd \ AR \ AR_FLAGS \ archiver_list_spec \ STRIP \ RANLIB \ CC \ CFLAGS \ compiler \ lt_cv_sys_global_symbol_pipe \ lt_cv_sys_global_symbol_to_cdecl \ lt_cv_sys_global_symbol_to_c_name_address \ lt_cv_sys_global_symbol_to_c_name_address_lib_prefix \ nm_file_list_spec \ lt_prog_compiler_no_builtin_flag \ lt_prog_compiler_pic \ lt_prog_compiler_wl \ lt_prog_compiler_static \ lt_cv_prog_compiler_c_o \ need_locks \ MANIFEST_TOOL \ DSYMUTIL \ NMEDIT \ LIPO \ OTOOL \ OTOOL64 \ shrext_cmds \ export_dynamic_flag_spec \ whole_archive_flag_spec \ compiler_needs_object \ with_gnu_ld \ allow_undefined_flag \ no_undefined_flag \ hardcode_libdir_flag_spec \ hardcode_libdir_separator \ exclude_expsyms \ include_expsyms \ file_list_spec \ variables_saved_for_relink \ libname_spec \ library_names_spec \ soname_spec \ install_override_mode \ finish_eval \ old_striplib \ striplib \ LD_F77 \ reload_flag_F77 \ compiler_F77 \ lt_prog_compiler_no_builtin_flag_F77 \ lt_prog_compiler_pic_F77 \ lt_prog_compiler_wl_F77 \ lt_prog_compiler_static_F77 \ lt_cv_prog_compiler_c_o_F77 \ export_dynamic_flag_spec_F77 \ whole_archive_flag_spec_F77 \ compiler_needs_object_F77 \ with_gnu_ld_F77 \ allow_undefined_flag_F77 \ no_undefined_flag_F77 \ hardcode_libdir_flag_spec_F77 \ hardcode_libdir_separator_F77 \ exclude_expsyms_F77 \ include_expsyms_F77 \ file_list_spec_F77; do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[\\\\\\\`\\"\\\$]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done # Double-quote double-evaled strings. for var in reload_cmds \ old_postinstall_cmds \ old_postuninstall_cmds \ old_archive_cmds \ extract_expsyms_cmds \ old_archive_from_new_cmds \ old_archive_from_expsyms_cmds \ archive_cmds \ archive_expsym_cmds \ module_cmds \ module_expsym_cmds \ export_symbols_cmds \ prelink_cmds \ postlink_cmds \ postinstall_cmds \ postuninstall_cmds \ finish_cmds \ sys_lib_search_path_spec \ sys_lib_dlsearch_path_spec \ reload_cmds_F77 \ old_archive_cmds_F77 \ old_archive_from_new_cmds_F77 \ old_archive_from_expsyms_cmds_F77 \ archive_cmds_F77 \ archive_expsym_cmds_F77 \ module_cmds_F77 \ module_expsym_cmds_F77 \ export_symbols_cmds_F77 \ prelink_cmds_F77 \ postlink_cmds_F77; do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[\\\\\\\`\\"\\\$]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done ac_aux_dir='$ac_aux_dir' xsi_shell='$xsi_shell' lt_shell_append='$lt_shell_append' # See if we are running on zsh, and set the options which allow our # commands through without removal of \ escapes INIT. if test -n "\${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi PACKAGE='$PACKAGE' VERSION='$VERSION' TIMESTAMP='$TIMESTAMP' RM='$RM' ofile='$ofile' _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" ;; "libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;; "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; "gtg.pc") CONFIG_FILES="$CONFIG_FILES gtg.pc" ;; "extlib/Makefile") CONFIG_FILES="$CONFIG_FILES extlib/Makefile" ;; "inc/Makefile") CONFIG_FILES="$CONFIG_FILES inc/Makefile" ;; "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;; "doc/Makefile") CONFIG_FILES="$CONFIG_FILES doc/Makefile" ;; "doc/Doxyfile") CONFIG_FILES="$CONFIG_FILES doc/Doxyfile" ;; *) 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"" || { # Older Autoconf 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"` # 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'`; 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 } ;; "libtool":C) # See if we are running on zsh, and set the options which allow our # commands through without removal of \ escapes. if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi cfgfile="${ofile}T" trap "$RM \"$cfgfile\"; exit 1" 1 2 15 $RM "$cfgfile" cat <<_LT_EOF >> "$cfgfile" #! $SHELL # `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services. # Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # NOTE: Changes made to this file will be lost: look at ltmain.sh. # # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, # 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # Written by Gordon Matzigkeit, 1996 # # This file is part of GNU Libtool. # # GNU Libtool 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. # # As a special exception to the GNU General Public License, # if you distribute this file as part of a program or library that # is built using GNU Libtool, you may include this file under the # same distribution terms that you use for the rest of that program. # # GNU Libtool 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 GNU Libtool; see the file COPYING. If not, a copy # can be downloaded from http://www.gnu.org/licenses/gpl.html, or # obtained by writing to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # The names of the tagged configurations supported by this script. available_tags="F77 " # ### BEGIN LIBTOOL CONFIG # Which release of libtool.m4 was used? macro_version=$macro_version macro_revision=$macro_revision # Whether or not to build shared libraries. build_libtool_libs=$enable_shared # Whether or not to build static libraries. build_old_libs=$enable_static # What type of objects to build. pic_mode=$pic_mode # Whether or not to optimize for fast installation. fast_install=$enable_fast_install # Shell to use when invoking shell scripts. SHELL=$lt_SHELL # An echo program that protects backslashes. ECHO=$lt_ECHO # The PATH separator for the build system. PATH_SEPARATOR=$lt_PATH_SEPARATOR # The host system. host_alias=$host_alias host=$host host_os=$host_os # The build system. build_alias=$build_alias build=$build build_os=$build_os # A sed program that does not truncate output. SED=$lt_SED # Sed that helps us avoid accidentally triggering echo(1) options like -n. Xsed="\$SED -e 1s/^X//" # A grep program that handles long lines. GREP=$lt_GREP # An ERE matcher. EGREP=$lt_EGREP # A literal string matcher. FGREP=$lt_FGREP # A BSD- or MS-compatible name lister. NM=$lt_NM # Whether we need soft or hard links. LN_S=$lt_LN_S # What is the maximum length of a command? max_cmd_len=$max_cmd_len # Object file suffix (normally "o"). objext=$ac_objext # Executable file suffix (normally ""). exeext=$exeext # whether the shell understands "unset". lt_unset=$lt_unset # turn spaces into newlines. SP2NL=$lt_lt_SP2NL # turn newlines into spaces. NL2SP=$lt_lt_NL2SP # convert \$build file names to \$host format. to_host_file_cmd=$lt_cv_to_host_file_cmd # convert \$build files to toolchain format. to_tool_file_cmd=$lt_cv_to_tool_file_cmd # An object symbol dumper. OBJDUMP=$lt_OBJDUMP # Method to check whether dependent libraries are shared objects. deplibs_check_method=$lt_deplibs_check_method # Command to use when deplibs_check_method = "file_magic". file_magic_cmd=$lt_file_magic_cmd # How to find potential files when deplibs_check_method = "file_magic". file_magic_glob=$lt_file_magic_glob # Find potential files using nocaseglob when deplibs_check_method = "file_magic". want_nocaseglob=$lt_want_nocaseglob # DLL creation program. DLLTOOL=$lt_DLLTOOL # Command to associate shared and link libraries. sharedlib_from_linklib_cmd=$lt_sharedlib_from_linklib_cmd # The archiver. AR=$lt_AR # Flags to create an archive. AR_FLAGS=$lt_AR_FLAGS # How to feed a file listing to the archiver. archiver_list_spec=$lt_archiver_list_spec # A symbol stripping program. STRIP=$lt_STRIP # Commands used to install an old-style archive. RANLIB=$lt_RANLIB old_postinstall_cmds=$lt_old_postinstall_cmds old_postuninstall_cmds=$lt_old_postuninstall_cmds # Whether to use a lock for old archive extraction. lock_old_archive_extraction=$lock_old_archive_extraction # A C compiler. LTCC=$lt_CC # LTCC compiler flags. LTCFLAGS=$lt_CFLAGS # Take the output of nm and produce a listing of raw symbols and C names. global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe # Transform the output of nm in a proper C declaration. global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl # Transform the output of nm in a C name address pair. global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address # Transform the output of nm in a C name address pair when lib prefix is needed. global_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix # Specify filename containing input files for \$NM. nm_file_list_spec=$lt_nm_file_list_spec # The root where to search for dependent libraries,and in which our libraries should be installed. lt_sysroot=$lt_sysroot # The name of the directory that contains temporary libtool files. objdir=$objdir # Used to examine libraries when file_magic_cmd begins with "file". MAGIC_CMD=$MAGIC_CMD # Must we lock files when doing compilation? need_locks=$lt_need_locks # Manifest tool. MANIFEST_TOOL=$lt_MANIFEST_TOOL # Tool to manipulate archived DWARF debug symbol files on Mac OS X. DSYMUTIL=$lt_DSYMUTIL # Tool to change global to local symbols on Mac OS X. NMEDIT=$lt_NMEDIT # Tool to manipulate fat objects and archives on Mac OS X. LIPO=$lt_LIPO # ldd/readelf like tool for Mach-O binaries on Mac OS X. OTOOL=$lt_OTOOL # ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4. OTOOL64=$lt_OTOOL64 # Old archive suffix (normally "a"). libext=$libext # Shared library suffix (normally ".so"). shrext_cmds=$lt_shrext_cmds # The commands to extract the exported symbol list from a shared archive. extract_expsyms_cmds=$lt_extract_expsyms_cmds # Variables whose values should be saved in libtool wrapper scripts and # restored at link time. variables_saved_for_relink=$lt_variables_saved_for_relink # Do we need the "lib" prefix for modules? need_lib_prefix=$need_lib_prefix # Do we need a version for libraries? need_version=$need_version # Library versioning type. version_type=$version_type # Shared library runtime path variable. runpath_var=$runpath_var # Shared library path variable. shlibpath_var=$shlibpath_var # Is shlibpath searched before the hard-coded library search path? shlibpath_overrides_runpath=$shlibpath_overrides_runpath # Format of library name prefix. libname_spec=$lt_libname_spec # List of archive names. First name is the real one, the rest are links. # The last name is the one that the linker finds with -lNAME library_names_spec=$lt_library_names_spec # The coded name of the library, if different from the real name. soname_spec=$lt_soname_spec # Permission mode override for installation of shared libraries. install_override_mode=$lt_install_override_mode # Command to use after installation of a shared archive. postinstall_cmds=$lt_postinstall_cmds # Command to use after uninstallation of a shared archive. postuninstall_cmds=$lt_postuninstall_cmds # Commands used to finish a libtool library installation in a directory. finish_cmds=$lt_finish_cmds # As "finish_cmds", except a single script fragment to be evaled but # not shown. finish_eval=$lt_finish_eval # Whether we should hardcode library paths into libraries. hardcode_into_libs=$hardcode_into_libs # Compile-time system search path for libraries. sys_lib_search_path_spec=$lt_sys_lib_search_path_spec # Run-time system search path for libraries. sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec # Whether dlopen is supported. dlopen_support=$enable_dlopen # Whether dlopen of programs is supported. dlopen_self=$enable_dlopen_self # Whether dlopen of statically linked programs is supported. dlopen_self_static=$enable_dlopen_self_static # Commands to strip libraries. old_striplib=$lt_old_striplib striplib=$lt_striplib # The linker used to build libraries. LD=$lt_LD # How to create reloadable object files. reload_flag=$lt_reload_flag reload_cmds=$lt_reload_cmds # Commands used to build an old-style archive. old_archive_cmds=$lt_old_archive_cmds # A language specific compiler. CC=$lt_compiler # Is the compiler the GNU compiler? with_gcc=$GCC # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag # Additional compiler flags for building library objects. pic_flag=$lt_lt_prog_compiler_pic # How to pass a linker flag through the compiler. wl=$lt_lt_prog_compiler_wl # Compiler flag to prevent dynamic linking. link_static_flag=$lt_lt_prog_compiler_static # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_lt_cv_prog_compiler_c_o # Whether or not to add -lc for building shared libraries. build_libtool_need_lc=$archive_cmds_need_lc # Whether or not to disallow shared libs when runtime libs are static. allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes # Compiler flag to allow reflexive dlopens. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec # Compiler flag to generate shared objects directly from archives. whole_archive_flag_spec=$lt_whole_archive_flag_spec # Whether the compiler copes with passing no objects directly. compiler_needs_object=$lt_compiler_needs_object # Create an old-style archive from a shared archive. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds # Create a temporary old-style archive to link instead of a shared archive. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds # Commands used to build a shared archive. archive_cmds=$lt_archive_cmds archive_expsym_cmds=$lt_archive_expsym_cmds # Commands used to build a loadable module if different from building # a shared archive. module_cmds=$lt_module_cmds module_expsym_cmds=$lt_module_expsym_cmds # Whether we are building with GNU ld or not. with_gnu_ld=$lt_with_gnu_ld # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_allow_undefined_flag # Flag that enforces no undefined symbols. no_undefined_flag=$lt_no_undefined_flag # Flag to hardcode \$libdir into a binary during linking. # This must work even if \$libdir does not exist hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec # Whether we need a single "-rpath" flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator # Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes # DIR into the resulting binary. hardcode_direct=$hardcode_direct # Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes # DIR into the resulting binary and the resulting library dependency is # "absolute",i.e impossible to change by setting \${shlibpath_var} if the # library is relocated. hardcode_direct_absolute=$hardcode_direct_absolute # Set to "yes" if using the -LDIR flag during linking hardcodes DIR # into the resulting binary. hardcode_minus_L=$hardcode_minus_L # Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR # into the resulting binary. hardcode_shlibpath_var=$hardcode_shlibpath_var # Set to "yes" if building a shared library automatically hardcodes DIR # into the library and all subsequent libraries and executables linked # against it. hardcode_automatic=$hardcode_automatic # Set to yes if linker adds runtime paths of dependent libraries # to runtime path list. inherit_rpath=$inherit_rpath # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$link_all_deplibs # Set to "yes" if exported symbols are required. always_export_symbols=$always_export_symbols # The commands to list exported symbols. export_symbols_cmds=$lt_export_symbols_cmds # Symbols that should not be listed in the preloaded symbols. exclude_expsyms=$lt_exclude_expsyms # Symbols that must always be exported. include_expsyms=$lt_include_expsyms # Commands necessary for linking programs (against libraries) with templates. prelink_cmds=$lt_prelink_cmds # Commands necessary for finishing linking programs. postlink_cmds=$lt_postlink_cmds # Specify filename containing input files. file_list_spec=$lt_file_list_spec # How to hardcode a shared library path into an executable. hardcode_action=$hardcode_action # ### END LIBTOOL CONFIG _LT_EOF case $host_os in aix3*) cat <<\_LT_EOF >> "$cfgfile" # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test "X${COLLECT_NAMES+set}" != Xset; then COLLECT_NAMES= export COLLECT_NAMES fi _LT_EOF ;; esac ltmain="$ac_aux_dir/ltmain.sh" # We use sed instead of cat because bash on DJGPP gets confused if # if finds mixed CR/LF and LF-only lines. Since sed operates in # text mode, it properly converts lines to CR/LF. This bash problem # is reportedly fixed, but why not run on old versions too? sed '$q' "$ltmain" >> "$cfgfile" \ || (rm -f "$cfgfile"; exit 1) if test x"$xsi_shell" = xyes; then sed -e '/^func_dirname ()$/,/^} # func_dirname /c\ func_dirname ()\ {\ \ case ${1} in\ \ */*) func_dirname_result="${1%/*}${2}" ;;\ \ * ) func_dirname_result="${3}" ;;\ \ esac\ } # Extended-shell func_dirname implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_basename ()$/,/^} # func_basename /c\ func_basename ()\ {\ \ func_basename_result="${1##*/}"\ } # Extended-shell func_basename implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_dirname_and_basename ()$/,/^} # func_dirname_and_basename /c\ func_dirname_and_basename ()\ {\ \ case ${1} in\ \ */*) func_dirname_result="${1%/*}${2}" ;;\ \ * ) func_dirname_result="${3}" ;;\ \ esac\ \ func_basename_result="${1##*/}"\ } # Extended-shell func_dirname_and_basename implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_stripname ()$/,/^} # func_stripname /c\ func_stripname ()\ {\ \ # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are\ \ # positional parameters, so assign one to ordinary parameter first.\ \ func_stripname_result=${3}\ \ func_stripname_result=${func_stripname_result#"${1}"}\ \ func_stripname_result=${func_stripname_result%"${2}"}\ } # Extended-shell func_stripname implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_split_long_opt ()$/,/^} # func_split_long_opt /c\ func_split_long_opt ()\ {\ \ func_split_long_opt_name=${1%%=*}\ \ func_split_long_opt_arg=${1#*=}\ } # Extended-shell func_split_long_opt implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_split_short_opt ()$/,/^} # func_split_short_opt /c\ func_split_short_opt ()\ {\ \ func_split_short_opt_arg=${1#??}\ \ func_split_short_opt_name=${1%"$func_split_short_opt_arg"}\ } # Extended-shell func_split_short_opt implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_lo2o ()$/,/^} # func_lo2o /c\ func_lo2o ()\ {\ \ case ${1} in\ \ *.lo) func_lo2o_result=${1%.lo}.${objext} ;;\ \ *) func_lo2o_result=${1} ;;\ \ esac\ } # Extended-shell func_lo2o implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_xform ()$/,/^} # func_xform /c\ func_xform ()\ {\ func_xform_result=${1%.*}.lo\ } # Extended-shell func_xform implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_arith ()$/,/^} # func_arith /c\ func_arith ()\ {\ func_arith_result=$(( $* ))\ } # Extended-shell func_arith implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_len ()$/,/^} # func_len /c\ func_len ()\ {\ func_len_result=${#1}\ } # Extended-shell func_len implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: fi if test x"$lt_shell_append" = xyes; then sed -e '/^func_append ()$/,/^} # func_append /c\ func_append ()\ {\ eval "${1}+=\\${2}"\ } # Extended-shell func_append implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_append_quoted ()$/,/^} # func_append_quoted /c\ func_append_quoted ()\ {\ \ func_quote_for_eval "${2}"\ \ eval "${1}+=\\\\ \\$func_quote_for_eval_result"\ } # Extended-shell func_append_quoted implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: # Save a `func_append' function call where possible by direct use of '+=' sed -e 's%func_append \([a-zA-Z_]\{1,\}\) "%\1+="%g' $cfgfile > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: else # Save a `func_append' function call even when '+=' is not available sed -e 's%func_append \([a-zA-Z_]\{1,\}\) "%\1="$\1%g' $cfgfile > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: fi if test x"$_lt_function_replace_fail" = x":"; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Unable to substitute extended shell functions in $ofile" >&5 $as_echo "$as_me: WARNING: Unable to substitute extended shell functions in $ofile" >&2;} fi mv -f "$cfgfile" "$ofile" || (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") chmod +x "$ofile" cat <<_LT_EOF >> "$ofile" # ### BEGIN LIBTOOL TAG CONFIG: F77 # The linker used to build libraries. LD=$lt_LD_F77 # How to create reloadable object files. reload_flag=$lt_reload_flag_F77 reload_cmds=$lt_reload_cmds_F77 # Commands used to build an old-style archive. old_archive_cmds=$lt_old_archive_cmds_F77 # A language specific compiler. CC=$lt_compiler_F77 # Is the compiler the GNU compiler? with_gcc=$GCC_F77 # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_F77 # Additional compiler flags for building library objects. pic_flag=$lt_lt_prog_compiler_pic_F77 # How to pass a linker flag through the compiler. wl=$lt_lt_prog_compiler_wl_F77 # Compiler flag to prevent dynamic linking. link_static_flag=$lt_lt_prog_compiler_static_F77 # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_lt_cv_prog_compiler_c_o_F77 # Whether or not to add -lc for building shared libraries. build_libtool_need_lc=$archive_cmds_need_lc_F77 # Whether or not to disallow shared libs when runtime libs are static. allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_F77 # Compiler flag to allow reflexive dlopens. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_F77 # Compiler flag to generate shared objects directly from archives. whole_archive_flag_spec=$lt_whole_archive_flag_spec_F77 # Whether the compiler copes with passing no objects directly. compiler_needs_object=$lt_compiler_needs_object_F77 # Create an old-style archive from a shared archive. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_F77 # Create a temporary old-style archive to link instead of a shared archive. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_F77 # Commands used to build a shared archive. archive_cmds=$lt_archive_cmds_F77 archive_expsym_cmds=$lt_archive_expsym_cmds_F77 # Commands used to build a loadable module if different from building # a shared archive. module_cmds=$lt_module_cmds_F77 module_expsym_cmds=$lt_module_expsym_cmds_F77 # Whether we are building with GNU ld or not. with_gnu_ld=$lt_with_gnu_ld_F77 # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_allow_undefined_flag_F77 # Flag that enforces no undefined symbols. no_undefined_flag=$lt_no_undefined_flag_F77 # Flag to hardcode \$libdir into a binary during linking. # This must work even if \$libdir does not exist hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_F77 # Whether we need a single "-rpath" flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator_F77 # Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes # DIR into the resulting binary. hardcode_direct=$hardcode_direct_F77 # Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes # DIR into the resulting binary and the resulting library dependency is # "absolute",i.e impossible to change by setting \${shlibpath_var} if the # library is relocated. hardcode_direct_absolute=$hardcode_direct_absolute_F77 # Set to "yes" if using the -LDIR flag during linking hardcodes DIR # into the resulting binary. hardcode_minus_L=$hardcode_minus_L_F77 # Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR # into the resulting binary. hardcode_shlibpath_var=$hardcode_shlibpath_var_F77 # Set to "yes" if building a shared library automatically hardcodes DIR # into the library and all subsequent libraries and executables linked # against it. hardcode_automatic=$hardcode_automatic_F77 # Set to yes if linker adds runtime paths of dependent libraries # to runtime path list. inherit_rpath=$inherit_rpath_F77 # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$link_all_deplibs_F77 # Set to "yes" if exported symbols are required. always_export_symbols=$always_export_symbols_F77 # The commands to list exported symbols. export_symbols_cmds=$lt_export_symbols_cmds_F77 # Symbols that should not be listed in the preloaded symbols. exclude_expsyms=$lt_exclude_expsyms_F77 # Symbols that must always be exported. include_expsyms=$lt_include_expsyms_F77 # Commands necessary for linking programs (against libraries) with templates. prelink_cmds=$lt_prelink_cmds_F77 # Commands necessary for finishing linking programs. postlink_cmds=$lt_postlink_cmds_F77 # Specify filename containing input files. file_list_spec=$lt_file_list_spec_F77 # How to hardcode a shared library path into an executable. hardcode_action=$hardcode_action_F77 # ### END LIBTOOL TAG CONFIG: F77 _LT_EOF ;; 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 # # CONFIG_SUBDIRS section. # if test "$no_recursion" != yes; then # Remove --cache-file, --srcdir, and --disable-option-checking arguments # so they do not pile up. ac_sub_configure_args= ac_prev= eval "set x $ac_configure_args" shift for ac_arg do if test -n "$ac_prev"; then ac_prev= continue fi case $ac_arg in -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=*) ;; --config-cache | -C) ;; -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) ac_prev=srcdir ;; -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) ;; -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) ac_prev=prefix ;; -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) ;; --disable-option-checking) ;; *) case $ac_arg in *\'*) ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; esac as_fn_append ac_sub_configure_args " '$ac_arg'" ;; esac done # Always prepend --prefix to ensure using the same prefix # in subdir configurations. ac_arg="--prefix=$prefix" case $ac_arg in *\'*) ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; esac ac_sub_configure_args="'$ac_arg' $ac_sub_configure_args" # Pass --silent if test "$silent" = yes; then ac_sub_configure_args="--silent $ac_sub_configure_args" fi # Always prepend --disable-option-checking to silence warnings, since # different subdirs can have different --enable and --with options. ac_sub_configure_args="--disable-option-checking $ac_sub_configure_args" ac_popdir=`pwd` for ac_dir in : $subdirs; do test "x$ac_dir" = x: && continue # Do not complain, so a configure script can configure whichever # parts of a large source tree are present. test -d "$srcdir/$ac_dir" || continue ac_msg="=== configuring in $ac_dir (`pwd`/$ac_dir)" $as_echo "$as_me:${as_lineno-$LINENO}: $ac_msg" >&5 $as_echo "$ac_msg" >&6 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 cd "$ac_dir" # Check for guested configure; otherwise get Cygnus style configure. if test -f "$ac_srcdir/configure.gnu"; then ac_sub_configure=$ac_srcdir/configure.gnu elif test -f "$ac_srcdir/configure"; then ac_sub_configure=$ac_srcdir/configure elif test -f "$ac_srcdir/configure.in"; then # This should be Cygnus configure. ac_sub_configure=$ac_aux_dir/configure else { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: no configuration information is in $ac_dir" >&5 $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2;} ac_sub_configure= fi # The recursion is here. if test -n "$ac_sub_configure"; then # Make the cache file name correct relative to the subdirectory. case $cache_file in [\\/]* | ?:[\\/]* ) ac_sub_cache_file=$cache_file ;; *) # Relative name. ac_sub_cache_file=$ac_top_build_prefix$cache_file ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: running $SHELL $ac_sub_configure $ac_sub_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_srcdir" >&5 $as_echo "$as_me: running $SHELL $ac_sub_configure $ac_sub_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_srcdir" >&6;} # The eval makes quoting arguments work. eval "\$SHELL \"\$ac_sub_configure\" $ac_sub_configure_args \ --cache-file=\"\$ac_sub_cache_file\" --srcdir=\"\$ac_srcdir\"" || as_fn_error $? "$ac_sub_configure failed for $ac_dir" "$LINENO" 5 fi cd "$ac_popdir" done 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 gtg-trace-0.2-2+dfsg/configure.ac000066400000000000000000000201411234554746700166130ustar00rootroot00000000000000# Copyright © CNRS, INRIA, Université Bordeaux 1 # See COPYING in top-level directory. # -*- Autoconf -*- # Process this file with autoconf to produce a configure script. AC_PREREQ([2.61]) AC_INIT([GTG], [0.2-2], [gtg-devel@lists.gforge.inria.fr]) AM_INIT_AUTOMAKE([1.10 subdir-objects]) # Checks for programs. AC_PROG_CC AC_PROG_F77 AC_PROG_INSTALL AC_PROG_MAKE_SET AC_PROG_LIBTOOL AM_PROG_CC_C_O # Correct install paths AS_IF([test x"$prefix" = x -o x"$prefix" = "xNONE"], [prefix="/usr/local"]) AS_IF([test x"$exec_prefix" = x -o x"$exec_prefix" = "xNONE"], [exec_prefix="\${prefix}"]) AS_IF([test "$docdir" = "\${datarootdir}/doc/\${PACKAGE_TARNAME}"], [docdir="\${datarootdir}/doc"]) # Checks for header files. AC_CHECK_HEADERS([stdio.h string.h stdlib.h]) AC_CHECK_FUNCS([getline], have_getline=yes) if [ test "x$have_getline" = xyes ]; then CFLAGS="${CFLAGS} -DHAVE_GETLINE" fi use_libz=yes AC_ARG_WITH(libz, [AS_HELP_STRING([--with-libz[=]], [Enable libZ])], [ if test x$withval != xno; then use_libz=yes else use_libz=no fi ]) if [ test $use_libz = yes ]; then AC_CHECK_LIB(z, deflate, have_libz=yes) fi AM_CONDITIONAL([HAVE_LIBZ], [ test "x$have_libz" = xyes]) # crappy hack: of the macros AC_PROG_{CC,CXX,F77,FC}, only the # first expanded one will check for object file extension etc, # and fail if that doesn't work. ### No fortran by default. # use --with-fortran to build fortran interface use_fortran=yes AC_ARG_WITH(fortran, [AS_HELP_STRING([--with-fortran[=]], [Enable fortran])], [ if test x$withval != xno; then use_fortran=yes else use_fortran=no fi ]) if [ test $use_fortran = yes ]; then if test x$F77 = x; then AC_MSG_ERROR(A Fortran compiler is required) fi fi AM_CONDITIONAL([FORTRAN], [test "x$use_fortran" = xyes]) # MPI stuff use_mpi=yes AC_ARG_WITH(mpi, [AS_HELP_STRING([--with-mpi[=]], [Use a specific MPI installation])], [ if test x$withval != xno; then if test x$withval = xyes; then AC_MSG_RESULT(yes) use_mpi_from_system=yes else # use specified path use_mpi_from_system=no mpidir=$withval AC_MSG_RESULT(yes using $mpidir) AC_SUBST(MPIDIR, $mpidir) fi else # either --without-mpi or --with-mpi=no is set use_mpi=no fi ]) if test $use_mpi = yes ; then AC_SUBST(USE_MPIDIR_FROM_USER,$use_mpi_from_system) if test x$use_mpi_from_system = xno; then CPPFLAGS="${CPPFLAGS} -I$mpidir/include " LDFLAGS="${LDFLAGS} -L$mpidir/lib " fi # MPI header AC_CHECK_HEADER([mpi.h],[enable_mpi=yes],) else enable_mpi=no fi AM_CONDITIONAL([USE_MPI], [test "x$enable_mpi" = xyes]) # OTF stuff use_internal_otf=yes otf_asked=no use_otf=yes AC_ARG_WITH(otf, [AS_HELP_STRING([--with-otf[=]], [Use a specific OTF installation])], [ if test x$withval != xno; then otf_asked=yes if test x$withval = xyes; then AC_MSG_RESULT(yes) use_internal_otf=yes else # use specified path use_internal_otf=no otfdir=$withval AC_MSG_RESULT(yes using $otfdir) AC_SUBST(OTFDIR, $otfdir) OTF_INC=$otfdir/include OTF_LIB=$otfdir/lib fi else # either --without-otf or --with-otf=no is set use_internal_otf=no use_otf=no fi ]) AC_ARG_WITH(otf-include, [AS_HELP_STRING([--with-otf-include[=]], [Use a specific OTF header directory])], [ if test x$withval != xno; then otf_asked=yes if test x$withval = xyes; then AC_MSG_RESULT(yes) use_internal_otf=yes else # use specified path use_internal_otf=no otf_inc_dir=$withval AC_MSG_RESULT(yes using $otf_inc_dir) OTF_INC=$otf_inc_dir AC_SUBST(OTF_INC, $otf_inc_dir) fi fi ]) AC_ARG_WITH(otf-lib, [AS_HELP_STRING([--with-otf-lib[=]], [Use a specific libotf.so directory])], [ if test x$withval != xno; then otf_asked=yes if test x$withval = xyes; then AC_MSG_RESULT(yes) use_internal_otf=yes else # use specified path use_internal_otf=no otf_lib_dir=$withval AC_MSG_RESULT(yes using $otf_lib_dir) OTF_LIB=$otf_lib_dir AC_SUBST(OTF_LIB, $otf_lib_dir) fi fi ]) if test $use_otf = yes ; then enable_otf=yes if test x$use_internal_otf = xno; then CPPFLAGS="${CPPFLAGS} -I$OTF_INC/" LDFLAGS="${LDFLAGS} -L$OTF_LIB" # Check for OTF header AC_CHECK_HEADER([otf.h],[enable_otf=yes], AC_MSG_WARN([Cannot find libOTF.])) if test $enable_otf = no && test $otf_asked = yes ; then AC_MSG_ERROR(Cannot find libOTF.) fi else dnl configure otf from extlib otf_parent_dir=`pwd` otf_dir="extlib/otf" AC_MSG_NOTICE([configuring in otf_dir ($otf_parent_dir/$otf_dir)]) AS_IF([test "$srcdir" != "."], [ test -d "$otf_dir" || mkdir -p "$otf_dir" || AC_MSG_ERROR([cannot create $otf_dir]) ]) cd $otf_dir case $srcdir in .) otf_srcdir="$srcdir" ;; /*) otf_srcdir="$srcdir/$otf_dir" ;; *) otf_srcdir="../../$srcdir/$otf_dir" ;; esac otf_conf_cmd="$otf_srcdir/configure" otf_conf_args="$otf_conf_args --prefix=\"$prefix\" --exec-prefix=\"$exec_prefix\" --bindir=\"$bindir\" --libdir=\"$libdir\" --includedir=\"$includedir\" --docdir=\"$docdir/otf\" $OTFFLAGS --cache-file=\"/dev/null\" --srcdir=\"$otf_srcdir\"" AC_MSG_NOTICE([running $SHELL $otf_conf_cmd $otf_conf_args]) eval "$SHELL '$otf_conf_cmd' $otf_conf_args" AS_IF([test $? != "0"], [AC_MSG_ERROR([$otf_conf_cmd failed for $otf_dir])]) cd $otf_parent_dir AS_IF([test x"$OTFLIB" = x], [OTF_LDFLAGS="-lotf"]) # OTF_CPPFLAGS="$OTF_CPPFLAGS -I${prefix}/include/otf" # CPPFLAGS="${CPPFLAGS} -I${prefix}/include/otf" fi else enable_otf=no fi AM_CONDITIONAL([USE_OTF], [test "x$enable_otf" = xyes]) AC_MSG_WARN([use otf = $use_internal_otf]) AM_CONDITIONAL(DONT_USE_INTERNAL_OTF, test x"$use_internal_otf" != "xyes") # Checks for programs AC_CHECK_PROG(HAVE_DOXYGEN, [doxygen], yes, no) if test x$HAVE_DOXYGEN = xno ; then AC_MSG_WARN([Cannot find doxygen]) fi AC_ARG_VAR([PDFLATEX], [Location of the pdflatex program (required for building the hwloc doxygen documentation)]) AC_PATH_TOOL([PDFLATEX], [pdflatex], no) AM_CONDITIONAL([USE_PDFLATEX], [test "x$PDFLATEX" != xno]) AM_CONDITIONAL([USE_DOXYGEN], [test "x$HAVE_DOXYGEN" = xyes]) AC_CONFIG_SUBDIRS([extlib/otf]) AC_OUTPUT([Makefile \ gtg.pc \ extlib/Makefile \ inc/Makefile \ src/Makefile \ doc/Makefile \ doc/Doxyfile]) gtg-trace-0.2-2+dfsg/depcomp000077500000000000000000000560161234554746700157140ustar00rootroot00000000000000#! /bin/sh # depcomp - compile a program generating dependencies as side-effects scriptversion=2013-05-30.07; # UTC # Copyright (C) 1999-2013 Free Software Foundation, Inc. # 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. # Originally written by Alexandre Oliva . case $1 in '') echo "$0: No command. Try '$0 --help' for more information." 1>&2 exit 1; ;; -h | --h*) cat <<\EOF Usage: depcomp [--help] [--version] PROGRAM [ARGS] Run PROGRAMS ARGS to compile a file, generating dependencies as side-effects. Environment variables: depmode Dependency tracking mode. source Source file read by 'PROGRAMS ARGS'. object Object file output by 'PROGRAMS ARGS'. DEPDIR directory where to store dependencies. depfile Dependency file to output. tmpdepfile Temporary file to use when outputting dependencies. libtool Whether libtool is used (yes/no). Report bugs to . EOF exit $? ;; -v | --v*) echo "depcomp $scriptversion" exit $? ;; esac # Get the directory component of the given path, and save it in the # global variables '$dir'. Note that this directory component will # be either empty or ending with a '/' character. This is deliberate. set_dir_from () { case $1 in */*) dir=`echo "$1" | sed -e 's|/[^/]*$|/|'`;; *) dir=;; esac } # Get the suffix-stripped basename of the given path, and save it the # global variable '$base'. set_base_from () { base=`echo "$1" | sed -e 's|^.*/||' -e 's/\.[^.]*$//'` } # If no dependency file was actually created by the compiler invocation, # we still have to create a dummy depfile, to avoid errors with the # Makefile "include basename.Plo" scheme. make_dummy_depfile () { echo "#dummy" > "$depfile" } # Factor out some common post-processing of the generated depfile. # Requires the auxiliary global variable '$tmpdepfile' to be set. aix_post_process_depfile () { # If the compiler actually managed to produce a dependency file, # post-process it. if test -f "$tmpdepfile"; then # Each line is of the form 'foo.o: dependency.h'. # Do two passes, one to just change these to # $object: dependency.h # and one to simply output # dependency.h: # which is needed to avoid the deleted-header problem. { sed -e "s,^.*\.[$lower]*:,$object:," < "$tmpdepfile" sed -e "s,^.*\.[$lower]*:[$tab ]*,," -e 's,$,:,' < "$tmpdepfile" } > "$depfile" rm -f "$tmpdepfile" else make_dummy_depfile fi } # A tabulation character. tab=' ' # A newline character. nl=' ' # Character ranges might be problematic outside the C locale. # These definitions help. upper=ABCDEFGHIJKLMNOPQRSTUVWXYZ lower=abcdefghijklmnopqrstuvwxyz digits=0123456789 alpha=${upper}${lower} if test -z "$depmode" || test -z "$source" || test -z "$object"; then echo "depcomp: Variables source, object and depmode must be set" 1>&2 exit 1 fi # Dependencies for sub/bar.o or sub/bar.obj go into sub/.deps/bar.Po. depfile=${depfile-`echo "$object" | sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`} tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`} rm -f "$tmpdepfile" # Avoid interferences from the environment. gccflag= dashmflag= # Some modes work just like other modes, but use different flags. We # parameterize here, but still list the modes in the big case below, # to make depend.m4 easier to write. Note that we *cannot* use a case # here, because this file can only contain one case statement. if test "$depmode" = hp; then # HP compiler uses -M and no extra arg. gccflag=-M depmode=gcc fi if test "$depmode" = dashXmstdout; then # This is just like dashmstdout with a different argument. dashmflag=-xM depmode=dashmstdout fi cygpath_u="cygpath -u -f -" if test "$depmode" = msvcmsys; then # This is just like msvisualcpp but w/o cygpath translation. # Just convert the backslash-escaped backslashes to single forward # slashes to satisfy depend.m4 cygpath_u='sed s,\\\\,/,g' depmode=msvisualcpp fi if test "$depmode" = msvc7msys; then # This is just like msvc7 but w/o cygpath translation. # Just convert the backslash-escaped backslashes to single forward # slashes to satisfy depend.m4 cygpath_u='sed s,\\\\,/,g' depmode=msvc7 fi if test "$depmode" = xlc; then # IBM C/C++ Compilers xlc/xlC can output gcc-like dependency information. gccflag=-qmakedep=gcc,-MF depmode=gcc fi case "$depmode" in gcc3) ## gcc 3 implements dependency tracking that does exactly what ## we want. Yay! Note: for some reason libtool 1.4 doesn't like ## it if -MD -MP comes after the -MF stuff. Hmm. ## Unfortunately, FreeBSD c89 acceptance of flags depends upon ## the command line argument order; so add the flags where they ## appear in depend2.am. Note that the slowdown incurred here ## affects only configure: in makefiles, %FASTDEP% shortcuts this. for arg do case $arg in -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;; *) set fnord "$@" "$arg" ;; esac shift # fnord shift # $arg done "$@" stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi mv "$tmpdepfile" "$depfile" ;; gcc) ## Note that this doesn't just cater to obsosete pre-3.x GCC compilers. ## but also to in-use compilers like IMB xlc/xlC and the HP C compiler. ## (see the conditional assignment to $gccflag above). ## There are various ways to get dependency output from gcc. Here's ## why we pick this rather obscure method: ## - Don't want to use -MD because we'd like the dependencies to end ## up in a subdir. Having to rename by hand is ugly. ## (We might end up doing this anyway to support other compilers.) ## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like ## -MM, not -M (despite what the docs say). Also, it might not be ## supported by the other compilers which use the 'gcc' depmode. ## - Using -M directly means running the compiler twice (even worse ## than renaming). if test -z "$gccflag"; then gccflag=-MD, fi "$@" -Wp,"$gccflag$tmpdepfile" stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" echo "$object : \\" > "$depfile" # The second -e expression handles DOS-style file names with drive # letters. sed -e 's/^[^:]*: / /' \ -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile" ## This next piece of magic avoids the "deleted header file" problem. ## The problem is that when a header file which appears in a .P file ## is deleted, the dependency causes make to die (because there is ## typically no way to rebuild the header). We avoid this by adding ## dummy dependencies for each header file. Too bad gcc doesn't do ## this for us directly. ## Some versions of gcc put a space before the ':'. On the theory ## that the space means something, we add a space to the output as ## well. hp depmode also adds that space, but also prefixes the VPATH ## to the object. Take care to not repeat it in the output. ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; sgi) if test "$libtool" = yes; then "$@" "-Wp,-MDupdate,$tmpdepfile" else "$@" -MDupdate "$tmpdepfile" fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files echo "$object : \\" > "$depfile" # Clip off the initial element (the dependent). Don't try to be # clever and replace this with sed code, as IRIX sed won't handle # lines with more than a fixed number of characters (4096 in # IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines; # the IRIX cc adds comments like '#:fec' to the end of the # dependency line. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' \ | tr "$nl" ' ' >> "$depfile" echo >> "$depfile" # The second pass generates a dummy entry for each header file. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \ >> "$depfile" else make_dummy_depfile fi rm -f "$tmpdepfile" ;; xlc) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; aix) # The C for AIX Compiler uses -M and outputs the dependencies # in a .u file. In older versions, this file always lives in the # current directory. Also, the AIX compiler puts '$object:' at the # start of each line; $object doesn't have directory information. # Version 6 uses the directory in both cases. set_dir_from "$object" set_base_from "$object" if test "$libtool" = yes; then tmpdepfile1=$dir$base.u tmpdepfile2=$base.u tmpdepfile3=$dir.libs/$base.u "$@" -Wc,-M else tmpdepfile1=$dir$base.u tmpdepfile2=$dir$base.u tmpdepfile3=$dir$base.u "$@" -M fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" do test -f "$tmpdepfile" && break done aix_post_process_depfile ;; tcc) # tcc (Tiny C Compiler) understand '-MD -MF file' since version 0.9.26 # FIXME: That version still under development at the moment of writing. # Make that this statement remains true also for stable, released # versions. # It will wrap lines (doesn't matter whether long or short) with a # trailing '\', as in: # # foo.o : \ # foo.c \ # foo.h \ # # It will put a trailing '\' even on the last line, and will use leading # spaces rather than leading tabs (at least since its commit 0394caf7 # "Emit spaces for -MD"). "$@" -MD -MF "$tmpdepfile" stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" # Each non-empty line is of the form 'foo.o : \' or ' dep.h \'. # We have to change lines of the first kind to '$object: \'. sed -e "s|.*:|$object :|" < "$tmpdepfile" > "$depfile" # And for each line of the second kind, we have to emit a 'dep.h:' # dummy dependency, to avoid the deleted-header problem. sed -n -e 's|^ *\(.*\) *\\$|\1:|p' < "$tmpdepfile" >> "$depfile" rm -f "$tmpdepfile" ;; ## The order of this option in the case statement is important, since the ## shell code in configure will try each of these formats in the order ## listed in this file. A plain '-MD' option would be understood by many ## compilers, so we must ensure this comes after the gcc and icc options. pgcc) # Portland's C compiler understands '-MD'. # Will always output deps to 'file.d' where file is the root name of the # source file under compilation, even if file resides in a subdirectory. # The object file name does not affect the name of the '.d' file. # pgcc 10.2 will output # foo.o: sub/foo.c sub/foo.h # and will wrap long lines using '\' : # foo.o: sub/foo.c ... \ # sub/foo.h ... \ # ... set_dir_from "$object" # Use the source, not the object, to determine the base name, since # that's sadly what pgcc will do too. set_base_from "$source" tmpdepfile=$base.d # For projects that build the same source file twice into different object # files, the pgcc approach of using the *source* file root name can cause # problems in parallel builds. Use a locking strategy to avoid stomping on # the same $tmpdepfile. lockdir=$base.d-lock trap " echo '$0: caught signal, cleaning up...' >&2 rmdir '$lockdir' exit 1 " 1 2 13 15 numtries=100 i=$numtries while test $i -gt 0; do # mkdir is a portable test-and-set. if mkdir "$lockdir" 2>/dev/null; then # This process acquired the lock. "$@" -MD stat=$? # Release the lock. rmdir "$lockdir" break else # If the lock is being held by a different process, wait # until the winning process is done or we timeout. while test -d "$lockdir" && test $i -gt 0; do sleep 1 i=`expr $i - 1` done fi i=`expr $i - 1` done trap - 1 2 13 15 if test $i -le 0; then echo "$0: failed to acquire lock after $numtries attempts" >&2 echo "$0: check lockdir '$lockdir'" >&2 exit 1 fi if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" # Each line is of the form `foo.o: dependent.h', # or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'. # Do two passes, one to just change these to # `$object: dependent.h' and one to simply `dependent.h:'. sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process this invocation # correctly. Breaking it into two sed invocations is a workaround. sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp2) # The "hp" stanza above does not work with aCC (C++) and HP's ia64 # compilers, which have integrated preprocessors. The correct option # to use with these is +Maked; it writes dependencies to a file named # 'foo.d', which lands next to the object file, wherever that # happens to be. # Much of this is similar to the tru64 case; see comments there. set_dir_from "$object" set_base_from "$object" if test "$libtool" = yes; then tmpdepfile1=$dir$base.d tmpdepfile2=$dir.libs/$base.d "$@" -Wc,+Maked else tmpdepfile1=$dir$base.d tmpdepfile2=$dir$base.d "$@" +Maked fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile1" "$tmpdepfile2" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then sed -e "s,^.*\.[$lower]*:,$object:," "$tmpdepfile" > "$depfile" # Add 'dependent.h:' lines. sed -ne '2,${ s/^ *// s/ \\*$// s/$/:/ p }' "$tmpdepfile" >> "$depfile" else make_dummy_depfile fi rm -f "$tmpdepfile" "$tmpdepfile2" ;; tru64) # The Tru64 compiler uses -MD to generate dependencies as a side # effect. 'cc -MD -o foo.o ...' puts the dependencies into 'foo.o.d'. # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put # dependencies in 'foo.d' instead, so we check for that too. # Subdirectories are respected. set_dir_from "$object" set_base_from "$object" if test "$libtool" = yes; then # Libtool generates 2 separate objects for the 2 libraries. These # two compilations output dependencies in $dir.libs/$base.o.d and # in $dir$base.o.d. We have to check for both files, because # one of the two compilations can be disabled. We should prefer # $dir$base.o.d over $dir.libs/$base.o.d because the latter is # automatically cleaned when .libs/ is deleted, while ignoring # the former would cause a distcleancheck panic. tmpdepfile1=$dir$base.o.d # libtool 1.5 tmpdepfile2=$dir.libs/$base.o.d # Likewise. tmpdepfile3=$dir.libs/$base.d # Compaq CCC V6.2-504 "$@" -Wc,-MD else tmpdepfile1=$dir$base.d tmpdepfile2=$dir$base.d tmpdepfile3=$dir$base.d "$@" -MD fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" do test -f "$tmpdepfile" && break done # Same post-processing that is required for AIX mode. aix_post_process_depfile ;; msvc7) if test "$libtool" = yes; then showIncludes=-Wc,-showIncludes else showIncludes=-showIncludes fi "$@" $showIncludes > "$tmpdepfile" stat=$? grep -v '^Note: including file: ' "$tmpdepfile" if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" echo "$object : \\" > "$depfile" # The first sed program below extracts the file names and escapes # backslashes for cygpath. The second sed program outputs the file # name when reading, but also accumulates all include files in the # hold buffer in order to output them again at the end. This only # works with sed implementations that can handle large buffers. sed < "$tmpdepfile" -n ' /^Note: including file: *\(.*\)/ { s//\1/ s/\\/\\\\/g p }' | $cygpath_u | sort -u | sed -n ' s/ /\\ /g s/\(.*\)/'"$tab"'\1 \\/p s/.\(.*\) \\/\1:/ H $ { s/.*/'"$tab"'/ G p }' >> "$depfile" echo >> "$depfile" # make sure the fragment doesn't end with a backslash rm -f "$tmpdepfile" ;; msvc7msys) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; #nosideeffect) # This comment above is used by automake to tell side-effect # dependency tracking mechanisms from slower ones. dashmstdout) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout, regardless of -o. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # Remove '-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done test -z "$dashmflag" && dashmflag=-M # Require at least two characters before searching for ':' # in the target name. This is to cope with DOS-style filenames: # a dependency such as 'c:/foo/bar' could be seen as target 'c' otherwise. "$@" $dashmflag | sed "s|^[$tab ]*[^:$tab ][^:][^:]*:[$tab ]*|$object: |" > "$tmpdepfile" rm -f "$depfile" cat < "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process this sed invocation # correctly. Breaking it into two sed invocations is a workaround. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; dashXmstdout) # This case only exists to satisfy depend.m4. It is never actually # run, as this mode is specially recognized in the preamble. exit 1 ;; makedepend) "$@" || exit $? # Remove any Libtool call if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # X makedepend shift cleared=no eat=no for arg do case $cleared in no) set ""; shift cleared=yes ;; esac if test $eat = yes; then eat=no continue fi case "$arg" in -D*|-I*) set fnord "$@" "$arg"; shift ;; # Strip any option that makedepend may not understand. Remove # the object too, otherwise makedepend will parse it as a source file. -arch) eat=yes ;; -*|$object) ;; *) set fnord "$@" "$arg"; shift ;; esac done obj_suffix=`echo "$object" | sed 's/^.*\././'` touch "$tmpdepfile" ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@" rm -f "$depfile" # makedepend may prepend the VPATH from the source file name to the object. # No need to regex-escape $object, excess matching of '.' is harmless. sed "s|^.*\($object *:\)|\1|" "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process the last invocation # correctly. Breaking it into two sed invocations is a workaround. sed '1,2d' "$tmpdepfile" \ | tr ' ' "$nl" \ | sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" "$tmpdepfile".bak ;; cpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # Remove '-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done "$@" -E \ | sed -n -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ -e '/^#line [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ | sed '$ s: \\$::' > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" cat < "$tmpdepfile" >> "$depfile" sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; msvisualcpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi IFS=" " for arg do case "$arg" in -o) shift ;; $object) shift ;; "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI") set fnord "$@" shift shift ;; *) set fnord "$@" "$arg" shift shift ;; esac done "$@" -E 2>/dev/null | sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::\1:p' | $cygpath_u | sort -u > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::'"$tab"'\1 \\:p' >> "$depfile" echo "$tab" >> "$depfile" sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::\1\::p' >> "$depfile" rm -f "$tmpdepfile" ;; msvcmsys) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; none) exec "$@" ;; *) echo "Unknown depmode $depmode" 1>&2 exit 1 ;; esac exit 0 # Local Variables: # mode: shell-script # sh-indentation: 2 # 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: gtg-trace-0.2-2+dfsg/doc/000077500000000000000000000000001234554746700150745ustar00rootroot00000000000000gtg-trace-0.2-2+dfsg/doc/Doxyfile000066400000000000000000001563521234554746700166160ustar00rootroot00000000000000# Doxyfile 1.5.5 # This file describes the settings to be used by the documentation system # doxygen (www.doxygen.org) for a project # # All text after a hash (#) is considered a comment and will be ignored # The format is: # TAG = value [value, ...] # For lists items can also be appended using: # TAG += value [value, ...] # Values that contain spaces should be placed between quotes (" ") #--------------------------------------------------------------------------- # Project related configuration options #--------------------------------------------------------------------------- # This tag specifies the encoding used for all characters in the config file # that follow. The default is UTF-8 which is also the encoding used for all # text before the first occurrence of this tag. Doxygen uses libiconv (or the # iconv built into libc) for the transcoding. See # http://www.gnu.org/software/libiconv for the list of possible encodings. DOXYFILE_ENCODING = UTF-8 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded # by quotes) that should identify the project. PROJECT_NAME = "Generic Trace Generator (GTG)" # The PROJECT_NUMBER tag can be used to enter a project or revision number. # This could be handy for archiving the generated documentation or # if some version control system is used. PROJECT_NUMBER = 0.1 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. # If a relative path is entered, it will be relative to the location # where doxygen was started. If left blank the current directory will be used. OUTPUT_DIRECTORY = . # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create # 4096 sub-directories (in 2 levels) under the output directory of each output # format and will distribute the generated files over these directories. # Enabling this option can be useful when feeding doxygen a huge amount of # source files, where putting all generated files in the same directory would # otherwise cause performance problems for the file system. CREATE_SUBDIRS = NO # The OUTPUT_LANGUAGE tag is used to specify the language in which all # documentation generated by doxygen is written. Doxygen will use this # information to generate all constant output in the proper language. # The default language is English, other supported languages are: # Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, # Croatian, Czech, Danish, Dutch, Farsi, Finnish, French, German, Greek, # Hungarian, Italian, Japanese, Japanese-en (Japanese with English messages), # Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, Polish, # Portuguese, Romanian, Russian, Serbian, Slovak, Slovene, Spanish, Swedish, # and Ukrainian. OUTPUT_LANGUAGE = English # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will # include brief member descriptions after the members that are listed in # the file and class documentation (similar to JavaDoc). # Set to NO to disable this. BRIEF_MEMBER_DESC = YES # If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend # the brief description of a member or function before the detailed description. # Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the # brief descriptions will be completely suppressed. REPEAT_BRIEF = YES # This tag implements a quasi-intelligent brief description abbreviator # that is used to form the text in various listings. Each string # in this list, if found as the leading text of the brief description, will be # stripped from the text and the result after processing the whole list, is # used as the annotated text. Otherwise, the brief description is used as-is. # If left blank, the following values are used ("$name" is automatically # replaced with the name of the entity): "The $name class" "The $name widget" # "The $name file" "is" "provides" "specifies" "contains" # "represents" "a" "an" "the" ABBREVIATE_BRIEF = # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then # Doxygen will generate a detailed section even if there is only a brief # description. ALWAYS_DETAILED_SEC = NO # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all # inherited members of a class in the documentation of that class as if those # members were ordinary class members. Constructors, destructors and assignment # operators of the base classes will not be shown. INLINE_INHERITED_MEMB = NO # If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full # path before files name in the file list and in the header files. If set # to NO the shortest path that makes the file name unique will be used. FULL_PATH_NAMES = NO # If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag # can be used to strip a user-defined part of the path. Stripping is # only done if one of the specified strings matches the left-hand part of # the path. The tag can be used to show relative paths in the file list. # If left blank the directory from which doxygen is run is used as the # path to strip. STRIP_FROM_PATH = # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of # the path mentioned in the documentation of a class, which tells # the reader which header file to include in order to use a class. # If left blank only the name of the header file containing the class # definition is used. Otherwise one should specify the include paths that # are normally passed to the compiler using the -I flag. STRIP_FROM_INC_PATH = # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter # (but less readable) file names. This can be useful is your file systems # doesn't support long names like on DOS, Mac, or CD-ROM. SHORT_NAMES = NO # If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen # will interpret the first line (until the first dot) of a JavaDoc-style # comment as the brief description. If set to NO, the JavaDoc # comments will behave just like regular Qt-style comments # (thus requiring an explicit @brief command for a brief description.) JAVADOC_AUTOBRIEF = NO # If the QT_AUTOBRIEF tag is set to YES then Doxygen will # interpret the first line (until the first dot) of a Qt-style # comment as the brief description. If set to NO, the comments # will behave just like regular Qt-style comments (thus requiring # an explicit \brief command for a brief description.) QT_AUTOBRIEF = NO # The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen # treat a multi-line C++ special comment block (i.e. a block of //! or /// # comments) as a brief description. This used to be the default behaviour. # The new default is to treat a multi-line C++ comment block as a detailed # description. Set this tag to YES if you prefer the old behaviour instead. MULTILINE_CPP_IS_BRIEF = NO # If the DETAILS_AT_TOP tag is set to YES then Doxygen # will output the detailed description near the top, like JavaDoc. # If set to NO, the detailed description appears after the member # documentation. DETAILS_AT_TOP = NO # If the INHERIT_DOCS tag is set to YES (the default) then an undocumented # member inherits the documentation from any documented member that it # re-implements. INHERIT_DOCS = YES # If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce # a new page for each member. If set to NO, the documentation of a member will # be part of the file/class/namespace that contains it. SEPARATE_MEMBER_PAGES = NO # The TAB_SIZE tag can be used to set the number of spaces in a tab. # Doxygen uses this value to replace tabs by spaces in code fragments. TAB_SIZE = 8 # This tag can be used to specify a number of aliases that acts # as commands in the documentation. An alias has the form "name=value". # For example adding "sideeffect=\par Side Effects:\n" will allow you to # put the command \sideeffect (or @sideeffect) in the documentation, which # will result in a user-defined paragraph with heading "Side Effects:". # You can put \n's in the value part of an alias to insert newlines. ALIASES = # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C # sources only. Doxygen will then generate output that is more tailored for C. # For instance, some of the names that are used will be different. The list # of all members will be omitted, etc. OPTIMIZE_OUTPUT_FOR_C = YES # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java # sources only. Doxygen will then generate output that is more tailored for # Java. For instance, namespaces will be presented as packages, qualified # scopes will look different, etc. OPTIMIZE_OUTPUT_JAVA = NO # Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran # sources only. Doxygen will then generate output that is more tailored for # Fortran. OPTIMIZE_FOR_FORTRAN = NO # Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL # sources. Doxygen will then generate output that is tailored for # VHDL. OPTIMIZE_OUTPUT_VHDL = NO # If you use STL classes (i.e. std::string, std::vector, etc.) but do not want # to include (a tag file for) the STL sources as input, then you should # set this tag to YES in order to let doxygen match functions declarations and # definitions whose arguments contain STL classes (e.g. func(std::string); v.s. # func(std::string) {}). This also make the inheritance and collaboration # diagrams that involve STL classes more complete and accurate. BUILTIN_STL_SUPPORT = NO # If you use Microsoft's C++/CLI language, you should set this option to YES to # enable parsing support. CPP_CLI_SUPPORT = NO # Set the SIP_SUPPORT tag to YES if your project consists of sip sources only. # Doxygen will parse them like normal C++ but will assume all classes use public # instead of private inheritance when no explicit protection keyword is present. SIP_SUPPORT = NO # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC # tag is set to YES, then doxygen will reuse the documentation of the first # member in the group (if any) for the other members of the group. By default # all members of a group must be documented explicitly. DISTRIBUTE_GROUP_DOC = NO # Set the SUBGROUPING tag to YES (the default) to allow class member groups of # the same type (for instance a group of public functions) to be put as a # subgroup of that type (e.g. under the Public Functions section). Set it to # NO to prevent subgrouping. Alternatively, this can be done per class using # the \nosubgrouping command. SUBGROUPING = YES # When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum # is documented as struct, union, or enum with the name of the typedef. So # typedef struct TypeS {} TypeT, will appear in the documentation as a struct # with name TypeT. When disabled the typedef will appear as a member of a file, # namespace, or class. And the struct will be named TypeS. This can typically # be useful for C code in case the coding convention dictates that all compound # types are typedef'ed and only the typedef is referenced, never the tag name. TYPEDEF_HIDES_STRUCT = NO #--------------------------------------------------------------------------- # Build related configuration options #--------------------------------------------------------------------------- # If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in # documentation are documented, even if no documentation was available. # Private class members and static file members will be hidden unless # the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES EXTRACT_ALL = YES # If the EXTRACT_PRIVATE tag is set to YES all private members of a class # will be included in the documentation. EXTRACT_PRIVATE = NO # If the EXTRACT_STATIC tag is set to YES all static members of a file # will be included in the documentation. EXTRACT_STATIC = YES # If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) # defined locally in source files will be included in the documentation. # If set to NO only classes defined in header files are included. EXTRACT_LOCAL_CLASSES = YES # This flag is only useful for Objective-C code. When set to YES local # methods, which are defined in the implementation section but not in # the interface are included in the documentation. # If set to NO (the default) only methods in the interface are included. EXTRACT_LOCAL_METHODS = NO # If this flag is set to YES, the members of anonymous namespaces will be # extracted and appear in the documentation as a namespace called # 'anonymous_namespace{file}', where file will be replaced with the base # name of the file that contains the anonymous namespace. By default # anonymous namespace are hidden. EXTRACT_ANON_NSPACES = NO # If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all # undocumented members of documented classes, files or namespaces. # If set to NO (the default) these members will be included in the # various overviews, but no documentation section is generated. # This option has no effect if EXTRACT_ALL is enabled. HIDE_UNDOC_MEMBERS = NO # If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all # undocumented classes that are normally visible in the class hierarchy. # If set to NO (the default) these classes will be included in the various # overviews. This option has no effect if EXTRACT_ALL is enabled. HIDE_UNDOC_CLASSES = NO # If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all # friend (class|struct|union) declarations. # If set to NO (the default) these declarations will be included in the # documentation. HIDE_FRIEND_COMPOUNDS = NO # If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any # documentation blocks found inside the body of a function. # If set to NO (the default) these blocks will be appended to the # function's detailed documentation block. HIDE_IN_BODY_DOCS = NO # The INTERNAL_DOCS tag determines if documentation # that is typed after a \internal command is included. If the tag is set # to NO (the default) then the documentation will be excluded. # Set it to YES to include the internal documentation. INTERNAL_DOCS = NO # If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate # file names in lower-case letters. If set to YES upper-case letters are also # allowed. This is useful if you have classes or files whose names only differ # in case and if your file system supports case sensitive file names. Windows # and Mac users are advised to set this option to NO. CASE_SENSE_NAMES = YES # If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen # will show members with their full class and namespace scopes in the # documentation. If set to YES the scope will be hidden. HIDE_SCOPE_NAMES = NO # If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen # will put a list of the files that are included by a file in the documentation # of that file. SHOW_INCLUDE_FILES = YES # If the INLINE_INFO tag is set to YES (the default) then a tag [inline] # is inserted in the documentation for inline members. INLINE_INFO = YES # If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen # will sort the (detailed) documentation of file and class members # alphabetically by member name. If set to NO the members will appear in # declaration order. SORT_MEMBER_DOCS = YES # If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the # brief documentation of file, namespace and class members alphabetically # by member name. If set to NO (the default) the members will appear in # declaration order. SORT_BRIEF_DOCS = NO # If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the # hierarchy of group names into alphabetical order. If set to NO (the default) # the group names will appear in their defined order. SORT_GROUP_NAMES = NO # If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be # sorted by fully-qualified names, including namespaces. If set to # NO (the default), the class list will be sorted only by class name, # not including the namespace part. # Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. # Note: This option applies only to the class list, not to the # alphabetical list. SORT_BY_SCOPE_NAME = NO # The GENERATE_TODOLIST tag can be used to enable (YES) or # disable (NO) the todo list. This list is created by putting \todo # commands in the documentation. GENERATE_TODOLIST = YES # The GENERATE_TESTLIST tag can be used to enable (YES) or # disable (NO) the test list. This list is created by putting \test # commands in the documentation. GENERATE_TESTLIST = YES # The GENERATE_BUGLIST tag can be used to enable (YES) or # disable (NO) the bug list. This list is created by putting \bug # commands in the documentation. GENERATE_BUGLIST = YES # The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or # disable (NO) the deprecated list. This list is created by putting # \deprecated commands in the documentation. GENERATE_DEPRECATEDLIST= YES # The ENABLED_SECTIONS tag can be used to enable conditional # documentation sections, marked by \if sectionname ... \endif. ENABLED_SECTIONS = # The MAX_INITIALIZER_LINES tag determines the maximum number of lines # the initial value of a variable or define consists of for it to appear in # the documentation. If the initializer consists of more lines than specified # here it will be hidden. Use a value of 0 to hide initializers completely. # The appearance of the initializer of individual variables and defines in the # documentation can be controlled using \showinitializer or \hideinitializer # command in the documentation regardless of this setting. MAX_INITIALIZER_LINES = 30 # Set the SHOW_USED_FILES tag to NO to disable the list of files generated # at the bottom of the documentation of classes and structs. If set to YES the # list will mention the files that were used to generate the documentation. SHOW_USED_FILES = YES # If the sources in your project are distributed over multiple directories # then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy # in the documentation. The default is NO. SHOW_DIRECTORIES = NO # The FILE_VERSION_FILTER tag can be used to specify a program or script that # doxygen should invoke to get the current version for each file (typically from # the version control system). Doxygen will invoke the program by executing (via # popen()) the command , where is the value of # the FILE_VERSION_FILTER tag, and is the name of an input file # provided by doxygen. Whatever the program writes to standard output # is used as the file version. See the manual for examples. FILE_VERSION_FILTER = #--------------------------------------------------------------------------- # configuration options related to warning and progress messages #--------------------------------------------------------------------------- # The QUIET tag can be used to turn on/off the messages that are generated # by doxygen. Possible values are YES and NO. If left blank NO is used. QUIET = NO # The WARNINGS tag can be used to turn on/off the warning messages that are # generated by doxygen. Possible values are YES and NO. If left blank # NO is used. WARNINGS = YES # If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings # for undocumented members. If EXTRACT_ALL is set to YES then this flag will # automatically be disabled. WARN_IF_UNDOCUMENTED = YES # If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for # potential errors in the documentation, such as not documenting some # parameters in a documented function, or documenting parameters that # don't exist or using markup commands wrongly. WARN_IF_DOC_ERROR = YES # This WARN_NO_PARAMDOC option can be abled to get warnings for # functions that are documented, but have no documentation for their parameters # or return value. If set to NO (the default) doxygen will only warn about # wrong or incomplete parameter documentation, but not about the absence of # documentation. WARN_NO_PARAMDOC = YES # The WARN_FORMAT tag determines the format of the warning messages that # doxygen can produce. The string should contain the $file, $line, and $text # tags, which will be replaced by the file and line number from which the # warning originated and the warning text. Optionally the format may contain # $version, which will be replaced by the version of the file (if it could # be obtained via FILE_VERSION_FILTER) WARN_FORMAT = "$file:$line: $text" # The WARN_LOGFILE tag can be used to specify a file to which warning # and error messages should be written. If left blank the output is written # to stderr. WARN_LOGFILE = #--------------------------------------------------------------------------- # configuration options related to the input files #--------------------------------------------------------------------------- # The INPUT tag can be used to specify the files and/or directories that contain # documented source files. You may enter file names like "myfile.cpp" or # directories like "/usr/src/myproject". Separate the files or directories # with spaces. INPUT = "../../doc/../inc/" "../../doc/../src/FORTRAN/" # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is # also the default input encoding. Doxygen uses libiconv (or the iconv built # into libc) for the transcoding. See http://www.gnu.org/software/libiconv for # the list of possible encodings. INPUT_ENCODING = UTF-8 # If the value of the INPUT tag contains directories, you can use the # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp # and *.h) to filter out the source-files in the directories. If left # blank the following patterns are tested: # *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx # *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py *.f90 FILE_PATTERNS = *.h *.f90 # The RECURSIVE tag can be used to turn specify whether or not subdirectories # should be searched for input files as well. Possible values are YES and NO. # If left blank NO is used. RECURSIVE = NO # The EXCLUDE tag can be used to specify files and/or directories that should # excluded from the INPUT source files. This way you can easily exclude a # subdirectory from a directory tree whose root is specified with the INPUT tag. EXCLUDE = # The EXCLUDE_SYMLINKS tag can be used select whether or not files or # directories that are symbolic links (a Unix filesystem feature) are excluded # from the input. EXCLUDE_SYMLINKS = NO # If the value of the INPUT tag contains directories, you can use the # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude # certain files from those directories. Note that the wildcards are matched # against the file with absolute path, so to exclude all test directories # for example use the pattern */test/* EXCLUDE_PATTERNS = # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names # (namespaces, classes, functions, etc.) that should be excluded from the # output. The symbol name can be a fully qualified name, a word, or if the # wildcard * is used, a substring. Examples: ANamespace, AClass, # AClass::ANamespace, ANamespace::*Test EXCLUDE_SYMBOLS = # The EXAMPLE_PATH tag can be used to specify one or more files or # directories that contain example code fragments that are included (see # the \include command). EXAMPLE_PATH = # If the value of the EXAMPLE_PATH tag contains directories, you can use the # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp # and *.h) to filter out the source-files in the directories. If left # blank all files are included. EXAMPLE_PATTERNS = # If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be # searched for input files to be used with the \include or \dontinclude # commands irrespective of the value of the RECURSIVE tag. # Possible values are YES and NO. If left blank NO is used. EXAMPLE_RECURSIVE = NO # The IMAGE_PATH tag can be used to specify one or more files or # directories that contain image that are included in the documentation (see # the \image command). IMAGE_PATH = # The INPUT_FILTER tag can be used to specify a program that doxygen should # invoke to filter for each input file. Doxygen will invoke the filter program # by executing (via popen()) the command , where # is the value of the INPUT_FILTER tag, and is the name of an # input file. Doxygen will then use the output that the filter program writes # to standard output. If FILTER_PATTERNS is specified, this tag will be # ignored. INPUT_FILTER = # The FILTER_PATTERNS tag can be used to specify filters on a per file pattern # basis. Doxygen will compare the file name with each pattern and apply the # filter if there is a match. The filters are a list of the form: # pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further # info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER # is applied to all files. FILTER_PATTERNS = # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using # INPUT_FILTER) will be used to filter the input files when producing source # files to browse (i.e. when SOURCE_BROWSER is set to YES). FILTER_SOURCE_FILES = NO #--------------------------------------------------------------------------- # configuration options related to source browsing #--------------------------------------------------------------------------- # If the SOURCE_BROWSER tag is set to YES then a list of source files will # be generated. Documented entities will be cross-referenced with these sources. # Note: To get rid of all source code in the generated output, make sure also # VERBATIM_HEADERS is set to NO. SOURCE_BROWSER = NO # Setting the INLINE_SOURCES tag to YES will include the body # of functions and classes directly in the documentation. INLINE_SOURCES = NO # Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct # doxygen to hide any special comment blocks from generated source code # fragments. Normal C and C++ comments will always remain visible. STRIP_CODE_COMMENTS = YES # If the REFERENCED_BY_RELATION tag is set to YES (the default) # then for each documented function all documented # functions referencing it will be listed. REFERENCED_BY_RELATION = NO # If the REFERENCES_RELATION tag is set to YES (the default) # then for each documented function all documented entities # called/used by that function will be listed. REFERENCES_RELATION = NO # If the REFERENCES_LINK_SOURCE tag is set to YES (the default) # and SOURCE_BROWSER tag is set to YES, then the hyperlinks from # functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will # link to the source code. Otherwise they will link to the documentstion. REFERENCES_LINK_SOURCE = YES # If the USE_HTAGS tag is set to YES then the references to source code # will point to the HTML generated by the htags(1) tool instead of doxygen # built-in source browser. The htags tool is part of GNU's global source # tagging system (see http://www.gnu.org/software/global/global.html). You # will need version 4.8.6 or higher. USE_HTAGS = NO # If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen # will generate a verbatim copy of the header file for each class for # which an include is specified. Set to NO to disable this. VERBATIM_HEADERS = YES #--------------------------------------------------------------------------- # configuration options related to the alphabetical class index #--------------------------------------------------------------------------- # If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index # of all compounds will be generated. Enable this if the project # contains a lot of classes, structs, unions or interfaces. ALPHABETICAL_INDEX = NO # If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then # the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns # in which this list will be split (can be a number in the range [1..20]) COLS_IN_ALPHA_INDEX = 5 # In case all classes in a project start with a common prefix, all # classes will be put under the same header in the alphabetical index. # The IGNORE_PREFIX tag can be used to specify one or more prefixes that # should be ignored while generating the index headers. IGNORE_PREFIX = #--------------------------------------------------------------------------- # configuration options related to the HTML output #--------------------------------------------------------------------------- # If the GENERATE_HTML tag is set to YES (the default) Doxygen will # generate HTML output. GENERATE_HTML = YES # The HTML_OUTPUT tag is used to specify where the HTML docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `html' will be used as the default path. HTML_OUTPUT = html # The HTML_FILE_EXTENSION tag can be used to specify the file extension for # each generated HTML page (for example: .htm,.php,.asp). If it is left blank # doxygen will generate files with .html extension. HTML_FILE_EXTENSION = .html # The HTML_HEADER tag can be used to specify a personal HTML header for # each generated HTML page. If it is left blank doxygen will generate a # standard header. HTML_HEADER = # The HTML_FOOTER tag can be used to specify a personal HTML footer for # each generated HTML page. If it is left blank doxygen will generate a # standard footer. HTML_FOOTER = # The HTML_STYLESHEET tag can be used to specify a user-defined cascading # style sheet that is used by each HTML page. It can be used to # fine-tune the look of the HTML output. If the tag is left blank doxygen # will generate a default style sheet. Note that doxygen will try to copy # the style sheet file to the HTML output directory, so don't put your own # stylesheet in the HTML output directory as well, or it will be erased! HTML_STYLESHEET = # If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, # files or namespaces will be aligned in HTML using tables. If set to # NO a bullet list will be used. HTML_ALIGN_MEMBERS = YES # If the GENERATE_HTMLHELP tag is set to YES, additional index files # will be generated that can be used as input for tools like the # Microsoft HTML help workshop to generate a compiled HTML help file (.chm) # of the generated HTML documentation. GENERATE_HTMLHELP = NO # If the GENERATE_DOCSET tag is set to YES, additional index files # will be generated that can be used as input for Apple's Xcode 3 # integrated development environment, introduced with OSX 10.5 (Leopard). # To create a documentation set, doxygen will generate a Makefile in the # HTML output directory. Running make will produce the docset in that # directory and running "make install" will install the docset in # ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find # it at startup. GENERATE_DOCSET = NO # When GENERATE_DOCSET tag is set to YES, this tag determines the name of the # feed. A documentation feed provides an umbrella under which multiple # documentation sets from a single provider (such as a company or product suite) # can be grouped. DOCSET_FEEDNAME = "Doxygen generated docs" # When GENERATE_DOCSET tag is set to YES, this tag specifies a string that # should uniquely identify the documentation set bundle. This should be a # reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen # will append .docset to the name. DOCSET_BUNDLE_ID = org.doxygen.Project # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML # documentation will contain sections that can be hidden and shown after the # page has loaded. For this to work a browser that supports # JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox # Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari). HTML_DYNAMIC_SECTIONS = NO # If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can # be used to specify the file name of the resulting .chm file. You # can add a path in front of the file if the result should not be # written to the html output directory. CHM_FILE = # If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can # be used to specify the location (absolute path including file name) of # the HTML help compiler (hhc.exe). If non-empty doxygen will try to run # the HTML help compiler on the generated index.hhp. HHC_LOCATION = # If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag # controls if a separate .chi index file is generated (YES) or that # it should be included in the master .chm file (NO). GENERATE_CHI = NO # If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag # controls whether a binary table of contents is generated (YES) or a # normal table of contents (NO) in the .chm file. BINARY_TOC = NO # The TOC_EXPAND flag can be set to YES to add extra items for group members # to the contents of the HTML help documentation and to the tree view. TOC_EXPAND = NO # The DISABLE_INDEX tag can be used to turn on/off the condensed index at # top of each HTML page. The value NO (the default) enables the index and # the value YES disables it. DISABLE_INDEX = NO # This tag can be used to set the number of enum values (range [1..20]) # that doxygen will group on one line in the generated HTML documentation. ENUM_VALUES_PER_LINE = 4 # If the GENERATE_TREEVIEW tag is set to YES, a side panel will be # generated containing a tree-like index structure (just like the one that # is generated for HTML Help). For this to work a browser that supports # JavaScript, DHTML, CSS and frames is required (for instance Mozilla 1.0+, # Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are # probably better off using the HTML help feature. GENERATE_TREEVIEW = NO # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be # used to set the initial width (in pixels) of the frame in which the tree # is shown. TREEVIEW_WIDTH = 250 #--------------------------------------------------------------------------- # configuration options related to the LaTeX output #--------------------------------------------------------------------------- # If the GENERATE_LATEX tag is set to YES (the default) Doxygen will # generate Latex output. GENERATE_LATEX = YES # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `latex' will be used as the default path. LATEX_OUTPUT = latex # The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be # invoked. If left blank `latex' will be used as the default command name. LATEX_CMD_NAME = latex # The MAKEINDEX_CMD_NAME tag can be used to specify the command name to # generate index for LaTeX. If left blank `makeindex' will be used as the # default command name. MAKEINDEX_CMD_NAME = makeindex # If the COMPACT_LATEX tag is set to YES Doxygen generates more compact # LaTeX documents. This may be useful for small projects and may help to # save some trees in general. COMPACT_LATEX = NO # The PAPER_TYPE tag can be used to set the paper type that is used # by the printer. Possible values are: a4, a4wide, letter, legal and # executive. If left blank a4wide will be used. PAPER_TYPE = a4wide # The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX # packages that should be included in the LaTeX output. EXTRA_PACKAGES = # The LATEX_HEADER tag can be used to specify a personal LaTeX header for # the generated latex document. The header should contain everything until # the first chapter. If it is left blank doxygen will generate a # standard header. Notice: only use this tag if you know what you are doing! LATEX_HEADER = # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated # is prepared for conversion to pdf (using ps2pdf). The pdf file will # contain links (just like the HTML output) instead of page references # This makes the output suitable for online browsing using a pdf viewer. PDF_HYPERLINKS = YES # If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of # plain latex in the generated Makefile. Set this option to YES to get a # higher quality PDF documentation. USE_PDFLATEX = YES # If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. # command to the generated LaTeX files. This will instruct LaTeX to keep # running if errors occur, instead of asking the user for help. # This option is also used when generating formulas in HTML. LATEX_BATCHMODE = NO # If LATEX_HIDE_INDICES is set to YES then doxygen will not # include the index chapters (such as File Index, Compound Index, etc.) # in the output. LATEX_HIDE_INDICES = NO #--------------------------------------------------------------------------- # configuration options related to the RTF output #--------------------------------------------------------------------------- # If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output # The RTF output is optimized for Word 97 and may not look very pretty with # other RTF readers or editors. GENERATE_RTF = NO # The RTF_OUTPUT tag is used to specify where the RTF docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `rtf' will be used as the default path. RTF_OUTPUT = rtf # If the COMPACT_RTF tag is set to YES Doxygen generates more compact # RTF documents. This may be useful for small projects and may help to # save some trees in general. COMPACT_RTF = NO # If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated # will contain hyperlink fields. The RTF file will # contain links (just like the HTML output) instead of page references. # This makes the output suitable for online browsing using WORD or other # programs which support those fields. # Note: wordpad (write) and others do not support links. RTF_HYPERLINKS = NO # Load stylesheet definitions from file. Syntax is similar to doxygen's # config file, i.e. a series of assignments. You only have to provide # replacements, missing definitions are set to their default value. RTF_STYLESHEET_FILE = # Set optional variables used in the generation of an rtf document. # Syntax is similar to doxygen's config file. RTF_EXTENSIONS_FILE = #--------------------------------------------------------------------------- # configuration options related to the man page output #--------------------------------------------------------------------------- # If the GENERATE_MAN tag is set to YES (the default) Doxygen will # generate man pages GENERATE_MAN = NO # The MAN_OUTPUT tag is used to specify where the man pages will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `man' will be used as the default path. MAN_OUTPUT = man # The MAN_EXTENSION tag determines the extension that is added to # the generated man pages (default is the subroutine's section .3) MAN_EXTENSION = .3 # If the MAN_LINKS tag is set to YES and Doxygen generates man output, # then it will generate one additional man file for each entity # documented in the real man page(s). These additional files # only source the real man page, but without them the man command # would be unable to find the correct page. The default is NO. MAN_LINKS = NO #--------------------------------------------------------------------------- # configuration options related to the XML output #--------------------------------------------------------------------------- # If the GENERATE_XML tag is set to YES Doxygen will # generate an XML file that captures the structure of # the code including all documentation. GENERATE_XML = NO # The XML_OUTPUT tag is used to specify where the XML pages will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `xml' will be used as the default path. XML_OUTPUT = xml # The XML_SCHEMA tag can be used to specify an XML schema, # which can be used by a validating XML parser to check the # syntax of the XML files. XML_SCHEMA = # The XML_DTD tag can be used to specify an XML DTD, # which can be used by a validating XML parser to check the # syntax of the XML files. XML_DTD = # If the XML_PROGRAMLISTING tag is set to YES Doxygen will # dump the program listings (including syntax highlighting # and cross-referencing information) to the XML output. Note that # enabling this will significantly increase the size of the XML output. XML_PROGRAMLISTING = YES #--------------------------------------------------------------------------- # configuration options for the AutoGen Definitions output #--------------------------------------------------------------------------- # If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will # generate an AutoGen Definitions (see autogen.sf.net) file # that captures the structure of the code including all # documentation. Note that this feature is still experimental # and incomplete at the moment. GENERATE_AUTOGEN_DEF = NO #--------------------------------------------------------------------------- # configuration options related to the Perl module output #--------------------------------------------------------------------------- # If the GENERATE_PERLMOD tag is set to YES Doxygen will # generate a Perl module file that captures the structure of # the code including all documentation. Note that this # feature is still experimental and incomplete at the # moment. GENERATE_PERLMOD = NO # If the PERLMOD_LATEX tag is set to YES Doxygen will generate # the necessary Makefile rules, Perl scripts and LaTeX code to be able # to generate PDF and DVI output from the Perl module output. PERLMOD_LATEX = NO # If the PERLMOD_PRETTY tag is set to YES the Perl module output will be # nicely formatted so it can be parsed by a human reader. This is useful # if you want to understand what is going on. On the other hand, if this # tag is set to NO the size of the Perl module output will be much smaller # and Perl will parse it just the same. PERLMOD_PRETTY = YES # The names of the make variables in the generated doxyrules.make file # are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. # This is useful so different doxyrules.make files included by the same # Makefile don't overwrite each other's variables. PERLMOD_MAKEVAR_PREFIX = #--------------------------------------------------------------------------- # Configuration options related to the preprocessor #--------------------------------------------------------------------------- # If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will # evaluate all C-preprocessor directives found in the sources and include # files. ENABLE_PREPROCESSING = YES # If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro # names in the source code. If set to NO (the default) only conditional # compilation will be performed. Macro expansion can be done in a controlled # way by setting EXPAND_ONLY_PREDEF to YES. MACRO_EXPANSION = NO # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES # then the macro expansion is limited to the macros specified with the # PREDEFINED and EXPAND_AS_DEFINED tags. EXPAND_ONLY_PREDEF = NO # If the SEARCH_INCLUDES tag is set to YES (the default) the includes files # in the INCLUDE_PATH (see below) will be search if a #include is found. SEARCH_INCLUDES = YES # The INCLUDE_PATH tag can be used to specify one or more directories that # contain include files that are not input files but should be processed by # the preprocessor. INCLUDE_PATH = # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard # patterns (like *.h and *.hpp) to filter out the header-files in the # directories. If left blank, the patterns specified with FILE_PATTERNS will # be used. INCLUDE_FILE_PATTERNS = # The PREDEFINED tag can be used to specify one or more macro names that # are defined before the preprocessor is started (similar to the -D option of # gcc). The argument of the tag is a list of macros of the form: name # or name=definition (no spaces). If the definition and the = are # omitted =1 is assumed. To prevent a macro definition from being # undefined via #undef or recursively expanded use the := operator # instead of the = operator. PREDEFINED = # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then # this tag can be used to specify a list of macro names that should be expanded. # The macro definition that is found in the sources will be used. # Use the PREDEFINED tag if you want to use a different macro definition. EXPAND_AS_DEFINED = # If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then # doxygen's preprocessor will remove all function-like macros that are alone # on a line, have an all uppercase name, and do not end with a semicolon. Such # function macros are typically used for boiler-plate code, and will confuse # the parser if not removed. SKIP_FUNCTION_MACROS = YES #--------------------------------------------------------------------------- # Configuration::additions related to external references #--------------------------------------------------------------------------- # The TAGFILES option can be used to specify one or more tagfiles. # Optionally an initial location of the external documentation # can be added for each tagfile. The format of a tag file without # this location is as follows: # TAGFILES = file1 file2 ... # Adding location for the tag files is done as follows: # TAGFILES = file1=loc1 "file2 = loc2" ... # where "loc1" and "loc2" can be relative or absolute paths or # URLs. If a location is present for each tag, the installdox tool # does not have to be run to correct the links. # Note that each tag file must have a unique name # (where the name does NOT include the path) # If a tag file is not located in the directory in which doxygen # is run, you must also specify the path to the tagfile here. TAGFILES = # When a file name is specified after GENERATE_TAGFILE, doxygen will create # a tag file that is based on the input files it reads. GENERATE_TAGFILE = # If the ALLEXTERNALS tag is set to YES all external classes will be listed # in the class index. If set to NO only the inherited external classes # will be listed. ALLEXTERNALS = NO # If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed # in the modules index. If set to NO, only the current project's groups will # be listed. EXTERNAL_GROUPS = YES # The PERL_PATH should be the absolute path and name of the perl script # interpreter (i.e. the result of `which perl'). PERL_PATH = /usr/bin/perl #--------------------------------------------------------------------------- # Configuration options related to the dot tool #--------------------------------------------------------------------------- # If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will # generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base # or super classes. Setting the tag to NO turns the diagrams off. Note that # this option is superseded by the HAVE_DOT option below. This is only a # fallback. It is recommended to install and use dot, since it yields more # powerful graphs. CLASS_DIAGRAMS = YES # You can define message sequence charts within doxygen comments using the \msc # command. Doxygen will then run the mscgen tool (see # http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the # documentation. The MSCGEN_PATH tag allows you to specify the directory where # the mscgen tool resides. If left empty the tool is assumed to be found in the # default search path. MSCGEN_PATH = # If set to YES, the inheritance and collaboration graphs will hide # inheritance and usage relations if the target is undocumented # or is not a class. HIDE_UNDOC_RELATIONS = YES # If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is # available from the path. This tool is part of Graphviz, a graph visualization # toolkit from AT&T and Lucent Bell Labs. The other options in this section # have no effect if this option is set to NO (the default) HAVE_DOT = NO # If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen # will generate a graph for each documented class showing the direct and # indirect inheritance relations. Setting this tag to YES will force the # the CLASS_DIAGRAMS tag to NO. CLASS_GRAPH = YES # If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen # will generate a graph for each documented class showing the direct and # indirect implementation dependencies (inheritance, containment, and # class references variables) of the class with other documented classes. COLLABORATION_GRAPH = YES # If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen # will generate a graph for groups, showing the direct groups dependencies GROUP_GRAPHS = YES # If the UML_LOOK tag is set to YES doxygen will generate inheritance and # collaboration diagrams in a style similar to the OMG's Unified Modeling # Language. UML_LOOK = NO # If set to YES, the inheritance and collaboration graphs will show the # relations between templates and their instances. TEMPLATE_RELATIONS = NO # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT # tags are set to YES then doxygen will generate a graph for each documented # file showing the direct and indirect include dependencies of the file with # other documented files. INCLUDE_GRAPH = YES # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and # HAVE_DOT tags are set to YES then doxygen will generate a graph for each # documented header file showing the documented files that directly or # indirectly include this file. INCLUDED_BY_GRAPH = YES # If the CALL_GRAPH and HAVE_DOT options are set to YES then # doxygen will generate a call dependency graph for every global function # or class method. Note that enabling this option will significantly increase # the time of a run. So in most cases it will be better to enable call graphs # for selected functions only using the \callgraph command. CALL_GRAPH = NO # If the CALLER_GRAPH and HAVE_DOT tags are set to YES then # doxygen will generate a caller dependency graph for every global function # or class method. Note that enabling this option will significantly increase # the time of a run. So in most cases it will be better to enable caller # graphs for selected functions only using the \callergraph command. CALLER_GRAPH = NO # If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen # will graphical hierarchy of all classes instead of a textual one. GRAPHICAL_HIERARCHY = YES # If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES # then doxygen will show the dependencies a directory has on other directories # in a graphical way. The dependency relations are determined by the #include # relations between the files in the directories. DIRECTORY_GRAPH = YES # The DOT_IMAGE_FORMAT tag can be used to set the image format of the images # generated by dot. Possible values are png, jpg, or gif # If left blank png will be used. DOT_IMAGE_FORMAT = png # The tag DOT_PATH can be used to specify the path where the dot tool can be # found. If left blank, it is assumed the dot tool can be found in the path. DOT_PATH = # The DOTFILE_DIRS tag can be used to specify one or more directories that # contain dot files that are included in the documentation (see the # \dotfile command). DOTFILE_DIRS = # The MAX_DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of # nodes that will be shown in the graph. If the number of nodes in a graph # becomes larger than this value, doxygen will truncate the graph, which is # visualized by representing a node as a red box. Note that doxygen if the # number of direct children of the root node in a graph is already larger than # DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note # that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. DOT_GRAPH_MAX_NODES = 50 # The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the # graphs generated by dot. A depth value of 3 means that only nodes reachable # from the root by following a path via at most 3 edges will be shown. Nodes # that lay further from the root node will be omitted. Note that setting this # option to 1 or 2 may greatly reduce the computation time needed for large # code bases. Also note that the size of a graph can be further restricted by # DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. MAX_DOT_GRAPH_DEPTH = 0 # Set the DOT_TRANSPARENT tag to YES to generate images with a transparent # background. This is enabled by default, which results in a transparent # background. Warning: Depending on the platform used, enabling this option # may lead to badly anti-aliased labels on the edges of a graph (i.e. they # become hard to read). DOT_TRANSPARENT = YES # Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output # files in one run (i.e. multiple -o and -T options on the command line). This # makes dot run faster, but since only newer versions of dot (>1.8.10) # support this, this feature is disabled by default. DOT_MULTI_TARGETS = NO # If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will # generate a legend page explaining the meaning of the various boxes and # arrows in the dot generated graphs. GENERATE_LEGEND = YES # If the DOT_CLEANUP tag is set to YES (the default) Doxygen will # remove the intermediate dot files that are used to generate # the various graphs. DOT_CLEANUP = YES #--------------------------------------------------------------------------- # Configuration::additions related to the search engine #--------------------------------------------------------------------------- # The SEARCHENGINE tag specifies whether or not a search engine should be # used. If set to NO the values of all tags below this one will be ignored. SEARCHENGINE = NO gtg-trace-0.2-2+dfsg/doc/Doxyfile.in000066400000000000000000001563501234554746700172210ustar00rootroot00000000000000# Doxyfile 1.5.5 # This file describes the settings to be used by the documentation system # doxygen (www.doxygen.org) for a project # # All text after a hash (#) is considered a comment and will be ignored # The format is: # TAG = value [value, ...] # For lists items can also be appended using: # TAG += value [value, ...] # Values that contain spaces should be placed between quotes (" ") #--------------------------------------------------------------------------- # Project related configuration options #--------------------------------------------------------------------------- # This tag specifies the encoding used for all characters in the config file # that follow. The default is UTF-8 which is also the encoding used for all # text before the first occurrence of this tag. Doxygen uses libiconv (or the # iconv built into libc) for the transcoding. See # http://www.gnu.org/software/libiconv for the list of possible encodings. DOXYFILE_ENCODING = UTF-8 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded # by quotes) that should identify the project. PROJECT_NAME = "Generic Trace Generator (GTG)" # The PROJECT_NUMBER tag can be used to enter a project or revision number. # This could be handy for archiving the generated documentation or # if some version control system is used. PROJECT_NUMBER = 0.1 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. # If a relative path is entered, it will be relative to the location # where doxygen was started. If left blank the current directory will be used. OUTPUT_DIRECTORY = . # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create # 4096 sub-directories (in 2 levels) under the output directory of each output # format and will distribute the generated files over these directories. # Enabling this option can be useful when feeding doxygen a huge amount of # source files, where putting all generated files in the same directory would # otherwise cause performance problems for the file system. CREATE_SUBDIRS = NO # The OUTPUT_LANGUAGE tag is used to specify the language in which all # documentation generated by doxygen is written. Doxygen will use this # information to generate all constant output in the proper language. # The default language is English, other supported languages are: # Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, # Croatian, Czech, Danish, Dutch, Farsi, Finnish, French, German, Greek, # Hungarian, Italian, Japanese, Japanese-en (Japanese with English messages), # Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, Polish, # Portuguese, Romanian, Russian, Serbian, Slovak, Slovene, Spanish, Swedish, # and Ukrainian. OUTPUT_LANGUAGE = English # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will # include brief member descriptions after the members that are listed in # the file and class documentation (similar to JavaDoc). # Set to NO to disable this. BRIEF_MEMBER_DESC = YES # If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend # the brief description of a member or function before the detailed description. # Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the # brief descriptions will be completely suppressed. REPEAT_BRIEF = YES # This tag implements a quasi-intelligent brief description abbreviator # that is used to form the text in various listings. Each string # in this list, if found as the leading text of the brief description, will be # stripped from the text and the result after processing the whole list, is # used as the annotated text. Otherwise, the brief description is used as-is. # If left blank, the following values are used ("$name" is automatically # replaced with the name of the entity): "The $name class" "The $name widget" # "The $name file" "is" "provides" "specifies" "contains" # "represents" "a" "an" "the" ABBREVIATE_BRIEF = # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then # Doxygen will generate a detailed section even if there is only a brief # description. ALWAYS_DETAILED_SEC = NO # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all # inherited members of a class in the documentation of that class as if those # members were ordinary class members. Constructors, destructors and assignment # operators of the base classes will not be shown. INLINE_INHERITED_MEMB = NO # If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full # path before files name in the file list and in the header files. If set # to NO the shortest path that makes the file name unique will be used. FULL_PATH_NAMES = NO # If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag # can be used to strip a user-defined part of the path. Stripping is # only done if one of the specified strings matches the left-hand part of # the path. The tag can be used to show relative paths in the file list. # If left blank the directory from which doxygen is run is used as the # path to strip. STRIP_FROM_PATH = # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of # the path mentioned in the documentation of a class, which tells # the reader which header file to include in order to use a class. # If left blank only the name of the header file containing the class # definition is used. Otherwise one should specify the include paths that # are normally passed to the compiler using the -I flag. STRIP_FROM_INC_PATH = # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter # (but less readable) file names. This can be useful is your file systems # doesn't support long names like on DOS, Mac, or CD-ROM. SHORT_NAMES = NO # If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen # will interpret the first line (until the first dot) of a JavaDoc-style # comment as the brief description. If set to NO, the JavaDoc # comments will behave just like regular Qt-style comments # (thus requiring an explicit @brief command for a brief description.) JAVADOC_AUTOBRIEF = NO # If the QT_AUTOBRIEF tag is set to YES then Doxygen will # interpret the first line (until the first dot) of a Qt-style # comment as the brief description. If set to NO, the comments # will behave just like regular Qt-style comments (thus requiring # an explicit \brief command for a brief description.) QT_AUTOBRIEF = NO # The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen # treat a multi-line C++ special comment block (i.e. a block of //! or /// # comments) as a brief description. This used to be the default behaviour. # The new default is to treat a multi-line C++ comment block as a detailed # description. Set this tag to YES if you prefer the old behaviour instead. MULTILINE_CPP_IS_BRIEF = NO # If the DETAILS_AT_TOP tag is set to YES then Doxygen # will output the detailed description near the top, like JavaDoc. # If set to NO, the detailed description appears after the member # documentation. DETAILS_AT_TOP = NO # If the INHERIT_DOCS tag is set to YES (the default) then an undocumented # member inherits the documentation from any documented member that it # re-implements. INHERIT_DOCS = YES # If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce # a new page for each member. If set to NO, the documentation of a member will # be part of the file/class/namespace that contains it. SEPARATE_MEMBER_PAGES = NO # The TAB_SIZE tag can be used to set the number of spaces in a tab. # Doxygen uses this value to replace tabs by spaces in code fragments. TAB_SIZE = 8 # This tag can be used to specify a number of aliases that acts # as commands in the documentation. An alias has the form "name=value". # For example adding "sideeffect=\par Side Effects:\n" will allow you to # put the command \sideeffect (or @sideeffect) in the documentation, which # will result in a user-defined paragraph with heading "Side Effects:". # You can put \n's in the value part of an alias to insert newlines. ALIASES = # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C # sources only. Doxygen will then generate output that is more tailored for C. # For instance, some of the names that are used will be different. The list # of all members will be omitted, etc. OPTIMIZE_OUTPUT_FOR_C = YES # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java # sources only. Doxygen will then generate output that is more tailored for # Java. For instance, namespaces will be presented as packages, qualified # scopes will look different, etc. OPTIMIZE_OUTPUT_JAVA = NO # Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran # sources only. Doxygen will then generate output that is more tailored for # Fortran. OPTIMIZE_FOR_FORTRAN = NO # Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL # sources. Doxygen will then generate output that is tailored for # VHDL. OPTIMIZE_OUTPUT_VHDL = NO # If you use STL classes (i.e. std::string, std::vector, etc.) but do not want # to include (a tag file for) the STL sources as input, then you should # set this tag to YES in order to let doxygen match functions declarations and # definitions whose arguments contain STL classes (e.g. func(std::string); v.s. # func(std::string) {}). This also make the inheritance and collaboration # diagrams that involve STL classes more complete and accurate. BUILTIN_STL_SUPPORT = NO # If you use Microsoft's C++/CLI language, you should set this option to YES to # enable parsing support. CPP_CLI_SUPPORT = NO # Set the SIP_SUPPORT tag to YES if your project consists of sip sources only. # Doxygen will parse them like normal C++ but will assume all classes use public # instead of private inheritance when no explicit protection keyword is present. SIP_SUPPORT = NO # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC # tag is set to YES, then doxygen will reuse the documentation of the first # member in the group (if any) for the other members of the group. By default # all members of a group must be documented explicitly. DISTRIBUTE_GROUP_DOC = NO # Set the SUBGROUPING tag to YES (the default) to allow class member groups of # the same type (for instance a group of public functions) to be put as a # subgroup of that type (e.g. under the Public Functions section). Set it to # NO to prevent subgrouping. Alternatively, this can be done per class using # the \nosubgrouping command. SUBGROUPING = YES # When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum # is documented as struct, union, or enum with the name of the typedef. So # typedef struct TypeS {} TypeT, will appear in the documentation as a struct # with name TypeT. When disabled the typedef will appear as a member of a file, # namespace, or class. And the struct will be named TypeS. This can typically # be useful for C code in case the coding convention dictates that all compound # types are typedef'ed and only the typedef is referenced, never the tag name. TYPEDEF_HIDES_STRUCT = NO #--------------------------------------------------------------------------- # Build related configuration options #--------------------------------------------------------------------------- # If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in # documentation are documented, even if no documentation was available. # Private class members and static file members will be hidden unless # the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES EXTRACT_ALL = YES # If the EXTRACT_PRIVATE tag is set to YES all private members of a class # will be included in the documentation. EXTRACT_PRIVATE = NO # If the EXTRACT_STATIC tag is set to YES all static members of a file # will be included in the documentation. EXTRACT_STATIC = YES # If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) # defined locally in source files will be included in the documentation. # If set to NO only classes defined in header files are included. EXTRACT_LOCAL_CLASSES = YES # This flag is only useful for Objective-C code. When set to YES local # methods, which are defined in the implementation section but not in # the interface are included in the documentation. # If set to NO (the default) only methods in the interface are included. EXTRACT_LOCAL_METHODS = NO # If this flag is set to YES, the members of anonymous namespaces will be # extracted and appear in the documentation as a namespace called # 'anonymous_namespace{file}', where file will be replaced with the base # name of the file that contains the anonymous namespace. By default # anonymous namespace are hidden. EXTRACT_ANON_NSPACES = NO # If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all # undocumented members of documented classes, files or namespaces. # If set to NO (the default) these members will be included in the # various overviews, but no documentation section is generated. # This option has no effect if EXTRACT_ALL is enabled. HIDE_UNDOC_MEMBERS = NO # If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all # undocumented classes that are normally visible in the class hierarchy. # If set to NO (the default) these classes will be included in the various # overviews. This option has no effect if EXTRACT_ALL is enabled. HIDE_UNDOC_CLASSES = NO # If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all # friend (class|struct|union) declarations. # If set to NO (the default) these declarations will be included in the # documentation. HIDE_FRIEND_COMPOUNDS = NO # If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any # documentation blocks found inside the body of a function. # If set to NO (the default) these blocks will be appended to the # function's detailed documentation block. HIDE_IN_BODY_DOCS = NO # The INTERNAL_DOCS tag determines if documentation # that is typed after a \internal command is included. If the tag is set # to NO (the default) then the documentation will be excluded. # Set it to YES to include the internal documentation. INTERNAL_DOCS = NO # If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate # file names in lower-case letters. If set to YES upper-case letters are also # allowed. This is useful if you have classes or files whose names only differ # in case and if your file system supports case sensitive file names. Windows # and Mac users are advised to set this option to NO. CASE_SENSE_NAMES = YES # If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen # will show members with their full class and namespace scopes in the # documentation. If set to YES the scope will be hidden. HIDE_SCOPE_NAMES = NO # If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen # will put a list of the files that are included by a file in the documentation # of that file. SHOW_INCLUDE_FILES = YES # If the INLINE_INFO tag is set to YES (the default) then a tag [inline] # is inserted in the documentation for inline members. INLINE_INFO = YES # If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen # will sort the (detailed) documentation of file and class members # alphabetically by member name. If set to NO the members will appear in # declaration order. SORT_MEMBER_DOCS = YES # If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the # brief documentation of file, namespace and class members alphabetically # by member name. If set to NO (the default) the members will appear in # declaration order. SORT_BRIEF_DOCS = NO # If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the # hierarchy of group names into alphabetical order. If set to NO (the default) # the group names will appear in their defined order. SORT_GROUP_NAMES = NO # If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be # sorted by fully-qualified names, including namespaces. If set to # NO (the default), the class list will be sorted only by class name, # not including the namespace part. # Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. # Note: This option applies only to the class list, not to the # alphabetical list. SORT_BY_SCOPE_NAME = NO # The GENERATE_TODOLIST tag can be used to enable (YES) or # disable (NO) the todo list. This list is created by putting \todo # commands in the documentation. GENERATE_TODOLIST = YES # The GENERATE_TESTLIST tag can be used to enable (YES) or # disable (NO) the test list. This list is created by putting \test # commands in the documentation. GENERATE_TESTLIST = YES # The GENERATE_BUGLIST tag can be used to enable (YES) or # disable (NO) the bug list. This list is created by putting \bug # commands in the documentation. GENERATE_BUGLIST = YES # The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or # disable (NO) the deprecated list. This list is created by putting # \deprecated commands in the documentation. GENERATE_DEPRECATEDLIST= YES # The ENABLED_SECTIONS tag can be used to enable conditional # documentation sections, marked by \if sectionname ... \endif. ENABLED_SECTIONS = # The MAX_INITIALIZER_LINES tag determines the maximum number of lines # the initial value of a variable or define consists of for it to appear in # the documentation. If the initializer consists of more lines than specified # here it will be hidden. Use a value of 0 to hide initializers completely. # The appearance of the initializer of individual variables and defines in the # documentation can be controlled using \showinitializer or \hideinitializer # command in the documentation regardless of this setting. MAX_INITIALIZER_LINES = 30 # Set the SHOW_USED_FILES tag to NO to disable the list of files generated # at the bottom of the documentation of classes and structs. If set to YES the # list will mention the files that were used to generate the documentation. SHOW_USED_FILES = YES # If the sources in your project are distributed over multiple directories # then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy # in the documentation. The default is NO. SHOW_DIRECTORIES = NO # The FILE_VERSION_FILTER tag can be used to specify a program or script that # doxygen should invoke to get the current version for each file (typically from # the version control system). Doxygen will invoke the program by executing (via # popen()) the command , where is the value of # the FILE_VERSION_FILTER tag, and is the name of an input file # provided by doxygen. Whatever the program writes to standard output # is used as the file version. See the manual for examples. FILE_VERSION_FILTER = #--------------------------------------------------------------------------- # configuration options related to warning and progress messages #--------------------------------------------------------------------------- # The QUIET tag can be used to turn on/off the messages that are generated # by doxygen. Possible values are YES and NO. If left blank NO is used. QUIET = NO # The WARNINGS tag can be used to turn on/off the warning messages that are # generated by doxygen. Possible values are YES and NO. If left blank # NO is used. WARNINGS = YES # If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings # for undocumented members. If EXTRACT_ALL is set to YES then this flag will # automatically be disabled. WARN_IF_UNDOCUMENTED = YES # If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for # potential errors in the documentation, such as not documenting some # parameters in a documented function, or documenting parameters that # don't exist or using markup commands wrongly. WARN_IF_DOC_ERROR = YES # This WARN_NO_PARAMDOC option can be abled to get warnings for # functions that are documented, but have no documentation for their parameters # or return value. If set to NO (the default) doxygen will only warn about # wrong or incomplete parameter documentation, but not about the absence of # documentation. WARN_NO_PARAMDOC = YES # The WARN_FORMAT tag determines the format of the warning messages that # doxygen can produce. The string should contain the $file, $line, and $text # tags, which will be replaced by the file and line number from which the # warning originated and the warning text. Optionally the format may contain # $version, which will be replaced by the version of the file (if it could # be obtained via FILE_VERSION_FILTER) WARN_FORMAT = "$file:$line: $text" # The WARN_LOGFILE tag can be used to specify a file to which warning # and error messages should be written. If left blank the output is written # to stderr. WARN_LOGFILE = #--------------------------------------------------------------------------- # configuration options related to the input files #--------------------------------------------------------------------------- # The INPUT tag can be used to specify the files and/or directories that contain # documented source files. You may enter file names like "myfile.cpp" or # directories like "/usr/src/myproject". Separate the files or directories # with spaces. INPUT = "@srcdir@/../inc/" "@srcdir@/../src/FORTRAN/" # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is # also the default input encoding. Doxygen uses libiconv (or the iconv built # into libc) for the transcoding. See http://www.gnu.org/software/libiconv for # the list of possible encodings. INPUT_ENCODING = UTF-8 # If the value of the INPUT tag contains directories, you can use the # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp # and *.h) to filter out the source-files in the directories. If left # blank the following patterns are tested: # *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx # *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py *.f90 FILE_PATTERNS = *.h *.f90 # The RECURSIVE tag can be used to turn specify whether or not subdirectories # should be searched for input files as well. Possible values are YES and NO. # If left blank NO is used. RECURSIVE = NO # The EXCLUDE tag can be used to specify files and/or directories that should # excluded from the INPUT source files. This way you can easily exclude a # subdirectory from a directory tree whose root is specified with the INPUT tag. EXCLUDE = # The EXCLUDE_SYMLINKS tag can be used select whether or not files or # directories that are symbolic links (a Unix filesystem feature) are excluded # from the input. EXCLUDE_SYMLINKS = NO # If the value of the INPUT tag contains directories, you can use the # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude # certain files from those directories. Note that the wildcards are matched # against the file with absolute path, so to exclude all test directories # for example use the pattern */test/* EXCLUDE_PATTERNS = # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names # (namespaces, classes, functions, etc.) that should be excluded from the # output. The symbol name can be a fully qualified name, a word, or if the # wildcard * is used, a substring. Examples: ANamespace, AClass, # AClass::ANamespace, ANamespace::*Test EXCLUDE_SYMBOLS = # The EXAMPLE_PATH tag can be used to specify one or more files or # directories that contain example code fragments that are included (see # the \include command). EXAMPLE_PATH = # If the value of the EXAMPLE_PATH tag contains directories, you can use the # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp # and *.h) to filter out the source-files in the directories. If left # blank all files are included. EXAMPLE_PATTERNS = # If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be # searched for input files to be used with the \include or \dontinclude # commands irrespective of the value of the RECURSIVE tag. # Possible values are YES and NO. If left blank NO is used. EXAMPLE_RECURSIVE = NO # The IMAGE_PATH tag can be used to specify one or more files or # directories that contain image that are included in the documentation (see # the \image command). IMAGE_PATH = # The INPUT_FILTER tag can be used to specify a program that doxygen should # invoke to filter for each input file. Doxygen will invoke the filter program # by executing (via popen()) the command , where # is the value of the INPUT_FILTER tag, and is the name of an # input file. Doxygen will then use the output that the filter program writes # to standard output. If FILTER_PATTERNS is specified, this tag will be # ignored. INPUT_FILTER = # The FILTER_PATTERNS tag can be used to specify filters on a per file pattern # basis. Doxygen will compare the file name with each pattern and apply the # filter if there is a match. The filters are a list of the form: # pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further # info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER # is applied to all files. FILTER_PATTERNS = # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using # INPUT_FILTER) will be used to filter the input files when producing source # files to browse (i.e. when SOURCE_BROWSER is set to YES). FILTER_SOURCE_FILES = NO #--------------------------------------------------------------------------- # configuration options related to source browsing #--------------------------------------------------------------------------- # If the SOURCE_BROWSER tag is set to YES then a list of source files will # be generated. Documented entities will be cross-referenced with these sources. # Note: To get rid of all source code in the generated output, make sure also # VERBATIM_HEADERS is set to NO. SOURCE_BROWSER = NO # Setting the INLINE_SOURCES tag to YES will include the body # of functions and classes directly in the documentation. INLINE_SOURCES = NO # Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct # doxygen to hide any special comment blocks from generated source code # fragments. Normal C and C++ comments will always remain visible. STRIP_CODE_COMMENTS = YES # If the REFERENCED_BY_RELATION tag is set to YES (the default) # then for each documented function all documented # functions referencing it will be listed. REFERENCED_BY_RELATION = NO # If the REFERENCES_RELATION tag is set to YES (the default) # then for each documented function all documented entities # called/used by that function will be listed. REFERENCES_RELATION = NO # If the REFERENCES_LINK_SOURCE tag is set to YES (the default) # and SOURCE_BROWSER tag is set to YES, then the hyperlinks from # functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will # link to the source code. Otherwise they will link to the documentstion. REFERENCES_LINK_SOURCE = YES # If the USE_HTAGS tag is set to YES then the references to source code # will point to the HTML generated by the htags(1) tool instead of doxygen # built-in source browser. The htags tool is part of GNU's global source # tagging system (see http://www.gnu.org/software/global/global.html). You # will need version 4.8.6 or higher. USE_HTAGS = NO # If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen # will generate a verbatim copy of the header file for each class for # which an include is specified. Set to NO to disable this. VERBATIM_HEADERS = YES #--------------------------------------------------------------------------- # configuration options related to the alphabetical class index #--------------------------------------------------------------------------- # If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index # of all compounds will be generated. Enable this if the project # contains a lot of classes, structs, unions or interfaces. ALPHABETICAL_INDEX = NO # If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then # the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns # in which this list will be split (can be a number in the range [1..20]) COLS_IN_ALPHA_INDEX = 5 # In case all classes in a project start with a common prefix, all # classes will be put under the same header in the alphabetical index. # The IGNORE_PREFIX tag can be used to specify one or more prefixes that # should be ignored while generating the index headers. IGNORE_PREFIX = #--------------------------------------------------------------------------- # configuration options related to the HTML output #--------------------------------------------------------------------------- # If the GENERATE_HTML tag is set to YES (the default) Doxygen will # generate HTML output. GENERATE_HTML = YES # The HTML_OUTPUT tag is used to specify where the HTML docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `html' will be used as the default path. HTML_OUTPUT = html # The HTML_FILE_EXTENSION tag can be used to specify the file extension for # each generated HTML page (for example: .htm,.php,.asp). If it is left blank # doxygen will generate files with .html extension. HTML_FILE_EXTENSION = .html # The HTML_HEADER tag can be used to specify a personal HTML header for # each generated HTML page. If it is left blank doxygen will generate a # standard header. HTML_HEADER = # The HTML_FOOTER tag can be used to specify a personal HTML footer for # each generated HTML page. If it is left blank doxygen will generate a # standard footer. HTML_FOOTER = # The HTML_STYLESHEET tag can be used to specify a user-defined cascading # style sheet that is used by each HTML page. It can be used to # fine-tune the look of the HTML output. If the tag is left blank doxygen # will generate a default style sheet. Note that doxygen will try to copy # the style sheet file to the HTML output directory, so don't put your own # stylesheet in the HTML output directory as well, or it will be erased! HTML_STYLESHEET = # If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, # files or namespaces will be aligned in HTML using tables. If set to # NO a bullet list will be used. HTML_ALIGN_MEMBERS = YES # If the GENERATE_HTMLHELP tag is set to YES, additional index files # will be generated that can be used as input for tools like the # Microsoft HTML help workshop to generate a compiled HTML help file (.chm) # of the generated HTML documentation. GENERATE_HTMLHELP = NO # If the GENERATE_DOCSET tag is set to YES, additional index files # will be generated that can be used as input for Apple's Xcode 3 # integrated development environment, introduced with OSX 10.5 (Leopard). # To create a documentation set, doxygen will generate a Makefile in the # HTML output directory. Running make will produce the docset in that # directory and running "make install" will install the docset in # ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find # it at startup. GENERATE_DOCSET = NO # When GENERATE_DOCSET tag is set to YES, this tag determines the name of the # feed. A documentation feed provides an umbrella under which multiple # documentation sets from a single provider (such as a company or product suite) # can be grouped. DOCSET_FEEDNAME = "Doxygen generated docs" # When GENERATE_DOCSET tag is set to YES, this tag specifies a string that # should uniquely identify the documentation set bundle. This should be a # reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen # will append .docset to the name. DOCSET_BUNDLE_ID = org.doxygen.Project # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML # documentation will contain sections that can be hidden and shown after the # page has loaded. For this to work a browser that supports # JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox # Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari). HTML_DYNAMIC_SECTIONS = NO # If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can # be used to specify the file name of the resulting .chm file. You # can add a path in front of the file if the result should not be # written to the html output directory. CHM_FILE = # If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can # be used to specify the location (absolute path including file name) of # the HTML help compiler (hhc.exe). If non-empty doxygen will try to run # the HTML help compiler on the generated index.hhp. HHC_LOCATION = # If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag # controls if a separate .chi index file is generated (YES) or that # it should be included in the master .chm file (NO). GENERATE_CHI = NO # If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag # controls whether a binary table of contents is generated (YES) or a # normal table of contents (NO) in the .chm file. BINARY_TOC = NO # The TOC_EXPAND flag can be set to YES to add extra items for group members # to the contents of the HTML help documentation and to the tree view. TOC_EXPAND = NO # The DISABLE_INDEX tag can be used to turn on/off the condensed index at # top of each HTML page. The value NO (the default) enables the index and # the value YES disables it. DISABLE_INDEX = NO # This tag can be used to set the number of enum values (range [1..20]) # that doxygen will group on one line in the generated HTML documentation. ENUM_VALUES_PER_LINE = 4 # If the GENERATE_TREEVIEW tag is set to YES, a side panel will be # generated containing a tree-like index structure (just like the one that # is generated for HTML Help). For this to work a browser that supports # JavaScript, DHTML, CSS and frames is required (for instance Mozilla 1.0+, # Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are # probably better off using the HTML help feature. GENERATE_TREEVIEW = NO # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be # used to set the initial width (in pixels) of the frame in which the tree # is shown. TREEVIEW_WIDTH = 250 #--------------------------------------------------------------------------- # configuration options related to the LaTeX output #--------------------------------------------------------------------------- # If the GENERATE_LATEX tag is set to YES (the default) Doxygen will # generate Latex output. GENERATE_LATEX = YES # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `latex' will be used as the default path. LATEX_OUTPUT = latex # The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be # invoked. If left blank `latex' will be used as the default command name. LATEX_CMD_NAME = latex # The MAKEINDEX_CMD_NAME tag can be used to specify the command name to # generate index for LaTeX. If left blank `makeindex' will be used as the # default command name. MAKEINDEX_CMD_NAME = makeindex # If the COMPACT_LATEX tag is set to YES Doxygen generates more compact # LaTeX documents. This may be useful for small projects and may help to # save some trees in general. COMPACT_LATEX = NO # The PAPER_TYPE tag can be used to set the paper type that is used # by the printer. Possible values are: a4, a4wide, letter, legal and # executive. If left blank a4wide will be used. PAPER_TYPE = a4wide # The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX # packages that should be included in the LaTeX output. EXTRA_PACKAGES = # The LATEX_HEADER tag can be used to specify a personal LaTeX header for # the generated latex document. The header should contain everything until # the first chapter. If it is left blank doxygen will generate a # standard header. Notice: only use this tag if you know what you are doing! LATEX_HEADER = # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated # is prepared for conversion to pdf (using ps2pdf). The pdf file will # contain links (just like the HTML output) instead of page references # This makes the output suitable for online browsing using a pdf viewer. PDF_HYPERLINKS = YES # If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of # plain latex in the generated Makefile. Set this option to YES to get a # higher quality PDF documentation. USE_PDFLATEX = YES # If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. # command to the generated LaTeX files. This will instruct LaTeX to keep # running if errors occur, instead of asking the user for help. # This option is also used when generating formulas in HTML. LATEX_BATCHMODE = NO # If LATEX_HIDE_INDICES is set to YES then doxygen will not # include the index chapters (such as File Index, Compound Index, etc.) # in the output. LATEX_HIDE_INDICES = NO #--------------------------------------------------------------------------- # configuration options related to the RTF output #--------------------------------------------------------------------------- # If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output # The RTF output is optimized for Word 97 and may not look very pretty with # other RTF readers or editors. GENERATE_RTF = NO # The RTF_OUTPUT tag is used to specify where the RTF docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `rtf' will be used as the default path. RTF_OUTPUT = rtf # If the COMPACT_RTF tag is set to YES Doxygen generates more compact # RTF documents. This may be useful for small projects and may help to # save some trees in general. COMPACT_RTF = NO # If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated # will contain hyperlink fields. The RTF file will # contain links (just like the HTML output) instead of page references. # This makes the output suitable for online browsing using WORD or other # programs which support those fields. # Note: wordpad (write) and others do not support links. RTF_HYPERLINKS = NO # Load stylesheet definitions from file. Syntax is similar to doxygen's # config file, i.e. a series of assignments. You only have to provide # replacements, missing definitions are set to their default value. RTF_STYLESHEET_FILE = # Set optional variables used in the generation of an rtf document. # Syntax is similar to doxygen's config file. RTF_EXTENSIONS_FILE = #--------------------------------------------------------------------------- # configuration options related to the man page output #--------------------------------------------------------------------------- # If the GENERATE_MAN tag is set to YES (the default) Doxygen will # generate man pages GENERATE_MAN = NO # The MAN_OUTPUT tag is used to specify where the man pages will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `man' will be used as the default path. MAN_OUTPUT = man # The MAN_EXTENSION tag determines the extension that is added to # the generated man pages (default is the subroutine's section .3) MAN_EXTENSION = .3 # If the MAN_LINKS tag is set to YES and Doxygen generates man output, # then it will generate one additional man file for each entity # documented in the real man page(s). These additional files # only source the real man page, but without them the man command # would be unable to find the correct page. The default is NO. MAN_LINKS = NO #--------------------------------------------------------------------------- # configuration options related to the XML output #--------------------------------------------------------------------------- # If the GENERATE_XML tag is set to YES Doxygen will # generate an XML file that captures the structure of # the code including all documentation. GENERATE_XML = NO # The XML_OUTPUT tag is used to specify where the XML pages will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `xml' will be used as the default path. XML_OUTPUT = xml # The XML_SCHEMA tag can be used to specify an XML schema, # which can be used by a validating XML parser to check the # syntax of the XML files. XML_SCHEMA = # The XML_DTD tag can be used to specify an XML DTD, # which can be used by a validating XML parser to check the # syntax of the XML files. XML_DTD = # If the XML_PROGRAMLISTING tag is set to YES Doxygen will # dump the program listings (including syntax highlighting # and cross-referencing information) to the XML output. Note that # enabling this will significantly increase the size of the XML output. XML_PROGRAMLISTING = YES #--------------------------------------------------------------------------- # configuration options for the AutoGen Definitions output #--------------------------------------------------------------------------- # If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will # generate an AutoGen Definitions (see autogen.sf.net) file # that captures the structure of the code including all # documentation. Note that this feature is still experimental # and incomplete at the moment. GENERATE_AUTOGEN_DEF = NO #--------------------------------------------------------------------------- # configuration options related to the Perl module output #--------------------------------------------------------------------------- # If the GENERATE_PERLMOD tag is set to YES Doxygen will # generate a Perl module file that captures the structure of # the code including all documentation. Note that this # feature is still experimental and incomplete at the # moment. GENERATE_PERLMOD = NO # If the PERLMOD_LATEX tag is set to YES Doxygen will generate # the necessary Makefile rules, Perl scripts and LaTeX code to be able # to generate PDF and DVI output from the Perl module output. PERLMOD_LATEX = NO # If the PERLMOD_PRETTY tag is set to YES the Perl module output will be # nicely formatted so it can be parsed by a human reader. This is useful # if you want to understand what is going on. On the other hand, if this # tag is set to NO the size of the Perl module output will be much smaller # and Perl will parse it just the same. PERLMOD_PRETTY = YES # The names of the make variables in the generated doxyrules.make file # are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. # This is useful so different doxyrules.make files included by the same # Makefile don't overwrite each other's variables. PERLMOD_MAKEVAR_PREFIX = #--------------------------------------------------------------------------- # Configuration options related to the preprocessor #--------------------------------------------------------------------------- # If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will # evaluate all C-preprocessor directives found in the sources and include # files. ENABLE_PREPROCESSING = YES # If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro # names in the source code. If set to NO (the default) only conditional # compilation will be performed. Macro expansion can be done in a controlled # way by setting EXPAND_ONLY_PREDEF to YES. MACRO_EXPANSION = NO # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES # then the macro expansion is limited to the macros specified with the # PREDEFINED and EXPAND_AS_DEFINED tags. EXPAND_ONLY_PREDEF = NO # If the SEARCH_INCLUDES tag is set to YES (the default) the includes files # in the INCLUDE_PATH (see below) will be search if a #include is found. SEARCH_INCLUDES = YES # The INCLUDE_PATH tag can be used to specify one or more directories that # contain include files that are not input files but should be processed by # the preprocessor. INCLUDE_PATH = # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard # patterns (like *.h and *.hpp) to filter out the header-files in the # directories. If left blank, the patterns specified with FILE_PATTERNS will # be used. INCLUDE_FILE_PATTERNS = # The PREDEFINED tag can be used to specify one or more macro names that # are defined before the preprocessor is started (similar to the -D option of # gcc). The argument of the tag is a list of macros of the form: name # or name=definition (no spaces). If the definition and the = are # omitted =1 is assumed. To prevent a macro definition from being # undefined via #undef or recursively expanded use the := operator # instead of the = operator. PREDEFINED = # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then # this tag can be used to specify a list of macro names that should be expanded. # The macro definition that is found in the sources will be used. # Use the PREDEFINED tag if you want to use a different macro definition. EXPAND_AS_DEFINED = # If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then # doxygen's preprocessor will remove all function-like macros that are alone # on a line, have an all uppercase name, and do not end with a semicolon. Such # function macros are typically used for boiler-plate code, and will confuse # the parser if not removed. SKIP_FUNCTION_MACROS = YES #--------------------------------------------------------------------------- # Configuration::additions related to external references #--------------------------------------------------------------------------- # The TAGFILES option can be used to specify one or more tagfiles. # Optionally an initial location of the external documentation # can be added for each tagfile. The format of a tag file without # this location is as follows: # TAGFILES = file1 file2 ... # Adding location for the tag files is done as follows: # TAGFILES = file1=loc1 "file2 = loc2" ... # where "loc1" and "loc2" can be relative or absolute paths or # URLs. If a location is present for each tag, the installdox tool # does not have to be run to correct the links. # Note that each tag file must have a unique name # (where the name does NOT include the path) # If a tag file is not located in the directory in which doxygen # is run, you must also specify the path to the tagfile here. TAGFILES = # When a file name is specified after GENERATE_TAGFILE, doxygen will create # a tag file that is based on the input files it reads. GENERATE_TAGFILE = # If the ALLEXTERNALS tag is set to YES all external classes will be listed # in the class index. If set to NO only the inherited external classes # will be listed. ALLEXTERNALS = NO # If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed # in the modules index. If set to NO, only the current project's groups will # be listed. EXTERNAL_GROUPS = YES # The PERL_PATH should be the absolute path and name of the perl script # interpreter (i.e. the result of `which perl'). PERL_PATH = /usr/bin/perl #--------------------------------------------------------------------------- # Configuration options related to the dot tool #--------------------------------------------------------------------------- # If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will # generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base # or super classes. Setting the tag to NO turns the diagrams off. Note that # this option is superseded by the HAVE_DOT option below. This is only a # fallback. It is recommended to install and use dot, since it yields more # powerful graphs. CLASS_DIAGRAMS = YES # You can define message sequence charts within doxygen comments using the \msc # command. Doxygen will then run the mscgen tool (see # http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the # documentation. The MSCGEN_PATH tag allows you to specify the directory where # the mscgen tool resides. If left empty the tool is assumed to be found in the # default search path. MSCGEN_PATH = # If set to YES, the inheritance and collaboration graphs will hide # inheritance and usage relations if the target is undocumented # or is not a class. HIDE_UNDOC_RELATIONS = YES # If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is # available from the path. This tool is part of Graphviz, a graph visualization # toolkit from AT&T and Lucent Bell Labs. The other options in this section # have no effect if this option is set to NO (the default) HAVE_DOT = NO # If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen # will generate a graph for each documented class showing the direct and # indirect inheritance relations. Setting this tag to YES will force the # the CLASS_DIAGRAMS tag to NO. CLASS_GRAPH = YES # If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen # will generate a graph for each documented class showing the direct and # indirect implementation dependencies (inheritance, containment, and # class references variables) of the class with other documented classes. COLLABORATION_GRAPH = YES # If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen # will generate a graph for groups, showing the direct groups dependencies GROUP_GRAPHS = YES # If the UML_LOOK tag is set to YES doxygen will generate inheritance and # collaboration diagrams in a style similar to the OMG's Unified Modeling # Language. UML_LOOK = NO # If set to YES, the inheritance and collaboration graphs will show the # relations between templates and their instances. TEMPLATE_RELATIONS = NO # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT # tags are set to YES then doxygen will generate a graph for each documented # file showing the direct and indirect include dependencies of the file with # other documented files. INCLUDE_GRAPH = YES # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and # HAVE_DOT tags are set to YES then doxygen will generate a graph for each # documented header file showing the documented files that directly or # indirectly include this file. INCLUDED_BY_GRAPH = YES # If the CALL_GRAPH and HAVE_DOT options are set to YES then # doxygen will generate a call dependency graph for every global function # or class method. Note that enabling this option will significantly increase # the time of a run. So in most cases it will be better to enable call graphs # for selected functions only using the \callgraph command. CALL_GRAPH = NO # If the CALLER_GRAPH and HAVE_DOT tags are set to YES then # doxygen will generate a caller dependency graph for every global function # or class method. Note that enabling this option will significantly increase # the time of a run. So in most cases it will be better to enable caller # graphs for selected functions only using the \callergraph command. CALLER_GRAPH = NO # If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen # will graphical hierarchy of all classes instead of a textual one. GRAPHICAL_HIERARCHY = YES # If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES # then doxygen will show the dependencies a directory has on other directories # in a graphical way. The dependency relations are determined by the #include # relations between the files in the directories. DIRECTORY_GRAPH = YES # The DOT_IMAGE_FORMAT tag can be used to set the image format of the images # generated by dot. Possible values are png, jpg, or gif # If left blank png will be used. DOT_IMAGE_FORMAT = png # The tag DOT_PATH can be used to specify the path where the dot tool can be # found. If left blank, it is assumed the dot tool can be found in the path. DOT_PATH = # The DOTFILE_DIRS tag can be used to specify one or more directories that # contain dot files that are included in the documentation (see the # \dotfile command). DOTFILE_DIRS = # The MAX_DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of # nodes that will be shown in the graph. If the number of nodes in a graph # becomes larger than this value, doxygen will truncate the graph, which is # visualized by representing a node as a red box. Note that doxygen if the # number of direct children of the root node in a graph is already larger than # DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note # that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. DOT_GRAPH_MAX_NODES = 50 # The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the # graphs generated by dot. A depth value of 3 means that only nodes reachable # from the root by following a path via at most 3 edges will be shown. Nodes # that lay further from the root node will be omitted. Note that setting this # option to 1 or 2 may greatly reduce the computation time needed for large # code bases. Also note that the size of a graph can be further restricted by # DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. MAX_DOT_GRAPH_DEPTH = 0 # Set the DOT_TRANSPARENT tag to YES to generate images with a transparent # background. This is enabled by default, which results in a transparent # background. Warning: Depending on the platform used, enabling this option # may lead to badly anti-aliased labels on the edges of a graph (i.e. they # become hard to read). DOT_TRANSPARENT = YES # Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output # files in one run (i.e. multiple -o and -T options on the command line). This # makes dot run faster, but since only newer versions of dot (>1.8.10) # support this, this feature is disabled by default. DOT_MULTI_TARGETS = NO # If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will # generate a legend page explaining the meaning of the various boxes and # arrows in the dot generated graphs. GENERATE_LEGEND = YES # If the DOT_CLEANUP tag is set to YES (the default) Doxygen will # remove the intermediate dot files that are used to generate # the various graphs. DOT_CLEANUP = YES #--------------------------------------------------------------------------- # Configuration::additions related to the search engine #--------------------------------------------------------------------------- # The SEARCHENGINE tag specifies whether or not a search engine should be # used. If set to NO the values of all tags below this one will be ignored. SEARCHENGINE = NO gtg-trace-0.2-2+dfsg/doc/Makefile.am000066400000000000000000000032311234554746700171270ustar00rootroot00000000000000# Copyright © CNRS, INRIA, Université Bordeaux 1 # See COPYING in top-level directory. if USE_DOXYGEN DOX_DIR = . DOC_DIR = $(builddir) DOX_CONFIG = $(DOX_DIR)/Doxyfile DOX_MAN_DIR = $(DOC_DIR)/man DOX_LATEX_DIR = $(DOC_DIR)/latex DOX_PDF = $(DOC_DIR)/gtg_refmanual.pdf DOX_HTML_DIR = $(DOC_DIR)/html/ DOX_TAG = $(DOC_DIR)/gtg.tag # TODO: we should add source files so that the documentation is # regenerated when a file changes docx_inputs = $(DOX_CONFIG) $(DOX_TAG): $(docx_inputs) doxygen $(DOX_CONFIG) touch $(DOX_TAG) $(DOX_HTML_DIR): $(DOX_TAG) $(DOX_PDF): $(DOX_TAG) cd $(DOX_LATEX_DIR) &&\ rm -f *.aux *.toc *.idx *.ind *.ilg *.log *.out; \ $(PDFLATEX) refman.tex; \ $(MAKEINDEX) refman.idx; \ $(PDFLATEX) refman.tex; \ done=0; repeat=5; \ while test $$done = 0 -a $$repeat -gt 0; do \ if $(EGREP) 'Rerun (LaTeX|to get cross-references right)' refman.log > /dev/null 2>&1; then \ $(PDFLATEX) refman.tex; \ repeat=`expr $$repeat - 1`; \ else \ done=1; \ fi; \ done; \ cd -; \ mv $(DOX_LATEX_DIR)/refman.pdf $(DOX_PDF) EXTRA_DIST = $(DOX_HTML_DIR) if USE_PDFLATEX EXTRA_DIST += $(DOX_PDF) endif # Crappy hack: automake cannot copy a directory, so we have to do it by hand. install_html: $(DOX_TAG) $(DOX_HTML_DIR)/index.html mkdir -p $(DESTDIR)$(htmldir) cp -r $(DOX_HTML_DIR) $(DESTDIR)$(htmldir) install_pdf: $(DOX_PDF) mkdir -p $(DESTDIR)$(pdfdir) cp -r $(DOX_PDF) $(DESTDIR)$(pdfdir) if USE_PDFLATEX install-data-am: install_pdf install_html else install-data-am: install_html endif include_HEADERS = Doxyfile endif gtg-trace-0.2-2+dfsg/doc/Makefile.in000066400000000000000000000444001234554746700171430ustar00rootroot00000000000000# Makefile.in generated by automake 1.14.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 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@ # Copyright © CNRS, INRIA, Université Bordeaux 1 # See COPYING in top-level directory. VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ @USE_DOXYGEN_TRUE@@USE_PDFLATEX_TRUE@am__append_1 = $(DOX_PDF) subdir = doc DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(srcdir)/Doxyfile.in $(am__include_HEADERS_DIST) 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) mkinstalldirs = $(install_sh) -d CONFIG_CLEAN_FILES = Doxyfile CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__include_HEADERS_DIST = Doxyfile 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__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } am__installdirs = "$(DESTDIR)$(includedir)" HEADERS = $(include_HEADERS) am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ F77 = @F77@ FFLAGS = @FFLAGS@ FGREP = @FGREP@ GREP = @GREP@ HAVE_DOXYGEN = @HAVE_DOXYGEN@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MPIDIR = @MPIDIR@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTFDIR = @OTFDIR@ OTF_INC = @OTF_INC@ OTF_LIB = @OTF_LIB@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ 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@ PDFLATEX = @PDFLATEX@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_MPIDIR_FROM_USER = @USE_MPIDIR_FROM_USER@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_F77 = @ac_ct_F77@ 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@ subdirs = @subdirs@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ @USE_DOXYGEN_TRUE@DOX_DIR = . @USE_DOXYGEN_TRUE@DOC_DIR = $(builddir) @USE_DOXYGEN_TRUE@DOX_CONFIG = $(DOX_DIR)/Doxyfile @USE_DOXYGEN_TRUE@DOX_MAN_DIR = $(DOC_DIR)/man @USE_DOXYGEN_TRUE@DOX_LATEX_DIR = $(DOC_DIR)/latex @USE_DOXYGEN_TRUE@DOX_PDF = $(DOC_DIR)/gtg_refmanual.pdf @USE_DOXYGEN_TRUE@DOX_HTML_DIR = $(DOC_DIR)/html/ @USE_DOXYGEN_TRUE@DOX_TAG = $(DOC_DIR)/gtg.tag # TODO: we should add source files so that the documentation is # regenerated when a file changes @USE_DOXYGEN_TRUE@docx_inputs = $(DOX_CONFIG) @USE_DOXYGEN_TRUE@EXTRA_DIST = $(DOX_HTML_DIR) $(am__append_1) @USE_DOXYGEN_TRUE@include_HEADERS = Doxyfile all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu doc/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu doc/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): Doxyfile: $(top_builddir)/config.status $(srcdir)/Doxyfile.in cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-includeHEADERS: $(include_HEADERS) @$(NORMAL_INSTALL) @list='$(include_HEADERS)'; test -n "$(includedir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(includedir)'"; \ $(MKDIR_P) "$(DESTDIR)$(includedir)" || exit 1; \ fi; \ 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)$(includedir)'"; \ $(INSTALL_HEADER) $$files "$(DESTDIR)$(includedir)" || exit $$?; \ done uninstall-includeHEADERS: @$(NORMAL_UNINSTALL) @list='$(include_HEADERS)'; test -n "$(includedir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(includedir)'; $(am__uninstall_files_from_dir) ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ 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-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ 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" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @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 check-am: all-am check: check-am all-am: Makefile $(HEADERS) installdirs: for dir in "$(DESTDIR)$(includedir)"; 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: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: 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." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -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: @USE_DOXYGEN_FALSE@install-data-am: install-includeHEADERS 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 Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-includeHEADERS .MAKE: install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ clean-libtool cscopelist-am ctags ctags-am distclean \ distclean-generic distclean-libtool distclean-tags distdir 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-includeHEADERS install-info install-info-am \ install-man install-pdf install-pdf-am install-ps \ install-ps-am install-strip installcheck installcheck-am \ installdirs maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-am \ uninstall-includeHEADERS @USE_DOXYGEN_TRUE@$(DOX_TAG): $(docx_inputs) @USE_DOXYGEN_TRUE@ doxygen $(DOX_CONFIG) @USE_DOXYGEN_TRUE@ touch $(DOX_TAG) @USE_DOXYGEN_TRUE@$(DOX_HTML_DIR): $(DOX_TAG) @USE_DOXYGEN_TRUE@$(DOX_PDF): $(DOX_TAG) @USE_DOXYGEN_TRUE@ cd $(DOX_LATEX_DIR) &&\ @USE_DOXYGEN_TRUE@ rm -f *.aux *.toc *.idx *.ind *.ilg *.log *.out; \ @USE_DOXYGEN_TRUE@ $(PDFLATEX) refman.tex; \ @USE_DOXYGEN_TRUE@ $(MAKEINDEX) refman.idx; \ @USE_DOXYGEN_TRUE@ $(PDFLATEX) refman.tex; \ @USE_DOXYGEN_TRUE@ done=0; repeat=5; \ @USE_DOXYGEN_TRUE@ while test $$done = 0 -a $$repeat -gt 0; do \ @USE_DOXYGEN_TRUE@ if $(EGREP) 'Rerun (LaTeX|to get cross-references right)' refman.log > /dev/null 2>&1; then \ @USE_DOXYGEN_TRUE@ $(PDFLATEX) refman.tex; \ @USE_DOXYGEN_TRUE@ repeat=`expr $$repeat - 1`; \ @USE_DOXYGEN_TRUE@ else \ @USE_DOXYGEN_TRUE@ done=1; \ @USE_DOXYGEN_TRUE@ fi; \ @USE_DOXYGEN_TRUE@ done; \ @USE_DOXYGEN_TRUE@ cd -; \ @USE_DOXYGEN_TRUE@ mv $(DOX_LATEX_DIR)/refman.pdf $(DOX_PDF) # Crappy hack: automake cannot copy a directory, so we have to do it by hand. @USE_DOXYGEN_TRUE@install_html: $(DOX_TAG) $(DOX_HTML_DIR)/index.html @USE_DOXYGEN_TRUE@ mkdir -p $(DESTDIR)$(htmldir) @USE_DOXYGEN_TRUE@ cp -r $(DOX_HTML_DIR) $(DESTDIR)$(htmldir) @USE_DOXYGEN_TRUE@install_pdf: $(DOX_PDF) @USE_DOXYGEN_TRUE@ mkdir -p $(DESTDIR)$(pdfdir) @USE_DOXYGEN_TRUE@ cp -r $(DOX_PDF) $(DESTDIR)$(pdfdir) @USE_DOXYGEN_TRUE@@USE_PDFLATEX_TRUE@install-data-am: install_pdf install_html @USE_DOXYGEN_TRUE@@USE_PDFLATEX_FALSE@install-data-am: install_html # 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: gtg-trace-0.2-2+dfsg/doc/gtg_refmanual.pdf000066400000000000000000014077461234554746700204250ustar00rootroot00000000000000%PDF-1.5 %ĐÔĹŘ 2 0 obj << /Type /ObjStm /N 100 /First 828 /Length 1327 /Filter /FlateDecode >> stream xÚŐXMo7˝ďŻŕ1ľŘ$gř±@ #@Z°Ń“/¶¤ÄFíČä ů÷}TPZÜ/’–‹ĘqµËĺĚ›73oą«„FV(2˘Ę:ˇ¤ĐVá‚Đ-,Čyˇś`L(/صB+adŰh-,áĚë çĂ"á±F}+‘hq1ĚĘ` Gś,*8a8P-5¬áO“`Ł•‚ČHř$Ă o@ބٷÂŔž÷FŘ öŤZLjĄUcµĐÚ#.#4VhVJX eqŃ VĽV¶Â±ĐţťĂŃ‚8`ß+˘uă‚Âb\"-­"KˇI0‡H "o¸-B´pŢ:„Ś8ZʱNIôě%a± đ±šZŘQf8ÖŚ)ś0Á”źĚ¸bPäyŕĆ‚cµÍH 9açlŁ.ęňÂ-YdĆČ@5‰)¬46ňct`& š‘"Ă>Lyal°Ś•ŕJ5ŠŃŢ‘&ăÁˇBžLëĂ=ŕ^ęmÖŤ)°lň€ü »-(D ČđŽlˇnŕW-ë¶ ÷Ům8ŕĚÚP„Čő7°n˝ÁrřsR†R ůűUÂ)T…BÚśBNPH© uŞđ‡tŁ9gŔ±Bęś u†űś „ăç\Ŕ ˛ś´ }®m ¤űP§ (˝táŹbĺ„ zÔZóö­89'gË‹Ą89of7W›ĹęX‰wďš7—ä,~îRJ©Âp)Y†ăEn°ؽ|çÎv/ß…á6 ×aX…á*ţűyÔ±^Ě6·ËďÇjČqŇŃŕŇ:ţű†Môą‰`–ŰŮŁQtß·Ţőř[42Ăc 5áäsÄ0Źsʇ¬‡BÖĂ!OXŹGF}´kř4eëjwî<^^E§łxí1ÍÂ3I !h„Ă:Á÷Ńđ®źO±¦öÎ?…ÎáOąýç¶ť°Îôý™ú2?ŤwÍâ]÷ĎďÁé0Cta:.Rq™ő0nÝţ ĂCoî&®{ĘŐS”«„Ź×; `Ž”î"Ą¦“Îůđýëŕ*.z(d6Ĺ­Ëp'Â÷1ŇÔIój4Ă˝<Ť¤áĄËÁvâ-ÍÔćnĆŠ¬U–y*ĂA˝ŽŚTĚrT˙çtR)ť#ę}a}ŤĂ"Őĺů€m'ŢPđ#Ťć—˛@tm IO|K{ů÷ă~˘ş¨M@¸ŘŻR»Ř¸[ň„\ż¶j2aş§8ËÝ+·±ţo#¨¤Ĺű›Űoiß ^_˛7ągŇ×Ág¸y" '*Ł%MÓ‡úôŃ)ě'óŔ4P—Ó?’«Hő<}şnŇúܶşqĹ]ŚfQ†RעLh_¤{ŁÁ.ĂAµ8(׹{€áZ0S˛ö!Î}ě‰Î+ézJŃ&™yÖF`˝»č Ę]‘n- Tq–úëHIG)×AČě&čP…,ły W!d”2Ę ŮűTČ:ÝĐ…Z†H×"ŇŇúˇ´X˰Q-6ŞÄVżSŁś¤QNŇćiw4F¤“(ů µn=Đb‹]ăéĆâCŐ5žn?~şĆ9]ăĘ ÚůXÔ·+çŽs ÷©xĹV†jqPÇc,ľ›=Áp-©mY)ŽŔLy7©M‹řőŁÓ59mĘ|a5‡ŞM™÷ó*´)űînžóňřŁz§•}7•;­ŹcĺXóÇN!˛˙oŢĄűťżJZÍNçÚj«ŮéÚ°Ż˘Ől®Őle«}¨€ú€Íuž­ü0Ó…Uj!ĐÄĆxOű`ţĄĺŃ; endstream endobj 203 0 obj << /Type /ObjStm /N 100 /First 885 /Length 1430 /Filter /FlateDecode >> stream xÚŐYŰNI }źŻ¨ÇäşěşJQ$ ‹B.Ú HĽěhବ”żßăNđt3ĂLU%Y‘‡©®q»ěc»úF™ÎP ŃyC˘€˙Ö×eťq.ŕčMčÇd‚˝l"á<‘‰ŃNؤ9“­ŘŠĆvť5Ä&+Ůk!&vx¬eo,[8ㄉI6Öe¸sd¬gžVÚ l¤–S‚+ËY z¸éz‰°^"HŽOâX$YVúoÁyK ŔB–ÁPDĽ —,Äţ’ŘfŹ–sĆÜ Â [§‘@QN„IŽJlŘ!q”[硜˘aa‘p@.)[ĂQ€Á(GA—a9 – ËąKâtâ0qiÂ`ŔŮ`ÍIÎĽ9F&Ä9ÎsžDę|‰7.D‘$㢠,'Đ͠ϥ˰ĺ˛č€@߉ňŇňĘOżĹö‘VmiŐö1 ş[î-<“፠»:űs¨Đk?×Ĺ·âM]ňľW( jC _¶*>×áuY\˙Â8f!l•ˇwµčÝĎ@˙n1ú…ëV¶t!Ł´(ĽŹúßZšK[š«ZzÖššŕ—ex¨Uá)ß*¸ŠáâŰÔŞěëlż¸ĺą´i¸Şi¶”ĄÔËötůZxľŢť]ócĽP /4Â{+ĂNĎkEÝÇZx±^óő… îďŕIőx^kööĘ@ĺZPąÔKEŃĎv ÷Í®iăě íjőâ?Tëö۶ĎŰŰÖ§–šŇŹ mkYËMHK®Ż´&ßë}Cá6l]Ş’kĹěŽjCsµ]Í7A+ąN42š…R@ď5aoµţJs› •\*ďÖ%5aIuXĆwot(™›@–\!fĎ í·GÔ5ÝŮ–\0öĆřv Ů&@%—„}Ý^wfř Qµ=”l˙5M»ă2Ű_öÂliYŤŞç•>™ťŹßt}jťëŰ…ÎNÇ+Ow+Cóňç·üPßĺĺĎyů·x#–W˝˫ޝŞăÓaˇŽß¤öŕ˙*śŚżč—aĄZ¬ô3°ÎęýěŽjj®EÍ? őý˝ü]köN|z_·j,ËćŢč&öb(žŽK÷XťhžŹćŢ#MçZăŮđĎĄ®}ükÎεz»ăh{ÜUÇc˝ëq 7őÄ•‚;şŮÝŃ­ŘGl·Ľgi}» ĐSú‡ĽJ(UTÜł#Ţ­úďŤv:ćęVĽđ»S!XjKKŔnŚ?P>SHçĺWö9Ü“[`Ί ţcjŹŐ5auĺXźŹaNuöuüvýLKĐ˙“Ťôd endstream endobj 404 0 obj << /Type /ObjStm /N 100 /First 885 /Length 1383 /Filter /FlateDecode >> stream xÚŐ]O#7†ďó+|ą\4řK«•¶ ‹VŞÚ•@˝â¦ĄB íżď{F‰Ăx<ŃŞ•Ŕq<ö™ç|Ś=y­6J+«˛Q‘C—H±Ć0±2ĆâÓ)dÜ+§=>“r6)ËZůulT`?±lU4XÇAĹ€u {w°†Đ±rVÄbÂ8tćŻČxL6I‘X«AHŔˇ‰µV‘O#AQŔDka9:Lv°ś4ŁĂ`fXvťËÎ+f Ë.ˇÖkĹĆò7ŠáĺÄâĆěŕ†Ĺ(;ÁđQq 0!H4,ÇHčŔrb`ŻŚ–Ŕ„„ŽŚ‘f„Ăď&6ZeÉH@P6FDQFˇ›ß(~áß$Â:)I4â-ńD°ťÄ·ź8qɲ¤Bbäĺ’řFQ9$ÎzOč "PŽäĆČŹCî`ťŃ‘Ú)qŰ‚éşË–‘?gËá‰čŔ¨xéA×MDťwr—&™¨\”Éb+i© Ô…î–t,#žŕŚ)ϸîo‡ z ç`^ůÎ<‚…;`22čŕ0ĎŘp^*.`22č…‰ä,h™Ś¨źÁŔb F,#AŠŇ!A+Ö‹âARÁ3&#XCč Ł32’”<2îěÁ¨1ěÁHHĄCŁÔ CŁŤŻ˘·2’ĐybÄJDoňţ˝:{Ľ^ÜMÝ”ô”§î@}ř0ywŽJÁ8×Č™4SiHťżrîuSεí®ý&Í™4źĄů(ÍEnŽĄy–f.Íť4Źupľ ÎŹ„Ë+ľKsß]­MŔˇři®3ëß#Xck¬g=ÍŃü#÷ć#€SpŞţ=ł>T"‘nbZ] 6"~Dí°´ö('v™óÜq.2ç§üő®,ŠU)ĎĹťŰ]á-®gśŢ§­–δәzşłč.”łAµ`ŰíÄ/ńşÜK[9];ç¶Cęk.Čű7·ŞZDߎčw!>ĺÇęĎŃśˇťsŰ ušźŢÇňQżÍá}(we-ql'ŽőÄŁ‚šÚS=âđ“‰ŰN&Ţu2mëˇ'ďűŮâ™Ú 7{ćvNŢĹŮ=ţßvWŔ iwÔŠŕ|Íf˙Ęząv]&sžĂuą±—÷/zů´ţe‘׿Ś<ćÍ­°s’ŁŃő~η\ć»Ě^yó1»ôĄ?{kqšVFjúę.Gĺłą*ň›|á˘ţ2c?äE÷ŮĐőę ÚMĎč‹2űśëę.ÓlŢţý"O}Ę;űĽçYŻócÓ•A©ŕţ¤ô2™ÎÖU™°—áYćĽÉ˝‡Jbn".qßCĽńŢżq–Ţ˙-¬¦‰Ő4łŽß˙…Ú6QŰ=P7üĽ˘*%…v))ŔÇ%ëę-ű{yJÜ䇵–ß7ńűţç¶BM„a„#ę"6QÇÔ{†¨Jgˇ]:Kđ>Ő!Ş“b¨JŠ©`ö:NuÚ Ui/ĂčĆēۉwžs?X2˘:Q†ŞD™>ĆëFT'ĘP•(SŘ*ĘPť(CU˘LçIů˛ökžr;Ń·#î<Ňö)rQť2CUĘLěž”.ŞÓc¨JŹy“sOrŐ)3TĄĚôÁ®ä™~Ŕ«0ëö_şŢ•}ĘwT§ŕP•‚S=¦RxÄŹ9Č9üÍM;ť©˘Ű“ÖÁÚvX[[«őŇąvşâÜz.÷ţ1çëŠpw6é8ËőE—+ˇăU´ĺëŘ}ifU Wë+çoýXú©Ü=ĄZ¸,•Ľ×v/ŞTłň‡ďÍ–}j-âÂ˙g5ŔŠ˙ O‡ĄâŤ¤\ĺŰ_­ë|«ăkV–˙ĹÁä_1s$ endstream endobj 605 0 obj << /Type /ObjStm /N 100 /First 885 /Length 1259 /Filter /FlateDecode >> stream xÚÍYMsŰ6˝ëWŕ_d|,v™L.MÓ驝&Ó“/Žíşš4’G’Óéżď[N ‰MTü1±©…¸Ä{űv±¶d¬a› |dăR2ěĽńŢá3€_vlBÔ±h1öÖDÂX}2ü=!7cM ăd’¨ćł‡ŕŤsę‚q>2 †‘ÔăHż! CŃ1łă$0Č8ń4cŠŕĹ꓌ËV}0so8‚Şu#ŔĐÇ1—w`ČQE†ÁÖřŕ1!;ăIŕĚd|t`ĚŃx}”9ÁČŕÎŮxQĚî"gDâ“ŢĚśÁ—EL°N˛0Ź'Ą·ÁHyĆ)šŕ3§ĄlYp΂ă }ن“UŕŞ37rZĚĚY,fh#ČTfb1s;Á“!»#˛ĐX8˛‚o5r1Ă`ŮÁ¤4ҹÏ™GlýL?âĆő >ŔŔĚ śłSgAIS Č ep– Uá´PňŁLt·đ@D g‚ FOz+Á€$‚ FB”‚ F"@ 1‚”`Š1d0* €e323Bd0ćH3AQ·™µpˇł ¨Lřh}xAkQS ˘‡¤‰hyÁQ’Š(ÂFĹ@ş¤őád&I«AŐĐŞjÔ@Y"A9<Ž r†Ř˘™ÎŹëmČ$ŤÍ"ÉŞ A hä%ĚŢľ5çÍů/«O+sţŢĽŮÜÖź›«íbµśÇąósü;3ďŢÍŢ\aüĘ…µ6ęe®§_†Ö…%«ź·zŮëÂ…fšő˛Öˢ8Üě;4oĹZŻÍŮ1÷ë0Č8ěłű¤—˙ôrW 6ű÷ĺ›ćŢőY§p{řs7ŽÁnřőľ 4q^qţŮÁwű7ü®ÚŠŢ•‰šáŞq˝Ż`Ľ.Ö_GÄW…s#ń׎L_Žá0ŠŞ,řî||+U/VCójXËPÁˇU•?´Y?*ËP*žOűşđČZŘ¶Ł˝:jëöbą/ß-÷˝¶ÇŚŻţľĽŰެç|L’Ź„şlëńpďc›â}ˇxŔĺI•˙®9wÉÍÝŞ>Čňđů[©–»őüýŢAŚ‹BňvĽ^´űŔM[ ĺ.Ă˝k ‘Žő8ę…˙Mé¦×϶&ÖUĽŹ#XôĽz‘|-R«‹/Kś_KHAëEjÍúS»OĽŢ–íšx™Ňňý)ňŻó•ÍÝ{4Ú”˝ô’đăő~DůËÂ{Q†›qŔľŘ˙ ŕP ÜÚěj˙đý>ťjŃéG˘ÇZô¸Źľ; lG"ÖăHq-)žŇ•Ij‘d*RŞEJ•ýż3×bćÓ1ťťÔ?ě>ň]{‡ż×ŰFrÖĂZŤlÓŃK[;݇f!~ÉĎOâçŹvâM_˙˛Ó¨o[ĐŰĺÂämAߡćy· ˇ˙Ő^ç.4 íBĂĐ.tâ›/ mJĂЦôŕP ¦ô]E˘Z$šŠk‘âiÝV1ą“OÇ”ZL×Ű[ ¨ŢĚ(łTË,ťÔQ{K‹ş˙p´m˙l/¦űîŁÔߏ赹¨żťŃë> stream xÚÍYÁrŰ6˝ë+pL.2°Ř™LNžôŇS“Ł/±,wÔزF˛Óćďű–“€˘¤ëT:\Äľ‡}‹LeŤ5ŮŠńÉdgŤK‚»7D÷`ĽĹc—Ś„{6Aűqö¸“‰ă(š(2ËĆEűĹ$MöÖ$?Źľ€q>±ÚźŚŚóŮ8«ńĐYőç”J0|6ŽbFŹŔ°‰`ŮŔGo\T~1Çędçž•NfxÎŚá Ď’ÎŃui–™ad}G 9Ě-'‹ykOB<"C#rJ†˘DĘ028ă"Öw2Á<ĘđśśáLµž%€xű áńŽ€%-!@#=†ÁČĆű¬!rn†AĆGOćcŠ3±l<‹4Š91ÍĽ "Íg„ET5‰< Ü‹ęćĐ-*bLđ¤@şŕsš đB„p‚+ć :ÎđýBb}”LČXP0hl ĺ"P0:LY02B™/ző ŁÇLŔ1DĐ€‚1 C Ć™ Fv€€‚‘6^L(Ŕc8ôH™@AäBA¶úd—1 2‘ö°dôQ64tPóC(ČxF„Áv&Š,(Čšq*Ü &«~ `r„™˘79ÖGŮ$ŠšË™Ô"¬ŚM žgďŢ™«Źćę·§OOćęÚĽŮ˝Üî–‹çŐÓzÎó8§·ćýűŮ›źWş±Ö˛6smb±H›ŃűmVÚ,µyĐćn˙…kmž´Yhó˘Ícy­Íł6ꋵ*#ÖoOR>`=wĽËíü\xŻĘź»qŔT LŻěký>đ˘ p ú'mľiłiÄÇ#Ôňż†G¬ĺ÷y4ῇĵH<)Ő"Ą}¤uI©ÇŠ8ćZĚüß1ĄSö1źK}i‹Ę ŕŮ+`G¬?‹˙ĆşÁé ›µĹÚîŹűXĆmKĹ[”ľoýQčŢkŰ­‹‹ž(¶óé/|şč]¤¶ř®Ęś–§«xÓ˝+̶eĐf|íŢăMăx_ÔvĂCŰ m7?OźďůUżŠxh+⡭h[˛ü¶oíô–¤4bí´»ÝîhAüżË&őËN‹wîôë*ŢÇ3X2˙4ĆaR-f'»6]‘ľöĄXď”G¤XíÇîúúvľdËý˘ĺËL¶<”ly(Ůn»enQ¶éN=XVđˇZ>tT{_ŠŠŰ±:‘FăůZfť#ů}Qg{Pżóąď^Ž#jI…*RŐAе|b궏ý=Ž×ňéJÍä¤Nµ,ŽOú·űÚ,Ö^[–?űG¤ë=–ËBĽ)ÄĎÚćfż{wľ-ýĄN.łDËP‰–QçŞÓ¦ •a*Ăőg*°2T`ź‡ż+4gű ű ŕë‰D¸ëćó¬ gűS¬ŤÇĺ­ĺ^Ďţx'wž‘đ4 ž¦|6jđü$ĽÎbyhżGÖĚ4LB•ĺ¨Ĺ¶#âď%”ëö zž%5&)Ý….)7źŔţx»ĽĹHPšJG»Ŕjdz ăŃPz~Í>cĘŃŃčR?:šSű‹úd¨Ü«b˙şżS5đ4 ž^ ŢO‚˙żY5lÂ$6~ąúť ‚ endstream endobj 1007 0 obj << /Type /ObjStm /N 100 /First 981 /Length 1169 /Filter /FlateDecode >> stream xÚÍXMo[7ĽűWđ\d~í’‚śŚ˝6AOľÔ¶m,Ă– ôßw†(˝HîŁh`Ó«ÇGÎěÎłVŤ5Î:kbŕ_g\ô4˘qYhń9ŇČ&řDŁP†÷XTh#6ÓP#âÎ`$ŁcĐÄĺÁ™$|'D“-!‚bŤlJ$VÝ,ňíĘ!óuŇr‰¸ŢYěń1ÔY±äK2‚ť$ŃÁęę3lŞ…;9…ş9p{ĹgË '¬ŞńÖz`h‚•¸K˛°śMÎxŻä—|¨^`Ą>˰J}VŚ×ęLö°ru&ź”îf`d‘‘39`”ęGq&ŘşaUŹŕBxŽAˇľÎB…`‹`ĂbH@" Ka%`€Ś B÷aÂ*ś…Ę!ÁUŔČučŠÔgŔ(Ą>+&şČ”Ú1 ´FŔąč j;¨ŤD@$ÇČ8;ĐÂ8;%ŐY1Q©/Ô•ÉaŠ©âBóŕ,`äÄ] 9BJ 8(ÖÂsÍĺ9- ąV„ĄuVŚ„P­ «2…´HK2€ćň h.Z×"˘ yĺ 9R  ą$ęć ąäÄ@s„ŹěáŚZ[3Ăbb:h®®âb™:ę†<3ę…»@sőE€‘Y¬Í5:2€(*,‡°«„: Śä«ŚÄduŽVš#±=­`“–š„ ž}údÎżó_W_WćüÂ|x|şâĎňz}»ş[čÂů…_ČGóůóهKä~Ó%B«ß>n,ápiŁĺßKŹÖľrř—Ă}ťýŘÇF‡Řč±IClŇ6›ŰJ©/áĺaĽ2„W¶ńî8üÉáÇ!‘uvşNŘcŕ»q|·Ť_sěĂő+Íůq:ţ č„q:a›N-ľ‡żZUŢí!±źGž¬Ę·úŘ…ÔśŻs7ëa{Ý—¶®>~j‹ÖŰoýŢHkÖĂĆ‘¶č…¸nyµp}~-vě—VŐËćĎÍö ÍĂëćĘŹ)Éu+’uŰmő’?'¸Î~׏«Ćţ©7‰ě‡'5ńb2üVĂ×I$ ™$ë÷iţ,Q ÁÇmř ňÍ˙–ŕ Áżp\5‘îŰYô¦“H"‡ţO ]­[ćZ÷Ax:„§Żüż€tµi™kÓČy9żî¶=čIP˙h®=L+čjÚFßé»A;ú“žč-[»nŮ:wËî.3íş[ëÜÝú Ľ0„7éź÷Ó \tV×®{´ÎÝŁ_ÍA†8ĺ$Lx‚×řĂ®DNCČéČy9żîř=ďné®'tO=+ťěi> stream xÚÝ™]oS9†ďůľ„›ÔgĆźB‚m©VbaŐ–˝Xő&¤źÚ*M‘ř÷űŽKťść4±Ý/´8źŘóxޱ}ěv¤˝ŇŞŁ®S†ĺ“Px1¬ę|zâą(FTś“Vż‡ÁĘX#†Q–¤9šZç^ŔĘ1ş î”óA RŢJϨZzf§‚—ž9ŞHŇłAµÖN,ô¦9YpĐYéÜ u,z7čIş·ŕ`'m- «Ą;‹Ö Ež„ĐâwRçŕ#^[¬HkéŮ…‘ Ąó°Ľ†±ľ%ÎÉ“"«S,,A#/ń éiTtí-hEÁ }€ŹŘIĎÁ(ÖÉ~Ě:ů! Ň_ěK„a‘bNmŁUlRŰč[E`#Ľ1BČž˘X ËK 4|$oč–ÖAíĄ…h܉‘Ѥŕ0d6Ąt6†µX†ŠCi'1e‘ÚĄ`c€Ćű$€W&řŔ°¬–¸0ä¶ÚX±9ˇĹ/·›XNYv©.*H$uĐÜZ–¶ĐÜZ/mXëbŞCBy†ć ÍmHㆍ$mˇąÓ&ŐYX1Ő9ĺR#N°$j ÍKśš;C©Î(g]ŞóĘ9-> ąó’ţě%m%˙cĺbęh.¦ţ Ź×iĐÜwiĐÜK4÷iĘ04÷†ŤX–ďŕš#%~ĐܻԆęõea%}ˇyĐ2+š ÜÎ@óĐá+,V$Ç 4ňcX^ĂáĹë×jcWmlźďť«ŤMőňňę‹ü;śĚNĎĎFnÔůŤč•zóćĹË}Ś˙ýľĆĽ“b$E'…Ď_©oíkŁĺs,Ĺ7)Nó×ËWeîąÉ=/şźHq.Ĺ™3)ö¤ř)Ĺ…‡…4¦‰Ć<Ťm˘±‹4IB®Éźköç›üůEg9áľ×D64yŕ96yŽ‹žg9Ăľ&ωfŮýäd|1;śEąÂ÷Y·oą»›g›ŮUJë«ůpű >ÎÖé<ý"ň+~ÔÝ5Ă Âvž@Űů'Ąü;ąć([Ó>˙d…zsÜŕeôÍěi¤[ ĂżżĚdÓÜč˘6Ć´ ™VÄxŰ™|nIńo~6ÍdĐç‘VËAĂrüŐçźć(.Ç˙(â,[·C˙ó¤·r¤ńVŤxí,şQ8‰őAŠ·KĎ>Jń)[[eT‹I†™Ú˝“âsjT̵Ŕ|OŕO™p/}ź­ťśNiöí” ÂÔÂÜs‰7cŢT§)ö·®ťÂ…™ŇËŹŰ/Ry ťĎÚ'›’Ĺ‹ĐËŃqv|ĽÂŁĽtŽ—žÍʸ¨–‹–^/†ÖúˇŕŻ![Ŕ*śgĽ´—\ő÷†g]†ąTs®Ň|śó8 !Ćýézë,C¦ZdzäÚSĎ5-×Ňr=íVtľ˝'ÚúgÚ« xS oáÜĘę2<[‹gŻ=\-˛«GţĐź[_Űi}-­Ż§ÝXĆŰ‘C-r¨GžĎ¨i;h¬Ť _ň ?şëXr_lÎűŻoö¤şî,şikŃŁ<č,gýăĎĎGŘsş¶}˛dłś/+“·Źšř¨žođč\ÉM%âq˙jâcĺeÖ/>ÓÄgęůöJßI ÁmxÉn8tipźpM¤%›ŕEžńwn+…ľ Ň—B^ĺ•ë侤ˇ‰´dË»ěgě|=ýžÇ1í/Ă—…̱‰9Ö3ß#°¤›şň—ęšŔ»zđ…— B´¶•˘ÍúoełÂÝ43®ÜťVÝ’˝›˙•0»›<ßmňšC=˙N—ű}n*ă¦˙Ç-8Ż»răuWnOr ÎënŕxÝ Üß‚óşŰ9^wO÷Ü‚óđ_ďWâ)nÁ˙¨NĄ endstream endobj 1409 0 obj << /Type /ObjStm /N 100 /First 985 /Length 1353 /Filter /FlateDecode >> stream xÚŐYÁn7˝ű+xL.ö’śr @[§†Ń¤-b·'_bÇj Xr 9Eó÷}C5Ô®#iIY’Ýé'.Éy3o†KJ–šhcÉ:ăţ÷ĆĆVç­‚`<)pŤńŃ+°†ZV@†˝SŔ&ĚA4!Đ@kbĐÁčn­ZđřÔÚđb¬mÔštj’Cë˘jË{}JŐ4éIO#š6Ŕae4Ňę Vö$ŠĐÄÄ–qMBŇ#ЬqnŢGpÓý·ĽŁ ËK4Ž]Ň'i\pĆ…4^ąůĘ!jç}Q“ćFÉ:őÄ=&+"ă}Łă"#–¬1¨maŃöbIÝ‚˘Ä©őPŁM}˘A·Éiă[LłÜ4†ß(‚6$Dş8ElČSB(B F°‰Őc±Ú`„ž&$†‚Ő•ˇ5ř(‚ `ÁЬÁ|]Oĺ¶^WÓěBB)`6 8§°kJ0ĄU 9 yEu=hÎQŁĆĐśŁfCsiš„HĄĹZFl›P4âČÂo †ć’RЎąpŠ Ś‹¤¸ Ģ"h.Ńé8h.­jF&46=EŢÎ㡂kW Í%.Đ<¤4chXóЎy[ća5 AthÚ&őÁFË©ŹM´Ş N‹6xŘ€ćŃGŤ)µŽ€Ľ‰b5.Đ<Šf Cs¤Ř#:@YÓ6řD@ZBÍŰT¶ă-ęöŕŐ+stfŽNîÎďĚѱy1űr9»ľşżą›†Cč_š×Ż^\ř ř X05‡Úř>şh¨Ń˙çÚ|Őćł6×Ú|ĚhÔz¬Íť6WÚ|Ńfś‡N´ą×ćCF7yĆäĺRňřÚ ˛]‚eĂ ]X˛·™YďŮ}/WËËuy%JÓLŕ*ÇlYđuhQ)ęRy“Ąz ßtĄrCٲ·ô Ňô ĺéQ,Ă`乌w­˙ś2ÉÖ×…zçáäŇpňňpţ·ŠÔü”­Ź—Q-cäjőęěCźŃźąoZfÝ×Zďí¤ł,Óĺ°őlwm÷J÷$§ęI?Ţ·MóĚOߥŢMÚ«Ú÷ý˝~±\÷Su¨(ŠsEIgK‹\~@ôăňńłĚlš'}./…oWĆ»—iďú»Č4›űžč(ó™dô„uK•rË5{‡ßŢW)ÓćmFď»~ĚĎţČo˘oĎŢĺ ĺL›_Ęüpµ~¸]űń{žrV悯uÁoĂ…“Üó&7ż>^Şu†öâLµ(\ëoĂŹ… ÇŹ—Bj]ş0(@‡zaA<Ó; ÝahĂ;ĚŐŞ·}ĹE††.24t‘YAnš{.·ÁąC¸pGˇg|ЦňŁm7%®úgą˙ë2Ö®–µŰëÄőźĹQ©Ś«Żĺę·ÁuÔŹpa\©–+mëĂ#čşKÉÚ ]JĆy;žöĎěł§»Ł ÜxWÜsźŮ~'ŞÜŘ`?YŻ]/ůSÉŹĘX»ZÖn§¬Çe¬}-kżÖĹ»„:ŐR§Pצ ײ杲.L©e-¬‡Řťg¨ĺöÄż0ţ±–Ü)˙Í ¶­u˘Ý©ŐĄk›Ť^LÍžĽŻ;ó¬-ŕu·ă·YĺY¦ţ4çY0ĺÇ˙ďw™2t’ˇŁĐŠ/:’¤§ů;—ó2*®–JÉůćvIvő®J“ţO[_˸úZ®ţ‘\Gkn{‹äűTĆžjŮÓ~ŘoI®uŹź‰{Ýł> stream xÚÍ™Mo7†ďţ<&™ßCA€˘N‚ISÔFŃ/‰üQٞXNô×÷¦–özMrŐ8S#~ÍĂy‡ä®¬ĽŚB 商řÓ -$´ńl´hZ ËÍ^káŇN¸šĽ •Ś(ČŮ=ĺŤQrŤ1"ZePHź,8‚ÉVJˢĐް…QÖ$ËÁ"vdý-¬"y`‚fqčlH  ÷Éľ”<Öˇ•ĂTŢ+X‰×k,ÎđTŢÁ"&đ^hGĚçŁĐ^)ř€s·’ĹŽ<şčŮ‘0ҲBŚ”ă™‚•´0&Ť VĽ06đ…qZĂG”Âřˇ ¸ ,+LĐě#ÂGH1€K+9¤$!„䄯Ľl9aµ lyaŤ–lEXŢě)RRX‚ÎÖqŘ RZv‹„%Ž8Akű±ŘQq?V[r°‰ĺ–‘űAoŔ§ş+ů€âÎ&Lĺ¬SlYd «JĐÜyV‹ŕÜQ"€ćŽ÷ć.¦±–S*Ť…ćHÎTňz0|ĘB8‘c<4GΤ:‚•˘Í‘\͡;×Ash—ę¬ęŕăÖ/4÷đ 6Ý® ^ĽJhN:pěˇ9ͱ‡ćŽgÁČĎ‚.đČ# 9üđ8"ž6GP>vЬ/ÁEÖ— yX,‚#[AÍ« ĐĚ×9…·ĎP›ç“(NKÇ%ú…ŮF{=®ÉY^ÄU¶žńÁëmZńõĘ‚¬JÔ;­Ç[\nŁyP‡®[ŃuúáHxOëČL+™i"›8ŰŠg›đţČ˝¶'Oúúy»}ë@]+hńDřsą©î WĺQq˙+żpńľŽŃ·2únƱDŽnnjĺ.!ß”ČŰÍý­Ě€UNĐy´ˇ•6< ýgäŕÜiDc+cqž•·Öé.7Ľ’]§ĽňMťäŐY\‰Űw)©ťăŽĄHĺt×tí:ö_%¸é7Mŕ5[±×váÚZÜ÷e‡żgş.RWKÚđÄ˝ťćĽ’Ýw±űZöŹZŠşĐhÚŚ,]¸ˇwwĎ^*v‘Ć]’öÇYË®—âĆ«Ůűł´ę‚|řöůY~ËďĹóŤ÷&çóa%_ßVq‰=şúŁfş¨LŐnőµ]¤ĹĺT»Mú!]¤ëśÝue^ţ ż±Ć§~cŤOýĆÚőf{SG¦[Éô˙ň>[IkZiÍßb+m+ŁťýîZIćZÉÜS÷c#€ođs.čJ(j…*&×Y łˇďen[•˙˙h„ ­pˇé6®¤­qöí ˛˙Ö-< endstream endobj 1811 0 obj << /Type /ObjStm /N 100 /First 985 /Length 1319 /Filter /FlateDecode >> stream xÚÍ™Mo7†ďţ<&™~hë$(6A=ř’82ęÖµ K.ßwč†Ú•Ö—«Ä,z–ärž™—\î‡IF+­L2N9+˙˝2΋‘PČϰ˛Zş)›űU.J ĘkéCQEm`X­˘ĺ#F%Î5N1±8CßWázXh $c:RĆš ˝‘3˝ŹbˇZęÜ·˛ňI2ÄĐܧ(­ĐÜ3‹h´L†ćŃČZä> y°’g†ćÁĺQâŕsĽ'řś!ŕ†HRÍC R‡°‚$|,™·˘CsL0ńÍă˝_hÉ 4Ź6ű€ćŃfĐ<ćŮĎĐ<ú<ˇy .×Xśëŕ#ĺ~4&Ođ†ČY7hžtÖ hjâšcůĺ:VIf,ihŽuIJ*y›ë¬ë˘J¤¤ˇyŠ1˝xˇŽOŐń›Ĺ‡…:>QĎ–wźäo~ľş\\ĎâŚg43úązůňčŮ™Ťżx¦13)¸XT,#…>Ë?—˙ßIq)ŵ+)l9éĚŘ<ŕęyi2] ßĄř(ĹmAË‡ź¤¸’bŢ‚FMhÔ‚öAŠ/RÜTáĐÝ‚n‹÷¦xËÖ»rřşëňÇÂą,ŘçeÔ?»ľ.:‰ţżí·RsQ¬Űb]—QçĂ‚t‚ś™ş0g[“ă¤ř[• 6p?÷_ľµv7e |¸Čqě§§ô´•Ý»~¶6ÝoŃ/J×|ć?ýŚŻÓPÇf(٤ aQ6¦ÝIž¬Ż-ąî§~¨2®űÝî\'ű©ÍřurZ€nKş×-qĹYeŔOrĹŠc†WĚ/…y ˛ĆÝl—Ź˝¸LŐâ2ű×ǢŐUřë¬ ůkŰňÁ]5@Ł8HőĽ’Ď6ńŮQ|““čš Ý(Čš[“J\߄뻸ŐůnżJńło+ICih&Ýu_7ž>6ŃÇ.ý«>řúđĄ?'®ĘĝȜšÓóżÚĂf—›HąKzŃ߯ç˝(TÜꛪ¸]×˙)7[Đ64spčˇISµBµ4¬ÎZ|ŰŽoGá×,ÔZh×íjˇßö;ü=…×·óúZŢ)7?&´†I€S˛ۡc-ôď†LjçM‡äť’snʎ·#Ö¬®iŰ6éö'˝őäřt‰Ţ—çňweŻyUćůi-Ąi§ěí®® śđĚFUlVܶóÚ)/ŽP];Ş;ô‹ä˝ř]ö19î%uŕs˙ťË÷{ˇbG˝P±Ă/TšžMW•|ÔÄGß䉴–Ů61Ű>‡Ö’ş&R7ůéł–Ď7ńů};ěXŚĐ„¦lôµh± ­wß·(’]t ÎKŰú YÓNMiÔ®^ËÂM,úŢNŘ0Ě÷ýô»ë ź´Ţ żŠßGúXUóŮžěÇŞšo|éxB÷J4§ÂzÜ ĚŞ1Ü˙©‡ož endstream endobj 2155 0 obj << /Length 220 /Filter /FlateDecode >> stream xÚ…=OĂ0†÷üŠí!Ç{výŐ"Ubó ĐşK#EE˘˙ž8ŽÓŮŻÎĎsgĐ™@C‡ę}îîm"1śDĺxöäLbˇ|¤g5”K™t/N}toBTY‹š´@˝JËZWM®ăÔ˘8 y‹č׼o2ppÉWY´ěśĄ^"Äć/­Ô{p ‰ú Řâ× ‹˘›â]ĎÜÚy7j őu;—K „gňŹ92| Ë–†CeĎbRc?ŤëŁ}%~®łČfEbëŇÖŮJýóˇąűpţUu endstream endobj 2161 0 obj << /Length 19 /Filter /FlateDecode >> stream xÚ3PHW0Ppç2ŔAc(á endstream endobj 2194 0 obj << /Length 859 /Filter /FlateDecode >> stream xÚíšMo›0Ćďůá€çwăc×—hÓ6MÚĄÝ·CJˇ2­ß~&v/i’ćR¸HŰyüóó ÎŁťů nŽłę´:ĚgĂهAŚvÂG@pîpÁ—Č cçÖ˝ĚŇRĄeáý?o[ŇŻČÉ«‹ęäÇĽjŠ:ś“Ş%čř\€€™6ç#„ ţQžŹEŕÎĂą9Y&÷y”돡űŇęÁˇ4ŚúÂ6a>í÷KdŁ_ź8  ``ż Ö#ŕĚýž«B˙š¨L˛´Ýß­O)sç3ĆÍáWď»i$9Ü3S-B|D¤Ž¦H)ÍŞtĐ6©¸lo_î ÄKu,ô ęmkĺCíBjsÁÓ.ä\‚÷l×Ű)Äť¤ě(ŽŻÓ2)_~yBŰĆrŐwoNĆjŰčŕč-ł•¤*Ť;7’ş ł)ák u«Ęá~ť%št>^çFλ̞žsUôž¦9vIńaÁ®ö ˛y0aëZa [®–Ť—uRŢ"Ó%/ŃIŻ˙8KÓ?¶bG†Ý=&Sn;—ŕ°Żő”ŰŢDŮÝ÷6I#·]ıvĺJÔ>¸ŹŐŽIç/RćxÎţAŁ€‘ endstream endobj 2012 0 obj << /Type /ObjStm /N 100 /First 989 /Length 1983 /Filter /FlateDecode >> stream xÚŐZŰr9}÷Wč^ĆjÝU•˘*@²»lQ$EínČCH dŰĺ Eţ~OËů{flĆ$n(°„ix.UŠç:¨×©ĎA˝Q¬…ŃŰŔ3ŕ;•îâҧ>k&¬á2ň4É ĹČ㼚x ­’ŮA‚=Ç}ACŠ©Ďí$#’až ^{V*# ¤Ĺ BĎěVIĽçŚŞŚbÍ$áÍ I†RźKl’<;ǰ„ńl%ańÎw )a"łAđł‰l4ÁÓVúÔ…%â>řÚ*ť$ ‰Q¦Y3ëó`*¤ ¬S,ÁáÖ9Ť5ŕqëŁć>+l`™+‚Ďť$^ >wd’¤!yÖŚK§M’<¤ŔëÂçÎpE0ĐŮ®>w>­k1×s€|î»›pé"3Nđą‹.Ť‹QÇúÍËŔăśŢ$ŕZď$ŹCDxŻy ö!ńě˘Z˛E(Y„Aů4#Š`Ň]\†±ÁĄąprł»Z„hČŽ¬bŁŇl˘)¦¸g"˘ĺ¬#Dt 3",âq =FËš2@ĘDt@ -y$âq‘†Ŕ#d‡ěî‰čľśD÷ąx4î]N®ý¤‹'O:ŹŢiďđçßI)SSpCÜhnŢ!Ců÷7§YzÍÍ7˙qÓKC‘ľüű4ßssÍÍeVýiQëqđe®ćöŢ›Üó!KŁ,őłÖŢă»fNß/ZZP3[ç—%†çy˝I6jîŐúńăŚo”' ł˘t9HvÔŁW[ W‹h^eĚs őp?dTý,­"˝3sUOąůşěś9cÍL^µz+Ż©őţ;Î4ś.FhŠŢCn~çć¨! µ ŐĐ[n^ćîŁú Đ[`YJä´ŔMÇy Ďăŕç9y»Ôܤóň9V”¨ąŐĂĹîICĐj'ĐŞ ĐßÖđżęľjkM1[báe+Q1ÚuAřó˘Îlu¦Ý¨űVç¶^CÔN6ühÎ7Š^ŢݞšU—V›´hŹÝÂ{§˘N—Ź÷»sŮ­ÂË®Żu>8ÚTVöńĂ씫ĺłÚ<9żÖ{Äma„[„ţvy˝ë|ů~ýAo˙q[yÄ5÷ȶĄyü¸ęH^_ŤMĹ‘|~^fž/rRŢÓŮ»I©5öěݤČn(­żđiť˝MÝŮ{cNäóIĹŽ1©L”úÍÂV$ĘÉ2C‰ÄĎ÷#Mö‹ »Ä/ü„«··ű.+ľ-ăç$w§Íđ74DĄvBŐä`5ŢyKűČśŰäĎ›†°őN°ő®d.HO®Íźaë#~ŽŐ}|µŤę¤­«“ŰÄJCTj'T­Dđ¤Ţ÷ŰŞ~ČG}Űč˙vÇ˙_4+_—77 a«ť`·!ĂĚń°!X˝XÝŘiú©!błbÓJVŇ;‡Y˙xç*¶†uex|Źg¨&OxžëЎ❉\Ý™h˛üśqyçt=Z~´šćľ~u)?Koݤx#şÇדszpĐéžŢ {˘űúâcŻÓ}6čOzýÉ_ĽYÚéľéŤÓŃeo<{A—ú^ő®®/žľ‹3‰±ky'‚ˇ"ÄótŤ „LJ4ţvˇ%˙óŻđ˛Î ď©ŕwŇýé—/çĺŕc lŔ±NŻ}š†›ÝףÁĺIo"Îúů±čžöľODž·ÁGk¬‰?bÍ Ś:ŃÜŐNş‡ýţJĎfŻB™—ô&ôV0Ą`KÁ•‚/…P ńVđ˛¨JÍľÔěKÍľÔěKÍľÔěKÍľÔJ͡ÔJ͡ÔJ͡ÔJ͡ÔJ͡ÔgšWOätş'Ó÷“týçu˙s§űt0şęŤżňĽű[÷e÷ŮĄ vÉ%Üčbµś4EÄRőÂ!@o>`ÔˇX-—ź.†“Ţč6ç[Lšl…ÔF“DaŁ/,­QÖjĆŚ ë8/­ Ł‹@łč65\¨ÖąŔâʸ™!¬EVUrˇöŔÇE$(4ňĐ*ćÄTrˇŰćÂp ,< DxX逩š Ý>?Ž” Q $ e}%¦u*‘4ÂBdˇŁŻdÂě ‰ ¶Z ŁUam%¶u"P°Ś‚7ň$ˇpĹę °mRAŇ™ˇĂŻJÁ3Řłut¨¤z=ůąÉ¶[ą2xHJţ" 9‚LűČ›j4-–0ŇE‹„F´ęÄ %lTX6bYłz4Îü5ś‡â5aGďBYă»<Ňɡ|ćŇÓj+©ŇĆß—ä”–ˇ0¦9˘=D ¨pü!#gřÓË( ŻccH{p›r ±ĂpdšyOjŐQë[‚2&…ŹŇ'ţVŇÚÂęşJ¨ÚO.Ą|ˇůCŮŰJČ€ůúěÚKŞ+Űüůâ,Őql."5Á˛‡(¦ČŚţŠ·H_$řk1ŞerJ@žwîD á(d—mŚ(Sô?3Ž endstream endobj 2241 0 obj << /Length 1083 /Filter /FlateDecode >> stream xÚí›MsÚ8Ćď| íZ˝żôÖĘLšMf‰w÷v2Ü”Y‚Ycş›ożňµ‘ÝĹ. “md4ĘĎžç‘#đ ő®‚Ţ/$ j!(ľ‰ HM Ŕ GoţÝ˙܆$D›ďeź^ßßĂ»ŕ!më Ţß=lšŔŰ.”‚Š00}é=~F`fÚn‚T+đOvç `śBΨ9_€‡Ţo=T +ď'~.:Ąş2PĚäJ)0DĺP9¤@â÷1Ó›Ěf×Ń2™Ě—aś łě<ö‰˘ôűśóü Ţv%ŽŮŮ©»6č‡idµ9ö±„BË*SZgř ďuîreČqý®ŞĘ•\gá:‰#ꍭ5K…ľ8š¬Ťfź3(Ů­Ő”'Üű°YN“y´\ű}"•‡‹IÎň‹$*ŽßÂüdťĆő.n­Őą°ěÜuź·Á'j¤-ö›oRŠ˝Ah*xQň„ëilZ¸7_ĄĎd4FŚťYń¸Ą,są”uYéëhşy Ť€4V”;˛;d)†JR»”IVĚ…ĺ=¤Ńęyaz©nÇ÷N¬’ĚVŃ*CşKRŕó®ĹÓŇ-3ÚjłţÖW3í¸vÖŮmF[‡I3VŽ\ŐV芎™Ť’ŮÂ4+÷ ÷ŚŰYŮMĘKʞ[vă.»ť ¸Ą)Üe·ămÎnĽžÝ†ĄHXKX;ŮîRŔ5¤pkBVX8Ş?5Ă­8f¸/˙ZŰBÁÎë"˘şůˇp~x*ŕČfíüđ(dk~¨*x«~xkDŁU¨…ÂĘvë‚á2ăÚşËä–5g\.k¬“‰Q^†Ľ¤ µBn^e¬;NÂe‡Ü‘ĺ˝Ia“/ľŃ’…˝Â)rNhA{EŹ­^K=NÜŇé˘ÇqČ6OĹe=züáK”ęĆnč ŘąäU¬Ş‰…ů'űUD;¶ű+ÄŹ&-%¬w%üVĚŰ}–Í—6ĄPŇa¶1ăŽkLŞČzđBdYŚi´â"÷}M·W˘8ż#;nëKŕ{ M’n‹MĘ%ľ7ß˙ź•K|Ç!ۼؤ*‰ĎČĆÓőýíýři4 ž®nZ\5? îT€Ű°V'4‡wÖN¶b—ņ6˛Öú‚ çeăÝ81‹ÓᔝµţĚÎMżM‡h!óe”¬-VíˇůIéDŻiľ]ý«Ű÷×íµpvá1˝Ëď›Ö<˘É;5ÇŽçž $)ĎŞŻ\Ťď˙Ľłý„:’űTfŐyďÇ›ŞSHz9řXíŻozŽKh¦á^…+ßĚHÁŇŢŕ lî„Âô=ŹQ¸ ăű3ĺ\ć×ňä&u»MqAŠÂ,?Ăč×ď8-gü¤2ăO;žOó‹ŔWČ‹'Ó°Ň6IĘ[?!ŽL%Î?Č,öµtŘtáß×g yárÔÄ»7D endstream endobj 2284 0 obj << /Length 1140 /Filter /FlateDecode >> stream xÚí›KsÚ8Ŕď| íZ˝˝‘ġI¤Äi¦“v–8,S0]ę´Ë·_É6`üH »ťMť$ŰBČ?ýß¶ˇ3v ÓnŤßNu$Pś'xp’sG( 8r‚{çÎ=îuż\{_‚s‡R “ú×ɵćdĂ6>´žAJ 1uFłĆÝčÜëkçDIçg2rćPFŁD÷§ÎuăCf«JçYŚł űŮ:‰Ę­Q”ŽŕŔŐJ@Oé5UÜmíÁI«Ńîűź’e®ćwîš”!xMĆxÚ°ťŹöţÁ9µ¦D]Lł»/RŐm Ŕ•Čăă|WgÝ‹">eńĺđÉ<>‘ç%ĎďŮI _éíľ2A”Ű$»­ AN,Ä'!ŞÄ‹ÖĹYŮÂ7qďŻLËôšJ+˛ÁÚ9kżŽú˝ŰnŮLb+‰kd¨€¬Ę/cI­ČŐđĂ~UŽYX~µüȆßeëćŁoóKŤÝěő[ÝvĄ˛ ź‘F¶aXĄČD1ë—_€•ç°ŢôŻ:ţŻűQ˛ý´\lPöý“"GޤĐť¨n ¨Ü˘zÔéőNş8±'>µÁwí·Ž:7~Y0…•Á'5ç’—Ŕou*Ňjl•z©ÄąÔćöýYPv:Y űÍĺ:źüN§wűďËč˙ b“Q $.*»)ţ ÎÜËp6_xMÝĄ×ÄBşła4‡ł0ŠKľGÖ˝§N÷×íĆ@AU”h´}@„ ÷$ڇ“ixźîÂIř}¤·1wň-žĚٞŚSj? –YăŚőéc4J¨¦¬çŁG#ďĂ*Đ’0K¶@– ©Ŕ›ł))ŹăńŕwCw:™ćëŕa†Ąp lU…¸ël85ý˘u@Y–•z–W8D“¸lsŃÜŽÖÍ•Ű NS :‰âpńŕirĂQ¸:•¶Çi3HŰřŹězĽđP2ĽFaڏ狣á÷É(Đş*?RäÍS±S\ 7Ť-‚ٸŕ…ŔĺÎVAłĆ)kü#˛ŐqÁ ˛,X[ŚÁ8ŚŁůT›Ú_ôĽů Z`ąs8ĐÄkš­űűăů¬*[ă‚X~ŐĘČ6ż(<¤C€ĺ·R*¶k(Ň–8JF,Ŕ˘ł-€?<ĚÜ E–PŞYTű $ŻäY«ŰD`‹˛ĄČŁěL˘ŻµĐb¬Á(óŻu$Örd\ F÷3”*Ź1ő1‹˛âň<ŐBL®Óx"é6Özů”Ě}(ZŐyzĽ›ŠČŇėÉ)rcKH¬Žoŕá5ź+­>žâ NsOQ¸n’]J*ź:$ČJ{«˛ÓĺŞsnĘŇŹŮÎhް4=ß1őŽ‘ôčÁŚ5ŐksLĽŞŁžÔ»ľ®Ëfşú2ŘÚşA鉤$ľ\ŔŚűk9Ö¤ Ą‹śţ{ş©Ę endstream endobj 2327 0 obj << /Length 1128 /Filter /FlateDecode >> stream xÚíŰKw›Fŕ˝~Ĺ,aˇéĽŮ%~čħuÜŠÓŤ““Ł ěĐJ HČ­ţ} !Ŕö8ő"BČ#Îç;wş pŚŢŁ_.% j!(î€DP ¤&P`ĚÁ­÷űź‚+Ŕ„hówűwĎ>\×Á4ż6şFßFŘ\BšP *Â@¸Ý~B`n®]©Vŕźý'—€q 9ŁćőLGżŹPq[¶ťő}ŃŕĹŤR}tŁ!Č•R`Ę[ĺ#H fţ*ć}.ß'qř oícäÍÂhĂĺ7Ű1'Âţsnßyöż6öÚMDćQ\ś˘›ăK(´¬ëňîŤĎ‘—®¦Ů,k¸b4vŠŞş¨¨D·›Ż­śőV“8ƧȞČR •¤Í’ĎĐü±6)¤Ě#źďŁěs.Ňć,Méľ&g·Íc6']ηóąYŠĺ±ÚX‰):vŇŔŽ­–…WNČ„v?p·j,j5ęŁr‹D^cĽH˛8ŰŮIěbŰ„t<uÁźpŻ%j¬ú:ş(·ž-ŰA;»7ëS–ÔnÁ©j–ů‚ż“‘2Ů·ČdČMS×4÷¨ťśBęÁ±ĂűzdǦ ŃrŘ5}–îÉ‚·évŞć˝ĹŽńJ*Ńóh“­Ó|j×9oWz•­ô.’yŰ®óa­ŘŰ>Žű8«™>^ a}u%ޱĘ+×I”]Ď–ÍEPůé€ů¦¨0ź.Ř´ďă> stream xÚ˝[ŰŽ·}߯ŕcňÂa±.$Á€mAI€$=$ô Ë‹@±č8źSě©Ő%ާFVÜ™îâi˛n¬ÓU©k*©R·DŇ|€C|Đ“Ôá‘´٤F~ńĐÔU}PÓ(ř¤JIŁű] Ç裑ČJÇ—¸‚šŠŹđíŔŚjŞ…ÍGŚŰÚĽ—0 A¸Řü?ŚŘGÖĚ'sˇŁ´ŚFâ"U‹ÉT˘Ä\ŐG5±´ů-'¶)™$ń†…4q>Y’ÂÍG-ÉY žžą`Ü&Ň\^-I¬¸”J ůsÔš¤źŁrŇ퉪$ĄîC!ĹG–TšĎQ[RŁyGÇÂŞ`¬łöásŕbŰž)™Ż=F5OÉĚɤĎo%™Ő9ŇdÍću–lĐĽ®ĄVĚńńH ‹9¨aýłžZSLJ‰Úy9őâ PER§1żĹ63»d±Ôe>.éĆ.Yzę­ÍoGÂř~(Ô 4ż‹3|™0‚Žđć)‡N|Ř€aćë 5}®†ZCçu-Qˇ2/ěÖą_řŠŠ”Ši TtîWNV1ěäšdŚá0_PĚBřă3ŕw ćĐ-"ž+nŤ”çmŤ¬űz0QŻł5ĚFc®Ě€ Vţ€Đ+šŕf«2Ő«a6<‰#Ęľ÷)p/U,›1š·a6¦©ŃŔOĐ“áŰ„ŮXÔgĂF›ŰC}0ś+ŰÝÂHý6Ř.ÁF}âiż27L˘Słaðjńĺ&4Ő%ŔŽqżÔ›GŹnN/ţýŻŰtúöîîţĂÍéůÇ>Ěß˙üöîź7§ďîßýxűîe‡(ŻN<ýéôýKšżÜśžÝľů^b łşÍkĎn°ŞlĐW2Ë­w\÷mzô(ťž§Óî_ܧÓăô»÷đ¸˙íý]Ö\ń—źľůć˙®‰{žšĹÂ!ÉČX›ÝäzşdßµZswß%-O˝eĘÜř—=@ąćĘ”–ąqć1ý]ěŠÎŮĚţçĘ|Â’éúhz×ńža'CóĐľJ˝ľĘŘČC‚űĚî~[Ϣűpľ\›Çéeu/ZŇłtúëßţś;ĽNk” ÄÝÇź~z?ążű0§xâN0ÝyŰ“6#j;˙ćžtű 7žžľ»óüđÓééă'éôâöçéŐ—+ňôő?noNßCţí݇÷î«ýÉźůżż˙řîÍíű-FĚĎţrűăŰ×ßÝ˙śćZ)¶Â=WĘ}`žľ~!ގo×Ďĺ~ŹůgŘwX3ęĎýó€bPcŔ1h ,-=!™B2…d É’)$SH¦L!™B2…ä’kH®!ą†ä’kH®!ą†ä’kHćĚ!™C2‡dÉ’9$ó&ůŐuŐ˝éČŽ ódöÍz6­»~6)‰…űlBnZŕt7˘a¤Ák7O}E Ť1ŃŻpő0‚Ä€<ćc÷ źH12«\#r}Çmîą{#6ÔgG‘aÄŕXŮ.[AJÍ{Ŕ¬$Š%™`ô¸{ŞžĹöĄCňu(ą$†`O ©g†Ă4‘Ś`´ŇŠU"Ă˙ó<• Ymą4Ů iµ[)ŮüôéF…ăr4Ű éęÖ®˝ćáI#’E·v€Ěr1iÔëŰ—g-ź’Fm ýŃ˦+¬gé¬ô5Ş4§ďł@ŹŐ=ń<× 8€âľĎ´tŤµ+!ZůŮPň 4ëĽR˝¶Ë>‘ĎĺŽC°ču· zl××iŠśôX:ž·ď¶BŹqNšz,µuz,řߪźj6ě‘ŕÄÜÇ>lkôX*Ďz2{¸? Ä,ŁíF´b‘ŠN‹Â‡fNB’u7 ľ¶]!Ëu+^eŐÄĂr/ő‚Yµë+2ăěĐůSx`ä_Tv„‡¶Â¬XkîňŘ4KßfưfÄ3Ż’[bAÜÜÚ›bä6Mt 8Cu ńnH –¨Ž‘g=Ý÷éORm7¤™`EâUĽđŚ]Ł1‡lÔwCşz&XMp΂—0$`TŰSď×7®Š“ĂęÍÔ«"‚Vąl]}…©×Š Çjşź¸´¶=`Vč1”…ťq‚˛č,»##ä}zÜ×X; ć:M¬8y…Ä‹ąď†´`•¨AśńëpaYB?™q¦ź~•Ëř ĘŠ*ąźť|X9<5c§JŮgîcQˇÜĐľWJŮßŔ˝Äi| iĹ*Jqko2ůďKĚĆ×®Ď?ťÉ FţQFťôĆ KUé«ć˛Áů<Đgę­ń%ué 4ÎÔFăs4+ Ó8lxůĂÓ Ň Ô˝îSeG´ÂĽŤs}ęW Ť_´bť‚ŰŔáŁřqŘ„÷CZADů V»·Áäâ5j†‚ńL˛‚ç@jćíě¤B;ÄsLLş‚č ń·vöZ :&&[Ăt÷1Ám[‘CLÇÄÔVP´ŢŹăďL ;ÄuLL Rý˛Łú(}ëŐú4ÖĹ«Ý8~H—C¤Çć2Ë Úq̇ÁňWˇC´Çj#źďĎ.%ŕ~„řŘ ­ěäčąŔť >6Hü˙"?xkř‚üŕ­µŕ7‘=Ęý=jú=jú=jú=jú=jú#Ř‚čçđş÷ylÁ¶`„ä’GH!9ÚA8ÚA8ÚA8ÚA8ÚA8ÚA8ÚA8ÚA8ÚA8ÚA8ÚA8ÚA8ÚA8ÚA8ÚA8ÚA8ÚA8ÚA8ÚA8ÚA8ÚA8ÚA8ÚA8ÚAřܲ¬!ه7  ?6˝•…-†3|=Ä~lVP2U€É&×Ú°G ”­ˇ@J×™;šŐ#Ȇ©­ A¶c™kT“c<Čj3­Čl˝Lt„ Ů@­ g”łÍŚżădÝQ!Űiä!Ü˙L¶»Ö endstream endobj 2370 0 obj << /Length 1057 /Filter /FlateDecode >> stream xÚí›KoŰ8ÇďţH$¨ßçÉŔĂşë•gĂĽHď~BHpś缛öö´™őáŻVč:ň”Gąn¦\Z{°?ď˝ ëýąKkŹ.áŮŢĄ) ąŘyRČă±ÓV?žŢĺé *Ĺ.`žHŇ}Ŕt OzGŃ܂ΪoU‚=Ü1Çůg-çI8KËąÝ@޶ö”ĘAŔ>Úq(—FN.níO®óČĄî“h;vś'Ń3…vWă!-1C¬A¤;đÓR¦văhŤ ¸™ăßĚÇß§Ş©ptŹ kO U«O5V3(pHć˘ß°GĎ©&AÜ)¨îí&VYĄŔ„«7=kWŚ»]±cIÓĂ*{|kWĚśNGF$í*{żôŽ˘ąK'·pĚ'g.]â8‰?QŽó$zîŠ|m‚>ŻFv (€tLĐnWÄs9ăia?qGŘśńĽ¨ňęń˝Ż—{›ŁĆ´Ëi¶Ç %3öuśÄ1`‡|×}«§B¦•ŘúVOČP){>÷Ň`ÎźVÝžîLůźÝŹ«zBměł PŃţ˘đBĆ/$oŻnëwWöHVc8Ďş#ęxeš™­giŐ˝ú$\&—ŘĐöĆßµˇÇ.%®Őóőq‰¤S9ý Ďę  endstream endobj 2414 0 obj << /Length 965 /Filter /FlateDecode >> stream xÚí›]o›0†ďó+| ńümÓËmmµJë´–»¶Š(Ą*I:JÚőßĎČhL·„%ŃÔž+c z|ňúĽÇ 1"čxđ1|8Ň(ĹQx‹4ÁF)¤†Eá şđÓ4őŻÂ$ŔŚö“ŐůOßNĂĂÓđĽĽ68 ?Ô^".1&P<\\tcŻť ‚y`ĐSuç ɱÜgč|đ}@ę[Ś“ŹëĎęGĺAëQ)1XS‰´˘4«°ŔÔRΩ÷9)˘4Knü!ÓĆöâÜ^‘^z_¤łiőŘÍ÷ˇ‹!%BxŘJ)ŤęꩿßŇ·÷ Mí{’ÖhV§Ŕ¶Cޱ ôoÖ¬f}”&YzĎ'É´ş(®ň!sŠŤć5iÓ"]ŵ”eiôŕ€ ŢĂť†tÔz y zěSâĺłůý—›UÜĺ¨ŔysÎ/”CÔśSŻ$ęÝ ńnc[ó-0g1W5ói4I!‘8o‰łλâüB·MÍąÝůŚx‰“NKâŃöP ¬ [ íR˛©’ŢáŁoąZ úÔbľOÎćĽXČy\,Nś%·>·ó’'ÓŘů!p¦Ţ&ÜžŽçŐŮ` $p&|ü®€;Z#ÁÇoň ߊjđń{IS$řřýä)˛ĺăăY{Í\® îËď18öý+‡ć{Źspďűál€ó^8P%ůŘ|˝*ÉR¶U]%ăQ<ËfyźâŠ#ëLBwqDAqdWŔ‰ËŠ#ۆÜý'Ő*ŽTĘ2ęZ:)Q ${ýŕ]–Aňńµc5‡ězK ä’ąn-YúPôYEŢ4Ůť.“KAŃËe¤{'Ň­[¤—Ň=MʸţY¸ÂP™-z »őűĽ˘ýčÂć `ż [lhzLKÓ'ɤ4=–úsi·98}çâ"6s;d|뤻eÜ´düş,¦dł¸lîF™[V\‚¦¬Ăštan<žçV&ŠRUś€tÝÍ„ił yIËŠŃmž8ę«YAŰ;hŠᎠµöśÚÍŃĘ´6‹¶Âűä8vn ~{+DłÝhă¶kE“DÜŢĽÜWĽE™M˘"qvu¦m$]ďMJŤ­Ůŕ­Éć5N…™V˘|7’)‰Ą˘öN¬ěŐ$'Ó$Żć¤ĘźmŇ\µ_›“Roću‡Ő ˇbqDÉ ¬I­z·ĺ˝ÍÎO5p/:ˇo—GqҺͭ—D’ăđŘ6tq˘J2ź›ŚľŞ<Ź-*gĎ‚ú¶%~ endstream endobj 2328 0 obj << /Type /ObjStm /N 100 /First 1023 /Length 2658 /Filter /FlateDecode >> stream xÚ˝[]‹\ą}ź_ˇÇäE­*Ő‡fa?pHŔxýfüŕő‰ x{ ›źSęÖ´—ÄŰjŇ ¶îť{KGR©ęTŐs§TsçD˘Ń¨‰»DC’Ôń'Mę5–śĆ3žšŤ;-Q!ŠVODÚ×RŐ˘whQȬqŇ @«&rĎI˘‘hAf‘ń. PĐrüE KďöÄVă]ÂĄ7CŃyŻ÷8áŮx—jŞřŤ–¤Z˝GKSUďZŞć!ž<ŐĆ€ZŞÝ‡”ž„ăŻ\’°WôÁ”D8$ăGTă]®I¬Ź–&i5Z†wűZ‡<îIuĽ‹ąTó i‹ˇÖĘI»tôQk˛2F^%ËxN†;îY2ĺ:2łqŻ%ó}Ôž¬xÍŹs€©săN^ŤŃ¦ŘµÄŘD’›¬ą{¬yĹĄ÷ŃŻ`yKňZjřŤVO­¶S-©gR j0F©śZăčËŤE•Ô‰â]ŐÔy`VK]bń*&±«Św[ ћöÔŰčÍJę}ôf6ş*ěˇYP>*Ç%1¨QŃŃŁ)šNă5CłiŚĐBG{Ăä đpĚŁyčkŤrÉ<$x<Đ8:äR7Go"ńq(ąĚ]@… (eĽ†.X5Fe#¶w6·1F …°Eâ5¬AWŁă†Ţ*č ˝aÍ zkč­•¬ˇ·ęcĹ0A„? č­öcčMĆľ­Ř!$<4¨Çľ“ö¶6I3»{öěîđę_żÜ§Ă·><<Ţ~üüÓă¸ţëű˙Ľ;|÷đńçűŹŻ LDysřóá/‡ď_Ó¸¸;ĽĽ÷^IVthc*-‡›Hv'<ómzö,~L‡?=ĽzH‡Ň>}ţ)ţáÝ÷˛f*™3ÓÓ7ßÜáß QËam`š˛AŚ=—+@ńí@5ÉPí-wBX•\bÓ–žˇQ˙ŇĚ-'§xv8m”9ôŠ)w Á„ečĆW'ç 0ySčŔĐíŚoýŃ%4|{ÍYĘË$”aß`żˇÖŢÖ4ňm†Á…l`RÉËŁ)mľŽiÇŔUáj‹­Cę·‡š’5hl”mÖŽ%,W¨•  ¬ĺÁĘĹł€+ˇ˝Ô+Ćś)xY€]»…b]ˇä´ÁŚ#ôČo"öóĹň Ľ/]iG¸–}ĐÚ mćŕ©^i!G° î“#\C°™Ů]j%çVň~Á(áöú0TW@Ú`ÉéeQżÂ č`»ÄWXMÚ`Ę!IŹpP χů”kj)gD$)/ŘDOŠu¨ Ćś“hÄ·`P#¶©+ő ĂŚ9ő`â2ÔÜ\{¬WčůŽ“´× R0N$Ää™\a8y1'Đ'±>6K»\áax5§ëśźf+ł\ŁSĚ918ăHú\Lä\(×kLë­ó„p…áíj좖*X_Jđíăq„(‘•:%şB…ÚB4Î;r†¸ ŮL xĂĽÓ–ßĚËó‡ŹăŤç.‘bvôőWAĆHŹWxôđâăĂ»ďŃ}:Ľřáy:Ľş˙ő1˝ůí^ĽýűýÝá{HĽ˙đř)Ěv ăe˙ôđůă»űOǬă¸÷·űźßżýîá×4ĆŞKĆ0Z¤"|ńö#„„ :>?¦ëúIä€5rČÇF-łAłÁłQgcľZpjŘlřl´Ů’eJ–)Y¦d™’eJ–)Y¦d™’eJ–)Y§dť’uJÖ)Y§dť’uJÖ)Y§dť’mJ¶)٦d›’mJ¶)ŮŽ’ßÜÖš¸¶ ŞĚ±ľ=9ľ¬Z8Ţ“2rPŠú@DŇXqG««Äžo›2:Ú7‡É†aS±e 0ĹŻĹÓg,őöFĹE«žóźŽ0şý—˙̇Úüčµ­Wآ”SM ÷Yč˛Úl±wŇ (…ž”XBĚVĐlđbĐ„&\ĘH\ŠS–NKJł‰Ţh. ’O"aAľ iÇ,Au% O‰(Ą&©‘ĹäeH; b%J;ý ‰ö§-CÚx×v_ `ź"Ú;ěO]†´!‹ F1čŕ´ŇµEţż/C˛Ą”đ ’ ¬‘,Cň…?&tOŽáLŇú,µu‚>XáDÄ»ş.#ÚQ +‘ł„É,ŮÖ-ŔŽJ·ç‘nÖńu´c)6=a˘5¨N|Wâs† őX@żÂźÜś…0”ŮÇgfžK0{…÷/ő Ůšr…yŚŻżNŽź1et94µŰFO E°n­>yŮ0Ú,k^¶îáŻÔ±`ťNHĄFH¸ iGÖQiŻg˙AMŁčĽ iGÎ]łëŮ9 ‘,CÚ‘qčC|Šx˛ÖQpéËtGşCgD•`†tŃż5Ż<>[tÇ5­ŻŮźßüX <Ůi„HÄëóÓnmĄˇÄ=¬ Śô¨ú-˙Ż:€üG@˙ç:€Í¸Ďô¶Ďô¶Ďô¶Ďô¶ĎÄą?˝5ç>çm&ÎŰLś·)ąMÉmJnSr›’۔ܦä6%÷)ąOÉ}JîSrź’ű”ܧä>%÷)ąź$K)łAłÁłQgCfCgĂfĂgŁÍĆ”L妙aÖ6>Ô|Ę0_¨śŐuG6QčŃôžHEÔürM/Đlp—Ží+QÓ;ypŹŻWtŤýɦbIý ’AZ>q„´ăLö˝E,zňëçŽvÉ:w=ç ăü.Ú‘níXó>ą˛őĂGHýÖľ,>xZ!ĂnŁqđˇŇĄzŞÝŢ{<v8ů˛8ě€đë˛÷ř⣀ë© endstream endobj 2458 0 obj << /Length 970 /Filter /FlateDecode >> stream xÚí›IsÓ0†ďů:Ú‡í G(tč@¨om§c%cšĄ8.ĐŹlŮ8©†¦v&:É[ĺŃ7ď·Ļ́ŁWŃčĹ[É€‚Z ˘)*!€Ô ˘ ¸ ^<ŹŢśGáutŮ»—ţ,®ŽŢDŁo#l/"€OˇT„d1şĽF`bďť©VŕGůä0N!gÔĎÁĹčÓUËródłjÂĎŐB©ŢX¨âP!ű-ŰőT+P‡cŚfůěć.ţjnĚäîfމTÁEžŮ»<¸Orwáł™†&3ËÄ”żŁ^¸S&Ž9çn[ŕě3ÄÎ*Ź75Ň`Ś%Zţf±ý$Ą8x›šůı=Y%÷ łĚă<]-łUô˙Ŕ18iľ‹4ĹPIZ‘V¤KÖL‹`/Z6Ë8:"„˝ÁF IÍŮń3Ě#Ť=ěž`Ó vţpgÚ …˝č1gP*ňXC0 Çé YŘ÷÷đŔĘőÄL÷s—’˛cÖënĎQ!×Rrď‡ńŚ[¤ Öšˇŕ !’­[‚Í‘<>ĂÉvIś8âé¤ [­÷Î\m1§Žů<î0qA<îžMś9Ü>Ü(0ihcĽO—·űD ‚Č#bĺk_3KŞ•b[Nż–čšm endstream endobj 2501 0 obj << /Length 846 /Filter /FlateDecode >> stream xÚí›KOŰ@Çďţ{´ŮîűÁ±˘"•ŞĹę…rpEÍ«ÁiáŰwý*ŰRa¤HëőnF«ßN&ó÷x š"‚ĆŢűĐ{wŞ2Ř*ĹQxŤ4ÁF)¤-ĂŠ˘p‚.ýŰŕ*`×5üCQ…†˙h—ü•b1ú‘ˇź&ĺą|ŐÔ>¶Ą˘W•˘•Ůé'T¦űT*ň–â|ĆśóAsĹŚy©=ב ÝŤb±ÝÉbń!n-qߡ~9`Č(ĺeş§ o—téŐ@Ú@‘xH©ź/*[Î޶ÔQ¤Ą¨ÔP&î 8ŮĂĘÄC® xó4”‰Ťç-]ĘÄCćou?ů¬b€ř îq=.CAxx·VŔ|pćP&žŕ> stream xÚ˝[MŹ·˝ďŻŕ1ąpX,˛Šţ€’ Xş :Čň"ě»+Ŕů÷yĹéšY{#w7Ü ,`9ăćăk˛ČúxśĚ˝†2w TČrSk´P­ŃC•rI)(%kPhU­‘ĄT¬Ĺ»µJ Üč­ Ě!ŘŞs –Ó%H6nşťÓ kN)ŠU1O¬0$´Ň„ °6dťVgYŽ!|‹ňvNĺčVáÜĽU ´i¨Ę±·5Atü« §U=—V«Ŕ‘mp4Ţ+ŇÎF¶Ë ¬‡CeXx۸ËhÎ.«źJg—Áů*RbiĽťÓáIzé‹gŮh‰‚©&„}Ő|ňńćS´ĆQÚF~ŐŮęć0ěÖ7ϱ…8§SáŐóŐ_u÷Ľ‰Î„łńmd+ăLlµâ3¬»o 6ŚŃ kFVü…c®Ű9Í'ĚŮ„ř3,](°ëşťŃ—ÁH‰‡~°0bóú)oç4ˇpŔH*š•䜓³¦ó4ˇrŔ÷+'·Lm;§ Ő+<*Z+^PŇ’…FËV/”vhS›!Zô¨¦¸.QŃŐbpę8!RKµ\8™p wÇ™&BŇ!V'†Ť÷Uă%©)ZF‰Ý”'µCË8“Ę3ÔŚ»ä±|¤ĽKÍ8“:<—Íŕ- ±yR+—oŇ3Žäń‡ 0ź˘hÔhş4N˛âĂAĂÍQ4ÚŮl°fŤt—¤18MŃ4Z»ť‘ęY¨C—ĘvJS4 ř(»µ°ČͦiŔÇmçtx:‹($¦!¦íĹďIW.ĺřM†ôĂ®-ŮČŠ’ńŚÉŚdD:¸\µďă9™ü˙R0ě®Ď Ł÷?¬`TŻŮW/Ě‹ćĹ óâ…yńÂĽxÉ_Ľ»xÉ_Ľä/^ňGVGVGVGVGVGVGVGVGVGVGnŽÜą9rsäćČÍ‘›#7GnŽÜą;rwäîČÝ‘»#wGŘŔ‡KăHž›íćĄm"FŮ(ßšŃN)×/zĆ…ÓŠžń‚Sžˇjŕüµň8B Ą}ŞĆŕÄ3d ;ë•ÓYcp*3tŤ>äŹ÷čÓ„|UľŇ¤ĺÄQ˛ŕsGÝ·sšˇv»ČáśVDŽśôpŰe\ ^Ń:®\ęjwýŕÜŁŻ)ĎČLq鋸qŃŁ~_ÜxÎ&ĎÔ5ÎĄĽ]şFťs`»˛qá¤Č»´nç4cžJŤš,Ä^± Ú+Ç N^pj‡‹T.~ĹŠĚą t[u!2ArÁĂ5ˇÁă™)ú "µŽCČ7Ů­Cć”]¸!3ĺgĹé=Z‡Ě)»\´,"Â˙]R‡Ě)»\¤Ž…ŇĄCć\%˝ü,cŮô{”™s•”qh©—„m—Ň!s®“ćŢb*zĺ´GéßŢ(=Zé8ý»”ătřy}‘98EJ!#rŁŻďŻ\füjĵŤ%č_Ó6ž‘™ô_T /ÜŻ¨ĎéĚYŕOłý€l‰°-Ikycôˇs˘ţ‹¶áśV´ŤśňśźlČEšŢĄp蜨źyXĺňÂiŹÂˇs˘~*Řďz Hö(:'čż(NiŹÂˇs‚ţ«ĆqúMă˛Ăś&8‘qq/”vüpc0šp©Ŕ5Ź% ŮńËŤÁčrĄŕż˘§®9 endstream endobj 2545 0 obj << /Length 1113 /Filter /FlateDecode >> stream xÚí›[sâ6†ďůľ´/ěŐYňŢm`šŮ@›8˝(»ĂP¬°žCŤŮ.˙ľÂçNpv:Ó ş2>`ÉŹŢďýdIĆĘĆxpĺ >Ś81„ă2† ďÉŕŔŚÜE†ç3óz:ń†ďÁúęÝ„0¨ @zîGp<:zżP,n!„#1–ëÁě+0|uîÖv…ńOrĺÚ ;”`őűŮxü6YµŇűD«ě†÷/U”AUꬦܞ!„ŔĎҲćÍfą_Ë0^ÄÁ&LŞš—ˇžDÎqţ$ f§›Ea·R®MpƆ ąĂ\ž•ěŔcŮŚšcoě|K /«q/ź, LÉp)ëŐŮ„3Ó±lJişé˝÷“˙źß@ş[Ç@Čq›µ†(Z#iڎy#ă…j?ÓÜ-#u†šÁ¶-‰™ !ř‹ŔíńB˙¨Ô˙|ř‡gAĚČRÁ¸PŠWĽ{…˛ Ýg(ľä_(ţn±Ś6ąÜż€Â ‘úk†8łąď™(î"Ў#8nzĘ\„¸,Qőčó§ń|2ť ›ŘďÚ˛_ˇNH1±8ďęqÔĘ}jf93Üd6}ô¦ŁéýÍđľ©Ɔ4Ů<> çwżţŇNŕŕ¤dwąĘňAš‹[é«„űzŔ_xć=/OT䉊<±ŠWs•rńb5ŹŰŇdď4˝ţ—ˇŹŠTçÝÉBĐmĆ Ťřmv3»íĂĺ™ýE©ö3=×ďe;oAˇ6”Hż[šĘ'[*äX§ s€Ň ťńMµMvĹ7«łü„ub$yŹI+łC™ĽNóAő…d'NމćxšŁ¨sLóMÔM’-Ěş ZŠâţ)Q÷ď6ľü¤úń‰Ť*Áú­^&éŤX¶K@Í—»8Ú‘:{ă.ÂZqíb…ŐV;ń©SŠ´tÍ Sâpš‹Ë%ťW‹]°ěą„“âwş¶ëŤSƤ߂N¬—0˙$pv¶“ŕb±”^<Űćéő$¸˛(J/ží'E˝x¶Ć,}ŢSźQŐăŁü3"ć ÎHĺ3"B¦6IŚe(ŁdĘ$ ú<řďň·ÉTK¶˛ 8ŽŽAđ‘ş)N÷žŽ×n˘t'ąq°Lw> stream xÚí›[SâH†ďůąL.číswćÎQ ĆU™…¸7ÎCĂP%ŕF¬˙ývç€4JJÝ©ľJBbßďý•@oęAŻ×úµţč ęIrNĽhâ $çž1ŕČ‹ĆŢŤ˙s6 ľGç…`ę?Ě>>í_Eť«hhε:Qëźҧ ‡ÖkH $¦^2oÝ|‡ŢXź;÷ ˇôţÍ®ś{”Ŕ(ŃűwްőW ÷•Ż“N‹Ĺť’păN…€Ié Ž,ďU0 AŃű˝¨7ę^śôFýë¨ßíÎ:ěnËŻńnÚB2mĆřÖ†}ŔŃű/­Pźóâ7U‘ém ŔC±É†VŮ\;ŁËŻ_Ş`„żä7ý:\m‚€¤€&źˇ9‚ü(@úO÷j¬&A éź-“ÇąZ¬âŐlą¨$” ąĆKż‚z‹ô†< @…<§«éč„$žŽVuirxŘ>2ôuđlWi€ 'j-č:c±Cl‹ĆvA »č, fí9îĚ"2×XcßĂD$”i ˘©5е5Ôĺ[/9hwý oĐf…†»Ź‹äY¸/+•°cÍsŤĹĚÖb>ŹO—suwć[Ëkr“e™×âńřď@hkH«,ą–ň¨ńÝ1oI¶ěŞowa–ÂanbżŚ!q¶) g¦E;]Ţ-Ó€ér÷GnÁÝŮ]Q6 tB ŻRµHT]đâ0‰ľ·Cc BV]%/6LĂüŮ˝-"H©n€‡{[ Íü۰ľŚ“tY‚ÖÍ^Ěö¬=„„G Ó^_h˘ëúÂŚyNűýÁčóĹugty2üł /dđwwŘpďzÁ°Áv6_űĂzMHjŹ[ÔśPoĐé\Yĺ#)<*t‹p–ÇS¬ĆfĐ9łę…#y”1Ĺ­„,Úa/ö}‡Ä©˝+ą‰ű˙U)lOÜÓnÔ‡Á şN®±'>ĎŰ Ůtz»‹.‚9’Żzu#ÉŹ4j1‚$UńJít'WkŕÓ­ŔĎI*3Şů9«Ĺ~©óŇ׫'şîHž‘NRĄęe·p8÷ÁIk8g‹ş:‰˝ýuTËŃ-ŞF?ŰÝÎďSőđ Ötz’#Űľ<ÔĘŞ–ŮzPëĘ‚=đ ج,Đx+eA®éŃOęTĺŃřÂn޵zŔ Äv„ó*B,‰CXOX!±!´ĺ,.°chgHm çőHv2܉ŮÖ"™qěŘU\o°«—R +źďtĘ[Ó»čÍß’›´cłv;!uŞ«ÄlhÇ7[ůwđŞC0h‡Ö±˝©äűŤ±ĺż×ö–@â&ď•ď,q€§ćM Ě`é+×+f˙‡žZ¨4^•î”}áeąs`č?¸Ř@Dó=?±đ#ůŃÄ\»LóláYR>É-ˇźĆ‰Ú8ŻĘKżA{QOoPţÁ­Yč©ěPł‘ŕÓTŁ‚ľZTAýřü» endstream endobj 2631 0 obj << /Length 1122 /Filter /FlateDecode >> stream xÚí›[s›8†ďý+ti.Đę|č嶉'™$ť­™˝I; ĹÄeƇ®Ťw›ýőÇ`Ŕ:íEm]cÍŁWŻľO,łÉźŢäŹkÉ€‚Z Ľ' TB© x đ8}űţÁ»zđćÎ'ď0†!RŘü:»÷-ŽăôúäĘ›ü3I/#€«—(a \O?!°0÷n‚T+đ_öä0N!gÔśŻŔ|ň×Ëßł[/üPT•ęZU‡ ™¦Fe]%Ž‹±ŕÓ™7»‹÷ üâ¸DŞéuĽŠňłŃ“CŃ4ÚE›0Ęę^ţ)xtą’S踜óü ^/‰±?ř­^ŤbS‰ NÍF„@Ť4p±ŻeŐ›_RЧ÷A¸ŰćÜßE"›8‰·›âĘ6<¬ŁMd—-!:g˘řQЎ’´ ŞjD3¦L‹TŮţÝÍÜkXž'±źĆu’ë2Yú+ăľQäÎqŤE<7 S¤-ÚhimćĽŰťá—\ˇ,Î&Î#`}8{d«4µb„| =äBŁ–ňw'FF˝ÄvQZú×!ÜÄRű-‰Đy©m;ŮËî”Ä'çlwd”Ý©FĽăß<Ü´I/nÔ8‰Ń= kz$E8î9‹ű-Lôz N˝đć Ó뤫0˝ęůÉÉ@ťŰx˝˛{*˘…žŻ›p`>©(·"(bZ‰Ř÷+‹E[ČVł˘Zĺ5ś‹hŐ 0™¶8_Ź h;ŻěЦŇĚÚꉲ¦~Ä-•J"-Ę^”­LłŁŻÓRžvđÓó[)é>ţß1ŁP;ýÔÚ‚=UqĄ"MĺĘ—…“űh˝-ç’pšÇŹ[DÁ›7ŚY0‘Ő‚É»(őÜhQ®™ěCÓFŕń×® #Ćě U ś vhiłáźą;O“Ťlxýb+I±V—ęÔl¤S«§~ď]›áo´CMí2÷†čvme]űWwŹWŽ˘Ź”Oüy’s>„É> GvMĐĺ°ćăÄ­íŽ×Šqójş¶‡#X­¶ˇ’ţţEĂFqyą¶śęÚîŤčÜč°˝§ ŮyöadʤJŹČö¨”žk/˙µ|Ůßż‰¦A5ź32­Úăf—ĘVŽr…rîíÖŚLń&Úů7wíĄcbiQŞhҬç.¬Id6–ŰA®6Iś<çť}učä§8µzě…Yn ąĘ7m’^=RŰ͇™¦.°>í˘¨oĽ—Úń~Ľj1r\ÍĐ4 ú++m ńYśpâ.ś•´’€ťÎľßcR#Ů Ú‡ňRĺ©Ćɓ֡¶ŞV,ząÝ^±čúŽŚK¨ČŻČĘĎÚ$R°ÚgmŚCaY;Í"ăARNÚ–Z÷ĺÉmšŠ)łü Ł7\żá4/=ĄĎ¦ki!{qćĎ1Ůń.ŁÚ˝ )ý8šy3sŔů…,ń{.§ÖŇ™ËoĎKC ő49}Q´+« endstream endobj 2502 0 obj << /Type /ObjStm /N 100 /First 1025 /Length 2711 /Filter /FlateDecode >> stream xÚµ[MŹ]· ÝϯвÝ艤DJ€ p[ ‚Ä;Ă Ç´F™`léżďˇŢăxü‘=äicëľŃĄÎĄ(Šä‘¸Ž‘JâVk2ü_GO­~(’ÔÔ5u"o´4šxC•>;Y"ćá­žHŽýG˘ĆrĹŤJ"U˙ ďS'ö'­z ˘Ęđw Ź\gż–X¦dňG™ýđ¨Ý1ROÜyöĂkĂ| .IýŻLIXý]ć$Ő…F’Ö| ®I¬ř»Ü’ô‰˘j)ŽŠ-á…ŮŻ§ ŃŢ©ÖęcHIµ C(U“î-Nµ÷ć-IPáăě×zĚ~ęúśc©)ű¸Đl˘’‘ 0F-IKuíVJJÝßĹŁŠřoP‰Ö2˙ĘIű łÂó7KF6ëÉdęcµů¸­$ÓâßŃ(~ôß8YŢÚËśÁćó<‘¶–şLťB@ŻS§ÍRש«ÖS·‰źĐŹ:Đ’F‘‚1”Ň ó7”Óů˝*iTsŇš†Î©U“©ËŚQf?XS)mv„9®…=‡o¤R{Ă8GE§Ú &UĚĽŻ š’ŐDčá_a M..ßG$uöĹhóŮŁ‘Ö) ŁtăJÇh4D1ZÇh\úś v“—‹gâŁŃwŚ6MM ÁęJSô"6qm@M$<ŤÂIdZŚ h†ż†HT:FĂÄ`-MĹ !c~ćŔµŘ| Â*Ď•00Zsd°ZŞmÎGubhXaT;%kÁhř`ő&FĂJµ«gĎ®ĎooާgĎŇá9”Ć9%ý„'×9µăÓ7ß\~Ľ»}óóőűô2~üáy:Ľ¸ţý}zu…?ą”˙űíxýďë«Ă÷x}óţťbó÷Ż?]ż»ýp÷ćúÝѰço˙şţőíëďnO/ ~Ŕge6·8Ę}ĽÂxŻď “=ű{ss ˇ/Ź~ĘaM?ujÔh´hh4,÷oŤSJ4(ŤL!™B2…d É’)$sHćĚ!™C2‡dÉ’9$sHć,!YB˛„d É’%$KH–,!YBr Éő(ůłÉťúż:üüá—÷óůźooţ{uřîöî×ë»9…ĺŐáIóÁgý ěEG†ËËľ¸«2íVŠßNËű9ţvűâ6~Hyóź×ż˝żľËöW·ş‹č5c [ĺLľR‡eÂZ+Ôľ âŢ{{{“Ńór0লÁ@Ś9›{¦< |Éđ{_ňá—X.‰ć¤”ҰÚŕ)«ިĺ¦Oč„/Żí#ß’`,đ]I1I]ĺiťđEgHFvW¬VróíNˇrÄF@2iűC4źÚ©qîđmlţ[•sŐľ ‰7@‚Í D,†ů«5›Ń2ه,cYłŐ졊˛ĺbuQ˝ĽQĂĹĺáfE)ör-##`X1ę Ó…0K̦ŰA:(«ŤEőlYe łoÎĚľ >6 µeHÜ‚éر3rEýČ–)Ł’ĄĚü(c˝b9kk6XuŽÄ#ÝěůĽv]—m¶ 4¦ Á–<µěŘZĎPRÝ©Aô1ńĘ‚ČI~çeHm$˙ßSzDaČťl#Ju’n€äŽq&quwl±E–!ŮHĄB;HËŕ— RśJ5·e@ýň€¤k®žzbűdź2ŘşqŹ L×0ÔCƑİË­»É˛SĂ^ëy» ňrL$kéë6řnAš!^SÍ^ţ “=CMś· ŰP/×ćĽ\h}ĹŃ÷Ͱč1ëţź”cZßOh÷fdě%7Ď=Ü.pOgŘŇďÍČ>Ľ¶ă‘­ůökn g„&Ü7#é^Ű«®.źÁ–ë¶´Á}3ršM)}FHö×!mpতz››yu\‘3 |'l&6«ŐŘp˝ľŽ Žd=<á śĹŻŇ3’ÜVő lë{/ođŕäᛯ6ATऊ*ěi}Ő1_ş|DXkŐš—ŤsQń3ÖŢSő#ą|âF݊ׯO55ÂĆ+uˇ~$;*|T<5ÝWłŚ5^Ała—őmúěc1k¨ô’ŃȦň6ßbOĄ,ëđH¶ č m%/z˙’ĽčúgÉ 'ńNeö¨ÉרÉרÉרɷ¨É·¨ö·x˝EµżEµżEµż…ä’[Hn!YC˛†d É’5$kHÖ¬!YC˛†d É’-$[H¶l!ŮB˛…d É’{Hî!ą‡ä’{˝$y6k­çáÄŕ“ľĐĆË»!J5{˝üTí|”Ěř ¤ş‘Ö8U;ťÖŕGÖő<;„Ěy8+<«ťŹŃ_hGöřÂIÓ ÄVNgÔŃ–!í`X‹‘4ŹĹ˛źÜq:ĂF_†´ańDŘ+™Ŕâ§ťÖX´_ńh »)’?ĎÎá2‘^~é;—á›WćÎeXŃ•Ą/‰ ÖlćD†ć^VWÚ–ńžČđłÔ'‘AĄ-CÚ"Šź:©÷|řS4Ć8u#áE¦Bçő»Ůü…ĺĚřţ˘îŮŇ‚ľŔ#°É_4ćeD˛“ľhyž>ż¨—µ¤cdćä…¶c4Ý˝ěüyqĄ]~uqU±şś°`®OŻ®-ýG®B˛özYŃöśy»ç*°ß«×˝Ďŕ*Úž3o© ŕç®Ď *Úžso÷LĹIKÎThĄeHu#Qˇ2ýă9D…CÚ‘¸vęRkŹ3_´°$ó7Mhr­ŽeHKBľáůrW‚«vŢBk[F´ŻD¶áŐăĐŃä…;ÎçîŚ6 -ćä·őĹöéa“ťě… }Á^čńÁ2{ˇÇ›ź°=ęő=Šň#Šň#Šň#Šň#Šň#Ęý#^QîQîżżÔ1N’ýĘĘ©AŃŕhH4j4Z44ŤŤ?4.~h\üиřˇqńCăâ‡ĆĹŤ‹?4.~h\üиřˇqńCăâ‡ĆĹŤ‹?ôtńăŐEů·‘»>DóýŁüĹ˝ąnHă FTžb->bŮ^KnłâŚŔ>ć)Ââ3@[ k!žHŻcȢżÓM§ü»eîó(ćńäÍŚĎ!í8éóqľŹ éç9×3tOÄăěEď:Ó/Ćžs=C÷D<ę§Dś±śN ťuEC÷D> stream xÚí›]oŰ6†ďý+x)]ă÷GďÚ$4É Ă€´0Śn?#pgž]©VŕźüÍŔ8…śQsľÓŃŻ#dűU´łľ· ŢŘžR]é)frĄ€˘˛Żj!fţX3äĹIśÎ>ĆÉ_Ź ňžľDygËżnÇsúcÎíAĽîJ|ĎĆ~tÓ ó¤˛HęŔÍqŚ%Zîĺ˛×Á„̦éÚ4ĹÍťű:\ŞĂYÇ©vpŠ Îi:Oeýź ü×ä*ë|_tĹä±2ŐĂŞ Óß|‰Ľąu€ůľa»l˘ĺúČU«‡ą‚ŢGřE3BÜNůTŔݙ̮~ţXG‰‘DNŻ˝âéĺűßgżÜ\źśM§Ť©Cb7DR@ĚG©v="78ŔM ­€íüâąĐi/­ÚřŞulj%«°ÓěŔĽp§†µT*S •¤M;0&‹)ĹŢ3Ă»hᏉvş 7QbL"^%Íዾr›Ţz‡tEÄâě·Zx'+C5N˘ő,­s%Šş!m¨=\Ĺ;d·–Đ@,^k˝o|‚@ µ4Ď’4Nź Ë]nZP2ÁśLČ”•`żú„{Ć[;dްE^´Ž’°ąf&Ź5«ó2mbĆ6¤ëšĆ(KęHÉ˝Ó(ťşw6w=†VÝ_ÚŇg1öĆÔz pÜŰ? kR°žl’0§ş?O©(?V˛¤W‚RUńB; ă8Ť>!D’č9ŁÖČk~îKúąďV¤xÇ}ËZ°M>úYeÝ0#Ś8Ůîq`ěřuŔiď8ݶ|9׫tnqOC– %ĚöUˇŚhişóĺrÎň§Ç­m´čVÝöź$ŕb5h ´µ”»Ę‘‚,F–VÉv¨”ľŐŻü»óÝ1WČŞ|{•’ę2ŹćŘîŃ®­ Ů.ľ·‹IÍ^4EŤfĎĘQ÷±oÚRüú*{ ?Ĺ©Óc·m ~ËĘz Oę>ó‚EŰ.5.ˇ‰kěQ+÷Ě H¤`ŮN4"8ä›7ˇ0-ć˙§óȸ„™ŠŮř¬ .Ë“‹l|ŰŘ b(۸–ťaôŽëwśW‹ěÝŐş¸ČŽĂâ"đÍĚc=ŁĘłyZľú qd"ssŔĹŤ|P}*Ă–,˙ötoP™€<©úđgĘ endstream endobj 2719 0 obj << /Length 1089 /Filter /FlateDecode >> stream xÚí›[SŰFĹßý)öQzđvď—Ľ%Ä0aˇX“é ÉxTyMŐ™‘†oß•%ٲ.¶´xźteY~ťýďY [€ŔŮŕC0řĺT2  ‚‚`$‚J 5` nĽ“/—Áč2űßsŔ…\RűÓ«k?dgŁ`đ÷Ű“ŕuJAEî7ßÚkçAŞřguç`Ü6ƲĆć`<řu€Šnĺí,o‹Ż‹ŽR]é(frĄ€˘˛«b ÔţP3äÍ–ĆLŇĄ?ÄÜ{ŚŇUWËßn†SúCÎEľáŻrôŞŤý×M[ŠĚS¬ S§n·C,ˇĐr /Fţ*ćĹIśNNIƉYÖéjŽŽ•'ßÇSmóÄm<ä=Ý›:XŽ™CŮ%MRA9JŇ8}úęKä…óÇG˘ĄčaTi•ęźpĎ$i§@…{ň}ňYěç8ůkÇCĎŹ|ę«Y^A;NĂ´”•2ĺ® Č‹ž€Ep§x“ęaPej>rĺĺkţî[¸ó&[®ťn{y®Ú‡¸SÇŚPGwŹ€uNwk0›\~ú\g‰‘DN±1%Ĺ|ëâýo“«ë/'Łń¸N“2ä(î~îI1ËZ UíŠD®x–>I…ě·ž íĆ´rµP­hvŞíĺláť*ÖR9Ş`H1T’¶¨×JWJî­NÍĚ íă"zĽ3‰µ‰x‘4‡0úVČőn:G-»Pw“†8Źş×©á¤‘rĺRîÝxŰüBR#»±„bńRď}‹4·uJsšµH¶‰’ ćdÚ,+Ŕ6RŮ&[…Ącۇ-ĎŮfsŮýľ*\ř|ł҇ř¬ŁŰKÇ2§»Hg“h1_´ Ň Ď"«r˛y¦ĐÔ+vŢđroĐĆ;Ě#ěJ‡^â-ßăhĎZ'ŕgqĆ% i3ŇŃŽp=uŕ JEFagkiď,8»ň­Y„?[1˙#NăąÉ÷®Í̧Č3K“D¦©pŠŢ&Ő×N$é†ÚI–GdŮĎGc'Ís3-ró˛żo‹~0bĚĎ€«Ăť…d …ËŮ^ňVÎ¦Ş¤ËśíŢKW ­č±ŻÄ«Ă\{ŁaÚpíɇđ!ŽzúvÇËQG­ĺ‡¦Îˇ_\ŁĂš–}FËE úB$‰W÷›µTč(av81Ý8ńéE0ąz>ę|âČ')=…Z.wdXż~ FÍ(C9¬;±v­‡R·úżąĂz=ô6˝ť¬j53˝oK2^úŇä[÷őňçdV~•‹LVÁmi'="ŚůźÝöá—Đ–ş=>{+żÂHÁ*_á1…ݬţ-g&1Ë0- ¶˛z¸(wÎł8é±8 Ĺed{˝ăú§ůŃ,»w±ĚV ÇQ~ř¶ŕX†‘©\ ÓňÖo#[«Ű ÎO¬2¬§ŇĚ2…ü|şµ¤lˇžÔ9ý H©.ˇ endstream endobj 2633 0 obj << /Type /ObjStm /N 100 /First 1024 /Length 2558 /Filter /FlateDecode >> stream xÚ˝[M‹9˝÷ŻĐq÷˘R„RůŔ» »`Ćľ<žf1Ý݆Ůż/”©jĎŘÓĄdK M•Ş3ó饊˝L®‰C \STš7J`ËŢP˛yŁŃęŤZî‡4hí'[ ”ĽE)?ť([˝A‹™É˙tiě­¨mWH Ý®¨ĚĽÂ\â- Ěḉ”ěG?Eý(´ĺ„> ÚŹsȉ‹·JČÔĽ_–łT®!—Ι[ČN - ą :Ş ç){ %ăÖąćJ‘Ś>2F˘&ÇŤŇ:çÜBŃÎ9kTúQ BęGK ’ł÷†RÔń ©ŮűĹ JSż·R‚+ú(0ľŽWjŔýők[@Ź~GECęWX¨Uü¨¤PŐg GB5q¡%óű—~´`֌ЇHh’űŃZís ¨¦ąź§ˇYg%”ČŹÖ”Ĺď¨RĐŇÇ rPécP3Ě@ýZTĺ†>޵ć(µ#źĆŠa7|zKň¬LŞź‡“qAź ¦âçÁT`W˝»IÝ4Ŕ(ahĐMAĄjŢ7&ź’Řć'őË`™0Hď@Ý4ąĎ‹’[iE$ę# “"jÝÄp7ŕÜç Ä)3zĂHS\@śąˇ7.­ˇ·nY\ałÄ­Ď¤ő•Ŕfč-§ć|±¸(o ţ”sí' ·,äÓ«˘\ű¨zËÚÍłJŮÄÇÎĐ[!ť–Đ[aźŤ†ß¸5óJľđ&…¦Żë>P ¶BEKż ˝kíćŮł›Ó«˙üzNßŢÝÝ?Üś^~úéˇ˙ţçű»_nNßÝřůöĂë‘Ţśţ~úÇéű×ÔÜś~Ľ}÷^TÜ)Ě3f_ŘąĹć¶Î)bdqŢ·áŮłpzN»uN?„ż|üô“˙áú÷÷w±Ĺs俆oľąÁßő(ă»ĺśbůIâhZ§ĺŚZ‰ćö_Z„c0ĚiFe#q&°VĆ´aŮÁGâ˙Üż{y áôâ‡çáôęö·‡đć÷÷őâíżooNßńöîáŁďTżŢéĽ˙ôáÝíÇm˘˙ď_·?żűÝýoˇß±`X§ŁžŽ˝‚{ńö@głBq¨XVýixj_ůDgt}í¬ 1°A$–K:4­(ÔěNívsIúřŚĚ»,oOŃt=ď’ěń9^!y L7yô›QžË:śŃŠ Ö5óG•vEĎ5ŹZhžÓŠqňGOô¬čŃ<:ĄĽPôŘ5==R™§TŠ»¦wDôčśdĄč±‰zGDŹÎ©®=6Mď€čŃ µ…˘Ç&é=:#ý‰îA˙(z4j˙łčŃĆ6{ůměĺ·±—Żc/_Ç^ľ•@Çĺ:T*•@˛dČ6m Ű@¶lٲ dČ6mGöG.÷ŤŹFŤ22u4Úhčh dČ4i Ó@¦L˛Jô0TvW}]ô¨GV¶­=l|–}Ź[†˛öä{_0*+ÔätĺQXˆśxž“¬yDýťË]Y;"‡tNuĄ˛ikOľň5Nm….ľËľ‹k®‡°đę •ćö4Ôµ§$‘ŻqZ§¸8˘ţć˛.#_úË´âe‘݇oRÖ‘WE6J××$PŁřł˘.Bzü¤JňH†¨(LĚőš!J\xCä32ʎíżî‘Ëâ endstream endobj 2749 0 obj << /Length 975 /Filter /FlateDecode >> stream xÚíšKwÚ8†÷ü -íÝ/ÝušËizšé$>łI{8#(3ÁPcŇćߏd[lHq†.^ů&tĚŁWď÷é“.{żG˝ß.$ j!(F@"¨„R(0†ŕ.řń0 żDW€! Ńö‡Ĺíw\Gç×Ń­{Ö;ŹzßzŘ>BŻúP *Â@2íÝ}A`hź]©Vŕ{Ńr §3jĎďÁmďĎŞŢ«ě'WŢToJőÚ›b¤ ÄH!ňď*!¦…})ypž†Ë©ÉÜ1Î'ł4ě©‚(ÄŹsS^žÍŰ(ÍËîßř×w}…TĂ>çĽ<˙w%ŮŮËşĆvŤŞ?Zç (†JRĐÇ ;xkT!űšˇ`śŹóř30!EÁC>4#{ZăĆ•z˝ÚÂÄ»`˘Š#ßŕHj?#DĚý0·Šl‚¤šś2ÁţN=ňr–_,Óäij??—)ő¸^8ÝqëéÎýtw= ,×33z;~ íý¸´Őiť˛ŘNůT$ş>ŐE)ŃżBYŕęcLâżC|î÷‰=IŮ v_ÁŠuÁV±©R­ŤP‹ťľúú‰NÉśA©HCÉ6ˇH—Ń卙ßÇíŁťü(€_K_LĽ oĚČ=6™I“F,SDĐC«›¨‘n¨»Č˝ś•ś™<¶¬‡•{ERŮĘ|»0ÖwŔÉĎ2´uÖ¤[?ĽčŽ`h©zްćA‘őćŤ$ó#Ăv0Ŕ›&ý¤[ľ2éŰŻN¶5Z5Ő©1íÔąµ«RĚ*§]„®˘Ő®COc}Ź®2E=F5‡Á×cş•EKĹł–uńT§ÉËjyb™É—™ĹÍ´™ţ*©OŐNŘ‹m_Nq ióÝ”˙ŽK@"s_GÁ!ض„ÂöX ÔĄIMç~÷Č'ÎýÉ•3˙euAŞr»î Ł7\żá´Ľą¶ł¬Ľ(:ž$~wDˇ łX{çľégÄ‘őE{ŔĺŤb;üŃĎJg†?Ç•5Ĺ´ę?˝âĆő endstream endobj 2753 0 obj << /Length 531 /Filter /FlateDecode >> stream xÚ­SÁrŰ ˝ë+žĐL…B×vjÍôŇL«[’±p¤Ś,y$”´_ŕŘ©“SO»ě>Ţ>v U‚ŁE”;×™*ůR'›m‘"/őI!€‰‚‚ş·đk«ŽFOiF©„$˝ŻżżáYI(E9–Ô‘`qŽ ÷ëVű»U]y§ď&e %üs….ŠÝlóHT ‘GÖ±‚{Ö;ĚńÉŮĆ:«( •\Ľ\|ł% ”–† GCQ)…Ĺ Î=梳1Ů˙ 9‰ĚGe΂Գ·|r“ó^—‰­LŹý°…§ ¤ÁĂ›IĎz0ĘtăŕiŢí'•áň|JEśRá§” ݤrlGµFŹÓź»FĎ>˘|Ťż„Ní•ç”r¨űŹčĚčíŁ´O› Ăřă.–éoWRGb«uă˛{WotKĘáA™uýĽI™ĄyŇNÝgţQo]“ѵµ }ŕp™3îťeĐÄ̵—X-ł·sw8öŻŐ¸ÍS+mń‡§e6Ţ´nń†]ż4ˇ«ć§‡“ˇs~V ¸]vN¨˝đš`°ŐŞYż«©ˇ9Ń ˙Čap§†7Żýđ• Şů’ĺĽa›_şąE׿ĆCmčŃꯛň[ą@\¨IÇ͢a‰T׫wŠ·â6¸¶FűĆJŘt“Ţ™1ʶź˘‹>Eű­Nţ9<» endstream endobj 2761 0 obj << /Length 268 /Filter /FlateDecode >> stream xÚ•PËNĂ0Ľű+öhjÖo§GDŠÄá[é!M܇Ô&"*‚ţ=Nś $Nśfö5Ú„ ”ä>»'§ÁóÂZaą·\!ąZŘPɶˇĺ ·ŢĄł©Ž‘­¤ó´ e&çÓn¨¶Hoăy äťt€ ~t˝ç^jh.dłEhÓ¬äŞđđ9m^@ĹŤV‰źá•Ľś]đʦqIň?Š‹kËĄłzt-­á&ůŐÉcRś–±‹C}Ťm¶×wźR1‰ôc.ä (tfצX•«ý¸ŰsbŁđ©ÉE`éP7ń׬ľ.«oh0ś@äĆnşeţĐ3…ôëv2ŹÝú’R ˙YmŐ endstream endobj 2778 0 obj << /Length 672 /Filter /FlateDecode >> stream xÚíQoŰ €ßó+xĦŚ÷¶vKÖIŐŞĘoíĽ„¤Ţ\lwZ˙ý ¬©˛©iłUYóľÝÇqw4C€FXJ„z1—Łaž!Ş($Eĺĺ@””H* 2g¨ś K|r]Í{Ý&)c łäsůńť…ĆHŠy#€R!WQ˙ĚNnÔOÍD'”âĚlŢdŘ!#Ą"—á" ơIJ .ÓĂŃÔŃ0+"…”YÔeŠpT?čÖď*W¸î‚¬‚hę®#;ŤM7a‘7k«,%˘śP·Ű”ćD2V)Ę· \ŤăzýÝ<Ž®+3iĽo9HLç·(Äźž©ľż¦@µž†\8$—).q±Ř ś;”’BűĚl<¦Ž§ˇżŽÔfÚč@´×“8·Nř €5ú tîoqDYľ—hţ(Ę Ši⏂%¬á­÷µ51†[ÝÜŁb[ÓWµŁçŢÎs~™ß˘Lł­‚f+]ď&;‚íß~9$âď!ŃIř{ÂÖ¦wŠ2Ź'“ďśLS›ožĘŮ˙™pÔÎá,Ąr…¸®ľ$®^đĹg*T¶·™ůĹř0ŘŠĎ;íË+łD2¶Ťm#«©żÄlFĺČ…ŹĚ5ôn(±­ę˛3}ăA8w±wŞL5Ó7.»¸őءÁŮ-ąU}*‡ËîƵö‹¨Yő.µ ňd˝^ «Vgô« ˛íqŐŐăđÂŰóS·i._EĂÂ\ò]î?O¸sŮWýdî^[x›Ţs78„B…L>'ŰŻeąíúą5µ™m¨‘ÓykÇşëVłÓh)¦ĄŞiśM.‹˙ÍÁ\>ákĘÝ\Gßv>sSüµ^ĺ/GîĎ7Őűrđńŕ†š endstream endobj 2783 0 obj << /Length 266 /Filter /FlateDecode >> stream xÚ•P=OĂ0Üý+Ţh5ĎßNGDDę€đV:„Ä­ÚDD­h˙=Nś $&¦»{ď|ň=„ ”ä>»'§ÁóÂZaą·\!ąZŘRÍvˇUX®ĽNϦá¦o/ÇČVŇyúܵ‘ CŻŁ‘<ňIDň!ź8ďą—šŮîÚ´«ą*<|MÎhُŃ*ń#Ľ’‚óü“i\ŠüOâRÖré¬ËJk¸I5µá6%NĹĘŘš>Ç6w뻌›…TL"˝ĚB΀Bg&pmеQYíGo?d14Yć‘uíęób}Ce(kň endstream endobj 2821 0 obj << /Length 665 /Filter /FlateDecode >> stream xÚí™Ď““0Çďý+r„ŮĽđ¨n«Ž3θĚ^ŞĂ`I[´K;%U÷żš0ÚBŐúĂŽ9ĺ%mľyä“—<A3DĐh@šS^›u1<Ź7ĂŔGb @ń‡B ,Šâ ŤťótĄäÚő( ßýżŮÓŮŠPŠ}ŇZ„ ŹsĚBÓ˙eŞRÝůN­7µYK]}]dŇpľwhv{¬ÝĄ8ŕf$ácĆ}=’ŹÁő€Ň5f©G1ş7C?B!Ž„đŤ 1­óJn] B'm 57F¦•+«TŐśwůmă·\͵őI˙šË©é(ˉiZ©|Y”ĎvúYh]Wjăýh€€a¨žŰ Ę´‹Iň.ŇäÎřł54ö"9Ř­Hp]~5qL±k’ÖÓÚ‚2ö€EÄaŃŠiVK Gś›čZ*Í‹*ľöů1öźĎüB{Pc(qWrź.řŚZ’''ÉIĎđĽ-T®ďÝ€8ébÓĆ”Űđ<7Tč ő«[a“…:žÂnľŁK{Ňť©Y2Y.–{'ŞŕE»ŤçyŮ•Ě5ŰBhѤv&íÓŇ&)L•iL “ő™ľ›Rf¦Ĺ­—¶GńČ­vńʎű˙©@Ľ®ą®±,ňRµ¶ĐzbNöĚ6äNBx/ß©Ů>ȇ:.üz±·’YšgŁÉް®ŇĎ2‘Ů*)[GŁ`â5At«lžLNŰDp°ôŽJŹ÷¤÷6/ľ<íBŔžšW ů/.,Ůł“=É.Ő´ë¤:<l®{Y¶AĎ\÷NĄJvĽÄ'źË÷¤|ů/|nË!KöBdĂždő-®ů`–nďemŔśZ—ĺť‚óáD‹rbáž ®řý™ŰxđÍZp@ endstream endobj 2720 0 obj << /Type /ObjStm /N 100 /First 1004 /Length 2525 /Filter /FlateDecode >> stream xÚÍ[ao·ý®_ÁŹí‡3C#@×n5bŁhk‚b_\µŽ.NEüďó†u˛-ß­äÝÖ†í›Ý#‡ŹŹCň w/×TB ą¦HŘ ąő;-H.0(-Í •˛9ö;(ˇ*, DęőHĺVŽ`ąOń bôŞj dŐ­L!'†…K*ŢxĆŚf`IȢýŠ”äž;šî/ŁIk md śúą¦Ž“S`î­1–âu9ÖćĺW6·$°Yż§A.a• d˝n ÂYŃ ‹TÇÂŕ¤8đ*)Hí…‚´ŽĐ4u^Ŕ¤ćÔáJPV÷,T:łR@(÷ş5h5®uţđź¶ęuQ­PŇŔř¸úJa5§Lk(üĂú pé…ĐÝ"ä-–ŠRsď Vń{5JîĺŕÖ:2|QZóővnJ ŕŰ=—Đ[g¤X¨ĘŢ?ĐŚűޱŁŤŠčhâßbx-u^AšeÔZ%oŁj0i˝\ V@3ȳΠև¶ÂµąĂ\qŰLţ š¸WCůŽ×Đ‘–Äk€„&Őű…†[ˇ~݆V{ÍBCe·šG,»kŚ%Ş~Î7˝™é*ňšG·ö!C]Jµó ţ ˝óOoÎWón8a Á»_´Fâc`LŇM´†Hµ#hŤĚ{e ­Q3v­eBPÂôŮ”kż‹Ö0ćú>[łJ/€ÖrńÖ 3íúl2ĚYź„^ 죣GŹ­^Ľ˙eVßžťm¶G«ç—?nűőźOĎţs´únsţf}ţ2a=HŻV\ýiőýKęG«ÖŻ·á%(•0tąĆ¬č6k,Íç,î3ŁÜ·áŃŁ°zVO7/6aő8üîâňÇ T>ÝśĹ)ÇüűđÍ7Gř;nQ=>ťY¦čKµhą}ÍÇ€"ÍÉ$":©Q4źnB±x¬Ą™ínD;,<#5×#…đŽ„ąś3ņ©‹X‹Â:a¤xNZnŕ¨Eň`.-˘Đb™gŔéź>ă˛!žGZL2-pxŢŔą„ę{RÖč 3¦ndáéňŁ–826Ž1Ý ™ćIŁĆóSdŐ„HĚŘł›"„l*AĽÄ •­şLwljŐ˘hťŽč!{˛9ŰöjO|g"ě+)ü€+ßwIŻ®Ptőě|óúů ÂęŮă'aőbýë6Ľú°_ĎNŢ®ŹVßĂăúl{ázŁy}‡±ą<˝ľ¸Ň ýŢ_ÖoNOľŰüzŹ´f߆±„™ŻĄĎNÎáÄűŻĘwŇ.Đ~u«kşk#‡!ĂĐaÜԪða´kÓ0†gžyxćᙇgžyxćᙇgžex–áY†gžex–+ĎŻćť`µ/‹®( &C[!‚¤Lš`284ŹxVL-ŚÄeLyň“%¦" ›:¶Ň˘ŘĐpÍh(ńtL ¬‹HšbWlX«ˇś}aâI٦ ,BVcq)Z1hĐű 1Ą“73]b»/•˘ç™KôÄRäcC­†Ľ ‹®Ń!ť( ŚÁݧ˝×:±@á‹Ň„ˇ’%G†LífA,É%}™gť¨ć¬`;Ƣ\ đ łRž9˛D†ˇΉ¸ç: ą¨ĐůČEŽ.0Tb@Đn$˝*Ú™2RşÄ6ˇââ+Ž«őű{ňťŹ-‚‰ á%cv{–Żc5ÝÓ-Mbń(ŹâgO aje:¦rUÁd'ŰĄb%bŤžJKP¤.㡂rŠ~ž$eĆ4•˘E˛C23ß°¦¦ŔčHu:¦T SMtŁ‚k$ręIٶ@r( "Ě72M@…QC3Mm*C‹¤‡ eÖ|7Ăčů®ĆfĚ2ÓŃÍ59†ľ(%qŚ Ł9ŇCÇĐgţÔÁ) Śt:™NÇ$sﲌ•ü|K#!Â?¬HőĐ.[ćźd }¦ewâʾȔYV‰č„hńµC…›)ĹLőPůx—]ôÄCůÓĄ/>ńĐ4ç9c”Ő2> ®DÁĄ¶ř™ôäé‹§ÇöŻŰ$>/űC¤NÝß˙ńOäŃ z“ ]k g—ďŢ˝úla,^¸VOôeZaőů´Â Re" Ĺl$hľ%]ö–;˘dő¤?÷Ňňe1SčŽiŠ™Ű=-iÚčÜ=Ü›jźö¦–{ő¦Zúd”qHVĆ!Y‡deż•qüVĆń[ÇoużŐqüVÇń[žëđ\uÎ٦a—‘Ĺ!5Óězá–vŮ÷›ýOifMZÔ¦üQqÂƧ´‚„8’ç"ÍĄnľ"HĂ©Ö@x ŐÓ’ş•ó!Fd ČłýqĚ âË!Ft Š_n1qÄt‘˛?=k·b)ë!Fę@Ř7«HIt‡-€ˉŮnöŠť}îđţH[TÝÂá»h;DĄůpěj·$¤„|Z`eeĂ’N»éËŤ °r˛ŔŇĘVŮ_Hj‹%ë!$ü‰Ć«őďváďŽÂjČ Ä,Věąnô ±r»k–˙ŇËň§BҨ}±ô˛!´l-Bˆв!´ÚZm­6„VB« ˇŐ†ç6<·áą ĎíÚłżŃtmĐ0ň0x2 FF† cx¦á™†gžix¦á™†çńÚhx&›S7šxĘ u† xH°Îî˛1·ĎśćlĎ/_oŹńçŻ/žäăăçŰóÓł· (ČHŮąźgĄk%ëÇ”±`ěűŃ7·=Üřl99=[ź/#«Ě}du™SV_“"f Łůűµý€´ů#žÂ‰7˙u¨ü2§ĘĽÔ›ú+N©?%Ţ+ň;18Űžnß˙íäÝĺúëČ9ĘĚgŽť–‚ąă/ŽBG*Vć˝)Ç-˙ĹV±P¬ ˙©·Uö„ü§Ě™˙ R4ÇĆţ,>±ôďM:)o·oŹŹ_oŢmÎżŽ¨Ě™Ś Vr–SǸö§@;RŢť^l—HÇüŃT˝W>VćĚ 'TŁżÍŘßx2¶ŁäçőĎ›ó÷_GnXćLR)Éó+í/¸š˙a_n¸Łĺ—“ŻŹŹ×o~9>ľX"_-ýő˛ű$¬eÎÄůšnýg)ŢKkĎV«ä‰ÜřŇűfýÓ"Ý•Gg>DĐśý`č:Ť&(*±ýYtgČý˙o˛y$M‡ř_ć2rH¬÷ýemćÉü !ËěĐ~° Ýë`ˇĚzÄ1HQ‹Ů–SôźĽp+zźnŮlZl‹f…¨M·bh¸¤e~•ËâO§1u°tU˙šżS»oî<ßžloâä7`HĘ endstream endobj 2843 0 obj << /Length 273 /Filter /FlateDecode >> stream xÚ•PËNĂ0Ľű+öhjÖĎ8=˘BD$¨ľ•BâVH4Q"ڿlj„ĉÓĚěc´łg@(Č˝'wŹ™ÇskřdČťµĺ’[ľµěčKPÖđÜą¸6wŐP±ŤĚÝýXc’|j›Ŕ„ˇ×i‹> stream xÚíYKsŰ6ľűWđH =&©í´ÓNÂS㎇¦`‰-ErD¨ŤűëłxPőpŐqśT'€Ŕbě‡ý° boîaoz…űQ¦«ş^˝Ę®®'"ňH‚Xʉ—Ý{Ł„sŹ'qA˝lć˝÷_/ňVÉURšřqđ{ö㞣„Rá„j%Ř CqâĆOĘJÚÁ?Ô3â8˘äříú(J aN5ŹPĚ"«:F$ Ćxg’źĘNYýNăő$J˝ĄśGNMPL¬†ďĺJʉ_v¶ĚmQi5¦ÖÜ»ŽŞ˛•Śi%ťřߥZŘÚ0ż”N~&»Â5µŞlęî»Á˛¶%ö·ŇşňvzĺŘě;$qŰ…Nł)Z x‘@Iś‚A)cNLÖŇMZŘe,d>3čA]5nŻuQ­‹PN}^Ü쑯3D>őëK¨¶¶<0ţűÄ)ö99ÖIÔÂ|Űí›ß˛€P쯂ýĽ€é÷°„Y#.ľZ[ľŐcŠ÷\+›ľĘ»˛8Ë ťěQjąŰé©YďČž‹ŹÎŤ'ëŁúžÍrcmůW@™ź;§oÖn.Ł´Ń~Ďüe® •’ľÇŠźćX[ żn*Ř Ăţ9d‹Kß=G믺'ó®YşŽu'ď׎ď =O7Dú‡(ČZ•ęa‘j-°€Xx¦1} Pń X¶+Ůu'¨ rˇ¶ĎHmé§RŰö–ŇaÓ!r‚Ň˙ąĺż¨?ýľúY.5íű<ŔŐ1"Qć;Ä–÷2ČM‘«žč¬§GĐ rvĺ?š'ść»B#¨‹?A}JéW6Šh,Jý%›€•ÎĂLË" µpÖťWÍ]^â9g®ć'Ă‘uWÖ®×ĚÂIüÍÄř",zűNŮ l]¨“á…%GfIöô«Ŕ»=;˛×Â}tO€Z!iÓN§KătşbĹô,ŰJ.!4Ěő€mÓĎ i—ůˇ˙±F—6żÍtă&#p+¸Á ëřvq=!±ÇQ*˘DżzDŁZ°ÝĹ Ž±•JŁ)†B{™Đ Oŕüs$(ÚÄ&7Ż1,ąśßĎÇY ‘łţ•˛NyŔ`ś˝CJ“őČÇ. őĐnzć.˘u]×1űYK9“ła®µČul`Őďiß^|{žFKĎ6)ë©ç× wüCžkĘ^Ţf˛ÇŢ vďlµČŐŃh¬·áľŘ2ŻËv]múDVŕčĹďŃRŇ޶çSűfÄ.ż‹Řň»cCĂfÓ|@ň aH~wHOňZ~Źäˇ×<”Ă7Ł`—áAâÂđß>Ă'cąŔ[ŮVyp^öÇ˙Cö·ÇŮ\˘m:Ő6ő&işÓrw­ÂvŐŔQަCć* Ô•>łÉS2–Éß©Üf˛‡Á?ŹČĹCž9=HéÓQěĎşśřqĂÄŃgCôń–7ŮŐG,HŽ endstream endobj 2899 0 obj << /Length 265 /Filter /FlateDecode >> stream xÚ•P=OĂ0Üý+Ţh5ĎßNGŤÄ€đV:„Ä­*µ‰Šh˙=Nś $&¦»{ď|ň=„ ”ä>»ŤÓŕya­‚°‡Ü[ ®Ü -l©g»P’+áŇłi¸9ž"[IçéS×F& ˝Ž6ňČÉ… ~ÂĽç^jhÎd»ChÓ®äŞđđ59Ď ŤâF«ÄOđJ^Î\đO¦q)ň?‰KUËĄłz¬*­á&•Ԇ۔8Ő*c‡úŰÜ­ď2>/¤béç,ä (tfצX•Ő~ôöCSđ±É"0Źt¨›řkW_ë,C™@äÁűtËüˇg éőv`+4vÓŃ—+Ąă,’k endstream endobj 2918 0 obj << /Length 923 /Filter /FlateDecode >> stream xÚíWŃnÓ0}ßWř1‘g;¶“<Ž­ťL#ěeC($޶5Uš‚âßąNś¶q“®Ä“łÔ>÷ÜsĎuîşEťvĹLčG˝śĽŚÇŹhE$)ŠoP@p(%’!Á2`(ÎĐ•s ™!ČóĐś]d‹{Ő?)ŇĹšVI•Ó¨~˘ K†#J… }Ě…ßş%„8±+…S&©‰V}›™§I2Íî!‡:â– …‰á̉Ib4u¨—5óyȬ‡c?B!ޤô5•8ń15Ě5ĐĐC¸E'¦ćó˘śď·hZą­÷Ë'ÄXÜÔdT©2]Ô°¬łJ*¸T6T–_˛÷ńDĄ:ö]ŁĆWíYş•–‚6Aď6?ĺs#ňŠŻĘž{ĎĂHµŞNT•ä÷x3Á©yZćłŐüÖ;MéŻ2“X şÂcŻ;J5¨±ËCg9­őL‰Ă3ŰĘ :&‡áZĚeމÚôlŔ׎ ľlľŞ¬ď2ąy•ŮÎ3ç:1ăýÝN[Ső8ŽB ±ˇL4ÜQ‹˛×‰ëŽ”khŕHÎ"p$”ÍQVú0‡ŃRµs—Cź•ť•ŐŰÂyH*»ź»\<¬ŰscÇŤ Í"ĂŕţCć2ŹGŢ|¦Ň\ßQé8ü'{´)Á@$h)éÍ{ Ń`64LgŮsĺ&Ť¨%ˇ·6łhçĂýL&QWŽ˙~ůËýÂţ _ÚuüAîÎĹ endstream endobj 2946 0 obj << /Length 983 /Filter /FlateDecode >> stream xÚµWMsŰ8 ˝űWđ(ÄIQ˝m?’™Ě´ł›ęÖvvT›v=©ĄT–›Íż_P¤l}Ő‰íô$JGŕŹddEąž˝ÉfŻ®A4M•ŠI¶$ ŁZ)’¤ś* Ů‚|€…_łKAÄ8Żůúˇ\ě~0â‰Ţ•óÝĆu^ŻËÂĎŢgłź3@[F`ďSkŞą óÍěóWFřď†0§š<4–"dLĄ°1~OłfĚăd”K;´ŹuL€ŃD¦Ş [e-nIĆaڱŕjWĚpçSx§5Qąa$â‚*©;ţ)řë˘vÎż… Ýr&©ĚódţÂŘżěçĽ6 gő…IF)p;‚†WWq:5uQß~7ółŕÎĄţ!ú»©Ü;ŽÜŕ›5˛0bÖŕ6ÄýZoÝ3o`q‹ž–\¸r€nM˝«ŠmúôR8§XÜ4eBzrő!ť ß&·Y@Séý3g[Ú =¬·ĂăKڧú—T’Ęô‰ţĄ1ßbßż:>lc’DbG] ±ŁŻóĐô:`]¶(ŞëË®Gµ,hĐÇČ5!ô™{쌧ř îm^Üý¦úŇ ö#ňt2Çşçëb]¬ü>ŻÇË‘ńśľq-Ńpf-[Ř?ĹÇq=©°Ä6«tú}6{‘íÚŰ‚y§Ě4ÔřO5Tś!7Uh;őTĺŤ4’D'ýnx=âpí\Oe´ÜŐ÷»Öľ˛RŤp: ëů§m_^G@€^PUáŹEżlź-×ţÔł=^•1€!A8Ę„6Z*¨cŚů(‹L=_{ôíóŕÓ3xđTůźŇ+ESgëUĚ8Ť•ľHŻxŠčđĐ™`aÓŽąuSÝŻË´XťuR­:AÝAfLü}ebU÷§6ż˘ÓŽŞd]0)×)ŢÖÔ9J4Vµ·ň)w´ö©(O”húŽ=(á-LHŞ”jŰ&fÓ_lîý™îC;¸iÎűţ…űćĹŤ€˝–ék·*Ä*Ô8^űFjÖ4—ÎżĽnMmŹąÎ®›í~¸d<¶wX«m˙=®lă L1Ü^˙ÍŤ endstream endobj 2961 0 obj << /Length 1590 /Filter /FlateDecode >> stream xÚÝYKsŰ6ľëWđHÎXŢssýšf¦Ó6V{I2–bdNeĘĄč¦îŻď‚I˘ŢifÚ‹EYŔľľÝĹ· î&ßÍ&on4ŠĄdÁěs 0ŇR*¦H’`6>„ŃhJ•g‘ĆáĘ>çE^٧ę1ł‹hJpY™TŮÜýX&©űů#Ćt™}įቦŚr*BB˘Ołw“›ŮäŹ Łp@Z#´Fšň }š|ř„9üö.ŔĹ:řRŻ| ¸`HpĎËŕ~ňó;Ç0˘Â<šŹĆMŠbB„ď§$÷%cđTŠÚSÚzJOií©öĄťŁtÓQă޸]Ö(Ś”Ą1 S†ÇÔÚsűR¤Uľ*Ö}îóÍ-‹=ŕDJ«,@±VŔGJĹ`Ż oąpq~7 >L…`~Ř eV˝”ŕ‹‡j˙f›  ójŠĂFPo«[hb’‚?.sŇǤ4ËŢÜÄŕ ­Ł@xŚć°Ń:1ł«zţrkâ­ÉS^4)ęôX“Šß/śM[ÜXT‹Ł,Y o­7żŤ`Úb¬ÖO±2N # ŔXέ©ßC:ĺÉ2˙ŰXęJ#iŠĄ‰ü„z:ΔiĚ@2 -Č7E¬ ‹ůa`«Ö/R·yń_ŽÓÚŞşZ==—Ůz˝-Bm’ţđdyVÄnŠä·`YfĂ@Ůzs¶@K‰ZVĹňµ‰.lµfäËľ ĎÎ_Ú/?Înâëš8úÍ€`ś„É|~STyőúk¤@Čňe#]Í*Ż7™ŻŰz“RHóŁzäp˛vm‰ îW"A’ÇčČ ×}_źłŁTiÇ`|€*Ú¬éšěÖfjT›fš®–«rł—sžZc$śWL×ĆÄ”×Ó9¶‹ oşEiŇ3±vĘ)…X@®Č5wÖ¶\\PTD Šërî8MâŞÇ&•}îR«kI;Źú)‹ÖđÁ‘Şĺ8rťUP… »¸ÎÖi™?2°NţľKŃń™–Ń4\ÂÉ[Ą/O4ɉµŐ]hŤ|ňcO>"‹„YRÍŤl庢Č•1Öfa2ŹTŘ–,×6®`w\i4ĺ]jgRXľĄZ±a‹#•Dö9/¬_®#FB¸]ÖęŹwčډ:H=íU˛´…lčô%Ś!­őżd éşo‚0óÖčA±Ĺ ŕÚ]]?ŰĄ#~AM@5č~ánÔě°Ü]®ŮĚÔ_­V{Yä:¦îÔú)˘6Čp®ëý;Ť(ăí ăÉ0Š8®&ő.°ÚΊ¨§Ű×Ú!ÚfĆ Ř)¸@m aŽt0üTĹýáD($!¶=˝—µŢ’†´łdćáĺ‘;¶{6 :N°p!!ŕ < !Č@Nř™V$žaLFŽ÷í@ť¦(_}§Ű‚őyXŐcŇLwMí=vÄ2ěÜíŃ>mB "( ýgA ´ËskŹu{@’+ŻÉnGô$µă€úZ/—¦uŐ$€ŹŚmúŁ([¬`tÍ|0gŚćĄCđX6$†¤’łdq śPť[›˘>Č8fő03<ÎĆAňňvßTaďpNť*ôrÎ÷´O¤jźűÝsC/šóžĄyq$U’{4Jéî]˙]PSV?4ď ‡xq_Ü;& 1·Ożń[ÁšHÚÝ@Ö‚óÔ{+Ő˝frJ›Ą¦DîfwöŤ“ůGM\Y˝^™{Íż^›7WĂ˙•Fś endstream endobj 2837 0 obj << /Type /ObjStm /N 100 /First 986 /Length 2540 /Filter /FlateDecode >> stream xÚÍZQo9~ĎŻĐăÝ‹,‰¤$ĹŰöÚ;`W4Ĺán‹"Ű3˝Üvă"qÝż'Vâ¶qěMĆ×-Š–ÖPő‰˘HJ©Ćä‚K5’‹”Ť`—ĘHc´‚ČN$Q\®Őę*YŻ”ść⢺ (AHr´  ,ś@•‘bŻEsÄ`ÉÚJU剋Ą&Ł2Ž#3>±ĂĆŞFáJcŘÎÖĂ´µŻ‚ź…Ä(PĆŻě(DMÄQ4QU˛ŁTŤEŠ#N6†TG"¦‹¨Ł¬Ś1rpT“őČŃ‘f“Ś!9-“c¨`;¦j}Á’بě8ç±­8®al«Ž•Ćľę$ĂŞ')Z`5€âFŁČI¦+vRFyEśh0]glÚ×ŕ2Äô]NXtÉ)W“Ź˛Ő©Z]†ę.i·D“ ř*ŮÚly3_Ń×T•\ XPäJ2x)<ö€ %۲+¦ ¨âj(c_X ,Á(uXA¶1‚ŕbTtŐ`# †‰-ş&[y…¦Q+q*8) Ň#Âňj1[P,›VB ľÔqL•j2-šm˛ŮdŔ¸0&bsÁňŔ8  ¤'1r2g˘‘łYÇV3rJÖ @k5ł ¬6ö8@Nbm™Ç6=c!Ĺz2¬lG!ÂŞ€­KmG[kŰMAٵ‘uQ0Á,°™‚ˇk{(Ž[B±1ĆA¶ÝF¶ÉT¬U8ťűÇěŮŰ8ţ8™˝îk÷V"yĆ‹Ç*HĎP{Äs×÷îÉ7;uł—«7+7{îţr…~ç« ź}äżşďľ;ÁßÇëQŮS Ž;ča “לďVd}ůi±>]wëŢĆžN—LH|Ô-P LÉű@‘éAIäÍšcő ĆL} r&˙ę.Ď»ů‡c@r­Ę "÷©r Iž’ ^Şť00[x#Šęë!ÉRbô8QnqąGť[Xʶ"ĎÝ[µ6Ök7ű÷~r"pşÔ˝uź>|x·“ą„‘ą”čÖç f©âˇëgĽ/VëQĺpS8ŻňuŻćą#-űÖŮ«ËŐâ´nöęů 7{Ó˙şvď>őU÷ľ?™=Äţb}e§:YĂîjőérŃ_]G cŰŹýňĽ{şúŐŤp‹Š·(ź}UŕřŞ»„ś{uśÇgSăth[sc›Ű#gń_ͦ”ÍćÚţ®0ţ"™Zc„´!J#j#tCHhDlDj5‚Ń$K“,M˛4ÉŇ$ç&97ÉąIÎMrn’s“ś›äÜ$ç&97ÉĄI.Mri’K“\šäŇ$—kÉď&ő"ًų1y;ĹĹĽ›ňťűöĺ›—gőżÓ» É Pj®CŕJ7ßë;ŕó&÷¨\Őc!˘Ŕ äcUO•vBqö·źŢ\v‹ţ(°ź16LL™XĘLŇô”ę36I$Ý ×â9Ő] <í®ÎÇ$g_ %DŘ ¦YĐΙĽÄť€<[}X]Nľč 0[$U{™>^ĺË$x!XŠ"QźĂ=€üňń˛żş:&„sťĘ-&Đ…CÜÉôá*#N­›ĄŚăF’ °I»0ůáüj}<6zÜŕ=ó<¦ŹU9`łÚ)Ăě-Kä(řżěÂăÇţ—ŐĺoGA„”m!°}i"eúč˝’–_c÷YÍ%úRw"ňĎ7/Ž˘ĺÄ[Q{ÁćM˛Ž:=‚ÄÎjsąÂ»ZY Ł”űŕHgg§cZsOBŻf±H QŢŚN gdĽŢVXi¬JhŠ÷ŮÉŮńáäľ–śNŹJ žÔĚĹĘ ˝‚’ďEĺÖ’,T¤[\¬wG˝…Ëô,˛ź­ŚF†Ź•­Dµ—WÝ˙Ž˝¦bµ3˝$ÁŰiÝ ČôákĘp«Čßlű0YÉ?ůDr/ GÜ? ńČíJ\aş—éŁŘdĹE&Ń‚5«]Sö´ÓÝľî?~čŽs'‹x ‘Ä>í·™>ŚMěÖ'ZĹÓnłč.HN×Ýâçă ˛Qä(’„ö!2}‘‚†ńşĚŹ—I!x ;+6äqśk´ĐhË»š"I÷šHţŞ´Xę(-n3ď--ŢÁüĐŇâěĹx3)íŰx9Văă uzGˇNËŁËŽZżEŮŃnŤľśŤ]Uý‘Ů(}Uv´ŰŔ±Đf—‚ÁŤFäF”FÔFlĘ|v ¸!šäŘ$Ç&96ÉQ¦¬îáPA·>&¤Ůö âü=ďLŢ_®>}<;[[MËF?{ß͇ĹcÇˢ]‡ä±$†P°čk¦)¤eĄÝŔŰ= Âo5ý­Ú"‡ÔŕÎöjŰqf°p¨]W†¤Ë^űRS]óň/ž0Ë‹)áÉ·óAâaÓΧ[ÔĚ%•ˇ+TÓrQâČCĚątĄÎ'<˘ÝŤşťҡęÄ󩔇e•XŇ"č\»~>ÔŮzÝőeÂ0(ÂK‡oçSŐ+ç©ím/;|W{pBZşžë’R솜§\ź¶}j˛úÎÍöaµáľbíźsç´©lvÎdSů›¦Mełi&›Ę7Ř/m*›ý2ťýß¶J´°˛Şă°ŇŢ™äę`j0Ľ´ŁÇŃŘQšEXóuŃ“p·JË>÷y>¦Ä>Z‰ňFaPľŘýÔ= ĺ«jč¤gěۡôi¨ďbŞ’ ´;ÂIN“=ía»XGjĎYâźM[ ZnŐŐŠ,GďU÷k¸§,óRŇ€ ç_9”®.R\Îűe7µLcĹt|tČΞ-pNGvĂĐ'N!Ö~Ăśv”EâNĄ yŢMXČŚA Á (AQşNßĆ×—RUXJé†: ëĐ÷°ŞĚAń§ö´¬µŻ_f{öĚďŕlď3ć}ŮŢ]Ěwe{“đ2Ě«}3 ţ?Ś•°(Âń0ćTĘří0f‰vQ=%s­ž'™TŃ™ĄxŚ2›)99UꉔŮŰŰX{¶yW˘żť«=Lůq™2çŻ3ećeĘۨlč¶µ¶™÷n­»… 9sőLő@f"oËs3«Őđe.uŚ©b¶{Ă#61R‰ŮcµăKęÍË«/ŚřÁ–™ă×–)účN{¦íY¶gaÚž…i{¦íY¶gaÚž…i{¦›gaď&ŤŤJ¸ľŹ‚č9VW˘MQî= ŻOÁ8Äy®ĂśĘ˛Ĺ!PÇv„«RJťđbÖžs$Ó­é ÷ÇČĐőüâ| ]ł†°Xö–:j%ę–éVF`—gĄp“ťüţ4+% endstream endobj 2975 0 obj << /Length 925 /Filter /FlateDecode >> stream xÚµW]sŇ@}çWěc2SÖýŢÄ·Š”±cm-é“:L¶• ÁZ˝wł›q}Ú%Ü=÷ăäž»!č4ę˝Jz/.´@Ž•â(y@šŕH)¤c†EÉ}( ?%—Kĺp®~zULWsö™Ž‚×E¶ZĽJ«Y‘[ăŢ0é}ëQ°%¶Q„#&P¶č}řDĐţ»Dó8BOµĺ ɱÖÇŤ{ď{ÄÇąŤe׿aEqŃb­aPL”D ”ŢĆÇRz„şZ”¬—‹‚Ź"¤ĂLjWšŹ„°ąÉÓ…Ů®• éśÇ뾥ƊÉMß·EQ9Rj˙ő®xpkőŮ?pú‡…[łŇ¤ŐŽ€%ʇ‡»Í MOcL(Ě©:‘2¦qĚSÄ8&Ü•­ ) ŇüËÂŽó˝›±u×7e‘™ĺŇ“făX-îMůď¨;8đmî‚R}wśCř©ÜA.ŕEs :·íĆÓÇĺęŽs˝›şuĎ×y§ĂFÉhrńö|4ywýnxÖyv7N®nŢśm™&Żî.B*I€˙ČáÁlsz?ÄcpŕňŚFÁ H”ÝÚĄ™;|ÇÜ!3ĘĽ–™jUćŽŘÇŻzĂ06ú4ÂDHw:ą= 'ă»Á`8{šr·.WYÝrv¬8ĺ Wź:÷&¦, ßY1mh†6,źfK×k›)uňéű99l‰A¨±°‡;S—Ă‹*ŰŃZ•if&eťý¤ňćëŕ řś·ćKS ŠĹ×҉ł!IŘRłÜ§”¬ź‡v†ˇĺĎhß|‡*0ĺ´±XşÁE‡>Ő`O$ä.°’>éažŢ[­h9©ÍLS\ů¬áĆ_äóg÷+µG!@¤łů&ĐCČIĐptť\tŕ—6\üw˘,˙ŞNŤC&‚´„ŮYSlľ~»î52‚;?IĄŠ1ŐňDqäńhťÎZrĄ'w·8éz§8nx&Ž…Ióf¸[śźm4ÖOPÁŔt&^±Şľ®ŞőéçážfóąŰÝw^&3ý“ží6Ý €´:IH-†Ôú? ©ä1pA>EHĹQBŞŇ}ÍĄA?ůdh>ifZ‰:%%±„Ź!±R>ş‘ÉM —¦éf>WÍćŇ*ÍĘ˙`~!T¸%/eüRňFŘo!Şg™ű‘„ ĘVëĽÓĆÔ*ÜjYuݱzn>©¬Ľýx~ ű g&ďęď6 endstream endobj 2995 0 obj << /Length 1800 /Filter /FlateDecode >> stream xÚÍZYoŰF~ׯ ňDŐfgďÍ›ëÄHcĺ) Fbl:RŠŽŰßYrIń”EÉvű$ÉZαßߌEŰ€דßç“×WZ†XĄx0˙hJŚR¶Ś(ćËŕs( źÎ6áŐýf‘%ŰÍ®řĆ«(‹—Ňlë_ďââÍb»É˘d§S!>Á„ OżÎßOŢÍ'MM T*Ť!†‰`±ž|ţJ%~÷> „[<ä'לHÁńý*¸™ü9ˇŢ JtoÝKé€ ë^) ´áPJ~±ş_ĚűĹJżXĂ/@żś7ýf6P˘ĄUÎĚ8%‚˛Bý^iC„}}Ĺm PD ÄjYřÂl=ën3˝ő×úńz|žI©Â mĄa´żĄqvź˘2Ü|ËŘá-§./Ńëů ˙ů7ôÇľPIńjv™G˙.Jݱ×W ‹~0Uřa ,\ ”§Ţ b ”g˘Uí\ ýVĹŐ#J”&€ňFčX4ĽŁË"©Łk­cĽ,€¨ËFެvObÖ âÜ3@!B".–>é"/dşË*T{křK'Z滨c–Ł h‹„—‹>‹Ź-—Ă^ŕ÷.ě/!ü5E]Qú!Ť}gÉşBŰň müfmô™đŁB‹ő†ďQJ0|……1!•Ő˘ö8Š Ř±R€ iS>aŞ$Q †/PC5ßr66eFeĄlTŔ3l5"/Ť"F>mVŽIBö˘-`ă}Cn§+ĆÁŞrz>:îŚÄ™q¤ X˙_±äŇńřHbVĹU3–ŢâŤűë~±‚Ť© O+Öëx“ťA(ŮiĽĐQĄ,×y´>ŠÇ›ńÓcG–^ă‚­řę$çčşöe^$¬$ ĽŢS&°2cqĚú&›ľyM ÓęŕĽf㢚×j2Ü &ńNDL’§ NQȇ»"A«áš|¬R ĽRÓzqÂśŞş9–I¬ÝL657đ*Çâď#äł©Ł$Cˇ'ÔE°Ă"€âe‹¸#ăđ ŢŮ.F‰ŇŞ¸ŻŹy¶5cż®]aqždÎ?^\ľűvóéňňÝÍMqÇ[ź#»űĹ"Ţĺ‚ópŻQÓ $NÓmZ2ĄÇh‹ł~úěâÇłhć- oĚÔk{šZgŞÖůZW6zW?*şŐR$‘ßËŞŞ!ë˘5ÖŐ.n®Ż@ĹÇs†Ť R×"†(Y› ňËŋ͋©c ¬VŤ‘©W˝ŰI±çVźOS˙í ě§-Őo†ă˝ šfĹ®Î[sŘ i ‰Őýrţ> stream xÚĹXßoŁF~çŻŘGęíţŢĺŢR_j)ŇUׄ{Ęť" $AJě+Ć—ćżďě˛řcçŔWőĹ€YfľŮofľ‚A«ŕ·$řőw-Á±R%÷Hl”B:fXQ”äč6¤"ú’\!.”Ăsîß›|÷TD ¦Mř~“íž‹uťÖĺfm—Iđw@a-AtoÓl@Ůspű… î]!‚ylĐ‹[ůŚ„äX ëă ÝÄă$I{j-j>‚Zj)€#&´Jź‹ş¨"JĂ­CÖšE!Rs ÁŚ‹=ŔŽ Š‰’H †  VEÖ¬Ą”tá ‚Ľ‡WÚô¦$üeŁ-n—B†oëGéđ1­ĽybxŔZ(J´Ź|&„ŹaĐ 9Ş]ÔTŘ1 fţ#rż ľZÎiŚQß-IÚKßAÚ.¸T &`Ţńí˙˝%tqŻĆކ­ÄęÁ—äő*@·îö˛'­+0„ßÎS›ţ nj͵¤čFž%R2,9=W äžc ťî$ëQqéwTzn“˛•€ÔëôËc™=žşJ?śĺţˇ.ŹbÓá˛'m/ˇç±'¦Z˙i‡—h6üG¤}¦ßqöşn˙8.ŕoŽ[ÓArí(Öç˝˝H¦AxřO¨(»9VźhżďˇdžŰqJ:^ߚߦe2°CZĹ%Π¬ 6í˝gâ%b4ű&(9}‚:%+–Ż)_Ú/ 3 ZnCR†IŠě;°ňóÝŞ€$Ikč©˝x>´'W¶ăîüóBEsFÉ;ż“Ľąş·kŰťá2k.’ČĐNqť{iÝ.µ#Ů*YąáŔýń—5ôÚ~±Ť˙ź×7ßëáFý ĎĽ endstream endobj 3037 0 obj << /Length 1592 /Filter /FlateDecode >> stream xÚíZ[oâF~çWřŃHËdî—}Kł›H‘*m}JV+×xT©1Móď{Ć›±± †$Ť¶űd0ăs™ď\ľ3·.żL'çŠ)Y0ů(Ś´”2IL¦Áu(ލŇáůzgłĺbU|M“y”%ÓâK¶t×»¤ř°ĘŕÇŐđëä2ŕś!ˇhĚĺaď>O ÜÄ©ÔjŤ4ĺA|?¸ţŠ)üv`ÄŚó•÷ Ś[aó`<řm€ť+Qa?ÚKé E†á{& Â5×Ƹćő}ŁÎ7ZúF}ß:Ôş1RÂH«#†Ç´P»QVá®'çĚx‰”V(FF‰BŔ Ą˘ń¬ÝĹôÖmçŐĹ ¸ !Ă,Fqň-M˛u ö‹pń-{ţa‹a4’p:¶ŢN†„âđé!©=éÖÝ`cp'+ Źď˘Ô.;9'<0ŕÍ7’“2 n0fĹŞš»]­‰ćłh5$"üŕ$?«D*D@^ 3Űx×G—ćH`ŐG×"şO`łHîŰTÄŇ(űäxôöĘy!âtę2.rB:°ËQk«ć+Ş­hnCŽú!ôyÓĐ[yaÖ鄍¸N˙Ăż‡ *Jż¤IÜöp6»ď4Ĺ )&ú ťő &)¤oŕöŻt/ŠMś÷WŞ x“z¸Ž“lÓ Řĺ÷˝ţ ¶#š-’´!ăýĆř„řzu÷^‚śD ű仜 Óňh%5—•4hPĽNÓd‘ú‹2ôKN[Mş»‹iµ‹Űä ó ÷ŘTŁo›jK0ůáÝ´ tď1ŃöO*1¢žWÉ•Yđpţץż6™Ě27·<¤…ˇłĺÚÝqU`íS˘ť|~Ä Â.iˇŞY7M|JŔžy9?|JVq:{°ŚÇĚ`‡*sŘ*y´1ť8yËx}E%zFbnőn+ź|íÉG¤‹Ú Č‚)«Š˝´Ę9—n ą’"ĆŞĺ03¨jfŕ:'šąŐyŽŤ8drľp3†ĹílŔ>Ů’$„`\EŠÚ´đˇĹB(<\+/ŇźWÉ÷Q/ë„,¸5ŕ¶™Â4bRľ¶)vÎhŰŘ“ÔČöf˝fŠ"Ť‰ óŠóÇ3a #°ˇ.-ľ )‡b fď„„ő!şíT[? Bwž*hDŻN<ö¸@ žTz— XM ± '"?‚(Ęf5ĘC~kIH=)üwëD„ČB®U\?B I*ęzOs˝5šQ?Ľq÷ŠÎO¦PѶ `ć6L ‚+sLňk÷Ň0aµ| !mÇÝpf@;\ľţŤîZgŚ«ÖW» H®¶âZqëmď6n ‚€ąGá´Ú(rlzAžs0*¦(ŰrY ;ŕ:Lo;\ľÚÓy–8Ž mÚ rš`µ§]f˝ŤŢĆ D(EÄl#©^eu÷aíÖ)4˘LiÉ.-ŮëÄÔ¶{;f_ĺ®ŘM®NĎ>˙~vöy<®˝Ő:Ž“UqRm{M±onI’¦Ë´Ě·i‰Ŕ–>ÎVÉó-lä,âźTůô‹ľ4ýzXş)gĂą¶5p ďŚ{30öĆ›&±Ž«$­Ě±ĂNąˇL1ŻMn˛]üęmL°U·E91Hbł?ż˛|Ś›:żúѧ¨—$vT3@[Őy(\‰fÇv袠…*HĺeJgă9PmkăńµNf÷IwW)Š:É@ٶ!«Ńü8H`Á‹ b÷Ę#'ҫݤ¶_kskŕÓI_ٶ ň¸á‡r Ě\ľ"şŹ˝ĺŇDzëÝ.n;@ň ŮYüď–«ţÉÔŰřmč@…Ě>†ĄQ.VúYµo¨©ř‘i{qšV˝÷ŮÉÓ8 Vě'O;Чuh—ě^X»¨6o#Š,#űEm´N˙w/ťöxăÔF…}+ÝçE埢líÄ˝qT )]SżHŔÍßźĘ=űµüpi·líľPwÁÄý“ŠŕŹÂ|¬řöÝ®-+W.xÝY©Ćˇ­,ŢoQV.µUăbr‘‡O~ă+č©řüiiéů?O·y &‹ć>ý ň§Çš endstream endobj 2969 0 obj << /Type /ObjStm /N 100 /First 982 /Length 2311 /Filter /FlateDecode >> stream xÚíZŰnÉ }źŻ¨Ç䥦HÖ… ěÚ± ڵ’5 ˇŻŽCZH2°ůűÖ¨G–#Ym{4v,§›Ă:uŠ,’ŐÍ5‘ ŽkbG%™ Nb˘K”MH.k˛ÓTL(Ž«IęČ0 …LG‘ňć(ćv%:J!»Rń‰©Ú :9§°µ]É"ÁUÂg‰v÷”Ôá¤Y6vj°ńM!$ż!Ś›„! S­řlS)©šV…~ fµ`"9·»0¤b> ˇb N¨ŮUr"Ü$3•MGÓ„ťhłđRŕ*R4ž0«(TMRc2ÄZ]ĚlcPÔ`ö0×Xc“ŘĄ MĘ.q·HFT—„Ú%…”ěîEĚ• ´ÉbÚ)Ö°!J.A˦ ©iá^ćh— źł­Ś˛ąT“€71¶b˘ËŘ$u™R“R-ââ`¬]‚‹0f+<ćHmĐęrÉfs» ”Ĺ ŠŮ,m0Ś]"5)ş’j»›\)™6ŕ5Z›•â4쬨SMŞđ%[«¦Ô\ ü+«ŮcvŞm¶¤šŻAŠđ,1{ś\›ł«ŃV7`Fs3 ţ0&U‡E› ö?Dx'Ůx¶2mRż16ŕň!iű™Ú:±`$©&íÍ€’ÝŹfV-’ÄV´‚_jеńMÓ‡"ţČĚá"›hq„ŃŔ(·‹vÁłyôhł}ůď_'·ýńôôěrł}ńľżlß˙úöô_›íOgçătţ* ňĂëíź·Ů>~EíËfűó4\şWBâKÁ…čłM>%OëCÉsIĐűŃ=zä¶/ÜöŮŮË3·}âţđěĺł““?ýňňĽ¦ýçIWş4ĆPĆ‘eś‡iÔ>Á Mó¬ˇţŁűᇠţ}=ܶżů _„źú/ÉZĽč­`ßśź˝˙őäĆ9yÓŃL}Öą—2ÍAş¨Ól´wˇ¨)%ńlШ•|]őíéŰK@í§X’d­ă<*öŠA$÷˘Uű0αĐáIŤŐc·ŘsšŞŹżORwP9¨·ŕ_őŠÔĘTű0§±ôpŐLaěć†Ôşéđ¤2ů€-lĎŞOZż;V ˛Ŕ‚éŐG¤ţXŻhíŠp¤ÚĄ8!•ωT'ęiÖn<+r«GßcM¶oagţVěWŹĎŢťťďöŞ‘H§qć1OŚä×a_—P*§:#˛ň‡Pź¸W¨J ÍĎnű÷ü‚ěć™Nb5Äéűwď^ß©\BS.H‘Ť@9bîHá«”QxZ« gµzhť2«ŹÂĂ+ î•, ‹´N—CőpŃuĘ„@FŇľ©üôěô˛ąŮS«KQ#í~öÔęOBłű†ÜŽPZîˇčAB]îQ«%ÁÄî+2/«ŇrłŐ~( ě+†Ü>??^Lp·}ţä©Űľś~»tŻoFÔóîÍ´Ů>˛éôňŠÜdż·Ŕą8{>L»ą]űŰ4ľí~:ű͵XC‰ŽdżŽä[ =ďÎaúŇąÁfĽ>>Tľ"4ç #ŻTŽŠě™×±˙§7éżą4‡a¸ŢÂpý2†wâĆo‹Áj Ë•PŻ ‹@‹Ŕ‹ ‹!-B^„Ų.–u±\Ëu±\w–_4Zť©TźŞ3żu•±`E â­]őW¸Ń °cRfäÁĐMă€ä2µ‹te@J,é€Ĺ Z°|ÖeWĎčís­>ľěĹĺůűáŇą{{:ť˙ż–ç‚~pj9Áú®űˇ.K<ÍĄ+uJ}ś$ˇĂ¸tÔˇlGP–ÖĘ lÜö›Yy©—ąëfťçî€îČŮgdŇ=V¬­ŘŻćőţP‰Č•™Ů‹#e46©5 •ó·ńFŰhě\sńFÂ>-ßi›}…• ąĹÜń~¬‹;Ć,3ŁŻ&‘ľçX¨ëFɵ×>Z‡ţ€Ľ&_ě,Ń0Z” ĽÓŽ/I±ăyŤ)ap;/GhŘa-đ>đ«GŁzdŰń˘âc­{ZŞ R˙l$­<ŻźSř×ř˝íW+ßŮߢś”ÚIç:ĺ;;áŰ”ďlnżVYĐĽç•($Ł:(ëtQń Â]ÉqĘüŔťđ!:3±“ˇŹ:łöěâë:łö”ä€-¦ęŁ9dńTQ+ˇfě˛ »F.ň1Ú謍ћĘű~9<đJe+ö>vËuńÉVý† Üt—/vąĹ!äłBBŚ˙í»öą=úşhxdâ"¤EČ‹PAa±Ě‹e^,ób™ËĽXćĹ2/–y±Ě‹e^,ËbY˲X–ŲÄ߮޷§ŕ+°^\v—Óî`˝ôÝ»®*]ť;hÎqžđŃ=ŕ)ĐüíţS€ö÷töĘz{Ě~?Ôýú–1L“c 9„©ź§DE†,šć> stream xÚŐX]oŁF}÷ŻGęé|ϰoŰ4µiĄmLű’]E,&‰Ą·7Íżďťap°!Ô€WUźŔřÎ=gćĚť{€ GDĐböS<űń-Á‘RĹHl”B:bXQŻĐ]@Uř5ľA\ ,(‡qîé§íj˙ś…s¦Mđó6Ýo˛ĽLĘő6·ÁłëxöçŚB,AôÓl@éfv÷• üwć‘A/.r„äX ‹ńŚ–ł_gÄó$I{k/5kŢÁZk)+‚źC&‚¤H6Y™!ĄÁÎ1«Sv2„)RÓOĐ`ĆĹ`#ĹDI¤ĂXöä€hŠ# YĄpłˇ¤)es@ŃB‚ ¬šOąŢdíµĄ’b!ĚX\5aĄĆŠÉcŘŘÂ:•Ë'łˇýmú”äŹŮ®ÍK¢¬Úš »FM…EXivQěępŰĐxQ^˙čen·(MŘ8¤ŚŰ©°}čTč=Qłj‹)Tŕ$Q¨ĆĽżÚÂŽŻüt›—=˘ Ć­ĆŹ>Ńí˘O¦&‘+ ’¬s8~š'şs˝MłťK Éć~áܨŹ>$+ŠmQ«łŞő‚ó°xY望đxJ'ó™{FĐŻ ó‡¬ÄĂS;řÄ$qŘŠňŕ„Ę"IłűÂÍţľôáÍäŕJ8?„ď˛ré÷3Á"IÔ¨9 ˘€­Y|.˛´ŠĄ”4íVa:®aSüĐA…Q Őˇ°‘weĹ# uđ”>˝@ ®kłG*QůBď⠡ϫ×™ţS ¶FßAWoŇ]] öÜOÁarú–LŇŁz9©“97Ěi;gxűŤąĚĘ·~_Ť>mPľÇ,>ŕ¤ůÔGYŇ?ţ˝ŕ/)[©öt0Łí¸”¶AČIťJZűh.cÇ%řbçév|lg“:BťäĆ“j+”ˇÓď(™ľŚď“ŕŠ)Ľ”žaĆGâvkŇ„ťdƇłj‹)8›öÚ*­)ě7ôD¬Ő9^|8ě/Ţäqy+>ś{[9Şp¤Ĺ4ĺŔä™~;ľ—`QgZń‘ĐÝZ5‘ß±âyfŰęËx_>śp[2HˇŘ$[nS0ĆľŁ-`ˉŠţ¶ĽĎhpăCľÖß3f,›ť’’X*Šě'-ĺ·×"=»gu<źOőÍŤÝf{˙ů ˇ˘şŁäŚ>H^ýz°±ő]âuZýCCűjĐř/)ëPëűńÂ@÷ŕ›MôZO 9 ţ~}t&:ËOę–ŚÖx endstream endobj 3063 0 obj << /Length 1474 /Filter /FlateDecode >> stream xÚĹY[oâF~çWĚ#He2÷ËľĄąI‘*m7´/É*rŤ“ HŤŮ4˙ľgČáâ1;ü±Ă2šŽčpzőcÇ“edřń–Tľk$1¸”ů4_˘Ô-;»¦Yp†ĺ šAt‘„pżŞâ˛ŔÖ°bM4źE+—TżÉ•(Ť)Č;¬k@fÉ».şŚŔň(6şŃkÁ˘-ŘSâĘ’(«Ý—cîŕ‡Wc B„đ"Χˇú˘…żn ňŹWpEŃŽe.«ĺ ˛KŇź™]mIŢ×… ó/ŁôkšÄMgł×nX2b°€‚íśY×|Q+Ů55»H×FvqŔÇpŢ!!9ĂŇđc2dßŢî8ćŤÔ›îŚičĎ—IÍćEGľLVq:{sýsOv-—)ő¶Űc¶ÓďĽeĽ~KŁs«·QtňČ·%ůúpW&+§ćÖ&aŇMµ„BŮ‘«ć|łjD»ńĄÍ¶±ŁDPŰePI©0CJĘ ¬Ő6…]™@` ‡ëÖ0 ÖŘR.®‚1ŘŐś&U˘žU4&LUŞčçšŕˬQ»Ú˘÷YÚ=`óýPe”oeíTén7çFźĄ!5ÍÉĹYIs •ČCY~1™#,KRDŽަ‰×ÉśůýĽÎ`Ćņוd8Â&‘¤°`Ř#VSa2ČI o]›P2™$LŤ(%Ť‘R 5+Ě©j«ôMj¬ ˛e­“Ľävh3'Ăę‰ŢŢ’Ŕ+ćIpÄž`\A¤č ‘`L`\ŨROhGć­Í¸”•n‰SŽŔňi/JmŔt´­ Đ˝@Öm”Ô‹°ŽOłmźl‡Ą»Ţ:±k‡ŞbČÍIÚHý^˘PDoérşŽ7»ŐN@v÷¦ĄÁEO0 …¦Îz‚ Cźp06,ZŰ ůŰçiŞ›Ń+kţs¤ÝŔ[·Ú"qń˝ XťM­e¶–źÖV†´ťZęţSŚÚŤČ± ´ö[N$Ź:G€ťžp´Z~AŰ'ßÎ/®ďţ¸¸¸ş» HްZÇq˛ňg8ŽřŔy>–$işL‹ťÉ´@ Lßg«ä0µ‹Æ™2ŤfźHŁ'#aB‡/čôXŔVö(j ¨q·ż‡ÚĺÇŤĚĽ7ú“Ą¬žl¨0ÔZ(6‡FŻÔg“\wđŃŽ™ÇS\ »D!ŹĄ¸í"‡XŻÂ–±“Y/‡¦$ĄíŐřÝŮŹ ˛ďWŘ@ăçŔł´|¦ÖÚöOTÜŘö+zĎs˝•FłŹ7s@ßď»ŰXÇD°ý"cD`®JÚ#ÇAřD fÜ4ťI¶cušÍX•ő·páxĂ»v'÷Ş ČÖíKw»ëřŽŤd˝đc6řV÷­1a@™…éUlňŠv× Ű‰za«¨=źgI8Ť˛™‡!pŞčő¸}ÍÁÚën| ;'BXÓ‹k9ô™Sŕ‚Đ˝–üżÖľ «Ë˙jĹßĐ5 ů2÷ÄJ…˝ňMM`űG`áÎoĹÍ­cđëđŔÂ…Páď(ů"íÉýÓ“[[¸ žĹĹä6dčČ^é·(+–:úv3ąÉICţâ/'čĂß_.]V˙óńśóžd±§ž†šÎ endstream endobj 3086 0 obj << /Length 2079 /Filter /FlateDecode >> stream xÚŐZŰrŰ6}×W𑚉Ü/ysíÄ3i3“Ćn_’L†ĄDYJ)ş­˙ľ đ~“Ńî4/¦$»8ŘĹž%qđ%ŔÁőâ§ŰĹóWŠ)Ypű9Pi)e(’$¸]ďC˘—o_LpÄ űÜŻoöëűm˛\QĄĂ«}|—ě˛(Űěwvđâĺíâϱ8 •M­‘¦<ďď?â` ˙{`ÄŚţv#ď.ÜúŘ7‹_¸Ŕ‰öŁ˝”¨Y@(2„&lI.q $—+‚1_Ýďb íp©ÓdeÉ:˙’íóëvłűvp؇ťć1RÂHë+†繯ÚCËBq}ţЙÉ”VÁŠ2„ Ë | TtîµK—~)ÖđÝő"xżB†Yş$8ŚâäSšd÷) áîSvúfĆy­×żŔDo—„âđá{Һˍá,p SÉ–î–řk”ÚaĎ_•ů$4L—ŰáĆ,Őš*GF“rL´ÝD‡%á3°,IX9cN¤AxŠ ZŽŮEw‰—(źI€É¬^>WZÂvńZ°CWv$2 –Ű®ňr`v6‹ٹŹăł3^+ąNYËl<2?Ű$…%x°Ř•BĚAÓúĹzťŚ !`˙m÷wŰŰß[ÓF­ÝĄŁQXíÍĂčŔT™đÁęŻ8łÁyhěÂwtÂż–ŕ-Jߦ0Í0ş?ŰT!dżVĚ›1ć)@ňő >kě®I>$$s#}ăÔÇĽfľ‘é…L|2™ŤŽgîŕ¶ "pJ¶"őtDr†´`>>óͱťó0+¬Ľ<|[BŚ%öĎĂôh7)˘ÚŃ~SĹÁąA˙?ŤqcÂd· nř×ÔŕŽ‡nnD6dĎŠ_s$˛âŚűÜěi>¤DTQEdO6Ďýř:´'z 0ă{đ=Bhsź?PhżÜ­çĆôŃĘ}Ĺ\Uąbŕ“«J+ R¨…«$‹6ŰR\%‡8Ý|Ż”Í°:°rę)©MmŹvÔGaݧ•ŽčŤz©­}îÎŔÚ>"9'-ÇâőÖČŇ*é§cW‚ÎÇŃz©ÂB!píŠ!Č\:O;+AdµsŕÇĆoĂáAGnJMH°ĽĄ ž ‘Dd#ôO{z¦SĽ‹–l¶ÂA°5ž@®*d^ޱű¶V\Óˇ°SPVLۨ“†© ćřr 4aĄ0ëBŁ' ÉOݦ˛ŻdĄ^»@(˛!˛:‰¨{ĘŤ‘„ çÁĄžNIśmĘŤ}‹·K B=…-™%PF°ÝTj­p6ć'Z+Qw–ç­•† Ű3p¦¤!±bä&\&OčUk‚E3'W˛©ű{m!"Äg:n·T„BÖ¶ĺ÷Âůu”¸ě ×ěkѲ˛ížâ§˛ Ň'(?Zź0!ÍcIĆIjô¤?ÓďŕIßr{»)eπܼ|;Đýő ˛Ys5Ź[Ęö„Ř•ÁŇuÔëś=NČy~‡ iş=UzmËđâÄTź0ÁÍĽ~BŤ1ó8śŰŇĄ˛>ÄĆ9ń÷ŰORă,µ€\¶ęÝN®(†7»/Ł‘e‹ś¨%ZËZ­$Ľ©‰˘2µŽ×ÝUÎŘţëŇŰÖ™ą+”‘<·—Äb¦¤ ж^VŮçąŢMŻ7>˘ŐEź0ˇôĽć±o30úH‘)ˇ#ş®°ŽpžßašnŻĽ…¨?”>`‚łyí"ä|=7@ł3ő–˘őĽőçą&Łéů÷Ą˛őíý9G—?¨>-ÂľQ7Ż«C8†$/ćŇB„ąΑ ¤÷ú5繦¦éýç%ŻĽç¤ěóë]”Ĺ_»í¸Î.GyóFÜç L(:ŻŻcm0ú”}“ŔâéëQA°;Ž7»»oB—ojŰô¦{,-qĎ!“ʢ şN çď67ćó¦üđÚî˝űâ -.đüÁ/„y!Xţíł[ÎŃŢÄËâů¦Ćˇí-5ţUĄ“-Ş®oŻ])ä~řٱáŻöK†Ăľ¸>L˛ë.ÔżWaźE endstream endobj 3095 0 obj << /Length 564 /Filter /FlateDecode >> stream xÚĹTMŹÚ0˝çWřHĹ;ţŽ÷Xµ ˇVj»ą±«U6d)Zm0mů÷Ç di*ŕ´§ńŘă÷ŢLâdA€L˘÷Yt36’¤Ôj-HöL ĐTkb,§š‘lNf±˘:q“Ćă]U¸ĺ¦Ú†´.Wą+ç!q›WËęe›Z®KdřÝ€ Ψ@˘¶´Ŕ/傎"1ńw”ŕ%±x…ëV ł¬»r †4 X·˙ńĆ Öý‡\§ć”\Ŕ9r~ ů¶öź«âgXÇŐőÍ_Â/lW4/·ÝŹ$*¸ #ƨUęDEzF…V¨ŕ'?íjp š2óďÎ —8<„—2a*ŢósfŹ`Š5ÎÓYĆÍgŮSXĎ qIµ˛áÖ]ó%Ä.ŘZŢBxת­}}›DdÖ7/ľO‚ôŐĆď)¶wŤëuvŤ‚ Žëčo= C#}RVe}4ćMâçn1ő_n×&Ľ ŔdX1¸UöV‰=űÚM’xY„$KR˝AöÎrוzß›d“föÍƓڇő‡M‚oňĎ~ѸHYťÎé/SňŚž endstream endobj 3100 0 obj << /Length 866 /Filter /FlateDecode >> stream xÚ­—Ër›0†÷~ -aaUw‰ěR'őL:™icÚMšéPL&1´€›ćí{@â€éŮŮç˙uľŁAw ő⽿x÷A d°§Gţ-ŇĄöVů[tí0âŢřKĺđ^őëeşÝ?Fî’i㜥á~%EPÄiRv^śű‹_ } ˘/1ŤÁ† î×7máż D0÷ zŞzîKQj<˘Íâó‚Ô> f˛l–ŹĆ5ďq­Ŕµ”Öŕ'— 'Č‚]TD™K©“WΚ˝aÔ 4qńb°‚b˘$Ň‚a.b@oŠ=°iCTَ¤ 29¨h!łă)â]ÔÍ-• a¦ęrŻ-+5VLĘúĄlEą¸ŻŹqň`[ydîR§Č»Ö$ŚÂ›`¬‹EP(5Ź ó°Ňě ¸” â*ŃÔ\žq™¦ŰĎĄ-ë»”§Ô®H¤·}Ž1mŞËBłPŤůđ|Á„ě‘zî‡iR 0­kßĎîę@Wë!Jm#+0Ä ,@íµ]WBűgśÜť`ß$AbŰAFy‘f‡Ŕótź…QÓck[č'v9nKE¤GËbt^şe!(őć•T1ł,`®p0˘‰ÁRÖ;Yž…U1M¶żÚŞ›ˇđ úŚvŃe!´’ł¨j˙§o35•§0ő´ÍFYšÇ!LÔí…p {vtF#1ŢJ‡DBP6Ź„)O=zîlp0d86BŘ”üv™t‚ÇÓ¤űa´•żşš€ň~ĘŢ5ŢT „ rŢ9O) «<ź‹…Â> ‰† Âłąypa[ŹĘŹç2ÓÔűÉ´Ä?şâEÜ"Iísáý+JQłŰ âí´‹ BŔš6׿śŚ:BŽĽ{(n0•Üćń**öYrxáhžŻ00X"8ZR‰¨ ţŐéęüűćËjuľŮÔS¤^µň}‡€*0[Ö‰«Ţ:­»DYÖśÂtŰL1 –=Ĺyôß;T…acîhÍRa¦aă*‡¤$–p{,ݱr·Ž`© Šh{8žË¦qQÝľţÂęˇÂ¶(9‘މäöŰmŮ·c8íß5ÄÉ‚f·­E›®ĺajíŻ«#PőĂŹVĄźĄ.'Îźg8‹QÉëDý8©Ys endstream endobj 3126 0 obj << /Length 1617 /Filter /FlateDecode >> stream xÚíZIoŰFľëWđ(Öxö%7׎ (Ćj/v`Đ㥔˘šćß÷ 9¤¸K'(r0(™Ă·Ě÷–ď …˝'{7“ß“ókĹ=ŤŚ”Ě[|ňFZJOŠ$ńKďn*šÍ©ŇÓëÝ:H˘Íz›}ŤĂ•ź„ËěK˛É®˙Ě(žúqä?Ξ®ÂíěăâťÇ9CB1Đ™J¤Äţwňv1ů{BŕźŘ#…b­‘¦Ü ž'w±·„{ď<ŚŃŢ×tĺłÇăVŘĘ»ťü1ÁÎڍ°í%wŤy„"C(ű& ÂçƸâ-{GťwÔzG„óNĺÎučĎ”c¤„‘V9öć #Ži¦wŻ­"Â]ĎŻ™)B$RZy`2Jdî)µgí6ĆOn??ÜLĽ»ąršÄ ?â0ŮĹŕ‰®’Ă[<ýĺŚL—Í”Eu1#€î·/aĺY·ň €CIÁg?¶ËÎŻ ÷ ¸Beć Cš<î1fŮŞŠĂMň5ţ*ň·văĎśäJ¤B„ ұöźĂA*Aä(7hľd&ĹÂf‘ä ¶ůĄQVÄś† ×Ţś€4Î3YK—vľҞà "\LmĐR›’mŕí‘…•¨˛˘ć“ B° ě`äUq&ŤąS1Řą#¶6Ůě}‡AŰĂI40‘lHś%n‹Źe¤ CTŘ8;ë‹‘Ý^ Qn”řjŚŢ†ÉËƨ3k÷sÇhĄ`ţ 1j!úűÇčĐRřÚ!*(⬻ŚÖ"¬Âi^ €‡Ä+}Ýšş{üąjŞâ)Ĺ« Č0Y+©»ÇmvŇąźâÍó‹Çn/˝ť30¤ăH UpkD»ľ ?Zĺ|ú*ÜqôĹŕ m93•i˙+äŃ[wň6Áî9\'ţ‰©Ő{­|ňuI>"Y4T¦"FLEŔĹE®ą4«É•1V,‡Ž lGŕ:ÝikožSu5ŔŤ!RÝsn”ĘC B„ŕňbŽ”,B4M4ŘšéY‹=”€=¦Íi‚€XÖž#'‘Ľ™$UpyYÉĂb‚h$jmcA»6–TŻZ\‚Ě$¬DÍj©]ŻńĚN%Pw˛3?ŞČ"Ŕ)—żďg”XŤ’Ş™V‡Ő¶ńť+pލţń]#Ęx1ľ—dŘą\xŇţúdŔj(ŹB8鬟ĐŞ!ŕ8“sSJ’ĆÉRËaÂ:QouR I*Şjin¦x~Ë8×KoEîx%Zqh‹͆ÍÜ3'XÜ DP°}`#‚Í fwN0$Ť(•”nŔNÓŰXYí~N‘Ř|: ˝.[Ů ć+CĆaÄôjńBq¨ćśîknFő6«\jeC.Á?Z‡­,6ČnFë§QXö¦‰%Ň>L*Çd$Đç00Ln=ÓşčvÂu»ÜţyyůööÖŐµőĚŤ€Anł“zK˛ŤËř‰[Ćń&Îç«e^!‰âŻŃ6<Ě,ćÎ"N‘¦şMż+Ý^ŘKVČsÚ=ç02E@5¨ŔfMĎŞ[ů/řŻŐ÷¦ŕé1v'‡¤ˇú5(řb&‹×5#„| H3¬ç˛:§˝Ęé÷!ž,‘ˇädžL…!CŹęTbŕÚ|lK—HC ’C=$ĺ7.ť=ŕDĹ­= ˘÷"Ő[©MÇ0ćv–µŠá¶6±śqXqX GB… °}p `Đ\µĽUęě$ýí•Őw0ĺ BĹÚ`jO®Ó·¸ŁPa*Ľ›AĐÓ DQ(–ܰR!îFă4˝íp”Ő^¬lJĎý$JSĆ!“u†ÓĚáĚěDCˇ°E¬ Ö?^Ť$aKD€±˙ŹI{i¶ “Ł<ˇ8ďߢ˙:đlBď'űŃž WW©Űkľnă]P45ňă˘üR@C`łŻ &3éŠÂM­n˙[¨<ĄĎ?ĽłöďÜę.đěÁo„y#{uc×ćiž Ž‚™c©Om–îůIľÔfŘÍâ&E%ýGşi߲ĎW›ĂÓż=Ąá®ëűô=m® endstream endobj 3046 0 obj << /Type /ObjStm /N 100 /First 984 /Length 2245 /Filter /FlateDecode >> stream xÚíZŰną}×Wđ1yá°HV± ěN$Ŕbm,’†Ń·1ŚŇB+/6źSśˇ$۲ݒFcŘ©š]]<]÷â41ąŕRHě2ă?GG%ČĹĄ(F¨ËRڍNB6žŕĘŽ9;ŐĆĂ®&rÄř_äwp"á–@ áQ¬±Łm3‡%»ËĹ‘H“ĄŽ45Şş‚ÚłÁE*ö¬d5ŠAI>!cˡ- (`!I jQ\älXĄX*䢤¶¤ Š-AT‰m 7‹,ĹšÖ‚W°KĘ·ŕO" !)«=Q˘KŇ^Ć´UÚËܨŇîB›”L3E\ŽĆJq9çF™F)c ČEíĄ5¸\›<%Ǧ+PŃ1Ő¶V‚Q BM-ś›†Ő(čęsĚŔIĆÎlvŔÓ,KČ’ QŁŞ-±ăŇ@VlT´ÉĘŽ5ÚćTmv‡X Ő|˘Š“a(čXbI¶n&2cŮZnkq°l"ě,RŰ]uR2„¤‹šŕ ®ĐŽ/ą’ Tv…C0Š]‘N@‰ş¶V\©”ŕJܤT§)šd°h–F‘SIŤŠpŃШä`ŘlTv•̉ŕŻQa "q5s[+®âĺŚRxs57€çŐjĆ'oEŤl>Ά+ÂÉCŞm5ähOA°›É”ď‰'/Ş˝5đĐB v[r‘L’V{±d[Őd‹b”¶ElŠ]±hH¨ů!˘ ¤ŹđfB'Ožśl~p/Ř‚řţÉmţůŻ»ĽšŁůŚW:}÷öíË“oľiĚOĎN/Ü“'nó:Š¶ÇžÂ˝qµň4!čĚd»+(2î÷Ěv±BűK#Vd»Ä&›ĎϦgË…{á6?ţđÔmž/ż_¸Ëýź˙÷—7†×ËÉć{`YN/~µděů“ÍOËŻgďΧĄ­ŃníËüfřîěw÷"`+{1\€ĽÖ—Řo8‡ËNyÇ˙íé鄾Ře7ղ۞¨{‚C#>Öž=Ů<{7^´ëżż9ýĎÉ滳óy9oۇ—›żnţ¶ůţµ C<á]‰Ĺ ¬_H|27©ĹgDl‰ęsđ}Ű´ţĚmţröüĚÁhúőâüÝtaJŢś.ç6íLľ@E\Ä3ŢÎę ⌕=˛ëgŔ<».–Ť¦˝˘Ń3ĺ@B+{1LDČŇÝD %¦Ű‚iQÇń*ꤶ¨Ó@éäý¨űy˘’ŘłŽ™ŞŻAďĎÄěá}=‚ߏö;ÇłÜĎr˙xFćŢGŻt˘G8÷çárĐŻ1…ş˛W«´}! xĎ7zĎëółwżĽzeűĽz=Đ–FŃíĘ\Pä·! Y—- jĐ+č!==ůhŘöX#‘/¨Ç+°.żA÷[ ]Ë0Ći;Ó¶ťBZݢoˇQă“Ä^±‚Q‘¤şbE‹Oú(őz µFf]őJ­Ó\¦¨UM4§śĽĺa˛Ô1§|@°•ÝrcőčhÖëuśJ3ŹÓ¦qŃ)Îh÷HiP.KäĂgftĆަ‡žáľ%¦;%fąMb–Źsm)京`ÎŮ ZÝUĚ’+ f\ÉQöăJÉhú=‰>sF¶±Ńes2É˙zT•Źkšć{×4éőŞ„NP'b'R'r'z%,˝–^ KŻ„ĄKÖ.Y»dŤTox˝6Ň'ÚĽŻ™Ă1Q^bŤAĽ;¬Ŕú[Xó(ušgĂvŞ5 q®Hç<ĺqN“Ö‚M~„SŠWôŃ„t`Ţa9ţü™Ěh;ľD tfCh/Ń: ĺńŐh`ĽÄŞŐŰ©É ¬Ýľ…§-Üâ””ćeă˘yJ‹,¤ă|Č}5p{°12 aş…bŹX¤1ŞD…ŃSEzßąĺɨ֢G÷Ĺ•]sE  őńµávr١Şx;Zµ{b]P`¶3IŘÎy[—­ ĎËČ‹rHO >—K¬1&o›ëŐzLGÜ%E®l´—I1 )–ăů!{;Î%{;%ĘŢÎLłbćŠ|lJ(”/aDVŹăh0z oé6ĺtŮĂG4ÝLĺN=Ľň-zřëĚ_lËďÍŚžoě‡o`¶Ă®€)|3ŰáÔZÉ ĘŐřĚ Ł2ĚJf´RUW2ď˙¸ßŻŕÔ}sű@Ý叻˙šîÝýk:h#^Ű4…©ŮG±¤TÝú2Ň}ÔŘo§Z^(o© qUh\JSŢnj_… éHŃ=xűjg˝RŹ5ÉľLčP3ŠLCţˇš·DíFíö|´/·2‚¨ňW šHŢž«C99ë㌚ŽU--®ÂşŹĆ4U1M剷‹ŽÚŻ5kí‚”ĂĆMFóݱZŕP3ůZ˝3p˘Wşň‹ś†ýbĄŞ>‰¶CµŁHbÔ‹ö#·i”Sq“¦BÉło9°ĘDž҆¤ÂőrŘĚY1÷k­~®iş‚‰jmź{>rrC¨í»N«Ż‹gL‰çĐÚÓ-‘Řn_Ć®>VyŹůKG•÷gţÔ· 713#7}»v#łdřĐZÉ­+ęÉá™ĺČFĽ’Ů$ç•Ě$âĂJă˙5ą˙ÜąŽ endstream endobj 3141 0 obj << /Length 1109 /Filter /FlateDecode >> stream xÚŐXßo›H~÷_±Ź ŐŰý˝KßząÔR¤žz1íKZEÇ’Ť{€›ËßYXl(gŚď¤{›Ů™oö›ťů€ %"h6ů-śĽý 28PŠŁđi‚ŤRH +ŠÂşóóż…7Kĺ°®ü÷ăv±['ţ”iăýľŤw›$-˘bµM­ńä:śü5ˇ`KÝű4&PĽ™Ü}#hĎnÁ<0čą´Ü !9–ÂĆXŁůäĎ q8 fŇŢÚKŤšw V€ZĘ ŕ'ź /ʢMR$™O©——Čj—ť!Ejú̸Řl¸ (‰´`Ę`Mq0+e6”4I Ě`Q´Ŕ«ň)V›¤˝·TR,„97.šaĄĆŠÉðˇ [˛\<ą›>“°łţ”Jo=řŚxu%ÄOQşLň6N )g ls$(T‘G °Ňě$ŮÝâĘŇ8’^ľ÷‘t^Ün’šaCź 6vÉÂöń$Ć~EŇ`”m’Ŕ…€:Š$Ş1ď?ŤHbÄu†x›=$ Ž[­Ď–ÎŃí¬Ź¶&+­RhOÍ΄T=\ĄËQdΦM&¸ 4G&°b$™\`Â1XJ7ťŞÝX÷đy^čnöš‘˙HěÖ?7IYď.sCn“.´’g’öę+=ÄÇŔ­´ÄŚŠj?o“b—Ą‡SşľńÁ•0ĄáÎRxűţęú~ţůęęz>w$¤Ő5ßĹq’—ŽÁŮÔm\ąę˝3I˛l›ą¶]Ô${Ůó*Żx:Lé(ź©CóÍ0×”%Öţµ‹ŹD‡Ę”{%UdQśÜgeö÷…3o:UĂůŢ<ß=|ń…)‹‰1ă}%’tĹŕhU/úa .Ę>eI\ŮRJšĆ¶XŘP9ň)ńŢt€a—|ם4/*±Ż˝§(sŢ `Śië<ŔTí—|%„wAĐĄ0 Ť1Ú‡Şa09‚mżo:ö˘«WîíkeĽîH‰‚îäôꤧŕ¨ú§p(1$ U'Ś+·ůî!/@čB¸¨ 8ęěMŹŮvS?Ż˘Ź/7ľřšt÷¬×Qĺá>öĚŮsnÎćRÚÎ/GŤ i…ŁąŚ0— tĆ„ůya;§ĎAÔaş|•»kg‰}UKż>·ŮĘĐql‚”L_FýIh†^]OčgĆíć«ö˘}8Ę6Iŕ‚łq/»Ň*Ă~™?€$PĆ0°NPčĂĂQčM˙@žL›JŞp Ĺ8*Aë™~‘ş@— “Q' ô3Cw“׌\ÍŻýÜË›˛§˙ †Ó&\(6J{[ڱQ{ ĐŢD˙íݧ 4Hî!돞 3 şÔ¦¤$–Š"űÝKąâ™%pě#['ů|¬oně±ŢąĚ]Ő%ďdđNr§¸¬mťcéxW?BßĎę˙Ćł¨¨M­´ź…łR–”˝äĄţčęsâýý˛,…r’oÔO ÂÜË endstream endobj 3188 0 obj << /Length 1120 /Filter /FlateDecode >> stream xÚÝY]s›:}÷ŻĐ#ĚÄŞ$Îô!®šÔmRBo¦“t<ÄĆŽ'N1nnţý•Ŕତ¶ń-íBŐî9GÚ!0¸Ť–ßxsb›€ADz ૠł,`;Zřp­QČô&±™Öo"Q8·ýédëj3y?Ô ŇxOzăú®ţÝ?¦i@j|¶Ô1DoŁă7~40ďDçS21A˙ˇqýv4žŇ‘Ŕ¤Ü)ŚMŔeăK©0$T4Ĺ% Ę@cZŚĘ•¡R\$Ź §qŹ1Ť‹äqmZ΋ MKĚ‹@Ó@ĐD¶ś˛$4s™Äó~2ŹĂYŮšşľ91ś)Ř‚6ł:Ě’¶nˇĄwÁu“RK›%ÜSî07Ż Śă‘ŰK †Fɨ'C]çÁÂŚ„>ĺŘÂîq ĐÄ&t¨!]ńďĆJ…Éyl˛o ĐUC‚˘xŇfr$Ş3dăV˝;źeb»âzεĄÓ/‚ß4żŮLşz2ŹúÉxm»ýěA2î+ŻÇQÂzŻŔďęXóÝŢűóîą×s;~ŻŐýÚY¶,Ţ Š6šJYŚG·’É|Î’ţŰŔ"~^"CöBN&ŹŚjQF˘7%-‰ş˙©óAÁd®n§ĂĄńéčüqúđ8ŤÂ()ŹVá^•B‘K,qŐĚ=çdY‡ćĘő:ťĎő"Ë¨š¬‘Ž‘‡aôÇłĺuÚ9Wń"'˙^–^Í8¤śŁeT7šłyÉŮL[›řĚ"Ă••#Y×y¨MŇĚąTĐs[+9pOdËXŻ€śŘ™¨FvM˙č&C<nu[›„ŐeÁµÜ ]äUĆ6d·¸:şÇď?î]™´Ăˇn -O’b úârż˛8Vf*#ďČ=jĄzH‡ĽÓs!%ťüş˘š]QµđyľĄ-oIŻ€—+˙_…ŚPú€&˛ĆJVŻDs+‰t˝@¬!xé‚]*_+\Ż‹ŠqźĄĘ!¬!tWş§~§úĺút7NÂýl©UCđ8lX;îVŻ»$ &Ő,×z׸yůwĚ·ęÁň/Ŕ}i˙+|Ŕo‡)Ë ,4jé7‘u»Ýó«ęWňłŔ.śŞ™jOU-é- ţ_PĽŕ(~ő.şŘEÎ{';íŠ9„Yèc2îrOÝ~Ë;ż:@93Źî˛ěKEîTŮ`;Ű,±QhŐĐĂě–<÷Ý)É"˙[őÍ?­˝ŠFňků§Ę’ŐL±gž~>Ŕ×ňă8şŻć‹ŻÖUĐĹAŔ[Rá®Xb¶Đ^¶KÖR…—˘ţ9>ĚŠž…Áţk9O۰6Çug“Ô†Śls2™¬ZŘ–Y8‚4)´,EFa$Ů_•©JŁź˛Ć™v®nHć16Uč-uŢRcÝá«0śý3÷uĆ“JĐ Ď‚$*€áě-+´µ§‚†źGâ T Łeśţ»Äń endstream endobj 3226 0 obj << /Length 1136 /Filter /FlateDecode >> stream xÚĺX]SŰ8}ĎŻĐŁ=CT}[îĚ>Ľ|f7M»”aL0©‡Äî»Ýţű˝’eă„4@,3ű$Ůľşş:÷H÷XMAQ§7ęĽŰŇ8TŠŁŃ5 ÖJˇ dXQ4şBgţůčq)° ĆŮ·'ůU9Mü. ´·—ŹËY’q‘ć™1îôGťż;l ˘ŤO­±fŤgťłs‚®ŕŰ!"‡ý°–3$$ÇR9¦čcçĎqq’vĽÍçĹĂĚJŁQtqäSo÷č`iŔbűnź+Qa`Âd łŁ.•Xi^…ą—\űśxq9-*oâ›´ęŮ|I<ěwąŢ"Ép'ÚéA‡V&żUŤů˘ÉNő@IÝcŇZ¶C\®Ű„ı _ąa Űë{ŰGož\UťKźošçW›`ÉZnĺ«@Ů$‡żN·Źăĺ<÷©ô~d›ŔGźßëP12řőOwGŰpâSlĚââyÖ­&oßîiÔß?ń ü,0Î&ÉFXÖÄŁŞAň xbŞČ§Ďýíóo—ß}&˝ŤŕŁL/Ń}‹řđ;~ýqpz´} §éä«ë~Kł›g±ÁtK̤ Ń4&Ę€#Jp Ce!ĺ!&…íĄÄĂ ŽĂ‹¨?şčęWs¬ĚKB”˛‡”ÖrÓpdnęŇä˛ÍH.%‹ň•ŞzŚłwÎŰBî@ÁŮŐ)1Î8‚ił9€t„’ŐVgi6Młä|…;€°­ívVąĚfľł[ěř|ý– 48u: “˘ślŇsŐąřęv9íZŮółpĎö§Ą{ĚŻ—ě+‘T6gÄě[žA­c§¬Ăĺ đ /p ¬hs­äB4ě÷Oד¶â?'},č¶Ů üC‰—b“,Iöâtm:đ•tö÷8$ü†˙c23xőBdh~¤^ëT÷hđh`{-"tH…2Í ˝:ÁTQ­+Rľ‚ĆBĘÚjŤ?¨”T4†“U®€Š=Ý×ĺʨ¤¦oş q" FýXÖ‰†u·Ő‹aÔkóĹvŻçů¬ęńŐ\m(xkv,~„p"N3µ4H}Ě|ö°wžĆ—~ŕŮ»«çKť–4ă R§wĽűáh Kbéţ¸­ĐńŘ4 Đĺ˙H˛Nz®Ý˘|ˇp[éö…©µ +“m¬éA˝¶ţđ…úÓ»w›ňÔe˝ü˝ÉŞ[Ui·úîTë;_…YŠÂžNKEÁ+ĺ–%Y2Ź‹şänU'uçĐ$±tĚ5„Šú"ň˝ ßK·©ŻŤm˝ĺ­ăt\=Ś| ş#'­oqQ›` 5w€UgC}çlŕ˙ççÄäĐK˛e ţdŘP_ endstream endobj 3238 0 obj << /Length 655 /Filter /FlateDecode >> stream xÚ­–moÚ0ÇßçSře"{¶ăÄ©´ h´tc馩­¦!ž6 ëúígçÄ$óĘw‰uńďţ—óš"@ˇŐڬ«ßEžÇP4A>`áyČ(öŠĆčŃćX8uę »•<ĐU2ÎÜŃz±Ţ8„Ű/™?q(ŘňIę„QčŘś[™˙C3/Ç“Šĺ‡95ór_ŽĽď™x‹ÝĂÔ÷\m¶u9öä’‚…É*ŮÄŰbN_çťó®0şŞżěr‡]BŐIv)\óŕšłSC˝ <eNäŮ«âQ˘˝‹·ĹV•©I™ŻˇÖÔZk•řżoS%ž-'ŽŁ<ý ÖŐú endstream endobj 3135 0 obj << /Type /ObjStm /N 100 /First 1007 /Length 2680 /Filter /FlateDecode >> stream xÚÍ[mŹ· ţ~żb>¶_f%J¤(Ŕ$-ĐAbm ĂćĹ5jř‚óH˙}έvmďzş±çýrÇťĄ¨GŹ(Š”f§Řą.řč:O !HG‰LH]ôÁíMÔIŽö$v)äŽĐ éň wJ‚¦.sşnč ĎÖ*vž%™ÄťOq±$ťĎŢZĆÔ‘Ë …Ań&Át Ö‚]Gâ {ŔJÖSG™}, –>¦‚ł¶ŚŹ1-’tAĐ$RżH0•łŤŽ3F'&‰ëbÖ:ŹĽô†/˘hDş¨KG;v EÂűlřD: [ s\$Đ•ü˘—;V5)ąNśŘxM(=4“č}¤Đ §E/v’xŃcpM‹$]rŮFžR—H ÄÇh#%IĽIę:d#WߥĚËt`^|č«5Ł@*2ĐUëŚhXć:HĆ’Wé4: Ŕ°ňB®Býš˝Ľ´Ŕüg§6 ĺ.“µ%ĚlŽpHx&n‘¤Ë)-ßÂGr\$íĽ3„!’y\ŃEPŃCK&DĚâM0ôŢet1uŢŰüÖ{r ×q&±ůěAÄ_2/FJ6Í öýĂK—‡f(‚‚y¸[6Ňě{{hmÄesG“–9¤@ĚöЬ/ĚłćIíˇµÖ°Phšš––ßކl–˛,#B{rŢĆ ż÷d "Z‘!'´„¤ö#ôp {gk g{áčGx–&7»źßŐűĺóß^˝ůĎÍî›Ű»qş[zuĎwŮýu÷í3ż|0 †÷čĹâ —>ŹćÔGLT"ícč}˝ýs·űáöém·ű®űÓŰű»wĂ˝Ť˝Ľz3ÝýŮHŰŚäŢ|‰“ôlńÔ…>ÂYą‡»®€ůĄÜ˝*őő´!–=1 b,r5bÄöż—ďşgË&µ¸Ü?ţů/DÇ^~Őů>c Ľy÷úőóO*'·(KŕŢö™Ë”}îŮ>Tľlń|´@>ZKď/——Ög/ŐÓĹŁňĹ‹'†ýš‰± Ü„¶®b[Wű-Ű÷Ŕ® ľ Ô„f™›en–ąYćf™›en–ĄY–fYšei–ĄY–fYšei–ĄY–f95Ë©YNÍrj–SłśšĺÔ,§f95Ë©YÖfYý¦nČr„Ř‹í¬˝ybňÜ;¦•uöňţĺ‹ĂíëŰ-#PL˝`‹’÷Ât§>a·“H}ŚçWýË»ŰwżľxńĂÓľ50/^–<Ĺa(Â)d®%Ĺů Ë4 UxžĂvx‘pöäŇo FŘN«x@őß/JžÇP‰ćŕJJN„±¶eŕPŠźĆń¨EPĎX~$¬H‚ÄÇž)_HmLC­ąČ0J˘â«“” ÇDcfWĘ–Ôf8¤?ŕ ˙±^×đţÁÔÚľé,µâĐ[ÎĆŠ=ĚË…Ô"/ťŘrťĘě’é 4ΡU}6¤{+Ö÷/ŔŢţĽµţ!!齥󊅅­ Ůhź\¸*¨€–ő58ף’[…zęn ŁN¨śÇˇŽ:Sç©r%©pŠ©¸íđćŘ'ě71!ąC ş·jĺjŻz¤“3Ť3Ť2ˇnÓâPr¸„.ĎŐŤ˛ĺúňČůŐrÁVˇž2[2…“ŹĐUç0)9[b JA·ga! J>0‹Í,§p•Ě6¨XmkHO‰•Xć‚’vâE)Ő$đŮb5ú< Čm¶'9KD†t 6¸Ţ‰żJbÔŚjŔË*Ô3.;$ź«ŽJ5"X n¤™rV;Î@°.›3 čyîYGVń\#ł¨řQ¬A=eV§É 3G_t''Cq.ů:xJÁ±ŹŰ3+ˇfCŠ=ľJfÔŚ`€*t ę™4ĆĎł5ÓěXlNš§2Εglą“§í™EUžŽűWv’r•Q¶!Í›V‘žň:q 9”8ąY…s“S—|Ć)!SÜžW—zĄc”EĺŮÇ« ˛ )ůĺlh 附KµJPlVâ*ĺ8Ő”|š¬Ýb·Ź±”l+ŕŻdîÓ5Ű ’CY»J}ę)ł^††‘ ŹČÖ hšÄŤ)çZx{f™PÇĐ‘Yˇž5^%ł{¨vÄšť¬B=ev@­uŤäk©’g–ZFÄ×!¤M«đĆ,ĹŢĺ#±Á‹č*‰}@J¤˝şu¤§ĽÎ‘Uy@Á!âU–µ *٬"=㲕AhrAF€Aň,;/bÂWŹd}tË&{ –]źĂUŮTŐŢ.´× žŮľ˛)ČÍ ÂK uVć2T7?B0đÔÇpڞžBďč*3®•|čŐ.ŞW ž :#°2"€U·ŠÜ©ř­.ş©N›3«vd|¬j3÷ó×Čë(ąÜ#Ů_zî&q śPąÁěҬ(’ÎÁÓtrŞéw\‡ľŻĽżáDžŚIŹŹˇ±k#;şHY`9)_¦ĚžQË~ÎĄěG·°ď_Ń~î˝+‘śÜ»ŇňBŐ—Ý»j»rÔvĺ¨íĘQ÷WŽöŽÍ^8<‘&¤&hö—önÍ^đM &„-Ż%÷ 7±öî%ě”ÂW™w6¤Řj˘yđ ŇÓĄ‹0Ę 2ş ČŠ¦y®Q}­:¤‚¸ýi”˝^"ůSČpŻ« ‰ j+î× ž2[ëë\QÖSžstˇ¤É‡<Ĺ9b+OŰWJ’í>ýxΗś˝r•ç| *9lć«@Oy‡ U<ÚD¨ę<ŤžĹ×Xƨ%Ąq{^±CĺxLŽD]Ďá*“ŁŐNMB^‡zĘ,ÜšubÉUüeďC-Žršę#xl´{Ęăy”0ţóUžG5¨V{j¦U¨g-U¸é¨Ë4Ą9±w/C(yx źőövČńő!\¨l/ĚŮO).SvčAŮŇŕ {”ot©.rAÖ GçŇě•ű‹”‘®ź,’OŐ…+•ŕÉ›Ľ˝¬k?y°ź˝|QŐNßÖĄđyoëľĎJřÇ(˙ż ˙¬2V€Ců{™˛چ aH ¨Ŕ.ÔeĆv.TöÁNc.S6ćăűný?© +a endstream endobj 3243 0 obj << /Length 546 /Filter /FlateDecode >> stream xÚ­•ßoÚ0ÇßóWř1‘Ŕ=˙ŚSiE¤lU*:šŞšşjĘŔtHt,ĺżźťŕşNZ Oľł/—űřkű=!@#ozg—!G GR2”ÎQXI‰ÂbIP:C>•Ácz…ŕfľ«gŻ‹Y•ë OCĺ‹iµÔ«2+ĹĘ{qęýô‰DţäT +ĘŃté=<š™µ+E męČ%â‚aÁí?rtë}ö`W'`*¬iW5{ŁjI0¸˛Va">”ŽľÝÜMn’¸.Đe>»dQ+ >ĺX ŐäęyŔŔĎŞĽlHź«uĐ73Ď}ZäĹ:ŕc3Ďą˙LzŁŢŔ¤ ůĐ v…Ök<*śÁ ­‹:Ŕ|ĹhJcÔ`ŠĽ°…7‰‡˙Ăým­gÇ0QáPŔŤďâ@ęhŚÇ§ˇúPđó˘8ŕ/áDݢćm|1Hî:ťË_:kSVú8%wh„* ]N'…e_$]KťĺÇPí…Ű+×E:JZP÷?Ąť„ŰüX”şŰµ;m}‰“d|ß…lkO˘Îó" Âßś ±uwe˝ŐjDh:Í{Ťk„ÓĐ>HsDĄŔÂô.°4kĆ‘^éuVşĹôşzĽvĆ•E®vu7đÝ­‚sť Öxsk6ŁvęÄ‹i㤝Muk-+]¨Ý#Đ~ĂężuŤŘjđ˛}˛JúzőzŁ~ŃËm endstream endobj 3253 0 obj << /Length 1553 /Filter /FlateDecode >> stream xÚµYKsŰ6ľëWđHÍT0ŢŹÜŇIí©'é´©zJ2Y¦M-É•ĺ¦ÎŻď.’Iɢä\>Ŕ}ď·‹Íî2š]Ś~žŽÎÎŤĚ,qZ‹lz›J¬Ö™qśh–Mo˛Oą"n<áĆćŠĺz3ž0š?—–łŐl ·wţa±,VŰń—ée&Ą Ę`á pOGżLG˙Ś<¤«ůXK,—Ů|9úô…f7đî2ŁD8›}ó;—™T@L"±űěĎŃ#d§„+ĽÄĄŇDdŚÇŠUŃŚĐDF)­”±^t1¨Šm4ŮÁ¬äD‰QN#'šM%’ň’ÉůÓjľ]¬WŹ)‰°žť śib¬É@âŚ* |ć\%ßfź&Jéüß1Wůzqޡ7wÁ ý.ôĘÝöîęzĚi~żžăň÷Ő˛ÔU€ă®c–ŻŰ6yüđ3Ut'iO6&”’8;g2s ÷aV©Mź)¸˝Ą»$βjODbŠć?•1ö¸ř>f*/€źżO5«ŢâOřŕ~˝ş+Ż çbvß2Ć #öiy]l@_¶ĂEŚbRPí Ę9aÚ¦\€ČR–˙Z’Ż$đ,·_ĂĹěζ ‘˘9i™*1zž;´!;<Z&çšXÁŰďńe‹ż! |Ö;^“×—@"Ú0ŔśP&R_Ľ-Í]ż'TĘGëŰr˝™mg?Ć+CňňvS-Ë›6N§}D5á j’łŰ!Id‘ Kw>–*G3 wÜ^HžG¨…E«l ţ„řWlg‹űâ¦˙wĹă|łx@ĐŢűóeZ5Ĺ„đ@ŻÂü@o=Â2{˘—ş±-Ň—@?’—×ç¤÷śçP“ńVř ±ä_UŃӪ쌢Exśé˦ —A>c4úF ¬¦-„öőßbD•Lb ŔÜ Ě>¨Eî”='U7ÖRţ†PŘŢ[G&µ¶!ÔŠĆNZK>ťÚůUc0ń&S„‰Ŕĺw4Ćl3[Űb3f,OŰľîHQNăű»#K¸uwŃŔ¶GeŇÁ é°›Č©@·ReîÖFÔ‰‰&uc„éôwL1"Ą=–}Ú")Óĺ>­*m,FéLfS•/ ČwESH!XÇ=H‚)wš{ $•'şQŽšLZF”cIşěpËqlűÝs­ÝňBţ„vi]®u!ěsÔ`Q»Ž2죎tTCCR=„F˙ Ąs֒¡]ŚůĽŤů]•x».€¦bü씌ĐÚí+ ˘tŻU3zʇĂĎáŘ =™Ć˘îÁŰťÜůŢćhđę­ł'ˇ0X&Ĺ뀷°”(1»ŹäŢ 1óSˇ{¸\]ç #ĺI€4„†{gdŽť.Xíc±}Ú6S€<‘xtŕ”a¤đ¶4đĂz±ÂNĐwOŇ„ťżýőţ}8Sß&ç۲ăEËŽúĹÜšů$'–›÷Äa˝î˛žÝ\áŰ Ń4» ,†ÖÁöő¦ęčÖ8ięÇP0’5¸_ăÄ"yřq›˙íă$]-šź‡ôđ`†(]ďjf%¬wVŇW\ GoIˇ€Ú zžˇüXĚćRFťŮś+bťzČćÜiůĚ>’}/f'ÜßžŮĂĹęúHh§OsĂY2?Ń9đ‚NAŚŰ*G{Ç’»ýtś$ý~ŠŮ×€?¦yŕ˙:M7?Űo_‹U5ć}"â˙cąÎáYŔú>wÖ®ën !öůÝÍ ăâ…F#Úďö¶Ő“2ăTSÍçűËu%îÄŕ©˙đ@G6)C…‚šm"¶©6“@%‘aFPŐ&Ád~gŠÍýQvśú,6@d‘I—ťXć±Őn${°ĺó®P¬B'’§őz8»ÔBÓëu§:pĺCţńŞţĄĂń,DStrD„Ĺ»ä˘X›&{«ľěCuq‰®x 7<,”ÉňŠŃ7Ę˝Q˘jć`oŐűy‹ţSěn6ły˝óşž[_L/|+Đ„A(ďÖŘ"ţ÷ţ,\µ‹ń˙C†¶ endstream endobj 3343 0 obj << /Length 1841 /Filter /FlateDecode >> stream xÚí[ßs›8~÷_Á#ĚśUýô­M“L;׹\ăą—¶“ˇ6q™Ć|wążţV°qlá4Ĺąľ„vµű}«e%agî`ç|ôz2zq¦¸ăŁ@JćL®…‘/ĄŁŠ$q&3çŁK}ďóäťĂGś0xŻüďűt¶Ľ‰Ľ1Uľű&ť.QR„Eś&şńčt2úsD -vHÓ§ď#źrgş}üŚť<{ç`Äßů»ląp¸`Hp-ăĆąý>•žQˇęK­5sE!b]mI®ő`oL0Ćîo“3Đ”únśQvNŁúÖ\OĚ%˝6×âkőĽČ éy”DYX¤Ůë0ʧćÁ«‹·ĺ8·+h´ĂH‰@jí°3fqLŤbgËdŞ-•·»¨®/ÎX°ć"‘ň•RgŇtđ‰RŃz×ů8BşS賨hĂgóĘĘ&ÚUiq}5MoŇěŞŘľőĄMw5Ź óҦPÝă',đN™îĽo•W˝\>‚ČS¬Á‰e ´-Ŕ4`α0¶8ÄQěţĺQáF™7ćŘ-rËĐ\Î'çŢJů 8H[Ť BšF»¨ĄŇ†WĆŤ*´$Ĺv·l5ŞvT‘y»€­«,*–Z'á&Ý<ŞzÄťś˝MâbâzÝ×.çTÁ} K‚aąŔh¨4SHŔř*j™V­1sřd­ ˝‰’pyD¸żěťî4śoGy–wĆÁ`Um$h‹ÄáMüŻÖ¨ŠLa˛áŢĆňşŃŔ]|'éâ6‹ň|—oÇf\%ţĂ›¨tš„_4—ę°ľ˛UĹ Ł D®îŐlaˇ˘ÇÝí!Ěđ˛ 3hÝ憕Ůě#vě›¶Fg#ËçH`i3ÍńîĚdŚ”3q XŕŹ:ŘîŤÚia łí6‡µĆ;\úłŮ%dCŃŁ 0č@rDT6˛lȢKŻ=&účŹAߩɇ'1&‚@z 1P Éh…@ą‰Ŕ*%i\ä Ŕ8%%Ŕfł_ăäŰN`qJץow ˛8Ö;´qŃ8{ŹĄÁËlĂŤťe‡b·›¬1ă )€÷ „ě>¬<›žô¦Lŕ#έ<5‹ň˘%Ż;°đűp Í#Žßuúú‡§ “ěQň“e°k$ë&xLh˙Ĺ"zß}%vEďýđ«üćÁŞ7_SG‰GĆhîO“".îĚĐn–÷†áu‹úvgŔ—KÚ‹Ś×%®}B¤Ź”]ŔŹîGĹn˘€Z’ř=aż±QZ´.Ř5˘% DFĂ8şÎjŽM#ĘŞ‘@>i,9ޢĚ4),ŞŮDÔÄy¤z0(öPT˘Ë[ŁŹĆŘ`Y…f|'TµĆťß¬ Ëj٦f“]dŃôţËÂ-âVkŕÝî€#ĺ0Kű˝C}KŘę.m0_¬ŃŞ›· őĆ ›b$ÄqřpVĐo+QzxžôĘĚöăŕ;Oe¦ÚjQŐ‹жS¨f*Ć úë÷ xÂÍ‹,ő„ó˝ő¤ŢÜ,KٱĄĎ©đ!`-E*,3#…°Píxţ&jĚý|au ¨ŠŠťĹˇ'†eHŃ3wLč’‚؆`›î•o5Űő HŻt†DÚ`˝Ś*˝ô ożB`ąFüLa~0_ć_‡‚s†áäűăܶr3( ~%ô2\-‰Żđn4]f™®9öŇZ4Ď‹pŞ%}«3úYcŽd=!Ó·‡’Ť==ŮqÓŰÁL*Q pRéÎŤ Ú\řéܤµ=äOFzµý$®7«ÜfFŃ8]ć­%ýĺ1lUxµ¶ä40+Ä)˙™!=0uÔ$HâˇUŞA±Ťj̶ňżnÔżĂÚ…WuA±Šö­‘t!bÄj˝4Ϧv(bÔ*7ŇK>ť»3ÉńvéŃčÝ©„VVÁŕ›Nj"ýç®;ť„@ľd•\¶ wźÉrOíi2ŰJ8xÚźpđň:á|˘]\VuŕN’} Ś’}JŚ‘÷,-`Î{’®›†°°]fíÜ;’LÚ˘”i±.­]JwíÍÎÓEĺĽz0ŐY­ő˛í3)fa|čsâ)8(™u;­uĐ žł89ŕÔ¶C›B!đ·Ĺ‘ÍúH©DTI^* ÁFH-‘”ŐB\u¦2Ş<_Ż+ĽŻĽÓ4\V7´ş`ÂÍ/‚_ŠŕĄ`ÓuŰú`_ŮqyJłDŚoŔŇäôkźOÎK—˙(ąWiŐŐŘîćú©%›†úÝ"ďř endstream endobj 3240 0 obj << /Type /ObjStm /N 100 /First 965 /Length 2658 /Filter /FlateDecode >> stream xÚÍZŰŽ·}߯ŕcňÂaU‘¬" đ%ë‘Ŕ‚Ä‚±čé‹#DŮ1V+Ŕţűśęîú"­[ŃXÚi9=Ő‡‡uŻž)păK–š¬Ä?' d)HÂE^/´ŔęrZďŔŐ/XČ©\ŕB97| Č–]BBżPC1ż@*›…Şě5(©‹Ö •°Čl%”sh%ŰJ J’­(ąŕ,Dę—H1ű%ś„ëzcĆ™—p3·^‚TN@Ç.”×ýäss)Ŕ—UđĹ•Ŕřµú Kvü¶Nä§ČÖâ^^•ÂP!đ/Éç§.9°ńŠk(ć¦ëĄ Uşb×…cř?JľUQ׹_rĺŻÚ(q‚ę‹UŞ׆«VVm¨4ŻÚ€^ělń_–Ö|%°˝úýŔÍę¸Ćrc·D…ŐRcś j(Ľž›•,ë˝-”ęJu§#+…ŇĘşâP‰ĹW“Ż÷j5ŻšµZ“›]+!gěˇjŁU΂Í«-誆Ň4Żžc´TGĆ–Şâwmi•ËÁR®GŤŻ®e5X»€4X9ę +]Ín¬ŃzGC /hĽZ±Qhđ_1Üq5T“Đ4»†š»ćę0 ĄTńJĚΫ)–ŇĽąĎ–ę| zJšÜF«K[_ş+'W€$wfm,ĹÜmíqGpĐâKěFÎőäÉĹî‹đ ĺŻĂîź˙úĘ‹ć¶+ ¬~ýúĺËo/>ůäaaÉŃŕ”›„á1AçŰ„5GWÁ6aˇ¨˛‘s¦SŢČY”"Ő­ÂEb†óm¦5m< ś'¦ŤçCâžP¶ ¬ŤşI¬EŰjRŽĽ[”ŤŽŹČŰ„«ĹöK\®oĂ“'aw‰ĚÂÔNw]"ăŕS=}B˛b*Çďpăîď7‡ńé|ž‡Ýßż¸ »gó·áóŮŹßĎřbřnľŘ}üůúö•çYńű/v_ĎŻŻoĆůŐ±8¬×ľš§Ăg‡Âó„ ČŃłše‚ŠżĹ~Ă @ŕ%rÄřéA3ß´¶ő –č×'ý•đI+ §NČ4Ű„â…ĘFajŃÓô&áŞ5¶Ć…+BĽlŤ\7j٦™7 #VbËuŁp®ńŤÚ( ‘Y¶ gD"ŮFmdа¶ń€žJkůx!SŢ2ĺÝBĆKđ*˙éőő ĎŹí—ÓZ»ŻÓBűÂú˘ťe˝˙—TW´‹ÝÓ×űŰőó__\˙çb÷ŮáfšoVBéŰÝźwŮ}ţśÖ~†§G!ްścE€ć5hNÉůČ}şęöiŘ}yxv0Íľ»9ĽţţęęËg_~5˙÷póăŐwC§ŃĚh)´ e šöÄă°o4N4důŁëü,„ŃnÇT~B®Q‘."|ĎÔţ}5ŚŤÖŇiʦf©˛¤©jÉó’ÎÇ•8ņ¶Îs‰złÔŕ ¨gŐ4ŠmŐ- •DzTKSšrťtGCĂ«&i™ÎČNëýdç‹Ţ>6zďGSíÉokFőŢR%64Yȸž·ę¶j˘6dô«ĂםÇl¸˘y,i¬č «ĆLvGUlö0á˙_ąk-ďR‰Ë»Tâ÷ÎŢ7¶—o®Ś¤O… ÚxÚ(ŚĚgąó güeŮ*ěaÖ6 iôÁk›pÂPSě}ëĺî#’k˙Ž0¶aväţ‘üË©Rí.=)ŁĽWĄ•74§’ßżŇV>UŃ*}‘ű˘áÚ‹píE¸ö"\{ÖÔÔY;˛vdíČÚ‘µ#kGÖŽlŮ:˛udëČÖ‘­#Ű Yî»[ô-¬oŃú­oŃú­oŃú­oŃ:ůÖ‘[Gn'dýO ę î é‹ÜĄ/:ů¤}a}Ń‘©#SG¦ŽL™:2udęČÔ‘©#SGćŽĚ™;2wdîČÜ‘ą#sGćŽĚY:˛tdéČŇ‘Ą#KG–Ž,Y:˛tä|ćĐĐJů*D’?t¬»Ë±Ą2zkiúŰłKľşzz{ózĽ}µV¨‚ţ|X¦aoËś‚ŔQµąˇNµ’ĆvĆjZ‰-ßQfÎŃ00Ţ«.´Ż¶ěE'…Ű/I¨ćo2$5;ىěÜN\9aŽ,u דz)Ř`lbYć©Ôˇ-yjóÄłNu:#W¤Ěc}âŠ@ŽžÍâ ¸şúÓ7Ďn†q>zÁP¦śtšX¦eś'Ű—&P2/‹Ákůü^P(jú‰ -Úăô‚WftŮh„6p=yA0~ë`„ óP÷ś1pYËÂ9ý¬aË%ˇ ’Gçşyý˝ôČ•…b)e דë.S–q6–a2 “Č\˛ĄeiË8č›rĆśŕŹď¸V]—Ţ®×ý4Le?NiÜOűÔň„Ž„ŚüG™™Ď:@8WŘś^r|1Ä_!ď–Ź2?ä„ÂÓîĚLčÚôQÖĘN•3Ç*´ęÉo€ćĚ”ć‰lŕ˛Ô¦Ë˛H]˛ě-źŃ3Ę7Ýk•‘Oe}łV? /fř QS4kţ®*ÇěŻv¶őUŤŹâŚ˘čuń·;ŁzÝň8‡ŮÎu}‰At ×ţ,}GźlFť ń<ÇRĚć±Nű3żżŕ/‘v®Eň]Ôú!S#ÜÎ_6ö·›š?ÔXń©ůĂ 7uűOűţsD§śÔlüŽQ‘őgóŚ{´óLçĘäďĘÉ®˝c‡w`jM˛PRjbĚ4ł6ÍĚă9Ł‚żľÝą`QßAŻ0,]Ťř‹Ě] 5Ě\ęď¤ şťöáQ&ěž™XýUęÍC8ÇšŰ=jő÷›D~ ˙Ď”:q endstream endobj 3375 0 obj << /Length 1491 /Filter /FlateDecode >> stream xÚ˝Yßs›F~×_Á#ĚT—Űű}ysŰÓĚ´Mc5/IĆCv4c‰á&ţď»p, â>xëŘÝ»o÷ŰďÜ4¸š˝YĚ^]jb•âÁâ6Đ”ĄmQ,–Á§P Ńśiţ±¸t7«M‘ć·q’ÖŹîzî.Ů­»_ýďEŽCŻŇMšÇE–ż‰·«ÄýpöţWĽáR‹ŮčËâÝěb1űg   Ćb’őěÓ,ń·w%Üšŕ{5rɉďďëŮź3ę'H “ĺmy©§Ë DK«ÚóU@h{¢9PJĂ·iŻîÓ%ĆÉ >m“|ő­Xe›*Üa?řŻ9SDɶAć ^>l’ę}g0KÖ馬âŢÁT:čŔ´41'Ůf[8űI¤ĂŻq^Z~u "°h‚ą™ ˘©BK•…Ď”r7¨ăGĘš1˙Í]47aZÜ$Ů}–;ꩤţŐv&)J$·ő»wĹť{ç¦đ±m –% ˛ěŚ÷Ła Aj…,ˇłbŻ.Ńßnôś$Ś2żTÖ˝uŽËĚhřoÄdâ  ‹­ËĆŘ]®WŁKř¬3¨)7HҸX V†µ÷aśÇë«)·ťé •‚Â<=P†0.šBhY(3\JX„zÎŽbĄô&ŞŞÚĆ$F@ $#†ł'¨u#‰! 3ÖqRš(\ŮŽß!Ľj´’´ű!J†.F؇MPˇGTŰ0˙N±ń<ŰőČ]%ÂJ·zŇâ!ßt3oOAaů!ĹÎÁŕýŰ‹šâźÔĂÁR{cdşĂbl€L¸DzguĺWýä&Ż"Żů¤c]1Â9ońÖŮypyž­K®mŃÖ\Hu]"_©mź/»DÖ!ĚÄűëČŃúx"ĂtÇEěđŘŮré|›­=»éµzň",¤6ýg÷iňŇŇŁIK–°jD[ 'Ň5D`C°÷‰HĂÄ5Ňő qu~KG“ŁHŻońý*Ţţ2¬Ţ„Ń;n<Â?·”8‘sË9+ę挬7 wYő¡l$‡ÖfĹŃäĎ-`ăQ]Áß°ěß-«2żóĺů· ź|KŔ­Ĺ 7^ţG×Ęu:ľ(bÝ ¸Ó,&:&űTýŞP?b<؇-¨VâîoăüvŽŰłĘm‡ŹšŤsŇo śT´|"Ś«§n)(ŠR…3Â4—е‹ąÎŇýĐŚ `›¶˙ťďÎÁĆaXN¨Ź šĐZOőŽÂrťX+زp[ÄE(µ]jŰÇ8żĂx´ÝţŻÓ=gL;LÜ˙ĆŁsrx}tJ%Éř$őTÚ LĽ zÂ… FĂ$ő䵪?\ÝîWLęSLâ§(&˛§.6ĹŞxüXj¦řţˇ ZZ/šPč6JĺĹs˘IŁĆ‡ĂRŕ°hBv¶ě©RÁ žU*šŮcÜ7b,=F3!/šÓ1'­CĹ+ű"Ŕ¦ ;•ëBč'Âś+I®GÇgĹís珡ćGť?ĘŁ•PI°‡·í±/—qîţc¤©Ë»ÓŚd ˇ|š Äź#ČËX¨ăŮ8żM¦ăö9A–¶ĐŞ+´öô™“ěĂ”™†X"ŮTq0„ éX‹4jł‘ţ‡aj»ßŁÍžBµ›“Ăę&8Ócúw˙Lc“;ĺWýĺN¦q[Ú:1Aň«3ŮrK—Ýlţ­ľyWžŤ?řć/„»úZÚ×’»§ŰrlÝĐ+ĂőGĽEdh7‡‹Íwľú¬QŇ«ĹUE–4äKčmqţxĽ«8?Ý<ĺ«˙&ň€ endstream endobj 3382 0 obj << /Length 1633 /Filter /FlateDecode >> stream xÚÝZMŹŰ6˝űWčh5Ëá7sKÓÍAÓ¦©oI¨˛’ęµSŮNş˙ľC‰ôJ–lëc]9É–É™'>ÎĚăX4úŃčvňÓbňăK-"C¬R6B$Sܰ„üĂ[ňh˘…_Ż·énźŻ·Ĺ˘ěřëŃzc8â¬9B…,gÓra3żŇŰ}’¤ŰÂűĹ*F>_{ň<đ“l–!¨˘ü[¶-ŁĄţGĎ0÷(î#fKŰ’&ŇÍ>Ją\bÎc!Żîň8I?ćĹ#ÜůáUëóśŇđo‹—Ď—3=]Ţ|Ĺ­P™™ľ§’¶řÁ­(ą żş,çoň4)ÇĐ*(A0»@e.·ťţвah˛Yo=ŽqÝĹą7/" ĹTaÝP"LyO)oĂ  Ĺĺ \˘:A\ÚÝťp®äŐ˝—|­Zü ŔáŃ„Z¤EČ\PM&Ç9Űř­ż\–Ű<ö1pSÔ ÜRäň~wa„ű›űBôfĆî,,G»4źLë‘Ű& ¤u;®śK)ŢرuÂŕfhĚbáR•ݲL ôŰZ&jnY(čń®Ľ~»Ë’»ă‚1ătČ*oÝĹ_ľ¤>_¶‘ţ€›|ˇ eÇŃĄQęqůtąuÓš «dŠÓt óŰNWŐíbˇE–jŻě5˘NqÓ]“4ÁąGކ=9ĘŐóDĎÓŰo9?˙ě ˝˝=GWČ gë4Ż%§č])ÖĽlۇ˝Ţđ›ě)J¬áăŘî eF˛‡ €â6’Ĺ ČC’ľť pëvşŞžoJ]\9άöÝ"­}LRŁżŤËŢOŇäM(fGImgń+*mÉÜůÝ)mu]Ą˝ ă“}PÜs!U7ůŔ6ôŇń*‹·­ň—Ŕč+ÉOUż‹™ňî„ ç𕺶í•ăuŕ„YŃYs+‘ş« .ż>ÖxÓŽĘX$ÂeŚ‘NôČ 7Š(ÝéRÄp5t2ŠMyş tÜZ j~ź~Ël±ľśýĎ5ąúclr„&Äŕ–ŠçH ÂÉĹăęrŽşÔČjŕ†m{šŞaţŰ©Ş¸?ˇŠ/–ßţxš´  ŞĆ*9*:KíÓ4‰ą’DXŐĄI<Đo;U·gşÄ}§7Ä&Chbpn{4Á]Q ˇ(ÎSß›@ŇO"pqé—lýWE ô‘Q ŕś>Â<ň˛(€NęHŰFs!ť•$•˙ąÎy‡š$9Ůś”D‹k#čŞĎ”6W€2w2E‚Şoâmîz–É‹.Đ$ĹĽÇűKGŮK:.Óí®§#RŮÎ2Ś@vOvSýÜă…o3¸@ik?ü÷2¬%ĆŽ“0`Ę˙lžDf‚ĹĽ2Ö™9Đqk±¬ů='3WŽ»‹E˛?´&5hBŽěŤ–„›'’1 ńžî$cúmg¦ęöŚŚéHLodMbĐŚk‚ℎn‚{Ő O2!t”ý´Tő?T÷÷Ôäe‰Ů¬GjlܢšÂRŇeL¨‰ľ^¦f„vjŞ.ýQ±Ýěó¤k›´?Ę&_®öŹlyk=Ťmy[J$g X¶ˇďü¨.6 C;aU —słuůňUGÖzCm˛†&`ds8VÇk6·]jÔ˙çćöą˙Ä51¬ĎËráe>EV˘x <ůK8’(ĺ+çmŠű"ŢĄËş®y>Ľrš}ďż0ˇ ĘO@źIűLňňŰ'76V~‹wa¨;Ţ.n q]Ü(^I{/ş>Ä?ź‹łBş>^¨Ű" endstream endobj 3386 0 obj << /Length 511 /Filter /FlateDecode >> stream xÚµTÁnŰ0 ˝ű+t”…ĄDI–{K·%X€aëŞ[Z^ě¤{s\lýűÉ–śąEÝa'’âóIó ŮŽ![&W.ąXdŠYČŤ!ć¶,C°Ć°,—`s%[s Ó™Ě,˙âÁŮ×]Őn‹M5†Áľ¦ŮŰ=Ä|×z貪«¶čšöŞ8î7!1˙úÉ;¤3ĹI¤wn•|tÉĎDřâ‰S1Ö‚•ŠmÉúYés+†@ąeżä)M y˙‘Ý$× Ć¤îÝŢŚíŇ™vŤśö l_Ď«éö·HĎ<‡¶îŰŞ{jëű.§ěFŤp?˝y™fĽĽéŠ®r©˛üůG?!iů-j?cĄ ß4ő± ‡~(Ú@,Ë=±4=±Čš‘ů‘"Jŕ´;@yŹűâřîL•R‚˛Ů{Óý”0ę-×ë oçRˇgü\)dŚůOĄśxëâPť›Ě'L:lä¸J Ę'čy‰XAl&mĂWó˛ ›]Äoű5nwqźż-¶ŇĂ Ľ Ź — f$4‡sŇĐ™WĆżcTĽ™ů±ý•€Ň`ĽşR­b/M”÷çŃYĄľĆ§ČhP¨ŕ ĽÔůĄ¦m{lÓ†` ĹďR‹Ľ=="§÷!„˝"–n9ü†áŕ{OôüMJČ?ď†MŞę×sú~ş% endstream endobj 3395 0 obj << /Length 1570 /Filter /FlateDecode >> stream xÚÝZŰnŰF}×WđQâíŢ/yK›Ć€´i*äĹ V˘m¶ÔRt]˙}Ď’\™)Z$ĺôňbRÖrćěžť™łCŃč:˘Ńůäűůä»wFF–8­E4żŠ %VëČ8N4‹ćËčr*řěËü"JÉžË˙ű~łĽżMfgÜŘéŰÍâţ.Ygq¶Ú¬ýŕÉŹóɆ±4b;›ÖËe´¸›\~ˇŃß]D”gه|ä]$• Jz·ŃŻ“_&´ÄI WţÖ_jŃ‚ZµRŔ3.§qß%Y’ΛnsdÁd+BL‘Ůn€–p!w+&ˇZEFrB˛ĂF3âł0‘φŃ* ŚkbđHx1źřvo›‹Ë#RÚˇŽ…«úU†h®ę~ßä~sžAn~ÍnJâ· ĽĽÍOšč‡őŘšÔH†ÍŁÇqĂцŹä†:"5ć$vŁ-Öh±YgóătÚş ;ކhç¨ę˙ÉwÁÓUqő°âŐŰ˙1˝5‰ ‰`E 3DtŢ1AÉ•%Ž–I`Ťđďŕcßv>ŞnňnkTô™ŢĐšĚŔcn 3Á†&ÝűcßDĎ”­­!¶\µŹIvź®ëi:\÷V\ŁLś1K¨,ź¦Ĺ˘®ĘßŢ/É67gĺR­LcIšnŇ)Ë@JVŰ‚™ú,ö¦pV˘@v“®Ě–Š0 &Î?˝WZ…Bmăˇ~fiĽHľ¦ů”żfĺđŞuÔ2!vĺöçů»7Ë™™.?ͤEYXn§ź©˘-ž$n… Źţ9CnÓi˛(Ć2F«°$AÝÜÁZůťËčôU $ÎÉ…ˇČ.۬Ŕ±˛›8-ÍËČá$koݦexä3Ą˘ AyĐ;yűG!řÄůŞeaá]+1ha‹Á·-Sbâ žbµŘŰřgĂŚÁć“ŔâĘ˝\»7..p¦ŕě>$šMř¶°ě<˝.#ýăů$şĚżţ434ßZLMWńođmRWäů¸đá†8Ŕ*Ĕ֌** bÎ 1¶¨Xě7 c–(ć*1r°¨ ôŰZTjnç«PT⬸>ܬ7{őĄ ~źÄ"5–2nµ^¤‰×ëÉňPůé?‰&‡0a„Ç!R«2îúĹ”‰@W’Ěa‡ůmç°ęö€P{†˝C$őFŮ$ &ĸŹČăO<%GPµ6ś<|î਷ßfâë`­ 䇚Ž~J†U‘˝^­ŻG‘Ů{:M2a‚Ž<#)F;úŚ„ŇGq~U¨—2śQĘšÔAč0×íôU=umW ăĺ˛#ńőѤ&ôŕŃ“ nä oi-‘TŚRŢňhĺ­_Pyłšňfm‚P v"é=÷—"… ~&•>NŚ"Pü5ŞÂ ĽóÓ*†1}kľ…žĎtY¶črü­ő AŮ­D8ÎďŻ ÜÉă%´C$ÉĂz´HÎ>•zŚŞn;ú™CC¨7Ô&S0aśĄłĽ áĚ ę,îQ\˙˙t{ťő6Ůf©Ż—˙çńéÜŐŐí´ÉXüW»ťyD„ äžęĄŞBśî÷%áTŻŞŚ# ٦ŞrB73d~”ş:tŇţ6Š> stream xÚ­TMoÓ@˝űWěŃ–Čvö{Ý…&"QŔ·´ŞŚă¤Q¶.Ď~ŮM[ZÄif˝ofŢŚw 54KNŠähŞ8Ň8—’ˇb…`-%R9Ĺ’ b‰©Ŕ˛ U:ýXLłişÚ¬ĘŞîŹÁľ ¦]Ű]ĹűÎXč¬njSv­9)o7U¸x}öÎ:L(ž2–]óä´Hľ'Ä’D2ZcM9޶ÉâĐŇŢÍ`–kôÓ#· †gÖżA_’O ÄSá\gúvŮH»’`ŘďSL¨#t0–cÉ=Źô}]šş»3Íeáűé%ĹLČnÇwÚ,ßošk×4¤ç `¤†pAyô#Ł–ćĚÔUŔű„8VZ „6[;ré«2”Ř‘©ZµÍmçx´ĘTzUšžŁÜ†PŰĄC·çlŚ‚ÂŔşÝîŰż2ČHúźHŘĚÝ#őyůžU\÷ e}űXqúŹęđDő SÎŃ„ś ńWT<|67cDÄD‰C"T?="ů3Ć@‡Ç~]gD¤»ńú”ä÷Éń›ßŻěŃ”ĺ{č ˇŰĺźPŽĄ] d×(HCťZu”ŤĎł-üµßµýä6?ř0¦7BYąy‰Úô2jSvL÷şÂ–ÖxÎQ˙ęČĽŤšůˇwćîŹÝĹŤc‘ N+‡mM8řÄ˝˘™†Ô Ę> stream xÚÝZMsŰ6˝ëWđ(ÎX(ľ ć–4¶&i“¸±rr2–˘eNdĘĄ¨$îŻď‚~‰I«ťé%˘$hß°ű°1vVvć“W‹É/wňĄdÎâÖń0RR:žO‘$Îbé\Owż,Ţ:LpÄ ßĺźľŰ,wëČťQOM_oÂÝ}”dAo=xrľü5!0;dS)¤(wÂűÉőě,á»·FĚWÎ÷|ä˝ĂC‚kڵs5ůc‚-OŚ¨ĐŹúĄ`ÍZXK`-„!xéR> Ňŕ>ʢÔ%dşÍ™![‰ę&¨e|O°‚ ,…ăqŠ0°ěŁ ň¦ ‘φ಄*ÄĹăT f>Y|5×–‚8WCq™_†’TTa6W9ČĚë÷»8Ľ3ŹŮťýn'_ÍS”,·Mšfä Ů”ŘDrśFÔGŇŁĎ ‘^,Ć`W*«ŃăC—FĂpŰ5*Ă.\BńTcçlnŰÔ9¤IoRMM ‡ó8Jâ!Ö}özhB1ň±Íá&É:4éŤk~ź®l Źó.•ĘD~"Aś@2*ç!ç:—(4_&q˛ę#^oöMń !ţ8ń0‡©óg+$„­=ËhŰ%^oÜ^╉tЧYĆÉęg•ęMµ©„𤥔Ěë:©ă3 Á$"ľgč›KĹ4Xk t«4äó$‹łGsX,‹ÝLŘź`C"‚:N"ĄmŽ7V"Y]1¤87 őŐ…*é;dß.Sý7—ďŃŤ(ó/Á:Ć·Ź}¤ęM˛)„Ŕb¨Ůł1<¨ť˘WîěéhĄŔH`iVđc”íҤjc‹×šö!sfD!\¬?¶«mŹÄv†Ń6fůbYś—‰µrişI][ž–Ĺ‘ŇďńÖřśę4jsYŕúµ‡U aîŚ`ڧçÉráJ1MPcP5ýڰő ŐO¤2ßÚ<9ĺ 5B…×ńß.Ó´ڹŽÝ_pŔS Pu-»&Ł‘"ă¤GK!N(…ŞJ‘_ďj×@›‘â®—iinŇ|Î7™^÷.ĆöWCXë7IśµŠĘ…Ô^g›™Cכީ I¸ăCHp÷2©€LjC~ĆŮA—Ź Ü'di]GI /, ńYŰĽ$ú}ÔU¶şŃ‘˝%VĹĚŞŠ®_†°Ł·-Ë@‰Ţ űˇÝ[wĆ0\vIuëu‹‡lá'¶.5řbĚÁ I5®®1¨Ů‚Ž­k0€)„0¸VŢĐý`YŢZÖ*ŕ7{/6ŻŐv†Ő˛¦QE‡*\ľ ŃtFǵ3âxŁť˝ĚŰLy``Kiµílr«`eŕIM¤ůb~sńűËůÍűďĎĎjź}ş:żywůć¬1tńęÓ?lĎ_›‚˝'ĐTü“ď‰QEÇž<ˇGÉ”ť°0ćoţ W"NP /]F§›‡«Lźöź•° ˨äţ—ß´SŇË4 ŰĘÓwÁ}!Ë{ĺšW«Ją¸E7äéÚ S&’S{ĹžAŢ}ę`Ň÷¦ zQ(=5púa˙řŞĚ%li˲_ěj—asą„’9‹Lö3Ă›hőľ‚m Ů[zEú şßŮwŘß 2{FRC4Ţě¶ő ńń^A"ź’Á^r†¸?®CK™Ţłäyşč€RÇtŃâ¶ť ěq]ô­ÍZŇBŃÍC´·]­2ěSýômÖáÜúłjŠ!<5®'K±„şőL=YŞËc‘şęýqűôd+D:scś˘G©[µŢ´›ŞAÎĆą5C·VOçÖ'‘Rě˙×Q’§đn»íÝĆÍAüÓ·!¶‰÷ꚜĹőŁ 3Ęt)Ř©­«lÝfá÷sű> stream xÚÍZ]Ź[ą }ź_ˇÇöE%’`Ý Ňh`m ¸ľľ‚3‹‰l˙}ĺŹÉäk®Ź3A‚Đ6ŻtDň”tKIR(%Ő@•\hˇpqÁ‚@ T˛ Şu!SסJWâ@>$ ĵ^@Ň@ĘÍżĂčŤĚĄČ„]˛)űł9…śÍźÍ2«ë岦ţk ąVu‰C¶>ž?F9aŽŚr•«ďT49ľŚˇjőQ iěs L ”9‹ŹWJ`Îý;¬É eas lÜG©ARsôĄÉ}vâľNAÄü;ć U»$AZr ˇ?Ŕ.™OƠϢrĐÔí_sPęĆŔę3–”†•afe_gaT±¦Öŕśî¦ęnR_&FŘšN\É0”Z˙Ş­€Ě ęµ/Ą– ­/ľQ€V껆šşYk 57f+ˇő_±˛ĘĆ,•Ĺ}Ť•UIţ•Ač†ü(%UK˙Ę%_‰Ż©Vw^iPۦâQkŤ­†FX“ ęŽÔ–űŞ`áćqT|ńŤ»Őš…¦nćb)4 q‰BĂ—4Xň¨(Ú aÁŚH3ę~$-îCË=„Ĺ ‰G‡ Ý ­ÂŽÜ ¤ćČ 9rsBŔýĹÍjq “űŹ’ĘÜŤI­:Á`)JäĆd*Ą-íH”ľ-nYJâÓ0J©öđv–¦¦]D˘äQî&'ĐĐżí„].=şX<˙ßďSXü|yyµąX<{żÜôĎsůß‹Ĺ/W׫éúEůÓËĹ_[üú‚ú‡‹ĹoÓ¸ /ŚcE€ť±!PIr¬Ý`Ál¨ý= ‹gań—«çWań8üéőőŐűß_˝ňy^˝hMKmëe©«Š§Ö© ܦu2+CŞ­ý9üôÓţ~?T’łcŰaÍɢô0»ëxµY«Ń¨ ѶŞ#°­ĆUkcV¬hŃĺé°f*1éŤ]3K¬™Ź°ër5PYÉr\ĄqąZ&㕊 żMę”ĺ„vĺ{ř'Ť zZ$O±¤1 }ë»Íőűqól3l¦i““a$ç #ÎŔńëŐĺfxs9]źËލD1ˇ6x‘8˛µÉ‹=ÖL«é¬;^ÔĄ¬‡˛&ü%YO›Źjy˛ĺ8•ń”ĽÁŮV®ŃP¨ćŰő|ĽŘ‡€Öč%iČ»Q^Ô’P=3z9Ľę.Ҥk’))jw1łĄŐµ ëµůĉ± G9@eŤ Ex¶UĎ‹Ç*Î9 rą@Bó”%EŐŻ¤#źŕôa[ôĆ÷†ĄE49.Mä€5#‘g´I3°î‘óŢxÔq\˘ Łj–1×uĺŐş eµ>i&JČ87vÍ\"ˇAťo×sFb†±“J%6ŹD¶čűžéť;©YTtχPL ?ȢxŔjÍ{Š»±îBQ– e“q,“NËUm9óŔiIăzuÂP„[}×°Çš r˘c×ó…"ŞCÄÎď€ÔéŘ"V*)&lđ©j´ęÇ„¦)ÔűLµŻĐćźĂő›aův:=u4ßÚgQ-vźµÇš“»xÖuF”Ía)Y°qÖĽn ‘,M¦eTNJA¶.7X‘˝ŃÂa×ó…#ĂŽhwXąđűÄę{Ŕâašb.[vg4”$ ĚŃÂOŠŘAĆńˇîÄöXĚąëŽ9h~„s©hşM˰ŞcÉąęNQiIî9{¬{ć̶ë`Îë9+Y‹~I¬f?ňŽ~FJ…Đf–Âěł/î™Cö7°ť8;¨9×č÷wCÝńFąNŔ5 µ¶–eٶžäYŃJHV'7jËѦ÷65¤tÍҦ;¤ľßiŕĐÝH÷‡B)Żd\µÂkLÓ uÍReH“ßíÜ2éc4†~nžÂoańŻ˙' |4ŐСó˛půţíŰ—_T®©+×JťÝ÷ ĚauKůÉŐ妛ŕIMý2¦?ö¤ú šéîSńű+Ů˙FÉ/§rŢħ*{UĂ­Q˙„9OŻŻĆg<O? ‹çÓ›đň¶sźݧ‹…ź_N—›w~;"ţĽűđÝŐűëqz·˝şéßýcZ˝~ąú#t·ŁąÂ¦6fŠÍ›Ů§Ă5 %kÚę÷Čy‡ůű}“Ăzy"H¬Fˇ(XjŰŇÜď+¶ŇőčÚî5ř`~đ|¨|g<|NY`˛™ŞČD!uze1Š%ÍD,Ő·„ež2g” D3•űMĹ<]ďÚle@QůŇÝćQÚŢßÉČof]Ëź˛®ĄďgÝeż^=!ýHü~¤Qěą »ŐČÍ$Hőbgľ(Ůćż«ń}-qĚŮO'sÔÚŽ8™ęa´Ëžó˛Ŕ‡Ę»Ă”Ńo™ç)k‰­čćštë09&Öe^Ĺ;q~ýfÚgÚűţ6¦µ]Bm¶,í:iŠEKcţsú;S‘üěíRăłnâÉIl&o’=ěĹ©üd?D‡Éü'EK;ŻYüúFű±>›ßĎ#=çí;!¦ő›ZP;¦µOĺ~86S˛Í™1˛ć™şČNţZŇ,ĺ,‘żf*c%2s}ÇÔžŹ’Ó×*Ń}ÔłĎäŞzT®âDźä*»Ź-Wí§JíĐgŐ$%ŰgY;&ÔŰIkĎ—=xšÚăŻ,~ěO¦ô˝ţô—ůzĄńWůvďŮ şę^h{Áîc P ť¦_iíŞBőŰlÓóV…„NČŹ>÷`Ž8ź öł¨Ú!ŁOţÎ$*ąPE”)@•3ľÍ&čëUn€ ŘüEć»ÜŁ‹üÔĄúŕ˘L56:·‹JEŐáŕ†đsilcŤtCËŐě|ĘÚúöF6Bŕ´łĂ(ţ+¶ˇ;ERôňs'Ś/62~gv˙?/póş endstream endobj 3424 0 obj << /Length 1534 /Filter /FlateDecode >> stream xÚÝš[o›HÇßý)x©™ťűĄom·Ť¶Ňj»ŤŐ—¶Ş¨CK‰ťĹxłí§ß3Ě`Á„§»ę$†s™˙Ě9?ptáč|ör>űĺŤâ‘FFJÍŻ"…‘–2R†"I˘ůeô1ŕäŚ*˙1ăN–«"ËŻŇEVý鎯Üa}ĺŽĹŤ˙˝ČáŇól•ĺi±Î_¦›ĺÂýđâÝop„â1ÉçůŰŮëůěŻŕpDvÁhŤ4ĺŃânöń3Ž.á··FĚč衼ň.â‚!ÁśßFł?gŘ'öÔŞtYGşŇÂĺű.ˇ}ÉËśżţňşy ĆXu9PÚEVĽZßÝç6-đ­ăOX@Ö\H‹nÎ!¸fB¸2Sű…sŕŠčě?/yнüŁçŻë„ářźo×%'g«Ăqúć~§n endstream endobj 3428 0 obj << /Length 551 /Filter /FlateDecode >> stream xÚĹTŰnŰ0 }÷WčŃVÔŐîă.  ŘĄ~K‹ÂsÜ,@bo®˛­?ʲ75Š Ř°'‰Ň!yH‰‡ł ăl˝ÎŁ‹ąU,…ĚÉň{f9¤Ć0› 0Čň5[ĹŇ$·ů’I­@ˇ$żîôŞYvU26Ťß6ĺa_Ő®pۦöŕč]}‹°śá1fšB*+÷Ńę–ł5Ý-™ĄěG‡Ü3Ą%hĺsěŘuô1â=OBű­_Ör‚µAŕm HxÜ:«Rf`$Ą¸¶(«»¶r‡¶ľs=|ŢF đ÷ůüÚm2C»7 •˝­+2…Äř†ë©|V¶vđ=<.ÚmU,"“S`łąížşŚ<~5AL =É‘XŮÔ.đ(!Ž!ĽbąÓ—.ÄŃĺ†s9ĹÁ×j»mń0™^€6˙:»{üúź GqűG6Ó4fŇjČčăÎ!#Ç'tDú24ę7č#ťşxéKhP"=ďČ_˘`F AÓ˙<=Ňç=‰Ťvz0 ňĹ\f㾡€ŮL(0: ^aşŹ]—˘ᵤÝô˘ňi±Uw}Áq&ŠO¦$I[R¤?¤A0 K-óý6š† †"v,*bS¸jř“&vëŐ°Yz8ô†čŽ*ě_ęěRË`Ý{lÓŁ Ľ-‘')Ź˝tŤî 7@˝-ňE÷ÝÁgčqěDňřçă¦űFU}ި_éqp endstream endobj 3438 0 obj << /Length 1706 /Filter /FlateDecode >> stream xÚÍZ]“›6}÷ŻŕfjUßyKŇd§é×6ńä%ÍdX›ÝeâŹp¶űď{‚€ÁŘoÚ'Ř5Ü{¤Ł«{€˝;{Wł‹ŮŹŻ÷4 ĄdŢâÖSi)=R$‰·Xy|ćTi˙ŹĹëň$Ůćqz-ăęĎňř˛<ěnËc~oĎS¸ô*ŢĆi”ďŇQ–,Ëž_˙ 'L(î3|\Ľ™˝ZĚţž‡=RŃiĘ˝ĺföá#öVđŰ#jrăqÁŕ Î×޻ٟ3lćԪᲞáJ®ĺxŻĘý(Ť61 2 ÄĎ dUČ^„‚#˘‡jDŻ6B„Ąđ§Ęp5A!Ŕ,CŁ!¸Éˇ1Ȣ¸úh9ž<ŮÄÝą%‚ ÎőŘĽ,l¦ I*Úi&mÁr”—LJűdy°4–»m%°2ěJĘě-«UĽę‚0ľpä.aśŔ’’ÓŁ!’ŠNeL"Íc°Fu9uŃ:‰˛ĘĆ%™÷y‘·ż†·q@±˙pČÚ1Šś!v)‚ŠuED!6\g•™*ŠQí&‘?~*Şqyűj¦]X0ąűY:MŚ3˛.1‚p1Ă@ůDb02¦‘¶[ Ě@ÍŽsňňţôÎz{5ÄWÍ˚ޅx ˛ľDiĽÍŹ2匲Ë„PRLbJJ€L-!Š4—L"Şrn¶ŃP_™·—’VÚߣͱęůPť?á'ŃŤŮđÖ•„é­÷’)w¨¦LNč4¦´‘9j"SĐ4‘Žś—SöĆt=ÄŐ¸Ěý\5żNÖíŤ-ŮŢ öŤ2=F–3Ö.Y‹±rĎĆPĐ …Ó&ę¨iĄŔH`YNäŰ8ߧ۶­ŽD@©‚žŤpE•˙‰­—lż\ĆY ̋ɲyž['§é.­ZUő¤ĄIVrÓĆÁć(=MŐ7‚(˘ÄÜ~`[Ě&3S\6gă7>ĄĹ?ĺöňfxű *Ć^¶ć]^”˝ôó_“ígăI¬z{R «{żšM"JŻÓxY^Knâ‚ 8ä5®BĂúüˇ…Z"u\XÖ™‘ÍŚúË@ů÷QjĂs/„[@ş–٦TW·@•˛> ŞX¬¸ˇ[ţ[¦bŹdWŚ>uö,5Ś-ű€®ÁŠts¦Ô‰˛U Nˇ˘˝rÖ˝@ ])q„ęá™ ’ź1pą˝čs@ź{ěĎOż­¨ŇÚ86Ś9ˇ=źS^liĹMeAqě[ďه:ĘJˇ˘ęÚÉG§· łű@n˘F;waô°šÖx6ôe¬»ů¨k—1hÝGćím»­´çY÷uąSš†P“ťk»îX»TA<ŃwpĐYz˛ď°†¬ä•Ň6„#óöRŐJ{Ę®«ÂęáÄT‡BNtä”î0,'š#\I}Ói8qÎëb[@m U°=Úv4*{?GÍ俼N^R˛ł>r·Ź.DąběňÄÍîIžť7*čzvN’a8Éł‹ł=»ř~žť^Ćł3Öôěű›÷×Ĺ;cŽŽřu®‘Ą_—ô\żÎXřÔ&í”_˙š~ť·łKÁFM¬őľ}Ö“#ÂÎvž,Ä(„µŘ¶žű›¬z X»ĎľVq›î6gąÓ÷ÂÝçÂăíŞmW)čm1Í­RŁú¤ĽŚ[ĄšÁ…g˝h™··Ď´ŇžçVžíW/ť“í2Ť7Đ›ŽżzvD—BAä´WĎ„%&ô2–‰BPQ5ťa;2o?‡Í´§ll?{ÇHrFŮ% d·&Ó^>SŁ Ĺ…^>SPż´ęíĂľÖ=Ż‹7jékÝŘtN—MÁĹ´'Gô#Ăâ2&Šr‰tHÎtQ#S÷Ó×Ě\öµşfÍĆ9°:Ăé!ž¦Ć)čL…ŐŞq j\ţ˙UăCϵa˙˘._ĚUźJDĆ'ň“ÖŇŮoř`m”p,Öߪ“7¦”÷öjđňŚŕg"|&U_ćÚjEŕę«ŔE ±źÖ_Ö–™µ¸*´ańŹ›†Ĺüi0ě˙óxWhćx{8O˙{¦ endstream endobj 3521 0 obj << /Length 1952 /Filter /FlateDecode >> stream xÚí[ßsÚ8~çŻđŁ™)Ş~Kî[š¦L3w7ąÂôĄíd|ơ$¨1w—űëoeŮ€ –g¦/±‰e­´űíęŰ•Ś˝±‡˝~çý°óöŁâžF”Ě^y #-Ą§Š$ń†#ď«Ďt÷űđÜc‚#NĽ—ý÷÷ůh5Ť»=Ş´˙a­năY¦“ůĚ4îś ;?;ÚbʬűÔiĘ˝č¶óő;öFđěÜĂÚű'kyëqÁŕFĆÔtţěŕ|śQanÍĄ5óE!b{Ř’ \Ś[ Bş=‚1ö/ş”űáµ.Őţd–ĆÉU­Ú멽̯ě5ý‘?ďűďĂĺ$"öçÉŧlŠűÇf†‘4Ă^ŹaÄ5łcú¸šEFIËrůőíGlŮ‚H¤´ňz”!JĄíŕĄbç]Łâdśëúsżă}í !ýĚ÷2šOçÉezř cĆ‹.ÇFK—ă¸KüÔľ\z5oř ś˙˙~Wţ8ď•›żĽ°ˇRˇ‚ "± ”ŃĄĚëcOaµp 0ŁŘ˙»K…'ÝŚ;]Z,†öFł7vŮ-Ř}^jtqr~¶ÝJ`•Ć´cŢz, Ę\-’&] ŽâË$NWfPÂźŐ5Î"›\Çźf“tŘ%0ů˘ł*E€˛4źÝŹ0ł#¨–{L‡J‹/‰„ …GĂŮVĄIsčí6tĎÂ[@đ߬őjoěf7o*Á‘531ÂÂń~„ŘgË}®nÓÚŔé ĘI:F“p:ůĎt—ŕđĺÓ0‡ĂÚRÝŢ3ýešáF€żÜÄŤúĘĂŕ™÷çŤPĽ¸?]” 6ŇA3ZłT¶Ą0€ű¦Ýc“á qµ­ !ý8ýĂ»e[¶5ű7Öí1šG–Ăcn…Ü[Çq.Æd¸ÉÝeŃzű‘EháŐ°&Mf“Ů8·ótşÓz¦ąńŻş ű6R¨ÍóE2ŹĘ‚ Ś—fí5čKDŤAśžÎoIĽ\4dTĂéŁâóŮ,üËčÂ;ţĺcK·=ŢžŚF°Řä!÷nńh«!ÚjV#Ú’˘ „©p; ""ĐźŚ¨4;Yš#•‹,ă¶őâ¤UPFŘŁŮ®1§Öőă˝üĄ4ßö"fłŽź‚ č´ŕżJ—ů¸B6‡`fµ§„}ˇxfyöÓDÁ2>üŠ‚ő!Č‘ä˘Ě“6Ě©ŇÚDÝW‚0lkaŁŰo“ŮM%˛8#ŰČ2ŻU· I›"‹ËŔ?,D ÂŐÚn"лĴ}ŕ­'«Ç¸)¸tQZË$:mě3FĽV XOq/Ó’ĽúpČ3†pÍWL ÂkáĆĹľtô’< …Ŕ(P- ßô0*•Şürłe9ćdťQ˝J<2­Šx6K'éťťŰtuo>¦ĺÍĎJ.ˇg˘)ťĺp9,D_ˇN?ŢŤk‰ĘęIM×–ZzL(¤îďÝj¶"­Â|AY2t·€nŔĐZürVŕ·2µdś(ŤŰÚJr‘ÄŃý—™źNÖödŻí ÝVUů¸DT5fÓő„Ča'H7ŔŻ)Aą2·hmý¬Ü بȶŻŔ€´`®+€Ó"¬‘P'+Ů*¦C1Ől9)z„Z‰ô¦0ľ©’ ˙6ĚJŮ­tWÉ2úâźy¬iÖŘcÍË[«č ćI•Ç*ŤkL ę Q IĆşl=°’čl÷ŁÁJRrÝş<ÍШŕxi¶&äô‘ügłĎřZü'OĚ>đH˝’ą÷ÝÁ‰6ňŁl`âR)ŞXC¶t¬°ť:e¦ŚH„ŐÎţä–şľ63\ â´˛BúĚXe4Ś—5sZ¤pMi]zWne)×]> o@5Ą(u°˝3۬^ě«>Ěź?|^ÎWË­Á9äe©´x4ś“ăâś6Çą`÷Ť ÂÍqŁťŃ*ILÝ˝!úgĄ(Ë4ŚŚ¤›"U­Ő1ÇĎéjÜWçm0ć C*ç‹Ö8G”˛ă/,ÄŐăęű…dÂÉ,ůĂçŘ”Ňń»^J†&ĹaŔEb:™Ż–ĄÓ-«¶ď˝^Ç'ç­˝×6 Y"Îô/šôđň‘ Ľîvm+Č8µĹ“4Ěť{ß>)X>˘ÚIKŐNlĘ„¬€ Ţ”ż”dЇJ‘Ś5 0µ»—ŇÉ…–Iä4“Ŕňdŕ^ɱ^ß›0dŻNU¦Ămbó箾G ´ÜY6Č,ѧ)Ŕ´ť»4Č<ęl6ÚëJđ¸ą+ÁËŰ®dü'G <©t%†°PM«ú~em\®š¸RÝî©v">ćÁN÷ŮŃsή•8bX˙rĄ’ý9Ú;ä/OŽGBĘVäÖ;äčA>}@Îü‡‚[j­*ĘDOuޡ)‹g/Äâ[Sq?haFzśîűQB©ËWĹW’fŻÝ~ůCaŽBh t.'ůý˛RHnsŞ_Tv~/nÎ śWůš_0áöŽŕw"x'X±MD‹ŹQ´íx';5ö“ő—ąĐ˘©SŘĎÔý#óˇ»â+M“ ˙{76EBň±«¨˙×ľŞ endstream endobj 3414 0 obj << /Type /ObjStm /N 100 /First 996 /Length 2827 /Filter /FlateDecode >> stream xÚŐ[[o·~ׯÇö…"Ď…ŚąÔijŁhcĆ\S·†Č2ţű~‡Zî&Ťc­śŐZ}w†óńăąÎ(gKC8ŰŔ2ä,q(e`NCĘż5Éü‚ DíBHýBrÂNqČR0Ŕm.z+2¨ßŇÁŞßJ6Ô,>(CЦ>ŞC˘ä#ŠXKü.ɸŞÓŔú,X_Š_RLÓś.ĐIÍÉ*F†Ç¤’i㏊Sb"Ś„}„iµŹ@>ĹF¶b?Ś}¨o¬úFHĘą`1(`±[ňG35őy™*m[.ˇ«Ź°N*ľ¬o3Sů 0O\“¨X —DŇ.ů¨ňŔ ˝ĹŔ.µHüń’|UĆćD}-†e—*ÓŔµm‘ó ±­Ę<5ĆP”@Řë RŰ6Y›W¬ÚFuĐÔրʕŠď ĘMdBPauť@ÚDë7ôV‹P–EĂ6Ŕm0â†bąć1*5•±ÔÁLšâ`ĄáA %ŞßU Ý )%[ńPDś–,ÖöÉĄTg}רľ#¤îž­0­&l°J“Lş‚–Źh¨Ĺ-Ęĺśbl4ĆšŔŚR„¬± ¬2E—Á`˘¶%Í ¶´ý`ňÉb=Č®é ŔôRvßaXJÜvq¦tëĐhJ%·ąXŤb$¬†Yh;(XŤČV#n^QÜ?¤8BĹj°=G¨X ÖęŻX-G·#†ů&Ř\˛;n“Äí~EOž\\~5Ľ€Ďą«˙u¸üű?ľ…Cd5Ĺŕ¶őćÝë×ß]|öŮ'Ă"7üÁq“ŤČ‘“3i |$ŤŚíŐzäöRÖPˇŽ›L)Ŕ©~>ůéŐ››áÉ“áň)lŚśŻ=öƇ_şű•"nVD•Űź0Jҧ&Ü3ŮO…ŤQ…×úO,růÍőŐül˝^ —ß|őt¸|ľţx3ě×ţźVÜż_/.ż—őÍÍ[ŹlěĎ_\ţu}{őîz^ßކÇví/ëňjüâęÇáEÄ…¦axBáJýëŤ×ÁünçţćÍ@_ -Î;­çwëŇu7 Ř˙Cµˇ]\>{7Ý´ß~őćß—_\]/ëu#ż»üăĺź.ż|‘ÚßĂŚÝ'Ń€ 5XŇ=ŇW î2F% `ŢçMĎ†ËŻŻž_ PăďŢŢ\ż›o\,ă«7ëőď]ž§!c0Ť…ä9‰r°(ö›>@ćŮÍxłž´¦`{"…‚Ŕ î&ňRŮ©ą‘@÷*B¶ ŐÎËĄć@ČŘądÁó1ą\>h-Ż_ŤÓëőôbI‹—'],I9Dş·ŽZxBĺµOZ[x*1AĘő=±ě§“{Č2Jă&Ch)Ąă&#)“#çŠ!;n2ůßXŽśěČĺH»?'Źë?Ťä?ó×Ë{âşţć¸N锡şÖ€2‘>č1)W÷ąÁ2…?ŇŢí>önżT±%ř”Ž]Ť?×řG+5żG©ů·+5Ç]"Ω¨rpČ$ëČŹĘ}ꬑĽÓ™SÁ­9 ̰x=ž Đ%¤ÎĄ_ŕôi]EKŃ]&¨đ–O”ŞŃ`ˇnH2 ‡–úĚdŕŃäÍ[8¬Ćm5#€”Čź$Y“pP=”™¤č˛~TđĘ÷ ^Ůîѱ˝gňŻul-…ĽŹ›,%äš˙˛¤PúE@•۶ä7Tî•{@ĺPąTî•{«Ä˝UâŢ*qo•¸·JŇ‘Ą#KG–Ž,Y:˛tdéČŇ‘Ą#kGÖŽ¬Y;˛vdíČÚ‘µ#kGÖŽlŮ:˛udëČÖ‘­#[G¶ŽlŮ:réČĄ#—Ž\:réČĄ#—Ž\:réČĄ#׎\;ríȵ#׎\;ríȵ#׎\wČc¤> >Č}Ŕ} } }`}Pú #§“¶Ń•Ѹśšě&– Ń»j•ó{ĂŰ×Ďżţfü×ú˛üóĺ(ă8é¸e^kYIlÝ„u.Ű2'§Ę§ělQ*8łSŠHŰđĄ1ýţúęÝ/_Î?8ÝďÇššÖI¦JŠx>bĐfłlł®4§étd)ˇĽDĆÚ“ ůN©~yőú꺉Ֆ”Ęşl´€™”2,Gđ•şMqŃC·úWtÉOÚ)X*őŚIŐ×PÓ–&-Ű”m±śÓóČeÝb­yŚVĘ)S1úç¶ăJQ|űŞÝ2ŐHëh[ĺ-mĄĆ9&]ĆČ3-Q§Š’@ ł§šŤ‚ ´|+ ŕĺË?|űüzśo}ËFY8Ú˛P^¶y]Ę$):Ó¶•XŤN(Y˘S• ť™żď©Áæ"Ç#ä#Z›Eeżmó3ĎyYÔ–fă¸pz‹M5RßŢbs ”§Áî¨iđśz7Ő}Ģ©NĽÉT ^4'«ÂꔊQ¬ŕ~r© šIvŞ×Ą•ĄX;W" ő¦]Ş\ÇTiŘh™¦qćyŇÍ&5Ňq=%ŐL('ë âonĽłA'”Î}şS±B|eŻaAŃoÂŹSĂ·T‰–Ž!Ú<bçd9"×ÇU ¶˝¬ 9~›–q{3şˇö¦:‡„žEđëĎý»n3:f4!{墜“dŹSą;®DťµõëwťćŮTÇd› ăDΤĹÖʸ¸Ž§—kT?y8Č5™«ý‘É•żtď\‰¸˝“:‚ë>0NeĚQ*ُ^ó´(Ť ˘kŚcÖ,"§÷?_Ş^wr ŤŁż4ĆZg;„Űé nĐ”öúE7bŃGé7ť«żş"iGpíúŤŰ8×4® ~BŚÖ´JśfAó6i7}ýŠfŠ·ĄkBA|Ţ÷m]Ç!Ú>ĚŮ…ËŁóáTËž+ĺ t}×®ă4RA§¨‰MK቗eeÍG>}ëkAóđ߉~ŽţřZÇuĎŐ+ Q>†ëľÁ)KŤÇ©ÚI›[íu¨płzűŘz´‚|ŕJ~ş%z ×nó<Ů–­NQňęg:ĎíöT©®i©'4H˛ 9ďÉMÁ~„%xüŢ 9čôÓ$*0˙noT 룬.:Wň‰ü›Ć»ąv‰#/Ć ÍuÚĆ:ÖcµZćyYb<ˇ’Q»„”Ó,J Hă‚=ŁA‚«ż¸ČN䯾 e“ţÖO! U¶Čá”'ÇčÇŐŹŇ ;WB[Óľí˝›k7HÝJV”ʉňÇ’W4Ť<®Ű:mĽÎ9źňĽßIKLˇ}=|´`Ď!5řçÜägÓęő°sbgüRŃ2DĹ{.BO*wy@ż@w’ýßv~Ać.>Îł±Î•RnßĚÁµűĹV)J™—Í–DłşGťk™6©9—©śŇ/Đ›&:e?ë©÷ěýÂÜWµ•bÔľVŤ­ę!”jč”Ďçhę‘)ö<˛—ýžäÎÍ#ٍ"P˘ú{·;‰< ‡˘!ŽĺpŔIěQäqÔt®J+©îäşĎ\6-(Vő7~ëĽřÁőĘ[Śé¤J ™d‚Î÷ě9K)”wFĐű«?ő/ů¨uóV茹 PtÝ!‚őč‘CáĂé%AÄ-ŹÓ1v\=ĺ»éÝMu˙?ćuŰŕ™y¤Ť*iáŐ"["‰Ű)ý‚[ĐŰsE¬’ď!×cýâżý˛e} endstream endobj 3556 0 obj << /Length 1757 /Filter /FlateDecode >> stream xÚÍZMsŰ6˝ëWđHÎXľćć8¶§žiÇŤŐ\’ڇˇh›Kr):iúë» @Šź’(ąuO¤$pw±ońööî=ě]NŢÍ&o.÷4 ĄdŢěÎSi)=R$‰7›{ź| ¦Ti˙:`ŘŹľ%öSşĚ“ě.Š«Źözf/«;{ÍÜď—łËwŃ:Ťť­Óë_ĚM2ź…Á—ŮŐä|6ůsB .ě‘*­‘¦Ü‹“O_°7‡ß®<ŚX¨˝ĹČ…ÇC‚3¸ôn&żO°›[űZĚ•`3Y,Ce&KpB^$ďÜtOçsad/ß*üčńŮM#_•żšm°Ů˝‹úĂĺÄűTüü1PŞ,á§Ń×€b˙1qŹŘxŔj|ńć‚…5$¦”"2oJ( … î3Ą˘ńPoBH?ĎÄÉm–äĎĚby›ď~ŘD˙Ä˙–Ü<-çŃŚĽô <—¶ě:K⾇ót‘››Íxµ\çîöÁş°¸řH*M:(Q‹lŘD`Ěě¨FŇ8 5)Çä?źĆůIAƸ›ůÉöJŘ‘W^LҦ¬ŠfÍÂCP˙*„ş€H8·qRëń|[ůŢe«Ĺ«0}Ť†µ|¶Z,’e>TŔ»‹‚hU1®( —űCJ ¤L7!­xh˝Z8đĘą4řvŔ¦LVŕf†écQű˙wŠ9_Î[jďlVsŞĺň"]FŹéß&!Icu\ź^ť;^Ż—µ˙¶®ż§9¤íµłöń—Ů–¬!*Śs1~>‹”‹Ő4e!ÂPéŚ#-ÔF` cěżOň(}LLíS źÖq–>ĺéjŮśFĂ |5Ą˛ŕîŤAę ^¬@nhš űô¬ÜQµ—ÄÎŐ0uÖ8$ťŞ•ŃBa6V´RÓYŐł–˝&)Vg»Óy üůFµ”Ü5ĺĐKĺ_Ć0l@|AëZwŐW“Í`k@eK~őDČ$Rj6`±óż¨*ۇąôÁĚĹ$C9†ą‰TúHćÂqLÁLHŠJýÜu ë^îjxnŕU’Ö×RáĚç =Řj|H]PĚěTx[ăo$Y1 s( â@˛rŤböáôěüö揳łó›w2ä–Čú9Ž“ua¸¨v“7G§nH’eew‰WsŃ*H˛é:9ŠđŘ‹'¤Źđ@_¦KÓű(SCrM¶ŞČč»é›C‚6żµ\IĂâč„§ҧ،׎' Ž…(†99ٻ֬i7vŃú¤_/ĘĆáČżá˝8ÖyŐůÇŔ˛?Š)S1(Ą©cF4[;DC6Ű€˝Ţ2ÚVqŞŰ yˇęÇ"ÔµÜzV„íÝs‰4[RÚÜAÔNd·YmÖÝŔnxło˝3'Ů+»ů^DĹQÍž=Y3’{˛9LÂáQ-™@i…°É:r3ˇA¬q0¦‘ ´F,ýř@ż˝ý¸áv––J*rMůÇC?´^Ä5R5:k˝Gżr00ˇ¶›ŘŤ4 ˇé±IPs”°:uŤ·@vă~Čę~O żŤn^µLL/űŃFm˘Ń!v!2}śÎ%V<Ő/°¨LŞo"jÝjˇĂüö#Twk÷E§ě}·Ń‘uÉvL!­Äń2hFőň=ß– TčŚvŢíM[đŞGłµw=EYďVÉ!5:Ę.R`Bn7±)P‚’c—(uQĐ XŐôÍ0H‡ů퇤îö·h1´zÜ;˝ÖË1;¦w˝;¤F‡ÚE L0JŮüuO˝ nčWëĺß$˘ bítK )ÝŢí2*ŽňdŢěż–7W&[ĎîuL¸˝#ř­ß VĘ4ędš9&6†Ó¸<_ŃŘĎŞŁç´jÄŢĺ첛v{o ý´÷ďWFüýőóľĐĚɲ-Úţű®‡T endstream endobj 3567 0 obj << /Length 1571 /Filter /FlateDecode >> stream xÚÝZ[oŰ6~÷ŻĐŁ ,ďě[ץ tŘ:Ł/]Qh¶’hHěLVÚĺßďP”ʺؒâbŘ!Y˘ÎwČď\>ѦŃMDŁ«ŮOËŮŹoµ ±JńhyiJŚR‘¶Ś(–ëčÓ\ĐĹçĺ»KAp|®¸ú~»~ĽKL›ůĎŰŐă}˛Éă<ÝnÜŕŮĺrö÷ p,Ť`oÓbV÷łOźi´Ć{ď"J¸5Ń·bä}$$'R8Ś»č÷Ůo3ZúŮ´Ą,±ĚôŰ2„q±·ŘB•Ś´ÔDkŢgG±R–&Šĺ®pN 0tW~iţ ”áŇ4Ö$!ĚX`nC\´ˇ¬áľM+BV[$#ݤ›˙=ż­ßH˛ňz¶:ŹW-ÎJ†`#\mR…&¤#©z¶Z ±Q…%¸JxęUŔó–€gšPĐ~!?$ůc¶Ů‹˛·Sx`Ś`Ľ^€!TH˙4ők›^űăîqµJv…14pQ.V1ňőĆI˛l›U­K޶HZö-ÝynęÓ8ĂEé…ˇĚŰ–‘đ˛{ú ÇąÄ$cU"çň˙%+¦ü%/‡‡Ö#śďóţ!ţ+y˝^čůú ĆŇr!ĚüéÁąĚ ľÄÉ ©\śírq…coăĚaâ*¦ŠJ@šĘ2¦ /G "']ŠďŇx÷C‹—n Ś®†ť„Ď-%NW]śł˘~Î;m®p)©ÎíĘ&ľOÚÖfKja|ľÜ‘Fb b1J|\®×>ăňY—ŠŮM™“®fѧâö›}5 !Ę›Ë0żN çäx»ÜPXÔË®ó낉yśá$s´0ݧc[Q#žËIMAK¨™Ř"‹˛tMTé p»{Â8ÜÖ–P}]Ŕú‚˛élŐ°S J¤ëů¦Q˘Áň<‘j‰PnJř$Ş ›«0íćfśíä„řĎŘž ëSyěP“4!űM'F Â' (,ÜF CJăµzië cl;ę/µFD§lj —’›ÁŢ5ąA0Q1IĹQ¸É3*&‰ĘWš¤ÄÉŠIťQ1AM1ÉQL‚‹¦bşÜäiţôŃi¦řîŃyÍm%š´Ý+ĽŘ'š°ąPy\*Ó§&-…J/< •@Űś„žś"™DřÄą<)ęJ— Le†{ Źyp!ś,AOkҵ˝ŰfíŚĐpVGä›+cء;Ô[™,>ěüůÇ…¦>řľ—*ăVŁí¤NĂ V3&_F–qٱĂI˛l$pkŻ©áöé˛$ŕëë‚IĎWGżîa“!4!™šĆń3‘!ŕ8€ˇ1 g|1|.G5ÚHüv˘BřŤvHV;Ýj˛&@łiěHň`^F©qloŠŠS¤ÚHÜvVBŘ­ć3Ÿ4ţsěUŰb}şm¸«M¦Ó6%ąPřň&¦2…%W:TőzĂé`jn;Sě›vTę ö¨IšJNŇΆëČçŇ$±ô˙°őXŇę|[Ź—_1v‚=Ç&Űt{•üŐU8ű5KVm Ő§V°÷*íS‰XĎĹ™¶ööîć}Rů»xŕ^x;Ŕ•äĂŃĺ tO×] >ŕ{‡“ĺ± š0ŕÇôqŃ20˘NÔĂß\ŹÖĂ`1 §í¶DËÉrŘ`r‰PýqÁ‚Řďl#q[›D v™Ví<ÎýńŰmşş=ě NçWţŇmüđlv]=d¸ĂMşĐ„”ÓÄ1(Me/Ŕ—[8tĚTŠnľĆá¶óÂĹ5¦şČě]“4Áč4m Rb5/D˘).ž‹h9q›żĂôĐ:Ňű;MşýLwCŘě~“=)P¦NŰBĂNŐË((G‡Pë1ű&$Ë&ÔAŕ8čvşBäËÖ÷˙S2íŘîu—gŇäM;Mj;ÔžSj›7˙]©ÝŁ0R ňç™ęĎ=Yĺź›†BůŤBĹşRĺŽúU‚çÉşľőľ:yç´Řců…• Âź}%í+Éý·k7¶šca8]-Ę ť;µÜ‹ój¨ÓđWË«BΊ·ö§ęĎE.Ä˙yş)q˛9\¨Ňł?ă endstream endobj 3571 0 obj << /Length 500 /Filter /FlateDecode >> stream xÚµTMoś0Ľó+|4R÷ĺů;·M»YuĄJ©Â-‰" l˛UR–¤Ý_›-Ť8¤‡žŢ3 ă™ÇŘH’ur‘'g—™$¬Ö‚ä[’!­If9hFňŠÜPŚĄ žz• ¤Ĺ÷:¬vM_wۢ<-CýJ» µŚď×ůú˘8ěĘȵĽúěk•,˝Ë7É*O~$ĚéBÂN:ŚĂ%)÷ÉÍ’Ę˝Űa ů9 ÷D*J ×?‘ëäk‚ŃWľőet*fśj8µ 2ŻçÍ`„r»pÇ<űÎůľďęţĄkîűź˛kBţ솶¬ŇŚV«×şéóTz|öá†Ţ˘Ât!•¦eŰúđ°tŕǢ ĚLëąöĚŚ rdľEÄpęĐůŽ âiW>̨ä¤ÉFŘ»¶~×özÂë,k –Ň9)€Đú?I9M˘)öőÜp;aR!‘c”Î.…ť ÂĘ!; .A+ľZVUHvÂę5劺ß–yĘxSţâźKľĘ\đ˙%÷ăYÖŔ37•? — ´+ČuÝÔ]Ń×QjĄ~›Mę4ľÄŹ™ ĂseĎ•«­Ç¶]<ÝžxWŽV Ňît3ÄMG¨Ď»» †)ľy˘cč?µţŽůu|‚R7oçôM0t endstream endobj 3578 0 obj << /Length 1594 /Filter /FlateDecode >> stream xÚÝZŰŽŰ6}÷WčQb–ÛȼĄ·M‘&F^6A ĘÚ]µ^;•ĺ$ű÷J”W˛dYoPôIľĐ3‡s83gdQďÎŁŢŐěÇĺě‡_áib”âŢňÖ (ŃJyaD·\y7ľ`óŹËkŹKApü]ţéëíjżŽç h˙çm´7Y%ŰŤ]<űe9űg¸–zp°©5ŃLxŃĂěć#őVřݵG 7ÚűšŻ|đ„äD ëcí˝›ý1Ł'%LÚ—öR˘ć-¨˘–˛řf΄¦áCśĹéŔßĺČJ“­q‹ »j¸8¬B•ôÁE”6p50 ůn€VI¦ćGHdű ×I¸k$!ôXÇÜTýĘ€(&ë~_ĺ~sž‘ÜüšÝ;âă9§ţ—9“>˛ďľ{ü7QJ†^F`lR$‘šĆ3Dl"GÔˇpOśă©ÔE¬˘í&[ÎQż5 ®ĆhçŞę˙ÉwÁ×mqµ°ÂdipŠÁ€šÄ  I9‰ďNŔ>ÉĂ%†şb°Á2ĐÁÇ8żí|TÝţnÝÖ¨ť:!6Bf$CĄ EşĎɱ‰%\é€Há{gűtSŻŰĺő(üH:öŤhB…(~M‹¨&.ň»}Ĺ»ÜXä±R®Äąş§é6-SfU2‡”Ą_“]AM}G{X8Xć4s{s‚ďíŻŹz-—ŘěXŮPł4ŚâOiľĺO™[^µŽÍ [.˙ţżZÍő[˛ů{9Úĺ˝`ţ*qóB ›ů;{şř®˝ÓÂ0Ď a,¤®”Á“ĺ”r· h•!\T®É›Ń‹ŔrŮÁ=ëpϱp€â=ĎćPż$€PÔyĺJí \cMŐϊ摨¤.áóŐ»t޵?ú©4I±îńchLwC%ĎÉöw·hﲜ ł˝rň$Ô’ý(É1˝’‹Ć =ă˛wµ*25tżµő*˝s…ëíŐ̻ɿ¶yRłî>jš }r>ËmńPÄ0­3%n{b«”‚\HgJşWőÓ™#·öĘšß.ťą¶Ôťí‘á5™A<&/-ĆŘeTŚä¨w©îŁbFúmg¦ę¶CĹô$f0˛&1h‚˛‰9méËč~ x-koOÝ?@;CU˙cu˙p@MbĐ„Rf1Ç~Ó1¨¦°UIŠŤšBŮ]?Ťâľ| FŮä Mp“ř°nĂDľ°Xs†¶lKŽĂYÂFbh%¬†áac˛)nuőcm8ÔkŁ…JlŇěfmHĹźqx ąIł›ě=»Éď6»™‹Ěnśóćěö. ł¸2ĽˇwĂ›Týt9 Dnz sŐgz:>AsAßé‰+őLPTm’l‰'ĚŢc 7öаqcI~ţs çv®śvśăLÁ»‡›ţ g–Ý^sÉHż­ý ę¶k,ŮĺÔť•żĂˇ5™AiĚ€ŔŁőË#EŐ ő;Î;AU÷cĹď`f}ufFë0x…`Rcű÷š¬ĂP…ŁŔ,gÂTrädcé·µ±ÔÜ.“˛±„î˙ŇŻ÷ItÔc ęŹI,ŠŁ“qÉ&Jcű¸JĽ:Ő‚†o˘É!šjÚ K+95ŕĐE­.UmÖ©ÔFúmç°ęöÜ˝•vöN‘4e“$+«aL‹oŢW ÎJÁúłMĺłW ëh[_•$k¦}úFą]Ũ`C{Tk#ČëňŵŤŃŢ˝aîBAŻ€ľ”ćĄäĹ»[»¶lúąá$š»QSSß¶äĘwaV.µmöjy•×ćüśÇňŮ/ű Ă·Ç»ĽgĹ›ăâö/»ř endstream endobj 3586 0 obj << /Length 1736 /Filter /FlateDecode >> stream xÚÝZYsŰ6~ׯŕŁ8SŁXÜČ›sÔÓô7Öä%Éd‰¶ŐČRJŃuýď» A™I™‡ÔéäEĐí.öŰ]| 7 .&/g“Ň"0Ä*ĹŮu )1JÚ2˘ -‚SIÂ3¦Íô2ätýçź–ë4N®Łůîc>ľĘ‡Íu>¦·ţ÷‹ŮĹËh»ś{Yç—?»7Öň©ŕá§ŮŰÉ›ŮäŻ  ]4€ťĆĂD0ż›|řDţö6 „[y— ćMň°ÜćR]ĆŢÎĽ#ôS=&Ěeüű^ůć–(î\śÍL¬Îź“lÍźS?˝,3źs^L˙†Ąý|ęéâ}(0|’™ż9ł™™~¤ ¤ru`›ć_Îqúm”ä˛AŤŠ©,B© FělůH)÷ł€–Q"î'E«e´ýˇÁP磋iťôŁ+@‰.ęUIn: Í× tÚd Çę­Ô‰LŮybÝĹM~ŕ„Ů’$ •PŢ á3n1•¤Â0DIëcs±đőÁ˙w«đŐ>Ż&ME}o[…ŔrźáLň|P»\QÄ2Ď/.C&P.ůD0­¦g-VfFŐi´näV®Áú/ Ö`Ą nŻţ7V˙ŠŢóLo^aÖť6č|Ž®e“čok*Ăj5+µf#±˘–…kŇs”3ľßv̆ĐŚYY˙“î ižWXX0˝ Ş"$ćĺ(`$úĚŘ$b¸Q AŠJeµţµŕ1Lo3eµż;µÍýËĐęmj)Áúq¤®‘:!Í’G)ľ?šĹNAł^ÇŰ4qŰĺĆ˝<>u]OL«®‹±+öt×f¸íů2‰çMl;lěv&.ďÚ 4Ďžš\eÝj‚$‚ ŕw˛©*ňtO9`zQŐťTiK´­rŞ ĎŤ;yěÄ­ÚÚě˙†> Ü yżjP+ýÜjÂŘ1ŽBP‹ hR¬¶–ţzKEílY”ţ(ÍLJŰĺüvo—2ŐŐ(O¸%ü1-ŰŰîţć×Đs"čHö˱–-ŽłqscYuŮ·Şmݬµ´mŻ–nꀵAŐŰŘ:T(BéqGŽ\3"ŮqŽąV¨®Vè©mFެµ…ń6ŕŐK_ĂꨠÎ`źâŽe§$T\`ă$Ő÷G¨řq•TeBőf˝řuąţІbJ·đ'‰˙R¦2˛3˛5ň‚v$/¬ËŃ0îŇÓ8†eb¶(×pbÝ®\·-śö[8ň7A¨U>đUţ‡ĚŞÉdd ĺ©9ô×ěí±Yżk»rX@ÂÍ„ç°ţ,â*uÝ­ Ó´ °Ů°Â´ęČJQ&Á¬”Ăz9Ž•2dtT›ă°RF9QŞ+¨·q»¬¨íĆJWyésµ}â¶míok *°©Ń8 îě’‰ă°Xş›zˇŞ¨}ŽŮd µ`Ňߨ:&(B>«}w6y¤ëmĐř]·ëíŢjű\oWě8x˝ý-JâuÚ‚ŢvsźŹ:DëĹS±\Gé˛h;věuľ1? }ÝQŹ”#/ČÁť‹Â±‚A)˘ŠkjçµÁ0Lo3öeµW%źí2ú[QYŞ|=îA”¸5ĺ)ÂmÝÝR¨ą†’â˝gúUÉŢ6ŐAABŤëČÁ]S; ·PŔÉXĎBżf‡Gîĺń2ĂÔ7#SÖţK(vÚ3,î·ń˘zlrĄůŘîŃĹ'ň°Lýś¸(”Qí˝ž:Ş(Ć5ôŔó«ÔÓ5ôîR-ů˙±ˇ?tᮟ˝=Ş>…W> stream xÚĹZMsŰ6˝ëWđHÍXľ ć–´¶&žĆqmĄ—$ăa)Zbc“.EĹu}$(ń’E1šžH‘Ŕîońövv¦Ł÷łŃ› Ź; ůR2gvďx))ϧHg6wľ¸śŹżÍ.&8â„AżâéÇtľ~Ćę)÷×4\?FIäqščĆŁóŮčď¶Ř!›J!Eą>Žľ|ĂÎŢ]:1_9ĎEËG‡ †×>śŰŃď#lâÄ }«/UÔ̵$Wa D˘đń„`ŚÝ§ŕŻč<™ĎĆR¸YęĐ©rżbÇźP}GŠŘ+§o._óť ĺH Ušż“ŕ!ţwL„kf!(/×ď.ĎË»<ějWĐ5l7ÔŤöÄ‘ĄŁ›(_gÉŞŮÝ"Ą&oBÂ\”˝qJ|_^Wë0ŚV…1ífȦ廤leYš•·a:7cKóe”=Ç«¨ c_ô§€¶jb! áŘs—A¦Ť˝ą Üńˇ7•ş·đ1R%ŮWŚY٨ 7ÂĐڴѸNŁü*xl@Ę…tă$7.®u—mzgß-ö!XĚÔ6ý‰1€‘¢•ë$,–C™ iy]Dąy°43›”që9ľo˝‚ŃÓj‰…),Ż8‰“…I¶‡‡Vëy› Ľ3ěVnŢ?eiŘtT¦gň˝ú54ýŽ^GX'ކŔ/Gz=¦Ü 2GIâ6sŐFÂ×–Ů~*P2ľˇ‚š ˝Čd ¤9tŘc;&ÁKo\§;Â<$Ąr„"H*łĚLt‰Ś‚8WÇşnd L—0» Ď74:ɰ…ďeLŢuůăYsKäÖÔŮćV;}âĽ;:A!ş#ĆÖE×óňý#ŃÝÚô±ŃłX®ăŢ ’ĺeď«W×đ¶KťŇđT={™Ź$Űe®«Ú]VŚä.·Đš¤1VçÍIś[ ˘fOČ™U^>ÜÍ× µđu“q„]ĎM  3K¤L",hŐaŤk–Ş–ΙeŽ(,/ą1µČw:Č@SßâÎj—säů˘>¤˛őĘ)jŠů!‘nęÉýŁ "šůJÍa’C͚͡ŁáŚíŞäŹłŽ*1 x[qĺÂďâÚ‚#_m¦EOů6ě˝iî{@ŁÖD>%GWäÍé "©@L +"Đ€)Ć@ŕBÚ¶ł|g9Ň»µŽ4śß¤iŢK^Tú$̢ ŹvŐ†ţńv1XzĂ@#bőŠäă„Ü÷«ĘoŃnČŽóm‡¬îú•Ң=ÍvâŇ;¨..`Â#ĂÇ áĹEB•â`ŚĂN@ÔHx±ÚËq®í°Ô=JZËg:›Ţ]üönzwőéęü¬őěóíůÝÇëgť¦ł÷ź/€”±Q6 {Ź ‹!`„!đ41TU€!襔4Ęžż#ÝZńkx˝Řě…„űä­} ¬f›ô#ŢM{ýë@ŁM`,Ib¦`|Ř;ˇ$fĐť ~ÂďĹŹ“|iđšrŮ;…\ľ3ę¦O·ą®‘[µÜő$@śyeôCoŘ‚ě:‹B›:d 7· 5Ź÷čbłl#6Ňç0f"ů!ú|Łxó—§ý0ż˘Wz»jÓČ ö×Č\‚\i}—ą‰4#$ !ů8vk{çŇš^sŮÂ,ľ›éČůR4(aŻ;4/ŞŇěď˙KąŹ2›ŤJ€ĹůŞ*úe qş6OЇőˇ»Il6=Z`S›p:L¬Q&óŘPQ  Q@<~mĄě¬(GúµV”†ŰY\)ęŔdÎó2—-Ͷ2ˇ!­Mź˘ů®Ó?Ü.Z`‚xĂ$…ý,&ţO@KOH9‰EŤUvŁuś_;Zu·ł1ň-ÍŞ­WůžýN˙¨ş P]ś†aB0’Rü$L˛ MšÝIoż]ęŰR=˝ÔWßĐ—ŐJÚZď°»  .‡©5mŁçF·§Z# Ă®Ź˙ŚśÉžµ´›:‰v[Ż–7Q®N#ÜŽ‘MĽ×—Ő“(·~!hJŮá] vjéZö`“ް§g‡^ĺż}¤whóĄtl•‘pťe‘!Ó#dŇřV ôjOć{PĚŤ“e,˘˙Y­¶˛­§{Ţ«%ŻyĚ_ý äşët‘ I %pąˇžiŃŔ ĚlT“ö±şąÔs¶6?¨ą`}ţŻď~+ü·‚UG¤t{DZŽÍéÚl¬puR˝ ňŞ©¦ŤélZäOńŕOmčĄú„Vě˙Ľ,Š5%í‰úľő™ś endstream endobj 3543 0 obj << /Type /ObjStm /N 100 /First 980 /Length 2169 /Filter /FlateDecode >> stream xÚŐZmoąţî_ÁŹíŠg†@pŔÝi ´@p жA¬´« m`Ž\˙}ꎴ˛“8ÉÚV÷śGÔ,ůpŢř W…›„ 7 Ył †˙± -Ô\C©)1q!«Í 9•ěR ™ ‰C.ÚÇjČ•ó $ńIű¦76—,PĘęR ”ÍÇr TŞKD*ů·T )V $ýbHBţŐ¤X˘Ö@FŔ×IR\‚ Ą®‡ŹEű¶TŮwá{ŇÜ—ĹG3ߦçD]˛Ŕ» -ăY¬Á-peźĄ&ŕéSŐجK°eźąX¬uICĹÂPÉ »°*ď6&|cXÓôM$lŚfäZZR}SIóˇĘˇ*ű¶_š:HěWRr/ ÉÜ% BÝaž+%ź¸ç¤hŞA˛C† >„)Ĺ­ç‘ÚwR0$É'P“>-Öí¶x1fWą‰Ź6qŁÂ]šĚ…®őG9hÇ«5(·>Ö‚Jqč‰z´áQĄ>”!aÎ ¤j™Ý řŇŁŻbFmɵ°!mě^u-©ÉR0*ľ0Ř. aóT‚Ií’ÓćßY‘“ ˙›uäĹ‚5÷ YësŔ-eRŇM“CËÝö–;l­Ń…Ć=âáç졥ĐvÄĘ H\˘ĐđźKČĄ”‹[Řł1FőTs§ą(> Kśú krőÁćR““GŹNVĎ˙űn «źOOĎ.NVĎ>¬/úçżľ9ýĎÉę—łóq:‘÷éĺęĎ«ż¬~}‘ű‡“ŐoÓć"ĽhU˝ HĎáJŃ3&›F¸j?‡GŹÂęYXýéěůYX=x}~öáÝ«WľÎ«×CŢćµŘv]tTŕ6•mÚ¦ÖĘÔěŹá§źNđďîPs-QŰ%VJQ¶ëćÝđo+ŰA¨l¸­·e ©MëI׹Řf#2µ!,eŠČâV®1;öĹv]ŹC.c]oĆ´YŹëÔxDĆfËUť¨ęE"#Í!Ŕ‘$.ĺhĆJ©Ć„3`Ö9h7‚#OM·†ł)eiS28”°#‚őřD5¸Ë9 Ž¤ĺ†˝÷hq," !x[}p*1#m0qiKÎţ/JMZÚn`ËĽŃ­ň¤–p~ć\¶Ł Çô?Eư Ö㙣ޟ÷ ĚsyŹ”Kî¸"Ň\RL 6FŃü<” ·] ôýĹů‡ÍĹ߇ó7Ăúítô„ŤÍ.k¦âDŞú fŹ„<˛s®o"˝<3ó¶m’´q2jSŮČç:l‡ÜČÇLŽ-ŚJEcç“KŤzaȰ"Hă(—Ňq Ź‘ž•ËoaőŹţ ä;ČĽB•>ýđöíË/*kęĘŞž'ü=”™Ł÷9)?9;˝č&x÷‘óžţŘ´ ”{ꟊ7…uţ„6PC.ď?â“Öť*f]==?Ű<›`ú°zúřIX=ź~ż/?öćÓáőt˛ú‹O§męĎ»ÓŢź}8ßLďw­UűŰ4ľ~9ű=t?ÍGB“a8Ł­Á…O‡sLâúm§ßCĺ=Öďí§ĂęÝç^(łŔłPgAfAgÁö„¶jš…y‰:/QwKĽ"VđżŰtż‹ßĐôlŕ D¨Fúµjä4ixs:ťÓnXśv~i âýę;s‹©ŇMÁtĘYë ďUĺ=?•Â1ł,TN5ú­ë"ĺjř “_™Á©=ŕ–)ăüZ¨Lz+´PYÜťyµ˙„ľÂíŻůO»€ěo„Úž ßšé‹~ÎôĄŢ™éËĚë…ŹÉľ÷I+T˘˛’Öc•~PŇVö$˝LZńË z«¤ąAŇ^UžóĐjl\*c…LşL™›_Ë/ś™~"Y¦LФ-K•«E3şHy˙çîiřIâ}””ÇICÍפa»U^5ŠŢäúCŢh,»¤řŠ•>6ďímfźŰLĺÎĄKçŇĄó•„ÖďPĂ0k$ńČ^» ]Ť5篔 _ŕčü§řE°ż@͆”ő·ţ@ńµâőěb¸Žy/Ťv¦ř»É‚öĆ ý }öóö ”ńËMá.Śő&1Żź—EF»źhˇ2šYş–ř\ŁĚ”Ł˙nd™2ČłĄEĘT`.^¸AĘţjµÝ*©—“•ăÔE»ć"Ňî~ióuˇÍ×…6_ÚqŻ ÷$A«Feg’ ™l÷ËXföä©î?¤ö_Uţ˘s˝× DGdéo̬ůE2Ś™™ĐG´Dä@DĘeP»‘ł›t_vMCĄ†N°,T–­Ę2enŁ.TVéoâ)˙Mę2ejčłBţ?âqíšzŐŽPŻć6żđhskskskÇ­`ąD_–ŕ…ţűE$8ˇ/Ż_= ŹMĐf1:ÓĚWürţ›8ľcĹč—G ésĹ ňc¸Ü3˘h†ő%˛)I8i(4gî÷çC+Ţf„ĺűĎűîECügˇ{Ą¦XPľ…âËuĽÝ¤Ž·zWÂíş˘_bľ¶€^§ FáÄy‘rĄi±˛ż˙jW”˙fî endstream endobj 3608 0 obj << /Length 1687 /Filter /FlateDecode >> stream xÚÝZŰnŰF}×Wđ‘˘íÎ޸›7'MŤháĆzK‚€‘čX….E×MżľłÜĄLŠÍ‹}"Q3gyvfÎĚŠ_\NŢĚ'?ý‰@Łć·AD‰V* # ‚ů2řJ0ť±H‡×SNĂřĎÄ}Zmł$˝Ť‡ŹîúÖ]v·îšÝůď/ç—oâýjám]\˙joŚáˇÓOó«É»ůäŰ ŕ€Ck˘™›É‡O4XâwW%Üčŕ1rɉď×ÁÍäŹ őkŁ„I{k/ĹJyĂJ®TJ·Ôë)aśĆ›—6÷9˛Âd#B)čv€š0.K&€P%H0Be‹ |AÎDľ eâ€iÂŃK$$2ÇÜz˛Ő&©ż[@„ĐCýrSv+#˘¬şť[·9Ëq殏w«ĹÝцŘgqVěť˝»Ţ?ěď’e±ÄĹ™xël Ŕý¤ĆŃĹ Q;]ö˝qŽT{şľß·Ń5Ěo3]e·ó)0ZßÍ‘ë:EJoTuRĐ„ŔŘE D„·ÇaR%†úś°ŘmłRzűużOżzCď/Űh*y‹@âŐS9'*Ů7»+b©ťµŢ°ë¬ˇ 3Ž5*pÍb$k\ĘŐDJ_´ţš2Ćë↹n¦©ěůÝ6[eßĹC{d5·¨ĐÝÄaďÔ9D‘’9|˛ÁUÔÇFĎ­" K!Üë}źdé¶Z—‹ë=ŚÔ3Đ„ CÔ×˙˛÷‹E˛ĎŤˇ™Yů“> ’4ÝĄ#Ë‚,d)}\í]|U—q´†™GÁ ŞźaŚýů‘Ăç·ŻŘU„őŐç4_óçĚ?^6ŹęĹî<˙ř=Šł›äŰĹr…˧|1c’…©¤ ţ´$&’…ܰ¨đŇë4Y¸ghî8}Ŕ–Wy á«\ ë¬Ĺُ—÷™±@hwqę­‹ŔŕO° ű•?řH)o&Văő*Ţ7:çŘ‹8ç‡Őçő˛mőňěf\ŁÖ5ÂďTőT ĎŞ ×Di}چév4 Äó/„˛čmě´fť fJ–$TB÷(dg "˘)Ć (Ë}Ľ\,—^NúßWP_[+¤Ý˙×W[ŰĘä-ĂMśY\äů`¶9BĂ`p» q}ŚÉQUSrIhçé¤ÝÚÚ/ ôŰX2+n»ő ‹R>+ő ńryşečąÎ&=Ý.pźg ‹ęĄ±Ś)˘QçHĽr*J9°…˛aŽ›)+ű˝Čýşb¸="j›Ř*ňŘQĆô‡X§MČ‘M¸üÁh)ę ěŇÔ tŰLPÉës=Ýó´ôV§M€ŁhŐŰŘT‡ňśH X=ŁăŞy’›Ţľű´v0­…ë>N“¦ÔńÔdŤ&a°äŚŁ e¤’jlô0˘Ň&WZYq‚˘a~©¸ý=Ţś ×Ôa®â/6×­ýWͱî‰ę µÎš2Ő®YTšlׄ4y?ţk×=K»Ć9ݶkŮŰÝć>µëĘEyާ̈́TvŔޤş5äő˛Ň±­| Ŕ» oźśđ6Ĺ,ăhŁĘEo‹CqŔW»íĎß¶9(ä,Â×§Ď3râPÉŽ#§®“UĹł“Mo˝&Űîj ˝ŞÄÂ?SĚ^ÉQfŰ=d÷^cĎÇÖ‰7÷¸ZŻÝÝ—#ę“%9•đú/·N8šgŚO6€˝`ľăXÉiQÉć;Ń9ß©—ďŕ…ňÝŤźzÉ®îEÚ–€uJE şNĄ¸xˇAě:zyVŰžp®$ďď]öňţLE‚Î%IPE„2ŐYîź§¬Ő: ş9€ ęBŃ ś&…kťÄŇkhŽ‘6®§Ľ -Î3(‚ČŽRşĚ‰şm¬seŻŹ•÷ÉÉö©?Ö:Sh‚éqm. f~žá(›=U—éĂ0·ÍD•˝Ž:Qî ŞÎľnĂÇu´ ‰"u&J¤¦đ.Ęýýö™:T€śó@ą?ě:khBFŃ8ÖP ĆĎŁîŁ4Ł¦Łşčş™¦˛çv ÜuŃc|”`ΉîwDŇS±µ‡Lěż;ˇh;@Bč¬Ď˙áŠ˙ř)Â"Ô‘ĺ9 QĘ'ěË÷nťeu¤˙[qse5Ý˙Ŕü…‚pw@_KóZňâhŤůŁ5űŻ?kxµpćSMĂô0>đN‹Gm/p9żĚeˇë5­!żńŢŮ»żżÍ•u˛=~O˙ý`'` endstream endobj 3613 0 obj << /Length 513 /Filter /FlateDecode >> stream xÚĹTËnŰ0Ľë+x”€xł|S9m Đ6B.N¨2ăş°ĺT•ŰúﻤDÇ ti/=ń5»śYîŮš!›gďŞěňÚ*ć 4F˛ę‰Yg łĄĂYµbË\™âˇZ0©(.).îŢěW‡­/fÂşüýľ9ě|Ű×ýfßpöˇĘľgś°Čř)§sŕ„bÍ.[> [ŃŮ‚!Čұ_ącJKĐ*ܱe·Ů§ GžB‡ik9ÁÚpŔD[ç @@čŤJY‚‘˙o ”·ż(,Ýn´ü§Âŕí„$®ŕĄżéEylĺÔ—×$÷<“ÔÎĘ6Џ¸!Šúb°D=ƆţďÖŁ>Ď3¶ŚÇw…ĹŘ<\ç›úK Df:żn[Mlľ $ĽBLyL[˛Řß8,ý„Ą· Ą54™Hi0”1ĘšűÖwuďW82yoŇdĆ…äjqĽŇĺ•–Ăę)`÷ݰ‰7Ͱ¨ ‡yđâŮYÝ'h°ŘĽšÇw‰±jÇôóßÇuěWßľ-Ôµl'° endstream endobj 3621 0 obj << /Length 1676 /Filter /FlateDecode >> stream xÚÝZM“›F˝ëWp„Şh2ß3řf;¶*NRµ±UľŘ.˲»ÄryłůőéA­+ĺËZFÝ=ózşßaçÎÁÎböb9űůµâŽFľ”ĚYŢ: #-ĄŁ|Š$q–7ÎW BĽ9UÚ˝ňvż˘ňSśäQz„»Źĺř˛6·ĺßŰű‹ĺâEšµőüęWsáűĚĺĘű´|3{µśý=#vČ.­‘¦Ü ׳ź°s÷Ţ81_;Ĺ̵ĂC‚3¸^9ďfΰ]FTK3T+e+•°R!ĘĄ^y”»A¬#XšG›‘U&;#Ý F”ń]€5a)Ĺ)ÂeŹ Ma–&ŠŐ\ŽPŤxQ\r´\OŻŁöŢAçz¬_ć×Ý …$M·Kă¶@9ČËńá>ďâ›Gl¶7'ÂŤkŹbwUĺRVŽY”·Ă°RDđmč8ä’Ó°Ł>’Š^;ł‰ŚA¶j‹Ýă×>ěĆůíĆ®îvéÂřî>Ćݨip”mŔ‡; $˘ë?¤@˘ůŘŚp“ä= ö[~?˝ł†Ţ.ú`«ň âŞV˝`9 ĚÂňfśÜMsđjÚ`‚ Büi`b[Á'‚É8 Â a]ą«<ÇąîFŻîů˝§ ±®¶—9tŁlă&”#qÚŰ`R ±1°uK%%ĽÜ·QľM“fż®Ć(EŔćD#ĚíńÁ¶ď؍϶ae…100·›UĚ|niN”¦›ÔłÇë¦Kâ¬Ä¦ąŚ5ĚmĐĆ4Ő{¦…(l‰ůú1cPI™Ůâ˛9¤Ŕ»>§Ĺš?çvzÝ<°&y5ý+¶wy‘@ŇÍŹ“//ŁîG,p‡/!&żúň7“nAz•Fa9—\ RĹßy*Çś`÷§Ž (#˛ł U)3ô€7ô”{¤Övű§ű4€c@…ă `Ě …J[@9h{XËóık)nP+8\čôń7UĹT/=ZxC€§ ÜĘż”đŔ"ĹyÂc¤ßÎ>Úp{žđX•őĎÔů†Ů±n:<Ö6R`BMÔN®¸”ÎP‡Čy:c¤ßn¨ęnO錤c ŞŤ‰!łý&Nc‚Ë|L€ęódĹpżCdE#^Yń5HŁ$?‚_¶Ů¦Őَ ą)/n˘,Ź“ Ź7‰WW&QšyýJĄ7ďG;Ŕž(L¸Tnş0a ˛|0&ŻäA–†Çła¤ŰNě^ßŐ yĐÁđ(Zr´č°h Ý€\Fr ŁŻÎ‡#]wăP÷|JöŤáAµa¬ßÄiX¤†ĘݦÂBT°Ń`Tq+űľŽ™?Ź=ĐŚsß MÝűoßy/°Řf‘-uů¦×A^ě€1îyČCśŰ9QU*{QĽž6ŞRÁm=IáBřO¨đ9Óců(|ŐTřü2 Ż% …ż˝~ďq]<(2ZęşçI,¨{IĎU÷ŚůO­éN©űďB]Ýó¦w)بŤµRąK©rDŘŮB•ůů¬RŞľmäŰë,U ¦XµM­j-·éf]Ý/˝ŇFËüĘ–Ôő A ÔQőÓ÷ó•ĚŞ¦ÓŻŽGúí„°áö˘oá†GŮÉÓÔ25> stream xÚ˝XÉnŰH˝ë+ú(ĂNďKŽŹ ™ŃÍ Z˘e©P´˙ýT/¤¸I‰í`NÉîWŐőŞ^EĐt5űs1űt©2Ř*ĹŃâi‚ŤRH[†E‹ş™ “|[\#.”Ă>˙ôKązÚćIĘ´™_”˧]^ÔY˝) ·xö×bö}Fa-A´Ĺ4&Đr7»ůFĐ Ţ]#‚ą5čĹŻÜ!!9–ÂŮآgĎHô“`&ÝOwiĽć2l)•]·Ťń[bĘ’”Bć—OĹŇův™™?$TÎË*ÜěËC˝/‹M±÷yBéüN“î+żn™íۇî–Ův{đžö4¸I°–V97 J9Á‚°ŕáŃ­DĽ~şä¶Ă UXŤŔ.¶Z€[Ćdo/şIĄTóç„ă›U|çH¨Ö‘Ťü*GŰş^ßUů˛¬VC ÷ö–H’.O»ó8yÂI0 Q»«_÷ů]=…č޸ţqÎ#eŐWpmeł (cđ‘ž%.­‰˛Ú‚Ć,G)Ř ‚‰Ź9\?Ć!"p¸-Â5+’ńa{¶|Ą­M LŇßEŘ ¤-ś~Sçw]W:ݧhÜ–ÍiŠűŢ®úpW—ČĹ3 <xŢÂŞCýKö'Bu¶¬Rn11pŘH}¬~Lcý_äu¶Ůć«PµůaYmö­XM×®+V¦°’9ÁCA‰€#ý;#Ç q°]­ĎáS›hkŐĄ~|ć¨MRéüëX¦=§Ś`ËTŁÚľržűe ÜRŇŮ"Ahmvř˘ŹBŐĐĹ’>.ŹI§p‡¸ŔŽV¬ĹuepSeÄŞ9ŕý=R·=g”žŁ’Ssđ=ÄŐüć:˙ —TcÂ"—_yY•íň:Żś†öksŞ=Jf°¤ę|{4qѶdžë{Á~̡˙ťÁ€ŐôHFßKCmSĆŃY(nÓIQg§’bKŢi·ßߤĆjhvѰҰKT§»÷e¸¶dŹ|uńµďđtL@PHäE& Y' ¬H˘±´˘SW§‰zźÝi˘şfŹDůşö•5˙ĺqł|_żşüŁÇlżĎă(4EÜ›=G86ç!ÎwÄô-ÓłëhâŠc®Yݰ“­ŕĄ @UÆŕ;ţ„S"c[Ĺöí8v„ŘŠ]ë°f°ÍüşÔęľ˙ĎóA_›ˇd黥YŔĹöˇŠç–`BíůüeľhNĽ¶Ž‘X6_9“‹Ô ¤ŕ[ßŐ¨· Á×Y„ m;Qz.¸.GÝŕç*M……~N ĎűŽ?©;˝ă·ş0č>ݦŰÄaĐ'*˙]—´3rJăzĚ2‚ŔçÝĄMý ‰zóG‰ĆŤ…Oä ”ěm S,vú§Ţôż×›˙fZ ?!Ş@–X©/Wy‘WYíÇqÇTT„/ÍŹk7G6:Áâ…P~QňYÚĎ’7t±#]xł 7‹Äy•-óλ¬n–:ĘŻWžN˙ŕŢ˝6˙g¸$řńşöj^ â?Ź2 endstream endobj 3645 0 obj << /Length 961 /Filter /FlateDecode >> stream xÚÍW]oŰ6}÷ŻŕŁL,I‘Ů·-q‚m“Ú*ú†'3™Yňdą]0ěżďR¤lIv·ëĂžDQ乇÷ă\Š GDĐőč·tôę*áHa-eŚŇ”¬¤D‰fXR”.Đ} 0ŤĂ%*HCI‚§µŮ¸×íĆ,Â/é â<Ć"‰˛ŮŔµťŤÓŃź# “Ń®RX1ޞŐčţ A řv޵Bßš•+Ä€q –ŁéčĂx®3a‡öŃ2ŹeXS*şÔ%ŤϝB€3&z{Ń}$„ j‡ë|Ľ(·ż‡ŚąńK­3«GďŐIłÉ®ű2Ě«w•ÉŽRÚSŁÄ†śHťXnŔ‰éE”cÍąăöqcśýús@¤y_™ĺfY~vه0&AYůéĺĘOĎ‹EŘašoMHE€Ó“®ŹbŤ‰‚ÇJ$Žß¸“`»2ŐĽ ß~:¦)üÓ>Ż+»jž™Yeę­=±Š„ bÚŐ?¦0eŕ}еđ™‘N~˝Ϧ/.ĆÓé+řĺ4)·w<™ĚnďĆďxóĹŰŰéř‡wšĽIĎßMüée÷ôćým:{óîîí1wţóLĚűą 9M“An_šĎ„°Â„˝Â‰ —ĺÖK[' ¬Ýü—´µr„©¤KSĎ—ąY8=ş4›¬Z®m:ź%ë+&±}Ăl pN<,f™AŤőüÔ†úľR¬ 6T×ĆŽvݵШBâŐiĐJ”ĆŠň¶)|µâ1ŻÔiPĄ‘ßĺč˙ź‘#m[L_•ś‡Ú üôěÉ8łGB XąëËuµÓŞbVźŚ‚ßŘ‹ÂĎ«›sŽAĹ* bL} úŇ—zśě čs¦A@ř‹*;đ†‚‚S¬őât›efăĎ[> 3›ç9€ő©Dš4”ĽŃp±÷2ąăr (*/"–Féi­Ť÷ż YŢ^ŘÚĎß|Řjs”şŢâqş‡mbČş§/ńÍň˛-qGř^ů8ŻĂ4ä%ĎáŐqTżăźĂOvřŃłZŰđĆ—[ˇÄŽä¶ČęťÄeíËŐ:7…©Í˘OčŘőĘ2ď;.ßí‚Ä,‘ĽsËć˛Â7ěk0%Ů:Żeř®ÜXĄŢúć„r7˘äµĐŻEÜę5ŰëuĽĚÚźE«`ťoŤř´ä:˝†uM{xrăËŇvżž­`Ząřé_6ĚH endstream endobj 3657 0 obj << /Length 269 /Filter /FlateDecode >> stream xÚ•P=o0Üý+Ţh†¸Ďß&cŐ )CUoiN)€Š@mţ} UĄNťÎ÷Ţůě;„3 äŃ“‡«Ŕ±Ü ţ™3l.áŕŘSŤŮÁ— µbŠËxo™îúfş†l#¬ŁO}=µˇ«ńŇwł<{ňAxÔ"đOç ę–ěMÜ•€Lć>e JK¦ŐüĆŢČ+Áű?Wüă©m´üŹăšŘ0aŤš Ł™ŽY•f&:.áŠĐ…ˇC“ňĹP îÖC™ ¤Óť; WéÄq«ó­–‰ťfm?$˛_ęD|ćU~íŞq•ľŁĆÂxgŁŰÚx&‘~ÝÎن# ©ôµĄXţ7|?nÁ endstream endobj 3683 0 obj << /Length 862 /Filter /FlateDecode >> stream xÚíVMo›@˝űW ő6űĹîU=4‰-őR)Eę!©ÂkĹČ^'ężď‹ ÇvśöÔ“Ľ;óć˝™·`gî`g2ÂÍ/˘Aą,&ŁŻŃčb,™C BAśhćHŚ”ŽP IťhęÜąW‹äÉč•çSŞ\áýŠľőâTA(E +ZÁŽ+{ţ:1I}ř‡YmRłYéúńşH7Ź:7‰ÉŠ| î0ę2E!!Í&⫳ D<ź`ŚÝ8ţŤi Ił|ŢPŻoőĚ“®^é<Őur›îbLsB *lŞ'uüOYž.7ÓęČĹ8lo ’ˇ‚ýŐĆĎőŽn,‰$˛;&ѤA¨Öh1“`‚ ›#_öŃO0’ byÄ'Ŕ ”ă3Ž }Ć™^Nם’wĄłĐQ\°*ą@RI(ź"ÎeçžŇ w;ÄY•ĺâv2rî@án˛Ü0›Ă»©Tn6DT˛bs¨t8˝M–.’•%ś·čáp@öî1föpEŻr‰8jŹĺÉc·CđŔ(ÚĄÚrŰ•{G`ŽĽ˛%9 ń.8„Żę—Ľµ‘‘j2l!mEz™Ž·ťŮťËËľ6h0~)ČZC ۨ­8…I ľŇ§‡M" ›‡ˇ˝Ň¦'¤CrŃĺ+Z”M7íĐ_˝šy »ĹŞ~0‹l]ŻÖ^‘Ŕ­í^Ľxđ”Řç:$ŘMŚžÚ8«â± ˘Űˇ—ˢ<úR›Ľ†ŞéR_v»z;z`mJś:z-g٢&îÚ#ÜE°Xěćť˝ú ˘€lŐm”˝*€˝,o®‡˙űńk5mwŕ°‡Y'µ:7ň—­v” żvşmř_€L–Y˛~%?u`¶my„b÷÷“îÝ[=Ű’Rđâ]÷ĘöXj¶Ů†ËńCT©ă¨/ĚŚĆŮ4>@üˇ{–ŔŁ oĺ o1Éfgů”€É}`ţÁŐÍÍ<^fĄ§ůycФÖůűĆkoăţ€»KűŤµ†Í€YǰHK8gőB5Á7Ďć§`هnx•€śů¦Ë›óŮÄ/ÝLCjĂÍĄŘůߌäĚ–Üď¤>BÚQ˙MořčIłüŔ°ôą#/—‰öx[ó{Ťţ˝Vv¸ endstream endobj 3598 0 obj << /Type /ObjStm /N 100 /First 967 /Length 2452 /Filter /FlateDecode >> stream xÚÝZ[oݸ~÷ŻĐcűÂĂ9$,°$-Т‹MP´ ‚J˘\Ł8°űďűŤŽe;±ăȶ’^ňŕŚxć ?Î}¨˘Pç»C'± Q|WěQ; ö\¤Łě»ĽvÁg[)ťh±ß%ž?˘NÓL0ľLG BG>d[Â÷éŔ^ ’@Ĺ`“t1QGâm‰ńˇD[Š Š–˘0–ŚČ¶$©ŁŘ60JÄ@± đŐ IÇ_‹:&˛‰@EĂČĚʶ;ŽFĄŽcšĹiÇę[Pî8‹­1w\ Ę`RÓ†ý‰vpGĚ"ÍKÎ-fČć8o€ť7l ­glŔĽö­Ä«P9(0ža¦NhţŽ$<ź5P' Á°AńŚ (1PXr¶B0›âf ‰Ĺv ŇI ¶ńé°9ř•MN'9™ŐŔ˝Ě”v‘g+Ăś°‰é –‰±Děo‰Z .ĽŚbs ;ŚmmŘ@)(€KĐJ8[Ę főJtf¶4ęŔAcfŕĚILöÍ^HS† ™‚Rń&*M<ţ¤Rć5îÔËĽ@ĺyM:…3Ú °Fj&<ĺlg‰ąÓPĚk`;•`kR¤Ě|ĄÓL¦^K6-E&ť×¸ËpgŁB—Ą$ěWϦ\P±ËŮ|!Áxą·$ü)$ó7rW¬křn‘„{E]9ě ç-Ĺ|+©Ĺq:zöěh÷S÷ŃÍżt»żýý8¬Ëć$Á;šÓoßľ9úî»ű™):Ď+™Ľg\ÉĚŃ%dŹźźť^tĎžu»çŠ%řîüµçsŕÂ|‡'XÁ»|fŃ­qůŚ .đ¦ËG¤.đ{Ä&»źĎφ—í˘{Ýí~ţéy·{Ő~˝č®öőŰ»†ęq;Úý,íô⽥’YÜŃî—öţěĂůĐćµtXűsOęgżvŻ˝%ÎťgrąĽÁ~őB,äý˙űÓÓ3}}HťkNť—-/DX™‰O ÎŇŽv/?ôóóźNN˙u´űáě|lç3 ˙f÷‡Ýw?ľ¦ůÁÎ0ŕô“łÜŁ”\€z j'đv¸Ľ—‚ďűŮ/»Ý‹łWgĚř»÷ç† SK=9mçż7}n:S<2»S¤ga3•·Ų(EÇy¸Ö˘č‹Łśż1ďťÂ›P˝!…§¨kLâŕÔ÷€yyQ/Ú†@ŕΖ/Ż€dvŃď‹@ľ˘‰Đ!8ÍWBFp%ĘC±X~˛nć*?Á -?eO®čÉě#ćËd†şćäÓdöYfNÎĘű*fav´’ŐC˛1'q„ę´ŽY Ě˝ĆĺŹČë%ë[iţ“Ä~#ë?:ŻS¸ť×‰žš×­óÜ0U—ŕĐn˘TbbuĹŤ+ĺ>w˙k=?©ýŰvËۉŕí7™ +ˇ)G™řóVüŘŕŹ¶)Ó6-O¶)ĹË:Li!t!ň˙me^Ŕ ű‡ó]‰˛ÍF}‚ŤtÁaüÁř”-9=0¶Ń kqÁŇK˝p!%<ޱ@TŢd^Ę I^ÉLĹż’9”ě‚ĐJćÜJV‚\K ëŃr `˙ u…ËíÄúäÄË,Ŕ˛KVâ´i˘pČ9űT‚Ý·Ŕ’ lĽÓ»ŹĎĎ>ĽŰď_ĽzńK{÷¶ţ¶?®8˛Źc,6ź÷䛎~Hu(4#ĹZ7 ÇśÜaś?ŕed)á^Ŕ×Hó?÷5ŚCîu{_D1ďőyĚÉ÷¤2y_¦í°r"L;×P‹ iÓ5şµ} Ö~¬ĆŘPg?SŚ”©ć¨Ťă†j˝t¤hXŃ‚Xćb×,ęB^ëÜb“”¦€ F}Ő–”ď=yMa(·ŰÎI„y]{˛ łŔh>­cN¨Kv}µŽ™1éńJf„z÷üŃ`8ş’óy)iśŹóó˝=˘…LÎô´ü,ńv~–đäü–Ö0,­aČ ±\őČrŐ#ËUŹđ¶ícś »ĺD bÝQŠ˙ĄůĄ8»×J3.J;)FŘ*ÁČ#+°ŇD}ĘStÔhňˇJn“/%TŻ9oxG%NUç8M(‘ ą7Ä ­‰DاVFűrěˇň”†iR͡ßđ(¤$4-gᄾ1mz–0© ô‹ö©ˇ¨¤,8YńĹc”Ú˛š˘…ŚWg őÝ׆gŃP˘oCóuĚ=ő­ů&­oię'śĹ÷ŰťIŕy9‹D4Ľ9oy–ľLŁg’Úrá^8KĐXÄŹÁ‹ďiŘ>\|vŚfŹ’QÄ^ĺ¸8çŃ'źĄÖP«TĺV n®ŘŁď3ú5ťpŇţV[!ň€¶â&ó;…'3¶­¸Ý“ËÖ1ŰşňZćm„•0"ŁžäřĹBÚóJfÔe"Ú’3Ř;b¤’Ö2Ď—qk™9;×2ŻÇĚÖëéö ™·÷«üġ8ęí¦+ĆG5]7Ő°t†_ ë»őđčÓä;®ŽóŻŽsąŐBĆĄOLKź–>1-ŻÓr –k€´\¤ĄMKš–4-’u‘¬‹d]$ë"YÉşHÖE˛.’u‘¬‹äě7˝÷>”ŃĂ€L,ˇćĂçfúżĽzÎűýËů®íý<ÚŁÔQHŐ‡Ü'ž¦Ř¦1•Z¨K󆜸 üčr@&CdÝůp+¸Çż+ä'§ÇűĘ2QEóÚ$-Ä(+Z'´âhG·Ľ<±7L™‘wŃoű˝Mr‡_őÚÄň@Ô#¦ý>Ťc$$­µ ¨üÔ¦Ŕ©nŢ`ŘŹ`I ržď†sZíŰÎ28!:±ŕů®D%YVuÄéZÜňZ, űşĆÄ^ťeŹ/cşşĄŢ×Ń02Ü·Ěj\Eb-\#ˇéB, Ű«Š•Ľr­BŹ˙=ýGU¸`˛—–&żŚé† GĹ,Ô‚–<ô#¦Sb¦ž¦©¶>ČćQaŃŃBQ˛BH@ďQ‚t}ÎlŤ[‚‘Óäe 4iß·±ů8qDÝöĄN‘x ą¨łÜř¶~[ŹÉ·€ˇYŰ«Ż1©~Ę2– Ńš#¬GµßŤj4ß\äČ+áFL=üĂń„™Śąĺ‰^ -´¤_!˘˘¸ 6˛e†v1ňcúűÖŻď 3ű‰ç}QT~}…M›kFŇ1Ö+ĹâK?Ą:„Şĺ+čNđě—©Ł”˝ Aä—ű<óřâxż{ňţbË÷ŤţđňŁč(ĐÚ}Ě ÝŐˇ÷#şˇ’šO’ú!ô:ôÜě7 ÓUú7=ôľµ endstream endobj 3722 0 obj << /Length 1122 /Filter /FlateDecode >> stream xÚ˝XKoă6ľűWčE:!)ľd,zhł (şĐCvaheĹÖŹT–7ÍżďP"IćʱŃě%¦3óÍĚ7Ź "čfň[2ąš+Ž4ŽĄŚPň€ÁZJ¤b†%EÉÝ‚…_’[1Ž U Wß˝N«4ś2Ą»Ş&“& ˘­­±fe›Éý‚–đěĹ=×on<‚óÝMţš š`&ĚŃü8"D V"–]$ĹÄ9!1Ă4śRBHpťWi±Î—€—Ţ|ź•ĹS‹Ö™ąšGq'0M™ŔŠFßď;đ°ŘćĺľęaYN0Ńú łXćEľv@Žç÷¸Ö~ Św”·®fˇ ÓŇh»šSŽbc5&.qĚ\2?5ďôT+Lŕe2đx6K×EşA¦şË~ČdÎń}Ík´Ë@#Ę"gu±ř3™łp¬Ř®<ĄŃ‹0RcĹą/|‘Yl«&7ĹY•„\/Oůvâóť{ÜŤ(˘9„’‹Ę“; 8#ňÂä˝ ?řݱÔÂ熰ѩ3óń{őwYTąŹcZu;ĆNáÁ™‡”ß«Ĺs«ý‡XcčLśů)GY,ĎN ˛ęvŐ[ËĹĄJ{ő»Öę6Ýä–jü“Jő$Ä‘JĄä$H $<6ë 3ĹšË éú”–Đ»O””ÄZ3_¨)őµóŻÍű †¶ô A ‰#íÁ´ŻEŕoR|'ćÚav^„WŐj±.ö^ †/> Őî[>:}§±ń1î‡.y´+Dz79ë[aeZ6Őc±oNŕx#ăH}ăŮD&µOWą!%„miő”»ŤS’wUŻ×;#úl¸^ßľ°uľźőÜ@TbĄŕVXC+lĹčç˘ŢŚĘ•]‘>ÜýTÜ$7®¦ě˝±ŠňÖô*0Uü2C'íx¶h”Š:GÎW.0:˛rł´3Úěř©{gł=6çOůôŔ )Ël 4ęTŞéŁ1ĚMkä—b›­ËĽˇ\Ü}Z”Š[Ę}°UßS¦ ·´ěíDܡ Ŕ@'%–ă؉üú† ba*t´;4x^Ż{oR•Đ Ş–cžmV»lo{Ňo¸ëZwH+b[ř8sŚčqó~+"HĎ2x&Ę׉?Šq8ţß+¶ ¦ž(#GűÜ`¶Á˙sZÍ6ŹÝ`*h+Ö̸Eu´;:/LĄăHţĎÎv'Ę©\«fIńĚ“ŁLqp™c0ę»,Śí˘ôă’™š‘ äMń{O#sĆb{YÁř>ˇěśîëtJ%yŘA…¤đ&–ŇŹ3ô_ľ[ ţp‡[æ˝`ö‡PŢś(™‰x&"·°×­ŁV\dÍEj”i–wžĄ•{ő3&üĐćĆWŁčĹ}P1 Çż/+3H‡Ľ†@ý7»3Ő endstream endobj 3749 0 obj << /Length 1096 /Filter /FlateDecode >> stream xÚĹX[ŹŁ6~ĎŻ°ÔŹm|hŐ‡v6ŁŽTUÝE}™]EH5!S šÎżßcl“0dfłłű|Îw®ß1­A7“_ăÉŐ\qâHĘĹK¤ĄD*bXRgčΓűS¦Bď}ŮÍÓßľ$^˛ŢĺfńcSíŇĆÜČ—>%^^ĺešűźă[Äy€… @Y+Jzuň>žü7ˇ°HÝk C2ŽŇÍäî3AĽ»EQŰ/7 Ƶ°5ú8ůkB¬3ˇoőĄł)@”`%"é%)&«Lý)%„xó"_g` ˝ëmşŰäe“4ŶlÁkiUÜFĐ”qréß‹O}ĺÝ'•–v5§E°ŤµŔ¸Äëśó‰Ŕ|Ó­0Źí7żmZQćUěóĐ{zČgłd]$őR4·E€Ě .BfÖ&Fą›z+ۇo±ř3žł„Ľ(WPĄ€Ň‹°RaĹů; ¶(«E6&}0JÜŠÝ6K¶(˛Ĺ7.ľK ”É&˙Ę ß9ÎBIő:¬ŽvčX }Ŕű’ađ Ý˙@ĂkŤUńĽi ¬!ÓÂ×™¶jV‹uQ7`ýa8‚¶Ůţ›÷;ŰŐ< ÓPáPĐ>ĚřŢöű¬× ŰĄĄ@ůT桹/js¶€UÂŰÓĂŁO‰}»Ę•f‹¤É3+§Ún:!ą+z˝Ţę­Ź:çÚe[çő¬g˘«Pn#¨)RĆD?(-éT+Ë>`ßÝTéÝÄ7]nw°k­ßí·Ú Ţi€}ť˘łzNé†2Q*Úu¶r‚#Á˘nÓ¨cjąejć053L­˘vrŇŔ)ÝŐB,"eTüT”éz—ŮRŠÜ/!CU´OĽw¶ŘzÂTöľ98ţÖ.0ćɤ:Ťş-ż¨ž9p=x J„hÄÍÎë¤IŚĺ-××!=Ş}:ÁÔ!ž‹˛Ť©›ëćő@đućî¨O=łĹ6ŇńĽŃ[O[çQ*ŠŹq€ŕ_Z/Ąf÷Qt+Ý4Şíîá÷ěoč~T[‘]dÍ‹}îvôsnVôpźÁ ]^.žH Ţ‰8IŔŐ‹Âü0é?ź¬ş.”îK‚ô–GRµńâ„Ú—é:n÷‚Ćľ?L\ç@čëĽ;®äuZ§‡•s®8šV;ÂPöh×·ÓűŮĐnj¦‰ú¤ŰX·wŰĺ1ďĘT«Żjňú śśÚÎľů9M8ÂßâśvDŔŻ>ĄIß[śŇ.j&ô`éÉíDüŞŇłÎ@÷>sŇŇůY飥֭ý}Jűä˙ş?'3%ąó“ ,Ą…}ŁgÜĂ|ŰÍËt7·ş‰ďěłBíďJf"š‰ ›„ŮaČn©yý1Isç]Ňtź~"‚Ŕ¨jţŃ‚žĚýőVĎ×˙?­´g÷tŇóxë I×Nż endstream endobj 3698 0 obj << /Type /ObjStm /N 100 /First 962 /Length 2233 /Filter /FlateDecode >> stream xÚÍZkoÝĆý®_±Ű/Ľ;ŹťÝŚI\§ZÔŤ ­a|,]ˇ†TH2üűžˇDÉv‰N.ˇ †ű<Ľo`1|˙řçż|ß‚ćßU çŢżű«Ę9.Ę9SŃc6)§’:<Đńu‰Q”6‚@˝é•k›2b=YÚAYŞu>Đí ŚR-˛Ń(o=lVéŞ|ŞűÁ·Äĺ ´}ĚĄvs× Z&:´Ó›Ź¸ŤKˇŰO•iUĹ ›Óz#/ąą†=///ĆW é/źż‡×íÇëđöÓŚ{Ůżk'Ďv~}ĺ={ď‰uuńárlW7óϲö·6ťőß\ü–\LŐ€¨WęŠ÷±—ý%ŚřŘ[oô—tľÂţˬ밖Q÷V(«PoŠ«@«Ŕ« « «VaµL«eZ-ÓŤĺ·Ç)2·Ł‡upĺÚ©ĎhăĄČÖÉăx5o…C7Ž®€†ť—†KŔłĚł¦ŕGD̢Ďu> RAłËö@>ĹĎť›ÎÎßS¬{LŚ)ÁL6`şk ŕ´źj9ŇČ Á=5-6QLq¤#ň\ÓnL…ąŢ»-&E~Z7ŢbbĚ+†šő8¦ĎÜ8Póě”Üę< *Úć 4łxČú#BF’.'­8ig‘ĄNDIá޲2úÝ †™%7‹CŤ¨_ÂÚrJSɨô;ś<&m{á&Şó†ŠÉ[¶B>ć±c¦FQ]±XZ÷…x0YQY˘ŹÓÔbiúa–Ń@‹F-;¸¤óW8„Ĺßl jĺCß]ż;=}vu}D0)˘OČ=ŚŔĘ0źůOsĆqŘâ8NΡP…Ř_ Ś#+ďÁ¦b‡úžNĹâ˙o‡\†™‘^‘N¦‚Źx‚DŕÜ1ŤÇ‡ŚŠ^•î(U•N9}ŕÔ†©ź-ňhÔ«ŤcĚ}Š ,¶Yů?˘*·IĹó@m6 JjĂŮĚ­ĹyŕBóđ9]ń׎›éĘ'ĘŹŃ•_T& '‘¶)›×™¤{(u÷P$qŃ=”‘kŚ öřĘ ŁD"ÝC9ĺ.•ş‡˛ř˲]”‘‡›=÷şZ¨SÝA7IWţÎĹöPĆ Vµ˛ŕD65¨JÝx~LąóŻ~ŤŞı?'îqóHýo¦ęZNŐ5˙nŞ.+×–•kËʵeĺÚ˛rmYඬ,^WŻ+‹×•ĹëjYWËşZVŰŞ§yпϻĺę‰|¤.OĆŐŐ_FIşăę0:«OÇŐĹ íCďH¦dĚ&5?)É\1­\ýqL:ż>»ţé‡ţýź‹TŁö= I •ľg©i®#ĎeŢŻIB×±tďDĂě©OěÄ[L+SÓ'NyčËcÔ®áßB§ą€x0ET¸ăOĂR™č†\b× `nĄňVŔ`qâybnó$–1Ů=×iLL(Š ŤŤZY9A1Ö­#µ~ő,”X›?}7.Ř]–rëOćÂŐT¦ĚĚŔaťŘµ!Ż‘gđS^fĹvaśÓĹÝ“ŕť*Ţ9Ýźzĸţ.v:Ú¶ pÂhL Ç핟Ô˝`0C,˝^"BS ¤—«Aňë܋ͨAQ°s&ôÔ{‹v=Ý}1˝őŰ]~‰Hč®ř> stream xÚÍW[oŁ8~ĎŻ@ť"M<¶ń˘Ő>ôŞ­fUmË[;ЎI4ş„L·˙~Ź/CI3­ş—' ŘÇç|ß9ţŽ1˘Ü[zX=.FX áyŹľśKć…("đâ{Ob áÉ"AĽxáÝú‰ń„ĘĐ_ÖËYZćee^oęj›Öf|ťÝŹ öł*+Ňlü-ľô —lŁŤp®ľŽÎâŃź#±Gڽ…”yéĂčööđď ˘Đ{Ň3<ĆÁSĆrďfôÇw˘1QQ‚đ. Ž(ŠĆ‚1ö7Ćyđ©ěŃÖmrľŢ4Ý=51l&žýČŠ:łĐ~̦Ӻüž:âę/çA䬞„…śxĘPXăUfŕ\”éö &őş,̧űq€ýúzµŢÄqżeâi o‰ý»ĚЬRÄ$u¶°vŞňˇ1’ą¦óĽTKźÖĹŇ|ľĂćŮfÚ Ă#ÉP‚ßNű}G)ďĚ2üVKKô5¬»ťp.ü‹řâ*>§ł›ťŰµ+ZőÖŰݰ7!@}@ß·ŃÁ}:y¤ &#„pÍQ+#(‘S :…Ür N9PSŇ©†}Yáщ6üĐş­š¤Č#Ef§$ćád˝Jl¤‰Íšą]»Ý4üĎÇűĎf !“Ů„^nQaÝ" E»ői]¤ův‘™©‘;ŞEFmü2dL"ÉH3v> stream xÚŐXKoă6ľűWčE:Ë7%Łča±M€ Ú]߲ C‘G­,§˛Ľ®űë;¤H[RĺG6Aş=é5ä|3óÍÇ0˘"XŘ\®GŘÜÂőýtôîJń F‰”,> ŁXĘ@%ILçÁ](dôez0Ę& ÖŮ·Ň:ŤĆTĹá§şÚdő¦ŇÍă‡U¶Yę˛Në|Uš•Łź§Ł?Gâ€ěÄ1Š)˛ĺčî ćđíб$¶ÖrpÁŕ î‹ŕÓč·î„Đ@gĐ%AŘc—H!‚h4&ăpm‘L˝¨ÁSB™mQ/fEľv†„ Ri AqĽ7üŚ1s»u€ Ö˝Í&“'Č!áW›_wW,i-CŢcF1DŇl1}t©ťwRk_=D ‡«Şy¨óus‘BĚ"4áÚŰžR÷uˇK]E‡i­çnźjµô›čöÖE±2K·yąh^CĐ´Đ“NDÇ `KÄeě˛C©čX5¨Ž aÝÝX^OŻˇÇ®y§Ţ6Ç„˘„a3ĺ]rаňŐŽ]ĄMÖ—zi‡;N=O›űŹú!Rˇ®t™é^=a­‚cÉ0Őń釼̊Í\7UOÚ–Ŕ!ěue˙Ń‘§ł™BŠoAß„»&ěŢnR %¸·ý©Á8 f‰lB˘°ÉIČë´)„|•ëbľîd„űbrđt¬®t_#*ÂU>čŕ‚ˇrŻWXĐsŻWĽµŚVëÚs:DËĂÂgP&ńߢÍ6PęµĐ®óżMëéY} Ř™ŽĽŹ(‹Uf.Ě ]űĆÎ+?íµXA§źôŃť÷"ľŢ> stream xÚÍZ]Ź\· }ß_qŰŤH‰"§ëHŃ öC[ĂXÜOרł[쮋äß÷P3×vě±}ĎÄőÂ;Ľ^é˘ÄCiٸt±SÉ]–.©PWýŃ:JŇiᎴşž;ć Eé¸4EęAˇ±KŇh!ć U|ć¦.W·°N’ą˘tbÜ)ţôš4kWü}Uí´*„BĹö¶÷L5ą”€%• HąŁlŮuŇQiÝYlďjGmC˛Ž©xĂ€Ę)ůč‡%úJBëC1(cďCSǵ*úüD0¤ć÷€°·ç] :WţBM…ľ ĆŞŐźbSůhł«ĽgčŃ ¬,É…V|gćVţ«˛tąź#GňŤ aF(6CWÁŻT›*u™ł«*Ŕ‡wrJPaX9ů`Ô`źÉ:Çsńá}–UBó"M…/Ąş ć%7•A2WˇyMěÍ»¤Ą3dk.ÁS6ĚL˛ĆjĄý…|¤ŠGIŮ'Ąr'Ů6fUJiv‘š$]‰Ń' –®PëQ¸M7š*ąyµÖ®HóaLžý â[#(Ľ`|™»RáNC<—Šŕ5ĚPi3lđ¦ĆěŞ Á|bbé”TđŽŤâK† aĄ\ZŹA…đĐ$Meťćč*4šsk/f Ű5X%âVľ˘< ÓŤHDěbĂw¦í¸ ŘăÖĽLźKđ|ŢŃfĽxđŕb÷m÷“kXą?t»ż˙ăźH°â3aˇ`2®_˝|ůě⫯>n¬5„Ő6ăX|´ÍĄ¨7ŮRŐ±5l3V î?q–ŕ3ycŽ ö ĆU‚h:˝íáă7Ű^Ţ\ßwt»Kl@Ś Ţżué»,ŐrxBdłç„ýö&Y-É#žůĐÝ%v 6ě‰ţ„>vßßŢŚŹçűîi·űţŰËn÷dţéľ{Ýý“ź˙3ă‹ţů|±{(óőýťoT­µ‹ÝóÝÍ«ŰqľŰo^M÷×yzŃsóS÷4B!p·]Ž‚Őg诿E#Řç±˙5űŻŻŻoĐčÓ}ĘrX-c„´ ydĘ*č*Ř*Ô qÖ–umY×–umY÷-ż3öďb÷řŐpßžż{qýď‹Ý77·Ó|ŰFźíţĽűËîáSjî”î¬9x..‰CÎ-őc#[gHB0űşMëăn÷čćÉM‡ řĂŁ'Źţöä’Ż®ßßľďď®ě_ô9:)®fľ sČű¬R®Ás8 $!qËwś–Íx®Řóq˙Ü5Wř÷ÚM/®źź“ĄŔů &ŽŠ 6`úÓÓŢůUźĆ!WÓĽ¤yĘÄĘH’px’^bžs9 !†„úÚ…ř¬Vż¬ 8¦P4mŔô– ™–:ä>Ĺ4ÎĂçÂ2ôSéÄ%Öa8ů˘ ÎG©ěł\.5pĘ[éU?Ď ”¸Äż~uőňĹÝý ±H Ü*Ź=Mˇ"Á}Ë[ž[JßO ÷?i°1Oq™E'P[,ŁĄž-#­µ˛Ş¶tOą©^J!<7˘ŤŁŚKśhŞŔK5˘ [ć~@M2 =Ďv´Lą9ą ÖČ”CŚQćEâĐÇDăŔËś'–eŽ&púÄă)—Ľ— ­€ÁŇ7 ÍA’G€äŤkh™¦i—´ĚV„+v%ZěN}ÂŇD5}´jp&ŕ’„}™V@8xc¨#ő}‰\ŔcIyée” ĐQ†żŢ†ŰŘ´ę6Ť­Đi4jhlćÇč˙ŰĆ+ő ^VźÁáTĚg0ĆeóŤqˇj´ŤĆh”{›±`?@E»Í8!ŰѢó1–C“ĄĂˇF%’ß˙ĐŕŔŰŕ‹PHŰž™"X/š?EĐÇ›—7·W˝Ž¨JÓ0Íă0/ łŚe`pŞSňĚűŔÖů•ŠÔ= ‚oJNrßĂÓËĘşLi`^FžÇŢ»‹Ôle”äEŃ4ť˛Ú¨AÚ 3-(Ř>ő}ĎŇHb…AĐŇr/9‚+ĄçÉe~śĽąýůŞ/ †×Il!)Ä©Ź%Ń$ †“'žÎ€·Pđż!ŕöëMqzËĽ0˛Uźćdăx$„ĄČ¦uűhsśO XĽ;·Ë*Ľ´Y‹t+ŢŞTű>ÎĂ Ă\lě#÷Ă ËŔŁIŃSâĄŘŮ,Řm­ÎÖęóś 6;¸Ś‹ Ű;÷óX§q*i­°ójg|F”ŞÎO,Áá ’$y+ŕiáX†<Ś,:XěAČsĄ‰Ş˙Ř›JçSk[* endstream endobj 3855 0 obj << /Length 1048 /Filter /FlateDecode >> stream xÚŐXKoŰFľëW,Đ yĐzߡč!peŔhŃ4áÍ –ZËl%Ę%©8ţ÷™ĺK¤DIuę Í‰Ôrwžß|3+‚V ›É›hr5×l•â(şGš`ŁŇ–aEQ´Dw”„S¦M°*W‹ÇřO·p!•Á'—•Kwż(ęŹďË|—”őű;wR¸Üe‰%K ¤?F·“źŁÉß ę ˘ť:c°a%›ÉÝG‚–đíĚ­AOŐÎ ’c)8ĽŻŃűÉďҸ@0“ţŐ?Z‡8˘kiUß#E1Ů»d1 §` ć©[/ÁFf‚ëm˛Ű€Wq™nłĘŘq-•Š}Ěš2ŤčÉî¤'ˇâÜ »šS,śb•]628[ú@Ż÷ $kL`słgýĺă˘Í˛xăΉ¦1+Ôq¬1®¨SVëíŁŔźd|\ń+Jc­ÔżňEĎĺY(3XSY;Ämß#Ţxä2÷n3îâH?Ë ˙ĺóŁGő±Ő€ÄÍ)łý±ÉWs°kzJÇÚ°A˘WWÉr·jé>ä$ŘćőŹň!mj Ę +°'_€qóuĺ2—űz‹K·lääŰM+ÄőEŻ×[ô)ÍVő˛ŔÚÍ^ ŞŔj VK %Xg•19ĚNUŔůŞ©äwpěn*Ą n˘›·ˇk Noâ"MđĂĄZ˘ [ ™­BÖč08  *Ă}˘b=b5é–‚†9˘”÷ĐëË×` ĹXéú!Í’őnŮ€Áöw†´íŔđcS aP ‚¶;|$˘p ŃX¬T‡Ęźj;Gâł§3€0áhĘ%T]©ë¸Śk·+:+25 Î.ÉžXO$ąIi2Na6"Ź8lš5şc—cku{%aJ9ć\ź71ÍĘĘazş×B.Č?‰ó”‡ëÇI3,ŔŹŻŠ“čcyQž•¶ŘXűť¸˛Ž‹ň"%ô oVF ď)áő{řľ«xé ˙¸‘xP 6ÚʱŢčmÖ_× 7›UđkĹ…>I €@4ţʡ¶óűj©ÂuRŮaą u1áü­ ;&qqz&ÄţCĺECŹđp@ł\|Ď3„¶˙ĺÁşÜ¶|ńKšýő ýĂoŃś-jłŠŃ™ w3ű˛ˇAqLĄy塾4«źBËßć.ą| B^zj8 Ż4yň’VÔúĐŠč7ĽNzáťřޏ=„gł"÷•xÎvuěÚ-5Üş_rén˙/PUŢw·k!aŽU †=•ěi¤ĄĄ_Ű—Ű‘`×ü`ÍPQżQ2“v&yK8lĎe•ŕ4©Dˇ!A'®÷-.Ű­$PKđ őÂ^Đsý~˝ő4öůyĺcꯌÇŃú8ĎŽ endstream endobj 3890 0 obj << /Length 1111 /Filter /FlateDecode >> stream xÚŐXIs¤6ľ÷Ż *8 kAtĄrH»Ę•©$cnöTˇĺ65˝L€Žă?OH˘Ó‹='9±é˝÷˝•OÂroáa}ąž`} ×ÓÉĹ•ŚĽ%B0/}đ$F±žL(ÄKçŢťĎăŕSză1!L$Č5o/ł: B*c˙¶.·y˝-•yĽÜäŰ•Z×Y]lÖZrňs:ůsB@{¤5Ç(¦‘—Ż&wź°7‡o7€Ž%±÷Ô¬\ygG î—Ţíä÷ îą` łč‚ ě° D"jOíÔąóW@±ź•ż•*·k»ŞY„¤h×ţR¬?O§u±RŤ{.W,éČ„€‡áČ !n‚ÇF4}´Qš÷˘ÔĽzö7Ąy¨‹ĘÜU5Ľ"܇›OMĐÖ¤XěɰÍg·ÎÍç‘Ä몝͌Ďń­.čŁ5ŁE×Ů gO.Ăw™-‹¬:słü´QSŔ¨HĘyVK6ęV‡~ŕ®f`N°=îň-Q$™ËÁhkoܡ0fƱuKü/ÜŞĘüU^˝O˛˘·yŐŠÍUUźĹ-ëĦ~ łb>;Ň'Ĺü}úqQ/fˢŞOiAéכϚ¨ő7˳ҎđnşŕW€9ůĆtíźdˇ&60Ö˙ućŘ«0ë#ą=aÎŕ3™:Ţűç˛tB?žËÔ°ŹqK™:Ô@S&D,işT0˝– ®p©ŞĽ,ľ´›=D[žśě(vuńAUU¶PŐ ”Źr,®ˇ+Í‹ÍÉŻ_˘‹»Ú[‡s`ă}Äa+‚“a ÷-SŢÝ[8Ć9ťŽ´P¦rčTőgá9÷+CY_,i»Ü1–ş´LeSŔ_†’·â$”ˇŃŃ82 Tj“ĄľrÓŢ–„°GŁÝúu~·˘ó·ţdÁ ć'¤RڇčT/B˘{´ŽEŠŽ”™§GŞŻ\üG"uŞHőÓ.GęŕČ۟تÜ1›7+îcMţń9ň’-#)‡ŹÍ‹Î1EŽ toÇŽ“¸µŻ9Lr'_Q)˘†ó4.¬DB؝ȵ>]Ůť¬¸“šîćFłÄ­} ö‚IdîžňdĘ™;ˇ»ăťFq‘›‡4±_fąę|Ëj·ôs ű|¸óâ­čٶ铝żź:G-_í… Âő,¤Ö endstream endobj 3837 0 obj << /Type /ObjStm /N 100 /First 965 /Length 2507 /Filter /FlateDecode >> stream xÚÍZߏܶ~żżBŹí —CÎpHŔÇpZ AŤŘi c!R”ë6ą îÎEňß÷ÝĘqbű,§ÚÖ—Ŕ;˘FŁOß ç‡vc¦4ř!fŇTMČC6ˇ \BđCŠv*Đ`zÂPJ6!DMÂőv]ČŃC*ĺ"gśd6S!CĘeČZ—ĄI±„[P ¶d¦dK,´,ᤊ-A=űe)@ârQ<Ěç˛,A*± ĹĂ|ÉËxÜŁAĐeI†@dK&¤*NoKÂňÔ1Az „F\ŕŰc±†˛QŔ×ă âZX†Ľ”†łńĘ8!i9 ”Ť+Će%Ř=ÄěËB‡fZ¤4°dp š93‚§ä¤¶¤ -KRž†ł_ne’„‹‚gďjŹ «…MËÜş<‚č ë Ä/Η<™w[ŕ [*ňCBąă(yH%_‘Ţ4¨ 'ń/´ ÎĆ«yEl( LV€”l ć-K8™đ ,zŁ ®eľ( óš-ÎZö1#ŠÄn5RHĆvĘCbż¬•!‰]EЦbĎĂÉN@ Ţy !«T@hhĽ;+Ęň0­ HŃ»Ó<ä;OYІŏp0¨6{;CÄÂ]°ľ Ť[źpDdńK4dçŤ+Ë >ĽYĆV( Á·ؾ+¸YÉËCŰsćŘ-ĆĽ9‘<ţ.<¸8<űůÇ>ľĽĽĽş˝8<}]o—㿼şü×ĹááŐőÔŻź{lt˙âđ§Ăź_=§ĺŕâđmo·Ăs"vűBĽ¸Č¶IÉo‘8D*ôľ<O‡Ă×WĎ®†ĂŁá7·×ŻŰíËŰ—Çăý‡«ëźŹc‹š¸NˇĎScýx<Ţě¨DçËDHŇNňźŚî¬Áű©ÖbëŇZ Ł”˘9$0DçŽCpd{=:ÁÎ$NřÄ^ Îkú4Đ-‡YZíľ÷ÜiÂW™ó4÷čGĺ}]źPD±W,ŰĎ.FËpŽE?‚O°Ç›W qx{í%¶ÚhšgTÖ)Q 1r×€ýžŇŽp _ľnβă=p?Čq$ô 2Ĺ4’xbő-ˇÁ™ĘčsúŐ>4Qś¶)#%'TĽMʬâŔŰFeńÎŁNźA9Ř?‡r,0Â9”5¸"ńĘŚ€ÎgQFVĘhś÷WEz˛s(#)Y—ĽQŮ#ž7zbrú[ĺÇW—·KŢx¬Vj°E—ËŁ#ÄQ:¤łő-3zŤU“(wůtXlČ´á‡'×WíiGúO=ĎúO·Ă‹_gÄ'ăË~qř PúĺíŤő· zK|7WŻŻ[żąëy—µoúôj|xőÓ°äJ4ż. AEă‰FYđÉx #Öűžl,éö÷_ƵL+'WAV!­‚®B^…rÄŻ­Âťĺ»6G)""A6%kŠpĚŃEŠŰ*ÓţµÝšáŚqn-îb=gŢÚ’ü^™úĽ”FÜÖ8W-%U‘Xú\“äZY{ďmĎľŘ#ćQ3ťnLçâÔ[_ě-Aýě ŁŠv˘†žJ0jůX+µi”8&ĄíŢ"cppÖJv6ürF ak{‚ISXöŔĆQĘŘú&ň9¶0EÎ;Rť6˘źđf”$űđŢĎôÂŚŃ)zU´‘y¬SKx üç9žéÝňeĄZŕZ>cŞWŔŕZî…ű‘öYiňľKÁF¬yf*ykáŢşîýÇ>4­MŰšŮP18ű_g¶›îáł0Ś"¶p\śĐű‰|y}ő=´Ýçř9Rś¤¶É·:U_x˛÷-™Ć,Ú완ՕŰ +’°˝,şëťÓíčř§6Ç\ĆY-&S{˘NŇ[üYÎň˙ĺď„)řč’Ć ~apcŃŽYs˘JÝwM!ľ¦µŮ·öÓî»Áz“ĄOÖeŔŁ ňyëî<Ž˝‡žÂ(iöÜ(ÍZkź ‘—9H®iĎI±¸‚ęşB¶EšĽńoém2ú^‹ř6F/WŘ«Č ú1и?˝(’Ěz9 &ÂgMď rđ§-uäwř«LEÚÔdžć1dňŽIF)µÖýůEĆ7ôşčuÚ@~¤TS ÚMüÂ-•l[šúŔ-e?w4ZŤČřÝÇXë8ťZËSüË÷6Ôĺ7ˇ­±bŁ5ź‹’GV ÔÍ<łô¤ă;/sů„‰o+żő»eÚ¨śQ/8lTĆ> stream xÚĺXMo¤8˝÷Ż@Ú Úăo›Öj;™Díj´´—dőĐA!0Kӛɿź2’ž\Vs˛1vU˝ŞWUڍđŰálíĆߣŻSĹ=ŤB)™Ýx #-Ą§BŠ$ń˘ŤwéKDX°¤JűEusYQşÇ‹ŞÜĹ•›27Áľ)M›ŕstîqÎP ôÔRDhW˘Ĺż ‹Ř#ť2­‘¦Ü‹ď—ź±·wç`) µ÷PďĽ÷¸aÜ ËĽ‹Ĺß <€ă`° ’ ÜĂAE„K‚1öÓÜÚNµ˙gšßE×ţăWłZmË€?nj«[ ŐÂŇ’r¤ŮHµgF~e!’Ś´Îx_äŐ:ÍM[-ו;C¸Â*‹öĚƬ<@Š0ěnöŤdIŹŃi@¬ńŘÖü): ›Z’*ąÎŇm5a+c(¤zÚŘŞ¸3ůŔÄw§,ě^† ęĆBędD·ĆńoSÄ»{^­Ň"wK7Ă~ËŐę6Ýş€8Âď¨ű`˝´nŢ&˘b™Ľ®Ě¦‘S÷­Óťe…=úć‰[†ŃĚlWxViv ŔŇxöŠR1ŚGťeŇdĆ'8wąBúgŃŮÇč”^_ěÍŢZ­čvtľŃś$ 1§hVĎ€7u|#!!˘ŽQ‹•Cţ©°_?jő íę ęŐŹ a˝¬°I§‘ĐĚI˙%Íăl·1Žna'Ô vtűµÉ°0…ďŰsµEďŹdL 0†í‘ßś©NÁH‰P6Na`.Hц'ëjퟦ&Űl'Ł9JŽIP ­Ă'Ü„3ľ]—5\‡×” VŚT+Ä÷µĽá'Ó´(8ÂŃP?oĺаvĹoš™6­JČÄŁ¸ţ%‰MúŇŚjĐUoçK@±źíĚlb 8äB_Sî µÝ¬f‘#ÔÉ Î(هři7éťüY­ˇËăŐę díóX¦ŤŕLsň ö‚ţ×őČž]“5=‰VŁŽŇXÇf`'O©ňĐ|FěęŁ, ýßu?úu?Ýľ úÄÇüÄťŹľQç㯠J«ÇĆZŐŐçÎÍýŞwYMŘq’·Çţ ¨¨uč‘öjońGÖîóáy$B˘PčD® $GĘćóŤń :˘€ĐŢĐA$ iMÉv đ&ÇĆ~ű€šŘ6ř»ů#uU-îěîą{ÇĚ'Ígî3„|áőfVÍa¶ĽDqęe}͆ö×DTIŢű§Ŕ’0¸şiűĺľW¶˝÷ŻvrnC»kh3`ŰěŚŕ•W‚µ]•îv-8ŤÝCh¸š®cÓ{·®Ú­WX`¨ß0`˝|tó“ÂöęoʉmAc’źľ}ů7e endstream endobj 3962 0 obj << /Length 1086 /Filter /FlateDecode >> stream xÚĹXÝŹś6ßżÂR_ŕabXU}H.węIUŐ,ęË%ZQÖ·‡Â˛đöz˙}Ç8ŕŘěGÚä cě™ßüf<3†  "čfö6ž˝ąV…8 Žâ{¤©á€˘xŤîĽ€řźâ[Ä™Ŕ„*ŘWĎ^%&ńçL…ŢŇ”űÔěKí^Żvé~« “lWŘťł÷ńěËŚÂF‚h§ qČJ·ł»O­áŰ-"G!zŞWn‘KÁaśŁĺěŹi@̤ÚGkG”`%Ł oC@1éŚŔT`ęĎ)!Ä»Ň&Ér˝Ŕ ë*-łÇn«çÍ5ŹzĚ4‚ t—` ®Ü† 1ŘÇŽďa ëLç-ŠW´MŰ[‹?ĘIď Í ă¤×h‹t‡ewŇÔ@ł[FqÂ%ř†µÁđä&YˇË•qk©@¬e5"Â! Úµ áŤŔľ! Ö­9‡b’~€‚Ę>b_„ŢóŁ>ź q”‹ĄS«`’ *B~rÄÇÉŘ-1ˇśäE5`c6+Đ”úŚxź' ŽŤFĐĚîł.ľ IEÁiśÂđŐß>•^’ď/đ“:jćűÂdćůOë(«bÚS`ľÄSÓČGeAäCFâ‡&Ť®ů žş÷9ńvĄ{1YĺF•)PIŘM<ŐĘ›Ż Çҧ`¤©ž•Sî¶­Ýťç;»ő)+6n,fą®+ ° ŕ–P#DĂ crčĄ:Ű—›&í€}ws)ď&ľů=ľf«ĺ ěĘjĹŁýŤ6đ/e8Rô2EGőL$oPG©¬]ÔÚ*Ô’.Âd°ËÁlB·tŽ€ń}ď+O—şHÇ@)ďĹ™ŤáClÖ ~ĘŠ4߯µ‹µ¨żJ˘‚ŮŰĎMČd)¬mWôȶö;ŰG2)ˇŕÇî@˙rBMZ8°K[Ó€áu]«&ý9:],qLZ9Ż\Ü8´čîó„çmŘ®VÎhźzÍŃGĆn-’­ľ,ż#Č$Ď’ę›PfĹt›2ĘÝţń×ő7)Ú™{¶ĘÖ«#ę˛ő÷!ÝÖ¶<«Ě)<+Šš-‚ăÂv&¸ô!)'j x"ٸ¶L€ť……ęJŇápťŰj‡÷‡CüJ°ž…ńhČŽcčXs‰gÔ›Ë˙ţ’ű”ŐÍŕe·ůżŢdď¶PąŇőşq’´«)mâ2e“°FJ 7;:j‡]‰\,&˘aÔ'R(!gŻş:YßDŇĘętČJ¸ó‘čěŽí€– .&™śľtĽß”¶™ČŞíěÔ˝Y* ÷ś[s{ŇNV˘>Őŕ ť¸€ö-hzšŰ%ľtmÇů[;¸µyp߼°ćA¨p#J2ZHŢö’ěĄM­g©{‰ýŠJ’ęŢ·Ä´K?I _uYAĎí_ۡţóĽ± wy@Đő/{®îo endstream endobj 3906 0 obj << /Type /ObjStm /N 100 /First 970 /Length 2262 /Filter /FlateDecode >> stream xÚĹZKoąľëWđ˝ôőŕ0ŘěHĹÚ‡M Cčfłc )ĆŔćßç+J-ˉVnŰ=빨ş¦šüXU¬×saç])Á‰:ÎE\±Guű3lŚâ:#:JŢďŮqčśä8vNvâő jś@NJ—)NĄs˘Ó NńŢE6HbśŕRČĆ—"‡\öť“]V:‡ť!žÉ,Č9gW˛˝NÉ|ě5PŚAáe•ľTq!ć*`ÓMÂä9E8]`lŘŕO)Ű»8%ĹÔßĹáłv^3  ˛cň}=ĽĆÉ(ś‰UlÂŁť u´ŘŘôÔyℨSę„M“… ”m7Źo#@â´”vä’7N/I ŻtŢȱT+9wŚQČŢeظ$ă)95S€gTěĎ˙úĆě¸+Í Ăd@Ů|2ä”Ás8hЇ†¨çhP1J:”$Âąî0.ŹËůy˝|{yu>R«sŚm*KĄ6‘ŚsĺeśµTă4ëžppQy†ůŠU˘ČL¨™ (á6â]xY”Ľ¦ŘZžj]ĘLSÍŠLÔPľ„ýń˘Z¬R RłKAŔi#ŢqŠsňÓě}#ŠS¨,‰#×iĘľśoŠvĽ¨)ÄđGŕÎń¶Ř´Ś‰Zś•[^‚E‰ąŤËX«ŇwżMTüRÖŰÍi)ëW»Ý”p›<ßÝnĘiđ1ţá·űN4Xď^GÄÂy«vÎG?“Öě'íPŻk)qlŚę{A×°Ł˙i¬†żCśý|ňŤ˙=?ŽÇv>†1řQü,‰_GO‹NS Qg|XĆýuË W3#"Y@G`÷ş]·T‰ë=r›Y Ý6RA󡵄UvŐm|.Ţ˙Ĩ]kl<' Ł˘Łk\ZF®÷UćeâP÷W-…4őęŐłCbÚ®Ű$¶ŃO >cçT‘bQ.SUxĎĽ„Ľé­ť\!ŁăG Úřpâ6ĎUÉu©Vź-~d4ŇÓţŞő¸_6\`4ÖjŁ["˙»ĺ`Ö_»Je‚y,©çѫ݋.sI°’qň;Şn*} p U *¦G‘~ Óš¨Ż5)SjŁ„–Ći\Ú ™h.ÓŽH}„™“+A1‹Ę`“šŕQŇĺĽÁúŢk›Ş($ ®2eÔ^‚ú9đţH3}*ĎFo% Ů—  Ô¦cmań‚”† gŹN.‘w 1ˇoĺž<ú‚Űkř8Đ´¦Ůgj˛,óŚ€U§85ž`zź„îµNŃĆ›wť"špkłH–4ăŻm%bky¨ĂţraJČ|é‘q±’l&”ĽQX‘Ĺ˝†mÂĂ×ß(Ś `ýÉ „}ŇVŁ|’0g‹±éÂ=$žB¬6´Q ´Ń‚ťÉç `îOU>aóŮH˙?€‰ţ‹0˛ŽId“Č:&ŃuL˘ëD×1‰®c]Ç$ş`tŔ躲®+k9Á(ĹzC‰ďG)ÖŠ_­Ů4Yt×lˇô‚ę?J±ÉľýüÂЇŐ×™ű ‰ąěŃôzŽĎťšŢ\ĽŢ2=É{L¨śú\őăz&µÍŃSMM'=‹ćPčUOM•f´Ü,y9 °C|ŻBf‹·_W…·Č3Š&Ţ€éž ÓĽĚ^%Ö:±´Śęľ.L6™ŕ¤űWN<`kźyűń™ü)lcE÷Ě%-iEĆG…]Š4“÷óžU~č‰ĆwĹ*=ŔDµĎVő?:Đ»w’9Á›Ń‘ŽuL(RcĘăśS+Ţ—8×ý”¦Ů<‚B€ ľŔ)»OŻŹŻĎĎßľą>îŮtÂĶů ŻŘŻ›sOw\ć¨!˘#JÂŮ+ׄfTëBuIs(űŹš 0‰lƵ˙|Čč’ýĆ‹äˇ}ćĄ1îNaśĽ&=Dś ÔN7BËĘ}}é?†&NŰŕf_qĽRkBß1y` SňT–%k’öż÷„V‰˛ý­Đ*ˇoş/Ľ6,) ždŁ0BXy°Î|@8âp SŰŻ´–č_,Ü]ńÂ!šó „µ čĐ dˇ¸äÂ;L傾WĘVaɰß6YNVbo\†˛Uͨçoďů穳]Ŕ endstream endobj 3991 0 obj << /Length 1107 /Filter /FlateDecode >> stream xÚĺX[oŁF~÷Ż@ę ŃE¶Züɬ#YzÉËH…ĎÉÎ ¸™p•J몱©Ăü cćęĆaĐâźé™U$›ô”aSˇf|ĐqĺÍŰ;(8ĹmXŮł„Ôš‹ßă9]p˛b=`¦r­ť„2¤ŚŁľĚĐuą^äŮľ°‘1d¨~ÇĆrű%-:FŢĚ™iťž‚ ět‚?űŠZm—‡MZ€Ěl[¸­§®vî¦|Îön~€G"l đ%‚»Ä˙»N‹tgëŚ[y9»í¦’¶EçůÖ}±©¶B4O÷łŽ‘HivKD=Ô(Ý|TE˝[űęţ§§BČđ.ľ«ó^˝·:ŃsďĽ×Ą@ Ţ…ľNѨžnŞôŠ !˘ĘPí)'¨…öşl®*Ç„´Ĺ„Ô1ˇja „°VáÚ‚×HátüËü°JäLűI ?eČýčI #L!Ĺô¶âmCŕÜďÉ$Ń7Ľń“3u 2)a¤Ź jŇÁ”´ŹÍmR&Îóy–ć«ý`J{UĐ€ VŠKłüË*$„/Ę~€;Ä(‘şOŚb{Ć)Äü±Ż $˛†éTrÄ-ßT`U—şń)ŰT+¤Z8QŰYăŔ¸ä´oŇ"éuľ5-ą5ďx¦$’LŚ”ˇ÷ăťTňĆŢo-«|‹(đS~HO—Ľ:­ë­ÁžTÖď´ji“ëI=®MD$Ü—ă9ݏwűĹćą×#Î&>o_VŚŘu µgĆ`TÇűčůŻ4śś—ČÉqJ››,o#â™»˘'ÇT·ť>;˘ä­zŽG4ř5ň›˛×".)­T:®mčK‚PđţxÉw„ú;„HIŢúrŔ’pqă´ÍÍ[^ę<˙V/îmK?řę/p·"x&ĚL°:ô •ŕlénâHăp—,ÓÖIY?ú Q‚ qŐĽřęÖ·[‹‹ż_×đýáâôME5^ endstream endobj 4020 0 obj << /Length 1054 /Filter /FlateDecode >> stream xÚĹX[oŰ6~÷Ż °éA Ż"e {hł0 k…ľ$…ˇĘŚ-T¶;IF–żCQR$EľµŮúdJ"ĎůÎw®4A+DĐíě]<»şQi…!Gń#Rë0D*b8¤(^˘{/dţçřq&0ˇ ÎŐoŻ“*ń¦´÷±*öiµ/Ś{ĽŢĄűŤŮVI•í¶öäě÷xö÷ŚÂA‚h§@k¬™@éfv˙™ %|»CóH٧zç ɱÖ9ú8űkFĐ3i—ö§5#ĘpD©ěŰRL:#0U~@ !Ţ'_h/)˛ä‹ŻĽÜÄöńů›EĎZcÜúy„¦0ŰÔÔ†´®n(ĺ(ŇXh0ŤEŁę—l›ćűe}äę&ęo‹XŘPř«Ű1”Ą°´Ýqßţß°…CUâő„LJ(¸*jŹüć8r¬dT hČ1•\`-ŐŔŁ`řMfňe90ůĹtőÂ…†XićűGµśĆäŕ,ş¤ ˝˛*ŔŇłüşĎ6ŠUęŤ6‚‹ĆhźzîH¶]ŤĐ8şM6f·ő‘ É~>Č$Ď’ň8Jzĺ¤L‹űý2.Űš"ö)#6žŐ8fE?Ě$Ö-MĐ<Â;r¸ÂBńöX J;}Óšc¦őyäďŞG¶Č–‹ÔgËď#ďRŻŞŐ"ĎĘęŻ*ŻÚ}ő łýˇřK×IŃ”…ľ» Ľ8úcî:ś—XB©8‹ż˙â‘Ô¸c¶=áŰ3B÷LŹťT5×SĄŮUÔ~e¶Í Ó¦}]HôÜ,]©ľ6eZdßş^{ NŰ%p(#'𓯴@W¶  ą)ŻŢďöŰĘĺ-„L d Âş}4đ^ Ghx W÷Ąw ¤Đ•§cPBÇ'Ń8GÂ&¬«|†ů|"Q !ŕąŰ m™(Ý4á0ôÇ,{–vmľë%EÓCFC(ÖŚľdĘ8ÖśM˛ËĚ6žkßÔăr§™šŽ¨#“Ü :lj‹®vôzYŘkeăjHř&ľ>× €BAP `Š?y6G ÂŘé/-ň-t =ŁţĎüzÝŚŽĄ× ýSŇë$âav ąŤ.Ü=Fh9ÇÓ'ŃÂ8b޶„ ˘8‚7‚ăus‹[ wýęŃç…{¨ÖYéVýqŞ~ńäĂSŇ|]ČcźB·©ę–eĺ»M+ÄôEçůÎ}˛^Ş_C€1čKóaŰíîP4"qé Ü»Ru°©WúTxëď›N¨»LŰÔ}Y*ŃKnËíŐ>ÄL…˘Đ Î%܇…Ä!HtLëž×´®ţŁ]ÜŮŃ`ß<°ć‡PáV”Ěe4—Ľu"{‰ŹZp–ş‡Ř×Ä+’Ôôľ%U»őH4Áu/ęyäąý7Á†Ć?Ď+›?ăáú),î( endstream endobj 4043 0 obj << /Length 926 /Filter /FlateDecode >> stream xÚµVQoŰ6~÷ŻÚéA I‰¤4 CÚ$6–6éŞ/m‡€‘i[«,”,ýő;š”»ŠoŢiăî»ďî>Ţ {s{“îOD™ąšc2z›ŤNĆ"ňH‚Xʉ—ÍîĂŰ‹ĎYŔáiIŘ~!áţA ň‡mödCw™•ĹÝ˙łĚŽÁNŐü8쎴<ź.ćĂ–ç•̵Rő‹–áH$ÚNwm˙J)ŰrőľŔÇ÷_OŐWŚiŐKČ<=÷ěĺfmfŢ‹‘äřý›Éíő‡€ř×»PĆ?CŤŕ¸až ·©‘>‰sëőÚíj Ák]ß›•Ę ĂLMŃްÁwšă&űé#${q{őÇďCů’›ďÇ'v.•6ih}Yé:W0fv?ňNĂ{oK·˝şôśŃ ź‹lôOď" endstream endobj 3973 0 obj << /Type /ObjStm /N 100 /First 984 /Length 2335 /Filter /FlateDecode >> stream xÚĹZ[o·~ׯŕcňPÎ Ż…ÄI`7@‹¶[´5 a—ËuÔÚRqt 8ýőý†Ňʱ­Čkg,@8łłĂá·Ăá\¸+%ă ;㑣)ýÚ’ÎH†rçdĂŕ‚˙DÂF•㌄C}–)ɛԇ§`rĘJDCŽI)h¤R”‚I˘T1Ôť+±ň2ać’”bĂ.ő»ä0Cö†%wą`8„. 'Ń9r2\\ż‹É]´˘płÂTU 9<.9uî +Ďă®Ä9"@zę<<¸ďŹ >¸Îćŕ1eČ…˘Ľ-Qş)0yĚť‡ËÄť-)©1Őb™ć(€–cç©q]GŞÂˇóÔtĄó’ńÎ+H˝Ë*\˛ńş.ŕEPÝ’0¬gR,é9ʉw”¸Îó ‚@ÁĂ:ĘďaŘ őŢ«ÁJ†– :Ўč +°(o‚»ćX’ÎM,¨dB}ŽlBň}D10PV}ÎD‡E&b¬Rl˘'Kb0™Ž%obJ:7bńsP4‰¸ŹH&qż‹%Ă^]ŠAuT *¸ÎĂŕá\ ¤€Ŕ]1)JçÁKcîď» °ÉˇăŇśşťulŃěÄcűfwrzz˛űÁ< ¶÷cłűÇ?˙e’łű›|´xVsńúĺËç'ß|łˇ0;Ëp¬í…K°ěÍĎgË>ĽĽ8ÓSł{%a‚ôQ1?«ó]_ÁŮÂrÎĘ),÷‚ŕ/×—E÷aľžsě~Ú_Ö'í`ž™ÝO?<4»§íÍÁÜN˙ô—˙6Ü^´“Ý÷€Ň.Wúř“Ýăvuůz_ŰŐőŽîĽż´é|řîňŤyćŔ0–ĆżěÉćňó {(Ń®ĺ\\\Bé3ÓşÂęAý† ‘"/Dą!˛[Z^YEs^4çEs^4çkÍď={‡w˛{ňz<ôë?ź_üçd÷Ýĺ~jűţ„îůîO»wß?Ł~ˇF©0gńۡ([Ä+JĹzŔŠ”l©}UźÝŁË§—>ńŐŁ§Źţúô!źť=9ě_×ĂŐYţůk]˘-á @ه ä­/ Ď[Äö{đŽŹb‘VÄ’Ćç$đ^kžł+Kť}ĄMëoŽZKŚR¶CL¬Ó¬µ@NŮjšľňUGú÷a>Ś/ŰŮ€B5–Č~”ąivkqd¨(®yćííë BŠV>V49Fg‘Î×›wb?e‘Áë€ ç×<\j”Ę74/ĚĘH° âĚV ¨űżoÝçÚ¤!µůŠěç)¦Ő_‘‚§ÄÓ†`ą`×h}“ŕ¶([ÔbmH´ mjŔčF'ł¨Ť(ůÄÍŃssőó7D+d٦q«e,ęOŐ¶“ŻsÜÄyH©Őa¦šę|jĹĂÁĘŕćę–~@Ĺ kőV¬”p-Ö=Ř(ŹďűâđâěěĺůŐaË-ŹB'żÁ‚ť®˝ÉDZĽ5ś±SZŚZA¦ĘśRÍe”ć­ Cˇ Á:ÔQ˘MJč«K‚ČîµX OeZ©ŁÄI¸ v}¬Eü¤Ď(:zĺ\ÜŰĘ9–^2gGV ÂËě_ /e62yÎńÂmA˙ta}ŔRŽ Ś]g Ĺ#‡ a‘•Â)!ĐJa­Z‘wW Ł@@\)Ë©§Ę#;¶zR±˝0ş+›ĹCľOtYx>Šłc;-Ňý„Ń$ˇŹ-džĺDâ„#Y~—¬;Ox÷á˝Ó…ÍĎĽc÷ţyB?‘ú}ç ý@QaőóÄ",D\´y!Ę An!h!x!Í´h¦E3-š)myž°Ć’6ë‘lÖküzşŻç8Ăßm†?żx±a]”ŃAř·Ř]GÄŹcZ*#ť˙ …đ\Clą±ŻĂ4`xĘóxnŤŰ·1d›ő=ÁbŨ5}ů˛VĽÁÄNúůâÇ1˝kExÜ0F'CÚ\ü§ŠPˇŢi¬Ž¶ŻęĐîęŃ0ô[}mÚ_÷ Ç ­q‹<„8;_)ÎiŰT\9ä1nyĽPPl…[Čę©€÷!ľÓÄ·LÔbM3Ďc–ę& ĚÍS™·oÚŁčń’Ü6íŃkW#NócĺLCMc®ăĚ­Ô m{N- k:ÂÖbgőČŇşGAÓtozÄÖýĚMďţq0§ĘâOCq±ú™&?ă§#Ďðĺ™[Ňb—Tú{‘€"^OŚ˝Oë·’Ű,3\+>Ęf č6sóđvŽŰ#{ ™‘<Űä©gĘľ¬wQš˝«yćč*0&'ôÄčCáĚŐóö}|ČÔ‹ňŢęKČPČďW#Ůă4"99)h±}rqňi.qléQŇ‘ľĽ9{zú\d5â)ˇ)”Ô\#¤DCáÔłź'–ˇ¤°yn`´0!űŰ&F’Ë_ě‚rAü|űâJ±\âçťAô—ÖkĎ Ţ^ZtTLúNxť0ŃťíŕťÂ!«µđ*alS«źZ¬ĆĆ;:± „‘Ô8E2ÜŻAX 2J:‚, 'DÇF´‹AŽ!ŚÔŻ‘l/Ěh÷îęw7Ćoň;„W¶ŇżÝ.ß÷Ţţł[i/¶Ňž>Ą•†|ü •–Ąó•Ąó•Ąó•Ąó•Ąó•Ą§–Ą§–rO/|Ww† ýŞśëô(„+ä’ŚZXż ‹í!<żÍ =)ěśžvý»őp~y±{˛űŰăő˙«WĂůËĂĺçýpQ/ĎŻěţuűöĺ0îĎíĽ˙ú7Î pńúĺµ ţŃjBPÁý˛+°Íźî°~~٬j߀T¨řś~ †–"űO7ßż‡˙µó7ß¶‹«vľ˙đj8Ľjux ń˙OÝĽ  endstream endobj 4131 0 obj << /Length 1968 /Filter /FlateDecode >> stream xÚí[[oŰ6~ĎŻ°h8ŢIő-ë’`ĹÖv­Ű—¶T™q…Ú’'Éë‚a˙}‡şx–#٢ëÄЗȱx9<ßwn4‰˝©‡˝ëłźĆg?^)îiHÉĽń­§0ŇRz* Ho<ńŢű’Ź>Žź{ ^1.ˇ_ůíU<3ŁsŞ´˙s-ç&)Â"NŰôěr|öÇ–Ř#«µFšr/šź˝˙˝ Ľ{îÁöľ–-ç ÎŕóĚ{söű®ĄÄëҲ`MZ­ĚS’ ÜűRQJŃtóŢź !ý&ćĆ41őK+[6­…|]6ł«ą_ß\ýzq}óâĺřăźŢ^mf[ŃÖ—ÍóÇ+‚­2± ”ŹRD李 j˝ŤöÓ¬RÝWxáÇEśL«oŠĎµV‹lD°F&ŻţŹ“ęVŹ$MÎ?Ť(ö—··vD“™IőfžNĚE-7wľŤ"ĹÔa5g÷vüňęĺëź/_wiŹ;kŹU^Ěf©]Ű× e…‹Ĺ,Ž*VoŇę™™(ÍjĹ«§?GTř@ÖZ«é˛¨?ÜÖĎlb˛‘ŔŤúV<ű°‚ #%Yj‘kxp ˇ¨Dʏöďfbnóže¶ )­J@”ÜŽCQ [ şŚ“BßŰ Qţ´Ţt,ś®Z¶…qbî,śćŤâĂZoQXküS Eľ0QléŇđ±čq8J¶Tak*ËůvzÖÜŚĚxDŔt`Ś ĄlďşÖoSťŰiŇ`ĽÎ“Ëd¤@f“•¬=4UśTŇ§ŹşŐß}hD(,Ž  YÔ«‹ç—CřO¶Ëđî—±k——ă+Çă‹·{ŕ˙ë’ĘŻ˙äZÁ¬‰j»Öń*đX´|âĘÍ‚·\4sĹťµXăě,Ż–Iôô/˝|O¶«ĐzÇÜů™Â,pď~ľe—§h,ŢŔ`¤ý×ÎŻouť+)ÝáNµMSc%wTCżô;\wô9Ěě÷ŔIî€.-éAť‚6ŮĄ Z=ŠŢ`…BŘş[˝šáĽWn›Y˝ţrçL 2 ZŚm'Ç6ó´ß C»°q¨K˘†…™NÍ»Ir“™bi3Pá'ĂyOoâ$ް—>Á#°ę&GčFśH‰Ä}Č7đĺ(ĐëmčĚ$^đ:OšĚ¸ž§)ůňd7$ťIŃJzű.ď`Q ĆŹ €I&ĂôbÄ?ű,ť/2“ç;-ł2ŠŮCřÇoXA8™> stream xÚÍ\mŹGţî_1áł]Ő/UŤ,”7@ЀȞzfşÍ ű.ş;Gđďyjnű6äěÍ ç•â¸v¶·úéę§Ţf¦śŹ‚ói D&Čŕ)š ClBR B”e 4¨đŔuČ´^‰CĆĎ!äś‹ĎX•!E‡kŃCʦĂĽ)… "őC oC˛Ř570y› ?cďl\¤Ťs&Lɬ>>ďČđÇŘjZbĽĎ«,%96IŻwăL)™–„ŹĚvÍÖŘćHś8™„ŹĘs¤0DçL_ŠC¤Ő$) ŃÇő2ÄČ«>˘¬łĄ{ţüŮîĹżľŻĂîÓËË«Űg»Ď®®—zýťChp/wżŰý~÷9>ňËg»oę|;|GÉŤjátci9ç1Ă„P7bż1îŰwÓ-tîţpqůŹÝ§ĎźŻ3ě>ťo/®.wßîţôÍďíĎ/Ţ–‹7·WżţGýáârśŻŢ˝ąz;}ňÚ®âÓŰ_ţć7Ďđß0Ť ő.Ť{Â)ŚfNOiĚ>>`+?Ôë×ő“7eşľŰő˙‚,Ś ăFsaĎ:b‹˝‹#éă-÷¦Ľľ.77ő“zyS/®§_˝-·oë\Ž`ÜO0¬3Ľ2­î!3Ś ~Á_ĆĐÍNF‹±`ôČ.`ܧĂóçĂîŰa÷ŐŐ‹«a÷Ĺđ‹Ż^|őęŐo˙öâşĚő•ţýU!šç8OZ\IĄÄĄMđĚä–V—_[ĂU?z„VDůQ‘>˛‘ŢN‹Čµ„ÂŔrŐ0Í´LešBŃ…ęś ö‹á;$/„o†Ý_ţú7Dpl0B«#řF.ß˝yóňĹ­Ehtpú“GŤ#BŮćcCäAý´Á,2ZT:m0l‚ř~ŇX„Ż‘~2öË«ËŰu׾DřdBFYő%bHűO®=#Ţ}ĚV((ő/ákśůn>¨Ý}}}5[Á—a÷ő_»őź·ĂË˙¤ŕ×ĺu}¶űł×ËŰ‹ź«:cÚÍŐ»ëąŢÜŇőÚërQ>»úç°’3ć82˛¸5v_—k(±B'ÝŤ_ů}ů×ÚÇ`­ĄĎ^ .p|BbR¤ Ú…ĽRלşćÔ5§®9uÍ©kN]sęšSלşf隥k–®Yşf隥k–®Yşf隥kÖ®Y»fíšµkÖ®Y»fíšµkÖ®Y»ćÜ5ç®9wÍąkÎ]sîšsל»ćÜ5ç˝f«`öu»ŕ»ş»ş ]Đ.tÍÔ5S×L]3uÍÔ5S×L]3uÍÔ5S×Ě]3wÍÜ5s×Ě]3wÍÜ5s׼w˝—ŰĆqôKćé:zř…$SäÓ"ą«´pŤ±´D“Äě@&Ť-ĂíâöiG<ŤfCWd‰]ŕ˙w‰ý´ˇÍ!4Ń0/fŽ((}äi*>hšŰ†hcÍAĐSŤAUűúwB¤F{v\)q». űĄÍuŃ Öďą5”¦Â[Â…Qá$ Ć];ĚŁĄëF‰ď…űúúęÝ÷Ż^Ý\›ýŐë2µ<(a‘\J`©-ÂaĹS-[”8¬'„Ńâü¶ë)3:aiEĽň2kóBCł$E༮'Čhůî~=IPßęĆëQźÚ˘‘„g—§\ęÔ´f!†\Şř ×âÔ!;ŢŻGŃđ˘ŰoŇěRđ}fĄŕł”tAÂBúJ[îOwÔÚŮnžt÷1·˙ŕj>+7óŮzN_J÷ś­–ňś¦/Ą;ÍVKůţŇ—Ňýe3‚=™« ¸ĘĎ€†×ę:BGPîUěÖ‰®Ďât*‹ź˘Ýí¦i~_Đł´”guC¸ŞkßᲩěfőcŕ>]á±DŁXÝ<1ôqô)ź]™Ŕ·‡ËQÉăŕ*7ç‘Ń2ç9)Řα¸‰*j0Ţ:6ňzcÇś”ČĆ\$±äOl Z`ôP9ŁŘGďďÚ§†Ą¦Ě~.A·lI\ĹĂ>Źžě>ŹŚbŹC4źČ\jŇČ ŐĹŁeG-Ú´ ł_d{ć˘í‹b7ćy{´´ú›­ďŠej4%m“—=5çaĎÚ\Î ˘[Ć„čG6l{¬¨XF{fqęæ§P…“a‡¸‹„\ósĚę–¸!ka‹ŃÄěÁz”X1óăĐ>]gÚi€,ˇ>hŔa LçI=Vvp´$G±ľç>>-jhŘiQBćĘ”©ÎeÉš¶·¬łš–%B‹ÎÓ˛{¬Ě¨ä(Ô÷8|K›SÇŮËńDB~ńu© «đ›ÖŁ"đ)ŢÖgTá<#WÇşÖÉQ¬A]ŘT``­G 9QŠ9¦…ÓRćX¶Ď ĺ@ZËî-« «8Ď`б2 ,›Žb}`ŮŘę˛řčhBĆuS•¦y eâ쪣e{ˢtŃ|ép´ó +ł=ĐňG±>°ě¬šŰĐmÚ=aD‚,ĄlJLÓ”ćío`‘^ Щɞ—~<Ëp5Ţce¶§útëűžä’şŕ“_"Ę i9Ěľć’Ň˙!ÎZĚJţ`YźFâyrvŹ•)Ź’ĂQ¬ű043Ő:M ={¨)¶|EJ#·ä˙C×č ĺCííŮŹŢéŮqÖž•v¬ě=z˛|ëĂhPF1퍟c[ęśjZŞÎYëěňvpäq}un7® 7ýÜĎŻŢ\]ß%Ű…HëŇxI•Łjqř©“Ě1·É-ŰׇŚŇŔŮ+N{0JDéěÜË^÷ęX-Ů…úžÂ›')l®„‹p%™ĐÔ†¦\iKĂňÚ€ńmzÉŹ°ě´”®µ€›§er9,čI©hĐb{˘‡ş€‘kŃśeŚíXí‘`˛wÓŽ`}Xqq !´€(+čăĘŚáaşšŢeC˲ÝHáWҨö$ódÓ>= P$w¨a8Ůłw9Oě±Ú˝ÓQ¬ź$ÉÂKsjš«uĘŞŚ PaďX7ĚvŹŔ^׾‡ĐŇćÇöéYŕeÔtčľ8Ř+çI‚=T&{9Ńú€ĹÍq 2KĚŽrś‹bŹÔk¨Ťck[FJc¤|@»ľˇ—N7ěÓSU‹˝«wOń÷™¦=Vv:ZOsęĂŠ›ĄĐ"R'.FŤZk¦€ęp™RfÝ’<Ú1‘{´ČÉް<ٲOO@^_Sî$`łśi6ŘcEy7z’ŁX˛`rh»dq9Á=µQÖ–¦Igvˇrť¶d*AçpCB»řË>9 (çŃÎ Ý“>ĂşPS¸‡jŻ×Głę‡ˇ>ĽyL:/ ZŻ2·4ă#Ő[Č~F~¦-›»§m‡:Zďăé†}z Hs:Ü%°ř1śá];)·Ç ĎŐb׬{:ůć†M 9›Ś·Zj«čă˶U!ۉ¨×^r~„iźž(`YŮŔŢpÔÎ2ÜcÍ2ćŕŹb}ř±/âXý’'´ ©óDSD“H­mÉ#ŰĂeď_=Í´OÇSŠ1tŹ5xw‡ý ±vƢÜFł`,Ęm˘|žŚíXŐŹvřçˇţP® zEˇË^©“ÂE M žCk[Z•4ˇHI÷Píw˛S’'›ő Ůjg×ěččk°÷Ś űbĄdŻëŘI[°‰Ë^7+32Áűë›ŰëwóíźËőE™ŢÔíý•ɡäłcŠ)úóô›ŽUíčÝIX÷ŽĹsvh÷çŘŞNÉą6çśx"qI¶uś`ŮhŹŐgm®O¶ëS:Źv¤˝c5ÇY±ź!V´iŁO: 3‘yÏ쬋#§Źâ9js¸‰žýO.}lżŮ#µ¦Ă^3ţy¤ß__Íć6!ůĆ ý˛÷ÓÄA¨”ŧ<ˇ4BŔť§źžěµ âä“˝˙1xś5a—)ę‰Ń_łČi#ÉúćC'e×'ď?)űăð?=T‹şže¤ôřAŮŕHWČ endstream endobj 4162 0 obj << /Length 1639 /Filter /FlateDecode >> stream xÚíZMsŰ6˝ëWp¦i¦Bđ 0·|Xžfb;Ť•šf< ;śČ¤KQNýď» H‰´ ‰ŠĹ¦ÓéE¤@űv÷áK7N/§gĹŤB)Y0˝FZĘ@…ILgÁǡBt4¦JO§§W'żOGó(6Ї苻6IćĆť˝7×#‚‡&7)Üóiú&ŕś!ˇX,ű“¶N¦?q@VfµFšň ľ|ü„\{`ÄB|+ďĽ ¸€Î¸íl\~ŕĘڍ°§öP;Ć‚‘ˇlz&  ×Ť ĆxxĹůanP=|mţŔ¦I‘diŐ’ĹË[“QŮd]đŰ. Ż#Š1ĺH Ý0ą2úÓĚ™1΄Ťđäí‹Ó«ó‹óׄ[–žMXčé;t}źg.Đ%‹nÜůâÎĉµafČuµ,|a ,Ý vúňĂÄ5Ň.p«Ţ'#†‡Yîp~#DâťVČ‹/ŁŠÜ ·p˙“Ô#wHłtüy\\^_Űy3wĺ6››ŇďuśíqüâĂôbrńţőÉ{wŕü‹ů<łŘľ=r6ş»›'qTŃÎ^©’š›8Ë+ÇŚőó~DĹřXE%[ŐÉuuĚg& üÝîó=î¸<ą:{÷‹k%đô˛ßĺvî »Ţŕä.Ď Ý‹:ăQ^E'^ć +ĹüÁý].VlT[ýl¨€u”Łk?kvOG\îĚĚ\eĽ7M¬Ć{Ń4°LŇB_¶ëG*¬)¬󦸹*‡´ ŐŤ{`[¤ÇŐŁí6Źn5ϢŠ&qTěłŮPŠ6óv…v'…ÖÁmůmŇ‘.o}~ذŐDQŘYf:’ئĹ=Újz‰Ý‰W}Ź©„Ŕ4ôżä“e÷!ö ʧ †—h{z•›b™§+B4ű•qΛ„fÄŮ« &©±"Ę1żŔcŠ@dýô˝ŐĘ(‚âî%7‘q¤]!KnŤ Đđg*J`‘°ę7ÎŇEápÄ€íK”WÝó „Gh™"¦WŹXVű0(DŘę¦hžD ŻyŠ”d}›/Jň9â ń*ËŇc̰ŽŃ`L …hĂ:ď„Cd8®nJŁ]śSý8"ű!đ.š™Łsă1O8R„­odÇŕ…pI†B+’Í=ʨek9kŹÚzşqÁ)î Ů-b‡HqyPÖv #®Uß‹Kźk-ßB¦“˛o(%=q€ś‡Ľ3u†N5÷ >;Žŕ3±Iť“´HЇß,y˘ůҲ‡…5{T¸ 4î`‘PRuˇŞ“óÇŰiŢ  T]¬Ż2fşp–u›Âł‰<(ÚÇŰÚ'5m&-ÎćY^'¸ÝíA%ĘĂGš}çńů‡‘äŞ3=@Ä'kĽ?Y;ą‡<5ôlÓ°Óëľb˝ëB„ńždCt]ôŹŔjč¶U`‡[?lÚwéšű']ÂHgjr šA¨O9EĎě|Ú¬KÄC˙?ë~yŹ4ë†Ŕ ź˛ÉăĚş!ŮäÎŰ$ýÚ 5uB˛^ôËť 60‚;P‡hÖ…:Z…E‡Üť/ľ~¤“ů}«üőDwdôPňB‰ß šFš?šźąUÁřUh7‹öľ†řĚ,ŠŠ„ÔÝ‹" K !|ú¬úÓçË"*ĚőŁPł˘÷côYü‡«"K‰Ź;ş?î¸z(bMͧáŮ#ű^‘ý ^ÄÄ»•‡ID=€=ÖüĘ7»‡ŐkÚ¤.1lö?Ű»íŁĘ]źłlf^ÄEro›AMfM"„„îŕ}ë«d@‚Ó'×Ęvµß?ÍąŰë' %>¨~ęü"—±đQK×ÂOS"ŠEwš*(ôCęŁ)!Ç!‹l˝ű1iąµď3čÖÚžZOX¸±Vő}ÜŕK=€±3/´S™$t×Úş;jkµYŮŰzµ¬ô pŁ"‡ŘżŔĺîSş˝Ŕµş´%­eK/ˡę7 %úÖ‡Żĺ÷~ű´ëDV·ú>qĘVN|ŕRŁöxłţ’…Áˇtj`ę¨f<»ő_mížŐ'oĘď#Ş?Őç<îÎ~.Â点×öŢúłŚ˛ă$všźţÔע˘ľŐęŇéô´ŚŤŰX¶U;őŻ3»ĺ˙×ĂM9ĘMęŮO†hý 2Ä× endstream endobj 4183 0 obj << /Length 1616 /Filter /FlateDecode >> stream xÚíY]oŰ6}÷ŻÖ¨Y~“*†ýH‚mÚ%î^Ú"PdĆbKž$ŻËżßĄDŮVB»rgŁĐ'Éuyîąç^^RQLl/gloáúr&ńqĂ€›5›Uş#†@ c«2ŇKL,"ř^bŞę,űˇŔ®/$BrłŚ~Kś"-´Oę(ÚX–·=ÄNpöS˙I[f—ë wŕŮE7`3ź:9´¤·:9Ž#ħN} u–¦z•Ď…)˞݄&Ha}pÇ ,p Âŕq<:’ă=˛’‚Ż?łň–•˛§8÷HJŹň%%١©x§“Ć '°]męc± M‹ŢŮw}­ŰcÖ‰¶wu¤Xaů\%GJĂ?-9ň]Üp ;Ščg"$ůÖDěC,9xégš#¦˝š;Іźw6‘eeŐFdX˝Mł;Kv´Łgg°ŹčOŹb˝u'ŐŁ GßşV=‚Îúëî{ Č>Tź@“cĎ^Ög‰DŔĂ~Y1 µ” HČfôÄ”ŰxXw‘GîN˝4@aUâŘŐçÎ ‰ďýóSÚłRÔŻX$ 5ÓzQ!%TŠ0VmĺhOŢÎĆg/ă2MĐmă’;Ű„» sî™Âd‰éLřěJń†š!Ąicş5ئesŤ›ËőĆ“¬2ĹÍé‰;M­ňć:5™)ě)GÓzÚ'ÍĎv`š5W™¨WE .Í—n®Úhn×JÎ㪴´˘–~¶$@ —”7Čź¤Y2[N\mŽĐwŻŰŽ_}ĆR|•«e5™Ą×ŔécS\!MWó™‚ČŔGşäG@W¤Ůô8čFDő ŕU>Ë tűK}€Ž»‰ţxôŞpéF{Ť‘Q5pX*węý.N áĽěf…_¬JJŰ3/X;Ď”ŠÎ«Á§‘€­Ý“‰±‡Y+~{ _LÝÉţE=ĚŞ Ŕ_ťľ}qvuţ~HÂ󓇦ěĽÁvĹ2Ru™ŁB0¬&íŮK îÜĄD}đ7mîË…IR ÍLЮĭ ¤Ą8¬·/ÁŰ“«w~÷9Löw8jđ]›˝ub»0kĽ¶3Ő7‹"O`'nÚĘR¸˘, ¨UŐěľůą,AăĂôŹ#Ş–ĹřĺÇSOô»…qş*r`ć«+ŐĘĺęöaĺ,»ĄÓä,ĎF×vĺ[ŢÔeĘý¤y2Ď'fU9ű1wŕ„˛Ä}ż?}ńúäÂÇ˙nö^Ěfąuîë¶âĹb–&Í׼ΒÝl^8f6šUŽÖ|Yą›w-& _[ţv–´´ XŰ®)âXl·ĂssčĘV5f]žŔB¬›MÁ¶¨ő—ŠéjdĚ^ŇťĹÓ˛%>vĽ%±cüÚ<ŞrÝPě—ÍűPa2›+Ëůn}şŚqÚłBëǤě~uă˝-túľ" »4ďó ąý ݣ‚^ÔFC¶6§\ Ů2sf›-h´Ë­đßµ7oęęŕ~PwÁ„7w?ŃsÁÚ΋®‹Rm¸íöĆCŤŰďzíł¸j‡ÚŤ%„µnmXC÷í7v›o˙ÜOë]šÉ:„Q˙X > endstream endobj 4260 0 obj << /Length 1821 /Filter /FlateDecode >> stream xÚí[[s›F~ׯŕf˘Í^Ů%oŽc{âé%uÔĽ$ŹŠ°ĚXPS·Ó˙ŢłÜ,H,v)“ {®ßąpX°µ´°u6y9›ĺwŢZ\1®‰­¬·“ß&¸#*ôˇţ©”aÁH ĎÝÔĆ%WęśDŽ´×·A2ĎÂ8Jsąj‚ĺďóSćm…¸H*iM)C”ń‚ĚJEc­ő~*„k‘¶Äú¶Ľ¦M–ĄĆů]Ú`Y˘ďšűÁĚ!Ű÷wA›–ľëß>" jM Až…8oŽÎOZ$ěgŰex÷zfşä×Ů©áŠŮŃďWŕCU)?ý_q˛É6§”#’@.ĺzž®#˙‹@ń/‡ ;ŰŐI¬á H~Ŕ÷Ňë€őĄC쬋PéQš`ť•°ëI­5Ąz ŕ!řeż ˛"ůd×eŇ$‹ŁřŞü]gwëę¶J6‡5ضl<­Ů1`§zŚÜiPmö#d»Wj—®ą+ĆY°Đčl€ëK_Ň’ĄÝüëy˘ĎčÜň€Íc†‚‚V…äƬ-Ţń‡ú–ýe~Ű‹č0*U»Kb˙âf°Uµ^”Ń&0 §ĹNĺŇ–%#-G·‘A9Z•Ô¬"ćaÜ:[/™/Çq%ýU™IĘ˙b$N­X¦q’>­Ó´ĺ¶¦—?0Ćú*úĹĎń"8)s­ć:;‹>·<ÝÇׯYßĆř”÷'`¶¤eŔ¶|Ó[°¸¦ĄŤkqAVÓyŁ3Çedk-©°ŁˇÉ#„ĆĂ[ ¤Ď˛>”›4=aG¸‡´‘[q×RĘ™"÷|s|Ćž•F¬ŔYÝ쨮Ëly©™Í——Y·ôúZj˘A;ŰÇë(ĚÂů*üG ZEŇ·*cś ŇŮŃbŻUeOĂčí”jCeÇńí]Ůogú/˘|őĽsÍó”RçńÚNE´•˘ÔYZóŹŁŐ}e\XZH®š„6Ňyѵ6Éç±·~Љľ¨T;»Ë©ÉUČĺÔ$5†çéFVÚÍÄ•=~C;^Š#OĽt’žˇČcŞŮG‹E…ą­ Y;mFAŇĺ°†ľű‹ľ…†ßŰ ę÷SŔOb€ůżáđĹL6ŇäPôĺN;täť-üÓ$?Iä-ú}ú\$áTOň+Ëpí"ç@ĐĹ8×?…ŃM/Ş›¨ŇK¶”TbdNc.±k&˘UŠzÚ…dČ K]¸ĆJąs#‹Ą‰_Óq‘'ÁŢÚôzäąŃĚp\Üz¸I Eę{¦ڦśj‹ćőx|T‚vž‘%Aš5ř Q)ËEŃžč8äú  Ä;G…äIZcęí[oŇš ěf!I>?1(rţ8čă‘Çըޤt›kí°~X;H,2N4O˘,Ěî ˝VëŽzBšő„ôw))ÎG×!íÝL fyJđ:’ý VŠ ĺáńň˝Ҭő¸ËŹWqňů´K‹swŮQ1”@L’'®nF ËŕđĆžHÖ¤BŹŐ©®ô˝˙ ŕnćŤnř1”Î=ŁÖ,Űč(†±p5íÍ 'ÜäŁw@›&+dłăéËGpČč~”¬ÖĽ|x­‚žL‰§âěog¤ŰIhŤ’XŹ=ď·ˇĆÇŁ ††~¦L!eö¨ô°”v=ąĚm$îW`đŇÚß)¤Ň@#Şw˘ô•a„’LŚMąĂuť ‰iĘ5!/Íú/Ó÷+SFˇŹ„d׿ócÜô°zőţÝaün OŻ÷äPš)a?@ľäz7çµ@ţđ*0hmYđ×IěÚwŃý¨ń7Íć›ű$ćѢ6G´ ľbśn,ÔbůnoĘ <Ěíc 4%.Fő° pč~¤đ‡Ç§ośů»°Â,­¶Ť‚†ń:mě$XÔë©}€±‚Q×äawŽż}˝ Ź¨ ņľŃÚSôyşô”AÝ9ÄWŹ™´ůMđ­Úu^?řŔžîhđ âˇÁçŤBßPňŠ™ľ“2’#‰‰‰‰ôüłbbñ‡§Z›ť!ĹR‚Ť©áA •Gq¸Ń=S ˙ܸ]_ąýcňŤKőiŽ‹¨tůĆÇ,äşŐîHÇ”ˇ_µv?WçůćÖňZţ`‹#‚_ď…`Őţ2ú°ż,'úŐËp€FRoa+™V·ę=›ťĺVxŘQ[Î^ĺ…żď—ÎTᅪÚvú'V« endstream endobj 4164 0 obj << /Type /ObjStm /N 100 /First 977 /Length 2235 /Filter /FlateDecode >> stream xÚÍZMŹ·˝ďŻčcré!«Šd °ěH †´Ç‚°čOE±k¬V€óďóŠł\ÉÖWKꑤ–Ă®~|U,’Ż8#1Ç.t3w1¤.R*]Lč ˘]4ď‰ŰpîHkOękOé¸Ôë„ę[hät©p—bŔŁRş”RGVB—÷hě˛xPłŐžÔvµ®rŠťˇÇ¸Ó\Đ7,­t–Ľ4c0âђڗѲÚ<'7áRÔÚg@¤Ú§NÍű"űµďrĆţ1J¨}xC’ŰĆ«}h%©}#i3×>Ľ‘KíĂĹť`ĆĺčZęn0¨E]Ä~Xđx‚$Bâ­¶uÎâ­ŇQBĐŇŽJ¨ďć¤x áĺc Jě΀'(‹>.ž »`Ϣuö¬ăDâ}Đ”=îp‹stÎđśsňŃđg3śó ôąh† Öš ‚>-އ”Á°uń†eÇG*gĆŕ“Çž6ÁÜ·dÇ1>}p†ČÇđpÂa¸ŞxĘŃÇ@ ××=‚ĚóŕEjžŠ#SŞé1Ŕt'VęÉ™˛sÝ„™A¬ÇÉŠű‹pćčEŚ›ŹńCRćT™ër1÷ A,žâU¨ú“Âő]¬ť’’ŰYFRsÄHźb5Ż AĎ ™î\) pÎ[ČţŘ[Ôi]„ŹjR×™řJ¨vX„lÜ$ËŮ˝{g‡ó˙ý¶t‡ź†gËŮᇫ˛ĺňć…§ aĄ?:; ·'#>…q°ľČFÎň4Ůfśh;ŤĚÚsÜH#Yî}Őm3ÖŘ'l ŰŚIúŚDÝdŚ]±/[gđăŚSęsŮ:A¶ntť=–ć&[¬˙Ţ÷Ź#?9ćS“ö)ę Ś±ŰôakĘ}śq.=I>…±f[Oa°#źŔŘöéţ8㔑˘z cƶov ăPz.űßţůdŰ8_»{÷şĂ( ňľľő›ůÁüĄE.gŽź"t1ÄŻ¶Źx±¤Ł)P?]_MŹ—›î Îđt‡óĺ÷›înŔwîoî?ép?|yyĐ'Gę´Ş ˝m”ÖĐÖ°ŰF ­qŚÝź8WŘłĂă—ăMýüĎç—˙=;Üżşž—ëĘ,<=üýđŹĂObýŕÎLŞ PĽúD«Ď/t‡ĐCńÁîű:Ź»ĂĂ«ó«ó÷—‡çď/žOúź‹!ĆiJÓ¨Cň0¤Ś™ac€Ćš×eţ«‡}_ŞX6ÉM„”Ai@9÷’iUHâY@Ë•qŠó8ŚŁ :Çe˛P%îCńjÂ'1ő…íĂTĂgZRÖ—¤Ŕ0ÔH6jZ-@ßďO5Ş"˘)Č`T^f}éĂLeťDÖ˘2ÍQ&”s^–$Ç…PžÖ™bŢęÁś0˙ŘzA#!U㇩–!Í(<ç™x^§eÖQ-Ě´®¬ĐžTAURĂćqT×BEA¸Ľ•čłë«—ż]\Ü\Óâc_<ĆuÂě2ThËŠš?”ęš9Ćé‚_¶;ş$ľ§÷ŃýC\™5 i[ĘZD“—!ę Yž¨č‰Öí_é#Şš×ŤďjŹĐżő\ů\[漿-ęű>ďoZ ¦Ę lú]N`‹ýú­ęý3m“I/zŰěů[`ˇآîbŰßV°$‘3sŻaă"ÂŃŇűŐĐ'(Ä×Eŕ ńĎň‘ý~Ż=4ök±Řń˛‹>KMR»zMMRŇĎV“…š@äÖÖhBł4ˇYšĐ,Mh–&4µ Mk8Öp¬áXñ†c ÇnqüÂí¶[Z[CZ#µFnŤŇÚ 96äŘcCŽ 96äŘcCŽ 96äŘ©!SC¦†L ™25djČÔ©!SCć†Ě ™27dnČÜą!sCć†Ě Y˛4diČŇĄ!KC–†, Y˛4äÔSCN´kí­ĎÁďtĄ7ż»Ďˇ'żŮu 7ú/§pl¬™=źü[ 0?ŢF3J~Ó‹‹żýrîŠnŰA2Äô*A‡ˇ¬dóAĄ¤ó:NlQĘž˘ß%s~ĺŹH±šöőg4Kˇ˛…•ćIW–(+ĘÝ2ďý‘ŇÇŔŻü’ X„űúŁś×YvÚ)ŘhĂ2®şX‰„ö°ŢŃśy{Đť?(Î Kvç|#É<ŕą‘Fa+Ă":ŁĐDŮ™÷śź¶|běë—ˇmů—Iúů ýk,ťćK[:»ůň–MóĄ-›Ý|ů K¦ůŇ–Ě~9öĹ– D(Ş«_n%¨‹ę"ŕΙűâÖ „i\ öŹiÔhÓÂI†))ĎK^ň8îy5SdÎw„ˇ¨úM÷>ÂoěWsŤ°Ëv”QÂ×#2d!CJ˘oŤ,2­§wËÖP`A żŹí[ra•…sKˇ5@Ž ›ĺZť(Îă2{oT‹óßu@Ő%OŢA\6^ňÚA—5¬Ł Ř1M$Ą˛ćqŘó˛Ä vÂîçw¶*ő`B%K)mĺ›JV]×Al]äT–`ř§ ĎŞ‹îž˝‰­˙ Ö\A)“6ŔßË÷H5®qĚşŽ\fЏÄĂlĆC(Ş{ŢrďeÖWUüŤ[¸>ż|~®ŮBćĹĎwSćaÎ83Öá,D!ąWƦ[ęŻXŽ\9Ąúý˙ű¸ľ±-|ą+ć–8îČŻ[ŕ¸+IżÍ,h\-ö¶ŤëmŚ‹ś/jł«‰ sYMÇ0ŻRö?DqpůŹćnĂ*Ćľë~“am\)@%mázVóŻ”ÄÔâ\ –Ă -¦4š†e˙°&üŐü*¬•~Ž;†ő˙evçÇ endstream endobj 4289 0 obj << /Length 1635 /Filter /FlateDecode >> stream xÚĺYKsÓHľűW¨j/RfF=8Hś"K›.@Ądil‹ŘRv$á×oĎC˛e'±D-µ{‰”ytýî¶°µ°°u:z1=ťž˘Č÷]k:·ŚBß·‚"źXÓÔú`űˇóizfą°ĺz>ÜS«“lĹť1 Bű¸Hę5Ď«¸ĘŠ\ťLGŹśÄi)†! ©g%ëчOŘJaďĚŠQh}U'×–Ç\Ä<ŢWÖŐčŻ6(wź 5Á6öŁ@Â&8B€ |křU gěa»Ň@cNŁ ďňtd}PŰŻłüĆśĐ|€ę,<ť¸Ń–®Ć”"ąÖ¸P¦™~¤”u.ÝËŹ1ß®„C°'üZ𪤔Ůůuuř2Ť"›çé=xŐÖGĚđ’Ú_`‹·‚'÷]®˛5włź8c3;)ňRjv’%hn€ę= ´íS_*by®×¸ĹGŚ]}ŞŁ*E!mÎTw·Ăxř>˘ÂhVCČ{8čAž4gJ‘ €€áR^‚2îŔ#D LĆ„ ±VŔҸő<=…ĚÂS»Ćę‰!{Źq¸q(¶ąüs^Jv\˝ ˛nhŹŁ$ń"$Ô„Nňô?Ó¶ä•Cě÷NÄ^pÂŹl¸ĽŮýĚK"Tŕ‰‹­ČîéB ůŚ aˇ#űQŁP„qóţH˝yžk<00Ĺ…÷«*Ť9ᲝĹ3éűP8†U+ţ¶>§ŕ˘éo䣑J ?ÝG‡źźá˘`úŔCK~M~Şg`xň›>„Ő˙žŇč—ţ(•Q˙˛XË6˙!Ű÷°Śö†e{ĹsŁ˘kůyÚDY¤Ś Ś-tŠc—! C‡˘ Đä_ڱ}Ě«Ů)ďÇ~că©ă…6Śc)ź˙˱ľiő«mú5tăˇwv>x„ a›{ŐâZĹłTŐbg>Ú­8ćj'Ę zíĺä$Λ곗%ş~·Ń¬ayß— 9|GiľňČ_Ń}OŐm™Oŕ$ňűśĘ¬ż)MHś7/ŞŹ«›2ŮVKOżüŚEĎŰL(t“láf*š:!t í c6Gĺ :PăŢv6ß™¤+»[HC0î*ęŐj\ę endstream endobj 4309 0 obj << /Length 1418 /Filter /FlateDecode >> stream xÚíXËnŰFÝë+dCŃxžNPpl٨×®ÍxăCQ˛ ‰J)ŞŤ˙ľw8Ă—Dɲ#·]Ä^"‡÷ž{ćč>;;ç˝÷aďčLr'@Ę÷™Ž‰QŕűŽTůÄ Gν+÷úTîyx~˛-2ĎÇ.z0÷ΦłÄ\Ý$cŹ`7É’4NĽĎá…Ă9CB2đTŘń•ľŰ„˝?{nb‡Tî‚”;ńĽw˙;#xvá`ÄTŕü]¬ś;\€1®ŤÍśŰŢď=lCŔ }©?Ę€XG@>A¸ŽÁ?őúcěćŹ_“€ďS¸IęIw5×H× ˘Ś—ÁäY'ˇfŢ6ݶn ó"Řn”D‚‘ĘצűÖ6đ05Hn! Ş$‹ňé"5îBʵóÓE ĎÓÜ,xÂuźaB>±^·s{ů.Zľ÷ÁĐÂđâ€çŇŘlD ‚ë´i?ŹÎöćŔ §Ęé°Ę-—×Ç–‘Ł3¦ď0‰Şâąö8vŁ?¬®óLË"4_ÇĂ.@ŢÜy”Ł5łm,}k¸O|ä+KňÝ/áN0 V,»i8č/ż&ńôĆ4>&kż…é*<Ű IŔ+˛„¤†±Ů‚|†*A襅×Đ#»ß‰DµqüĐË˝<•łˇ¸1Ŕ–*ëü)lö<[Ąqť­—źäçÍŚĚ‚ ŮĘČĂ,ÉWYj*Ńš]ź"ĆŞĺÇ#H¶Ł“Ĺ\#4x?a˝>ľ/ŇĄ˝ò‡(3öwŘŁJ @ŠŇ(ŹŮE7k1äůJ¨±u· •˛¶%Čľ€5 ʆ!Š5‰˘‡&**şÓ•7ĘDu¸ IŞ ń—’‹˛ë,‰»xaARašÎ­!÷mJPÝ„ěµ5L!âó}¶¦ÚżĽh+ţK`7ŰA+8÷ëÝۇVÚ^<ë@ËĂČŢ‚cľ„xD×/“ZpËŐ—}Ő&ýŃň¤Úzţf‹ĂĘí%ř3“Ń˙Uo¦îP¤¦EůAüEŻ TcD+ŞN5ŁhŠŤV353šlŚhŰ §.;cłiř0]šB©{Šrŕ%ú[šŘGËĹÜ>X-“ńjf®c Ć®ČŐss1MÍ'”iţh®6´­Jłui6(*™gŤĽDB¶íţ›iĎVŁÄ,UÍ•0ąH*-÷?u“Hňjw–ůhšćŔä¦).af­ţĽOĎ@°B Z) ŘĚqĺ‘ŮťŰ<[Ĺ ô®gmŹ ’.{áŔJ‰RŃzŐąď (áKhĽúD¸`Ý>Öłw6±CřM±Pó;É'Ăxáw¶ÇĐĄ'ŘWŇ]Č'Đś‰uŐ4üCtťę‰r±jyr{3˛:ůR ldďčŮc[Om¤ĽÖ·]F14„Â]šů7e»yčĂ“«WŔüÍđý‡ŹáőŐíş=˝·ojÝ 1;<Šó›Áŕ·m0‚ ĆÍŕtâwŁŕŻ´%—Ç·żváĐ5ĂĹßxÜ‘((†ü,ü:é2ń´e%‘Ş{čŇ­‡ŤBˇOL`(‚Rň ôČ«R/ŹňŞsäÎČůfä•»B‡ž'€Tójˇkĺ}Ç–CĹ®{çnąU}öîŚFÔ,pÜĘiĺůŕ(:«•'¦;É\AÝd7]? ÝU|˛É—aQ6^z^Ş©Ďt›ĺĐěW×ËßZI0CŠ“őłĂęÇjťW®¶ÄÚuP.tĎńścňň„ßGT‚ëq•>Śđ’T´–EuaËíeyqˇ«ěĘ~ˇöĆ[sEđ;ˇŢ Vök´ŃŻiĂÓ¸> stream xÚÍ[[o\·~ׯŕcňP.‡Ă˰0‚8 ěh#v‹¶†!đÜ5˛6X­Ť¤żľßp÷¬â4‘Ź’•˛€ăĚ9ć’ç>Cžŕ]6ÎďÄPf%Ša Ż%*A&Ţ„7ą$%Ř””•†(RŃSŁ’ˇ |*JÔ~©ł]ŹT’ĺťÁŤ"ă}n”7>…áŮřDŤ ĆgQD>_˘®ë@ú‚5|6ěłÎěĹphX<¶°ű-;Ăąm‚Épń ž±+: 묿`L‚"` Žąý+g¬ÁxŃ}°čR›ąŘűŕL䆋ÇF‚ň&¦ żŔf˘xĹ‚‰Ąč>B4‰’b É$vĘ«MÚí˛'şZ F|“QŚF¸É(&#±íĚ–Üv ¸"ŤW|qŤWILń i*¦°$¬%FŮ1¶¤Ň(oŠ$]FÎq#ˇ:Î7ŤÉĐÇ N†ň¸uN\öşx†ú8i2ËĐrIE/¤˛$5=ÔÉÄŚm5ĚHPę6@UŠ.u ďÚ‚ŐĽoĂĆÉ«‰Ű€ ĘË:ČDgĎ~Á$$·: –öV$U@j“%ť=8 öŰXQ2··şř’t¬¨6Pѱ…č o’±˝ULε˝)&ő ¬öĘ;‹…NsÓϢVu5ß0ĺöłŇ¶Ň„y`ő&˝čjÓgOžś­^ýřýhVOŻŻ×ŰłŐËwݶ=˙őňú»łŐëÍ0n^;ř ÷fő—Ő׫/_S{8[}3ö[óš"[µńÍŘ6śŠ-ę2R´ĐNŚ{jž<1«—fő|ýjmV_™O.6ëwßźźżY÷ÓůE`%~bďę8ôąřˇ/5ô\sO“@§?5ź}v†?GËŢŞ.V ”ŠUˇŘ ż öf»y×oż\_oëĺő¸9†5o“l„sˇčmVFr¶Žü]ŚÓuŔ7š¨K2uś‡ĚL“ădś\)\śÇů6 yŹ‘B^„őf[·ăNĘ}踫C޵ôµŚđ4p.ańżúR&˛I­či×,BŔR~©`Ź.a.b˝z‹YÂNlNá$%őüËőŐzs.ßž×< O‡ÉiDéUdTQHČb™:7¤Ł‹ůˇeąuਖ•““?Łxś±jęC(Ö`ťóŰqĘ5—‰)v12ë}®TÇ‹ř|D @Jo3ß2ĺ¦ĺîÁŘn¨ÄCěúÁőÝĐą†„rG¨JĚĐŠă»#ŰÖˇl™sqË…×’‹{d¤嬌 2Ć“ 93Vďőy Ô>†±s¨ µěQmMâ§:žjťdšŽ‰{Ô Őčk,–UĆ‹ůúú[ Š)š¶_H<<}lU袏TĽ-pá}tlË'©Ź¬"–\^‚őPćÁŤ#Ržě’sc7Ť‘2÷‰%Niâ8m!ä˛|@ë‘ühoq1cÓA&”^Q»§(ş9f‹bVđ·ĎŹWÄBV»r3 O(]Ľ,ň€v‘Úh‹oo”#*9M»±–hŁö?Žő`(:T>t‘FŹYJ.¨±Qi0—:ącÚŮ֛Ѫ‡Îţ>ś}DĂĐZšS«O±8묶8IŁK–Ç3 [ěŃ.>>­ŕôČáé_ňĽČš(ĽWŕxk˘!ˇę,§i˘3V=–Z€ő`˘ě4Pő:.‘¨/ýT›şY˙118ĺ­÷ŮęyŇrÎ>f2…R´ťŠ Ü:nÉ=ir·BľŇ˙ĘĽ(c±ţ7főĎýŰŔłé®8˛ČÎĚő»««7ż:™‹ÎČŞś[88mżÓ‡źÁ=µ]=Ë)yÉ»ź=Ëš ŁâŢ=±äÄůßH Š÷óŁö…â<5‘ˇö„5V/6ëţĺćšŐ‹Żž™Ő«ń‡­yóˇĽ^Ô‹ńlĄž&Ł‡Ô ˝ŠĺfýnÓŹ7»ëöîoăpYżX˙`š$#˛a=ń—@VÔż¨LbĽĂn|S†¬ß®,(¬vcaOÄ™H3‘÷Dšß¤Ă™‰˛'˛› š ?óZy^+Ďkĺyć<Ďśç™ó<łĚ3Ë<łĚ3Ë<łĚ3Ë<łěf~s¬ÂĽŐ H˙¤ěÎđä”m)ţ±Ďqr€˛ÇŰ&FŽ(„üé51 ň€U’ç—`ťÝ]ť„i ä¦!L™cžRí§0v1ŕe:¦»cË·`µ¤đŚ}ü.o¦e‡3ĹŚä5ąňčşč‚•x[•dŠ–ýiV%¬q٬\€u¦ŘKÉ÷ý0ô"ýş!¤ľ¦XBßÇäŽ)^a[Ôµě±zJ6ń}řúxިgX‘ě°ź VbmqDÄ~˛9ˇ˘wÜ©Ł˙#ÎjS†héÖŤ'É*§Ů‹>`…zęMĘ; >őü‹zsŮ·Pv1K®q¤0Q®ľş’¨łó}¦Ł ¦ ˇ‘"iáđ=¸ú†Ă–©°LĂ~‚XgeMĽÜŢI~*ťćĄşVQt7Ö´5f¸-Ç(©â4J—\» TBf˘ěR>®¶DďŞj+1Ý­Ź©­Ţ ÝŞ€jkĂ~‚XgmŤLéö8#%§·‰NS[÷XőČyşëÚO>ąž»Î‡LµśJ'4©ôÝŻBý%lΡ°!yŕ—P˙#Đ7?UŘFŇ‹/űݶͮž>yŇX=í·—ëëŐËŐßżůZ˙űäm˝ĽÚ®˙żĐ·xzű{ęMđµ7“^ íÚP@Ť–ZÍ}O)×÷ăćâ8ę‡tw÷Ý — {ŃďŔp‡áţ½Ş›zs3Ţ-ŢÖËąG—ě§çĆx™iŮX.ÉćÖëPâb°–µ1/¬óś,ěŐ/ ‡XP2.¬W˝y! mµ;Y(@⌻tfŔpŽ`p’v<Ľ¨úłéϨtL?lµ1¤ďĺw5PŮý•Ýý¨úßϨeî8–ąăXć^f™{™eîe–}/S?0Ű4~&x&ÂQ;—Č+ŰeKT^Ź ŁXe1PÚďę]l/ÎĎ{˝ĘzÄ”GoŻi>Ńľ…0Ú¬ěŇËl(‰>~źž#veB*ÉuÎĺľ‚b¨¨ô†ŽŹ” "7r_˝÷™µŹ±’|锞ÉčЉAXę@ľO˝~CFÉő)r5&˝g‚l]/Ł#W+9ę ™”ĺ8Č(Ů!ž».á.–‡€ Ď›a>°Őă[d—>/$t±Ď!ŠĎ}ý”Ó0MxSsę)9§ć‚:BżkŐ¤$.ŕ)‡Đĺšâäe̱Gš?ň4U–®RđýáúÝ˙˝öcw endstream endobj 4374 0 obj << /Length 1156 /Filter /FlateDecode >> stream xÚÝZ]s˘H}÷Wô#TE¦»ˇˇ™ŞyĐ‘8‰î!̦¦’)‹ J… âfóď·hÄŻlTÜböE¸´÷žsďíÓ"A·Ńv. PĹÔu8c`@…ę:0L¬č8#p/Pţé\•ÝR5ť=—^˝ fľÜÄ•:‘·śűaâ&ArÓ†ĺ4~5ł„3RŞP¬o޸˙ ÁÝ»lF“‚—Ôr4˘*DSŮxnß0÷*đ!?źU€ bS/;­# Ż/—ˇÇZ¤SĺÇ—ŞYŠéŠA ĐÄXˇÔĚ&xŔ¬= čŇ‚ęeˇ/0ˇĂ$7ăŃĆ“ĘJŻI~ţ—ĚŚÜŮ2?ŤĆö©uqŰ‹ćĎQČRdÝÚ•…×ÂŚE&()klpŐ,<Ç)ëg&«k[Ö×˙9[A)öýđ÷§Ë¶:ő"ˬš¬ŘŐ„¦7™)cĘHÚ„u?Łť·ŚÎt´ŹP‘!YĽ<Ä‹őÔÉŮuń\•§d.˛ v·]¦!ŽăhžŤÔÝ)P0»©·4µ˘`ôďĚe•„ÁŽb0Rđ·dgq—U(ý${ËI‡ű˛ó{ąw«ď}gľň Ů3^컌Ä=žzLŤäůç=ą17c٦“±‰S! ¦`¨XŞ™ŃĺšbR,lBwîó$ٕ䧖ĂĐĐY!ŕó;f+Îľěz»WżŃ§Ó[«HÖ”ă¦ll ٧jŠaäŃý)k¬‡Ćű(ŇĚŻN>V—rĽE˛”k÷[ź{;Ý;¤—uü1/0w9KĘŇÍőřaşµ„0¬´”!ű˘{ŃNNM>ÉEšĂ<»ŠăVbŐĂ*ÇoS*ł¬oˇWZťÁ ň› ¶­‡+Éş- zLĆ•P¬)z[[ż KvµŰ:ĄZ†5ĹîîË•cU_±/OAâźVłkŁĂĐ#˙zŽŐęW^⻳j*¶ľy×iŮ=Öő~T_·#&›LĽM×z`ş8T*°, jŠé«ßÜUŹč+Ďźń-'‘^ŞŞęş®&7ßí›ţZâ3ßݲ+ĎłŁ#"jˇ¨uŰŐýâ´íÁÝDÍ,<‰%:ÎRň(} Ń/‘ZŐŃó4Ě §6KĽZĘŁŻA§iGó}kP•R’šjˇ›«Ż˝3tÍ śVł÷«·: ˝wjˇcÁDt•}˘SŇşVő­Ő:φpá»§—s±x#Lkß {­ŢUő%=u§ÁQJĽČ˝ŇN§ľ?µűA§ú,,~ ˲0ŠF'.Ôd?–»ţr@ …âCţp ţˇ+Řе4Nť(DGĚRŃ%]?ôc7ÁEą¤űC ®y´Ëü‹ÂAšČŹÄüHň7?cn+Ţ Ą‹×źŽL™ľq=żtĎM„)†ń·ě±$„:QúĘäuÂ*Ű …›@ýݦÍ× endstream endobj 4390 0 obj << /Length 1372 /Filter /FlateDecode >> stream xÚÍXŰRŰH}÷W¨*/R s×(•M$ĆÂ%kśěIQBFµFbeyűőŰŁɲ-c›Ŕ~‘dŤşOź>Ó=3Ř9Řéuť˝Cź; R2gpíř))? Hg0t.\ o—úĘí z˛Ű»<žLĐŤůë0Çć®_{»q§üŨ/ëďÇŕ¨ÓtţîđR{P )Ęťč¶sń;Cxwä`Äĺü,GŢ:\0$8ű±sŢůŁ-jÜDĎ‚zĺ#)ăK‚p˙;Ą˘D1ű\ĂČGOż×q.v…î¨]FŮ8Ë/‹őXB.<âöĎţ<]řbţşwH°fËŔ×8)E4`Î.áHHep~vĂé¸0Ś^ĺ™G„ű35Ź%2O`»ś»ß±ŔýťŢÎÜ3ä7sŃoĆ;扊ú¦ŮÄą@ßnŤ‹"áË˙…żžćŻ{ş?x:Á GZ Ç°ř5««ÂŻ‘Ŕ3MŕţiŻűü ¶€Á0ĹO!ŠJyDÖTľFO€ÁýŻßşĎŻŔŰpúŹG…ű$ţU F_#ÇŔß§Ţď/źN??żÇÉčĆŢŢ%é_ż¨ÄšÓ9.˘ľh”>sFľdI) Vp”ßöDŽŔÔ ‹ÚŕěRO“(OîŠ$KˆLqhV6ęÁM2©đbZőÔa¬źŇŘľšd·öĹt_OÇ *ě"«ß››Ä6Ź8-’âÁÜ—Š ÇÓĘlÉ7°YĺÍçp™›ů("ľŐ˙7Źë€G;YŚ ®˘ŕÂXÁh٬Ř/łBmVNÂ(×í3«ŇRR™”y1˙dŃôx —Rµ6äFâJ—µŢT3.ôäřpv|Öż<8ţÚ˝<Ů?˙l^hQâ{\ţ®Żµó˝Cxˇet$Ż8x+˝ĽöÎ ›C`mŘQ îľśť/U‹ůĐ °Ŕ )h†D7 |˙ńcnZ9cëôúÝîé6¤Q,P@ü§’fümÄžkń-ÓĆ7‹ŞćMmÍ›Xçˇßý¸ťÔTaúTÖ´·Í”F‘"Ş-"ąID5cD®›¬Ť*ˇ”ŕŹĚüUşx\ąwńÎs„† X]ЦI‘OŁÂrŰÜt)¨ ¤Î@ÝÍHÂÉâ°yŐ@ ‹µXóž%jeC,$X<€KŐ’,V×…*˛e˙"@˛Üµ•_M“´`ô˛0h8eY]m «Yó­éĄśVłîpšF/QáąiI 2‚`‹ş‚éŁÂěz—ĆFyńlŞz»–aQ–N,c‘ç»7a›–(زÁ r¨%“†z ‹úťŚT NU3qŞŠeŢ$ĐOxm3÷d»=ô­ÍŤÚL$ÝŢÖU+*ˇČŚ´5e‹Q×Ň!g+ XOq7K†3…›ÔĆztźÍä„®őŮŞ?¶ĆŮu7U´,V‚a‰%ČJµÎÓXʵ¦±QŤćCa)/7ć’( U…¶qÉׄ—¤[óhŠ…vZ3P“ŤS­Ňçâ±­Źµ¨9Öň«S­ůő> stream xÚÍ[ďŹÜ¶ý~…>¶_´äC#@~Ŕi5jhk’˘Ü /8źôżďząëä6›M˘k|#.5zzÎĽ‘Ěäť±“ŤV šśŹj¸‰-«á§ŔjX3 ąÉz+“A4%ë&OÁO‰űH¬1cX^&X:–śZq˛˙ŔÂd+„3ś™,®AX±ŹůÉ:Űǀ˅>¦îMÓC¦ë˝Z ţDp÷CŹ«±Ĺ‹sÓ»łř!Ä~Nď3émKnď"Ć$Ćx"/ý¦ĂD!ŘďpŹ$Ž0†{]˘–źO˝OÎuvpçŽI˝ŕf\HÝ’ÉI§•0Ůxő˘€ČčąN ×P÷ĚŠÔÍHú8đ’ú<± Ý “S ‘}Ç‚CfqjĄ‰#«ĺÍÄI/鼝‚I‚kŕâb˙ŐMÁűnáцΆç)DéV^ďa­ë–LQé„•¦čE-ŔŤ5RŘNQ(âL“ŕéë›Äö«±źDOóJ“°UĚ@©˙'‘Đ-™’é÷ĆiJÔď- ‘˘Ď(X{\D¤Řź*NKÉtËkÔEĄ÷îîáf÷ňCyčÇůćÝnv_ÜÝ/íţµ&óf÷§Ýźw_ľ¶ýŕf÷÷V¦×–ÂŚŃ5?;Ä)ą4“3Í"ć}>={6í^N»Żď^ÝM»Ż¦?|ýęë/ďľ˝»ż•ßćšS-yÍyńÉÚŐŘ—Đ„¨…%»l˙8}öŮ ţŰŞŘ™a0ř‹0˘Ů†źÂů·WĎéööĺĂý‡úđľăĹbD*ĘŃh]ą­KH9Ůćx•˛!Ţ`g€{Ľšą‡ý9ĽG^Óş¸B´Vj5ÇhBŕä%Tv9۶,âd;kęq]VÉĚČ5HłçÓđľóůöáíímUŔbIŇ9Űc!ďgdĽ3P~ŔY\PŤÚ˛"XO™P!VćZĚ>ĹůŐôőApőżO»üó_H—xd4c焢đîĂ·ßľůÉÉŃôÉ1⣌\6<#›^8™pçHűN™ťŐR!s©—MF@9˝l®C€#Ť]6ŮĘý˘űcççh.¤™MÄýĄ'ŚŠ9ËO1™Ă¬÷ &;3§´ý\"$ şl2iä_8ĹućôŁUňüîÝC_úĎŁźPľăÇÓžCšŕ(쏬ʽDăB •sLEĚQäĂT¨`Tf9BŤCUą"öŕÖ«[ꇴ{qW_6d«i÷â«çÓîUűţazóĂř"żm7»/»˝{xŻÂÂëůšçŢß}¸ŻíýGŤŇÇţÚ–oňwßO=5rb”`d"ֲދ|'*ö>zv}Źëw­«°şÔýhěvˇ»7ü0Ćd:LŽĂa¤˝áĚ0ě0†g7<»áŮ ĎnxvĂłžÝđě‡g?<űáŮĎ~xöĂłžýđě‡g?<óđĚĂ3Ď<<óđĚĂ3Ď<<óđĚĂsžĂđ†ç0<‡á9 Ďax=żŮ¨Jú8<ůŚk§ÄČbh7˘ç9w˛Pľ˝żűđÝííˇ^ľÍ©ůÚ*yËÖ’Ł_a” 7JŕuuŰUu‚‚|>ŕE ÎÚđťĂű{‰ˇA- 4‡¶Ź€ŚcÔ+ăŇ…ÔúXKI9Ô%DʶSf´„K®«ÉyKjD±=ŕĹÚśbôŢß™Zp1Gä4Q(! ÂË@đ…Ôą–ĐS•–WC–¤ŞX§‘Ř\7¤u6Ú#^ôa¨»|ďďE-ž¶ÖÁ.×PT­ĐŚ+Aëi1˝*¤@–äÔíâě9¤ŹcŔ4·HóÖ-µ,˛’[ÖV¸P(‰–Í–Ä:‰…Â&mý!žÚ+@‘B­ü<łËšPŰR–ĘĄŻ]Ľo+UoŞ<Tkg}·g{o‚¶ŽčçaşŐkÖěÜăBŤ°k±č‚ňhăv0¤|Ś923ë›>;ë[Ź`Ňlťß¶Çű­ůĘÎĐT˛X÷hŚ/†ZČĆš[I,IS‹ľE‚ĽŔXÓöĎž…ç ď˘"Í*–S)ČaJĹř[[ďŮé+Á%gaŽU1~C¨â*š°/‡ú˙ €ŞhuPiˇĘ­«qWŞj‚€J?őqZ͉܊ÄŐRV·äSRS˝ľ u˛=łHţ„˛u`+LbşJfT ĐWg‘>&6řĽćŔľńŠ$B%,ëe­ bsbˇ4ű»ŃA¬7[ľĘěz€šŇśl8 őDČÖhSAŠ˘â!TŞYhĄ”]0ŕ‡Ľ=ł…ßË‘YF+s•ąŕ€4A0ťCúWiÍÔ•˝ÍR×fBÍĆD[ŞĄč [ż=Ż6‚Oä•ĐŇšp•Ĩ¨XúZčÔý‹]W»H˘%:¤é5JjP‰…Wífisfť$Č–t`ÖéB{ŤĚ ˘ĂęÍ쨏™m\\rŮ7ł Ł0¦éGA ŻuiMâöĚŔÖ/&Y¤2Úú;ĹFĚîˇE}9vę‰~K¤‡d˛S(ůVb´qEş6Ônźeű[ >J.‡\Ćî*Óě€JéŐřłP3kCM®.”y^ŘĐĂfAÇJćí™5Ůt”\Î4´W)ąT2`Ř„łP3[‰Đ¬-A<Ů’KH+‡’äŘę⦯ŕöĚRD›hŽš‹ĚŚ\ĄćP‰ômĆy¨Ź™]SÔM9R+»e©č=ĹU.-–-żřfŮŕďQséëdw•Ň` %›şö:ô„–5Eżi_KtmĄ\s,®e1Ĺ.Ľn_ż°BfĂîČ+RY¸Rb÷P 9Ŕ…łHOlaškĘĐP ˇµôe1~z‚$kĎú!í@,jC˛W)ąPEPĆŇY¨'ĘW2Ő€ÜD.# p®¬Âśk1ëö©Ŕ†Źßł™ĚĘUJ®•¬›ű>Ë3PO%Y‘V@űۆ6·żĹxÓJŰžY‡”%GÉe‘Ę|¸JÉ5 ’ŃvÁť…zęeLd€ł!©čŐÄUĐ,DYťĄ'`ÖŇlů(ąt‡Ctr•̨Č~żă§ >f‘s•°P¸Úş/¶©1#j·i ~öʌ˝JÁµ:şŻ3@łZJMe-čş(­É—cĂ h~őČ´1?ÚÔÝ/ŘÔöéäæ6Ŕ3NfÝ©çĺ×l×ůŃţśOwŮüp»ÎŻŢs“Ěă=7"żyĎM»CÂŘÇî8v‡ČŘ"cwŚÝ!2v‡ČŘ"›îŮ/ŽČş•ň°8b90]ăęŘ#%Cł?‹óńâXjC§MňR©ČÚÝÇ]|^Ľä—ÍSNÔ=rt Ů\e2PUŇątęcf™ä–$Ť­'Sđ/[ëJ6”b+Ű÷Ďm~üD€Dë!őŻR€ ¨d¬˙sÇ9¨'Í%pŇEÄçÖâŮšHR]Nő b6Ä ÝŇń[»Äyř™=@Ý :őĶ«Ą‘ · Ë’¬ŃÍ ~­T3‚ŮůZ¶oô‚OłOźěb™ě*%ȀВ;ëĹsPO|µ™C*iqÉy‰˛8©ąuÉ!&˙H„Hú"äÓÉ{]ČÎäč˛ÉČUł?ąóüÄdŹRŹľę)&ăF}|’ÉžgNň+'˙ú‘úŇ endstream endobj 4421 0 obj << /Length 1703 /Filter /FlateDecode >> stream xÚĺZ[ŹÚF~çW¸ŞT)Lć~I•>TÉ®v•TjÂ[! k Ě–5mv}Ďř‚ `;fłÚ< _ź9—ď\ćĚ`oćaď˛÷ç°÷ňBqO##%ó†SOa¤Ąô”ˇHo8ń>ůŠöż Ż=1.á»ôíE4űŞ´˙f9^/Â8 ’hۡ˝·ĂŢ?=#±G6µFšroĽč}ú‚˝ üwíEŁ˝˙Ň‘ Ź †gp?÷>öţîáśKڍ°·öRđĚ<‚‘FV™¦ ˇrţÖńŘ2t—r´!•__^0S‘šH¤´ň”!¦LFŕ3Ąbë[ďÓ@éGq’ż¶Ň­fąŇVłd6/·«đîn´ ‹]"T)˙3řat—¬Â ý˙ĺáž~h*ᦠ]Ćeٶ¸ćČhRŚyx‘Yăß>ţ2š8¨RŤHůA˘Q<úÚ§Ř_Oű ű/ŽË˝Í0:JöĺŐţ<ŚOóg „ŐŕŹc–ë¤#-ĄEđmŚ‚mČöđR%ĽaZf»Č´@"˛‰Şę⣠Í3ŔăâęÝ[—Ľ Ĺš@ĆĐy8»:í)jg±ç´ĄĂ·µç…1‰FµPXTĂQąB¤RČŁ;*ăŔšÉ «ş5lźřSK§lË kŢ&3®ţă Ě ŇŚwçfŚ -L‡n6 ËŔ ćpůÚi{°ţ)“+’>k ąrqF”´ňZ™‘ç’GʱFŔŘ3™uÚŢů[›ő{3-m›iŐ“ôZÎÖ]fÚŠym¦mçµvá$ř“*¤ľ7×Ňzî¤fç¨hŁ8{$­*…¤˘m¬aYLo 6`)?Ző öm›Á!?áI°üY ČZhĄđ`ÉEŐ‡Rş­ĆÇn×c@¤AśoŔçÝ$éĆxÓMRWźĆÝ`Iç)yĂ[Hi]ˇż™!3Ý+•§Ů[«śţ€ĆŹŞH#†ÍľŠÁŐÎÂTV`’ŮâŞ$s(É)d”Ş3—přóţśT!¦ŮŮ&_wL 1‰VCÇŽ3l›̧(RR¸ěHOŘqŃÄŽ‚¦íĽ&b>‚e};n˘dd~ #‰ —Ť&®¦d’§äť¶+ŁH—ë˙jVŢĄ ‹IľŐ˙ĘS´C&Č0ÉÚ0a’!-‰ &ě(LŇĐŘ'1Á:ö÷<¤ďR!Čl0ą•LltP… Ş«eđ)ç‚č•ÖAűZăGµ¶h$Ďâ\Ý⼲T9sđ2CkŁ|“ÓĄËľ(¶k/ÔŮE'±—Q+ࡪđ'ŕŃ,ö‚´ěا:‡hŇ8 ‡>Ź,݇tr–Î)F’9SżtÁŻşÄnź$¬“žCîĚ8Ň ÍhČÂÜiHuŇŤ"‰Ä ¨~ŐřĎéň Ş}ÁŃ})Ť 9`ŇŐÂ8‡€ V'ő3*Q )Ę]ŐśŻaÉuOxN9ői.wÓŮ ŁmO"¤Y¬4ßS,ĘχfUůŹYI‹łFE†#¶QÇC CČ$+) DŘĺđň]t— › zůÉ*¸űNűĘWa<OÎW6q:‘`ůů­7Adô>&«ő8YŇ»>.ÂČźn¬ÎAŘâ FŞmÎ÷ÁxŐ‡ —ÍEŃÇEůuÚh‡ÇŁŤŢ]}Ž®úÄ˙ëj¸C* ·Éj* ¶¸ĹŇ¨Ô )˘Ćöď˘Äľ%Q0ʬ¤ůi» »X˘-Â;"6kěĎ4”Ů%k€a;ys“@ ž«BĐxRl<--…DŔgŘż?`˙ľ°a*ý.ąż ­ůă"\| 3|l6ě/ć–F!"nĎ RPß+÷~´v-ŰN-°ťň>(E80‘íů‘6óüvB/ J~I›R¶É  đ¨nYARÚhů-¨Vů†ViÄâW üPŁ0H(fŰÝgaľç•Üä0Ż„Őuáăĺ ří2žDń,żÜóŠěę‚çQ'‘Ý:Iş ˝\Ů-´0ß8Ý‚xé7a0)‘•^âËN^—ďŠO\Ą”§ÇęZż%żgä7ÓýâowĚëÍłZV`ĺDµ9ŮC•ëxµPHÓ&‡«‹ŁßQ»ú˛š’_%‘HEĘe‡« óPśn%Âő}qsťcůÍ/đěŽŕWÂĽ¬0%-M™ŽĆŮĂ°Ż±ż Ćaĺż ©Z2O‰‰´Ľ/ź§JşźŮZĘă]EýŹU,¬ endstream endobj 4469 0 obj << /Length 1871 /Filter /FlateDecode >> stream xÚíZYŹŰ6~÷ŻPQ °šá)’ ҇"ÝE‚$hŁ/I`(6×+Ŕ–·˛¶Iúë;I]–××n}0¬š›3ߌ„ŁE„ŁËÁ/“Áă É#…tłhrIŚTGRS“h2ŹŢ%ŠGc*Őđrrů*ÝčÚť^¤KăŽŢš«ÁC“›lfF'/#Î’G‚Ů«_'?.âTś”BŠňh¶Ľ˙Ł9Ü{aÄ´Š>—+W@Ś[bËčÝŕ÷öŇă¦L7´P ł`‘Ś ÂAŤ”ŠRŠđXô~,D<üqn>`L3ăoZŮň…ňmąĚę¸(Ó%h?˝1<\çÓšdv=ÍŤ˝đ× 0ŔĆtX ?`o֛ßśµ®M2‡«Äťyrî$,.OžŐ×Â#cKýń…f‘]iluĄB#&I0őĎnIËI^-¸ń?uä+v?ôđë®yVť÷IB(EŚńŁ%)ŤŃ2Űi‰’ŃP¤äzp“”Wp]Öuaë ümÄ5Yá׾kţpeVźLľ%uř|A°M8Ö˛ +Š(xwL8ŇT:ŤŇÂävŁ'…ßřkËʇľ»b%ö÷®Ü˙"u 2wZ|˝iş!ăŠń75ĺ‰AđÚ¶<Ş´)Ď’E’fáŮܬjŇɲM°fŃŤ2D…ŐĆţY… ·ڤĐĺ·ýа‚?Ž÷ův2âjÍÍŐf‡UZŽ'1’vÇq´wű˝pt˝®VPPčvVܲ NřŢČaZ «ˇ ¸Řš[‰ŤË*óUńÖfµÇ†„h$©n[ńâ6›é:»wnФHg΂e(¬ÓůÝ»h:µzÁÖ)UKćó.ŮP=v’Ůe˙ěö1ĹĂĎŁĂ^;lG÷ …e¤Î$”•tľ'çúă­\)~×6î-Ç$ĽŮĆ&6އ>ă$Ł`óRŔnrk®Š ‹ëënĚ,µeŔĚëÄŚî­ĆśíÂi‘¤Ë˙ýŘňă'ăK±9Ä™50MŤ-]HqĄ˛ópičF=“ő-k«ćżí:7÷˙•Ľ÷¦©đ¬`ÉLhIÖŰWůzĺŽŇbÓ…UI60,ÍŇ"M–éß6¤Mxâa4ÍŠĂÍż "ÝwÎŞMż yÓBĐŃ#h™ Ćxř:™ĺVÂ5(GŐđąkR‹“ü•őěv~IĘK{0Xm^nĘQ,teĹôrr9}őâÝ$XÂ…ŕ&H« 9fÉʸU-”˙x /;ˇŘĆŚµFTQ/•rýaS~˛Ľ5OzŁÜ9Ď”‡%Z%„E1Ň’© )C‚ÄŽ&@č=Wt¶#%;ô˘hĎjýt'` ]K )ÂBTćÚĂ»+˙X1«8K¤ýÖ ţ™ľxóbŇ×Ĺ=˛Ň“w7–B,čM%„˝>[&ąéěŰľ]›Ô»íŠďV”ór˙6˘PĘr­ěɰ őűff cwÎ̢ĺ,ĆÍĚ4ěLLDT)Äy| XM ‘žD9fs)˛j8 ) B­7k‡~[tµ—su*ßvź#`k‚i[lßX¶­f¶*ţ®Őu]bš|˛¸dŮ#˘ Ŕâ·ücIP.OôO !Á´ęí¨sł]¶=ŰÉ Íĺ8ęs\•ż]MSeµěÍv !#˛šäÁęŽcĹý‚Tçn:Ň“ ĄMA¬• Ëôm™Ú_uzt#Á·zôm(Ú9¤ŃŮHŻ“ĽŹ.”Á KştA˙Zúq­Än^ň;I‡G{¬Ă"ÄÇ*wM—!Đ9Łť‘nۉ͑n= ż;á GíČŁYv¦‹ëžŰgë<7››u6Oł…_żŢJLJβÚŮY"LőÉŮ™hŘT1?+;%`kś™ś-|Âhi„u\ďÔťąů4®˝©ąÍt řłęŰ×ďöú©›5¤¬˘©'i-ů¶×€;ݤČgDś]R!łZJÁÜ×¶jhŢď¶Óřöű­Ĺ¶j¬«ÁňVmmN_ýťÔw=áßć„ůÜT íôâŃŠl»QşŮçY~ڦgúZ4¦)ă)ÝLŹwxň4Îýžl2®Ü•íFIÎŃŐΠ~â~N!˛Ý\vÇÁŃfŘŽŘBdvł4(ÁĹ(Ö„`ĚC°ú•V‰"Ż®lĂ›OMR‚Š]¸Ě¦+LułŢxVÎŃzE\ëmćŮŐPĆ˝¦î0Ý˙Z˘/&ăPjë—â©#^1űˇ‡[wÍłęĽŔ`č™>Z’í1Q˵€]Ŕő¶ůh5çΗü8_îGŰD@4ó~§îŮQ©9Cšt ŮŽ™Cú¶ą8ćkŽđ J b‚Žő&á`”G—&3yR„˛öYĺu8xi{ş[Bý&ÜüDč'‚…/.hýĹEI8LÉ&vpš'3Ó¸—ÍŹ3.'—ő§e#éˇĘóu91ýş(“uíô]KM8 endstream endobj 4392 0 obj << /Type /ObjStm /N 100 /First 980 /Length 2551 /Filter /FlateDecode >> stream xÚÍZMŹÇ ˝ďݍcré-˛Č* đäpĂŇ!‰`Ý]ÝŽGkH+Ŕů÷y¬ŮÄŇLâe/»ě6ç5‹E>rZĺI‰A$Hb f~-R•@ĄŻX`NŚg\ÔÂ!Q_É!©á˘jnHŞ›ó»*ŚV·c1hę+Ô|ĄÔ+9äŇu(ę+9”Ě®cÁpAJ1Ň ›i°ÚW$T!żËBƸˇę¨rq Ď‘»°‘AnݵşTSń/*NřH5°2`KŚKL.Q`+ţŔš˘úÓáÄ\]’$—ÔŃ?…KŠöOKvÉ‚á;$âĆ“+w=ČÜőŠ;Dŕ]x°K”¨K”á)ţů§w˙üţőöćÍKűűËąU°°Ä1¨Ý‚˘U¶$óܸ¦Y[®ż÷H¸ZJgmJ ϧĐţůůS~ůňŮýë·ëý˛U¦”çlÉĽďşíŔ9WÚŇ&9Űr9ČŘĺ©S×Čŕ XyĚŹ1aŠ‚G ™şÓó¤’Î Ž vô"•5Ú>ďŐf-+ë^6Ń•.‡„1Ŕ&¶ <ěÚGáßÂř/G˙ZšĐ>ťĺ_šĹd_xjây‹+ČnŰ3Ż1®±Ćőr`“"â7`QxPíÚGá_­“"ŰRANCňĎÎoÎKi+%Ď´šdY¶ck[^÷•‰ą\¬8Éeď4'ôźQÔĺ<´›¬ 5i´óƉ•–– A˛ěË2ë~Áh@Ö2ď—Đ&dłŇű¬÷˘ýż&`kďúهšXä1#>†Ş[ÔeA;ĺdgEÄ&łĹ}ĄVpÎT·\Ú:Żë^ŰZsşdDJ2Á¦BŢ{đ÷˘}ţEdףSś@ĽÎňoB»–·ĄŘžóŢ7$‹ąfŰ7ż ú7ëDŽî,řčÍNˇ}ţĹ˙ jÜ9eöG( @z–÷}®şŻý(Ř˝‚l#¨[!Ů㯀µ˘ gŔ4ůĚȧŞç•‹"i]V±¶¬–f´Vâ>w6­ëĐZśŔr¨Ro&µF,źÇÍM±á)ŢRh[ZD`d_—í‚ÜŚ<ő˛7éŚÂë3Vp^F7É<É;¸ď›˛ßÜóňĺwßľąż F4údZť¸ŕ?ö» \{ń.×}Ę…ĚÖ ü Śk]ŇL«PŁwiÍ´\)#µ˘'PŻŢś’NIĘI¤KdĐěe][\bĄť5[’Ѳç}ŃË#×ö©®ńÄ>FŚÖxÚŁ1×­™HŐÎR}ú›ńŽł™\űlĆ"ă˙ĘśęgĘś’ś¸ęyĘ(;ë™–qŔBWĐ%TűJWP3“\C9ű„/_C9yŢłk(“ «˝Ľ®wuEÓ5”á¸_ťš˙veÄ'•r eB˘µzeFťÎ‘®ˇ¬¨©gęzéÓ_†Ü»Ĺ?ź˙blüŢYđĎgĘ?ť"˙Ď“á\˙s2śËoť Ť!-Ť!-Ť!­ŚŮ¬ŚŮ¬ŚŮ¬ŚŮ¬ŚŮ¬Ś©Ż 2 ĘŃŕú갬òË:,밬òË:,ë°¬Ăr–󰜇ĺś.:=~¨«EmŠ%p˘)âř–lSÖ3Ŕ>§ŤZ›Ű¶ĘÎkD˙´řŻ…ANK»<(‚n*~6JţŰ­ęTČN"]—şÍ˛ŐŢöĹĄ¶ťSËó¶˘?iąđ&)Ź€żîSaôŐr©,mŐmŮĘuS–X5 8>š‘ş]ü•(ÎXIÚT9ťvé÷ĚŇěŮ!*ĄŤrfžç–Ä.Tiböy MGÝ;ĽĚ>b´ÖöŰO­őŔ&{ć}`~ę¶D›mĄ-s¶Tň ş.*ţšÖ˝^˛ŤONăkĐ’&ó×zj™Ľő”ét6µĽQE.Rç%çşoÄ­Î:—ő‚äíÍäŻÝ śślŇbgâüpţäL8Áô#ÎZ‘%óŁĂ™q´ĘgŇęÝúŁĂyŚĎ Vc>fB|˘Ţj!ŕŐÓšugTä°µJIşš!%)µ˛JZ.ŮЦ3G¤Ě¨ŹŃÎFúc©ŇCtE˛Ę¦Źčqó}ě ŽÉńĐSŞŹťăi¤sI+UOPĐ–Ó.ëĚq¦m#kUŰzÉôTzçqD }dw&Ň™ lb0Î4Ĺ<×Gô¸űtΡ®2ů˦Š^¬Čé$eŃJćR ˇ"ŐmgËqĹţç}źN—DŠ˘Yü¨? 夓żÎz.ŇyôËÔ_ýHŃ@ůë0ŹéŘ}©Üyť˙~Î~˘"OöîxŹH·23G^¤$™–…7ŠmŮĺfËEçŽ(I%Ů)ł‚ôĄł‘~Hźúď ĄĎąR>pä„b j:ˇĄ?ťO›Ľ˛ÔĽ¤Ř*mkŰüečF¶¬ÔöKúT&óWÍúŹ ~ÂÎEúá|ęoüř›îVń×ă]čTÖÉT˙›®ăßřđš endstream endobj 4500 0 obj << /Length 1708 /Filter /FlateDecode >> stream xÚĺZ[ŹŰD~ĎŻp…„lÔ sźq«íV­AńŇV‘›őf#mě%ń¶]˙ť3žń-¶“ŘIK‘íńřÜçĚ÷Ť‚˝Ą‡˝ËÉwłÉ·?*îiJɼٵ§0ŇRz*¤Hovĺ˝öŢÎ^x ^1.á»|ôÇŐmL©Ňţ÷éâ~'Y”­ŇÄLťü0›ü1!0{¤”¨5Ň”{‹őäő[ě]Á»H µ÷!źąö¸`Hp÷·Ţ«Éoě¬l]‘Ö𩀇 ŚTO/ťG„0O˘P1]wI„ ź®ÓMni!Ň{=•űo°Ŕwé6Č.Ü ă„ѓ߼,ç.łĺüvµÍćŕúćaGZ.Éünâč ®dú¬WšźÄłÝď[˛‡»8˝6‚ňP")©7%RëÉ7ů Ž^5 N­NĘ:^ż‹7fŕ©™ âµř@ޱE^7ŁÂ)• ę+łżÓgV´Uóč"(ŁXřÝĄ*‚ íűÚ95}çËKÍpdbßkЏŇ6Ö¤;Řd´ÍĎzÇÂÚ›R*P(ń íü[eG‚ý(së* đßTř&ŔfĸĺŢ]Űëre'$öѸĐ ž($©°ęĘ0] űéfG‹›ŻE?F!¸DúŔ§ˇvďrHQ Ŕe´JŠo7ńşÝ6V**6q”đăHÉĽ°©ÍN’/…ĄpÁáűÓŕ*0ˇĄ:Ká\ 0ę–2Rm'jhýŇYĘpÇŰiRž„9 ‘ §a• ­™3†H­[ö¤|śĘî”WŁ$…śoö&]`gâ,IĎâő]j[_ŃpüuŁË¸7őĐN=`„ź–zč:Dž…źrŠ‘ }?§µ;ůu­çˇ§­kg†:ä´Ě`Ž4–ça§k¸IOGjîNO]ń‹źC»@„Äę$~jdP¬??e° ŞÓS9žnbMŢ;ŇONÁ>!:ŘiŃ%věăń0lŃܧŢ>”ÄĎ<\Tc%}ł‚ˇöŞÖKRČ}ÖˇYA/)'Ü9÷žZᥲGÚvç\”Ď]v¬Ă-9€)˝)ÓiÇČj`f7pä’î?očđ 8)‘úř# •@šţüŰ' -Ö8ňś iĚůé09OË/2Zz)9@i±@‘Aśv¬#UěcHS@;@ʦĐ4mÔ¶vµ}9»ś˙ôüŐlţü—çłľĘ Ü–čď.ë:â¬uxt•šŐ¬˙\ez•vUé_]™Ć ¸:ŃëÎt~LÓHt^đŮćPmCSzßeI­ ť”®*$Z bls“†×Qgg7N‰ĽG׌űŰ•qnťnĚß:vpßÁ Ŕ(î»$«lÝ®ţ4˝;nŇĐ߬ ´"ąŕŐÂ>ĚŤýM´kj2 ÝÉ!xg=˙c1ĺăĂŇ´1s¶ó~ endstream endobj 4505 0 obj << /Length 1700 /Filter /FlateDecode >> stream xÚÝYYoŰF~ׯ`Ń 6{AчŃÚDo¶aĐâÚ&BQ.EĹq}gÉ%EJÔ-Fźx-żŮťă›ŮY<8¸ü6Ľ˙¨x ‘‘’ăű@a¤Ą ”ˇH’`WˇBj8˘J‡—ăËĎv:ˇ#‚Ă—ˇĆ!z¬ľ|LR[Ý}±÷Cřjs›Měđfü)ŕś!ˇȫЄ{;ř}<ř{@ŕ%H#Tk¤)&ÓÁŐ břö)Ŕ<—#§ĆX|ü5Ŕ~!ëXŇ Cőv,Ť(ă V ,E ,fľFd„đĄ> n+”0Ž4V0!‚¬tđTäëJ ‚ Îő±R™i  IEWč,É ›Wf*fţúčí–&󢺻Ć?·îÍmO­OVPvÄT×íBń#í´Ä J‚h\Ç]ę0`ÁH #Űq@Á ­A"ęśăp<ä:|y˛1řűR^Ě&‹©ÍЍHfY©°Ú7»˛JAKKá`D9’´D â…mó"_L ‡Ľ˛~ ´ŽŻÚtŐ@ÂIË51‚´ćőŔkŚYšBFŻ€Ý»VÔRÝ8ĄQ +“°2˛\óëú¸Č&ĄšÎˇ9ÝÂo47wh“ ˙űňp–ÄŐÓímł¨(ŞĐżv^ߣ B čWh—ŕÖXę5¦›fvHDř<ä8|× :2ú(ä§ĽDţî¸\—c«)˙¨ť¬­mbVdé;‚Ôp¬ĺaŕF4Ł®’,M2{ÓÇ0}3đ]GX73»Ş złż{ŚĆ0eŃç%ô/‰mşĂE˘ňiIşŻ%O4äJö1 gĘ.5^ŘÔ>[E«I č2seIů|7¤Íý4ú–d+ůΩ†ź•×P]bç~ K›Ý¤iىŻ{f€—Be©”D\âĺŐŚÇŹ‰©Żł,ő“şwRg>׉Y„Y”®.meÉÓ"ŤĹu„c¨S˛Ió I‹ÁîOŐNZb{ŇÚŐ\0ŔŘL“QüţÎERO^ˇů¶ş9kŰH(Jđn˙&n7˛~θĎgÓÚ)ç«»é(ó›Ű$KŠ$J“\ú°ő˙I2 R!.OŁ*€!°>ťf :Ą LŃöć=§źlŽŢK6áMrC»¦p—nÚć_šą“Đ7V>ĺułÁć$ňˇÜšĽůP"`ť>§ěésVݬ6Í!FşŚ€mUłj;®ŢðgěÍw“ E†Ŕ˘+:‚÷Ŕ@˛>S+ŹFK/ĎF5ÄŤŐŃ(mŽFiu4ŞZ'Ł›ĎlhÄÉjŃUŔő1klÝSÖ´îZMŨˇş4ťM˘˘n2v:Žîďî…ŤGó–ťSřŃ]ľÍ«ĘşGź+­Îź“l’.b[ 5í‘‚AÝۤ°_úŔ@ŤĽ1߼ÓäÔ·յ󯛺s…Ť;q ÷™ů"*˘Ę$_Ë3µEn»”˝Á0J»~EXxľş¦Ttţ ®FBHwZWvWý‘Ý â€üÁ“Á—r Ó·‹¤)x΄mÖ]ťJ_eëý€Óňú¸_"Ş$oď¶’ŇűôĄÍlő^«n:®o>9ĎXřę/đęŽŕÂ|¬ö9şôą¸¤!x»3Ź<šŘÖ·ĄŻ:‚*‰a­ź1+űŘ/eycłŐlű/ČŞ¤L endstream endobj 4525 0 obj << /Length 1368 /Filter /FlateDecode >> stream xÚĹX[oŰ6~÷Żş ’"))†´Ë4]Q,5ö’,Ó¶YĘtÉ’ţúŠ”lÉvl)öbRůńśď\)l--l]Ť>LGgŹY> „p­éÂň0ň…°Ľ€"A¬éÜşµ=á|›^[.Ľr™€}őż“8‘Îzľ}™EŐZ¦eXĆYŞ–Ž~źŽţX‰-Ň"ú>ň)ł˘őčö¶ćđîÚÄŔ·ţ­W®-Ć]Ä™ óÄú:ús„Ť”Q®¦jhdv-‚‘DZ-´ 7ROćŰ/Źr.E-T‹fĆł‰l)Nň|ĎS†8Ś5ĆĄĽł×şs.ěRăjő‹2wĆ„ŰUTšµJë|iÔż©wQĎł—ĺň~-×,w±ýŇ>›f ­"ÄC„{ ×w»°{Zx9ͶŢ÷e—‡«}JÇ„ÄoŤ]Ŕt}cô*Ť”•ßśŃ'‡r;‹çŻ1č× ÍŠí$‹ÔđĐQĎ!vśĆe^mĽĂ„>ÂSß4>CL즧;COš5ŰF'Ű?ljż;ŕ7Î«ź»š5oŐŹŮdéRĎ”žqôČHÝ®Ö3™ľä€‰VáŽEŕi3 ĺi\Mf&v>jřF‚úČre&a†%hıŤzTuHSŠhŕ*_l˙tčQNň]úÁĐóťZ“·v±µ`€1(ÂÄ5¶Đbż×l7ÜďńýWf˛Ń<,Ăc”!aąČĄÜeĹ{cb·é5÷ÁQϱŹĺň é†ĐÄaÜV, ·ŰëyŮ îeeA C Â@ÇĄ,C¨Ěs@ĄPšeĺńc[řŻŕxÜ”ÎU\8&0mĘü\ާT•X",Ę~nŘĽlÔîgő‡śŹ‹NjéĐR¨čXĄęʶ#¦Ŕüĺ08!wüÚÓú€öLĹ”™¨Ăśb łło jl±Ő‚sětJ'«¸ežúÖŕĺöĐ‹6¤×Öů°Đ=Ť1ťH/f ó±2Ý^a*`žĐlP°á¦ŮpvPI ŃFOßčx5˝ú2ť8>±ŃJ+jşOÝ€îX\¦‘<ćăđ¤ÔSŕ O—ҢWß–I6 “]˙ď83hŰTâRć:"ł°*â¦N«SHS&bHîŽA"hó5fý)N٤šK˝4p»Öđ O6L˙˛ ś‚µé«(ç pµ Ĺ€UÚ.üup WŔHPŔűŇŤäť¶Čý×Úß ´zW_đ){>„E™G đ 4ń¦yîđÓzüśvŠmjp 0ôżw(ł«r•iI†ŠaHż”Ѝş\Ë${”ySOrCÝů>WŇĺTő·aeŤ˝n*łgl„ŃwΫ™}őť[€w­˙/r ‡ňJ^$á,ŹŃ"µ{2űOnę¨gúďUčÔ Ë@aŐ˝2d_Ř2Ŕ—Óä5yŻłUšŞ2kşV…7Ô9~Ě(Cî¦;˙;ü2-dśĎĆë°\Ë(<ĘŞĆčHů©öúÚYâT ő[V%Ůz6XBHn{x€‡" u±\C§őëňi-ź© źĂrËJ 3Q—ˇPń¨=;_öL8Zá“9ŃČzk‡ľ/IüK“Şţ—ʵ3ĹpŮ(â˘í “p™+”cVnĆ}ź¸ŞCC>5źŞT//ľrŠŔJ$„1Ę•Leץąé®Ťă|n&µ«W暦gźóŕś»M˛§›d_ÇQÚ>Ů&{sč¦Ńĺj]}Řô·/ÍÇ2ĺŃĎ/ËşM’ÝdDý±}©, endstream endobj 4577 0 obj << /Length 995 /Filter /FlateDecode >> stream xÚÍXQoŁ8~ĎŻ°v_@ş¸¶ÁV§“îv›h«¶»Ű ÓIÝâÓEKˇGś»ëżż1µR÷„mĎ÷}Ďt‡šO~ 'g3á"žç p…Áľç!0ěQ.Ń­%p`O™đ­y8˙ÎX´Pĺ&QküÝ ĎŇLšÖŤ\Ů”X˛”yC%ľg a /&çáäŻ ŻŃÖ‹ďcźą(ąźÜ~#h ď.ÁNŕŁ*Ë{ärs×v†“/R#'qÝÔŹ†‡(ĂĄ|›G1é0ˇ„^*¬ĄÂ Ń0ŃřÇg3J€`ĚÓ~š˛‡oÓ<É6Ë꛳Y°m L0#ĆđgcŃťL`áŇĆb­–i®ÚţT®ÝZĂ_ú¦žv>ô«4®çOů0ú 8ČĘu#¸=x6A°çŽ+β"‰ö˙Í\´óď9±~2wwJK Öu7K×*ú.ăĺ©Ů`­”\?]Čěc® ď€ě2h!×ý(ŹďeÔtâ,Ť×Ń0Ę÷óçöv$Zé˛m>Ä%$‡¶«™·FÄâs¨Ěuđ?kF’b‹Äşű7pęĐZ•RÖ»Ŕ}.˘şÂ¶!´Ź­ďţšëkŘ×Ü^7÷ípôÜ­kj—cŻůžK( ÔŇ€*róĽj:ž6u‡ŐB]Ó˘äŢqÇôVÚ¶(ëű{=qšNhűÄ*ăDn˝‹UcŞĄ™‡óJ…j  âGÓţPرţ}ĽÓ—éPÂvuú•^Ż endstream endobj 4484 0 obj << /Type /ObjStm /N 100 /First 986 /Length 2510 /Filter /FlateDecode >> stream xÚÍZmoÇţ®_±“]îĚîěKavâ:  †ĺm C8Ź ‰ (*°űëűĚŠ«XŠBźěS#Æç†słsłóöě]‘Ś3!D6”*áŤ÷BŻR%ČëO‰ŤD1$1šHĘńÉDQ„“«ślR#p‚IĄrŠÉľĘd“sŐăMaĺd6ĺjŃdČ‘.VŠ!ÂBŕCÁ{Ą ]ĺEX™ŇQĽx9&Rąś łĄ˛áŔ•W KÉŞŮN±Rd¸řJ±ńä˘Rxl• Ć&¬QÄx)•ŤOđ¨d|Q9q¸$V^Â%©i[pkĺÁ 婼«<< •‡_}Ń5ĽŞ÷•§ĺş(áşäböJáńł+Já‡"nď’Rę%ŮĘ‹ 2\a†g¬Ç Áéŕ ¶’ö a‰Ę+FĽS^RJ”׉ÇV@Î Aő1ÖPÇ‚‡8ŻrZ°Żş¸CokDř™3öCU4'ŃÇrŕeWźwäP5čś(ŻČ•‡đÂ]¤!Ƣ?Ĺ&&Ż>€ŇX4…f “°ŐJEÄ Ć0žÚ$u (ÄeBH*Ěę]uvYďŔ6f‡5MŐ>d©wŕÉs¬ľg„pőFđ 4X#‚0'xČ3R)§¬<•}PhЧĘ“ ‡#PČ‹ţZLqT×@N¸ę!DSaÍ%aüE)ď(Eź/Ą>›GĆ:§©R÷Â1é3aQr^ŇŃ“'Gł×ďĚěŮz˝ŮÍŽ/ç»zýýjýÓŃěëÍv1lß8dż{;űëě»Ů7o¨^Í^ ýÎĽAhXÍS/Ń–ÉD¤Źbłäž™'OĚěŘ̾ݼŢŮsóĹ·Żżý~u±;É?žtä}^dçúäąźűŽú@ ęť÷óĹ"KúŇ|őŐţ~ľĄ±X„€řĎVc>°”‘‘Ä–T3ÝfÄ$Š‘őš• nÎwz±Ű^ö»ÓÝéÉÉ ţĐ–çć ĘaĆ ŻĚěź˙ú·Q em·őĺŮŮŰßN® G,­Y5NĽŐl%ŚT¶„;NĹúđÂśťŤ(»ă„×(ă„IĽu~¬°OŘň4RČj̧ żŘ¬w5–^  1ˇnÔŰ^ t2Úđţ öW„Äć‚ęwu‰¸ÄŤ±ýß’\_ˇđr ůúR['_]‚ŮËí¦?ńföňů 3{=ĽŰ™·7“čew:ÍľˇĂzwˇá˘™óJsĺbsąí‡‹«>Xy? ‹U÷őćť©é%E,rešl.Č›—ÝJĐPaf•ŻzőëˇfŐbOÄ=‘'_sR#r#Ęž(®Ôn„oD[«4ÍĄiŢoÁŰi*  0T˘ŁZŹÖE¨$A;]˛ěůŁ%ĎĹ2,°óý˛_2ŚEîć<_Đśąq°äŁ ÄkCŮ_Eí!KoŐĽ“Ά͕x7Ě1éPčѸŻ>Ótć˱ÖˇP6#iŠ™¤ô{ŐđbAc&us-¶É%űń¶ć‹^†ů'f/ădX8Ě ą 2}Ç‹>ZA€¶ŽaobşoË›&iDŤÂ¸»Oě1ĺG4ÍĐ–4‡,}I#čq ŞZŇHăý#r¬¶lAĂŚo#'S°ÄýX*ţŃĄ7pĄŐyžS±|fL´#FÚ~pK ¨EŔ«© ŐŔ§Ě]·Ŕč4}‚0!4Żó; ŐJ˙çüĆôď†0ÓÔ™–"Š˘S¤ÔÂţ±ĄMËňfnËňGj.Ą`ő3Y=ŕ@ľXĆD«ć'˙řŠŇľŘĚ z˛…TśőEĆ™;Ď0ÓąĄ’sďűĽ (jq‘#źňüĚM¨Pôą™ azďV8QĘ=Đă‡Â ˛Ö%?RĹVŹ,F {$ó2R{śĘXaK@[Ôтt2¶ÝX·ÁŘMLw ¶ÝÄt·pۇřďÓa›ü¶éÁŢ}`›¸|¶éiç¤x ­ő¸mUęK€O–?–\çĂůfűţvňčÉěčäą!ĽŹ€„™Mz¤0P~öÓËĆ|u˘7N8bl˘†/Ü]üéÂAŰ+RF¦€±îzŕIă„CÄĚ3ŇfÔŇHa=ĆÔëqÂţwJÔ]€ýHÍ콥8VłĂ¨ęĘ„s,#+ĺÍ‚w°6Ž>Ňš¨Rň•’'¨”ű*}a˛'¨ÜßĐiDlDjDnDÓĚM37Í{·đ~1ˇÁE_ڤkY‚-tŘŕ?> stream xÚŐYŰnă6}÷W(PHÝŠ!)^¤ÍCŰM`·@c_’… ÚJ"¬#§¶’]·čżwHędëô!‘(“3gfg†A· łŃOăŃŃ©â(Ŕˇ”>ß Ep %R!Ă’˘ń]9*p?Ž/?ů\Â:óô4ť%®ÇTŕü2ź<Ţ'Yçé<ÓSGoÇŁ?GfD+‰A€ĆŃä~tő‘ )üv@b Ďfć=âÂÇ‚űp?C—ŁßF¤@I0úV_JĚ>˘+Ę&hI1)QŹ]8«‡dšÜ, ¨JZq=:őÆáTb(ä1‰9\ŤŚkĆDk-şň„NnĺZóçů ‹Ň©Kť(/&kł·…ýż›ezćcšĺ>«fµáŔ?Ź đđŐË|áÂ"çq˛Słr.!8ÉŘĄŚh—tôoAŰ^s0ÔŔăĎs ~š%‹Ţ]_·=őkÂú®~›ĺiľúŕ*âijǞ~î,:î'— ä@ЬŻ;úwiöi đÖ’Caîő-!íä4ţĂ_͆&čÝ2^ŤUĎ0ć )ęy4™Ďćí”xtJ9 ˇ[`¦ă „bÎòş&Äß"µÓf(Ě•_.«Tu m5<ÝnÇŁL`EBäqŇ '(b Bś÷ńdá‚­s0ťA–>–Ą¦?łOÖZ¶Şkđŕw­:` ••Ňo¦VMbUÄłŮ|Ą 5×ׯ‰ Zx’’făĹ8f$(}˘¦%:ß»ž ¸óq“Őh–.óč.‰§Ĺ8Ęâű$*ń,Ť—‘UŇNąŔDřu¸íD·ŐCbť¤5×·«>hşod%ô `0ĐńŻG†”úHâPůAéH…i ¬äéĽK_ ý{+ـе,¨ČTiZ¶g»u‘x :ý€©Í˘íµˇłQëÓ®#íq€¨UÜV‘ŃÎýˇôśk`Š9 ,…>-Ô;ŃÁ¶Ú~´—’Sŕ|?°¤%¶‡Ť@ű‘ŮáÎä.nolřXvfŻż3çńá¨~Ş!Ü×ÔZń® s—é_Éüf“ďž‹¶&ďNࢠś@0gI¦ďěŽŃBŢPý[¸(‚ĘÝáÚŔP4yXiEk‘+Rؤ¶9ToK›É/O…őń˙É“~Ŕ›<±É´Q ęĹbÔ–T©1Ľ$Wţ)ś»=_äĎwi§w)\Dę걫Vzö%ÔhÁ0ńił`˛]Ód·–J"±äU‹ŔiUí{Ň-“9â”O&pX«K{š—¶7ÜT"ýJ¤ě_"ˇ¤Ę0|%˛Ë ©° ÷ńQP°6l˛ÂxsKŇŘĐ+n|ĺ€$耶°ON¦VÉKĄŠŢ­ňjOío0<ɰ’˘é«Á]F±j ¦1\ÁÓ0 q‰ úĺ-ĽťYJMůľ\\ˇMěÔ•J¸wňdŢ<4I™GŃĆüTl(;:ő>n«4;ű+j´ÉÂ4âMµŐăçč1owx˙}6n_ü]ŮxĎÉ…@Ę +NµO*ÝsLŐoČ˝Jż{îźz!•@'˘Ú‡±×zű´ř,ŕXř­=¦×Í»yńdHx±ŚŞ•L’Ś€Oů3Žaë›ňl|˝;żGçżžŹ7Áü¶hśĽ“|ţÉtm[Ó ôÇ›}›łÔŤw’N”ĹŰü62\O˛|±Ú[˙µN‹ŢÉvq‹ä©+dýđYŮŻÁÖLxc/}c¸V¤ž_ć*oÄÓi”Çé¬gűŞ™„枲=qU‡ÁĐśkôɻś>ú 82±!źüĘ’ňäÖB…¤H·› ŃîŚ$KP‹¦Ĺ¸Ě^ß—7ş~,¬¸Ęí%Ç"<ľÝčąó…ÁéÄĆn@śE> stream xÚíY]oŰ6}÷Ż0 ‡šĺ—H*Ă l]c$Ë2,Ńň’‚jˉPGNe%YVěżď’”dÉ–b%nÚ>ě!1%S÷žűÁsH ;vĆźÁ«}É…|!̉‘‘>E‚8ÁÔ9w%ň‡#*•;Ćżű4<Íł›IľD—öö~2Źíč$ž vă,N'p‹¬„+ýá»ŕpđ6|đŠRyQ )ĘťÉŐŕüv¦đݡó•sgf^9ÜcČă ĆsçtđÇČ1˘žęŹ2Ö‡ ×Ańá`ŚÝď¦ń_ÓTc§ĘŤćóĹ$<rfIô~(Ý9Lđ°F˙jź\łN@Rq@b ‡×yľŽ„ânL«áu™Č«Ëüţ:®.n‡Ó›8´č‰QYÚÄ$±Ś~­h#*$„Ŕ€#źáž …ő°×xv•AĄ \d:‘ŐŐ‰¶Osň%SÚ6–9ÖňtѰ蜏$ôS‘)^{P“ľ(IËdÖŤŹ¨Eň|g’UÄŘdŐ„nĚ˙h?Ę’ l'ičfp˘q¸g¦vó8Ě›•DJB~¤Őzř^Op8"PĆŐÝ•»+ÓuoUŞVy‚'–É?ńb¶–Ź'˘´ţő߯Ąw¤JÔ3—®»ĹB3ű 1ŃČ}’&yXBě ĚńňTżŚ®*Y…¶<‚ö·´ PDŢŮ&Ł×,bĘňFţ›ćn޲UH¦m]\´™^ĆmHË^Ý©ˇGŻ-34»d‹gôŞ ¨éÓPŇ3zĽŐüÓtiníâÓG¨Ńř,îߢđÝ„“î.“övĆ+zmĘ'— …s¤|ZWŻ]QŢ,Ňަy’ß[EÔ%{ś‡şŐáŕúýsŕ·Űźeq.ÍfĄSȱ‡©Z®)Ńód™‡—q4m“héÁ‰ôVh˘`çÁľš@·Š3ˇČóŘËͲym}Ű ¦§>˘~»x52xiçcäS˛ýüęş§üŕŚ›îA'ĺ^ŻĂG4O˘e—}Ia/‰Q1§Ý~—a,Č·Ö›~B6•mÝ”Y“ZÚX¶_^!Yť  nghłŐ¬´¬“¤)AŚU$mONY۱ Č•‹ţśĚ˘@=uÁú*‡¦íkźbđĹĺ“™Îl°ÉĆ.ż<Î'éE[Ýőßmdzşą*{P3ü¤O\<żâzľ> ę&y°ľˇ>ţóč¨ó€łŤk5"›Ţv=Ü0l`vJ üć–u-żíid@5j[í¤Ž4¶ś…>W7ťĹ·á]–äqÖîŻGcoBŘm!Žqxtp„ÇA§—ř+î Wú°ëňžŽ·x~ điđÓ›_ű!^ćQ®·áŃäĂú ¨’ĽOu±˙-iéŁmĺ1§SăBXôŐ¸ţż Ź!LÄ7đËŕ˙"÷ĺEŽSD…ܲ˘ŠI„ą«ěPţŮ Ęڤ竑ÝSŮąş–VpŞfĎÂoĹmob<83ŃÇĽ‡)ßÁZ ^{ăÂ=$DÁăj ě?µŻ‡©ýü­j–»).hń ·#‚÷<Ďcöj¦ç.˛âM”6śLěE0TŘ͢I\ű.ĘË©:PD{ÚÖ7ŢkC÷vüËbȰű÷ý…¦p7N×óô€S… endstream endobj 4581 0 obj << /Type /ObjStm /N 100 /First 1029 /Length 3576 /Filter /FlateDecode >> stream xÚÍ[]oÉq}çŻÇřeXUýU, ŘŢhŔA–`$Y,„îžžŤ`A $*°˙}N ďp˝yEÚwd YwŘ·útu}vőÄŇDSL!Oى2‰n„N‘‹6Ąěc"M…6‚'Ťâ„LL˛= ł™SqâPô Tš8%gÁ˝` Pebăä”NBť˛I¤P‰&‰ÉgÇÉÁ9' R§Â$¦Î/Ĺ)pÎ#Ą)„čüRžBç‡)CˇŤźNAŐ‘&@Łěś})ťłŚěśł1çśńµRśKĆK‚9rš‹Ż­č”a1ă :çW ž`ľ6Ą «ßžáQń,CŠŰż›ó”)lĘ”…7:epń9lĘi[oˇ)çěX OYŁs.2ełŤs —m\śJ`<ËT¦ŤśŇ©äś˛©(cYKá ¶ŤĂöL&•âß倭ĀГ&MNĄI‹/?sžÔ\öš˘8Ą“a»ś˛É TPPĂ‚1‡đdeű«ČdFÎO Dľ ű…aźO ŇöuH”RđńU¦˛-K¤–m¬A»(n%ÂŘű a2KĆŞ}»cŽ> ¸"äč DË.PfeJ®ŞšüińFŰÓädÜžn¤mOÁW(Řžš“ş=Ĺ*dÓ séĘ»M!68ęëcŹ-ĹSĂ—¶µąąRçŕ¶$űÚÜ8B kupđéAšÔ¶[°,8ř× {0X×Ţ á(梆‰pŚ®ż6ÂŰ0üŔÄQ7ĽÉíÜlűfKśÓŐ7ß\]żůË˙Śéú7>ÜÜ^]żţÜn·Ďż÷áOW׿˝ů¸ŚŹ?ýxý/×˙zý»xűpuý‡Ńo§ ®kpőꎀˇĚZ T?Íă~3}óÍtýzşţîćÍÍtýíôOźn?~î·˙üżăĂ­Oţ«é׿ľÂ˙ ‚ 4Gh§<»ÖÂÍ%Ů0>ĂAXXgrĹ ’)IžŁ–/`9ńl›7–Ůý:Ë,śÎŔřcýř®¶÷ă±Dµ~[ćÍţ­ž<ĎXJ„,‚‡¬ą¸KĐÎg°ÜÜ®oßö›÷7/Š‘‹‡^žÝ‹XžÍ†ĐlóÝ›ďţýÍ+yűöő†ęÓ[ýď·u‰˝ZµŠ­*Kˇ´†%`Mđ?Ňľ‰Ń3b_Ź+µZ—Ľ"„¤¸(Ň窝LVkt@¶ěEšźą‚@ŇXBśÉžˇËHŻŰÝ;€÷P:-‹¬ Y{jGč2ś\đÉR¶j >Nů9‘­ĺ`+yđ˛PYÇĘą#—CĚî® –4bŁĺí<(!\?C•Š Ť…HYj9‚v…—N#PZpË çnćä§-đpRž‘Ý”§kц T ]É–{ď wă¸<`O+üśÁz;ĚĄ2=##*Í]Ú,(Z`TŞ(Uµˇ Ěr@=˙&~WÂL@÷VäjLĄĂ=®}Ś4Ó°=9,Ťc\Ľ(ŃŕÝ<ÜqáÍ1ĂąĹôś ®.„”("§Č$´¦Ä!k”Aë/tâŰéđ΀ń‡éú?ţóż¦ #G¤~Ô…Ä÷Ăç÷ď|tpˇmpP¤1Oś ÂMĚOŚ8#ˇýĺŕW7n7IĽ*9‚•»Ż˝Bě§“WĚ(–EôôŃđGlÖé“ç?^˘ú'p˝ţţăM=°Óő÷ßľš®ßŚ?ßN?ţrWżŻ?Ť«ëßaňńáö“C›ß7ďÓÍçŹ}|ş;ŃŢžýŰXŢŐßŢüyÚö;Y‚YCŞ‘guŐűľ~,Źônü¦2ź0˙ÖępX[§ăDčN؉(´Ľ˛a'âᎡ;qâăíŤÁ;!;vbçĂi'ňNěśyçĚ;gŮ9ËÎYvβs–ťłěśeç,;gŮ9ËÎ9ěśĂÎ9ÜqţńBVňĂ»VČçě>Ů ěϦ=OzFŽŻ&0şJA[–uMc]˛UăFĚđwt a"+ŚŰË«ĂN8•s'ÔŻoëíĄŹ§1yňÉO`ró¦ŕ90ËnbTj+ţU¤ĄkAN­kCC:@~đzSŘň‡ÇĆŚŹ—Ő?qY9€â§űęs€9V‘Ą¦ĽRD °–ÖĆbHŘŇ* 6}€ öüÄÔK0R$¨o”ňSdxIű•9ůä'0±ˇŰ?ćáR¶KčkLkKHbęmŐA¨Ľ ôÚěůĄ8ŰÉe[ SÎi†«=×Aýpűîö/¬ď?_Ô"cóéOp$yE]ÎÂy8ő\$uĄ&Ő˙1ż ‘ë@U–Ö’Ž jľ­;nNJhFZú•{Đ[ş¤÷`$"’P9 ć‘ęČRîđzq]P"+#q'¤AäąĚűů Ę"Ź Ş(“°Qó×íš«!żG"!ĚJxĘĂeÄŠČ˝Xo¨&ŰÚÂ裭IV+éĚÂ#EŃňEHÎqB6 ;Ę_ŻĎŹÇ>ďŽ\ĎŕxŘóˇďF5# ÁOĐkÉŇ,ŽÖňů%$]ž ĹY »Źß|6rs7Áç/˙Oö~v8‹çáĽřˇ\őŠB”*˛U*µçĐb<Ŕő%o”7ÔŕĄCšç’ó×˝Ną-ä{,Ŕ5{uËĂgo”[ď•[CÁ_[˛’mHŐ‘żđâË2[şë­ű}0˘s”ňµo€ tl— OhĽQłmć4{ż¸®KmşŽČ(^ł" +Y˘~Aý ~Ě'$ ł˘ŇĹ/\Ůvô_âŮĄź• bťŐü¶l'ĆüP_ća+ĽbΓ(bˇ_L~.l“ŘăÇ­‡ÔwŢ„Ëj÷@@<Ň|u ćÍ@¤$¸eż*Š=L ¸"ęN{‰}Ě;Ąóî6‡ź•N`-_$ŕŕłßZ•Y°çÎ~«;`ŻüűwźnO÷ą‚.JÔK¤`•{ä…;…Đ–ESą´`™=]4ż ‹š%űeÜY ‚ÉÁ‹¨x×pp Č0„ÇËú{¤„¸ čkGbk)i¬Í/ó5‘ó%ŤÜ/XşG*~uË/lźAzgä?Ýţôöí{Gڏ#‹­)!sěˇëę/äĄé/™Bž\jÖŕ7]NžŔÁ?Ţ%ą—j-ˇű+ #D•±Ć^…üšëbié—VS:Ę#­4sĄ˝(JoEř‹Oîübđ}G$ÍDOŚTĂon=q0C©ŕU.?8Ŕ÷űĺ÷§ ÎŢÎO,đ%Yźc»ź"O„qúő7´‡ţştý ůBáĎ­#BDŽúP'éoîeý˙ݢ»VĎßÓ-ň—%NM˝™öfJŘ›)ńžŘ»*qďŞÄ˝«’ö®JÚ»*iďפ}Š´O‘ö)ŇÎ9íśÓÎ9íśóÎ9ďśóÎ9ďśóÎ9§‹¶rN1ĂŹÓýV:żŞŚŹöXl;ް“fo˛íHD·#…”“żĎŢ#ĘńŢá—ÍżĄ—x˝ăÎőűyľżň¶g( !z‘€źvř«UŃ«Nžvy{)Í/D9÷ëÖ,q‰HˇĽÚLĚů0©Ő_C¸|%—g–»n4ĂQĂUĽ '•E?Gĺ{•uÜÁľ,ĎQŞ ¬t© A$•&iiëÂyŃvÉÔď$O¶9ů!pĐYýŤ5Q¨ÁKÂ)ś…ýeUżĘ[ĺ±QoY^âmáSýWN*°WđzVţ‘€ýZł'Ś;dI¶Ý#xÁ÷ű¤ľ»ŚýŇsŢEúŠWČQj??ń+äĺŢIůK|éŢňüt ülx1CÖüâŽDĽss r~A0%CpŢh¸*E¶›/_úú¶ö?ť‚X^–•ŕyÉúš2ŤĹ«Pęű‹˙1`8 endstream endobj 4702 0 obj << /Length 983 /Filter /FlateDecode >> stream xÚíY[oŰ6~÷Ż 0 ÄňđÎ {čÖ&pęfX­ö%+ ÍVSˇ‰Ü)JŇ č/II±ĺĘžZŰm0äA݇Ď9ü/ť!‚ŽżÇLJŠ#ŤŤ” Ĺo‘"XK‰”ˇXŠgč4Đ$|#f«—¶ź/=ĚÎÓ0˘JOçÓ«‹4/“2›ç®éŕY<řw¶%Ap'Qk¬)GÓ‹Áé‚f¶îY‰FŁßňqÁ°ŕ̦ĎŃxđ×€Ô( ¦Â%ÝŻÁĚ:0KŔ¤­°Á€†B‚_féß„ĐÜA¦:Čň¬ś<ËˬĽ}r$çW¶^ř‰>> KŇJ,™nć}R$EŐ˛86 ýXqŕ•ŃĚbEŃpŔBsQ9UUŻ×ˇ$ÍA«ďBÚÁÂf §»ÜK'€!‰Ť˛`íÄJ–JđlŢN#iŐň©.tvr}˘’Ĺ—DQb‡âŞ™Zľ‚­Łw IšcYŁÔóôř3>¤“qYdůŮ 8§=âľë¤pŠÄyrá żö Ra¦Ř÷®űo89Ď’Ë;Č=đő±<ŔY1żú0ś…ŢżU?Ň9XĄýÍc}eˇĺˇŞąb·Ü$v]‰ĘŰE/˝&˛ŮŞ«± b·éjW¬WŁóýÉÉp´ŞŢľ†·,C ßÂS«ţ^5•ĹG“ŃpO†'øË쏖uUÎß§ůZ»+ŤS×f[8 -»®-°~őŰF7ď%wŕ# .j1é E3iPÄ-s‚jŃ(ŰDŁ×–űcǢ·6(ĂJíD™ĆŠ>čţH”nI˘tĎ$Jű(]ÇlÓąő]ë·-=y5ÝO"ĺ´‘úőhç´ Ť»ç‘[ÄĎş˙’~*‹Âý QľFGYţţ?Yěz±mŘ!‹2¬ÁÔ,*÷Ƣđ@Ł4ş˝,¦Őh@Äpłôň˙$<Űl#vď×1Ř#––üÚÁ\śŮÇm…%pĂďAč~đ‚˝ …öC .čěŽ Ĺܞƾń„éÇÝŁëË ®?.“rýľl;ôtzŐßéÁ’7?˙tą{źżv3#Fvs3Óăfó]K÷ž"l®ŽvrˇcGáÜk}Śďsńô†ívĄ.Žă'<ßI0Xń>"f/×NuE×»€PXÓoyhŢ,$¦Jrż¤ŔB‚miťuh:Jó´°6ťUoóĽúżhÇŽ#®ę ­ÄťĐ\ Č0‚Uą·®íĽ¨2^p6­2q¨IP$Ót©.)›¦N ÖŚ^ ľŕ'č¶y5  >Ţž9Ň Ň|UQ_ 2ß` endstream endobj 4720 0 obj << /Length 1170 /Filter /FlateDecode >> stream xÚíXŰnă6}÷W(PH@=áM$•˘ín8đfŰX ¤ Ckˉ°ŽśÚr¶AŃ/)JޤȑÇűÔ‡DEžąqÎŚ‰Ń Âč¬÷KĐ;:•)đ…`(!‰A ¤OALѵ#ÁwűT*ç,8űśŇń(]®'é níôi<Źěč2šą;Ń2J&zЬ„Łű)8ďť˝żzDKĹl¤(Šr4ąë]ÂhŞżť# ĚWčk¶ňqŹÇ™ĎѨ÷[çšc žšGak°CŔ%C€‘nź`Śťď¦ŃźÓÄ(O•'qŞM Ó(pąrďőWÝŹN Á%lB HftĘ`\ŠťpiWV” |.‹uÎş˘°ˇćú>a„B}ĘAxĘnşr…źŻŁăĘÖ'7(Ąťŕé—ĄńĆćíŇŔÂ_2eđ±F¦Ŕ)µČÓE]÷…vĘ?ů¤‰’AĚŚ—°ô@rR–Ô”kŘ]QĄO<0樯c"-Fć˙â|ĹÉMM;ă>lţÂĄń$$ᝉů±ŁĆśňőçű÷Đ8śÇájŁrýş(Qpł\¬ďS7‹äOö…ĺîYŘó•…Yk)›„ţźÂęÔeć‹xZ?mĚ*ŮĽü4ÚtÔ©8ľ ëîíx¦+úúŔçűKnĐD8FÁxp1š˘ţ}ŮQéâK”l »Çˇ¦Üs ˘3;Ó ç˛s÷oO˝čë­ˇćýđUx´Ć_}Lř¨Ď‰¦ ^!Qő‰^ţ —qřŮ•Î|;Ť?ŤbŔ~NŁţÁh”´Ňh-Ôk`Ţ–áŠ!Űrî>ÔĄ5­ä÷ĹďĂaóÁ זâvŃq©Î<gőm¤=řhq´ŤĽ¬‹:»‘€»p;w]e0ß‹ş„&Ůë©+ß ę’>ř´-ćşĹŁ~E…oO]^…şüîÔŐÚ 2JňŽ&şS¦*ş$oĐ 6±ÚNgôy¦ş̲‚î™Uôpť`~]”( ,’4ČŘ»K©Ř‘PßžO9íΧű¶ĎŤ}íqýźQ-ŁRŲ̈Ă8ůR0h±lW]^™1S‰ór|ŇŚ˙áç?Ćż^~|w2Ů Á»`űlÚŚťýňŘKiöđ›x…7 ¨•°ETťău±›5ٱ"¤ç‹˘ -ątISĤžF3‹ű~1Yßé8LăEŇ&ăéč6řŹBq¨Ň˛€Uvµ•đrIVzŮpň;MŻaśDK»kó:Nkeťů• ˛ Ooö®ÚSPŰÁ(NËvĐ·°#0ÍEV/*öÓ5»Zx˘leĹĺlUO’4N7MÝ[›¬«Ů@çí)0e.¨Ć?ثΉuŃĘľĄ·ů ¨iEěh1«}𭓉9¶«Ł•ˇ€U¸évÔ“¦Üán´¸Í@ĄŕĄ[PîĐ[®"W-š«™Řç‡bpnzŘuţBó&ÜŽ>öücŹĺ&™µ‹e~;l€ă‰} \…ťe8‰Jß´XjŞŽ.›YÝÉ&> G;~żpvţ~Ľ1‡Ĺ‰’şźţ<C‹ endstream endobj 4671 0 obj << /Type /ObjStm /N 100 /First 1014 /Length 2147 /Filter /FlateDecode >> stream xÚÍ[mŹÇ ţ®_1Ű/#’óĆŚIśs ¤¨‘3ж†aěJ«ÔqWÜé€äß÷áH#۰ťŰkt¸—âržáp8$w/椎\Ě©:ÎD&b6‚]’`„¸BbDpZÔčR4*9aŁ  h† ŽcŕUL ąXŻ8N‚’ýšě¶\Üxř5§ĆĂGˇĆSP±ń ąTIPĄˇ‰@‹*aŚ ^•Ć–Zě^hbă1ĘŤWś´!Í bu±~•ls,âÄT NJ1ąťÔ$+PÉ6KL&2”;©Y & 9µ{« *fĹÔŚ¦¸Ť›Ő—ˇÉÁ15}°`(ĆP ©ĹôÁ‰˘!€ú$}ęR¤vGu)™ú “¤’ěX2Ő`wTqů0Ë\–bs«ŃĺŘć»`5ņįĄ™fTTiĽę ©ńŚĘĆĂ%ě%Ć3Ŕ¸ŕW/‚ŠeĹÓÂýŤ‡;$Ť@™!Ls µáË®‰AA‹&ł(I5Ş:łsˇč4q0¦Ó”ă T†#†fşâ´R›‘şJm ŞŃF#W#ŰJĂŞM”¸ÚÖ·ppµš9üą-°™)ŘŠ†gQ´%)ŚŮRŽ& gg*ćĹĹ<‘TlmɸŔd\¸+Un\227âÉf”°‚ Să#«Ú^lbŘAj“–иÉČҸFi\S˛qm?qdăÚÍ7Ľ„9>ŰČWĎž­ÖŻ~űďäÖß^]]ďWëË»qß®|wőËjýÝőÍvşyM ôfý—ő_×ßżćv±Z˙4möîu®ΉťďmßÇâ1_ äaČ|ëž=sëK·~qýęÚ­ź»?˝xőâr?l~y«˙y;l¦ĽÝî¨ B•â°I™¦m+yăźÝ7߬đ÷ÇaJ!ߏ«O JölCÔGů*Ôżżş·o/÷7w›ýmŚŘ†a ¸q[ÝŚSđˇŘ Uä|–Ĺúű±h)á&ň1-°¤ŕk©'ČŁ€şhČGSđĆş‰Y|ÔEâĹVĆ+aŢÎ.őÁv9Eóéůx9иĺÝ u·Ëv˘a(;śc§—íxF—Č٧ GĽEĽ÷ŕýńÝíţ3čV‰6%Čf "oyC!ŚŰ­¦rn7Đâ-\Fń‘ˇfsâł‚|î^#é(ú'·ţçżţíl\$!JÜ6ÎŐÝű÷oľ*ŚfÂĄ°'¤ł„sČŘz3ekÔyÂ8ç=NňdžQ(<ŠpŚçćcĂt‚,áü¡}Ď„RôH@ç ăőUfÂ@‚cr¦Óż>‘˝¸ľÚ·}taÉ4˛óĂ]–dŰ9|¸B „L;ęé2¸ rşÄť%dˇvýňćzs9aűşőËçnýjúuďŢ|^?O«ő÷}şÚßZN(vżmüŰë»›Ít{ČJďoÓöÝđÝőŻ®Ĺ i‚ÓČ^+ÁËáJI‘ä[¸ąĹř­l0X­j8±©ąĄÚ‰z$”:ÁťčšµkÖ®Y»fíšµkÖ®Y»ćÚ5×®ąv͵k®]s=h~sŢä éş×OÉrlŹlvą‰ę|ĹSf€*ĂŁBYrňŐ!÷äkÁ»ŤÉ#ů?ŮźW^$`†Ťö¶Ż9ž0lMłů|Č»:Eҧó(;eÂęqĐHÓfÇZÎY÷*jľd%ô>ÄO–‚e䋵ĆS†ŕiα ś=–Ąd'b=Ų”‹qąŰ,%:cÇm–BYr$ë{$[.âŁ…Ł•Ť[}\fĂ‘]’Üp [¦ Ľ!ůÄÂX7T¶aŞ;Ž;Ň »-ĺLş©:„3z˘•äú1˛ŃďCüdA,áXHÖ9±$ĹcA,2ykŹ÷ ĽĘ‚“…Hâ­#Ţ÷M ¦E'drc †|°q@µN%˝6ŞiÁ‘,dű"ą!ë`ŕş°gzâRwcĄ1RŇq ÝUÚD 1Ťśi¤í#xĹ ňŃ+îüd±ĚZ öŕ©Ç˛ç°¤„Ś3űöŘŹ ±ŕ°˘™ű®će&ĺ‡đ[‹—ř!ú2ĘcţzdxŠÇ&ÇĆhőRRş“őĚ(­•dagwF?ľŻ3ú%áqHkš),Ő' ó„‘ç2O6* ëĚů¤;¨Śg söödt–°0ŁĺyÂ\!aîš,ą(ôy/őA˝Ŕ"ňY/°ön\íݸڻqőŘŤł‡ŮG"u"w˘tB;ŃďbęwB::Ń5s×Ě]3—łvőbň™í!?#ŚŮă>řru°*˘,7ż)„j˘|x˘ " -0üÝŰ»˛„čC K†Ü›zÉúČĆ„4‚eŮM˝ęCćS™QdÂćxŞ:McŢŤ$RČi”!n9 &ЬÓ9ó‰Ţű'Č[őń=ꮫ‡9ŘK)˝«gMHZNŽÖ[—bđěᣄϭ‡SŇ‘/yŐq+ŁĐ¨»0ŐIsăćÚdň©Mö»ź®+‚ě…,}č]‘hřó»"©aýđŽPDŢ›hÁďŻD{ßJ>DŰ®†Eż#Ô!źş"Ë…|´1ĘÉś>¶1"DćwE"Ęɧz8r2‹ĎL)礓LĘ’„A§mJĂ4†GŘxGħnäď"~şžHµöó)E*ć +Íą> 4˙XřŢŇü Â9ĺVXĚFEf/ĎN¨MDóLaBÍ—užpPĵ<sČŠ#Zf ăśäšC‘ô|±SńG…Q·{ű‚G†÷‰<‚,ŠŮ˙_á˙sh2ĺ endstream endobj 4744 0 obj << /Length 1251 /Filter /FlateDecode >> stream xÚŐXÝoŁF÷_®/ Ő›ý`?¸·^šD=őTő‚î%w˛8Śt6N n›ţőťab\ě;jÓ'vvö73ż™ť…zsŹz7ŁwńčâZ‡ž!‘R‹gž¦Ä(ĺéĹĽxęÝů†_â÷ž€)*XW˝ÎY0ćÚř?®ŇÍ2+ޤĘWŠŽ®âŃo#’Ôc­Fcᡗ.Gw_¨7…ą÷hŚŚ÷G-ąôB) ŚŢíč×u()á‡řh0‹ĚŠÚ€Ö$"ś„ÁQJýęń!›f3ŔËŤ_VëMZ!ĐŰ 'ŚńĆŔ«ßÁ¦8PÔ‡ĹveçÓ¤VŃ‚Ľ¸Ń–®±S6ć!Q€Ö© ¸ôAGyń!Y6é 8őłuiuu ݱ’zcÁI$ä¶ň ΋ovŽvĚ9Ą×8 Hť ¨ëđí/'ř—«ł˛LćŮ©.ÖgX´Şf“tµX­­$ ˝$ąBIa¦‘üL©čQ§  »ÚĹŠqMÂHöËśaÚ-介R=ˇ+“už| őÎË»_‡»AŹA¤]^ě›}Ž"=X?UŐeőqÔW^\®6Euŕ`ŔƤăLH 5m"´|ą‰o~‰Ż'ď’2OÉ˝…îNh}—h8e˛"ÍÁýÜNéZ?jŵRfĎúĽ´ĎęŢţ ăf–‹ě© ¨ż­f;Ň_Q•“GŁg—¤n¶ZŮç<+˛5şŰVś±Żić¶˙L%m‘Á #®Ŕ“ź*,Ă4Qܹ뻼H›)¨Tŕ±7°>ĆT%÷oęţĄ‰ä^içÜ#ĄŃy·5›zK‰–Q6TÄçüëM‘˘'Ën†ôŽ)˘Ť†č B™q' 粳ֻK©üt6äĹţl=wŤÚÇZ¤Ž[{ĐĚßIŃ}kĐŢyV=wŰű61Ű»­?Żć˝g›[\Oa ÷xQLpŞ"Ťîŕśđj I¤ť?/”q¶$ ˇZ86%öA ž6kYşęµ|·B’úä`!hˇ@ľ'2˝NĹXµĽź¬łj¤_LŽŠF¨?yeĄFŃľČXVXË~…)M$÷ʆĄc0xܰ-ľČŠd™Póľ?L:d*Mćý°sĺŃ$€2 ™Ću—č‘ö°Ż{Y8‡~Ń‘ôcgŇoĐgŇOŮk(ýĐOžF?{ă}Aęý›…N7čĺjöµˇ^‚#BČWÂŔ˙E”D ľŹ®iC> stream xÚí[KsŰ6ľëWđHÎTŢsËĂöL¦ť´±&—$ăˇ%ÚćD˘\Šjëţúîň%R%’É8Lš‹I™ »ű}‹Ĺ¤Î­Cť‹ÉËŮäŮą‘Ž%ľÖ™Ý8†«µc|N4sf çkŁŢ”ë^Ě.ŢÎÎŻ^›hNîň˙ťGË0ż{ŢxŚşaĆsř—`V × ďÓěÍäl6ůsÂ@&uX%ĂZbątć«É‡OÔYŔł7%·ÎßYË•#• J ¸_:—“?&´7­Ź_řµń[C´ŽŃŚĐRŹś«l»×qÉm1žwçĂT)í¦ jĚĂ«$L· čĄÜř*=ý˛äĚÓĽX,~ŤâĎ3Źqę>܇ŤłfÜýHťŻăMęe?çwA‚Ížť3éř רó)á -T Tä­ÚJâ[V¶ –Q°ńrž•uO 1Ś!úČUŘO„"‚wÁË6Đgş3`YS!1Ěw¦Ś_©îjm’ů«bŐ…Řěö°Xß){yjn҆<ŔŰY~QéIµo2} °° ˇ">yw€ş|€AŃÇ€âc„ć>"ń˙ µIŁĹžSÎ ÷Ä:vá ßzĚÍöŢ3ĐIŇĘ1l\ăŘÇ1‹0Ń}ŔYçX7thźýx\ăX7@cĆ{‰ź`śXŁ ôń~č+üćÁËn\{ |~—p‚Áţ,NŁô!×lą}¤ ×:ńgk¸×Dj>ŠBj÷´m‰éîĂÇ1±›(`–fv ęw"Z…˘×éÍU%Zß@\Ě Ç뤖4o8Ů5RIJʒÓcyFCU1—č’7Ëu˛‘µŮŁÎTb’0#Úç×]^Ť=±±’BJ$Ĺk'”Ç!NoA‡É#NHŐŕülÁ§ĂŐ¦@Bó ¨0¶6Nř„ZÓGFZăB&&¦SŞ&•oűFčÜ~ŠvןČîť=Á¤ŔX>žmś©ő g¬ě"–*DěeŠ“’¤nÚŽYŞ3̶Ć#÷/¤ÉďI8ü˛rÓhܨ ݶa_BRŮ— ě×…CĄ/őPěwÓšúŕCk@5 Ä@ż Tź†(¬¬’#K˝ZXĐšs1F‰1Ľ9Uě0Ű)őjöx“}śHŔôĚMÖž€ôŁ•še¶?šřrŤšÝ\Ε…cl}Ú3‘7„*Ó\F˘Ĺ s˙°¨ş?¸)Đ' G€$.Ój`î¸üTD+Ö7÷éŢŘ^äF\öŔŞÄ„ž5±zăJďÂă(mőőúć‡Eůďňíćn,0”0É~Âü8Ě•$ś›˝y>Ŕ2IÖW¸Ă{>Ňm’Ŕň|(řăüŮe“s”ôą\€.*sÄ·á2 €űý‘M1w}?š9ENý>…¤adë˵îLÉDqżđß…äLh¤ľßlČĄŻó>˘t“ßÜ'ů@Łő¶řO ¶ă®®ĎÎ_÷‹łÜÄq:("ąü9oś7ŮĎŽWKŻŽłśľW‡9´O…Ť†—`DłŁč®„­ŽÁĎđˇŐ‘N"´!‚őŠŐ›dŢO'‚«>po˛s÷Sˇ%avŔŽkóîL˘„š^±ŕ3&4!ţyčÎ&ĄŐ⋊-ĐŰ'ě?!ď4Eޝŋ„§Ă /× gş& OšË^Śö‡’.“Ë GvÁ¨”I×M‚ Tő=Đąwx&¶ć‡ćÜYĽx ˛=yů (¦ĺNř·Ď°ŔäJ‰QfXGÝ~½“(AÁVű±ű5¦Żu°á»Y ,p)0"”bÄVŁXŇňo R<®§uëŮŻ=Ś5Ö§_ÂŁŽ«[@ěőOÄŽ±e:˝˝Ţ”ţNŹa÷&YŻţčÍăí«őju¤îŇĺ8Ł%Zč~ČdöŘŤFŹrŐ6ëUá»R™Ľ8VT!ňŁdĄ±ĽB5Üů„x†G|{ĂońSg[VŐ,yĹÁ2úÍ6+80Š"˘WŘŮŚ€G@^P$2xh@ůĹzŹ8ÁĹĆÄîH?a@J©ű:Lh˘ąĹ]ŕyݧ¬×Ž8„‚K)W«řUŔĹě"ű0€NßěmXTD«űeč2!ŤZlŐú»*á“†É VU+Ô”ÓÚmuY´Gî™găU.©F†ľiÂě€éš:j˘ËŔőŢ“řuÇ`»oť+Ź%ş8_rf˝ Ýëoú2Bíń]Dů‡&ÜhYűŽCÂ,ˇ‹Ă‹h,0TAÖŇôż•7o0pn‹Ľ¸P&ó;Fź+˙ąElƶë¤ř,;.˝5ó,¤ňT!´lZ¸##Iîçl±ßżÎüóp‹ŔtĂxßN˙ˇńC endstream endobj 4723 0 obj << /Type /ObjStm /N 100 /First 1005 /Length 2859 /Filter /FlateDecode >> stream xÚÍ[[o·~ׯŕcűBqfxF€\ę´@‹±Q´1aŻ©QC dH˙}żáYę8‰+§kĺB!5<^J[ŚG¨ÁÖ 10^lM8.1µ&ФÂJ1AóIs ‚§c6ĹlT›.łq(L-D¸Yc‰ĄDT€Y_xbČ<ÁÜ•X[śT̆č0#´řĺ`z1Ç)éâŮł‹ËŻÜ+ÄkEĚă.˙ńĎoa4ŻĐ&SőÝŻß˝yóÝĹgź=Ř™*{Ĺ*wěL”=LD ť±gś&YŠĎĐÁiť‰ĂáQď—7onn›ZË -óĘs^8©AP`LuĂś÷ZŁo  f/Ű&e5‡ěk’‡´jó@«´ŇuĄĚpmZ P1Ě_eŘâwô€$ž­c5ŚŠ=䬛hY‘dÓ„’0Ę2§<Ô5Îu™y)sžwÄʵřJtŹU¤z¶ęň¬đ€««?|űňv– iގĚ3ËĽNˬcŞ%óş*Ľ–÷÷‚¬ŢĘ î("}­ĺ<˝`ĂŠrĚÇħ`ÝĽ (6Ë „=@–!ŹiČZ#ĹíŻÖ|B1wŻÖDH®tžjݰb'GiSNÁş©Ut-egAÍ?L(®uÂ\VRl…SJ;bFţnŁoiFpĄĆę| úA¬o[Ҳrax}˝Üîocbźé¸˘°őAóyÚxĂjiJ[iţ(ÖÍĆ×ZPĐ‚¤Í%ŹŁ ůŁt‹-©fŢßĆŘGŐ @'2&Ó˘ýż¸î–ÝÍ«HŕĆZ7뢀¤óLŽPT řÍŹÝ ‹1 €Ă4'ĺq™tZŇŇ]«%÷} Ť,D9’„ź‘ ä+LöKfń~çŤQ€´úđA‚ó~g‹hĺEeěŤjž&šńű çť3 ś˘îŮąq7î9E=Q4VžŘĚąěŮąŞ7öź`‹·“$§«Čc‰LŃ%ŠÍCO÷Nô%đ.Yú):ÇâKH{v¶„ˇv0KëVRĚqE^xU™ă¬:^U¨X“,ÓZu˙Z± čIÁ8LőńP@şk¬‹6ĂîµbˇŚţhÝƤâYV‹Tf‚ă)P7ă–e™„iš†±*ěąT^Ći¨ Î8Ó´~ăT´ŐŽ*[dˇ€Ň6?`Üż·Ż‡ńÍţd knٸ[8[±RÎŹĎÄoÇjGŹNÂş™â 2W§™Ç2Ć f€ÖZë˛ăqi‚i Ĺ{¬‰ŤÇç±ţƧŃÝě`7rcĐąyřĺsF# üzô݆Îow˛Ź˝+Ëá¨ď!¬í^]}1Ľ}=5Ő†UdbÚEe’N[hÎÓ@şżjI}EwŻZ®>Šžťjc#…¬,äJٰnŰÂ:G™©Sf»08qX׺NCŮńŹAţEă=Ö\ÎóGčuś’9ŤÓ¦qCŤ3|”Meá]Ź$ +řł}¶»ĹH7\[[eúMŽ$S)ި]÷Ǥ âĺ<Źť;VŽěłĐ)X7¬Ľ\"SXfŇÓŠ´±®«ä5ʨqGŚ›űQŻ\ěĚ$~„^źĐ#R([Ę„ßlWk|DśŰů…úŰřc,^ôřu)Ąâ5éyú㆕CńIĘ)Xű7FLÓ4١éTćDĽ,pÄ!%ŐeĘó¸Ł?’ˇĘkDň1j}Ęí1{;×HőÚ 3`ĚnWQňÓćS‘v͡ĂŔ¦ÂBOň Ł‚ŕaď}y»ysžQ±aeŠ>‘ś‚µW Ó°bÄ0Ç +…"C θ”Z"ó´gT J¨ő5Ů—üz}°(Á¶@Ţ.äŐŕ٦-OŚ ¦÷0@Á´ÓÓĂ66Uďq weŰßĹńé˘3B3vžŰŁ3Vő,çůéŻcĺP}˛ ¤ŹcݢłŇ”CÎ5ë\&`›§v^—ăP%KŢ5g‰ů¨WFťŇîzž¬×§¬ˇ€©–öĹ(ÄŘ®´«ÚJ˙łŢű4iK“}źżÂŚßůź0.’q±ăńŐG>ϰؠZąd‡ÚĎ8Ç´ČVř‡2:­KĘSFÖŞă´Č®9ËŘ#ˇ˘˘«RO×ęÓE·?˛)ɱ–÷9śßM1»v۱ھ(ćŹcÝ< ,yĄ´„,¨QT \oMĂş&ÉSÜy_űŻ+¸fHüz}úłŽh÷=¶cđ`˙AŐtxňŻ-˘ŮK>îD°°W©gç‰ě»cµ[ \Ň)X7OŚ> stream xÚĹYmoŰ6ţî_!¬_$`fů"RR1 íš8hš¶[b ÚÂPdÚÖ"KťLuMýŽ"ĄZŽćŘ…kMťîž;Ţ=<ŇŘ™;Řąü6<ľ˘HćŚgN€Q(„D ⌧Î{7ô˝ŹăK‡Á+ć ř®žĄ™ô†4Ýł"©–2W±J‹\‹ÎÇ$±CZŤaBę;Érđţ#v¦đîŇŤQčü[K.ź3Ä}ăĚąü1ŔeűD”ëˇ~4ŘYvá#ó…G}·R‹˘ôqW5ĽM˝OG,ZSC)C"ěsŁĺLz »ź=Ę]™źdą2®ÇĄŤÁł:Dľ"(âö«‘çsěb7Γ"µß\Wö›ˇcuç4Ł×ćD€ ŤH`D¤‰ü¬4ęPYÉçY|[¦hVvŰphhż7ŕÄ6pcŹPl§±vú~_°zV• đ~7ĽVE'—Ĺ"Ď=Â@—Ťżę™~Ů;˘>bŚ6 ˙Žż‚Žç2_É´Ľ.cµ”IühTŤŽĘמŹ]“,in@˝,ެXŢîŤ0D„ů Â; úPbT=ź/ă4_Ëířچľ7±Z¤˛2`F‡ę8šĚ.ç{gf1Ú8ÎâĎZÉŽ‹l>íŔ{—ĄźSYWń\çˇIĆŐjlqÁlY(¸ ?,’É[@pÝýnňöŔ8ŠSďl°Gw˛_*&)îý0‚ŤÎ&29EMlgúSeI/ŞýÁ&WŇWîÍŃúö Ž˙‚#.H"!l2\H =„ö¦óM3¨ďf+űÚ&ľüŚGĎ8ł‡[-[Ř+żZqš4wŃ!vő…ÖÚ»X5˘:pŠ«ĂPOÔ~ßü%ˇŻ`żÜĎë[ ™oę?1‚Ý5 endstream endobj 4909 0 obj << /Length 1657 /Filter /FlateDecode >> stream xÚŐYmŹ›Fţî_Ô/ĐÖ›}áőŞVi›žĄKٍ9+_’ČÚĂk›Ăă$—Ş˙˝ł/`Ŕp¶“KÜ~±Ů…ť}ć™afvŔÖŇÂÖdôËtôč2p­EľĎ¬é 0 }ß "Š|bMçÖ+;@„8c„öd:y>˝ś]—Ĺ6.7hĄg/“Tč«bál‹Bd1L1‚Cß=çÍôjôŰtô×Ŕ®Ř"ő.aBęZńzôę ¶ćpďĘÂEˇő^=ą¶\Ź!ĎepťZף?FŘ ÇM XÔĐ ď1+đ • Ż)Ő(ŞeÖ«±çůö7sńcš sSb+–ä őÔ+É’rö[V&ĄCě»—N€mžnEG˘ý{řťC=›pIÚ·±5&1ę= "µ™ČĘ©C(¶ďn»Čqü‡ô{’˝BóŐůц*ś1ńě„ß8€ <•Ř˙q€ç¶áuÉËODń0Üđ4Íă٦ÔÄ@¨és ÷=lŻCO)Í O›ašlĘŮJđů×ÁŞxÓ€ÝŔ oa~Ť×Śg_‹Y5ŕiÂ7łŻŁĘń>9jÉĽľĽĺ˙Ëz(ő®Ú vÎľ´+km†}ą…~«š‰ó† )ĄŽ_Ü‹BťűCŔęw¨6łµ5ŕ!KäßD&zfŚ/ňeža`Ť™‹¨jäSÇ ĄŽs±Ř´ö¬ţ;ɶ’AA{7Ľ_űRËŐx÷ßî^2űşĹ}Óí5ł˛W“cŤö°O@{¤˙%@ţ NΓL'ň»żî,×0ND}°Ş|¨!wťĹIT™ĂŘ÷Öť…÷áŠtykÉŮ@Źő,nŃ['śHôý2ÎÂüáňç4m΢D^. €Ióv`|tI\+‚ÔMUţ' ׍ŕ–F€1ÚÉůrV-«·ę*z ö  pÔ.>dŁPcl?¬S1ŐiŁM\$·e’gťZĐ€UęÂń?ŇMł˘"mŁi\&:2™aą2Ý‹ešßđtwś0÷y6׋mKf>`s«Ěő˙ŠK«kńé€E_$ëŰT¬!.r) b­­E1­ÜKÇ•­‡{ÓĄe€Xî2 ?DŘ5އ9ÁŘ > «ÖĘĎ…#OąĘ5’O„ńD8¬".ÍoEQ‘_ú.¤`őÖyfŐĄăzv![N<‹óĬy±5kĆŚî:˝µŞ«§ňU ¬ń.řŕš©|zQhq¨ŘŠÇ)ż)´(îs»±Y8Ýô4x (}w*XŮ<#ŢزwÇá5"ZxŻňU–ÉŞt%]™”3"ůp2Ł.bŚV ˙äAĆc‘mDR܌׼\‹dUËĐ(M{ŞĽ^9K’9¦®Ű¦ůúćd„!"Ě­ľ ĹZÔăĺbŚÖ÷ăÓZ,>ăĺ*[Ó•'üFH(–'{fD5Ź ţN 9ŇČzi Ţó4y—@Đе_J?ÔÎ¸ŮśŽŤ"ĎŻ3AĘ—…”rČĘ2Cä˘(‚čŕúRÖH Ô$†g<.¤SćUfPGęDĄ=“ÇŰ:ľž^eîh&#Z§ŁÝŃ]íŃnű@n‘rą—ä7Č4D4 *’T$ĘľŹşŞ äףfHŽë.č.ޤ…ś¸ÂŰeňN{˘Óâ+3ÄĽvŞ|)aČ3ĆEo‡xo2ęČĘ`7Rĺt E +"1Ô&AĚónaăźÖP¤ěd1(RhÍ^v ë"Ó˘C``N˨›‹m:°$ J[™ËV;ńcç8÷ŔgXĚ~Rčř'ik˝ŰŹúŻr) ź…Úi![ĂŻ˛@{JŐ~vĽâíwÍ ňCbĽLĆߪLę"şVcZ‚X+rvű6,ľ37<»I>Š|ŃÇŢçâÝyďýĐ˝t ME¦Úbꥑbľ#ňwČd„Ŕ+îßo˛˙ŤâŰ;ąŃžőŚłěôm[‰<~_Ňă,*<Ľ·H6ó$µý„˙\ĄßÉ{e×V?ä)`ŤŕÁ\Em[ůĘĂĂ8‹~đCîpІ‡ŢŻ’´÷ŢË }o=pzʧŰęc3$öŔw›!}ůľ©ď&"/«UnjĽgŐ…ŞJ·f@Í&®ľ"ř‹.> stream xÚÍ[as$·qýÎ_1í™EwhŔuĺ’lĺW%•îěJ˘R]33cé"y*)ż>ŻÁcELşd(W|mVĂu)ű32š»­0J(Ă‚Y„ŮS&ŚÔ>^ŘŐ®rŘß„€ąwý3óő3´]ŻN)%Â}ř4eě:ź§ĚbŠy˛ëÔM9dł•Â…Tí>”§ś˝!Uř#›•d8ś¸ţ=ĽČ™Sx›?r1čQř‘3;cqYűĎ2ü‘şËa^‰pW6$ }4(É&·!´Á)M…Y‚˛ď$hcę7š Ťá„g}ĘKúµĐĆAűµĐĆęíZ˛>°#"ˇO<ž„»Of‹Ń~-´I`Ăă!|r˙ÔnmA‚'w ĐÓ™7ŕ*ň"ÝđĐć=am>ŢM[ŕ!\0„6űÚÚIżÚŰ„e Čŕ•Ď^˝:Ű˝ýáŻmÚ}~yyu{¶{ó±Ţö÷˙z~ů—łÝď®®×výŤC’pßîţe÷‡Ý£ţćl÷u[n§opłłs ^=´ĂĽłĂ݉¤9.ű|zőjÚ˝™v_^˝˝šv_Lżşą˝ţ¸Üţ©\ź—zŃ~=ýö·gřűˡd?«Zţ«ÍiŕŮb@8ĚňPŢ__}üë»w¦çÝűBŐ¶*şŞmNŠOms9KqšŇń R™ Ű+;†őÂş\ÝnŔşŔßJ ¸釷TŁ5‡VĄÄ@´+»0›KÝcµ™Ťô»Öµ¬ˇ.«[ęZ]ö+•´q8V;2’ßŔęĹßaX)ć‰47G¤6Ć+# `eCŕüC"‡¬…„<"ÉbĆ:ö"#g`‘sÖ}ä $Ŕ")ŹR¤¬ş32˛/XEQµ?rî±î#çp»>ä ¬#r^"VĘiÔ„¬nV¬Ě$”(¬iĆjţ ťfBás:1ĚQüË ť=Vfť3jĽ°îC•i°RJĎ-ÔDikńłŇ(¬Ç7+ň¶řřf•0Ł|}™fÝcEý8[~Ö˝YŐń–la‹%GW‚n>h(®&čGfýˇšŔUÜôő´űŹ˙üŻ «HŠVĆâ6O—/.ľýäĹ»`Ţ×]üúęň¶}Ťbš)ďö”)ŚwŕT¬¨H÷ďP_rFąw÷6[®K´‡‚bî.…ŽÝW×WË›‹M»Żľx=í޶ďo§o< _•÷íl÷{@i—·7Ć7şlłőÍŐÇëĄÝÜqţŮżµőĽüîęű©O*ˇ™±‚.ÍÉ–úŻĘ5„€Ľń^FźáčďŇ`uąđČř1űŹŻx|Ĺ÷_Ĺ1Đ1Hc÷Je(•ˇT†d’eH–!Y†d’eHöC˛’ýě‡d?$ű!ŮßIţöÁ8xČńA<&ú‘ă*!ĽfÔˇy2°˘zžť-űHę´űüŐ«.÷ůr{~uą{łűă×°żúPÎ/nŻ~ł]—ËĺęüfľţŘ>»(őú|Ţ®ý‰ =\”\$ńËő˛*Z7“ ?ŢíuůsůáCDÚ5BŻł1SCčŔ¶‘çžź đżË˙´óď?k—7íüşţÓ‡rűˇ-ĺÚśsś­#“óś/ęâ ‚úd„ißť_ÎËŐÇ‹«őł÷ö)Ţ}ř%ř`A°ěiÍ2? 1"˝±ú—ďÚőűă8ź ™˘")#D„čp˘VÍO7ÜEy]nnÚ&÷é«âÄlŹhöťÇc®=Ç9çüHIőć¶Ü6Ó}Äu`Aýě‚53P›Z'Ś0Ďě˙ă‘ڤaM)ÍłóÖADŞóŹYĹV°r~Ů®OcAĄ«ÖńA„RRknÎ^ĺ@'ű´LŽ뎨ǺŔŹ€ůçËŰóŰţT.>žÂ6Á&'ĎÖ(Ř(“>ç;Ô 'š(é3ődo ŻłúÇŘ˝i8IJł(0i´ťÇ’˙–ŕ ¤”R¤<‹%GÂË! ŹÓĹ–5ëz ŽÁjgë0S|VyŹ%…9ôŢe@|űÎľŮ?ć»Ć Ŕ#.®ŽŘp”¨ĆhâÜ;ÓX˙­?΂µáaĂ|ůöËűúÝ»7ÔÍ»ôçweő‹ŞŰRáĽ%^Ő…MV±Ş•ëJ'L<[?ë†`F™e–OôLâk+)oKŐµąRt‹Ş5’®ő€±ă· %•ŢqGvů`IJpŮrÓě× 2îÉ-är[ëúëB9>bC¬ŃGlS"ëěä 6n­Ć­:nĹĄVąř•¤”0¦Ôô± Ą€Ĺ›¬Z ‡Ű8çÖ„ťo«[bN·0¸EA#—őc÷Ř qG íń ~ Źđ.•(±ÚÎ7B×–Zk>…Ť}÷Ř6Ďd † spépÄRóât•–7ň•Px[]Ś.-99bé^`{Íłme’w9±ć­fWQ˘¦ O޲[ŚĽ‡ŠÉ«nĺ fóřoNxä‚e4nc‡µ>¤ĆmˇBŢĹŔRR[CX¨J«§°1VR[XQ5[ë„HgÄĎÁ€+<¶Äő\®+WvějÚŕ"-E­~9>ŕÜ} ď)Xo…hܼ؇¬ś¤HPźVyIÖĎcÝjYhqÇśş ô”ËN™¬ŁpxÔąTsskYśÓ HŮł %'HÓk:>ŢŘ=Ŕ čt‹ńAĆŰŞĄe^Şs”ËהҺ®Š¬¶„ö“>i 'ôI˙öâ}ź4"­`v1â“ÁĹŽqŔ4[łîř{Ł%á@k0řóaMăżíýţ¤…l'txßýIG™Ş^źč(˙ܲu`ţŮĽď—öýčÇúŃŹőŁÇ@GcVGcVGcVGcVGcVGcVGËW‡ *tHNCr’Óś†ä4$§!9 ÉiHNCr’óś‡ä<$ç!9ÉyHÎCr’óś÷’íäĘ~@cŔc cŕÇ ŚÁcmęźťŠ4$Ķö’Ĺ:ęŠňkâÁɉ6TU« í3xň0ş¬V ŹĄęřÉS}m?ÄJđďAĐ`y=<}.ë–ő”‘2f%nľ¬‹lÍźqß0Űá €;đłstx‘µřÍŐRÖ¸ˇV ~M`h%-.ó–«;!S¦ŮŽlĺ…ťqd§3'dĚÖKjŇh]ÜşňćqŰę –TE‘ŐŹĆ)™ôý ‡›8o…B¨­«Ó­m”†‹ąĆ j€l ’îÚ…úţ‡ăpx•U¸jJKPÇľş‚bDŢ\Ěě!ś1ĘćxÇ$‘őmáđ°CȢ @\–†ĺĹlüĐÄ…őxmŰ.ěć©ď:n_MĽnšĽ´Ä;°Ĺ”-˲Ғ‘âN€7ä9ŘAOŘŮNĐFÎÎеZ6#¦š%!ő •˘şĹTל"ꀎ[aȬ2Ű1ŕş«|8AwşP¤mŮ{eVe­  «ńôt‚ÎX´ă<ÖŁ‡k@5n Xűć`Ä.R‡ňŰ#آc–TÄ‚Đŕć¶c:E@†MČ)§ Ł®Mł&yćť((¦|†=ĎŠzí10ćň±W7ü)H´ş ˘ĂLoŮÖK8ůb¸ŁZ–łP]ŤŕZé÷Π8šâ=kʺȏy¸@˘ośWü(fYR+‹_ŐůyÓěO`ş @žz36ű€;€ …ź·%ćě Ŕ/ŚŕRŹz7s‹\BÜśGâŮ@—ŰšÁ´ÂĆ!Őx‚?YŢ: ©bNNźyĘí዆=ćłĎď§Áópo&¤{0ěÁל> ćá‚,‡¸ ăům…H ťŐE—śÇíϡ ¶-•Ŕßpů™7­AËß#a0I;ęű”ë– Köš—ŠňĄRŢŞ´ĄŐ-€?jٶ,ĽŢRžmÚÄ> stream xÚÍYŰnă6}÷W(PXmĚĺEĽ(EóĐv$Ř.ĐŤ‘—t!h-9jË©­d›ý÷IIÉ—u˛é-’˘f†3Ă3‡ön<ěť ~ŢśĘŔS(‚yă©'1RBx2¤Hośx×C%üŹă ŹÁ-xÎŚžfłÔQ©†ż,&÷ó4/â"[äzęŕíxđç€ŔLě‘Z˘RHŃŔ›Ě×±—Ŕ˝ $†Ęűlfν€3Äí™w9řm€K+1˘\7őĄ˛™uŘ,•Ń‚(˘ţ`ڇß$éďÓ\›LŐ0žÍ“čL†a޵ŃoN Á ˇĐC’ŃjąŃ]±ŚŽü‘PÁ0zđ)÷i=2YäEÝYiąc_ŕáă]YáŽÁ„…s^Éń[µŕVLF4‘TaÉíSWZ6âŘyví4ĄŔeZÉRű®î}Đň až@ˇdJ+ŔZ ™ś,ŢőH€˙)ť4žŁB"Ö)‘W~lĘ›!,<ôFĆÎôŤŘíĄŠÂŔ挶Ř4>hýC¨¨pÍ #±fjĹ~gň4@Dqo=jĽk”ĚMŘ›Şj÷¬}O¬˛żÓĹ´ĺ„/1Ń*׿zžl9t$(’‚7}•·˘Ű!Áő·BL8ŢÎň¬°ąŢ·$/Se}IÚÎ ĽĆ°~Ä„ĎYYkDr$˛%/ ™CΚ–:ÂG':»ť4‰ĚPÔĄłJł}s±ĄSodWĄŮÚ/¨Ń˘ …«¶>Dw*­î2~˙ÚŘ0éó­÷ŽdÁk¨r0ą…oUBZQmKŮ&@^ËűIŃŹČ ˛±Z28P`‰ą…ń©űłlUD·iśt Ż¦»/Q!tř˙|Ę- Ä™łÇ´ßÚČkĽ×Ćnx~LŐĘ÷„IŠÁĄ»ö} ˛cSžŤĎ˘wç—ăčüýů¸ËĚoő8otR,ţHóMđG•fJŰ6g9É Íč$Kö(Ś7ĹMdRč×ň±Ëlý«7ś~qwËôˇ-äČÚˇŁT5«őkc×™đ˝˝ěĂ'eęđBW{#N’¨łŮŽq,×帩3®‚)¦[â* NŰ0kČ5<+ě†ě›`÷Ę ąĚâOľÎú1«%ëdÄYR7ďâeÚ Ă:q:s+ć°¬5˘mgĹŕiňҰLĂŻEŠZ°\™ČÍžO%!ZdGN÷rźťű“dŰP ‡Ö<K®lě%Ę\!®ČNrš Ő™ŕmuvł‚Äď'%00ea#˙&żÝ!†,éJäŠuÂ>~AŞkˇÁĺą%\Ľ Öâ ·.¤ŐŰ4ľÄÁĄAĺ_‹É»%…w—”źá¸gyşŚŢźżłCŘÝśŽ>ł /…‹-ÂÇşdé(˘Dv+y›Yńh‹˘Ú!*TŹŠČůgYCŘ­`şLÓmÇ) ç\—[·P×\¨«PĂé^˛ÇŠ#·×ŞÔťUš@s¶qÓYLoVë#ř4Dt‡—O€ Gv> ÉöŠůÝŽe$`ĚľüD$Ô˛ “@OË(Ť'·ö\­âi'ŐŮ3Áü®l~ÝČťČPíöńÁ_S¨×=.$éěŔ_±ĺ…W5©a‚ަµ–<ž§} Ę—ťĺW/D{ÄÇł,^őÉ×Tš›ĺ—sşĺ÷ śÔ7ďł‘ćý„<©mmIf;nôtÇ>[‘,ot}Ůŕ@´é>ß5ŞŻ.PSĄě™ R#d‰öŤD u..ŇÄ~eYäöúkŐ¸Đg©ű˛CË &m|ĚĂcÎloŞç.–¶cgŰű —ń$mÜ‹‹jŞvÂŮřĚîV=đI z¬ľűř ˙zĽ1/ŢŇĽí¨˙…ü1$ endstream endobj 4981 0 obj << /Length 1014 /Filter /FlateDecode >> stream xÚíYßoŰ6~÷_A`@!==ţEečĂÖ537õ/iah˛’ IäNVŇE˙÷%Ú‘5ŮQb;ó˛˝DMŢ}÷ńřń9'@z?‡˝—űľ$šJ ž¨VŠř§Š‘pLNź2ćöąŻťđŕ·ptRä×q1ĄźŞŢýô2©ZÇÉ™ËŔIň$‹±K0ĐĘŃľű1<ě˝ {özÂć^´¦šK_őN?ăo‡¨4ůRŽĽ"ŇÔ“Ű—ä¤÷{,r Ü3MóĹ!ZâPŚB=Ę)·ĎŔůaś|ŕ™Aϵ“fi1z=ÉŠ(Í’üx`€żÜg j†÷¨ä>‚(m޸ś(ŻF. `’r>ͱ’‡Y ŢűLbŕŘŐç˛D^Îzď*´~yťě-Ě˝#Ak¤ŔĂ—Üp1;6öDŃŔÚ8€Ň2W˛˛<ž,X$§}…Ś|µËÚDhř.lFJÝxźi‰ä’ľŹ]ó€á&242šEWČ1Óčá•[::z7ţŘâĚÚYĂWt™FStĆźÂY\„·ź“ĘË+K¨ÉołeăxNí<±ĚŚŃŃ`ŘŕßiEč4ŕŢ=í %+?TčjłĹ ®Ňe±«„ę¤ăf^x@pKk™ŰŚU ĘL×b­e|Ëě v~ŤÔ«ŃppŽG° Ëpô˘NT1ąH2Óę ¸eq¸ľněńIřÓë_»AžQ‘Śđo|Ń€˙7¬őe—\‡ Îŕ7›=Ëu}ůdN€¬p§z rÝPĘľ¦Bˇ[)©ÇýE­f]´:tĄvp[-Ől‰–<˝yÍö&x»§Ů&`Ž€V/7ždîí.:j ­ăÍʶzoëj"—›ü2EäăeĆÎoĘĚc…ńQË!Ő¸»¤,|…˛ĽÉŠ´¸}odĹě䥺"€ú\mˇô¨BĎ·´č‰jÁ')<ĎóÉőçÁxAĂ`®Řjş«Ý&ăvE˝6/^ťęë‚Ř)ń«Äë&ÉŠ{K"î—ҲyéâTłç,]ö{čß+]-zc­˛Ý/YΕ«1VC¶T±IŢAńĘŤłfµ(jöÂŁőÎÎ˙Żëť^Ô;ąBď†ivqżÜqlłÍËť@’@o]îÄł’;ö—j»/wÓ<®2ľŁÇÉô˙#Ă)µgÍCůTř|Ť˙{Vóźé‰ah»>ň°„ĺą<š]w)Ę}SAÎŻ‰Ě÷öL˝ĚÓ¨HĆŐťÖ$«žogŤCsv\Űn`N(Ób°ç{ž¨ŢÎĚŘInoĎŚá4®^BW“GqRű-*fC ¸% eÇĆĐmŐţeâ pţş=7g˘“dMžľ¤jS endstream endobj 5003 0 obj << /Length 1041 /Filter /FlateDecode >> stream xÚíXmoŰ6ţî_A`Ŕ 0{|§2ěC—%37Űb-†j«™PGÎT']0ěżď¨Grd[®í-(öI$uĽ{îx÷đ$ 7ČYç» óęÔHb©Żµ Á{b€Z­‰ń9ŐŚríYŰ}śŻ„Ô¸/[=Ť§Q·ÇŤőľźŤďoŁdÎăYâD;'AçŹCI lˇŃZją$ăŰÎő[ |wNPŁoɧLň–H%¨’ÇS2ěüÜ%P®ÜĐ=J̢łfJІ2F9eŞŰcŕ}5‰~ŕ‰ĂĚ­'ń|4DȸŞŔ~uĘT”2đ)ř¬t÷ˇËÁ Ó\˛fťIęKSʡ:–Ĺ żßă’‚°¤‡O+UľëŞ«Qűô>:Şí} €µčľÂIęâ°]:ýŚ ˘©oP)€L3óu®y2«i$×=ŤŃř«đXV6r@ĹOŽ$ePŞĘ{̢nFz—ĂC:żésnŃÄ·…]—t6¸\ 8IćńüńĘm]ôK ˝o2Ě îËMsˇÇłdŽ 7řKa•ń­/…˙śľĚúşr̦qř®kĽéjc>ĺâ&^Ě—ŮAÝ…iä:ýB”-đ]e2]_ŢĎZĽ,8{hAů&ŠÜŇŇ!Úq~Ô† ł?űďƧľ Őć¦^Ľ(‚´í rc§'Žůţ?5PßµĹ_ QćŤ^QBë;Żť9ĄhóZu•;s_¨­żwŔ6$Ë™ zĂ\äPÄ'ůžnŹä÷ü<¶âľgGő?őaÁ7Sß N>”T—Y¶ ő×l ˛ŕ¦Â‡fo^˙:úéňÇă“á0_Đň3”łfĺ٧Čn°ůÍű Śh¶°tßliŁ~ş\¶˛±ť?ĺjÓŹaeÜŇż…ËźÖšrŁeĆhZQĄJR­‹Űč,BZÄŔOňźÔł$ľ)çî–˝/&Ľx“ůÁ‘ňŹ”Čgďťě,Í'™âxśO‚®/ ÇQĺ]8/E]˝!ad—-ĽsŠËßć]ŢźŹ7.Ţ^”4Ô$†ë®j• endstream endobj 4934 0 obj << /Type /ObjStm /N 100 /First 1000 /Length 2512 /Filter /FlateDecode >> stream xÚÍ[ŰŽ·}߯čÇ䥧ŞH‹€`ŔČ ŕ †W0’†ĐWG°  V+Ŕůűśâ g×ÖeZÉ(;űŇŐěęâa±X·éŤ…©Ł.ć.¦Ž-Ć®_­ăütśqcI:‘::QAą xKŠ]Ś.%¤.sąˇť%ő‘Ü•âoČŕ\™ DGw8qĄ¸cµč”ř\•Â<$Ĺ©Ř ź%¨bDÉÇ2đÄJY'&Ž(–NJ}#@jvŠ»ęš°”¨"×.hö;•ŮĄŢČJWl Ęę‚w-9źFPc–¬ u ¦N9zKČ1łe§ěc Ő2×1,•µŽá©PÁ•H]Żhđą¨+äa:G ౢ÷7R¬+ĘQXŐ-HĄKÂţčS° ]AÂźŹI—˛¸Ć5tÉŠĎ @J·hęT° ´ÓH>/h˛*Ď:ÍuSµtZÄß…ę2cŽĚ]–쇨cĄB—µî/‘sµ )Ő  㺎ś; Ő¶ Ŕ  _Ąt†‰]Ë®°TĽ‘Ý2 ,¶—DZ3•a OÍü]l#80V@ŐµF!®cnâUkŘŘEŕTâ«D0‹"ęşÂ.@ë•JÖWQAŠQDľ™)ű˝ÁöQ¨†çÇ’oy)°nŘB%aŢĐĐŕłÓ>AŠşľaẔŞ bÖş—%űé1Sü •ŠßŤEç °1›Ş$„IĚu©ŕ•$rőäÉŐî›îyôę~čvűű?°‡}U)qď xýöŐ«ź®ľřâýĚ™*3ŕô ŢÄ#÷q«pęşŘÄ ›č±…źůpů ďÓ›×wÝ“'Ýîi®~(ďßz ˝u»­ă™î`•âgĺp—DěxKđNq‹IvßßŢL×Ë]÷ĽŰ}˙ÍÓn÷lůő®;Î˙ěß˙Zđ`řyąÚ} ,Ëë»7~Đ“żµűaysóövZŢěťDűË2żľşůµ{îŢ=•Ô‹ź6l‡•ź0ßp !]Ěp9•˙Ëׯo ôůŢ…;¬ęÂDn„5˘HŤŕFH#B#b#šäŘ$Ç&96ɱINMrj’Ó^ňďÔR‘_í®ßŽwőţ»—ŻąÚ}us;/·uńôÓîO»?ďľ~ÎőĆő5AÓ8!˝Ô çžŕ8Ą>aöL†«€ďËşç×ÝîŰ›g7,ćoînßNw×wĂÝňGß·łQ+G  Ő…ţż”Ř»K†cďţÜąő6ć¸Äň{q|űěŰż>{úâĹuĹóć…ýóųٔ2Ii@ :Ž% ÁJé|€Ý}!8Yě#Ž7ŕ…Ńi }ŕKÄBî‘%EBx„zơH)÷Ȭ>„ř»—oî*Räc6Ń”LcxŠ<óD!ŚóŚĚăÜšM‘úŕéX”ŢcŽG/é’pr^CDšzr¤Ř{ˇ=ň¤v)iYf3žÖi÷¨‡QĆ™G‘)ę9O9t—ÚR$Đ}’ôQ¤űSţóÝĎ/^ĽrÄĂh2 Ń Q™Âd+ň@Ő9g™¶ńěľ ‰ź-9úGË=©×!‡‰=ź"ϬxŤÓ 4đsIótvKeícÎ-#faą—„łYj$h–‘•e Fbǧ•>˛ý?·/‡ńŐYM™–—{(bôQ°ě,E‚RŽv)ő\3•m>Ľ¬â÷uáy¦Ľ.+ë´Hl™d‰Ăąí- Ąô\»yĆPŕÁůńl2{ůXă P÷¨č8Io)ť< ÓB+*Â9Âqr˛Ä OŁ*2 svnĹrĐ^˝Ú‡x>_Ę˝˛XO”Žöę°áFN]ň B2É0j@$eašÇufťm3®)Űç`FJ>3 >Š}ćOi ü®đ°Ú·đ Qđ_·ŚßmäňI­€báťV@jĺyjĺyjĺą¶ň\[y®­đ×Vřk+üµţÚ m’µIÖ&97ÉąIÎMrn’s“ś›äÜ$ç&9ŰYŰČ߀¨AP·’%l¸ŹŻ˛9ňŁJEy±VÖiĚóBČAWÍ(9łržĎÂ猜ť[HUCŞ%۵,ąÄfłˇ‰ UÓ¸®†ŰđÜŹă}ÄÖLF4;6fĽB»¬ľĚÁZ˝­ÁéŢ\ĆIă%î˙ữ#b¤‹ {8řń3A±őńÁ×@©§rI8[Ç;Šöţýúˇă.©\˘Ëj€á«,Ű}'I—Âç”T“-˛L '?^󫦶÷U7é`—Řü*˝"×:6ż˛őJrÁÍ/o‰˙‹ÂńJýÉZ\ŕ)sd™ó=â ×[ôâÇk~áŚĺt˙ˇ¨¨ôŞrîR·ţoĆÖR÷·Ě*u˙u#§ endstream endobj 5013 0 obj << /Length 927 /Filter /FlateDecode >> stream xÚ­WKoÓ@ľçW¬ŕbKdłďµ9RÚJHĐZ\(ŞŚă4†Ä.±ôß3űpëµRJN;ž]Ď|óÜY‚™D·ĺ|B ë›l2;Ó%8UŠŁl4Á‰RH§ +О9úiLYčLś0Šőäó‚ć°w€yš _öä „¶BW“ŹXĺ¬á¬eކć(ŠÉŔŠy<Ą„(‹EÝß•s>e,‰Ţ6Ĺv]Ö]ŢUMm±öÎ •YMŹ~#hĘ$`Cz-ÝPCŰm¶EgDŹ|ź(Ěí=uŇŞ.7ϛ.@5;ăé@ĆÔ qhřHTë~}Ć®ŔÉ,0„ýC˛Xăë‘A={dŘ_Q†f†NçG`=­»Ş»˙dĺ«­G:bŽqÚŢÜúdľü·ô2µW4”ŰŻ\9ÎG­űę–ľĘę|í©f1ÚZlëÂdn;k!…Ë.ŽqâO¨ź0Řë€ >ý3Śvö>‡Š 2ú3Óh¶PaỪţî~0Ôá‰ËDęHDˇË‡ś}<.‚łË¶ÍoO#}„IM·¸)šUłq'©@)śd¶Żós©ű“ׄđâ4&pz,mŻhQN±LÄÎp%GŘveŠÓýaÉtµg}·NŹ&[Ŕ:Ô,¦Ě 88Ý(Ůˬd'io–kđ›*˙jF•·lĚÝ+}Ľ‚]ŮCé„ă©Ýg‽"sAą†kä1#Żťť4ŰşűKďĄ §”J(U “Öp;M2á¦IŞÜ4ɦIć¦I=&ź‚n†ŻS!ťŽ;xb‡˝+}ćnfÁúqµ[杣ćĄá×e^Łăc뼮î¶+WĽö‚5m ŢÁľKQ>hSŚj¬ö˛Ş‹Őv˙*°˙…q@˝y“·U—/žôćă< %ÁÂd¦×v4”ětUX'Ú†i_:׌ÉŃř1•R ňŇŘąĚwµa ¤äă6üüH¤±€ě&ŹáÚÝšýşë± 5Ľöy*ôOh>Z‰ÁŰ@H¬`±PÎKG!¸s?]ůřżď‰ S[˙áEĐË„Ł(y-Ó×’ű2gű´‚«Â}dqB˘M^”˝ĽëŹ^I 3`ˇŽa«îŢŃoóţú}kjćˇŔ_ŕ§?4c$ endstream endobj 5054 0 obj << /Length 1316 /Filter /FlateDecode >> stream xÚ˝XQsÚ8~çWxÚ{ćP%Y’íľ5 d.séäO^’ăŘ p†Ń6ss˙ýV–ěŘĤO[ú´»ßî·’°3t°sŢ9‰;źúsB á;ńŁ` áE‚8qćÜąöľĹŽź|&`^ń¶?žHŻKĐ=›Ą«©ĚU˘Ćł\íôâÎ?#±C*Ä0D!eN:íÜ}ĂNß.@ŚBçG1rę0î#Î|xž87ť?;ŘZ‰ĺúQ˙”6űÁ(ŕ‘¨-ÂĄŐýUžj–…E”ýýÔ÷Łš×D  ś.Ż#3˙žRľ6U{łZ·®Ď;Î]—sáΓżä ťMf‹Ú>CGěĘcŘŐł†Ň#®2“SíŔ{̱}˙ĘŞaëşvňÜ| ˛!kę±pžFľÓ% A0‹ śˇ»ß=Ę]ąđş`¶ZÖósź›ăCń8ÎŐ¬1čęËEŻ>Šc“Ě®ÓÚő#„Cřa[VD("^—`ŚÝ3©Č  )¤ˇ\¦‹ńĽJ Tc`,5y§5Ó›ŢÝcLË4WŁD™§Lę÷ą´cm¦­›&ůxľš$JÖ|_z„—η¦w„¦ą>~`̽ՙLâ.×Ýŕ0ĐĘ4«@4c#˛KříĚőđSţŘcˇű4—™|´ Ľ‚ť]¬1bÖ¨HVőR/pGIQ*˝Ě‰„ )±âüřfPSܦ•€m.Ű–¨P‹¨„Qб®ŹQŮě[{ˇ ®<ĘŠň>I–㍌íV0áéÜ €E™§r[ކ‘š˝€^€’fşŞ‘ͱRYěçé|"ź)ŢÍצ}Ř!A‹ čÜ`ť%*1ľQ‹UŞV ążř“ ęoµ~ ^wˇ‚~Ł.›x6kĆ@ß2›Ú-)ÂËŠŕ=–ŐDéΔк Ż•Ző_&éBË×ěh=Őş÷±TÔםë_Ƣ•´4;|@‹[Ş$WÍtO˛JtŰ ćUYU™˙RË×bĐ­Ô$‡G‹ÂíďqkČ»GáűX˝…}Űy­…;§žűŘşcýUý´Öě–š+ć¨×ë<|_Ł·TüvÖÔ’ŃˡÓÁ¦`‘u/nĂ%sť‚«énšh˝S#¸&Ű čßMP!ěJŔC‚"nŰ ôŞBŤ˝Űř¬×śŮę…R‚m)tËŘ#°wF×rŰlŻ/đFŕhăňm ¤ Z퟊?ÔQgÎP‘˙ĽbŘŚ‚wĎŁ8 ! vL× h Ł@ć6TV]jNôĘěz‹#öŔŃť[/523Nô±eň†háÝHţcś˙ý‰6bör5VOĆŹÉęPÔ_ƱŤÔiŃ+Şä?UPż™®×§ý!·px#UQJűł0W«ĺč(8ú8<›ż ęWłÜ4ýZ.÷ŤĺnľJ]¸?*•Ř# <ŕmT·ę°_˛ě0XÜÔÇfŻŽż©Tb/s´ŽXŞ˝<;Ęדë¶~ü_ăeŰ˝"PH÷ąU,ď<áVě‡G\ ;´’}Ţ…ÄÎě©Ůžž/ˇ ÍČĘţˇöfžţĚŁĎÜ·DzlyĂT—îŘ ±»¨ŰvŃr¨=Qx樮žĘ[W­Ž?ź†úŢAď„Öő?Š»@‘ endstream endobj 5163 0 obj << /Length 2015 /Filter /FlateDecode >> stream xÚí[ŰrŰ6}÷W𑚉PÜ/yKŮM¦í¸‘¦3ť$Ła)ZQ,S.Eµu;ý÷.x“(‹A[±ÜöŤE‹Ý=g±X€Ř›zŘ;?y=:ůćLqO##%óF—žÂHKé)C‘$Ţhâ}đ"¬×§JűçŁó‹Ă~đ%ż–ł}ÎśÍćQ~÷>şěěGI‡đ#šIßާѻ“Áčäׂ±G*AZ#Mą^ź|ř„˝ <{çaÄŚö~ĎZ^{\0$8űą7<ůńÇ›J0łˇ„VH ć)I.µřH©ČFQľć}č !ý(¶ă]]ĎěĐ’i1Ć÷Y+«Ö4ťŽo¬Ú1¦Ń|’ö{ŤŁí.măżšúŇPŻO2B䣋Ž/^˝ŚĎŢľ{3úůb0~§[ťú/šÇ ŮŐÉ·‘őÓďčMFÝz±Ťľ9#Ü“Č(¦­_8§ëÉÜ%ăĽü¶n%3múyš{űśJ¤°¨›˛6ęĹę—ĹţĽýŘqŃ›ltĚ0Mz}"üYűÓv_„đ żüôv4Čď*Oő*sVöË,Ăł Ë%ě®ůęĂŕ몊nî*°Mv‚ÁGÚŔ ŔŚŢĚ\KAţ]ĎîpÉ–l…8LŽĹk6üźGéÖŰ Űp˝ WÎăsßĐ: ',ňë4*d¤ź dřËî—[Źr€°_Äi0‹môĘÝ<źoµžiáűK;{,,'•Z?żIa]P ńšÖč^wB° †Ţ$O4†Qzş¸ľI˘ĺrŻ#ë€`ŢÚ‘•v~ÄA9í˘SXŚ<í`ą§0Ü«Éä@”\Č~k5ÄZÍZÄZR¶ lÁýB¤M\ŤK<kÚąČŇ ,]ô±¬mĚI™zđ”űŢć4g~”ěrXMßăŕ0…„ôQ¨NłýHľ"iWŇîĚĽö/@ß ›˘Ç‰–ąÜI |,ŞCĆ@Ž$őÉuŤŔ"OŞ\Ô{ăiŮÔůn_5‹3˛ ,űZch3HHÚX\żE | Wg»‰H¬Óď®ów;Y°¶E&Q/´Qk™„§ť)c4âÜ)E™DË´&Ż= ‡5†i˘ĎýÜBóÇď/Ŕ-Ă~ę)č%y”ü#Łţ l×ô DĄę–>nË«oÁîĘŢó€#ÓŞŚö8ťĄ·ąjóŐulË (Ú …8]SY—ýB$+Ô)ŢG;bq+QY!©ëĚŇJBź …”áőr»ěhľHZŁŢ bhäË|%Aoç Ç _ÎJř6.*çU‰pg/EQ%ąH˘đîËĚOg•;™Ä•;ˇŰ¦ň—ŞÎ™t;!Ň ě„˙tŤű–”kÚV>8ß<hCö§Č´÷ÇH´`®ńßiŠ”‘P'/ĺĺK‡*ŞÝŢPôU čuA|]ţu•°Ź‘­’eąO4Ś~˝Ź°¶YgÂÚ—7«h…ű¤‰°J#Ĺ:gOí„(…$ăŰNĚ#:Űôč0ŹÔŰ6Ił9”9Ü [qú@ô±;—ĎŠ>ĹŇ áżUW˛°ĂľÝ«g'eű3Ç€J!‹ˇŠuL•´S§E)#aEę«Ň s?{ţ‘ĂjĄŤ•ŃŻ %°Q¦c´ląśH ×Ő¬KďĘ­ ĺş·ąä™RÔăăps?¶[ĽÜMý7˘ü`ľZ~>Ă’L8ŐsrXÓî0ěîA‘a`«.ym}ëŘ@¸J’¨:´ć ţ¸vęd™ˇ•tU®’'•9âiô5™Ŕ}†SĘ…M(7GĂ7Ž(e‡źV+áÚÓÂBÂ?­e(ďłó•9ŔQűO= Ô ÍŇeyd'čl±ZÖN´8×ČWGó+€óĆ–ë1 Y"Îô˙IŇýłF‚ň¶»´ÇYĺ¤yÝ$ nďÚţ˛ĄĘÔ9i­Î)Ěş@Čšń§á]ł—š z_’±éKëîĄtbĐ2 ťč3 9ž4î5™ęíÉ„aĺęT`ş˛™Md˙ܶ'”HK¶•ŤUȬ%Os€éQŠšŚPx˛“Iđ¸;“ŕĺM&Yú 'ŤLb ŐµśoŃ·W†Ý˝ĺŞ “ÚvOµSÚcŹluź€i¶‰I1¬˙gŇńeúC{ !-÷Ĺź>3“ )Źb]˝•Ý›Lď±sňC•Z«† ŃcťrčšÂ?QD(UőÍ®FÓ]ß[ eŕđµeů‰¨ÝbĎ?ô)zâ ©,ż–‹`A ëÚ"Ë/k:ß—7ď,WĹ?´¸`Âó;‚_ óR°rw–ßžčĽăYXžĺÔŘOŞ' ˇeS‹ĄóŃyf…쇌AĹ›l7áŹŰ)° Űo>·ěôvČú! endstream endobj 5005 0 obj << /Type /ObjStm /N 100 /First 983 /Length 2763 /Filter /FlateDecode >> stream xÚŐZ[ŹÝ¶~ß_ˇÇöE‡sጹÔi#hk ](×­±¬×Eňďű ÷pá&‹Ťkäĺś5â\9Ť4[Â@…xĐ8hˇ<”vmI[He_á00c%› lĹWtR¬D$¶•÷ü÷¸ĎŻŻn‡gφÓsśRvżiO=OĚqﮕöĚŐ/!—ď/ńdŠw¸ŘöôŐÍőňM˝^§Żľx>ś^Ôn‡{Š/~üľâĆôŞ^ś>őzuűÖc˛řó§ŻëŰëw7K}{÷ŰÚßęúzúěú‡áeŔÂęČkYiĚĺ;Đ›n° t>ďńéŐŐ56}y—Rť­–Qř  óâôÍ»ů¶]˙őőŐ.Nź]߬ő¦ ßťţ|úËéó—Ô.śż’YsB®ه|äˇ1f„•Ĺ€őiÓé7ĂéËë×,ň‡··7ď–Ű?]ÝľľýńŰéÍ»úG×Ő!Ě BŻĄŃU€=$O01=ČĚ—/ľüjúw˝Ě˙şśâ4Í6m˘µäĘ1Ő-Ş-y[JÓ\ô}>›gŃ{žĺz€Kĺ@cI…IzŔ #ÎŻé‘Čn€D¨´á㸄“Ş”[ýPíďŰ7ÓN6…°óŻJ`^˘RL$¬źdł_ťżP¸ţ,Eţřü•{ţ*g€BzjŁÔŽL™;2S¸Ňí@ě@ß™űÎv˙x'Áť„tŇq¬“{ Ó’NK:-é´ě§•NK:-í´´ÓŇNBĺČü^tô¦1y$E^Cß=L‘đ_ŚÍ©™ű˝duÎÎśr@ŕBú§Żn®ß}yą|ďěľš ­<×9Î… ýל ó––¸-Vyˇů8fŃÓŽ­ÍíĚĆ4Ę/jőóë7×7M­i%ĘuÝxg1ç ›Iż±lsXí@µ˘ďóŢ^‘Ľ ľJ9Žä/] Ń#Ţ«ŰW——Mł—u…–ß>S^mYn…^°&ÍĹNžţ‹PłÖíXĆŘĐRgů‚c⚎ţFA""ť•GŹËĺgÓŰ×K3ďJqIĽŃ4‡2M"JŘ ÍBŰú ›źďÄŁżi¤ý˘Ľ—á°Ę2ů)ëb¶Z,˛&ž´N5”šŹdÉ•ŤVňd†$ë/Ü"ŠČđůŁ3ýM`g*üł<ĘÔZŚ‘›’‚J,ÓR'^ÔdáU4?u#’3‹0¬2Ščox‚XĐÇ;'gÎGťůQĆĐ$”ga Ű2!Nn ©VĂ_ťBťWKĺŘPdţž8ÁôčĽümˇ× ojân†×yÉHs’'t2”Čî˛8đH -R…’ŹâwÚĐ~j­Ľ…µ$D3`“q až˘,ór Ç$4¨ęşD ˘R—¨rJëš%™nŔÎ WZW*ÓŚäÖtśD*eôA—("×ę9›)ŃlŰ\qÖZ¤–ŞÂZë"Ľĺ-—5ďt;ćăĄĐŰâĐ7ńň;2LóžDŘcöňč`‰=6ÎKEËF¬5­¨HeÉşŮ)ç'0|Ď'ĂH>¦ó˙|śĎŞ‹˛ŕ서–ą˘ŐÓşÖ8{![S¤ăL˘Î©g´fGK„V.ĹÉĘşŞĚ¦±fć2A0ôĄhäŔ¸Ŕ2ŞÇęłD÷qáh‰”Ś4•ZŁň,%ÍK­•t5Yڶ|ĽÓˇÚL>Ă鉊S$¨FE~‡‘Ĺ1˘“ëˇ ůpyr­y+3Í8O×tfÓâ’ az‚¨@qĚU6ÎíuŤŰTĘâl“˘^ ĹD‹Ä<ĄmžŹ?F))dŁ0fó“˘t•߯@…Gő/Q嚏bé¸8G›˛)MaÎ@›)­B°řŢ‘mgĹ.$źĘáéT—it yqb /DTµlŰQ%vLÜŠ>[{"–P*]g®‘çŮPĺ%Î)H™8îq îîŰ‚â’ř0qÖ<Éşˇ˛¦0“­Ň¶Ąe[8Ëäpq»}ę¬#şęŠŘk‰µ,y˛iŽë˛$c۶*‰xjÇfUËŇĹńnß–' aXgˇ9 jťmŢd‹ ™Ôh‰idŐ. Ę;ZC +«*ś9Ç5ŁZ,Ě™Öć)o?űŕ Ę|pđ>r˙† !Ę…˝Č!·˛ ŮBjŻ*v!Gč±py d8ž)?˛şKŰN%#Ż?8¬~™3Ś˘;dş{˝řń“_˙’±śg Ź‚OĎ öÉ™>j,LöóĎšČ>ţł&ísTísTísTíăÓóçZŃż==Żô9jěsÔŘ稹?•űĐ5wäŇ‘KG.}čZú̶t~J§U:?Ąď\úÎ弳ę|¨Üé€v vŔ::Đ%íCręCr˘ľ3őť©ďL}gę;÷‰:ő‰:ő‰:ő‰:ő‰:ő‰:ő‰:ő‰:ő‰:ő‰:ő‰:ő‰:őA:őA:őA:őA:őů9őů9őů9őů9őů9ő±9ő±9ő±9ő±9ő±9ő±9ißą{uŹ˘îQÔ=Šî=Ş;uG˘îHűαď|÷eÄQ“ů>yHý_j3Pč 9ËâεřűxZŃx‡´Í,˘5!Ěf÷%ö˙Ţłý endstream endobj 5195 0 obj << /Length 1511 /Filter /FlateDecode >> stream xÚĺXŰrŰ6}×Wp¦/äL„ AyĘĹ–§Nݦ‰Ć/NFCKĚD$Ură|}7J”%Kě$ÓĚô‰7`qöěb÷Ř[xŘ»ĽžŹxä%(ŤăĐĎ=ŽQÇO)Љ7žy7~JOăK/„OaĂ<ýv”/E0¤<ńϪ麥Ěd^•jčŕ|<řk@`$öHk1IPB#oZ n>aoß.=°&ŢßzdáE,D, á~é}ü9ŔĺîUŁ&XÁĆqĘl‚S”8xgżšÍ ÂĚ\îĘülඏeĺľ*Ěl˝°¨ß_ Ľýů:ŕŘĎę`Hźg·Ĺ>xn¦<°ęĽx> Ó-N‡”"š†ŢP”„‘÷‘RÖ™´c±/뀂©ÔB®xQNäńÉ ý* ˙Y|Xß:?şČő Źá$XÚęwµî›,óBŔÍ3Ăć´*ioďĚr¬ČřÄ4VtPÂf©K¤Ź‡fT‡´Ą qcäĂŞß1C1#}–›ňŮÓ™p„›^@&ىŤËŠnÎÂ$ČžB^D°5¸Á‘j\ÄĺSé;Ż«â˙“Ŕ°—ßT…*3‡řxR„CVôK ˝äé!%*¤abCďÔˇ¦*lđś/ú!/ÍuŤ#+°žaşÔą˙łG輜í8p P'łŮú´µ=Fy™-óoŠŃŮď^]žŰşŢř™Y»Ď%Đö_łvýëř±f9ŇE«ĘgO”(F!… ôPŘgb;ć]骥@ŹH9ŠQŞďëâië ą¨&"±/gb>űLšď†ę5lÓkŕóˇ~–rFÉ u…ş1e¶é™Śű§¸*7 cŚ'Ş,ĺLőĹ]W†4Ť%‚RĆ6 t“A25Z]Ttyú q–Ć&ĽsoFG6®r¦VíC÷hdbÇc#žpť. ă}7×NĐlPT耄“+ÓžůÍľvsXţ\Ś/&޸LÎŻÇgçŁÉďŻßď6ĎO§ĐęčĐ´ÚÎŔ ÎŚ1öĎ„Ě@T«^AAU‹fZç«VS ëxĹ §´Aí1 ~ť5ů”ŘöŇŘ~g÷ľŮZźíS^¬–bŁßő»jľ3ĺVŮsÝJŠz®Hm›”SŇ Q łcĄŘ©*MĐV˛žJČnĄŮC᮫ŚoRűj9â7»$ 21Ru Šed7FätCk „ťYĆ_4ň×ň®2Hţ%Śł­,]V+Q[ľ˛ÚůB˙áŤŁśV.ÎďťBZ0ćOě‹çîŢŞžAÂmą yš¶Şg^s¨^‹—Ëě¶ÎŃĽ~˛#Řů'€Űnvw™rúˇ/XőCIŘ#°˛§áµ&:x/«»˛TEŮşTB93=3˙Ú›Ńt`[ď?gßŔĆKQ6"Żo‡E& 1ÍŽ˛jltPľŐYŻ“ĹÉĆ7ŐzY·˝&P|"‡đ‹{hjL˝\P‰ŕ©xź±`đŮŠv•É»\¬ QŔ€BĹŁÉězŃ;39p¶<Îł{eäÄ ›©úţXć÷ą¨ Šß˛…ĘC“ŚMÓE,¶e¶¨••cQ>Ň& y§J\EĐ.0ÝjÔ¶‰«lZ«¤¬\źPZ Ěmń¦űÎcz”×%Űk¶Íé—™YG5FWă‰UÜđ„OéPÖ2÷ëă:Ç´mϰŇtŐv¨}Ňô'!FYÇzŘ«‚á‰üO@ę÷ňd+pW†iWBëČXi2Đu iľ{ŕ7ŞDnŻĐČz=•FÝvŽ “QÜ6Ťv›­&Ť™Úy'{ô\kş#s,Fú]0ŞXÜ[můěöGŮg·°c}µYĐç%HiWťm¶® iżxş·űŽ]‡żŔ>‡®îHŕó8Ňr%fPçŚDqlËü…Rzçö`ĂéĆ+wŁ›çÚ>P{Á$2wż`é Ú,5¶˛5YvRs$Pž[™iuC­–Ôż5F¤*CîPZőČŻ ŶúÁzĽ×€®ĽyË endstream endobj 5167 0 obj << /Type /ObjStm /N 100 /First 1033 /Length 3342 /Filter /FlateDecode >> stream xÚŐ\mŹ7rţ®_ÁŹw_zČ*˛Š „Cěs삥Ɇ@˛»}›(»ĆjÜýű{Š;=+>í쥵šŔ6\3’O˝WńEÉÇäĽK>Š#_ŚPĂ ˛$ąĚă›â‚}ť|ň.PRŁ‚ QŚĘę‚č ˛ 9ę PłQĽŁP‚QÁK4Š%;R/FEGyĚR’ăűŐŠ8yPę“a)ŮqbŹ5Jq,† xď8s6*¸čC0ŠŔN&ŁŘENɨčb PÉE‘ń;q1–ŕ!€˘˛©bz K˛ń†Ĺ<( ±Y¦Ďlłv©¨­˘“٨ä„%NŽcՉР e-k@čr?–ĽÓ §” 3‘Ólb§÷Ўč4{[—’ÓÂăOĹeoň ¤.“É/`ˇ)` Ë©*ö.+zĎYl,“+ŢŰXfW‚ÚX¤p˛58ą’hŚWî9gu%űAeWŠÚlVrĎz„™x†?†a;¶L$bZ´_AĘř…p70IHw¨f ˇĆ1 öŇýd0° Y°šŮdČC0Ă(= «Q0# «łÁIlVëÇ·XŤd,!FćR94$6CaSLâJ¦#dSě[, ‘ ­Ă ?ľ2Îj Á Mś¸ö?×i!¦ˇI( üŤ uđ§ŚŐ3$sĐ2fH4¬(YâlĂ`×€4t—Á[ŇÁEŢTČ„ ÓÁâeü« éřyjNa®*ý‹—/_ŢüĺçĹľşľľą{qxýˇÝŤĎ˙ruýß/_ßÜÎËíÁÂ˙xřçĂż˙!Ś/ß/ýÎýPâ¤ŕCŁL 4hbp I&Ř5~ö•{ůŇ^»Ăw7onÜá÷›ďŢ|÷Şţ×ňöí×őýU›˙ô¶.m)Ü[óş’×YBö⢤©imŢW„Ššł†ÖÖřâ)ݵ–µö’âoÝď~÷˙ţß‚¸§„ŕ·qĹOXtwŽxm-ôŚČĄe]„:LEŔĐ 7oUd?Ž8ĆÉĂp7Ž`r“XěŘ™#¸L ®x¶®ąµÔ}n\‘g$ę~EŤSF$Ţ8J”¦Xľ7G’*l­§†X…ćąKŐĽhéľtÖľG›1Cąŕł©,N‰Ó˙c†&Bě%h¨r4&»1´†°˛×%貒…;źăi‰ąôąsÝ1.PžŠyŃ‘#DóÉŁVŘ›#Z ·Bµ.Q32Ii„G)wY9µ9b “ĄŢŤ#äDľ°;G`©,şFßdőó RˇÔů'uОîntXt˛: ąsŇQjĄ‰ÂŻňóÓí͇źßľµeŢţTĂšäµ±ÎĘVĎ5ćeE±‰¦9|˛Ň`J>!Ëś´˙lâ˙©2™™W]K\Ăš‹ď>ČŚHŰiöŇöL&ÔˇRVšPg| *ŚäíŰúă›ŰÚ—a"ZÓa3ńĽöeÎ ĺ($liŐ=í(WزHÂ:YíŹjjŠ&ŘŰV=G˛Úg)°‚µĎžcçyť‡DTŰq˙‰Rm˛2włÖP¦ăešë=T"™"j¤3 nR-ÔJ‹kjâ•$‹ŔJCUŠŘw—jĘaĘü VŘěÄ.R¬Ö‘%ĎAşI5ÄŃĽRM°ŃÜZí±#Ęj%„Ř=ˇ") {,Čp,)Úx—T¦üëđţîöCżűýÍő]˝ş^n÷×pŠ#oť4lJËejř•HMĂŹ#Ý4ÜÁłˇgo©ů%e0>kZBmms]?†Ńđ¤űvs˛ T€®źPńë»z·ěŻ^™¤ô ^„t4—©Ţ#V˘2‰ućŹcÝĽ´ŢU¤]rއĄ0IÖĄD|ąÔÝĺ YŰ®Ůäj1=\ZľAߓ儕(Ž~č ¬§ĐŘrµý›Ű]¸ÍBuF|őľ˛pJilj¨ŚŘvwĘä5 śFP÷á~c ěŻŢT&ŰşŰÔ¨3]¦ŰlX‰üD¨ŇÎŔş©×ŰľO¨K€›PL>”ä[O5…”şĘgP/zqµŢ\ĹO„ŤÉźĐďż×Ű«ÚŢí#JrÓíIÇUoá‹sáPň +z±gsÖMǡRöZ$D•ě¸Á÷3:Ha‚ËîreT^VŰlbő4‰Oç:ŮËŐę Tç@=ő7y.ľˇ/Ú›WŞhŇ9¶¶ÎIhî;J• zá|ŠއJz‚XQŕžSC'ÖŰÜ|‰ł$Ű Ż9éBź!†ł¤)Yô<–·Ś.7hţ"ő-Ă S|0Gä­É˝0sD'°R”ÉIÎŔşŮcďMWÖŇ|âĹv ¤wFłÝ •%ĚeG{HŰĘ?ÍP6=E°_Ŕ ʧ'd`._ĆMĹÎÂ6{$ž"]fżµaĄÓ9X7{¬}ś5tÖa­ĄĎľhɽϳ÷;ęuËd±'°Ş¤ńÁ>Ł=+*ZG¨ČˇB2M1Ůa=Ú¤_Ä Í™:D$—I‹^¤AnXÉËH0g`Ý RÖĚ"!âĹ×Ě úĹX—uik\:óžgź~ňü XB­&v7ălÁ>g€”IĹśŇ 2é$@î<>ßfEP†>ă †‰ĐrĘă@>Ł_(ňC‡O’Ń©\ćŽň†•äîę ¬›_¬…|Ę}^uÔSňY¤—ÜÖTsË{ú…˘@ °Ń¶yĘűŚ~ˇćĂ2|·zÄâGŃcĹŹz>Ď@C?ĺě3ÖOĎŹ^ <”ÄgůŚĘ~\É8yhDÔŕË<˘Ü°LŹc=e.ms,i;î[úl›ÖKLpżzvőPšĽ•'X۬á§ö9K©Ś>FPRń}io·đěôDz¶ß;w!Í{sŃ#"QÎŔńĂŁ¬¤‡3Ók.ů2ăŐRľ™ŢăPO‡÷ž—u…opŚ•ÖPIs\ÔGµ«Šëž~a{.ň€ýyIüą>ź_M (ţ_6°ÍJI.oń «ĹĆh—<ÇúPŐWdˇK[yÜi‹¶Ŕč2E–RĂľ±ŃnľnX­ë4ěgËőůM€Í?ě|Yó)zyQ@ěÚî«Ýŕ±ń ¬§#* í(MŠfEŹ‹Ź)űÎ!yt_iĎôčíňÚG`m[$¤'öŮm-ç@¸™úf™{MŇí\őQ¤§4 ÍĹŻ˛ ]WE Č>±×9ďyyńţŹP‰Ó¨–Îęóiź!E•“úíôhÔ—‡4X©ÉÉeDW˛÷aňdo)ü‹ś ŠN%?MEJJ—ąvDJĘĺp҇¤ÖŇ˝”yÉTCŞ«"ËÍ{>đq*á$Tb»?ĎęóŮa„I6 ¨ăîĎô÷C BXţ{wřŹ˙üŁłóz±·Ga*ZÜő‡wď~ü›?V?~Ś*wŠá—żý ĹŔů­Z=ŤędŚúÖ®~ŘC›űOÁ¶ŮĐÜݲ×c9‡ă'µš¶lfŹ˝¨ĐýâXăđęö¦ż^ -wxőÍ·îđfůóťűń— xUZ^¬·Y®ďŢŰ {$÷˝Éůý͇۾Śďřţ»]ć«úőÍźÝP ú≂@^ͦ^Ő[Lb÷WŽżÚ}ŹőÇs"5 ÝĽĺH?şŤŇm”nŁtĄŰ¨ĽŤ:Ęg<:Ľq#¶™ó6sŢfÎŰĚy›ąl3—mćr?óŹ;…”…„T&{GŢŹţ)aĘźĽ„öŮÂŞ˘F⏎a5%´{—Ů’nXO‘őq¬§cŘŐ§&î_éˇČô|*˘dĽĐĎ +y«Îz:ß‘‚8Ć)ĎLsN))y s/ßéňŢ ŮÎđŃ»!š2Ë…>şÇjçÉŮžb<Žő$W­y^cŻÜ×ýçHĘ’sś×%î 6,já8ŮtŰ)Uűl[PzöłĆ–H=ôÎóĘ=v•ĚŇKŁ™!ŕ=odpžÄ—`q˛żŕ‰€çÖ3%mĘą…Ü´řş¬s¬$ľ/(ivĚOî‚ÚwĽ˝„}"ŕÇŢđíą_šgŰ”Ôq\žÔúýłßr*âWżöB^{ŃŢ…ĄúĄÍ˘eĎăÔŚđ•O€idSy*ŕB8×ć—Ut^đOîKíKkšxń}ĎKE<ńG€ŮnčńSń>fÁUbŚe¶{)©ĺ4ç\ZßÂř5ĽCĐýEÚ5Ń\ʸI!ÁţB«ií°ý(“!’ĂW/_Ž_ő»«›ëĂëĂż}˙űď7˙SŻŢÝÝüĂz[ŻűÍŐűéöĂňŹďj»˝šÖŰßţýčÄžĹ$Çą Źcí$Ĺq±—qĺďGww[˙T˙ňżţ˝  endstream endobj 5215 0 obj << /Length 1075 /Filter /FlateDecode >> stream xÚµWßs›8~÷_Á#ĚU’€ľµ1Î5Óëä&37iĆC@včŮŕĂrÚü÷·?Ś=v“Ü‹±űéÓęŰ]-F”[s ëÇůëżđüŹ>N|f(Âłâ™ĺcaů!E‚XqfÝÚ>"Ěq©Řçńů•\-‡bűÉ °Ťę‰Iľőż+9s¶e%‹T:wń…ҸďÁz-ôôŰQŹţx‰-Ň-( ĚJ—ŁŰ;le0wŚ˝0°~™/—ăĆ4ŘÂşý5Â;ŰŞ·ăŘŽ ÷öă!†ăŚjářöf©Yíů‚ë/;âs5ź®’źr*ÂíG•ÉŮÔě°óf÷Ü!µÇČÂ,—R„ZcG5Y%ެc6ĎŹ‚EP -—3^ŁÁ1M/?_DÓč&G“éXţŔň¬,T’˛Š¸:Ě~\"†xíZ%JľÉ{)z”…zN7$©ňä^‹p!ßô[^üó.@QˇrőTs\l†aťUÜŢťä@>kUé.M żěČ!^Ke”0Éĺfýđk‡ÁVĂ®äú-ěż›LđËČwřn_±p>gÚ8; ëŘynîß…¸µ‚’€mĄăgDTdmżąÚµ{6'1X.”*ÂwŞZ%tČËE¦ iĽ˝L˙µLLľFßĆńß—Ńôë©BŢšţa‚á÷PóńÉAŘł-7”şE¸VU^ĚO‹—­őYą(«ˇKżB¨#ź‡bG©GłžTy#ÔɦHU^{4°Çe zün^˝: €6eHŔĹ«·@wczt(łË<«—Đj7)p,g|;»ÔóI•,őˇýs츌űĎöH_Ľk® îŮ.§¬5«ż*š%ú{˘QîćÓ´,ÖŞŢ@ ¤’ŞgV&ÔxŰ ŮŢ\!˘˝C|„»oŠd)µ—ě# tdŹ:ÄCţrFŮ'âz.ĐJ y檹¶ě‘!!˘o÷ĆÉ)2ä ůĚ•PI˙^-ŤÜ8,hjo›ćŕíjôűë rŔsśS,¬u¤8;µ6¤µYßĘűpš~gs¤ţě;ťP8ÚNw/şś˘čŠ.§Đ’Q˘C#á‹~of<Ţ5g°×'Gđş9Ł]sFëćĚďőf˝rá…{ Ď„ő"ńCľ®»;-Á¶ÓËš[m35kňN;t<¸›Uő`U®ŐŞ,tŠ5c©'!‹p宪2•ëu7;Űf0ĄÉb±Ö{B;ŚőŹP‰ˇˇ:ˇ{lŰ_¨/XŻ_d Ѹř\şŕʬćÓňúłýsˇ/Ń›f@›n[f‚?ńđ÷ZŻĐ­W pžÖX·ÓU’ĘŢś©ňŤß9†ó5Qj^Ü×-¸ů?.µ;?ÍMâ‘Ĺľźţ†ŕč~ endstream endobj 5232 0 obj << /Length 1183 /Filter /FlateDecode >> stream xÚµX]s›8}÷ŻĐ´/0łV%! čŰn›d’Mwş “—¤ăq@±™Řŕśnfg˙{ŻqŚ×Ţ#!éÜ/Ý{Ź!h†şýŚ>ś»yŘ—ŇAÁ#r ö¤D®Ď°¤(Đťĺsű{p…Xr¸„sĺŰóxˇě1s=ës®—*)¦Eś&zëč,ý5˘°“ Ú zöGárt÷ť Ö® úúQî\".,¸ăşý9"•–3ˇ‡úQëě J°+|ą©´¤ÔZź%¶k^Y©V^ęŐVĎ玿a;•Řő\4f¦ž40÷ډÖYt7BZ*±)üjMšÍ*‹ż•»´k”íëŮfö“âeĄ&EŤą®őĎ.S†Ć”b_ŁPrEźRp}ś¨¬lýrn‘Ę‹,ŐŻ^N«â®„: dµÎ燡·ĽµJWÇë.?«'Çy¨fö«¸Ž“§Ł T„Q{Iöy "wk»ÄšfÇúé0ůúˇ¦ÜűŻyŮ*Ýę0fűňÚú•Éçë$ü_ C©xGoŰ8+f“L…iőYuOцž¨Ŕx–^±©Řçúiš}ŐzQâĄAÁŽt‡ď(Ń…HßŐÎc 3ß '0ń<ăĽUš«4©H1ŻĆ#q23ÓôŃ<§‰˝mlKv'^ăF¦‰˛€ý€tëăBM6U±©Uä»Â¸Hkk’‡Ö©"źéäQţ4(ë¤ăĎ{BX–ä÷¸8’\Žj´sËĹ”c Ŕ„ëł‚f˛Pŕ3ŕ *łxŐ0…$eŇş¬ ćqţjQÍ;"Ąg‰Ş–›Ś6SmIš™Iußš›Ő2sĽĘŇPĺyłZ#™Y8],r}ëq;<Űnië/°SEçÖ†"íň9ďľĂd®c açU+#*vćäVNÂĹ: 2Ţë8/đüÝ€*P\+Č Ô—iiíŇ“ł±÷u“x»»ň“›ŕ×OżO.ˇ›˙qt)«nĺ«"ŰhŇo ]_Ţ“ËA(÷ASqZkzĺkşr€!Űpšhľ•ëK I˙4Ńj–Ł˙źîĐČčm‡í–ÓĄZ>¨&k™ ¸ĂZÜÉd™Ł}_D ńyěď!ő׉™+yŮś¤ŔBR؉Ą¬ˇÝćJĆĄItEcľÔ+íŇš*˛ęA(7#J> ˙ŁpjĹ^IT ‡fر˛i¨6ÖĘŢÚ0_¸@ĄĘe«żiöő÷ËL—'M :Žú qîu& endstream endobj 5200 0 obj << /Type /ObjStm /N 100 /First 985 /Length 2332 /Filter /FlateDecode >> stream xÚĹZ[Źą~ź_áÇ݇ř¸Şě˛ˇě® +m$DJ‚ę‹›Lć ™aĹîŻĎWž9$4CŁH S]]í®*usO˘R]p‰jp¤b9áh»‹ę4˛ŮiÉŽe—…@0ąś!4şBŐ8ÉŤGŕ$WCçTWS!âj­NŠŞŁ;+‚ŹÄx‘@e{2&GĚ}yȱăUGB|mTR—˘ŁX˘QX%]®WĚžţ,žĐlĽ 3‹QxG†(vT¨ó°^Iť‡őj‘ˇAŤť‡•kírćé˙ôj¸xŐ¦Á/gß˙đĂţÝFE >Šy5yµĐ¨ŐWě¤ääsN_¬âËöŰń©źöoNöŻĆ»/Ś‹«W_Ł |ĐJo{Ë˝G€W’/Vp~kg/ÚÝ“a<;ţJ×E_É32’pÁ.CQűË7÷dxq6śź·OoďĎî)RI„VŹÜîď˙ř'˘Í[ú/|E®8}srňěŁÂ9ta Đ\ÖÉ";ř•Ë eOĄ¬ć ŕůÂQ˝ …Żę°Z%LŠÄ+ $¨QYß@Ţ(ß@¸fźăĘÝľúąµěýýé…»sÇíî[-µV¨?uŤ öĺňR¬H×7Ł•b˝ş˛rlÍÔŐ˝^9±=v‰—ěží§Ç ‘ęvľďvOÚŰ ÷ěĂh8ĽhG»ź K;˝8·B—ěy‹ńóý›ł©ť_–äÎűk›Ź‡÷o]O ©&Ďčb âżTÄűĂá ‹|W÷}§XGµ:d?.Ĺ ®3# oČŤÂoÔęU˛Š_kÖ gî)oťp2LŻ´O# ߯ćčójQtł®40UF¬tsĘęŃ®“EťŐŞ+…côşze”ŤeĄ0±‡÷Ö ÇŠŇVş9–ŕ­™^'ŚŇ™ŇJĹXuWâ( ű>‡Ł«|™<Ş÷Já| +]'±z^«łZ›°ű—Evĺ¦RŚ%ĎUÂ\’'Yą)Ś$F+µŔ¸ĺm[ĺftňŔ‘¬&ü~ηĆĐçc¬+…cö±Đ·¶´ĎüÂ+ł˙U;5Yü®”b ¶1ý¦Şű~Eľu™ţß2+áVeö˛c?Çűű ljő9ůŠD:z ň(˘^Äae:¬La:óAÂ|ć|PjđA ľTăŮŤóČŐ0áú4qóxBýâz<ˇŠěŤf@Đ TşB4®#ü©»×ańŘíěźěPőÝ'µ×'ĂďĎËżž2OeĚóęBőRă¶ÔçBC©y), s „XµÄ$†L"(m úOš¶´e™ë q–:ÄIŠDł -˘ˇ™F†ě† #›QĘ;c4{±đßÎ<ł´˛Dέ!WŠ-"­m¸1$hîk?ÎPéßÎ0a:Ĺ~ˇ_ĽŃ–gű7Żź?gŇ‹A9‡4§Ş…t¤Đň&¦Jó4S†-»íÇţ}YPđ«|Rá˙W—ČJČFďTE@G ‚ĎűÖŢ·Žó@2§q‚;Ç®đ¬)‘ĹkĘŤÓ7€zŚě(cvĆ{ď×â€[jQu‘ ˘Mjši nČ*hd7T\|Ú?mÚ"F(ÂŻĆŹÂŕńĹ0˝ě(šÎóň€É)ÄaJÚ\Q–ěëó7ě0[ytîך–ę 3Ţg4ýőřü˘+J"hSd2 ÍpŞČ8Ď€Áö.-¨ťř1ŘioµŇ)ź÷(/-Ľ/|ř8“SźXW +Ć۬´N8k~Ë:áüŮÇöu ‰ő¦O·>™ÖěíĎ*Ö Ăµ¤•ÂjI•V Ł=Eő_),ڱśW “~ä{ÁMÂ!ř¤+]Ç9Żtť‰Ô•®cě ĽÜüĄßý“ endstream endobj 5274 0 obj << /Length 1447 /Filter /FlateDecode >> stream xÚĺY[sÚ8~çWxf_왢ęjI}ë¦$“nÓv;űf NĘ,L»™ťýď{$ŮĆ6 —”¶űFHçňť«Žqpŕŕ˘ókŇy~.y Žc$wÄHĹq 5E1 ’qpJDâ¨KĄ /’‹$Šqř°HWčł[;źLS÷tťŢE‡é2ÍFit›Ľ8gHH¬,!-Ěj§—tţęXÄ©ř)…ĺÁhÖąąĹÁţ{`Ä´ ľÚťł€ Ć ±iĐďüŢÁ…QaÍW© FR踮RL.uJ"®Śăône…ިßĎĎ™®ÁBb$• şT "‰Ź”ŠĆŃŕ¦+D掬Ăd•/Ł.áz”{ŤŇËűBűk{ŠJŢç÷éd•·„ńîVv÷*Ž"ŠĂ?˝ňĂG—pÄ9?LÚÂíb÷üśđ@LÔB­uRšű#Ćěş-t%âŕ„űłA †­Ű†îĚ‘şL!Vé|ťŤňÉ<;µ™AÄ|2rVţQÎ'ăCPŚHXę¶XŻ>·I›Ť±ŔŹ’Ú‰OA`šĄć߯&VźaZ?µĹfHFš[tłS 5_|°N¨Ţ“‘Ţ™j‡~&âp O˛üH㦳EţđătŰ“FŠ,PË"P!%@*LJWĂŃ2‚¤>m© _Ąéh61Y¦X™ŹÖł43ŔŇž¶É>Ř&V«»ŔłâúËŘńI¨Ĺ~ňňě·!HĹ×s‘†K‘UPě¦GÂRz“°>­–ŚŻiąÇ°}sŮO<Ä Ř+.jÄ00Ýň§&¶ÔýcŻęÔŻzeu°¸Nfj,TóG  QĆëHŘĽŘŤ·őĎp)ĎŇ٧Ô•„î°c *Kz!!đxđĐĐř(ŇBÍt'Ďś˛NŔę§“o/Ş4ü¨T¶Çź—o/“G±dQ*ż—WYŢŠ ŤŚĺq®µÖ”hg1Ák ”~Vë OČ´ äĽÎĢ7láŁbD1iűR+¶Űż]bu š>áhK¸mb†$ŁŢ.­đ”z'Č ŠĄh·‚íË› ő-}ˇ3ZX–Ő+ť˝ěOnVV™µ*€Ô@_Ş˛UÎţ± °"„ű´RÎşr“EŰ& ůdÔMĚmâ’@^ŰX€Ő˘˘x3ɦ“,˝őĺ{ W¶jă3-ްR)‡ĐíK„ ,ůp§ܡµä¶µô€oúÇÝĐ´’‹ýɡ§‡Bżyý-ČCYÖŃ>äٱț{ÎnčPÖOv{sßN_#ŽK4ô)AZ‰źnŮŐ·– ąYyMË›¦Ý†R@o¬éN(›íMɦ[ä{:#Şô˙9ˇ¬iB„ł19n BčúhÎZĚÎć\űâfs´šÍQ7›“µŃÜ•[v‹;5ĎןŚĺ¦éîk¤ť$ á.ľ_¦#ŻDµA6Î…c-mJ€–G3{×ă,v˛}X“Ěüsş%»L›ÉĘő˛ěÍÍÓ]Äp8_Ë“Y±<ĚƵ™Çpş¶y µFh Ěş•d\ş¨Ą™ż®g»1Žv łQ:X¦ůÚ-Âlpŕč±8żűđŃ÷ë^î =Ůrř=fuG!ÓŇ €ňÎţyڞ/%G”asýň¬7č8;ëőű-Zűćsîlďúzđî}ď퓟˝y×ď=ůô×—Éá§±O{Cćí;¸ŕ]˝ăóßGLŢŚZ ŰÚ¨-ŚţjsŤ­Ą3tźĚ×+·Z3h+WŰé{?!l‚?âíDůfn\2ćµ×\ 8.ÎEšŹO‹$Q¦•«ňáµÉ=ëâ-ľ0áî‰ŕBż¬Ě@t“,ár—D ‡KđëÚĂĽÜjŠ/Ô[í‚MxîůŐÜ䵿îíř"ÍÚ8ýÖ&B• endstream endobj 5288 0 obj << /Length 359 /Filter /FlateDecode >> stream xÚ•RËN@ÝĎWÜ%,:Ţy]-IFvŐ4Ó¦IˇJ Úżw†GŦW÷9çÎa)ąĎČÝĘH°4ŃZ@¶Ôj &áT3ČJŘD‰Žß˛5?Rűw}wu8şxÁŤŤNEWąşÍŰĂ©«ä1#ź„ůMvA´–Z.ˇ¨Čć ˇôł5xÄÄÂWżYT‚*)|~„ňLpT‰”«†0iŔ•čąhÍ(NŞ eš˛xÁ1ĘbiŁó‡+ÝÎkć·4ß&ë™~ÝAXpIµ˛sŽ K;gpul˘® ŘW[E瓏m“n۸¶kęm;Ľ˝ęý‘7Ć[+ăţŹÁÓů5ĺFË ŤkE•·P*Ş=bŻ0uµkňÖ•Ăą˝_}|š’uĚ1ęÂʙ2†K•,•Ş]Ř=5CŃЎČb‹QřîŮ,o§ŐWTf©lhĽ óôĆŁďó>Ü!?7ĚőĂ÷±m endstream endobj 5300 0 obj << /Length1 1465 /Length2 6153 /Length3 0 /Length 7141 /Filter /FlateDecode >> stream xÚŤwTÓ}Ű?R"!")C›ŢFIw§4ÄFlcŇŤŇ]Ň"Ý J ˘4HH¨(ďPďçyîç˙?ç}ĎÎŮ~W_źďőąľç7¶űüň¶H ĺ €$ŠÚÚę`É88 áXgŘßz2cG"$ţĂC `q:%稍D4Üś`!XT|O‚@â;"Ń%;Ü -Đ@"`2E$Ę ·wŔâęüýŕ‚rŔââ÷ř~…ä]`h8‚hC°0\E(Ä`€„ÂaXݤŕ’rŔbQ@ ‡‡‡Ä#€DŰËpó<ŕX€> C»Ăl—:ŘhdC8ć·Ái‡ő€ aśÂ…!0¸7„- ŔU¨ktQ0Äog­ß|€?‡ €˙•îOôe"8âW0 Eş  /8Â`w†tU´°žX>a{éqĆ qńwÜbsřŐ: "Ż€ŕţÁ‡˘á(,FwľÄĽL;fe„­"ŇņŔbČ.űS‚ŁaPÜą{˙ × ô@řü-ŮÁ¶v—0lÝP@#ÜŐ ¦®ôǧ"ű·Î†€Äî ‰‰`®'ÔxYŔĐ űe_Şqü|PHŔć·á~Č|0w‹vůůü§áź °…C±=Aöďě85Ěî·Ś›?î 0áč€.?˙z˛Ŕ1̉pöú·űŻ•u•5uőy˙@ţ—QAé đá𠊀`°ŕîÁďźyţuŁ˙Ą˝˙éî?2Ş#ě€Ë—(pÇ÷7÷?Ôŕúł7Ü€–ĐAâ pý›˙A" (î üŢ‚_!˙?ň_fů_ů˙ß©¸9;˙˛sývř츳סݰ¸ĺĐFâVńß®&°ß­ ł…»ąü·U Á-‰<ÂGt~°°Hř·ŽQ{ÂlďñP‡ßdú{¸Îpě>żĽxpQ ĐŮp»uÂ].ÜĚ~› Ü"bŤ÷R†áVíź}(# HŰËť@ĐhŽ8IŕĆ-Ż-Ěóç@‹ ŕ0űěh˛ËA ‹€¸(¤‡éô{„8ű/“¨ hyůáNč_:č|ŮߥâŤ@ÝĐh\§ż„ëňoů×My dS“H¨dcmHŰQµ<“˙ę°ŃvÚ‘© ˙pˇ% ¶GyĚj)Á ;kZłLeެbéءŁŕz”3˙a×gĄŽµŢKř€źUeÝžŐ&nňâŕĘD˘Ď!óťIĘfĽ§&) ·%JĐ=x÷Y˘©:Iemí{ 8(}˙ŞíúčÁI[ŞrO#´M§˝łş4K‹ŽYÜřË'}l‹MżáŞČý_ąź\ž/Ç<ŚLŐɸŁ)Ő~L–ŕQEµŘ7Đ?KÝÍň*:PĂ=hő;{–ZY˛źYIřj•ńlţőźą%î[4>6Ş7ä¶l{ž/p§Őęě8¬ělY°q%uŢs°N˛‹ń>fˇFÍŇ*¤ˇó Ö˘lgrÂY šúd1Ć]épµ×óźXś4ÂC5˝¦'şFşi¦Ş›Źô†pńi'Hź—Ż|ńkŕxën†ßúWu őŠ2/]÷¦ź]p~/»söěW脉 ąXšC›ˇLń¬xHk€)µ…;<­Ňč:°ásßŐ"łoáóüÝövÎiתhD,MŚ÷bݬoFáÓ“m0đM=4˝&FŃŰĂeéŔ·ĘsÉB«ĎYäWáÝć"ňuńő㤀5çŮfGTH,˝@k䝊™ĺîýŰĺřq¶xĄ:yĎOöéŢö"Űđ„ČÜKcN¶ĽĎ¶đ3:d¨zo˘˛ű7%ŤÇ:ěEűň{Čńe¦ř.~Č´¦ęh»Č†Îô…'[xhű}ÚyóéZWhÄ©—Bán«#ÚI+şr”~ü7f¸SŃęőo$<‰i“_ÜkÉŤćŻašřz­­T:D@üŮ笭=!{&ĆÝ,éë¬ćíV¬6H«›ßŤ NzŻ6îÜaýĘ€żŇťůz˛ł| ‚ŃŤçI*äضÜińŃyQ1®&łŻä·˙ťd&;ľÇ,ůzŰ×ú°ăĘ`űŇëÄ`›ö–,Ť2Żu»Cl‰Í#îWfÁŰPsNcŇ÷ZSĽ{^Göd7Ň šBó9‰ůŃ ÎůÇ6í&-ÓI+˛&gaoăŤÝu„ţîb‹U,L®ŞŽßŰ7%>Ů.Đ$>Äý¸/=S!ĚŕńFhäɧ<>Ë›„ŚďŢ-$ňÁPa+âĺÍD4ł§˝Ă'ŕmŢŃięń+”_LjPČ,ĄÓ¬ç‘íž2vÔęNĚY- •^9fč÷GůyOÉWVč6iTsÎb+ަł ¨Ú˝ÜĚl56ăĂŮ@ŰF¶ĆI[áüĂ"Ę) ľĺwÚ»PÍ'<ł“’ĽŢ#7ŻšĆTŃxS8nęŤ/xôČ@\{mDWÁ±ę'-ĂšTśˇ˛°wďăĄ#6íZĄľ;jţ|<ÎîÔě|0ĎaµçÂnA•.ľĚßś·zË ˘5řqö8Ípä>Řç]ŕ FZD^äă÷9*Ó>6†/‡ÚěĂ>}Í«đ‰ÔŰâŚčě$0Í_(^<9üÖ° #xczĄŢ0ďc?ň›ľGĆř’YříLXË6p‡4˛uť…ů=ť×é×ćë~!yáصiÓüŕÖ;÷v\±!‹v'~ť4kŁIÜŐab„úă¦É^·h¤˛0ő‚ŽÉş–mKÁ­Tť×že·†.úČLÄóĘ«ž)ş VAĂĺ~OQ3·l?ű8Đ ËDŃD]µôP*ţ.ÓŰł˝ŢM° ŰšŤZ.Ęu4Č’ ®Á…$™kzZäY`§§·űööŻŚŢ©Đ„n¬Y‘‘íÉü|óÓ9*]ČĂ|ŁůÍŕ‰WaŔÔ]Ô bötŁafHq@m@¶žŕ! úě&¦~)3ŐQđŃÔXťˇš@”Ë ­}ç(j©™ĹV÷zşÓĽĽá°˘ÂĎžy'Ó†–Ť«ÁŰIIOß+Y×w}ñ°ą;ۉ|E‡á@¸bśXř8}oˇnöÂQž'ÓÚ~,\ݬ¦–”«řłä``µ…k"Ęfý­śäQ—"ž8lSĹś+š,˙gčqÜq±ě0},/ękZ[«Ő^ečUę1;]“ůwřËĄąĄnÇ ąĂřX'`B%g•Čţµ7cĄÇ ď?’Öđ/h™?(łů"lšc>rr¤“QžpŞ ¨e3íéÔŠko1TcîGŚť{evĂŚz{/~bBĺ gł˘ˇB¬Ăľ¬€*‹ô•5&ď–Ŕ9ťJÎdĆ$Ő÷F`ą†0 8ľdߨú•Íď$öâöŁŹ@M|çv˘ž®‹y,¤^dµ~5AjjŔ:Ž“›d§ÄŞźf5^HĎwŤŽ•ßR= j ^¦<ôjŕFÜ’mÍ1^Ňhd¸}LĚËÚĎä Í3§óž˛K«  Iý`§Î3gnÇ ŤŻMC'4ÎÍŃöăY%U˘kYeŁ.QÇCţl1 ·s¶4şČÔ¸™Ńzq ,z"Ź ém´ü€2Ă"N4_čĄő<ňuĎďщüڏË$‘ü/ßČŠNëľl|CßŔ-ĹĘ5í÷đí÷Ó2Éש{G#VŻ­ţâůŕxפ+[iSl=š}gÜw'‡­I%ja`(ŞůśqcZ+QŇę™­^І:{ckJ—Y?×Gz:}×ő‡ćô ţv“Tâ|)ĎEë>ݲźŚű{Č_l=c6ŕ#’?‘ &!ßť”źčYđrć ZÖşŇ2‚}‘ÇJ°mGóíË:i'Ăsą1şÓ8CZń¸ĺü"]{ţé”ÉW1”Őj¨5úë5âŰwHzž˝¦ŽŤßQv4&ňÉG‚ k’ŤµÎĆDĽL4}˝Ćv—SżűN7bŻ:*Řn„KWzO MwNjř·­™×¶7śż˛>sĎ;G!ĐÁF×´ŤMĘ2>ß0ăÇ®§§mTWÔ zgż˙R„N&e Š78wĎYż°ÉX‹ÂËmĹSߢe±âÎ~ľ;aŁRľn€Ą(2‚Š|y«¸$„ěˇęóÔRzŰ!źŐřč¬G§ĺť> @+úk–]Żçš WJĐ"Żvz2k>[62ú,CŃ5ŐüéD=ORMp{WŮü?AůYÓ—ýëëÁĄŢ/SVź +‰(7ÇŘ‹ĘȵđQqź%ščö“ó8T™rƆÁn˘ Śu YÂ^˛oFk"W ťpîB ×Ćw…Ú3~j§¶-9˝)NEK{§/4oWşDĎÉÍ[Ę˙µöˇóAëx' »>ŚÔeBÉś "¶3ĺ?ř˝ň{$9±él˘ü™‹Ľ÷Ôţç,BŰvÉ;+éţôÄŁ Ąí¨…¶Ô›Í ŠŞĹ×uŢĺV?î^đ•h^ý&JŐ)żp8Ńgm˝Ňî($Çż…÷ îIŔĹąQ1ω(ÓĂŹ»Ť kK‰ÓńR›«÷cŘQŽť˝]ŘP^xé<Ľ˛PŁl"§éçŕĄQQĎŕwĚşYk¶c¨_>ŮĂ×X5ĹÍ«ŰÇ·ÓdJK«€¤>pX÷ňµt‚r©§ULí›#gľŻ|RˇŐáÎG Ç\%tÓŹIŇxż˝enfžzĐ|Žbpţ ‚”PÖł+—%¨¨Ĺşŕq/Üš/"*Ç.čŻÂ3ťŮAžNlgŠéâź­†ů_ř9ůkŤĘ}ţZţšbPUşŰňąĂÇMn§ŞĚ8©Íxü‘ĆňÖ‘§ę…@| ĺ˝îaXĆčoŽUË*´†łmď(řŘ!ŰÁŚú3Ő'»¤ú‚ÂŹ] N`d ďÚ#’𡵀WĘ›á6ŰŃ|Š•®»]śag¦7¶Ô 2{'ŇŃ/Î4ľzsńéT†´vOXjEŰŢBÉ~™¨¬Ę˛{Ż8|“¸ćŮd‹ Ń*lb׉8?x¸_>Ź•ŠkĘB{…á5%)íÁlśe`Ĺč{Ýäçą‘w^ŇĚ{Ą–Ţ"Ę1 ŢěçAĐŻó A'(Ô“—ňßńJĐňĐ—ÖDoĎť˘ŰZ†T•&8×eo‡ n,V2Y'g/ˉGłĄ!Ęi%B S-ô±ä_(˝;Şţbäyuh$ĆŻ<ʸš|ahói®CdĄŞ©ăçKÁ¤v™ç_4=]…şŠßXaKX*27âŢůŽš|ŕ IŻ)ÇËUµ& l Z.˘ëŠ$rąXÔdĘaëÓ÷‡ćę&$«?ö}xâçb’µÁ˙ŁA{I~ŘcŤ±ń‹Ë‰™:ëÂ4ËŃZ%bÚ€ř©9Ë*!”ş ĘŻź§:‹žwx¨jmsĺr[¬0ىťk~§ßŇHčF•kFýÄţöň®"ŃťçîŃÍűŽçÔx±˛ią'łň,ăMk"Ą‰v‹>&I5ÁĘĐ—µ˛ÎőµPZš•sĽűE‡{l0’‚™M~,řńG #°/ŢF*,9qöĚé¸ęł@Ľ1š„Ěλňäm/Áň—"1UęHÔpŰ›­Ţ&íăÉ'ł×ěP€-&¶˛„śVPrÔ§iąP¶”F˙%Ňń»b’×=Ý©żŘŲäZnVKŰ+~ĎŹŻś“=^ßúŕ}U2ÖĘ"± íŹűs¨–X Äţ$ďÚ]U|vOŐţqKÚń& Ęciqöý«?ú¶čŮ3yšDă÷OúĐ”űlÁ¤¬°rÉőÁëc&=Ą¶ţ‡Şç ĺ´ĄaRĽÂy9đJcQ¬'Ľ:ʸĚőZüPsŐó¤ ŞIÔgűBť+^ “łf1‚®.ßÎes>i6žHúěď¶Q…ućľ~R˘“ż=AµHÜî´µŘm»čůJÝAYş/¸$˘Č"Á 0LčôŁhý¦tú5Spގň.EQ8aúůfŹ9iu*Ůű¨Ű™W‹‘~ Ó"Aa ’éůŰŔްß6ÓűyĆ/{¸6ĽçG7]|Ü_>îŇÁňäýČ€Rá)Ą× 1&[Ibť&ćů3ł7…Y8JJ‰TJŹ·Ó®Í}­eĽB Ż›ËU†ycWĂÁ5{ŠVšQ»#ČI”ĆŹŠ"×ÜöŻŽ´YŢb“vSŢŐŰHJ%áÚR’’¬s¬îh:YR_=Äвä7.śĘ×ۇ©&ľŐ1č‹‚ö Nülý€¦›[ľ÷^ń±Ą˘BŢRôz5­ô:nÔ:e‡6Ëٵ‚KĐb®#]Ć”­ąžŞců"[2†§ţ ·ŚMŰąN{“ÚúľżÁ«´ćÜ…¬ňńš&Sf&gďndú!» )»ů‡ ç$J¨oë“™ŃÓr×`˘|ë<4ŕ١‚÷¶¤4E&ˇęĚŁGŢbT÷ Đ(ΰZöH§ý•·rË$ ĹiŃí€×)·hďÔÂ|OÓölŞ>ÝN'ż†Ő ­ĄDřŽŚo¶ëŢć^p}·JĄ’Ś%MŃÍĹ/ö¬-jí!Šž¦řXlµÖ#}‘HuĆ›Z5¦+ľ&ď7D˙ô!ů’—%%ź´§UĚ«çFD/žt.<Ő% wT^“ • ůĽŞDô"/žŮüńž—RŇTÇU“b«» 6Ń‹_njuëEĘŠ.8â éĹĽäĐČ6DÝę——ă\ó’{ů•îÓx8ż3 —cě…Í*ť´/6†‰:–˘é97mW׿ĹH·zŕ•÷Ç’ź˛ň°>QaŢIĺ/íš©;¦~äŤ î/š}^g[N@Ąü(ńt€ł‹6č#qoIáŃ#­YPý˙űĺikĹkxA÷\a†…t%R6Eä(¶¶i~¬kh˘kĆ<ö]X@דÝ3Áó3őŹÇG¦Í yĺöbšŞ´Vß@ul“Č=ďb“ŕďCp‰>b“6ŢÂTÍş¶Žź“†„źźa\Ă ËŰ‚DŃÓ›;Z‰ś&fQÝméń€eű˛Â-[™Čp|Í«™r§Bď~3Đ‘{Z@÷—=áFń‰‘ě<÷Ę„ľ Çčé42¦) m]&J”bą»Ďź;ŤT7ěůł>S‘·Ŕ;KľNéĄ\0v ýĽĆóvUňćĹÄŰ}űŻrAÚűČ»¨QĂ ŽîťŐ+üúy\2E<Ă'¤cĄ_úE"ÚÖ·[}ŐDÜ^YëÝ/8ś â¶ţń,UOŻŻqëçŐCáDúä:Ë’ŕů Zí…*d ‰*ʵě[}íRŠĹ®€ó÷CöËŹ7QťvÓ ř‚sĽv‘^0ĄmyaKüWÍî-s-2ŻfWŇz…ÎFö.ąż"D7ŘL¶ɆăN”o6öŞ·l‹ńťŞľbŹ=öĘś ˙–xE-oY»0†:äXĐ;sÎ,6¶¨«¸ŠýEqT@Îdyď©Ő`ţ¨ëŠĺEŰ2Ti–óń]Dâ…©[Ăť G*W˙ˇiSRľL&Ž(K:`hâ–:áő×h†˛Ąx¦Ď»5ă¸-ÇAŔ˙0)ĺ! endstream endobj 5302 0 obj << /Length1 1453 /Length2 6270 /Length3 0 /Length 7257 /Filter /FlateDecode >> stream xÚŤx4ŰíßľŞ][i͆Ú3¨˝÷Ţ›‘AD%6U{TíM)µiQٶ֬˝J©–Zµj+ŞÔ›Žçy~Ďď˙?ç}OÎIľ÷őY÷u®Ďťśp°š(APŽPu# ,”¨č™X @ ¨ (BÂÁa Ç  á$ćP4…”ţ(ĹTA¬Ł ĐöD„EÂâŇÂŇ@ @”úËĺ! PyÁ!=A€6 E“p¨ Ü}=ŕNÎlťżÜ`€°””˙Żp€’Ô!z Ś3Ô [ BLP`8ăűŻܲÎŚ»´··· Č -ňp’çáxĂ1Îc(ęá…~RčÜ ¨ ’pLťáčß ă ň€°†"ŃŘO$ęŔVhé ܡČßÎşżř ,(üwş?Ń?Á‘ż‚A`0ĘÍ„ô…#ť08 0P×Äř`ř $ä§#FaăA^ 8äuřµu@]ÉÂ2üĂ ö€»cĐ‚h8â'Gˇźi°Ç¬†„¨ ÜÜ H šäçţTáP0öÜ}…ţ4׉ňFú˙µ‚Á‘ŘOOw!3$üž'TKőŹ"ůs‚bb@)qq1aôęvúYŔÔ×úËř ĆrôwGą`XĐ@8 Šý ńGĽ Ś‡'4Đ˙? ˙^‘  p0ŕu‚#IţÉŽ…ˇ°ßkl˙=ŕ> V~ÂŕĎ×ßO¶X…APH„ď?îżZ,¤nĄˇk¤Ç÷‡ňßFee”Ŕ_@D % ‹$$Ä˙Îó÷ üĹţj‚˙ŮÝdÔBÂP©ß$°§÷Ż?Ęŕţ36<€WĐGaő p˙#˙»@1 ű&ü‚_!˙?í˙ĚňżĘ˙żw¤î‰@ü˛s˙vřě 78Â÷ŹVĎžěl衰‚üoW čďÖBŕžn˙mŐ€°3˘„tÂę\@řŽ đÎoŽV‡ű@!†p Řů·–ţj¶Ž„˘Đđź÷6 ü/vôŔ®Ř»ŤmŮ/;Y˙®«†Ł ?GPDLňđů’`€]‰ü…±ł úü’8@H‰Â`CXŽĘägcEEBŘ(”7 Ăü4ýF± {p´+¶;ÎăÂXŐ 9‚Ŕ®hýţ×nŔžŘý%ěV˙Z˙ş P(dv– syÖzZ­Äč-°:L°°Řť`Ő%†á|÷ÄßY—0Kc➲äŮÍÁtĂ™˛ńéFŢťÓź»Żs‚çÓ4ó08j=ËĘ{ůýß_;AY (§Q‰ôčeŞÝD#f <®d‹éóp‰NŃµçź /ÚŃkÖR[7@ń1%k#ć‘RnűîC+VöEĚ€Ő]Ę8j› OS-łŃ ܇đ¸ĺÖXúoľË6q™?ľÉéíI=(ĐéŞACÝO›5w0©Źž61Gű%‡SYěXĄ,5ŤľČ-‚sţŞÄü÷ɂޖÄ>QĎz'}•ŕk÷‡©hĎźŰG7CŃćJM÷ȆXSŇ:5´Ă-ŻÍôžÍ˘)†hőkúąrODC}ľ'°Äô103ÔŞ…ů댔 ŁÂIw†­ŞZó·…ľx˝ŽµÉoú>ĂҨËaݏ•©‘L-;oȧýtp.Č+qŠż—˝ŽÍ٬DOá¨vKa1Ůťw:L‹üÝ ą9Catŕ˛E˛bˇ~’Ýžhj´éj­$¬9ŔŕkTÚdŔVGV ”ü<ÁAN¦AZx–dě÷”ćđ¶á9fGĄęüáHvĄŔ?3sI9ups:đěUďl.ZĆĄrč;żTmß÷|ňą˘-E2ąÉ qŹ+”ţóť¨ó;®r7¶T(N›’J? ř?˘ÔÎßřěŠű6“—\‚čŢU›÷¬_NÎ^ŽĚ¬OŢEµ„Ř˝cÉ»zx`K%‰HŤ_y‰nâ {-”°´dÇ“ĹjşÚýDv»Xą3;V»HÜf–/żžzîi‡cM˘$v)®,G5Wŕ…śË4]&z–_3ÚĘ>~RFc+D0,č5ŢŰŻ7™Ć÷) N~ĺ˘ qGöĎ-×M~šň/'Ó/ ÁŮuć@+ßŘËŕ4˝[Ô/¤ YY­4ż2ŇÚ*˲=ZWâ'ĹÝ>pÄä#’3ś)Ĺ/ ˘Ľ:íKŚ7†jĄLvW ·YŤÜO_'0ž4yź´ľ–)޵N[ďč]ńša‘r%őĄŠŁ«×Lňu—aPí· HvˇßΓŢ3ł­üí觡˘ŔĆýXäÍş^“6,ţh°ČŘpťýóË&é˶·<ýmqj·gÖ‹ \•]«ŚM ¤oDp„{űq‘łڱ3nş †WYź3tč’KŽľ:š}<¬E]źĹ­ŚÉÖŐ,z۬óáč°!—'ă+á˝\ľws`+ßÔžá–˘Ľě+$4özC±е„@js‚ F®ŁśŃš±ă2ŚIi!DácŤ%- w¨Uhx÷‰«ľE˝Ő«mőŮuĺŔÚ´ ×Úą.Âămî÷SŁv"3”@\Ąó‹/na-8±#·PÔä›/ewčŤV›iź…ĺű>¦ HŽďu‹z—ď~BaKwŠZ=8îí‹Ů«Iz˝[3ÓmafÂŻžkBł"f Uę6ĽôwÖŘ4ÄI‹żíćĺÚÖ ç+ÝHx›Â°VÍ˝Ňd>µżŁQZ‰Ń1Z\÷›÷Čłß–ű®ÁćĎU~g0ÂRPĚÝqł+µ&b—ŢOčCmì߄n—uX@S´ę–Ţ;ßjŰî 1 Ö&gŤ‡J}‹‘•DQµoég•VRš^·aí5#šů68¦Á>č˝ćpĂhŢş'PhY|1¬¸ÇŰő}äM–SMa ˘Ňx8ŰŁ±®Ýv ó̏ຊ.sx5u´ßášdoO@G‘<äŇĹ×4ëQpW˝ą[ßçôEú{%CN*ô‰‡‰»3Żšł®Hůá·¬šF©Ě ucî7'ödDŕ— y·ÓĄb{=F§´ćŁ\ŞĚ¶uŽi|\ň›‰ů †Oů…«§_ě“vie#TuwŤ¬ŻŠź4 QG­m\˛cVm P/ÂB§ä±yÁ±Ľjb·Ó!‘ű…¨¸4[•ryöWŐ‰ýśXǢxź˘šq&ń]bŢ čŢ.~†:ŚďŃń6rúřČ=‡WŘŽ†Ăk×Ă`2‚”@^+¤š¸ “ ĺ­büb)ýµ}MľŻ5Kšwx^—†;ü¶K*‰”ä"ĂÇěOŰŚ$ć{Ż”äÔU­Ă»l©Ó‰;gŢŔĺ7k}8¤Äüž‡ąs'wĄüŐüŻĺ\*DĨTúC$˛żN‘&í¦UŐ§Ď0Q n©—22ö7  Ň0Ć9‹Í1¸‚lLŢPRgúrĂO +Ónî;Ú‘¨:Ĺꚥ´ŕKű˝MĄ‰ Ń’%#ÚŤeóŁűě{RjÍt .r$mëŹý˝ń«ě)ÄDOŠÔwś&;jďĚň#7¶)vésjąĄç~|*oÉúĆ-ş? 8‚ #·¸d›0WŃ\?},ůÖőĆT"ľ¬ďiŽľ'(…pł¨´­G°¸wŁ_WÔ…yAŮ誤eÉsCď”"¨Á¤ŕóĄUÚ,˛ž!äAfüg)Ż]s_"×9X‡béć9çËţŮ…‘žÂô“v–q†íjęËÍŮrľ0ůł ˛ů÷}ąÜľ e3Í6‚ĄÜYíŰqKŚZß]á*ÖĎÖ¨Ű]ÄĎ'Çí)~ĺb[GŤ<µ”×Î÷SUÝ~ §~ĄÍIĆüČ˙Ţ G+ny¶YIŢő‡íýĂ®Ąľ˘§¨ĄSś€‡ŃšËťdńŞŢKM§¶…HŰh· OüŐ’hŠşzĎŇ/fR ˛Óš/®93`rŽý\Ů]]ŮmďlUŃâíaŤůgU”-*xiЇßE§»ßBU=I6úśŤç¸XJ+ä~xĄţđ “iň˝vőqI<űSJTIČ-Ł·„—n:qţś~2˛SąÁnË6p‰ˇQşş­ś§ű\Ľt÷,^A`d§b]„ĘDÜčyrGaGMUŰ©‹K§ľ·ą—«8Ţű—3R–°¶±ä9Ń >MG°5ĺ ľĘ)ʇ»j »6ń÷N:LŹŚž˛ź±ż»Îđ)ä]ŽÂ&DQĚCi+ZÎFľ9Ĺ4…ĂÁ«¨ÉÔĹąQ”+ŁyşßďáŢF_-|Ýĺ"OťŠ˛# ŽfƤnkpť,©ÜMkvçÁ{ĆsLđ#ÇţVUOÍwÓYvQý5=˝f’úÚ0˛{˝^ś U'* «˘ú8 şÖčZoSCO˙D:tkóhő©aîC>ÇĎĘňͦר5;5dkщŕ«hť°j‡JĐ(+¸SʉŕFĆ,Ý:'WB©×ÔÜVZ ±‡ç_wd¦h×>+ŤiJ×=˛hĄÉě(ś\żÔ˘ŮçßčÚglg5žEOÎOň„]˝ômš¦ęě9‚űˇďxzÓuĂyuą–Îľ^ĺH‚ăŮă| ťCçÚűúu6ŤxZö›QTöLéüć'`ÄkIJ“i)±çÁWî`ż•Ő„§µąZ/?˛;P„ľş[ú€jI_ÄV:DyjK>˘Ü¬;đZÜě8 Ň™łđĎŃ›śUx˙¨LďŔö›´˝Ěu*Ż[ á”ř–K2řaĘ·’ŁK,iâ µdňXM Ł‚×^˘éľ\=6ł]yš$7nóăÚE’XÝ«ô0ňľrUĽËÁŽ*WŰďŰ‘µaz•zc~;ÔĄm»ř®śuČű\ÜŕŁ`ŕĂÜ­Á 1Ş˝óĄÁ˛ZľJŞ˘—•Ď^ť3KÄÔšˇC˛žO—őú®­t'šćĹŞťkx8-™tSŠ ±ÇG¦ÇrTÇ×wÄÝOý¨Qľ2#™›ľI–_E çµşŔírSşĽ Ű-@îogŰŽŘöáYÜ 7Idr#Ś}÷lŹŘئýĆXJ_Öĺög˘\!kÝ­ÂĎhfČ_ÉŢ˘Ř ż«ô<Í-=ŤŻQ8ŹX¦±ÎĽĂ˘ĺ‰WÖł^ŘY¶FAŁ›cZ™âłqôę8é~*xł|ŕ©‘“MxČůŕ˘[RJđbş¤eÍ‘ÁK̤ÖÁ§@Ú/Vʼn:˛l2”C:k©ŻI+tbRfLĚ FŔ˝ä."*n6Eź* $ä]-Î\‹ ĘÚp-«¸B_ě0ÓĺPĐvĘš•Ľx§?'©‹‚¸Ěˇß‘‹RFĘ“fŢfdŘOÇpY¦BhĄřÔ$jöôW2!±’ţ=¶±nMŹ…"éŻőîSć¶Ľ‹Ł-‚0xŃ?´ÂŤ °J;ţqËĺNs´‘Éš©ÖmřXB]us´ŰĹBjéŕ[ök§dĺDZ#=ł†;qG2ĘvFńeɢß:x•݉ֆz"[®˛ż\Đę%߼̳7 €ţpxKr+ýŐ‚CH €­‘PwŃŞ^-ôA®ÂĚëľţ͉ęú+,”_śW®ÚĆ;îu_l´lVŘoŠČŽź§őňáQ~Á0u–WŰŚćÔDŃkç˙(3P,äĐKÔ ™ß Ă×Ďx„FLÝehr\ď:Đ3W§Š]Žđąj­ŠXHÉĂŇË^(ÇN»ŽD1‘ —Íů.ĺĹ]l%uźŹv¦Iňúúmh'ucśóp㬨ikyfPb®´ ?’osj&ÝĹáŻô 8BWˇ}¶‹4seŐu¨–W"gđ‡·ťK®5Y‹ŹÝ Çqăźw6°°¦Ž'ż:˘}“ëeőÉ€\éĘoýŐǵ Dąt4ű©Ř‚áJw—ýX´0†Ug^4zlÍnuü›Ó˝RŔZ/·Ś;›ÜŹřť`¶«z{Jep+x9†ŘŕŰţ–őQ‰{R†ăB©–ř •4ť •«BŢŐŹÝ®V|0yËţÜč;˸ŠîQÁab#ťO†7ń§öbćpőĆůl|N˛űla+jÉňĂ 2x=¤^ß9No˝Ż2µŮOŘî†@qcŘ4ŇÍ\-T„ůĆěaĽ|¦¤=!F‰tžÖľö×_BŘ’Ëź:ň­˝6°ťATů|â÷>X·|ˇB١ŞĂb@H˙:–Íí¤čm +6Ďě´Ů şż+¬ţmĹŽBIÔ«’¸oÉ Űk˘Š©AäŠ)‰ßŮŞiăüŮ pöăuÇŰÇŮWl˛ý|G“¦Řń Â•s®SbécĄ/Ü=áŠţ rřľň{Q+ňg‰UkľŠź{.›ĚĎ~ýĄĐĄ)ÓöOŰ“őUv”(C°rúÄ7ďá+–EľÝM%€äă͵y®lŢĹéĆýĚ–tÂĺą3@Ë*?'úX÷čFWëS»©ç)7y¦2ü_Ä7ULź‰P—vÖQřĽYß"şeÔCtä­ě4–¸ÔzarŃ’›Íö®‘í¸wě'ÓT“ˇĺ;uWíţëÁÍhwŹRW=Ň—ŠŠťPÎWODS3]Ń““ĎÝĚÁŰ<ëBîĆ}§ółŻĘŮnŠÔ{’d¨A“ÄNůşg«Ń%Ö\ D×kšJľf|ZsŚ2zÁp´Wm‚ Îsé9$Đ3řzŃăPÎ?XşĎ!HŁăwW˙z~LŘÚůň ťÚ&!˙2Ô\d‚JNďІçş@°6¸ĎüSˇô٬ČxŁ|żpÔ»7ÉlFÍOB .ľŽ'Ţá5đűŢ,nÍb†ßƬ… "ó â9Sg.Λ ĄÇZ]®T5§GH_oźlúťĐžV±ŽîGĹ“oÇ4W«}˙Č8#=5ˇĆ§·ţ¶‘ôˇĐáĂ÷ń®đ{•sE^®4­n¦RoZLIsŇŹŁES»ŮôëŇuę™Rř¦ďÁHŽWKŰ8SgHA¶z uţ“ČšˇôÔéń'ZŞźÜžD]Łčűt}}çćşőÚ5†ÂÁű ¶á)×Ü`˙ô˘Źý‡›Ń,ĺ)Péü ¨âiĺ†}5%K®u¸zČ<űyü\}­ĚŞM˝ĄPµ~8_ł*ëŔçݧ;xOĺ'Ąą¤ěáŃ´Źťú`Ž)lŔ)mR‘`ˇŰ“»°WFŔ{qňń4ĽY§Á¬ SŁ cÉŹ‰´Lľş)µ¨ ĐQW|¸őéŮí8€ˇ=ůşŽ‡g{ŁűWĐ<ă˛G’x˛ÍVî e«»‰.9W|đjóßKĆ8„á§”.ůđµećô­95¬W2–L´Š~˘O¸˝XV );ĘôíşÜ—R,›ű@SG4óęěuF’ďC)ńBެŐ˙ś‹Ź endstream endobj 5304 0 obj << /Length1 1612 /Length2 15306 /Length3 0 /Length 16134 /Filter /FlateDecode >> stream xÚ­´cx§_ł%«Ó±ů‹m۶mŰéŘNÇFǶm۶m;Ó˙ç™3g®óÎűeć|¸ŻëŢUµW­ŞU»Hä•hŚí MDílťihé9˛6†.N2v¶Ň4Š&f.€żF!Gg ;[agN€š‰1@ŘÄŔČ`ŕŕŕ€!ŮŮ»;Z™;ČUŐ(¨¨¨˙ÓňOŔĐý?<o:YŮH˙ţ¸šXŰŮŰŘ:˙…řżľ¨dbp67ZX›„ää5$dĹäb˛*1[Gk€Ľ‹ˇµ…@ÚÂČÄÖÉ„`jç°ţ÷`dgklńOiN´±ś'{#‹ż×LÜŚLě˙qQěMm,śśţţ,śf޶Î{ŕl°°5˛v1ţ‡Ŕ_»©ÝżŮ;ÚýŤ°ůëű &oçäědähaď ř›U^Xôß<ťÍ ś˙Éídń× °3ýilgäňOI˙ňý…ůëu6°°u8›¸9˙“ËĐ`ládomŕţ7÷_0{G‹Ńpq˛°5űOÔG3Gck'§ż0±˙éÎÖ řߪ7°··v˙×m»Eý/ÎN&Ö¦´0 Śs9˙Ímfa C÷Ď HŘšÚč˙m7v±˙꫉ăżDţĎĚPü%a`lgkí061…ˇ“µsţ›@ţ§2íźČ˙ ˙·üß"ď˙›¸˙UŁ˙í˙żľç˙ -ębm-k`ówţ˝`7Ś@đĎŽ±6pü˙„ŘXX»˙.ü×@5““ü˙Á‘p6řŰ [łż‚ĐÓŇ˙Űhá$jáfb,oáld05°ţŰ©ŮUlŤM­-lMţ*úŻfhčé˙‹OŮÜÂČĘöźÖłüŰebkü_É˙é_Ôé$Ő”…T¨ţëNýW”ü_íť•Ýí˙űźĄČŘ˙ŻĂ?‚‚vnOšż/†‘‰ Ŕú7!;÷˙!Űż`ţó,cŕěháĐú[2=Ăż ˙źßžtţ Ś­‘ťń?ł˘äl`küwĽţ—á·‘‹Łă_U˙őâ˙üç ş‰‰›‰Ěę’ťWejFšs zöĐ„°V_čP°}q˝rAž_•]·ojŘGąţGu0mĂçW«űâ™ýç$ĺáHš5Yw˛ÉU.Ž7Eoâ&i;ŐaťnńĎ´sµßž× ŇŰ`š¬ôއ» ŠşE¸SíLŽP×Ď~D®y~(ÄOöp>F)u1¨ @H5ůgç¤ 'ĎOdŁĂCÝ·ŕ˝ŘTY1Đ$\č>Ig‰ÎîúŽőF_ŕo®lżvą*@iĎ[~{Ź8ă_k 4z‚ …°ĺ5Yb¤Í*řf 8—*eŁ1Žćúá/‰6RLő5ĐßNô®ˇ IX(všëQt¶ Á©3ˇšÍxX7ŁyÝJÜ"™÷m…z–"X÷ńřűoŰĹŤ8/\Ú˘¬ł|{Ö€«ˇ~ЦűAÜ—2 ÜÝK;®3÷°1<•LŐ6n{ugĹR,ĐUJĹľŕlPI?RC‡Č™xy±8ř±i˙0 8-cQ뀢°Íl ĄĄ&YĄ&w´7űö6™éá ƢHQ°úĚźeé)Śó2˙™Ĺ¤Z‹´ÜŢCĎ!t9¦ň-˝QLJR¨A9[K»nËÝ ×ůvä&É›%ő|TĂs'j’]ŠMł_.t_%lč â¬^Ť3®`EăîžëöŤ¨§0\ňäöźwpż›(ő<ÇśDžŮ®Ł”7:žťĹ™cűd[RB)3˙ěMĺsi)?Öë!ű ŐbŘy-ICXś0ó)öţMnŽŐxT_ȉ'Á§!űÔW®`ŔgÇHa\ ëˇ7ٲ’WA@ÇţЧfE¶żHe®fżŁíücŔ±!ŘPe`ď§Q« ¤ßJ`ä~°m÷50a~ť¦Bćb5śÚ˛oo —łµ~{áqä¤ŐáŐ݉%t,Ú`Jś îůCWµz×éáivg”ô×D®Ňţ2‘SZ+§Šv]˝™q󭻀Yć™%Ťľnř¦¤äđÍă“Ă9RŚŻĚÎĐ ¸`ÎGešĂ–,ĎDáJáäę¦ä.¸ęŃMA ŐÚž¶W-˝’PÓ8âJÖÔFaÝ€‚Áé6Yů@7YEQ:6âc2žŁ¸ Ü.ËßpîŐ“¸·f­>4ËÉM† óř3q§±wëí@¤Żą =Ž`fGŃÔ=…'$Ş ×3ŃÔ»aÉc€m±ąípň¶"ơ™§ÂQQú#fĢĘ:caŢć™§ţ0LU1Ně¶3ĎqĹŢ« %µ¬=>ô`DZ†ˇí•Ó‹slâŘýeŹk¦ě•{Żg üšA–p—‡ť&B]­ý‚Ţ0›:¶O)-ňaÎŮÜŐ0–ŚD S IK„‘L©ďť?ĹLĆfÝŠ^ąŃ;IÄ~őÁvw2™qkFS ú-q»vcĹůkĎ(hÔ:Ś‚Ę®Ďś ćŮŃ̇˛ŠřN˛±YJż,×îůqO÷Ž~Pvćá0!‰±ţđĄľRŻĚĽĆfÔ3\ßë˛në"Ę<{?‘÷>gş›‹Ç2ĘZ9ÖYÔ:·FŹLßs©göĎŻÝ–j–ŃiĽĚ‡üřJ°w<ÍÜ<‹*l8<´ Ő– őˇź¨2ĐW"Ň’2®R*tŠ@źähÚť‚‹U7Ńܸ8rPđłr 0L´ö Ví?ß°>ń …3_;Ë.„sŘÓé a¬ńiĐ€zÂOöţ,ÄŽaA{E@›Źţ0iZ0ú•8?Ůí˘$ąŽ˙01ó«ľh ą!  ^“'FĘîôŻiŹ]Śľžő­WCáSD&"ú­Ş”ßťM>Ö9e÷ş*XGšáűŽó˘˛PÄünGÜ"Ě•IŚ|·v ě;łřvóT'U`ütAŃ §‹Ű8&†µźťú˛˘+rO‰ëű<‚Op&ZRXôzwŤąöC5Î ˇś–])äŃ*‹Y[Ă|5ľsŽÉł§üNkćşąAç I‡çňxÜÇh ’Ť˘_x–쀍˝8‚Đgví]3ô¦ÎÎX¬`óŽ«G(Íž8 J_˘ůWĹŘ7É÷Äcîsއăp?Îö÷Ý€¸«Ě⊩ yÂ=A ´w‡řůcHŻO_C&kÎŁşÓľŤv?B9ůD÷ĄuňâŔy–ž¸B!ď ĚÄ÷% \nƸäâ ´IÍŠ4{żB1•b0…‚´Gyz#Ş‘<¤2, ÝÇdžGSŚ`ęëk´ĚT‚ÁęvqwľçÍc•Ö—Ţ6ôÂ<_¬€1&„/®TJ Řjň&s{qü¦ˇ#índĹ•(hBű`R-—6¨'T™ ]ŚČgĆóúN°[•ۢ›ŰÄë…NFÔˇO˘Á˛ó­¤ŁR Ůص†< 01ó١ڙčO·q«ďÖ8Eühůé‹Ű)_ł˛K§ń&#ŃŔ!ZĎY1yśäŃ6kzÄŚWĂű–.ău žř×l‰Ä.F‰}‹ëZÎMkţµOíhđG~ŻřĹÔD¶˛Ťgł)wľţˇ]Jş ©QşWD‹¬Ď8¨Ű4˛Ă+n»ýáĄUkÍaîNRqîŽiťAŠłŤó«_Á äjµajмʨµ ă SQݚܨ ®Ú\ó];]Ň!čťükćľBlśžpŢ/ĹąCýhEňľY­öa´T[óĄ¦`˛ #ţ-–EËŰŘčţtiUĺőd!/î¶Ľ ËăÖâ†:“¶ÜTRŘ@|ÇŐ&Éé'=”C†ŕ´Z%fˇ ěť*Żâ•"ÄĎÖgJ”Ś÷>‰'9b°t^Cëţô-ô;aűQµYĹŤëńA6Ů®ń‹t\:߲†7 ĹąëzÎĺvŽé„¶Ąľ‰őxá#)ŕňňp:»öo˘ž»ţŐÓ3®Ěâü3=\ Ś®Y1‰Ĺ]ŔH˙¨%{I´Žd’†¨Bś™ýO TĚ*´¬Ü'kş°#•!"đ¤úD2Iť¨7ŃłŁň“ýRš¨D^^wł¬Š l5¤~_.Ü"|~@Őv4¨ÎBŮôÉóS#{ËĂęŇý^Týś«~ n*ź:ř»9˛°±ß ”“öŽířň¬«t‚onł>:M$"¨Q Â+W ˇŕź<˘»v­iĘšWSwJv ßičĂ3¤¨ľQćÔq‰Ľ¦şÇ°nĚŹ$ş—o[ \ĐÇóO˘E°6Ἃţ’¦´–ÖxÂ=\ÂV“›ŠJČŁęŇ`ŁŚVhtöţËIBš†Ěö6ŹĎbZŕa›]}‡Ěý‚Ů´Y ·Ŕ \ŤzhŮ ÎŤ Źůß{˝~Á~ŕ˝4ei%ç©+´K‘×W•’KyT~ăżŘ¶HŘŽĺtŃ„öDOz–~~#?Ôußô-D9ĺ[äĂ\d2¤´Ě)׼öş9-yÔ<꣧"|üwŤnްEŹnĘ–ÖĘęŰóTÜ®O ŃwY ĺq©qďO gŚą&'¦X źbY“ŚHa1!‹Ô"¸‘tŁ/‘ޤŕ§/‹fjÂńTłJ ő+± ×Ë?؉ĚĄóúLçk“8ËŹŔJlâÖ:|ŃÓ;–/CŐĐsĐ-fT­ŁPúćpQO#E¦»í\%ók—RÖž¤žćúëJ:h~— ‡Ě]ŚÄŻ­©ŹNLš°–CĄc¸UCŞ7 Ś ęŹÓÓŹ"Q«CŐ7´LEfÇŃŐ2qsŽ ˇÍ‡űF¦řľľ!† Ónud@e’ľ5™CŢí‹â5@ć~Á‹"ç=ŢĹăŻđ«d˙đ)g~6­T=č’>!ŤCzČ’¸E‡@Űű# EÉžŻłAFߨî@ś‚ű2}ÉQ&Ńq[´’T=ńµľGµ€*ĎŹ´~JIť|6O˝î—ęö8u/ÚŠüÝżv8ۨ3·ŁfĐŮý4`ÜQI`C¤mešş¬3u  śFÉ:lZÄŚýˇ3:áÚ·xtV§!ŢmçG· 3Qč†:ŹYýë2AxŚ6¨F Žó«á@ ”©k[dh´,<Č69Ü͝Ƹ¸+/p7Îáľů(qă ™Z€řů™Ů"éą}R·v•Ž„Úü--ěX|Jú—0łl ¤J°##Đ)ćňĆ5: -ŘáÂćÉ{çnáßÇ–…łňŁ ęŠPČ%~ŠĆ§ýQd[ăĚ€+vdŇOřéy‚ŠhŻ«źňTe2úYj#µŮ%@*‡ŢĚĂűňó‚“\ňÔţ±÷CyŃçćĽÂíŽď2 mÍB 5d-Ś3ĂF0}ePL?˛űö„AËbt=€D¶‰“ŕ\<,D‡áBľ( /ŢBy’/ěCűIňĄ, ‹Öç#C,G•Č3]Ś9ÖKŘű@Ć\j«uim%ѱŃsµ˝Ž%<‰ ¤Ůw^щÔ[/Âě±Óϵ–ßJ’=@Ń3?ä6ËťQf0&ČŞ”Y GŘS•ę÷Ńfăßg™ÂřŹ%âÚ›™5ŚÜKăôÝX‡ÎśŰű5Î‡Ž’Ź bą\łÚG&•˘ćy0ąć/Ţóy}€ˇŠ9ů ¦ßHš–ßýo5˛ă®PE”Âm¬Ëľ}ýÇ_Ĺśd˘pÄP˝—vúő´ä+HŮ:ě™á$–ÄOĎú–öŢ^ÉÍů˛cšËXŞůRćďŰë”î“›ŰÄJ0yÜń’аS9a$'~˙±ŃÁčŠ)ÜĎó;dwŽ#kOX•şK±s…Ţćž`[űv-Đ߂âŘ,!4_ŕĘ&ÜŠů /Áş˙Ř6}¶f›V©¬ŔýŢŽŻ< Â˙ bÁ•>č´,nx´róô«|ĚŐśćP«‹Ńč°s]x›ŻYÇ+L_µ…3nd&RJŃ z¶zĄrJ…‹•ÂSÎŽS#@âH0ďÝNĘydńŃöX‡L˙{ĎĚŇç¬Sé•V)1mńä…$Ö­@ 5'fuřg¦šśňÁrA˛qv˘-jĚ‹1Ě\. vĐ®˙çž9őoJ*ľ×™§ţ[ŽâA2µAĂ5Afë¸a©™Ş÷Ů]ĆŮGHtIĎŤŤř¤Ű­\T!Żĺr Č3üd Š>ŢňÖ†šYĎq¸@Çc ˘ Gw4Šn±,ăĎű¬tN!Śľć&ĘLތ8xť|†cÚ0 ÁŔ­Ú NŃüq¤AŐú>Š`1ďÇęÍ-8Ţ„ÔxţbĆWC{ť÷M—/a§8~Ë×ű€DF;ŻVŁoôń‚¨Ě´ĎŹÔ m2ýÍŻŁČµ:Îá Gß” =úžQĄ} ·›“‹ ö#ÇŽĄ4D$ësŮ´”üşĘxLźE$Ččd0Řo-gDf,SfĎÓÓŐŤ·?ˇź{Ź^ź·(gDŻ™çbH9ű’Ü'Fěř‹¬˘—f•73+ű×,f–'î)EőIŰ«nSRq +9rŠdYůpš)\©ŕ•4śănNµĘ:„_dAČ*‚ŰaBá &‹ ŐżCötĺ­ˇě{Ďß;năßşyĂŔqu˛€Ł4űw†ŕźěUŘŔ][őq°ż…Yîâ!Ŕ\‘݇—®2>zđ'±—śáĄ¶EŻź˝'eF+ćwŰ”|'vďhŰü$čX§Ď=p‡ŠA"`6řň!­Hť+.Z‘xrÖ…ĆŇóiÉĄś´¶÷÷ÚNĺż·t”*k78ÓŔ),eşErýNUńMq“›*đř ěAä"9¨1ŹB9ŕEđ…@¬Y„SĂpŔ”ĚĎőşcZó7żî* Éö|´ËŕąMfă™v.k­gsťP)‡%+芠¦?ą'¤Ž^ţ[Đ•ăY±‡(@0X<p±×î—B$—p´9 hŁ€ěóZu@BwĆŘ ’kěNĎr¶#çˇÂPĄ;µ9aŮĎć©32ćWŽ„ÍéM‚mž{ťĐkDôí*µÚ¸lE¦ĂA…r¤äK@›mĽ·fż‰Ă?”G^qř‚Ś_u,lM<ů‹Ŕ˙x@ś‡ç˝8x•áPű_čô_ÍĘv·  ĺ ]\f@(”«Ą–ß'îgĚą„Í8[Äzn6‰­±˙€·©EŠčĐJŽŁŤ{ăăA¦tvyŐ¨ąĽ©łAŰš?[jŚ ›eöúV@ÜTŽ“żŮ`?‹í@Dź ’¶4OP¨=@ŹÂ~ď§1ņL:/KŽ™ë€7ŞçKqßôî5óż+AÄúݶ°S®ńa|&ů€ŤĄí®›;vFŁW¸ô‰„ş÷m/I÷Ä)á-KLă´¦[Ąíô‚ĂbÔţů¦ă 2ÔĹÖ÷ůejmÝIłTyËŃÔ¶ E°¤RiYĽi/y&€Uiw:Äxµ Ň(`‚B`žH+wüňş kŕ+7(.ˇ¨6kCz˛xr~€˘Sş˙Ő$¨Çäí+˙j4-(tUT—Ŕ݇¨ô˝'Üxąó?hD™ÓÇ´±ÄK—ÂóŇíĵlj…őËş/VäcůArtŻěŔ šŹ†ťö+J_°Ęş.<˙őcáf|ý*B“îDöî}Eů]ČgŃ’|nÚ»†*Ša>«ü⋢đŞFoz+ÝH”őHydĺľQ5Ó·VÁ˙ĺNĆc‹c› řr3ÚąOk‹Âjő)őakśÍNS€{ˇőÂ%¶źgˇĽ$<çiQŠhP˝Ô79ü>Üő{"Úďe»fjŔ¨ĎÖáu‹żĽ˝(ńđIŔ8FnÉ“Ňiđ.ŐJšĂ€ŕ’č"0×ôVôÝČ{Ă’b®ëχB§ř9„đ!Mp&G‘&’ +˙'ŽüÜUýĐë>ħh öŐučG`~S0=ĽIg쀂Ă{$Ô7ĄĚ [0?Ł÷Kâż9TŐýáąHć ďŐČ:üš /wBč€m¤› ťőăű—"YUÁˇ!Üţ®AFę ęMa%ě»kYzÂ*—‘ŤTôŚŻmŔÇ4úŁń„ďélLĽĂź ‡ĄőĎ<ú.fÁ#ĺ'Š5­X(”ůČ)ÓSă’.#.A+8¦E˛I1„§1ň±‰·÷Z 6˛.ĺż3y'JDúřvĐ6űŰ!P{Oy¸10SŹÖô Z±DP/W˛Ă˝ő:ΑĽ~ť u!rŢ3‘¦9pâ‘öÇB1ľÚ5č´^eë`/‚}x2RÁőŻ*;Ś›â™őOŢóŽ`Ë“MjűÚÇi‡’Čă±ĂÂôŰĐŔç<Ü)äş­ŢĄ=¶+€ůtđŮŹ-÷jZ(µ¸;^džibšzn„ÉĘ9†Ç¶§Ě1`Ô„xçUĽq¸c'Ź‹+(ĺQiÎ>˝ÓR9©°$~6kS,—‹@ äÜĐ©L»†y]Y˝Q|©ÄŔ{Xó>î„ßĂ.Ů‹ůˇę›m˝S´zÄ4¨9O9mň>Á3Ľr°Ű‡Q [ŘńŽqH“ 8_ UĎĹ#ĆÂEM- ®GTU-řhĂäA=ĽÜëßžĂpP2sŹlE^M1ř;ë¨$6źd…?XX§¨o‹źţµYđ Óúy-ҲçëM°‰3vžś•;W©%َT—­ ř7ŚŮ)‡7›C­ŠgüÚ‚rŰJß 8»“‡aި·Đ˝śBP¸Ď[ąĚ„0ł\ŞËž“łâŔŐ/•Dú“%ü­SlOě:— n˛co¸źk €öÄr`ć©Ŕ™ŕ7.ĚťÇ|«śv+ľăĚŔHc§ă8ąŻúžiŇ1>€Óź~Öš<×C¤<–•š>Ż’9řÁgŹžvLáÍp­Ń8D´3Ţp¸'X8č/FĂÇ»‰˛ˇĚÖ‘LTÓbC8ěó kL6>Q˝Ü˘ÍYýtÝ„·:Ô@açÇ€¤ĎkĽM~H—s¦˝Ń ygµĺ\$ÚĐĽó—ÍÂÄ q_îLĺáó€Ł_©vOĺQpEHyT”,kN«xFÔ÷X[DfÚö{+†Y¨»zČ…s±SŻë”@ţŽ~ZěµúÖ3{FOa8}Ý:ÉáiTj Ź.ÜrkŃŰřYWoͰ*‘tÁ¦+5Ä5ŠPrô;\ő 2ţvű“ ›K ˙Đř€ńŚ"¶´üáç콍±ĺ»NJ¤_*ŹăÖ ÓőˇRtŞß;䉽ëŽ')%»hIbÇh† Ž>W T ÷CMÇoýpNÍC'".÷Ě7ěÔe<ś¦Ô-#4Ćľ˙z@ij®jÁұ_é=oĂ÷ËŐ;ń‰BH¸ř•üʆ%÷ЦřŻîˇ˝žŻLᤠ1RěĂqőď•W2™ŕŢĆtMQ˛xc1a]Iç ¬D’ż…Ä–©”¸,Iž"»Š€9Ą}šµÚB¶¬˘XäfÇŢŁă@÷Ů%Đ7Áhi‡{X]¶7ZŔcŇîřGoşÄ@·D….ž;Q”ȨעţGŠŁlX]áJak0üíůŔZ2[ĺłuwŐřtŻLşĎŰĆîęôow}–‚ƬîŕOć8JÎ7Č/bi#X&Ű;X˛ŠőâQäÁ?2 ¸•¶Éűá fĂ łOˇM¨ď]hP]= …^Jß/Żěś˛É:‘jW7?( &HiIš«Z˛tŻ?O’Ń&d6ť$,uÎ϶Uůň!Ľň16 E7—’óśíăŤW…ză㎄c.ö¨ű§Ĺ{ =ÂP!î_ŮNőí® 2‰} wµW…a‚b™?oÓş<†Jăîü—ř¶űYq`*Eq‡)§ ˛Ż§÷ĄSö1×Τx~ŁŃ‹Ç í#{ŃŘ%"@ŻLš†›¸Ëńů;DI’ž^tT—čK±s…µ—Bśg ­ŇG§PV÷’ŞÁĘţúkUŞ q‡-^vfX•űůŮY^ďŃžWč °i¤GÖ|v;ż˝Á06očŐzFW˙×Ȣ=UL©.C±´ńćTTŇźŢýhýŹG…©Őď ŹSK+Ům˝F1Ťr<Řţ›Jy ŞB¨|(˘k=4¦OR"叨EÜ% Řzö•.DÇńŕ+’ę WRśxRě€NţŠ=$Ń#?ĐŽČ*Z č’ü˝«´Áă×ő1GrÖô§u75&;xÓ¨UłW9ę$Ťi9ĄŰľ=ȡ€üőŽ~łą¸kÚŠü; ·Ň¸—z;<}ňâÚMÖδÓ#ť;Ě1é…^¸ôH÷e.źć Ľú?lB i®6HA >ľ=´b¦b'Úb čBe)=aĺą7ÚĐ˝NŢ_ ©‰MăőbZÇŔŃÜ}Ń»?Ž ~¸5”µ{Dgµ öqę«»XÉv‹±˛Î%_}ß­µLŮqä?šG@đ‰{o>€çd"iĬޮśÓ›Ăń†±‡ť řöSWÝc“AčÍŞ"9𦠴>â đV|Hâ[H»0(ń¨B/(ąŻ ÜmIÜ€÷üfa˘u}śŐo5 âŐ>â CČ.F켢™§=‘(6‰XÜa˝U<źUńüŃiż#ŮâŘ` =k/¶×xG[úŞŰşkKyŤţQ)I6bźuqyhî¤Dć=}şIŃ·Nń*­XeL÷1Ú…®Z‹}™ČSińË’—ĹÂo#× w¨fćD’V˘ÜĂ@"{$ÇŠSY—ú¤0ßzdjßZ‹ks\*z¸ěŃ6äFcŹ?´l*Lëč3ě‘sÍÜ\µămćäöěł+;˝O˝A¶ Âď“‹s 5‰EXy—=‘ Ž Ü„¸D6¸®¶WĹcTňšÁA"#u;şĄr±O ˛km=kÎ5 žÔw‰"j P?SińrôÖ˙LŘ>L¶ŞöÜn®©%¦Č÷$[©Äş(&Ő2ßv.ŞoúĎřş•˘Ą©y^é-Ňđ#"*k^Ř™sF:PDÖéHř™?}©‰Í4nc`m8«3<Ŕ+˝°H¤ˇ‹x»ËŠ:^ éPĂCaYŻ—Qwy›ČžqŃ ”;f’öv(‹µĽp’€ŻŞXyś} ?˛‹¨’Jٱ OM2wyZ ä‡:DÉ)gĄđ“r=4Ł«Ë×q*7\«|gcÍĂđË"v'Tč}Tn@3ŇíÜţ]DďS8Żl?ă¶­‡ÓĚ®TÔĂb5ˇŠ˛ŠŁ »ŽE¨;2俆5"$Źť9# î=ŕMŔŚa Š4­ŁD^źCsIÍŹŢ÷U#Qł§—`”­›´9KÓO»~őŁ.KJöˇá U…SC´ňN7^´ŃĎż€…±S×,˛Ż·ăď˛|§†<]˘˝räÁň‰FCSJÇĐ4žżz|öK«ŤvÔk7Ţzض¦b™ón†(0i<˝!GŃÖ‘é”sNy‰•,SČ_vť8Ňż&&ńp6ÁŹ"¨ňňś!Ą×@W`(‰.b›[_Í8Rí|KľŔĹ2ר›µDµgQuFuŚ>ˇěMů»†ű—–¨űOł 8Lîţ˙đű]­W%ČÓUu$ ±íGu `ěe»ń4ăâ ˇűé)_Ą†Ű®­Í6—0Řůd±™#˝v|s•¤^ęą kę[ŕVžđˇIă8ť‚W9 m'ÜĂŃŔ Ş`SĎíĽüĄ‹>eCÇwHś”,y±âÎŔ±Ă7ŕ­†J3IfśíćńÂwâ÷ź=/ţ°2…UM 'Ü4,Žľ[p’ČČî9j¤Ćţ5Č ™’,•śjaýŤâłD`‘îVP D2~ŽPXú:@„şŐYN¤”ĐŇ–µŮW ʍˇącp‹*Ď6ÎWžňbfÇ:ŮeHµÓăúX9O4Ő×Ăᆕ# O˝iRĘ<k°1 7EÂNŻgMmŠĹ“ŰßţÇô»}.®ľô«Ä×lú„qfňG>ţŠ/ş(Ój—ĎL‡ÚťÜíißܡď'Ć(řř«ő±Ą9ŁŽg11r쪡¶G\ŕó„đ}Ńňgô+ZŤĎ¬™p¬Ş[š=}ť@É•ŔĎ™ŹS ™±řčťa"żÖj’–ź*ź©\VŚĂ3ţJcjŃŐ(˛®·@Ĺ5—T…‹m-!ţµU·ç î\˛K%'ď}á~”˘ŞC ŕ/ŤĂđ[H自0D>UPoŽo KË&Ž©YsŻgKöb÷[‰łß(Ň1¨ę@½ăß Í…POr7·Üĺţ©f öćBÉŇ"MŢţÍcŕÎPśŠýňZîş-m yďá<ŠÜdŇ4Ŧ™«¸ŁĽ¦nN‘÷`§čŠî®a-“Ő›ňAY.ą;VÉVhłńÄÉ(7G—FMŕ“GxĆ^˙N‡üł¶.ĹDŻj‰â°™Îă~f2ńť"¸Ŕę ĂKFÔ¸p X6)ü„˙xAůXt^ Ř—ýÓżíł?ő± ˘jX¬Oďee ëŹWśă5cŁń˛řîßŔ7ÓČâµý¨ľMe0O¦żîϲă\ę$ʤeş>}ÓY$łÄ75÷§¨atfîłO'♯@2¨ŕżúŰ“‰¬`ră…umG*W/¸­žrĚ,$™‹ę+cië¶,ÔŇďOLnI%• ďŮĹ™]>•@QëÄ Óć6Âąb!š‰_ŁÝuŹígPx®›úŰi 3ŰQ[7ú¤ˇü”El_ćE#8@mŇWř-=»ůéď:§…oV켴EÔP…pç·ÔÎŢO…ÝÔ‹?Ńjl˛yćű"ž±Ą´m0nÇx@Bj8„ ¸oeŘ ßË&F¨ď6ÇĂRaeËŤăŃŤđSLŐqă[-hŻK›î-ťť řÉn~ nŁWÚq­h{Ţ6AF˙ľTKÖOWÁ”2%Ľ5‚€ioT{—űuŘçRĽÁ1#ÝGřÍđvĹa!řő×®8ěű˛śeăD:äÂÎő«Ě ÉOĄ$9ľ¤·š¸§ťťľňáŻI89)mČjl(ŚźdÜkÎV…U…wŞG?h"Ź6˛< y,ŘŕM·¶BY–Ľ ”¤ĺâő;ą\Ǩ].<Ú­×Ô±˙»'QX…ďlćÖĂBU©*ENĽ4§š÷šłsĎ™Zîł%®I×í!˙U5ŢÁĹlS ™W-̆SŇZ ňłŘvجXáç<ŚX¨Éä5 7şţa t)¶“ ú÷”Ҷi=#(Ľi¬’Ăf éŐ±ńjőźeWôL|¤ˇ¶çµ±mé$“%ú2l柪ĂŰEÄŢ?«€.÷:řĘęl}’ydŐ/_EŠ!+ďí7礗¸ßî¤âH;í!Pľ^×Ó-ô©›ŃQu®Í‚ŐýyĽ¨)˛VÔĂĄş{®łlÓ{( +2Ë©E&‹ôVó´ża yMnp$ Ů7˙`?‚IŮ"˛ńµ¸ Oę9Ó\»8Ľ•jŤďŰv /W%’&áĺčZÁIíů żô !đ˛ő†ďXŚdâÔË·/G­ôţy˘w,z)?˙r]‹”p4üµ(5ÁÔ‘Mo!ń'R3¨ŔJĚ˝ę1rŢw–š%čC R˛VÜ'y$Jq˘4ťă¦,ľ…@S»ěëu‘âpűü¶·ľókN»6¨ň=JHHăŤiń>ŢřŇ´ ĆĎv¶)ľ¨ăŇA-ăŇHůŢT{‹ÖĄňĘťĆ;‡aG”ÄŇţť±“ܢȡtÔ•U"aŞe۸ ôwŞŐĚ+ŽâMbý"Ěc­cFB¶Ç /†Ľ,9˝ /¬qĎrĹôOزŤ¶¨"Wd†"8ě]áíXoHa„­‡‹Ĺ^—ůýú·•ŹnÓ~«'D”ö7G# ÄS§UpŔô’vŃžčIfz씞TĺI[*†j°đ+Đ&°UĹÔłZç°Şz ?pâG–Ł›´°HE+eŇĹˋކHŔö,)[ĺ‹~X:¸ëő1­NCĚĘß\y?Ć0x!3Ő"”ő!ľ(ďÖ]Âó»€Cn ’ŚgßĚ|»kNˇŢĘŻŔ‚řڦYg«»´­m±@:'D0ôJ(ÎÉ «°“tăMGyi>,k3OnĐó¤Űł„ <ţOšĚ“ę5^G„8‹ć'“ žˇ™$LYj1Ś‹OFĎß±˝1¸á·D" ďŤǶ…@č´«¶o3'nBgŔg=ďM8FĘN":‹MSžŁÉŁ+˛źY˝âŐ‚ÔBvzDO'~–µ#®Ĺ;?•?s6RS&#,l±7şlcóiŇŕS"ü u«:ŘÖ¨ćÜJűŢşó2(ËfYµŠ€aŁ!<3üč sDUšâťgŁZ>G¶™~¨b$4©2ÖŢPqÖěă+ěNl•čĄí6 Ęö\™řmő‘Zg«ĄĎ@ŁŚţŕn¶D úl\hvöFfWł‚±v_ ꦧŕŻ* Nsßx ĺQ˝»·¸!!´0.& „r˙ł-‚Ý XRÓcúJYýaŰ•@ýţw)±:áÎ[Ó˛‘C.Ź'*ç4ĎqŔP@¤!­žkĽiQšßâ¶Va/ŽÇôíČqĺžba˛ćĽĽę,o/<ęó$ʍ!"ű¬fÍv:›NµT×_ÉÁ~š„|/"ׯ8S(¨±ô\Č`đqk h úěë~byÔ¨:YéÁř‰c„mÜÇ1Č'µ¸Dĺ‘´hšU —¸k»Éľq`Ú‰ö °…\—ŁśŻ˘úRŹćĄÓk©©Ę§ŕl­ßŁü…ŔŽÉ{Ôž´O.Éýý ş%)AxÎܰżISö‰~´ĎȤ·Őjźl‚íźÓŕţüčî»'ĚY`ÓÝäŞo&NËraęb6ł^5Ěöô“1M»#J’ÉFLíž{„ăÚj3&!tá±`YMÉlLu†śué·,ZYîKç€;} Vů/7m˙Ç2®bąt­9ý¨ň°6Ź.ĆThLë”T°(•Lˇĺtë Ďň(•šä[xlŻń–ř ţwQ´Y¬÷żĎ©žĽ+”°ă/ÔM»ž‰‘éÁlµ}‹ľ.„Ěos –4Đq$č"Ü6|µÜŰL€ŘĄő‡jF1łéLQ w˛Ô ‚íhłC\ţ†5F ţJóüŁ7¦,{ ŹŢÓ$2ÜfČ/4 FEW©ş·B•?®ÉÍ+SČżż{ĘÓÚr5ÖfÓQ»fż{¬˝?DfČrVcĺ)ÝHs¶ž©m6”¤ěv®bä /µĹÂ8KbĆÎŤ ¶ű@˘˘5»ů# Űżytθ´ ÍۡŞ˙”ŇnN$00 ÁÇŰtÉJĺ@÷đáfM4ؤß4°.9ô>C-f§“¶eŹb0=O {ąaQëqJÎ>2T÷Ëąç—V'wd>ëH®áIŽk±omH šŤä&(X}Ôé—d Ľ˘©—eęj3Přť3ühńR¸s &¦A=’®7u3_TË™ öxčú~‹łÜŻ™W7űwÍ­WÁ6¨= )Č›Ţwöď“Ö.!`Őđ‡ZćŃ@mQ¶ňzŽ”â€M.ŤÚ^Æ[ůtŻkA:€Žb ,„Śť6oÚéďŕíÂ\›E[„Kům#=F±ŠúB´§]h0`˙_Ôwf®1ˇźý8«c^SPţ°fM8zd÷ůű:} sŃűŔ±z>çť$*ßÔÔpő&şm€ňńá$Mş’q ş9§I;çŢO1ÝÚ„oAëtbÝřuúâ†3ÍŻD¨K.÷˘«­ix(z‘ëĺĎšv¨nď.Ë3i‰„…§Ń×=@»Ľ GÎ(ăä0źŽL3U0üÜ$˘>1tĆGísn¬FP'V®ô;*‡w4ÓŮî2›|ŕ™Eeťť­Ë •Č…sS\ŁŃZÔ‘@HSźme ö5a»NÓ=LüÜř‰ąŁDĂĐćµ8ÔőŁŞe_g%…ŐČ1[`E:żeĆ»tĐÂď%L#u–rX9Ď„ëć!ĎN€'řI¶>Ôc‚aß’27Űvť<ßľp´GK?×€1¶G'2¶VeĆxqç°p1"ńó?ă_mŹ3LĎł?vKŰłLWš s4#‹ęË4X8VöŹŹóĹFÚŞŕúś7¦"RŹ şM~TfxÖSmjÄFţDv…F÷ľŻímŠy9e=‹Y˙*˛ůň^7°aËă]Rr}η®ĽŽőČVVZI™Ő9\żţ˘/5ě·jî\ŔŹČxĐpĚuň0‹ó=}ą¦v¦ń[¶\:ß V)aÇúđűŽ%B‘I+Ć[·yzĂŃ+%Ϋ'Ś‚Rtő¤Â&÷ÍN\@ÇŹ8 bA‹ć•<]G H„Ň>rŹ/%Ľ@÷©?Ľ đĎ[Ő ł*t«˛ę-ÎÝ‚–ÄëtőHÍŃŔu…xXŞ®gň2¶!Ö‚y}ţîš Ţ?µ=łv3$ď÷k *‘΀ÎC@ íę„_4Ŕܧn•˘Çĺ>.Éd÷AÄM( ÄTmçĂő"ő}mÔÓîÉÄ.,O";öúŽN\‡k  ­Ř·ąwŃxhţ\…†g^HJ‹ş·ŐXţ¬0ť¬ŁÎú Çy¬‚$‡JłĂK1h0W8űRţÖý(ĺŃŃ #•7=rz+Ü)FÓ gYhA ű—q¨k] šş_‹Z¶‘y‘msFšq—ĚŐ9\Aâ\ëťŘLŕ˙<źVĐ)ţZ>.ˇłŹ?›–üyPxĂ›6.ľżvý°ď ŮžďkÄ-#@÷ĘśŔç3ʦ‹F¨ýÉH©5áçJUHčDŰmÜauŽ_ôą•»†h×[ěĂ=ÚÍéęŁ*%ůĎžĽ…VŹiŁř´e‹dĂ*G©Äţ1Á G´¦'†JU_‰NňBt'ýĘýôl’h:C0rţPşßÄ$=ËîófЍđŁs!+ť\Ą×ô٢!š«]yj˙UOą\Ťo“|IY?hwîiűŇщ–†™ XDžëžF\íě7xř-aË˱‡ž, <(Śę#“¸ő‰3Ţ^÷±‡' Ô?+x•ÚŞß罢jˢZďg+RćçŤGEĽt@5hń2Pdáĺ°ŕřŔrlqŠs>T¦Q~źCŚM‰Y@©ŔhNF¸™Âî{¨«ŤŮŁ‘1Są^95† ŃÎP8źĹOąr7áěÄĚpĽ[6&±„çčń=ăľÄjĺm“K‘ĘyÇŚkŇő7ö>(ńż^Ři¦áÇŠ–/ývѶ(JZ€1-&_ń %6đ\µĐł„×Ćdđ  »ăÝHâcš€A#x-z™t_®ëß9Š'ŇgdŘvq•dI””*)“¨mPx¶Ý šś™»ľţB˝¶źĹöaKřhTÁI¦ş°/Ü :vx“cŽ3šú4î'ÓÎr0ˇ,|ÔEHŕ\°j.GÂEŚežčexć…˛˝Ů- ɉnşO'ĹŁ*©›#V˝÷ŢKs{Ľ´’\·~ęЍň.ía§üšň;䑡“P’™}äŘ(Đ-ú< qT‘´3C5¬}ü“Řó ekŽ8‹Î6ŘclîG{»Ôkľ©­íbŽ5Ş`Ývź#=N4O§-×÷÷ěľDGţ­Ä\Mđé§±˘Ă¨ľ˝&ôM˙ś˛‚2=g’#Ř +^ĺv̆ͯ%$—iţ‹^(ŰĹö„Őw¬AE{bl…~&B}¤Ĺj%üÂfRâ°JyU ČŹ°¤Ĺ<.ťCK‚ đ5ś]şE±RôóĐĎś›K»y›guRĚ#g„Ú| ăŤnŇT®V^ăüJ™âĺőÚQ”>bÝTęŠOYń<ś[uß–¸§<Ś\Iôč”®LDđćB]Ë/?¨‚ĺwÂß“eÎw4ĽĺµŁ°‰ĐJ,•Us(ŘRtÄ+.táHKG†ˇţ-Ď«=ęfđTń>¦•sý†˛lp ßeds}~°śÄAk ­Ş¬×ŹÚÍ *xJ.¤`R‰÷ëńŇŻ©Ć߉nź :ĂMUJn2TŢíćYőáÎ-7˝ĹçŤÂ÷DfÁm±ŰZÚ_sßŰNňu”_ŕ%ü0iPń_rÄďŞ@˝ Ž>éíkKqľ بńťb’ĎćAÂĂŤźB¶“% ń…čĂ“łoßT$ײ(c –/ud #;Îłîn§&ćAUJ»SLŹ˝ĘčÓtŐo¤ČÁťgć­Î0śŻ- š­^µ>Ş9'ÓDë“ŕ“sQ"‰ÖR«—‡ś¦ńŞ:Ż›q6u'fęßĆĽňĚkîOGă8e^EÓ¨KˇÄ_PíĂ–ďĄqsŽŤóK„:ÇĆdôq;ÓV‡[Ű łĎ9±5eĐQ`20Ҩ“zÖ¶Q8&a űÝŇşwc«ĄŤ~Ĺ2ýc%G°íáůu3‡Ĺ®ě-vjmÖPČ `L,±¸F Éâíëśň]‹ŃŮ­Ľë“č¶!ą5`ň+,Ćľ 9sYNŰÝ$˘ÎĘҩ秥@(=v(ˇU!–ÜgÖ9î~ćC~żdˇŃ/śřµč¶Kę÷e C¬“–÷ŐpHIٳ͝Ż:!,]\/:mŠ0$Ł!öˉ=‰żHahK şíşîŐävuŤý—s]cßCá-ł ¬ZµěÝşL!é©©"Ňhźt=ćýeŞ Ä'XLĆĄ\9áarąúe5yyrűY\˛çł|Ľ¶Ş,)áďf)¤¦˘a›č¬’;N™bi~˝Ćű7Pk«sh˘gg ‘2ĆDĆL–üďsµ8‹}y…śŚ@Uä@?¸g˘.ůą„÷.8ô˛[˙fU‡_ŕO”xÖ’öŻLňš8CŘtc~d†3}Ëöšşm*(۝ۉg^ ć'mۦ~É‚ś“ §G#˝ç‘®lwęőŁHĚĽĆTŕĽ2‚ćž±YXŃĂ6Uks‚ĺ»zţeq.ÄÓU\Ăxź©>Ë×íą+­ÔaŽmćŢńŤA¦ż‡ _!«PRf{Ě'YWiMÔśŐńb?ĎsxбĄţʇܗ4lÎą-¬ÎÁ%›^yuĐO[ľ}­IM-SĄOąÚĘô·7&Ć6M,†J” éA-‹nŁáĎ9ä“3JÜňý ťZK!Ř%T@{:Đ@.ˇ[áP.9säIôÂQ4r«ˇ×Ţź©7šŹž±É–+FTÄĺßRł~ÝżR#EÚëă#"ä ŚO{·°Đ^a1}g=1zĂTBő±•#W÷ć†7ŽżßýÓV3Ô€ćV‘WHŕŕ6J¬¸g[Ą_zš~Ëg{FĎÜ ;OůôĹěťSବoĹaFműb BTŻú ·ĎGťf9ˇ{ŚŇEqY·}őtc·F?ě‚_\—ó«ôu‘„ KPlUcôn÷ ÎWĐ{űN/Ŕ_h=qmć×wŢ9b*±çgubşf«9kőRűÉóä†é Ći°§Ą„áÎüi$ýCŠőďf ÁąQşó Î_2d;@PµÉş˛9ě4¤#ĚÝZ۽ќnĘÍ0jɦ-ŚY†§‰´®keŃD”şű†Ýč^52lYîy†Mă'óŚ˝)đ˘şđëo,çÉtʎű á ¤5ÄvzĂěyŇB;“‡^WśU;úë5+”Çx%3AµmíÂŰČHľÜşY®7%ż¤Y{S+{«^Źk3ZR1±´«›~…Y×6ÚLęŢŃX`Žxm8ÎׇĹÓIÖË,Ąľ9i8™´żIG®V»?BqŠ+.w=xI{ňXk›7“L™!(Źę+&ř­T• vř§aöPi#R[Ő 6äS9!QU qâ‡nŤvÍ0Tµ ň™0îŽî˛ˇV^úŰŮ,ž9NÚźŕ„y)`öĺ6Ďă¨8p˝~’מŹ~`sÇÜÂÎY%TMÂ*„•P¨TÉG‡qÉcçž1gZҰť21 ×jĽ<ßohÎqÉóëńľę±ębEĺ:›`愣— ľ‰"ço'SfxR^ r€€Ď0/°:Ćľ»ĹHD}Âl›ó;ŐéIěĄă˛NĚíp®ęt-0 ±Ž~mm >}G3§AHz°`¸N¸řč^křÚÂ_ÄÂÓŞ#6Ćś˙Uq endstream endobj 5306 0 obj << /Length1 1608 /Length2 10868 /Length3 0 /Length 11696 /Filter /FlateDecode >> stream xÚ­tUTťÝ’-îA‚űĆÝÝÝÝÝŮ8'¸Ü!¸»kpw'8Aw ~ů˙ÓݧǹýÔ}ľ1ľUUkÖ¬šµŠ‚DYŤAÄÜÁ(ére`adć(ZŰ›şą¨™€äDěĚF 1g ‰«µHÜÄČ ĐšÄfVV @ĚÁŃÓŮÚŇĘ@­ˇŞECGG˙OË_!SĎ˙ô|Üt±¶(?~ÜvŽö@ëÄ˙ú˘pµ,¬í€1%eE)µ”˘@ :›Ř”ÝLí¬ÍňÖf@ `áŕ °űÇ`ć2·ţ«4Ć,€ ŔĹhfýq čatüËEp:Ű[»¸|ü¬]–Î& ׏¸:¬Afvnćř°[8üMČŃŮá#ÂţĂ÷¦ěŕâębćlíč řČŞ,.ůž®V&®ĺv±ţp,>"ÍĚÜţ*éoß̇×ŐÄäpz¸ţ•Ë0·vq´3ńüČýćčlý7 7kĺ?Đś–&Îćv@—ěżşóĎ:˙­zGG;Ďżo;üő_¬]]€vŚ,¬9Í\?r[Zţ…€…ůvs7Ç˙ôąť˙nő_3CóAÂÄÜdç 0Z 0):¸~¤P˙ďTfü÷‰üořß"đżEŢ˙›¸˙ŞŃ{Ä˙×÷üŻĐ’nvvŠ&öđŹřŘ0.yŔ_;ć˙‹5±·¶óü˘˙5P ř†˙Ś«ÉGD@–R032˙Ăhí"ií4W¶v5łXŘ}ôčo»Ččlg ~hůw ,˙âS·˛6łýŐtNžż]@ůż2˙çoŢLâ*â ş:t˙şM˙ŽRţPÝUÝÓńŘÔˇŕ`ţ_‡ż0DE<Ţ ,\l6f®ŹÇĆĚŕaçńýňý ÄňĎł‚‰«łµ@ďŁhf–żK˙Źďź'‘™9˙5'j®& óŹŃú/Ă_n37gçE˙~í%˙çůď!=€f?—ĚřBlŇ2Ó]ë°s‡'Ĺőú{Y ‡CKŐ‹ jzüÓÂńTżÔ†26Móľµy.;ľîÉŇîŹöbŮQő|žçř’Ńô mPvpŃí1–~J?ŃŠöľXß‚ŇĺdÖÜßžTQ5,y!śî`s†»x  s/Ŕ żwDö3KmĂěDmű\Wx|B™třpO5862<ÔsÝ·‡O—OÁg‚í—rL’ěęiě|Űhöú…ˇ†7;)tŠÄ¬†ń±–±—j__ĐęÜ M€m+ҬyŐoAě7Ţ‘,ë4a˝[zsH×}Ó`Wżů‹š(nĺtűs™)SgIĆC˛P“Ą‰ý×& |©AţŃs›ÍHKźŕg„÷9vŠśd?›AÖt6˛ĂDwxK í)DÜ—voýü‹?öo 9—Z?„PÄłM€mô˝ŕ¦őććŃůdőďeýť[źµÍ'G |µŻ’\[§ŞŮ•;Ë8ĄÔFÄahÓ¦´ĺńĂŞ‹Âőđ™ qînssŰys–H,ś%CgśOćЀ޲€GőącWŹlڱ–q„#bĹiÄşůśř Ďź’nýú>%–¸ )芎źÚ’3D Ä®p1H®YY!ÄŤtoĄťÎ—RěyvđŘw!đ—ĎŻ‹ x-ľ2]DŚ›}-Űó.6tXÓAE}kđ¶"‹¨şýÖⱲć#Ž4ţ^+4\‡î¨Ňë˛g|W€"Ë­\ Ń*n0•×/š˙󭮜ϺJať˘Iŕě1…šŮgřţť©(Ď&Ňţ$ş]ľn–sVG¨˛o´Mć'(“$žhδpË6+¸ĺĎܧäřÇĘTb2ťîűákĚ!mý0¶qň O“ )7Głw‘ˇ—ířc]ô°/«+É|.8¶}~Ď0íŔX=6čÝxŹ»Í4ą7xŢĆĺ Ld¦P‰1cüąb–2\¦¸$K8^ěR?.ËËc+J7ô\ŐžiexúNbî§ ˘ŤúŘ´° żXŢ_Ý«ě“?D#ąE“±§;÷/äNîĎĆì@͉1ś‘ ·°JăŮ—JDϤk¦ú`cwźkíćÜš(;ĆşDOĽQ ´/Ĺx‡sÇ}&|I›§‡;Ö<`s8—śhúĽ.rK™JŐ´6бüř?­)%ZÜ\X÷Ogš$´'Ź«'«pŻm)môŢ'ęEővÍW™đa‰Ú;Ó˘ ˘ŹHqîZţ6']_ÝnŘéŹT B—çlx™üŃ€Ş(Öđ™‡síaé—ŁV©Ą})/sˇÝ)Ësńö›u -BźŠÄĐĚ-ZŮwßĆ/˘K-ß~ĽX?OóL@˙`ż! «SýżýwtXu¶Ćîë–L€QÓz{É”]ęŘä”›VĘ"FĂŽßp]âP…)éLŤN6vľĆ­ŐP›îÚCbk§ŃÂň°j,H@BŢŘzđ>Ą|cLć~áC%Ëíö€ż ®Č0ŮśŰŢ4m=Ý^›]ŹÚ Ě8ŞaéÉR s{KÖ¦äúi‰„Řđbť§·ĘŘäÎTˇË0Ľ ‘ô .°>«rĂŔ\sUZŚ.ťç®OjĽŔN{·ËI—6/KAB LgÔÂ"Yf4%Hş<š€—Žd+9ÓXŹĆ7őďcÁD•¶ýWeSTžŹši×¶[;{$“3ŐËVbćeÓNZJ –Ş<{PędľEšr# N:z„+yÍ ¶˝âosÇiq 8Q‘őµćÜGÖ‚=IY>9kÔúaÖ1± 03Ú+Đże1~]^2ęk켺Yjá[p<€ę`a!)šš9› V:ŞŹPT IM·¸ýöV^ rß}µ2]Wqj˘nŁšh†^×Í8 Hż±ż‡÷÷–<µ–E/¨Ěęó— zÎĚíX«¤ŤAa¬"Sb/uUĽŠ sů‘(’LGLÇ\éQ-RVL[b—ÁOŁu¤˝ëß?Ú/§ăv€űŢŢvŃ Űžľ­ń'8áذâk vĄ»jťŠkąů ôv*ÁwŠŠŻ2łPáŕZk!ü#FSş­®B«“ňF—ć7í ¶Pd“Čź– (u¸8‡ía'$ É+šĘ|92#uî‹âíâó($Ť†E&”ő®z[šŇŚ»çjm]†Ŕ±c6[Q4Ţ?îŹ* Ú},V!śpř™îhJt IJęěßC“ bK‡Ťáj$Ҳó 4(YÎĘŹ®ŞÚkC!ő¤0'1)&cüńř‘Q˛rĆău•ónëďÖ`ipLśŃľ ^CôV?RîvĂ~w˘O^˝âłfŁđ7âzĐ"P6–|¦UşŰW?)¤ÓŘÔ«“zÄÚőúśćŹú0Ú{J|ޞŤ(4ŠţÓý`_>¶¬¦;•jžÍč«Ý<%J'‹ĚׂG˙„¬)ME0\Čó1$ôĘž´@Ś)6¤)żÜMŃśri9M]¤ĺŁľŻUäŇG¬ˇÂóŐm˙ŠÝCiŇaľé÷^ÔDhx|QŞ\ÇĘý*ĎtΊA;Ů´y‹FF—-g1"µJbNId;›L†?TjŽvsD‰ ¨RŹĹ,-•V©ŕĎMÜŕTßîĘşˇíbys€¶Ońą~=-7Lů5éë4ř(`´(á.DßB޻߄—`Í0uFâ4ĂKá°ćZĨÉÔ:đŃ¦ź·ŞEüQíUÝ`Ć‘2ÂÍűNLŇ}ßÖ:®~¨ţ <Ö˘µ“Ť·´9MR/Ń áśÝôĂÜKM?IµIpuš5T=˝óësͤˇómäűU~ĽÖĆ!$Äésńgă kł—FŽć{áwâď”};ßzń8iőŮ:îäBL•Č\şč)Ž`Ä­ŘÜ/Šż¬Î>g¤CťçŞáe—ŃV7ŔÇ `FŘń;űźü:'¸(Ý«ŕUă¬f 1Ŕę`ÜŹVž;„6DŁ"%oŕ·ĘeôÉ&D­QŔč±Í…ö˘1ä‘ĘřyRU,¶R[čT¬ăţvCżM7˙ćaAŞ… ,LŔOĽSž•‘仍_ľvĹŮÇš ŔćOdžďá}&qzÓÔnxöŔÖrĄX› DÖ׸żŔ]NM*Ö¬%đCuďŢëI44ş|Yđ čÜ®¶®ürÇr_E0Ľ Ážf;>ŹđLŤÉr§Jąľ źĽiˇź˝:Rř‰`×6„/D ečł™QĎŔŚŃś ű+ß•şźD±ĺâ+ ' «0 şU—hk%ŇZ%tňÚßĆlNXÝEf« \ŽS˙4µń=?bř#÷ÍŻ•ywĺ©fÄÂĽj’˛ŢhźňrŃ—oÖ{ś29[čŔjk€ËKˇ&Xş*™^ŢţCo—pę$ĽŽ±˙W ‹Ő-Ę˝6{Î@©:Nn#6Ésę6*íV#¬,Ď´.ÇĨëÄťŃ+D"ŕgÜtły2]}÷ž ::24™2zířX)c~řqR\6Ť™ç‚$@çJQ0oĹĄtů¶eÄct?×V G/ç¶ůşĘĽ-XšY…«ţOźj®3`~'äËÝšř†OWN[é™ŃpŤřYŤ­ţÜ™ÂxéÔ&GáC^Ű.gđ§ÜőŻLIuĽäc",inŔf„“:,ĹvÖXÄ_|6ČXčqBďÚŚL<ôíév·8%.%"{ébľËi”Oé-©ÓŞtc®÷9/}îČYvH˝dÂŐ˛ú.NqÜE~&S^Řč›^‹ÍĽÚ­ő©żńǰŤÇID»{y[^ÔĺÍŕ‰číú_şŕ˙0ÎŔbÝqEF«ôń,Ó« SžńÂŞ–¤-P:~#Tľ ŽVó·©ĐšńT_€+ń _Ú¤ŞzűÂíŽhűÖĐVoˇ:^ÉyŻ;(>ťdzfŽŞIŻAµŹßľ÷i†ţ™±ušË·ßy ^§ŕéq“’CĚJçkżüůɰGś]R^ęĎ–Bsb TÎUL™§¨Ťý%™(Ű\ľßRäEÇh‚˘4Y=§BŞö{'.Ĺő’ń(ć•g°#Ux3d‘ö$M”«Ö˘1y d{ďˡ^|Áý_p‰ŢI6hKŤőß5ýGőç†(`îťp4\q_°0k·¨EĄ±Ř.‘4ÂLN¸Ň“4—Ż~ĐDíb‰łfeśľŃY¤ŁĄđWąc|™GyËî "(ËČ8~ó')ď»k5:G„gÖm1~‚‘,ś@֤ŃI ű:G‘rn·ŕ"9 ŕ.PĎŔ±6€Q'ţii©¬››<şĄWaö°^ÇwÁgsPb‰¶cŤ,ď|Ȱ €뛥'6¤8ÂJ“űů@!ʎ/ŽËýrYc˛fkH{ß á’hŻ„FÁÚRŮxŁŞ`Q+©Y·˛Ä8śĄd´J2{Z®*ľT•Ő•ä ?Ô‚Eć˙ ±ÇôJŠ3°wń u‰łyňŁË6Mk-u>ŢÖxuŤ@ :[ p"ÔK+žPăŘkZ3÷Fűî¨zďN ÝŰ–‰Â&¶ŤAV0ü’S?fx<*Čă%I L"!łÉGĆqINţ1¬•!Ć·‹˘ěI ~?YZÔ+şŽČÁSţ;Óé4<Ĺ'{%ęĽz^cyőrĚI´ŔKhË4K@F$cfŮS”9Śb哏DÁ±hm#ö,Šëą^‡µ?N$S}ŮĎEčš™‘ň˘g.eě§j€¬9Ţ̢¦$}˛sżĎźâb”g8AÁá–Ş)5}ŰË}]ňń‚ R%<۱ë:!Áxś? ie>u3C¸ĂůŠ`ČdłĹHľ$ÍČ3›ŚzÝ•Tđ´CqÂ:™Wäb«z˛^ć ˇüâ%¬Ű.1X9[)ńk€ý‰»Ü7yŐ”‹%ŕćE€ŮÍ€BÉ/lŞ–MÎÁaRŃÔ…~P\ĽVÉ fďi_­âřÔ<ÇŇčGŰ2‚ÁĹR&-¦‰ěöy¨Á%3±żw:ÖqvĆFNtXÖ14ěÎű6®§nÁžĄˇ”ŞM‹©Ű–Ő}=¬Ňx{ąůÉ$Š/ëŔK“gWůąţPż×¶/a†2Ťkc‰îTŮgĽ ĹŃç}sCÉżÂXČÇ„yişNE‰†±«ç%ďíŠuť?úđ7AAx¨·V{˙CŰ‹•PŐÚť˝„ňďÖ-5s± ”Ű?JŠjc)ůă†ofŠäüőú¸@~S‡Ź­úď8sĆŐňŤőŽ[dŤÚYŃÜţ—ć/ßÓ™;vçHő~đ;gDjŇiĂŰH&™öá"QŐĎĺÂóŰÍ9'ý ‡ń˝ ű$‚Ýq ÍcĹ'‘š• Đ’ĘĹ}żb÷ż“5*`ĺ?ˇ@QŘŔ&4+Ł—>Qn34qámBŐA–ĄďbŹÝtň«©ůŢGµ…ÚkŁ*OŽ&›0~˘jΧ¬×ĄU5¬˘_tŰŃ)Ď=5Ř2vŤ…™éôƱ™mžgźűŕş\T†u!uĚ!‹ĺU’–{ĚŢ ť©ŠtQBŽž¨á.‰QŞËr2 ;qúl®Üi0ÁşŮĹćÍ ’ź|-ěşZŘgŠŮ¦+vÓ¸2,eť ä†ăŁÉý‹ŰUśIh~Ěřćt¬…ľµÉË|ˇ`Ôö|Qđľ‰ę§-‘˙ňם+Qę`*Ó-…‡ÓŐÝp…•TIÍß0O»ůu ýŮę\Ěč:U¦# Ą_·×qĂ[[Ooš§dâ\# LŤ <<ČOąŚÎ8:¸ÎóŠNÖŁäő„Ž,wÄ´+Ţ“Ú4e›‹ŮDPh$ w‡ăQ,ú”`nŰĎ3ĐČ•ýÚx,×od× ‡Ť:J.$¤f¨>]Urˇř}t˝‹‹Ć<ä´ĄGť: ©D B¶Ű“=ŽŽýŘĂp´b[…PƆÖîç\› <®‘úi˸>a‘âüvE}¶üŽ,=·!Ípî—ř­/îÓŢo?đ,d]˛n*cőw>řŚ2ŐŚé„Jş˝@Ěٲ"Äá“K]ąŚ+´ałYBóčśPS±‡°jŠ rÖŇ–mxłmć$ƵîOëçľĐ"Ů?I¸÷ußo¨14Ccľ{M!¤Źr5rŰô J ™wź Ě7ÄWĘnľÂ´5ÚŤ]äDůT~(wň>(űăRő#}= ^޶#wv‘:ľ€WŚVI‰ĂČ!Âp̦[Qn–FgŞ‹d%Ü{˙»x~Ľ6 “˝«âĄĎŞgµńĚ)z´6hÔ@–} A6ËIű„ą]űÇ d ář$bGŁÓm»{—SyGi‹ćޢ{2­]cĚfLĚö©ÉVPKţŠćóm9z|.e”BÖŃ#‡îĺ -â`ÖćĘ25Ż+ę]¶Ě sBCŤg†“ s”{‚Iq‡ąY!"‡ő±_ţ¤‘ ŽĂYEęÄX(íĎHú†ő’¦µżQrQ$ÄŔĆë/Wͦe2+ç3~ŹËc>^~3"Ü‘ŇM(F5ß‘&Hcťŕ¶ľ TµŰ–©\«ygf xŠb/µPßđZJtµÔČeo©zç׊63WŚNó=Ťâ{†şţłlM÷B#Ž]ďnŞuJ/Wß˙Úw9ö«ú§p3‰ĹłŹ<ś^ ęÖ˛›ˇűäťrŚÖ÷u Xę1Ń2çÔŚ$M' 3$ÁHţF™¸ĆŚę¸XţŁYf#(…ŕÁźçMĎe‘…@\eŞ5¸Ôť-)ť?i*)«ťĎ€L“×ĆôB¤Š‹ÔKk2ÎŐñ(QăijV’TcşŮPoeăeÍt=ZbôňĆg™…ĄU^V>ĄĄš`©ŇTaµŐ¶$?Ł5Kd ň0»iŃTCľBĚ÷ŚřÍÁ‡š-ÇÎ řjš|µĚ))µÂ°˝wŰtŘëp¸őD¦î…{ć^Ly®? Ë÷®mł\őV76¦ë®ÚŁe-4Ź.f)$ťf”Ü{ňŰĺ`őŇ.Ůç?,ŘŐżĐ3N !Ĺg‡M™ÔÍŮľ‡0ÂąĚÇfe+Ń}°éKşŞgććÍČŘPî9řÁu8訉 jSyáčşë°d @<•7$Tu>Ö'¶Őfb’Q}3JUV$J§[2 ¶Ď‡1ŔĺĐ ˙"§Ť]* ÷Bőmž]cް*ótď€nŞÇxęKđ¶Ň¸ăµ7™€ŕ(őý×č5Bůď·~|Ĺě™ZÄÉO°AÇ|h˘#¶ÍH*A§­ŁŔć*á±+ܸ†(2đ ~ćzbĚ€mÓ Ű*$ đá`rGör'ąç†KŤÍsg—SBˇrjˇ6r5+îôÓß§[wu­“=Y/Á =‰Vřë3ŹęłŐĆUĄo;ĄoZ]#ätű˘Čź0 ů¤uëü’ć;{ضUd&r3ËçľĎÓşé·…äYżz p1!˝q…żěąëtů1ßŐÇăŚqV _o)ÚĚWŹ%ö­ónŮ^µÜÇu§DäCŰ×cX8u*ĺéšłç+ŞĂćáŃv*ŰÜ;ŵ¸“ęiHź; €rŁĂzIŻĎG‚9`jý=Ůůl“dNŻX†´AtÍXÝĽ/8­Q ąşŕTkęl$ ˝C±čßóMş\,lŢČ06„NĺýE4 ó2ÍXÔ9RşÚŽňĎýiů{sÄ[q "ś‹'»ĎźQ"UT+ÇÉXJ<ďě{úÓé;®]jŔíŁľ“ˇ­d—f) DěW9®ĺÎ<ÄŔ}ަ˘Ł!WTőÉ9Ń~ü“ÉŰ1ýBňş…LŞUťJ᩠µÇYc¦śYçe`Čs}?ëo)V˘ ”Ęîăň‡lzĽ?Cw °ŰŐÓĂO;7Ći`K$[‡ĆsťĽJf+}őÚCuWµ4Ăşrksş¸ ^×~!čKĄÄž4„Dymí.9Ű»'\&L~€Ş–%ĺnÁWĺBç#;«¸ź0» ěţIeT]*ĐPc6”ĄxĘŕńOĂL /©Š­~Őubzo. đÝŮĄ9i(],ĐŤ,%…ĺÄýZžíXc#ÇJđiĹŐHţµXɱfC«´ßqŇÄԳͮ¤oĎl—Śp?Śx˘śWňě;3ř‰"OŘľž!•¦ÜAO«g–«đlHS|ŽČÍ%€`CŞâłíO]~ŢSňMo ŢZ<­Ăł7ÖňJÉBŁ\0‰^ ®š{ĺ°í˝Cyp$)ö'ŢÝZ4ÚŮŁ,€GuR>2K~HÜÓŠCĺ.úsÔĚÂyĽäű/żÉúš})x +APkĄ˛)ÁŘŚQ˝…ą­a!Wđ3$ąĚŃç÷ďIÂs‚řołwŚ,śßÄ–ż™€¶=Óôy‚X7u"€µĆĐČäŰG0yężş4†»jÍu4ůĹţŐYNtv‚f ÓjHůĐ"ˇË‚ Rr#ßáâ&ćŤţŠ„RN5Óú…ÂëüóMQ‡_ąĘŹŽ'ż<ćčd‚ŮłÎä0g“NúýĚH|4‡Šě[ä>HF(g3 Ľ¤$ Ž =‹Ď›ČĐiKLJŚč-SD^˘ÎˇsJ&fô*‹UßF‚§‹ JGnĚ2žó±Y„“8ŔNîGĎk™oŐžT´K†˛ą& ±:Yâ·}Ë&ä¤A¬đyS=Ě‹44\c÷8ď]Ú—#ęgýŻP<±¶&Âk0?ÇÍĽ"ái•IC˛ęÍ;Pw9Ľ±žK©±ˇ|ă¦öAU1GşLíN®;ćÄ4€’Üł %Ą7@ÍE†QłG›âĎ€ŘI.Í^W[qţY+t%Š/Jý»GÍO4Jă=ůÔO Ňó+Áś$„`l/byń×ú(ôŰ{Ż d¸§I]¬”Ş ŮĽv’˝ńňç‘™Qˇ¦#ŠčŘ#X?(&ă±FYůZÎ1aĹG„Ť~Ři @Ěó=¬ŁH\í{ź´bÎŢc˙4fEaQZčxhQ´Y{ a ]!ČÚ'őó’.+Żą|Ĩöĺw*BUÜHŰ›ř·WFŠ*{Nţş ď±h9Źe‹FTĎ o ¬.îµ9¸ąëmU‘Ňíćq€'‹ŽÍ  !¨ (5– $w ö “şBÁ:«@˝Ďv™Ćöśé×NĽ0©npbťâ_$4!›"îL…GGß ¤@¤’'ĂIjuhV5ëqEý1 âŽ#pâßbŢTŐ°ĽpDč©Ę^š4»`ČŇí¨rÖ48ˇC0şź[]•8©ś- VNĂ\%źˇŕYo ŻgĆË5˙–Ń+IŹŰvřs®6ĘQ=|Ą…&ÍvÜw4]&ó=#ßA3ŔjŘ;ߨfíl2-Ë*MŚuőˇ ‡Čëv>Cçąţţ˝S´ˇy´‘ÉAöjźE¨3\‘ňś<ŻĆÎÓ8d’2™Üžë”FĎđĺW©üZEz/«S©¶ 㲣 ZMµ€,ť’†2…ÖâvwK;AĆŻz˝ ž"šâNhŔ4=őň÷ŔYfL#˙%©c®jJIä9K¸Łya)ý_ă‹=Ćě§qy-'®ëŐ;‹ç!ń]®®ťí_?;©¬J‰AĚLż˙Ůëű*šŁ R÷Q݆ÄÂţ‰&X-ů)˛•­ť7Ť0°öüŚĄ/ŮąBŻą%F¦•0óJH lŇě|©Öĺ[qŢŞ,Ćş^tëÍZ;p]1}3]C=u+Ě ÂýŐ„"§G [‡Z7‚ľ©ĺ2Źű´˛(ź]ý¸Á5”"±„öc"†˛ÖŠ×*|ĎlÔxŽAżOá»)N0tĘýĄË¤ę‡±Q Ú,ééC ;Svjcó”ĂŽ_(kI(G1č— úhÓ(d4ÇcŤéwÉ5‘¶;ečĚĺł6¸Ţńt;­ĺCŢĐ×ň›âEŇ÷W¦ĎLĐ Ó«ľŻM¸ŐO[@ W$ ăŔ/„\•rŘ0SÁRězw–•%RÎ7f”÷C^vÄš(wÎŢ’ LĘĺk•˙˝{ĆIµÁ÷´ ż€ť# Řbé›;ą Ŕ2é3wQJm˝Óߌq^Użó)oýć#Ęhĺ!h–?ĄŃ"ĎĄÉU,9'd)ý€7‡<„éhřG1myÜ kľl#u!•ĐŞ§ çWś˛Í÷>ÎСˇ>6Ť‚çoá˝TČb—u˛Ť¶ĎľSHyëˇÄxÄšé;1!Q§ÚEÖNđŠaY¶aŻ"/HUůGJaŢVš0† ©ëß'}:­&ĄA™Š OĎ Í<\ďZE\;ˇn-Š“ĽNßóŞ+|g·b (ěNsʇ*®_Ę«öăMÉ×ó2.eRU~e %Aµ|čÍ,®µÝeŮČ8v«n™}#8¦Ű¶Ç†”¬!bŚ âî5‚Ńę\ĺJčĚâ1öÓĽ‚˝ęG‹~ş%#«ą7MSÁé?ҡ«ęŁE®k|ö»©D…šź>“¤ (pŕ«tC†^E«RŤ%» Ő;’ŠcEP`Ł˝đŐiţ` cb5}ÍĂ.\‹ű©AÂĎŇD3›źÍ_;kO>fˇŢŤkc«‚ú›Í¨Č›đBśîÖQęÇv­ŽnĆ/!ż;Ď>'ó«Ę>†ů<¤w·ĂôÂ&ń÷”‘-"Ŕ‰ -i·Ľ6–ŞOÜ-ţĺŠHÔ[ÔvP@Ź!XcŹď…Č8_6ÜÔ˘L)Ly`đš2z¦OĎv-ž ňYënR«:r b±<Ą/ ¬?®Q¸–€ťŘž'·®Vżaëg!Âťß/äJěZ¬´&íń/°ŽťËuąť‡Ŕ3i…ĚcţJhë·G.;głÉ/ë[Ö^ŘÎźtn‹Iž|MbC:5}Á”?ŤG*ţ´_Żjä){%€ĺµ& ‚í[WPÉmte”:Ó-v•Ö%–+fć­¤U˛Äbg—ţJYÓŢâ@Ą}¶@ZíĐŕÓ’Čé–Ë÷šK̉e)ÚL<8ý‡D R‚8ńÂI†§F'ć8)…śvDŇôŠ?~%+PCrpÚąPoOeŠ×5ë1Ş•§ÚÔÜâÁÁ×…$@±ýĄKřł×÷§ˇ3ű“ďŽB^oe:ĄlH@Ď.ËWý0'÷*ç˙@ŚÎ endstream endobj 5308 0 obj << /Length1 1625 /Length2 13232 /Length3 0 /Length 14075 /Filter /FlateDecode >> stream xÚ­ueTś]—%®Á=Xáî!¸;ÁÝ˝p/ ÜÝÝ î®ÁÝÝÝÝeČűMwĎú¦ÍôŹZëągź»Ď>rOQ((3™ŘĹílťX™ąr6FÎ eC[a;k;[ŔŔŽ@A!â4t˛°ł5trÔ&Q 1€•ŔÂĹĹ…@±łws´03wP«*©ÓĐŃŃ˙—ĺŻ ŔČí?Ź› 3[ĺLJ ĐÚÎŢhëôAń˙|Q8™¦Ö@€Ľ‚¦”ś€ZBN ´:ZśŤ¬-Ś2Ć@[`jç°ţ×`ü‘ĄĹßÔ@Ś\B €!d4¶ř¸t5Ú˙…čö@G čă`9Ú:}ÔŔÉ`aklílňWŔ‡ÝÔîAöŽv6Ř™‚Č děhaďřŞ *ţ/ťNć†Nc,>`€ťé‡§‰ť±óß”ţÁ>h>P'C [Ŕ čęô7–`b˛·6tűýAfďhńŹ g…­Ů) 8Í M¬ ĐÍ÷ßęüWž€˙#{C{{k·nŰýăőź,ś@@kSFÖŹĆN±Í,lţ‹”­©€…ů_vgű˙Ŕ\€Ž˙úďĚĐ|04±łµvMäěś>B¨˙ßşĚř?×ä˙˙Ź4ř¤˝˙Íý÷ýŹř˙÷=˙;µ¸łµµśˇÍÇükÉ>¶  ř»gÍ_Á&˙×-C k·˙ćŢż;Ş˙Ąő/ÝżcRN†˛5űh 3#óżŚ q W ‰‚…“±9ŔÔĐúŁZ˙ŘU?”8Z[Ř?şúOA ,ĚĚ˙†©[[Ůţ-?űż ŕǢü7ĺŤúG7“”Ş˘„„0Ý·[˙ńTř'7űq˙;Y;“˙<üĺ¶s¸3°°qŘ9śk—‹Ýóż ůËťe ť-\Úy3łü“ý˙ţý×I÷ßhÄlŤíLţŤ˛“ˇ­ÉÇśý§á/lěěčřŃŢžţGÖ˙qţgâ@W 1Ââśť1O€eJzŞS%Nvߨvw' d_ }aŤJ~®Oą]‡wJČW©ÁKE cí÷[“Űě‘ýëŽ4íî@'¶5UGđ,‡Ŕ“ڦ+m•˛…n׏IŻ)őX=Âý|FfJë+łÚî梒ޯ±6G¸ó{2—\Lň;{d/ăäęh¬VÔZ0ôĘĽŁcĘřű;ŞŢÁţľ?—Đ];řtYŃđ<†8^‰G$ NnŽ75ĆoĐO._ż]?Dú5c<•Ň?–™żÔß2pŻ5bç!1{XXŕŁů] (p1LäÎEŐÁ¸#¦ ÄĆ(ÓL"ë ĎŁIŢ:¤—•ĆĄJ÷ňIť8{dşő˙) 6í3ż< ĎGĄ†ë¶fV|şz䛥ďv’#ű- x~NkŞŹł´ĄäÝŻÍĹ”¸*Żř$“ňČ|iů“ň· «y8¦p«ŕâ"ËŁť^!¶ 2ýY7bŞúÜVńűąuQ®÷q‡§<÷jä’Of^W&űKRv–hĄUO{€ ËdŽ?)ýw®ĐÚGČ3±ç]MŐL9g§ßNĆ;·:“ůÇ0P56\­şŃÚ•LgRôĘźCŮŞđ±Ô Ţ𗳇M ŐŇF0ĐÔoŤĚ©O~¸.qUřŁž*‹ R´#ć3)45¨Î@{¶0âp~łiZs*qÇX“Şš\1É'¤ÄjŹ@Ŕ¦˝öá*AĆű$gä–ĺÓ™O:ňYG~Ę Ů 1¬UŇÍ1¤‚[^OkÉ`i/fŻ5íp›Ú˘'(6Ă)YW±µô-'ľĹNşG­LwĐő<1u‘jĚĄ­«~ĘĄ~SĆGc9Ą)éţ z¦ÔóCuGÎť±/'+p©WçűˇŚ^6Ů•’%Ă;C“¸ŐšâŕRÎo¦rßă˝ nŹďieHšĐwőÖvŰć~^éËťŐtî}ŕ”ĹŽW9Dţ|?nj~8;¤„µ6\hßsÚuÂđ%„?2Íźóń˘ââ|;…b_MIżOž2˘÷đY&Î#íoIdWg?¬×&R¦qjeŁ~Áđ Ńpl›ßBÜyÄí‘ü¶ 5ŕm˛!ÚĆ”Ç=ĘÇĹ{#Ł1aä4,­Ýk¶Üěőč_ş>ŹYőJ†Řf°u3…:€_µX3‹ĐŢÍÔ!󋤩ťžĘLîqWk›Ŕ GŞ»ŹF˙–W”–¶íMG«đTż~h2Ą ‹]+µů”ö3î1"^Ö~ŚWűAŞÄnőť§{nÝ NÖVŘÔNbCűĎŢqµĘĐd¸ßP°)Z¦ýw81AÔ›†Riyň¦éŃ‚j­Đ1WyH¬ő6ôöTXňt@˘äą*öHUPË^—¤ĂW°}'ÔBóx~gŻ+ź4†(4"˙NáohŻ©ü†Eď†W»Ö:…ç/Gťzą\·LűSń©»UTsâOĚçď=”Đľ©5„Ż>„Äž~´ęÍJŻć2pWŐ–ĂÓÎNă9+Âér]‚A–‹Í±ŽČgFűw«Rŕń€HŹĂáôřÄZBí*–—%X—Đ~ÝÂěŕę÷/Cá†H©´aú9T÷}Uő$T ´Ve5łzŤ`…‰ŕá02+,63Öa\!"™úő ‘Ćh¬ç¶QÉŽ—Ut%¦t‘rÍz_|°–ŚUXąţť°=‚/éŞůĺ”ĹĎ2©QĐ$ErÚ)ţs®ë=v1«§Čal#Éđ+zj"iÖZNt’ŕq±ęůr}ŘLˇ8ë7Cęm#·ˇ*:qm†¶#ÂůBÉçuÎ Ô—7ďFńrryĚŤůľ*3¨’ 9ŞŻą(4Ö:š[BŽ‹ ĹHeŻ]¸l, űµŠLKź#d;I˙íě¶[6¶:+đEěÂeVEľŢß/ç;|V\c%]›ş~śÜóĚD’ŶnÜN(Ş áȲÜ*ŹbeÖzV Ńg —`ťÓa>ŘĆşď (¦©!}ý˛Áś2+Żš Ŕ—»ĂÍBVźŃÍ^S±íńf:Śâ’¶XŹx󕪳ŚřN„Gwr˝Ďç—aLŘ7âuÁ†Ăę*¶R·HA˘k.’śĄ¶ą–zńÖx¶•ÜŠü"9ĹńĺmÚĹ꼋Ťóš] ŠRáßEˇč,Äç"qtc4^raÓk06qHüKîĎ#E‡iÚ”Z÷xR*0O° ő?'ÎňDÓ—ČR}_Ťz€gkU ™Űôý<+‚69ň1žŹ TřÄ\-łĆ l8»3ZÉ*“Ę_ífń‹‚:űŞî‹kë2sŃ##oŕl*4tÂÇf(˙ÎRŚónuźDéT+OąáÇŐůĹŞÚäsVšQúĐw:ŢPjúët˝7Ôľź7B˙‹ž–°µ«ç˝Ĺ—p–ýhě&8Úxá ml Ňv+tnQaG¨Dź:Uç“s5Ѧżügâ9‚dwW±”t©~ .¦˛ŇţB pRC\ ý‘.]•ú łRĐ<ŚoőKf»S׾!Îv$ăö®HVraëîxĐ'R› ŁěŐ §Ú˘ś:W›Ď´™č¤gŞćż•Ói'kÎŹĆqWˇŚ)]\‚¬Ýőe`„ě§f{sxiłł}9˝RÉ=ť#ŚČÝ©…d›Îbç/v7 *9ę3[Ń2_˶oóĘ`]O”Ő}Ô§÷™Ybő‹Žs6‰“ÍuĹĽ–ý]8,fŤ7%áµHp-~¦×îeoQÇbçďřŚ×U뜡™;¬&¶o^Wql¦v¬l–ˇš'~{űC5Çâ†ĺłł»ř‹^–ű¬H±ăŢoˇ:úŚë7üë»ß:~ŮMy¬ ˛äx^°ÁŔ®y(~ęü‹š Ż5hdÇ ČÖ·2éča´bኢîTŻw¦Zb“Pny/Č+:¬U¸} ňv Ţ~zw”¨ńĆř›.OLsĚ“Ł CĆ„DĹŐČV˙Ŕ˛fGC‘&ťÇ“'Ľ{mGÔI? —{}ž=L‹kńĎúYQ”ÂH_˛ŔÇáĹ&F”T» \żs«“´—^nĺţ…ínń=sEřÎ Y´z–Żźr5´R!72…“0§>Ż&]ÖuńĚĎąęfV˛ťT$”Ť ‘‡Ó<¸‡GŔ¤N·ßb;ÂÂAĽâkAÎ÷‡’ń›ŁŻT‰r*ň_`nŠŇ5±?)%<Đoĺ } ĽK-Ś—8úd”Ćꋟ&TH—kzŤuiiÂăjVbä´)çT‹ľÚ.'â{$´vĹܤ°Z;\˛ą/ÁłĆжj†ú=˛Ďő甇v őqçá¶?‘X(†E8;X˙4`»9˘‚(ŕ1ď)ݲkמr3xĘ›Ó÷|I©ÜM'ťk†¸g/’˝ˇwiQZ#1,ĘĹ«{š­n… đcĆŘChˇż¬5şZČ÷Mí%ŻićvF•"PZZ‰'ößTďŻ2jE±»ŃZi= ŹQü¬ű6ýIMɍڬFü ţ9.öłXP;›âRDi«§rĄî§†ČÂU.G<3ąh…ţvÖ9‰ÖvüR[Đ1ńLA¤9"ęY;YÝôQµĺ^ęăÄR˝€źSű9.żńĽ7ßgú {N?Xt’v$űôŁ›LĽ‹Â }„L&ÉZŇuŞĐ¸¨€–íƢnŤ"•zX,y®˛$vßěâ5¤‚ş(§‰őhB!™b 4xýŔdCx¶~‹Đ J)!b\eXH=Áމqe^ł7?"Ç^xĚőăÔV 08äńł»F6rBń*ž>×ěˇ7Xžą#Řfë%a×Ţî5ˇŠč@!Ő…HPľÚpp(Ч7ŻŠîžîdÖžśôARx—¸µG dHČn( z‘öj&SZŁů´k ™s=}Fµ"ÓľeŹőIϤ{›Íć1÷Ł&Ç/śX^b+óĽŘ‹_y­ŕÜą  SÁvnYÄ@Ş{o:›&f^UIDô¬#7ź­iVŔŇĚ/VÓ…óőç÷°Ą«źŕ,%ËîŽic¨˝ě=ľÉ>TLC$ó6ń¤"Ĺ,# Q’vňLžjfÓ‹ ÄIĽ\ő† a)ć;s<łٞŃ-ň‹c/U¸f2(rÜŁŚ»¨râFČżĚŮŽS«?ţDŻxOGĘ"JËZ˝†Ń-ĺyĹît}ÜőJň«á‚ÎkLňÝ˙:Kçü˛=0;q7ŢÜ!uV”źÔ%˛ř^@Č@Íy ď†DŔ0"ĐÇŹő ¤Ň¤ÖsŇĚ«*’5Ô“Ś|l`Ä}xýŰ${âgg6Ţa'3Ŕa7eő`Žukn°ĘW¨$ɸ™ĚŹşŰ|Jo|˘Ôżfv±HKŠ`GMŘă,Í `˙§Ůĺ1üvµţĹć˛Ń’܉a=ęé›ěçŞ÷6„™Ď+±lżňőĂX–çČ ¦AőřcŃĺ™Ď=nĚRŞąww…7ÜţzĽŁ*tgŠÖôjfÖL[L»Ŕ¬±8ilä`{d,ŇB9óź˝yÇůb;b ů“ź8 ¸©cGh׳ÖoÁňŐ UN ç·Óçł|ÇüÇĽiD?žÍ †»(F¬Ýjs•0»ďÓ+DCMŔ»ĆhLćY9ˇ é;’˙ŮťóB/$ń«m¨uÔÍe¤$CŞd–n‘!A‹f‹@ň?zz˛OÜP(쮪Ô"”¬m3›·śHhťŚ¸!5Ó¬{ N<ĹŠÖ.©…ҰHk—Ş‚vr{3 iřÔKőľ\č;ď ˇFŮZĽ0äbŃg@•3‹ p¦\d ^¶âµŐ·xň›"5Uf ‰lż?kSR7ÝúδŇőÉ…_%§lČbqa‰rřA«`†ŢššBč~ŁVŕ3Y{šĆČç96d´ëYą%=ń©żqNSăjGjăJŮ|zÔćěńĽÖtÜÎ[=âa*ÜsIĐS‹cShůýé~ ăŇťë!Úb c —FŐ:ą±—j°ę;ĽÁ"LęhħšŤC‡‹ď:ËçĘ_M4Afąe¨&řSív%`$D^Ą}ľDĄŁţ§eWćŤZ€h\¶Y™ź)¬ÄŰZĐď2ëhąç·'¶rű Đ×®`KôměüŤ)‡†ĺ-®šŞÚjÎ'S<+ĆŃzEßĐ)“aŘă‰Ă€SÂŘE8hÓ?´TłŞ&rť#*Ĺ7|}sBCŻŹČfđ+Ü|,ŇDŃÜĆŤ‚*“/Ę2ÄH·Äˇ—ďË҉sꛇ˘öďIÍ,] zrş0!0˘ů†Ié?ĹŚ×T˝ôŇo±Z=şú)v Bo¤‡ÎǨ%Í>î¬eőD±6éşA’‰NVWfk”LâTEÜdŚ?w·ÄżM cďĚÎňMA˛<Ś(as ŕtŃ%đTf‹Ç+ąˇąűßmAj;ó«w,°ÖZŔX‘pÝ´šµĐ…?©cV<îŢâ•ÝÄŰ0|Â_'ćôŞ-¤‚mĘUç˙\víT†Ţ/¶ü8V7?yę”Âľ×F}ÚŐ8GCśb¦—’4X—šřĄÂk\u É‘Čü㓏Í}>@Őá%¤ő+×ä!ŠĄŁ*ÇČlW“Âv“'Ű’·ĺbŃîľxń‚¶­đ7 .ÇgA‡-Ć,ĚÍ>ŞV˛xG5ĹÎĽĄ+dŮHjM&ŽűŇ6”Żř#--Lř –âÍTÇŇÇ«Óßŕ`qśľšC=‘1Jšu˘Nb"Jç’Ş-ýĎnm÷˝ş:´~uĆÝ̨żůdľ›zo Bj÷3H†ĚÎůž‰+p%-JxmSĹö›yŻ?V‚§žľ 1T:ŕ‡\ŘţiŚQĹłsíÁŽĺH4źś„0ŁX­ľĚúUŔzÁňŢžÍ Ű.˛Ž íiםSń‰Ť77ý•XŮ/+‹ź|h¶¸<+vŞVÔhűdp›đ Zd»Úµż0ˇü`äOÍHíÚťT÷łńŽ`!ŢhDߤäĄ(F”5^ö„÷ĎŁo#FŤ‚ú[Ńu,$kIÍG2‰Ă¶üÖ×ר;Ńč^ "†J¬Ý4Âęť^x¦®ľC8Ő_//˛"[xćqĎq݇6 SŠLéČMaa†¶š_?ĹÚ7çc|Ĺ9ŕ u\ÚłŢČCn…ËsŢŞ•¨Ž“ÓOó·!fĆ\ľ~>Ř2śuIŠ^—/âŞaŰ«ž_xßÔ7ÄŰ“…éÖÉńćî+äĽX^ź÷}á‡j´şŻÇą’ŰŰö.E[vŻOČ~ľtĆ9á> lĄ˛’ĆITťp+vy,j˙4ĽžiëŘî˝ç0”Da "í?íµ‡wÔÝN>v:,†)/eµ•ŤśŇŕY>Śß“pľ,<ź :¦A­Ř|Ţ ć0˙˝áŰa9§×Šů0•ů¬Ď•ä¨$V©~%ϤE8ş’•#ýKWe –jMő]ÔżkţĎŘĽş*Ć>Jˇ`í¨ę9Ýg-ź7Ż\ÂŇ^îekóWqVćŢ}%ŻËď<¸XEń ÍFţ˛~ĚÍŤo]űß·wn§B^hôçŃÁľW­ÖZ+­ă®ZľÔÍç–ŠEoٱIÁµ&ɡ( Ď]‰d1(¬t\:e˛ ŽÖ¸\[w“#Ŕ .NbŁL{OŇłĽ ťăŔ ˙¦)ýú•—Wŕ+ńěŘâW¶Žî(z˛ťçÂŕťüí™äyŕ!{yIłńzőŹĘÉŰ`éÍ,Ż´śĘJşµ»KrŰć>;Ä—é<—?äžß»D5ńÎnąÝ^JlŁ, v¤ÓČÎŽźąŹ2VkŠ÷_ł·ńŤďEĚNaĺiÎśý6/žeéŮLčvŐvÄŹŔř‡Ąň+,VJzG+«Ż%ĽYĹ7k¦2Ré}Lűµ ŻäL«.Î'aܤ ďŐUŠ—ň¬Š%:ˇ+‘±űÉîĎvůžvŽ˘ÔłOÁČ™ś¨´€Ć<ą/S »†÷Bä^ýâMŃ·dKÝYŻn[ßq˘#Š}¸űp˝5Ö–ČÚ (]iă÷Űž<X[~O„ÉR¨t--ĚĆ Okµ…c¤Ž6ŰJ__бBˇ?Ő% ß>µO$Ô2ÍÓÝŘ ‘•ęćSřdBĎ;o[?’8đ»ŤC…c27ŹK`+umÜ5ń޵A‹­2;ÇŰgŘyvţ™I¤¤ŠÄë•VŇ5<Ň“Šł®űę°^˝Řëµbħí‚ú ÍÓ”˙ËnaQJ»-Wô¸L/UÜU4z6v›6Cď#s ~Ů…ŘFŻř–‡´č›ÝĹ yđĆá`Ôţşŕ^CH÷†Jˇ‰|…W„ź°ŘźŻ¶ŐPu\O^aŠť47qé°Ö˘Î]@{Ýĺ7nwëíŞťÂä(ÄŕM˘«˛ąŰAvÉÍ/g+~ç=”lÄ‚=R|c’<ľh¨ 2ĄKˇä 7dĎx¤[­rď™*”{nÜäŹÚ篣Ţ8Ź5ÜŁlă=)xź‚Îč"AI%©ÁÁ眀Cý×d~Š•ÜÄsYĹŢWUî’łÓár÷·Ż¸?lĄ8 Z[6ßRmäśľŽgÓĎŘ(Ë•ü@ŁĽVčŹí` Üą0•´®ĺĹńYçťżň¤OŰ4ľs1ń%‰ę¨—µ+ščń$|đőŞĄ©ţîFOŇnďÂŻR©ÜÔ3±Ň¤…s(ŠÚ^ţâĘÓ២ň»0Mž8\’ÉHŽm«őe}:Kť;ĹŐ;±¶˛€ŽŹÖÁşŃŮfr¬˘çłeÎ'áasÂő}u’Ö˝d fť…Ą‡wpŰđ„ć?%ý§¨aH®żĹU+|o/{Í–Übe|‘üŽ8Äŕ¸?·¬'Ó_…Ň·˛rĄÖÓ±»uáUx.\ ErĄ¤ˇKńÄo\FŢîŚ^$SZ¶÷#ż‚‡]¦Ż>.ôăO»ŚűŐ—^¬é ŚsbÓvóľŃ„ūȠQĆĎpčJ%·6Ĺź©ß˘ŽÖn-PŐs“±[8yѱ4DBŐhđŔň~›Ĺn§T˝~ť`~¦C~],p+˘q:ş¶†´FO ʕ̲‹¶şY¨[Ç¨Ź™YĽEg©ĹŁđ`UáK¤=”gîD"3Dç dţ"ŕĽv­ł| WXYş3;î‚e‡šáTc,Ą€XÜ1—ŰÜ[ĂČQ9$N^Î_ń%vÄ|ŢV™a´}Î(ŰńE\9ľp­a ®ś6ő™©˙îýÇ®#®ŻíSŃ.Jl!ęŚvĄkâŰLKě‰Ě\ż]ß.mĹ<ó/nžő۱'Hý‡-#ĺ<ť$Ĺ'ńDZ#°¸q'©ÂŤd2-Ô-7ŤÔ—÷ĽsiěÄ;âč·äcaCńĺ N`Ś řĺčŻßą˛Ë”Ţk˘ĐśĂaĎVGţ¶ÎßĂľfl ×ö‚[^ŰŕĂčÁb¤ćyüŠ„bSçÔŕŢúk5ąC°ß{ \ĆÓ'Ů.·/íÖĘ-żś¬6 üXEoÉő©‚b˛wF⌝źuňżHţ‘đ­C±kkÎ)Q¤M”®ü¤Śś)¦ţw¨˝ůëp©^ "HsĂęÂČ rĐŤY—˝ kOé>˝ÂO±7v¦LŁ’Đ3Bů›¨Ż˛ţdë„EćF,¬·çČřŽ­%ÇĐŤâ~†8Rvüeí*iŚĺ;Ť×‹FMö¬ŮśfŤdł"˝%Đ/ĽČ©ďěĹ­‹YDÎlU$äAË[;B-Üŕva˝–8 ł#Ĺ´H…şWź‰ÖG7oö§;ˇKăß준SŹŔ Ýwfä'·[HŹŇK «#˝d‰ó ëé‚ÚOÖ Ťr•čđL˙®m˙ą˝’yĽ"Ŕĺ’E4ŚŔ˘S‘ÎćJ_e欽j<{A<š‰a˘MqGçďŞqńńÉ0¦:ô§î‹Đô륋zž[8 ¬¦ŕ˛%´K_8’Á<`ř;]"±Ňđ2WýᇽÜDE˛´ĺ5 7eKšÓK‘ńÁż@ĺ\×3 ďNáެ€Űďqęm$eB!.:2›±¦NŞÝGąU˝nâĺ-Í ,đ óĆqXžź0<<đŃ)w S{őí(?Öwˇ!/ŕg¬ýâšľáćűĎßk©7l*’!C8 Ů5¶ŞÚ’X%Öľ Ăf-˝Űv ®ŃwôDČp8TÔĎHś Ťýš¸ŹhŚ_ńM»8jżS/ 3nA&g™Wů°č`ńl`4š¶é°m¦»T´‰!ľúcD“’!˝|&”0śH覸 jÇđ$TťR¤`|ć§4nŇ–T/Żż#‹děJĘ{Ią¨ĺPĚ­ ł vŕ˛mp‘ťm=˙nśţ1 Ű1´éG‡y{ZôĹĐQY›Fۋ곜Í5“mś]ůl„¨äŠś`j˘<ČS™oo^oÚňŰ\L] J /‡D”ŻâÂb¤čÎÁú3…Y(–˘y)µlO@|~Žr!A´{çRžHžó0…7Y‚ş’ _Ň…EČ„—Rň´Ľ5ycýŕł.c«äŕŚpVľ‰w(ô0ß%v”ĺý ;ŘO:=Ř€ďäÔťŽÝ1&‡\ˇ˝s輒§ŕß`—x/ŇHÚ‹)BăĂ#Ü…lňăË^Šupĺňúâ¬\ăĹK2Bg“LŢIlµWXbz‡úolśÂ‰¸ľaŤí­–š“ů’ëöxF% ZĹ6 ĂTĘĹ1vF։ˏřÓ´¶k}ÓKj&…g3-†ăŇvhTV…ŕ\ibjËi ®UĂŤi#rmć3}íěŰx6”9§“Ťw·ö*ŮźäĄĂ'©ĹđÓŤ"t4ŕ&Ťó(áč‚÷d»ä0‘¦ťEÍÖ`'ţĆW„ť}e+â™:GÇ;xRfôą@Z–ąÄ7 Ë–˝1NŤtu„x¨Óň jÓ$ŞżA<ş“fúÁh" Ľ@ŘWLśŤfP›– ±ÓóţdSO~SciŽÚ‚źz¨ ĐZśÎbzď¨ň|BĆ`Ť ™ä1ăqűá…«ń,‚ą°·©®jÔăÉQŁfń­šÚwťŐÉŞ•ßŰ%¬«tá–Étt\©kď}ŇçR±_ďÓz ‘©·\X㲉·EGŔ°™˝?&°¦xŃýިŞ<źłr «ú{ď÷RÓI”$"˘—ÉÝ‚ 1uBϤ€Aă'W›ţřZ¶c……W52ˇFÍHŞ5 +°•3ILČR¸ňŮ‘kgă,l%&±i.ĽôHC•C@ܨTłS˝ćI-µT˙ŕŇ,L îk»Žď1ý¸zYFô87‘$Ă@z:t¨qn° ‰H‚ü‹©Yçař—?xŰć%/Ćę8DI?Ői(Í4h¶Ń™Ť)!+ěÁŇcŠÜ>ĘîŔóü <”äźłŐ®] Âő›żhŐj</W/tµA8Ćý•-T Ď+XkŽ.ł<´E)¶Ýă o5qh*±ň'Ël]űĐŇ›ÄÚ'ÓáYvłqAśş÷î4Á_ǵ+° ľi-IG“öµ€&ąÚŢ*wÝś@:žÇŞ‹*3őTÓßčK×DccÝa¤îuŢ]ßÍ'–T"–NŕhVß Ľá^R+đ«É(kT#^é7DŹ@–›Ŕ2ČëEßç/űÜ÷GaăíĽÁX‘ÉEG>bŁŮ¨u»Jp—Nw×"řĚ!¸^vX•ĽS*8ˇă‰ŻKTAřj±mcŠş-UňYs÷ŚCÄâs ]ÉŘzŢM÷ă Ş˝Wë÷BW"«ę.Rޱචn˙Üîëw'%úO Šđ‚lvB•[Öč(F¬—–É(&Żj żöµ+âżĎŚSˇÝĘ «śŐ·F«†P™u Ó3ĂŘ—»Úˇľ`“ีxvÇMg:…č„¶čfăňőŞ–Mďů¦ů|©«ö&<í¦tńŐđĆŞčŽUö’űőáÉĎ耆޴ˇ$ÄÓjqÂŁg>瓟5Jíć\„‡(­ě»l;R5UÖŞ |ůód*¦Íďó‰Áęőwń’n´Ţ?ůŞĐúŇBÄŐ·ŤÚ_ާXS&r§ÎqóŃîZů=—좣ű«bTĆĄj hŇgš‚rY¸R żx3űÖ~@žôÜ~łŃ”˙c)sĎ=Şd—ď{ł?4ą ]şöµ쪎ü·]K÷đK’!ë¤@ţń¨©ţý›ű®´csTâ×Ry®WŐH˝‹¦v6ŽĚłwBťńČŞnĘYQu‡;¤®†ńťwý$÷_¬ŃúDiVçŚŃ|‡o" Ţ‘kăEÝ·˘ú¶źPTŻ©}¶Ůdů`ČĹ[Âél(p7"`­ęľ3I‘/,”‡ŚÚ.™'bćns.Bµ7é ‡»@Ú˘;=4™ne‘uG†aC§ú—kcg—, 9%tú´5¶„|9HşsŮćß #x%BäDc‡±X;ŔSa$˝ţŇoě¶Ě\ޤćRÖţxĐŘ)EPŚöüÚ÷a[†é+(ÚăćÜRÜÎđrĺ´ß0†őgę&ʍ(<Ó!…śZoßťąś!ŕ*qą_Z!ńbB°†(ÎčQ¦CÉŻZHŹ7V—‚Ȧź' ăŢhŐŠ¶YŐĆŘĐO«mö±ŕźS:×zM}<ęAĂ^Ģ«lÓąV^á%QË1Püď5ş@úކł7˘‘Éńhia#wČĘî´ Lş8Ă ł_b”ľD 7ŤŐ¤ü¨ăjš~âšďőať¨™Ŕ‹ě:™bO)űţ­Xńf۬§Î;nHÄĎ: ÇTž¬O±qhľ»@Á“8Ňp«V:>îß°Gł© "yh7g;ň/Ă›ô)™ĘÇŇwłŻaÄr>°\ď?ýşˇ6›<"Ą…;˝˝7Ch|ŹŃPľsąĘ¨EĽŮÓ?C"|ŮŔ˘Şgď®§-A7ťôK2–‰ZîĄÜ;‡é‚ÁáU0çĆŞ‹-ö±T±‰Ä>ĺěCůô2‹  +Sa~ć›JFżŮ ô S7ó=n»‹LĽ2u wă`öšRh¸*ôŽwŮţT÷,üťŇąĹżÉĘń}šcŽá¨X I|ĹÍż;nA™łŹĆÄâ|Gkq/?§˛AĄÚĎŮKQ}Nxčv ÷ĽÚVˇégß3®.tŢŹş¨Ľ_řç‰Ę‹ČC ę{‚đ‚‡˘.¬ŠŽ•m‰_Đrgđö.đ|‹%Ô[műV¬đ;‚†bń~ăŹ]ظDĄĺKś˝Svgvĺˇ(ź®–J¤â9׬" &WźUĂ[üv…÷Ikq:±ćŔ>ۦlµ˙˝Gˇ.Ŕ%-ŇWŇ(t ]®Xf`_ňó۶v»ä ü¬5S°uŻ´ŮÓ( ©Ş0ĎŢŠÉ0N›Ţ­ŁKMÖöî.VćúB>ÚŚŘ_ťAqŃŻáŁČĄ Ó¦ęÎë-ź:“×5ůĹx «š_łëűâ^čBęl‡33Źöԛɯ‰C'Ś× Źsާ‡NHŹ4 —54kMŕŘČÓ»j€q°A–kyV‡´8„«!»0ś2gžóµöëŐ°CIŇ1–Y’€OśSéĆv—•h{Ť}wp°lEŽŘ=‘TZť‚-nÂÚµďIJ0*l„·ě¬E3…ŹY…¨ÄFČQ@ŰĘPźŇŤ'yeżÂŐ¶ăJżDjŚŐÁů4ŞuóO”cČś?/ ŔmCHA [EIIÉh®0hjë“ňŘ€®íŔš˝ăéBm•¨îG#.X4j… ¤Ĺ»>ĚtČşOĹ_ˇŚ˝˙hÝ×Đ6%N×ŕ]y:0 ~ˇYAű‹q/ŠŽ‘âş*łýMßq˛4ň#…<őׂ‹ýZ«GMř ?Tb±éĘćPú§ľěŘ„¬“ŕ´Č˝űB´…TŁ…b~Oc06:¦B˙<Ôşç±2 Ň%ľ+j)EĽ[ \…PD/ ×— ”ş˘ňz{đ׎Đ(—ŇŔŻ.n™Źť®żł<źŐ»°$~Łâ#.ăŘţJÓJB%ťëLě&Ç˙‡n±ôbëĽŇ$´ˇÄ#ě›1¸ľ†»đw9§ř¤ÝŤŘvĎ8Ť(ŹăÜÝSu.ńgżĂµ ’ =­Aa\Ş÷ÇŠ”Űë.Ą¤Ő*n>ü ľ[čp„ЯǤWš ËIöýÔö5yźÝń÷s{jŹ©q-Ć949„iAŰöŞZ…ÄÇë®·Ki%‹â}'ΙáYęoůWĽüס_Ůt ?•†ÁÜm[Lă—#VpŕmőKIĘgąT~dÍńaʡĹ/Sß&Íţ‚H?pîźś_<ĐzyďXĘů.đ:'ÍĚU­"Ú¤ÓI¶ňĽÝŨżQl“Ť‘hÇĐł~â“6uÍt†g˛Ř\˘Ş"J—~DX~ ů×řirĆÉđMa{mŢ˝ÜzřŢÇŇ\ąŞňYÚš! 7í‹® ŮŘŕ~–\p/)šźďÔqżä\ľh•ÄÍ{řťer»d68Ťç˛i# L~˛ĂďĐŻ\8ć˘gqź)ęö”\!9†ůśvţ óyŔčć(w`›D Ď›˙¨$Ŕh9Ą?€=»Ň“m˙Ýj§rŹvb[UaÔ`DPCđŕ‡ 5é ÄÉ š¨‘{~rşQnWČ…˘Ś9É«1´âůľŽ‚Âé^ć¤%ÄBŽ–’bÜććuĽ˝®'­řçŚč!+-ó;Ęw˝1;¬Đđ„üE(ëT‹ňĹ7!ĂĺPÍýÔÇŔňĽóT>zŮ6BźşÝrĆŽ •ľCźÄfť°O×˝šĂ¦?;ĺŞđÄ TPC’AŽôľ}ëś‹íŃ\0ľ3Ź…§ş*WŤ0Ô®·‚'ŤÇĹ?0ĂŐŮQîBâLyž7˘^Č×Đ4 śDŽ}‚čě$tŕÍ5\!Ůg™ŮÎaŁÂ÷%®Śx\x`Aë„ Čő©Ź)Řů1#Ť)F·Č?`Řż®h˘Čž#z}1ÝѶm2ś·éaĄĎ‘Ă"6~­%*VˇS !:÷Łş^=»‘Iţ‘ˇôuCŐOX{çUWą#Ý»&nä•[…A`u´Ę)ŁURČ2嵍n׺K] !ű«O–—6ĺkâÓŚ<§5ż–6‚ę÷˝'gşEXŁÉËärůŻËHďČż Í "dąŻµÂ-W’~Ä@řĆ]ŽĘoZ˝÷š„ß–kÓ‡źŤ˙I¦rô{ÂŽć1źÉ@C•ŇžˇĎ; {<‹…Ś˘—˙aě˛I´b«Qě¶F˛Ř‰"đÇ‚ eTu mKqńĺ{‰§Ż cr;eť/«-[%Ĺćnż±ĽďDa(‰0dP)çZ9D3äń%í63ÖúSŰ€Îjž›ÍŐd ňeuoŰWů2á˛,UîÓ(µ*ľĆYöuŁ•$>Kwű­ć*×+XTđ¤D\JËÜűpÝ‚ßcŻĆÚ© ;?™erňŚ#W ¤äÇšÁ?9JÔN3徇?măYm˛*·\!QgOoŔžĆÉÍ2{ąěů.Ťé ˝“üwňPxD–ĂÖĂžĹ١ľ˘čŮ)zˇ1ŘŢŽZŚisşŞ*hfâsîi·(pŮaCÄě]lóΓbCy9®f‘Í©µB p41ZpPÜzv˘‚w<*هaěŢ…żt8]ŤďJ†Pŕ 5xlł{V&ęÍsÓ—ýX6±Ź^™»ďw\wąu˝Ŕżxľsz¤(Ş!aý"ePŻ‹<µş8¦ç…<|;¤ŕvĚ•v˝tˇs†űšN˘÷"#+6ŚFg»_ă‰>Ťčë(<=×@Âë9yi%ö~~; ¦m‚µmZÄ üTÓ÷ąŽUż@đť2Ď-ß"•iŻß mĆ5Ü”A™&şw5‘"°fĘ:ŞldČ™W\ţ!îĐV;˝ó.¨ëď |ü\‹îeC ľN:“Č?ľ2Ę×ôĆ1"dQ-Yă9ĺA<‘Á NŽKť±ő-«üĹBśÂ Ł©čýFZĹ—ö!ĚÁśÔĆM`–őSk苞G܉ Qą~hĎD + ÝW˛2mĺ¬IZíOŞ€ţ¬šÝTÉ*k— Ł™Yë1Ě|©PézKufU°QÓżĽß‰yBôŻxE¤S‚k˙: † üJČĆĚCĘ<»"ąÉ©Q «p»jçf,ľ†/Öž¬)Ç«Ď}…·Ű`TXřÖéTH,ě6™9Ĺ\ć±˝ÇÎśmhÚ <Ľ»¤"ů_ŽN%s±–ź|‰ŮböŮUׯ% š 鬿a{”Żůsxß ‡6‰ŚFşY/rIü #Ô ¨Jp‚Ă,ŃG|ű¦•Ä@ײt=đW]€×]­–„kHrŞ'Hš(´|łËęOóôÓŻ_ćŐZ|C;¸jhśĽÉL‚űExą Ú`9më3MrB’óHl)Š7s“×ňŞ SU<#” ŐO/âŤ:IKUPZs®ŰůžŢ“9·ż:Zw»űqŐýă·- Ş3Şďüť çFüw˘—NĐečĐŔ`Ž'ĎžăËáP8,¦ô·A0T¶%vĎŠŹ33YŐe„yyztDĘüMĄ ÚXÂQ#[|´ŃwHă—Ůg¸K,ctŻ%ä6+Ó ś¶Ýw±Ř,\3pÝ„”ÁńqU9„(›ź/UăÂľE-są—ňUNÄA‘LL6ż4|v5 'ů\c6ËZ8ŮQ<ě$f·yygÍZ ŞűůuľD}Đv+Jş˙^A™x«kłĚ†?Ňä奭ň Ž`LĽV¤ŇÚâ­JˇŰţĄLA¬Ć´ŰĺBÓbSíjy˘­˘HNěkĘ<µ]ŠĂ6kąbNäëđ|ííÝô»§Ń+sŞËٰ!]$cKµ[ígťVËz¤ń¬±×E2LŐ_ó-˘o «řÁ|Ů“ s6K㳆ÁŘß'ű(F.ĢóÉŘ[”+CŚÍÇTÓÇ“ŇŕݵlUGYé~Ë@:gŠŁSş¦~ŢąíŕĺCY5Ú(“¨îT6÷IĎđzĹ&$ţ©űG …Ôľ˙ÄŠC”§cĽzĎä9ŃőVđđ¤›YŰcVÉíź°!3H˝Çxě×\ un×CÍĐČR¬(?eGĺÜOqâ ÔUŃĆć¬%ČÍnáD@ˇ‚'Çň¶źČf?ő„|PIü¬ő¦MÂâŞM·Î°YqR!jI®đ›hšÝ¶zď,ˇíÇŚżk=ŮwŇÍrpÔ2ăĽШ\Ů0=“Ż›TUźŽz›|&č%˶n‹·Áík H+©ˇ‚šĄ÷lgi¦§ż Ě•ôw0›ŁńŘeŔÚ­›úirWŃË_†óľą4Rť¶R¤ RR'SÝźV ĚLšźÔ÷Ń(.ISŕČô*ňw¤Ďú»Đ„^łÔ7¤'˛!=!ŠG¦j‘CGĐ~2”Ď=ąĘéYÂŇyv­rŽü\-D #?×#‹á=RÉIJ9áĄÓç NýŰU˝AOľ( Óą=—2» Ţ0ňl [7k ·ZˇfVE¨îKúśŤV)´¸%Ý}xân3A±ż‚ě™Ű&?Ę…ś-pŔ×ç5&ém$Űő2ę2ń&ć endstream endobj 5310 0 obj << /Length1 1625 /Length2 9641 /Length3 0 /Length 10476 /Filter /FlateDecode >> stream xÚ­wUT]˶-Ü-řÂÝ=ÁÝÝݰp×ŕÜÝÝ‚;!¸»»;ÁAŮűť{nŰď~Ýw>ćlłFŁ­j5)HU„LíŚâv¶Î ,ŚĚźň c'#[Ya;kS)g#kŔ;ŔOA!â4rŮŮŠ9?4€¦Q  €•ŔÂĂĂO±ł÷p™[8¨Ő”5hččč˙-ůŁ0öřňné2·Pľ¸­íěm€¶Îď˙kC ŕl¬E-)y µ„Ľ@h t|OBŃĹŘd™mť€43;G€őß €‰ť­)čOjNŚď\BN#€“=Đônt7Ú˙čö@G“Óű7ä0w4˛u~Żłdkbíbú'€wą™Ý_Ů;Ú˝kŘĽcďdŠvNÎN&Ž {gŔ»WEQńżăt¶0rţăŰ ôěĚŢ5MíL\ţ¤ôöNóŽ:lťÎ@wç?ľŚS“˝µ‘Ç»ďw2{GĐ_a¸8lÍ˙=Ŕhnähj trz§yçţSťç řoŮŮŰ[{üem÷—ÖĹrvZ›1Âł°ľű4q~÷m˛…gú3,R¶fvćżĺ¦.ö˙Â\ŽúĎĚĐĽadjgkí0šÁ3ÉŰ9ż»P˙ďşĚřźkň Ĺ˙‘˙GÚű˙×Üöčżmâ˙ßýüOjqkky#›÷řűĽź2NYŔźsđç ™ü?&F6 kŹ˙Á蟊ŔżýĂőOěoj![ó÷Ž0°°22˙-9‰Ü¦Š g €™‘ő{±ţ’«Ůš­A¶Ŕ÷¦ţUĎw#–`Ş +Ű?Őçäů Úšţ3ö÷>ý9“”¬šŚÝ˙t´ţĄ©ř>ÎŞö@Ŕ˙ MCÎÎôżx„…íÜ^ ,\\6f 3€‡ÍűđůËż×rFÎŽ w€3#33 ŕýýŻçß+˝Đؙٚţg#[Ó÷9ű/ÁŘÄĹŃń˝˝mý÷´˙µţkâ@w  üň‚ťÉç ËÔŚ4çśś1Qťž.Č`ű’zŐÂ|ż*»NßÔĐ-žrĂçę`Ɔ‰OŻß=ćŹí_ö¤i÷‡ş°­©:“çyŢd4Ýůhë”?¸čöôKŇN4"˝.ćd7ˇ´9™Ő÷·Ç””ő‹ź?Nü`s„˝x ń#sÍ÷Ă$ż·Gö1I©‹ÁjCmCŻ)8>ˇLřůpOŐ7<8ĐßyÝ˝‡O—GńŮÇ'é$ŃŮĂĐń¶ŢäĹŤˇęSVBđ8‰IĎĐĆÇjr„.r¨}!|AB‹s˝T>¶Íp“¦ź9‘CĽ#iÖ ÂZ=—8ڦ öaú†aŔ®n“›Š0:˘Áč`<\l[G§ö±°řä& Ç/ŠĐ:[1h( rŇ/6iFĐ äxâ·­fš¶ ő ďsě¬n‹Äx$zNűjă.XÁ" ´ŠşÚĂîAŢ °ôx™ŔŽ–›J|or]p°6y!/ë˛V‡F̸ŕ‰KE>Rp‰]Jߌ3~|$ŤŮrŽŹ{±>ZnćÖľŽ†©Ú%Ż/CžRmäĽ˙ęź˝ťu!c ŠçŹłłó`Îćě®ëđfAVÂČA”°–ĘŘ’0ÄÇţ„Íf~ŤpJxôËDrŞÝ—‡"=)­#CZJâyrÄA(Ů%ň®ý^B3ęұ/ĆJsH±ë@ž‰J9áŢë´O74éeS‰mźĚ˛™g•75ősąe‹ DK(áô–v&©§¶úšSĄ‰0Á¬Šë …Ü&µPŹbxV¶D#Éá·ď2­¬`ňe-ÂćR˝á.źŽ‡Ś ĹU9÷ŮŻ~ĺ~3ů¨şîÝB‘ť-AI«C릝ĺ—$Ô‹"u)Ř]ĆÉ%Ŕ„„r->sîoÍR×Ů­ś|ĚOGB䯗¸ă©sšĚŽ™ٍ±Ëě8‡X]Ř]óÍk?†k}btw8uŕśÉřć¸=N¨y݉"˘đ•Îę&‹Ő[|$ş}zR©e`±šhë>ł&:żą?=lpđŮŃő†Ď[™Jµ¤/Ú:”ó´ÁŰW!^±eÝŢŻżÉő#2tÇ‚p‰ü­¤äg>M%jľó¸IŚŢý×%űČu+mř"G©źôťF˛‰…šÔę­…­!µËhć_řÇëKőŔ4ăŤ4!‹ÚŔăFŤFXä®yDkŠó]ŃÂ=îJözŰ FóÁÁęLi«Ď<‚˘{ŚiälHŠ?úĎŰaKrv¦€S%«Ô_"ČYö†ˇúʰD™ĺšĽĹŰzÎÝťfÔsXńE{•‚D{BYIó† ŹžU Uĺ´z´5yéĆôJě·”ł›1Ú«{â ŐR‚ÁëgµŰy),n[¨c¶Ö’Ü„wî ㎽Ű:‰ÔĆ{€+űź"nx1´ôź;w~lř!€ëű­Ňgîń+s—ł:5ëO¤ěU•n<ŃzfDĹ_3ňm®ÄŐz] áŮ;­–î_ŕď0őňVڱ¶WpYyťz&ݰ¶PľPrîČéě˝ a#ůfqmm:€†bťóßdňmrhÉeý˘ŁkĘŹÔ6念Ö‡Ů>}¨ŁoîÇÂĨŠ0DÎéň)+¨än Îżď¸ ÎkXK™6u‡¦IW(iE¨(U™‚±áExf]ç3‰5YĐMtÇ";*Śë \ąĘś 5‘d»)fR[ Ż sý©9O— ŢÝťĹ4ľb3¶y9Ę#v÷µłQ¸Žćur<Î-ôąéĘ X¸~ş5§ŹÚîdE˛/Ťš—ź˙ĐK™ßEžWcĺkśsÔČ"Ă4gÍËkĎĹöp‡@HgĎŢŇČŃÓ˛ŤŁLŮĆ&7[×čŤ?l‡»Ĺ*Ă„„íŞÁ‡ĽkúKîS|Hě—Íí šYY( O¸Ě~oZuĺΦ¨Tź1©Wu7«C.u[J?9şńjë‚Ę·*S23ÉçZ7ruřâęUŰaAÔ Ť@3oĽHˇď·ă%×ţEżńÜěŇ˝±iÍ©ÁKöm;Ęëîéôu‚j ŁÝj<¨´.˘z›V…eن<Śő)ťŽĂ˛Ź@¨dťěw ^Ħ÷j“ú<ô§„Ľ)¸Ö;”QßĹîTě2}ĎfßąŰ7ŹIióIlŤŮ,ŢuýîsiĽ9Łż;GńĆä¦,qäocMŔř OSüĄ”ŞŠö×®GŚ9´ü=¦4T°Đçlž…ˇě‹wß›‰>ŘŢA«ëítźˇľëýŃv «ßřÁŘ®éJ’B*ge4{ąk#€Q•nA3ÎÇđŃ“Ň×Ţ~ŕ=5vlŰinÄ˙b¶L”:Ň_`?F,Úě»Ä_-—±.Š ů˝n;2ľćt çîąŐ…´˙¨“+“ćODŤFÚöC9Ó­‡mŕj) @ä˘Zx{ö…<:p-ÁIg$ ěóŔá$Ö˘;U’ä ix.¬Ňá@™…Ü:ˇß—EÉqĽR9®.î#Rü„†«[rwf€K{úk¶ŮݏăŚÜkě!z–›ş4Ź3ŕŻBń4¤č¦ű Ô  ŞŻ¤ë|Ńş’ -/v aŻ[Ťiî<“sŹŹĄRçLa2[rɓڟĹÎ,çˇ\^°ß˘ĺ!ęmźűž»M7-ÇŤ>ž"‡Í=ŮśV6ʬ̼ ňö©Áą±-Â2ő“5řÝŹD6”ţÖŠŮçÖ “µ+2óÚź1đu«¶›ő\P;bĚĚ) i°ň~SĄ¤02žĆwżOň’%N&»)DÖ"š°“,ÉF@ 4SÍfçIŕő,ŁG 2ţÖZ‡ ˛IĐśő8švLŹt*ĺ”fŽ8°/çµ jŕUK6˘4Ë퇰ĺMK˘Mł*•˝ńďgísqí”ÁfŮą?ś°˛F~Nô "J˙ô°/CëĹ#g{!iěuD]X»ţÄ'z¤Ď•pďŰé‘Ô]©ŘˇťóÔÄ©rE5ftęäfĽë×âQĘ“ď2G¬úr5¬ u!›l§…‡’¶o:˝?ěűpůpő$ô?xŹÉFV7Ş·ČrÍ×üRă ä˙Ş­Tä)ßFů‚R”Žt:`"Súś5LMÄ’[HĄŻźţ¤&Šó3o«n+yśQŤ‚§YČjůĽĐ-r7˘÷ǧ(–UÍĺoč%˝Ëlş=řÍ™l~PgKgÚ]›µ=EĆÂzR¬°Śžčę5~ś ć#aĆ57†ˇ/)ÔëBܲXÚîiţa|ŕr SŘăďW@č q d„OBä;”‚`€ŠľŞ`×;˝űV:^Ú›.jI 'DőţŇ0Ú y"nÝźř”jKSDzéÖ"¸5Ň ®¤mş¨…íé~v-0 ţ@W“eZľř;ă˝ÝĽ•Ă`x3çńň©vâ%Xďł»ŤŻźpe>â͵¬Ď2ţk4߀ĹóĚ®ŽE°˝´Oť;ň=)PôG&[ŕ đ1šĂřŃ@˙“_Lü’`Ý ’Ęů̦‘.ť“^‚¶kS:AąŽP_˙±÷LĂĂ_}n–<]‚(8WK9ÓŰ|g~śîíĽaPżąľ¦xNb墉ľµŰ a‘dćLýéÓn$~ŔµRx‡á…ą:+ÄúÜ–ĺ—Ăńt —@ěqŐj,ăWEă(“5–f‚3eźáí^BĹ`™)ËŽQ„ Aé@ë\@T`MfŞ[ż%•Ľx¸ž)‘)Oůo$R<’ní-gî/U»y†HFȬí<.{1ÉZ&=öĆă:©řmpÚtŢ ´d O?-t$BH2Ů—ŐšĽSBđňX,¶<qŹŃ#S?+6_űŽK÷ŢZďt‹Tµl¶-é^Đ$qg¨Š|}úĎ łŕĂ äťÔÝçJm>ČA śŮČa‹$¦ŔéÇ/™•ńhqÜxůL[˝čĂYŔŕäx¶mFé­?ÂoÚ€fď­Éن(ĄÖmáq±†3Iă÷c7Ô”’Ő"É |Iö˘ĆÝĂQ¨±őĂv"!űăˇ~ďXĺfw$$'Ő›…űÁ¬ëµ/0\,7şŕµ»%|ë^Ă$hN˝ŕ6ŇZé^„pë×kS/Ţď‘ó®ßr5Ŕ`źîŃý(ućě‘o UX ëçjfžT¶ďş±iŔŻ.t—ÍëćĚĚĆžö#·(Ę×rš:˘©ĽąĐ›(‡Ůg Ź)™–đĎ~T’ źßü±9SůI¬ë9aĆ©Űnľ-Ň×EĎ<0":B›ă 3ă.cQéŐLuŐ#iýĘ ~áXf5duŃ6ÜMľ$Ţ‚ťhŚśčZţѬż…ž©ż˙DäSĂĂřľg‰",dcć(włWgČ÷†ĆďÄ7¶cV˙ţ]ĺ†Ĺľnó0ŘpÓu_ęřÔâŹűT|\J7Ĺ#,ťĽŰ‰âk~oeöćŢu&ÍT_UhIkŞ®GĚŕŃŇ”†źy`pkioSmZ窭EĐTŕu°Ös –z¸Ľ ’ĚČó•UbŘÔŞTR9›/sě8˘rŠCU?61an/ţÔUÂée…M‹Öš˙ŞĹ8Zmôű€Ą'v9ŔÚ~÷Q#Ç+zęFÔAĚF5˛;Ç×Ę" s&`ą"˝ĺƇµFáÁ8[ÔaûµuÚ§ Ťł=čţ$Ś[*,U׍ÝĄz¬˝ö¸» ĚÓ>]X3E0ŠAŇçĘ/rqđQÓůŮü"H–bŢ7 §Ľ4vŞ˘eBÁ&É`ĐUzŃźŽFK5¤CŇűAhŮ“şmzßP÷ę«[ż†ˇŁ`Â{|âô}˘<µhżNßŘË3¦jč™áøím”ýďÔŢłŔĐO«ľ‘ç"I‘YÖÝ·!Ps˛đQFǸ‰Ghiŕň~10őÖjÔ*o•qüßX¤·ˇ ‡©']ĂźqŐ“ÔC“,”eg±Ü_ëOŁjŁ[ź˘˛=kOȤ¤üU Ţ>Ş^ 9©š=ĚekyĐýB#’Ië­xůrYÝbŰxÝ!2-;ĽJ4WZ˙áćAźXůJH•# 2“[—¦çgł™ž űÚ,¨ (µ4E‘Ľ‘ČűÁSy{G*Es +“Lj0ŤA0Í"h Łbľ4Á´Ţľßu禂a«ĚPaB>ĽµűÂŮyŃ{ŰĹňě[ý'žŹ€ó¤ţâ˛éyI)뻬oź‘î…:¶e·żönŚ3ö•‡P›ŹipÍ" ›5fÚŐµH~!7űŽNŮ¸ýR–1OŔmp¤Z|sË_Ş9>Ĺš]ąŞAČňÝs37Ůcşplë꼚P¸¨ßsîB® Ž1ąqˇëĘ.ŘĄ<\×[Mmñs˘'ꔬ-ň·=ÇîŐ„ť „ăŤćŘ" µ3§_µµCRmäŠ˙T)óŞóë‚ö]čÚŻgSşSfŐĄ(K•NTđ>(<[ÄcE·lŠŽűg%BřľcsßôÔ´¸ę:$mć· A@ľz˙uă5Źwšť0A, ťş*łUwÂý’×¶ŘlÍ"˘maŕ[ 2††| „0Ýčľ‚ ˘+$î:ÝťEçBľDęISg,cĹjśőĹĽ6M„$F+N„„ôű‚…IŠq,¬Î<Í|LÎqťÄíţúaZy0¶ yq·k~uI~ 5Ź^B#nę,…NÄĹÂíŸë‡~I…šŁĹ•SÂ6‘č٧^•Eš»$Ż_§éñyĂjńâĂON_]2·…đ[ËŚvzÓłňਠ DIŕ CR_Đvń2¬|:*5|_ĘČŞÉÄ÷@srhľíŐ|u“íü÷Ą9Y¶_µQŢF· jČŠ÷¤O“ˇFíĺ0Î_¨çâşr ű*ó;ő…ČđfçNíđ#Š-ŤÂßÂĺĆ‹H)äG÷źĆ°‚ Ŕ*lĐb]üqŠ—l´|Ó±†Ú/îöřÉVôIszł'XÜŹěH˘Ş»˝hbŃËŹňéCt‚WţżLß,‡Ëg9í•ĐÍ”~mNş$¦eţđѢTÝa§¬č\g뼚cŤ” ĹßřBÁFäŰţ›~´!±Q`đ ĄP⽎Óg°ÄÄ…Fú"¶Ru˘Ü: T=4"Îîjň“ú.Q©•çv˙˝÷‚ŕ&„ŘsH%«f„őčĆ®ŔĽVĽ* yjTPÁĐő¬.ęËŐv$ qĄÄöáLĐ ßÚ9WëűnV|×äůÝbU§{‡çĄ‘Ů9ť%Uw°ţ›¶„:9ţh-“_ßéŻlůX¤6pÝŽ”´vnźĐ…=.č–4~ăť±âl7ÔĚ12$Xč×$ "ő§*ł^bRµĺ(ư—ÓMY·šIöµ©ˇv#h'!¨ »ĹŚĘěÇ*al#ŚuĘĚVőbIMkběwăţ*áM˘ZR*űoŤę®h_ů¤ĽtŐµm„ #…~ Ĺý$ 0ŔpäOńy´X ÍpÂŤl´“8:VŔc (ú W×Fs>‡Žŕ+S°"Ľřć,Ü&söK‹>Ä2°†µP»Wöüő‹}6¨Ať]Ö7ý®ÂX )T\Ź ů9c/pö„Ô$…źŢĂ©ĺű»š„( n+“Z3Á~ˇ®Ňńikxĺ}N€íŘď!)hVß~›V×Őëęx6<×VlP‘ú>)ź‚čG Uâöč/‡ťžNíŻ°n@,Îů–вţî®1ľ *žHŽ3cŘYŇ˝/tß÷ČIť# ŕÓßşŐż f»i. t3ôŰäâ“~čtxĹzńăÉóh }¦gü.äpűŤgiDQď7´ŇVĹVaTÓ8ńć(|–zYP˘qłľ®>$‹ŠD6Ěi°—)«uŤâ|L¸o_ud˙H~BŮĐă"[5†(yéŹm¦u;-qő ń±×nŁÇd[`ɰt($Žňg¤ 'CźťjE‘4đ3üo­ú+Őd4ş¦Mbľđü_,SŔÄ‚IÖ„"놾N Îu•î„-NĽí÷”RósWŇęĚV·J˛éÓ_ ň‡#wăÔUč.§Q×dÓáŠ6$Ü­Ă®g ¸Üđ|·t,Ű›*D%4Dĺ¨Zĺźq #H# ĄŻdtPńŹ”UFâT‚€!Qw “…Ökmh¨Á˘ő`Ă®u¦[žA\şd‘ËR0-žčRâÄÓn7=?†,ĘźdxěďBn"oŤbY)ŐS±;{^©D–W'g|ATBýrF ×őaT»ˇŮ¦˝ź6Řu-żăNła¨F/˝˘Ďi$˙^î'šCC ™-mnlĽG…ł»iě)ăÁŁŃ‚+–ňýTŐ}¸ř+ËÁAwkcĽŤÝńÎJ«ĺ“.-|$~_Ď5Ć[ŐfËÍJúfËéźL>„ %¨ză‹xe3šů?Óµj>QôŘÄ39ÜEý0Na/šťĚśăśwj¸Ü«Ź\Ą^Á|özýpŚîUP{vë.O<ś<&’(^ÍĆ*|“ü±¶Ę3ëvsŻH{ćx‘´ńm˛6ŕ‚l§/XďkÎ{Ë”qQHËC?Ăţ-äĹđ±4zť]‡N­îÜ›Y|Ő×Z†j@»+ŻđHšÍçy-q$ş–>‡9.¨’ł!L=¬ű\1ż–ßĺą|NřąąŚPí ř"4°ľKő¦Ň;hŠŠUwFX,űĆz.ŹłbzŘ>÷Ú  ”žh!DQî"L‚/zNŕččóe WxµśĐ°Ŕ»Źg­, Ýłň,lXĎ…ĎÂä0„‘Ű(yň·ęěËBÔ_Qş @q}Ŕ][ę´Oßˉw•=ŻŤ·–Ó¬<'AUŕ˛îr¶ą°Yhi’đ6b7×á’‰A<“îŇţŢgů#ŐÇߢCÝh„ÄŁŹB?‰ެš7˘/oTjT3˝9`ľw¦«ćńĆäÄú«•iß*ťUÇűŰ}!yćĐ#Uwó]îJ˱šb‡=á¸lźşÂ3ôžŔ$Ţo‘yQâ¶‚ýŻŻćk9ňśQžŐ¸,’ç×tçPIad&^éą×űp)Ɖ–x_ʰ>e7xŃ~‘ö 2±G"ď> ’®ýZÎ]"#/;zÝô•ËéVvü¶Đ.QęšŰ…IŽČ} B:3ťSŻd‹ýËĽŃç@˘śŰR‚ŘN±cÚ2‹Ź ‰ŞMđ)¶d˙’~)ű))µ’ť@{ü¤ďw·î‹ĂŃtťü†]č IáÇ_IŁ1»ŰŤŇz_KÁ7®ĎĚ Ż.ËŘŤ~.óDż>äš» ŽZëG‡dŻŹ4őřSlŃt=¸Hť›~µ`Äőp `ÄP/ZeŚ­GîßÓpő­žćÔ0"¬ŕ‡jłz‰‰T_rfđ ­ąiŞ{âľŇňäďţ´Î•ť,Č|Y˝›ëR‘Ó¶źM0.ąŻţ’ô4ąÉşŞ¦ć¬öşëäâµk*TɸÍ6$ú±ÁNSpŕKvQĽ‘ĘŮ ´†a°óřë… <9Ľč3J™·‘¬ÜRö:¤«´:ńO<ŽÂ0os^K§ÁĽ«Lą‡1¶`v'J;@íü—‰…Ö}ă}.-:4:Ą±˘Aźô& §›ö9 ®kÂýBj “˝ZĹäú4č‡v— iť)µŇ[#|±ű W»Ps°n‹Şrd0ĂňµŔŻ ÎČ”ÂyüFŘeńHWϧjŃÁo?č„„2ÉËSsRĄÖ\Ă’rüĘB·dIšę,˛R{pÉ÷=Ŕ#ţ2˛̆ŕoă˘Qµ¨č’Ź˘zě:wE›HńAůď‘sädÍŚ\ĺĎÁĚ2ŢRęT ű˙G#,O Vv8jđZ|ŠĎ4űФńĘčOjRVČ„çIlł6Ď߼tȉnÓ3ŚŐ2č[2­ĺ/wë}ŘK&…ś î@ÚÍLŮ˙Ąő–Ś˘däŁv-™(żí& É5µkôXZ8d`mőâR@Ď2B(ĎXâ3.ÍĚcÍąX36ŃD‰íXódTW(UĂ|%Fç6ę‹"ôo'.m˛ďšÚ„ď¸X ĐH÷Ěyw1×ôÉú®PPŔěůřÍp_$=Á}·żłoFŇhĽ$lE<_M!H cË)nLÇńŰĎžc„Łěćhý2a5ÎUzf*¤&ç4sÇ硋—"ŐűoűúBâBĐ2Çź‡,{5äHŹŻł’ĹĘ'OPPŁ_p´V˘!w31TTN›Ę*h˛B —ÓŰ+UĘřĺł-ŞE• ĆÝ’đĆ%!»–űźdŚQŮjůó˛/p~¬+eŕ[™n–K\|‘‚ąĆ´ GŞąŹÉüÁ¬ŞłI"ß âÎľŻŰWfŹĺ‘#›©’]„6BMW/t—Ôüü@QÝ€ŽĄ[Ë«¶O7Řďó™ś×«i§-}Ą'o«{ţÚ!Śň˛S—ńôUçy,6R·ŢąÔÉ-! ŐůÖK}+•ŐGTŃ‘´‘“:ŇŰYńÝę2׼†â\ŚBŹX„ć5~'Rč• \˝‰utüSś4…ÇŻbéÄ^Ŕ¨]±ň(¦ÉIL1×Yô–7™ÎŠĺH/—+Tů“1Ô>ŞÄ±ŔŃţ®ű™¤Ŕgěn¨ţřUđSZ«I QKKÍ6FÔt9]Ó#ôýo×Ú !čd‡"Oů†üćĹ6lť™«.Hą‡ J´(¬ŐČبXxĎßI°G?ĂĘéŐŢs+Q®0/‡™`íˇ%÷~·* Ç­]$U ÎŮč>®Ćeś…l‹ÂU€†h>@]«1{żëH ΊjHwÁé×±JśţJ=ˇŤĚąCűąGٯԽ఑X´;&P›­#],‡ä‚řĹΞüÁ>"7vů\•$—iŔň,%ç5 ’ĽőĆ"Ʀ´¶ÁAM<µ^<sţŚ‹qŹ-Îfm銔k*•Đ\â$Ú YěLn»©śšů8JX©NŻW$*Ł_z &żĹ6UdĹŔS­p&YKďÓ‡hŮ!ÇX†đČűĘËĹ«~&* Ţ>借ŠŚL×čB7ᇠKp©Ž ?CÎďő‡<®oN˘żźżýVžĽŤxî=Ą­Żo‘8¶žĘY‹!˝ŞQ¶Ü…ü¶FWk™W¸ńŃşPDFç*É1Ë °DĆ7‚Ñ䟚¨l—Q™ *łL<ăÝőµ+R!-˘˝Śëť©Ň&aćă+«OŮđÍž­Rűh'pGČĐc‚ńÔň%ăÄÇŻ;­Ţ_S㣺Ív{čë+«Żí4ŤŻČŔLČm"íőËBH?†Â%wiŞß–dć$đ_’MFłxÜ]ٶ+!ße—Ŕ›NhÁd*ŐSgô€µâÚEY3o ^€W_h…G„q–ŇiĹď~¬V÷fą#\óŢ4¬8Ă\Ű íÚço¶0Ţ,¬láGj“ôk,b8 qaaí‚®"ą:ł°KŻW¶j¸joÂűé‹űAŮk˙šäÉ Žł^–0ő;tŇ÷pĹŹ7Zż!®Ő~$GI}“řVżť›áBV ĆŞ ݰŁć?PY#=t“cäl^37ŢYŚ.­đé.®Lę.߯ůĆí_Üôk\¸ŁŤĂ*ŠÜT%CřËf˙&‘#ę ´ĎŤčëµEeÇAý´ŃĎüÇőĽm9ŃŤ˛ÇË 1Ż‚’ŞF‹¨.‘·_ŔŇZeĎŁ‚tîĐ+S¤źĚím=Äd€Ş\SFȡ¤śăx]‡u©ŠyKN *‚ăß~dňĄ™2ǵ·Í“Ĺ<Á­áŁ'fn<čúÔ#نüái*±¨v˝ŹÖK8LŔ˛{.w°š€3ɆaYpňĎł'FV”VZŐ«Ł»Ý^Ýţěץ?ÖKĄťF…Ľ›ďö…›}I4¦WX-kA ™;^ťŁ6„zdčŻ9$ľ&^–SAią8Éż .„‹ď @¬%Či@CNďřš€,†ůM­ŇŃ7kS*ťµfÜ˝őŘńJ:‡wŹf‡›Ąa€R`:MÚQ9DśşŞöťUŮŤ7ň GlB,EN;řó­ăTH $Q[8° Šśú­˙‰“ľ¸Ůńg™??»çG¶í‚*dą·vŤuĹ+Bş¸ Ą)Uq}6®^\ ’.ő ĺÎΦ˙Ž»AęuŰéş!ŽLŁâx8îô$”ú×Xó둪ü›Q”×âΨś[m}ĚAEć°P=Ĺpmň(Ľ4¨sNÍąmŚÝéVĚ:ɬW…,-Hɸ ´¤×`ś- ˢ\tć"ú>=Ůj©Î˙^r endstream endobj 5312 0 obj << /Length1 1641 /Length2 8047 /Length3 0 /Length 8889 /Filter /FlateDecode >> stream xÚ­veT\ë˛-x8<`dP'„†!Y5dĺ˙҉°1GüÎí~€P«OK(ĐůwI°ša†8 7Äď\ €%Ř foîţű ˙‘áě†X˙­€Y›Ă-íANN4Üżoçď:˙ĄzsĚŢýO4ôŹ×ż5€N {+Nlއś@ÄCnk0›ë÷Ŕ(B¬ îżě–ΰa. řź bţ=3,"Ě-ˇ{w€%Č ›K ŠxH `ţźu™ó?×ä˙@‹˙# ţŹ´÷×Üö迼Ä˙Ű÷ůźÔňÎööjćđעüćzůęđäŕáçpđŠDxř"Â"^˙MÚ?<<źUÍp°Ŕ›“››đđ˙Żßß'ăĐČA€PËߤŤ0‡X>ĚÜż ża 3ţĐę?kŕˇňť˙L?äbOOBb¶I©ÉrŇĚ®~YĂöVÔ®@XA•N^Žo)´Ĺ')dQ¤Řě¶,óË čýW÷‰mŘÝŞëZO+‰=SËĐ~ös/:–¶ś'sŚ Blk~\&¸É;úžă* ŹŢrë­-őkj™äߢS6đÁ1.X|é\r|źŇźĂ𼉕ŃÄŤ_Ës·wă7/Ι:{»»ľµˇµ­R°eDc1™“zżß¦I@¸›ÁO«€÷h×.‚Ę'—‘~őD×ĹěW%6·5g˘sźęHrqąß‚í6)”Y>—>şżÍ!0":§f $!*yý®3<—%qySŠ]U‰Ś)ŐŰ7yx˙ŠGúĽ_n>†ëňĂ3öUîŻCŘ醛ÇÉ !%­…ŻćRčůś©ńµŻHj†Ę‰ ‡Ă.$Ş5Ť1Qđ=Ůk—žwN†ŞđŚdűÓ˘Ő—Î67łÜë»î=OEÓ“¦¬ÓŹş |däÝĽĐáőâ JOÖ›6ĺyńk {"×±÷e‰‘ÇZ·JőP­Ú®ęEÓO{Sń:te×IÝ›$l& d–[Ô¬Ţ/5 *Ě}OśqŃ‹ZýLm7ą˛»MĺöäÄ4ĽyťŚĂ6r<>»'é÷xEiĄŮ,•‚= ¶7ů‚łŐ?g-ĐË”ă‹ű'…Ě8ćQa}ýĽ`B÷(4µÓލŢMěŰzy$ý4é[R:0ŹNcA”öi]ĆaQK˘żpľr¬$ _§‘ć75/ýŮ)ű§ile_ĂJ®OĹÓ„Řü#ݤ„~ĘÁFpCľśĎ5©Ôö5踴sÖUżč`[W—˘H•Î1ô|6aJá;®?ČbcC­r™kŢQ2ę/÷ľů†–'űŰ„ęŕz1Y>Ô.MŤ’2¤Řľ¤$´=)‰$8N4`ě€5ŔćTł —‰b!)Ém|âr~ l9k6•” ¬óíL+fw§ńgMD—-bËuą;ţ+ÉEëöM˝ł{ě¶Kô0#†Şç4A}Č+“ö‹r;¶z˙÷ęĚÓ¦‹2ÇâJ\?>Ńqć$]Ż©ňzó(Ţ”? “Äď‘8áĺŮ$#ŰüĘD‡##xZÉáÁ­šĚs4ţeRÉm^D]ů§pXŐŚ!m@ď,ÜG=ŃI¬î *&“b ď“4b7ń:KnáÍ9 ¦ńŘĸÖFTajÎ~–6iĂWO~ OA*>·ná0Ş«9«Î-śH«†Cî0ű 1Ž??—cFuÝń9ó/3ťŐűw(ł\âO’ăś±w®ŻXá+Uži+GĂ]$Óšő0ކ›ľ“Gëz篻"Č0EN.˛|Ź#J®ł>~"U „š¤fE%2˝Éźś°š Óuđ/Jí$cě}ŮpĘEŞ‚,čŤĂDńd‘qě­äe,©çLď5§hÝ Ďî=ň˛´d‘±í-a€ůtăÓۡ âaYŤćS_d'H‘/?ž˝oRTW´"®4ÉĐL4Ż–VŔĄ¬ń:i6r|/Ô|ăB/fzý.ŕ +±´;y>Ď^éëk?. çöRúG´™ÇMń˘ążĚ×U‰â57ZëÓŞ®Ldž'‚Äů)fňą%ËŽw™Ču~Ś:n­ł<ÁÇ“Ž*Ҩé-s€”Ä˙.×M—0®ÝNKÓąä3ŐRP¦›UĎôeĆľ#«ßąí„ ě}ßĐaЬ‘jú[gÁŚâşgŢź¸łěë–ó~Ľą[ß®k»•Rw¸ÄxlWăwĎXĄ˛d‚=ćÂńş¬ˇÄ¨ÁŕPTÁ×¶ď.ţ![㑜P§Aýţ1y’V’ŚW~I˛‘ćzCG,ź‚EŇľ|˙/|?ZôşŚ4,\É„…O»ËµBŻJI‚řŻ‘|Bß•äL»†‰}Íű' W«]´Ż¦x@~ňî1=×s‰ER.%ö6&uÎĚł*ŘĚů•„ŢŮzłńĂÁ_hŘ÷ ~ĂSŞx8ɵˇN „çÝŢô‰–×üßfűPű–R’.źHĹ,Źe¦rbć ±gĎ´íÖ‰„}GďNô1Ľ•ź[«’—łÇKhxŠŢĎ8Kp٧ZÔ·“©|+îÓ1‘zgdńŁUĎčc;ŚzŁ?‘VWD/kş‰Lp׼˙„µŔ˙H”âě44L˝`†¨Ž[—Ś|·™÷Ř3M‚ZŁF\µ†ŠšAŻŔ÷@+˝Iţź;ěĚŻA§?Źo\mĂ"lc€1´]ŽxÓˇ@ ĹÔĘíPJކ#loAŃ;r®t—Á_"^ůřŞg&¨şE v¬>7­ŘÉ„5âźÂ_țȨxĚG'I2q·üBůÜ_^§‘žZ'ŕ€6Í»,LęăY”éé p'Ţ«u˙46´˛)(ź•?1ËI3ZÎ ľN‘Ş®*ć{ú”٬ĎË‘âřzímĄćiŞp<[Ý šÓtC9ÝéLNfľśŠ¨`E šőěîË2öĆ$±’¤Iű+›¸é)¨M|Ľ“V(řéGX4Ř­ÜKM}«ÚÜÚE˘ňuR»ßśçgëžj‰čĆ~.ĐwÄľń~SgśűF IŽŁÉ|węEätZALT¤ß<źAxIHěV”D©}ŻŚk)[vUäăzŔ\ K'ĐěUe§‹ÄXž rT<’ µđ›#ľ;YB ПҾb˛óVŐ‚<{b˘>z’¬‰VÇ-…ĎŻ^ĘÂ$±E)ˇś×·[rVş;!´čuTeăPÂAłę™GDô“éé¬a\Űhš“z”´± WôŹd\Á›Ą'>ß˝—éÇ;܆KJ3ÚFą9 \yß—içzĽĐc/‘Ԭ‰ac¸§«: ÚĹ0ű˙l¦›Ă~ě»ČÓČL6{¬%˙ťY¸9c—ŠÚćüAőy·ŁČÇĎĆi‚‘‡Í’µŢ>az+™µşě)K5Ď-â$CqšL5ĘśĄ1};ńL™›9MTzŰS"É@÷^‹ŚIÝE›Ô4ŠžŔ°ő­Ů˝eRayłi,Îä #oZ„F†ŃKl*[«ĆŽ‚¦Ő*r;´ŰňăΗăžR”ÔR6¤j7Oç·­B.ñťkŐM{E÷`^fŢ=Żő ý;@~NoO„IG釔‚›Ëxă9üGNI/‚ń:Ď”R=|´úěHi¬ő>;Ƕ‹a g€qc"iŤg]wYq¤Ęw˙„Í›Eľtľ)ş•ôí_p©÷ßص~'1żĎš'c‘ŤOú~Ńí±4«™_«Sśâ\hŚO%–)ÎÝAqÚćmFlŹ–7AË]mŹIN´ 8ÍQęĆ ×ĺhŕŕÂn‚€Ň`t äO‹’îĂ`ťŞÔéôÝĆ1S‚NΙ‹Dg‹kĚç2d}<ÓJş=ď2ĂźĽeS7˘µ•îĽ%ťAMimÜÓĘMh2Á\;Y ĚÔťEéŻ ‡î®dúâ-µn^Új9Ú3Ľé˙*®b7`îżťń4Ćnś‘±©nš[‹¨Ń\̤*×jmqŚşĽ$żíicip}óĺ–Â9LîźIqńŐ|ůą÷Îđ8‚ETóťNě>mŻaŹćąµĘ•+!BaDąđÁ\ć+ý“’ăŻ.Ăř#ł˝%˛2Ä©ˇ˝‡¨Ü=Ô_-7é z“•őÚž]ń"î‹¶ęGš]”IÎZ×…n ‹ĆéÔ… _łŻ1Ú :÷”VăvFuqŚb‡¨Aš 3öăĐ5˝;’ĺ.ľŚŻöĂŁ„Ô ~j¦É§y;˝ÎqµNNđ}ÎćpÍV„§I¨›Yßźń"Ä3eČ‹ł¨QČĂŐ[- ¤ďm2ć9 ]˝U°RXňĄH\Ek•ë@ëMDÓ®#.kőNM×’_W5$ŁŰ Ěf­ÎĎľˇËŁŘ}żyňĚ'qĽ4§;'s–dęE6·čťoSfÓcÂMĹŞ2ˇC×HŽ‚a:de$ý+%÷1ČĹ®Ř ŮóQc‘şŰúąEńą9Ű ˝ŢCŹqlᲷęh„¤źľˇÍyĺşš§ř~ŤCş]SH2‡ÜŽ'›§µ¶ :ĐZÎb÷¬:SF{{AËѧˇ¦^\Ť¶Bš«Ë—2CkErDÖ•©— ˙|¦:ü^ň±äśŇ7®ţ´4ŞŤźFUčĆ'O>ĺÇGS´đQęLíEŘkY%´ÓŮŇćR?çq$¸ĽřLüőE‰*^bçĽnÉÔŘ€j¤\eR>Y`ăłźęëÉ*[Q.D´ô)Á‘G˛iĐÎs«¤ZvDU’2>HţŹć\ŽÂ'ë¦#˘^uŞ>?ţÉ»°ęSĽgRýĽµĹ°ź„ţó˘;FźÎjŃřşĆŃ$9Ë2+LîS|¦ő‰ć3 Ęf†ÝJĂÉĎŇ„=x\<î›7ŮŽ°nř[µÁ śiöJý~Ç\Ôßó$†n ,±žąŔů‰]C RI{`ţŹMâúńßnÇC˩Щ„ß™·2­%aă>ÝŇĺ©Ôč8ŃśmŢćC© 2ř$‘ěŘĐx1ŮeyŮď‚ô˘·ôb/­*ˇŇŚJ_‘écyÇVűJ“ ­X¶üúŢ3_(™7v{9Á×#ŐÔĐ“íŹ;·6¬_ô™ęýn¸Ď}ř®yX<ŚZËŽĄ˙°ÂßVżÎ€.®»âča'Žśs=u] ˛ôŢ&:j.ć'|%ôÎŻ?·Ýŕś8íů˘Ś˙k©äö]üGÎ&4{ľe.KK~’ę6ďSăěTÚu6éAé•t*‚  I=¦éż3Íâu ™W­iUˇ$;/Ź V(b!„H”®ęöÁłĘ3ZŁ TŻz˝F(Q`OéóÇ3”ń¦ČÎ5ă©KąÍŻüDŹčć1…ĺ%ѤĹĆG  7\§ËŻ/(¬ ¤˝őďëőÍDĂ .ŇŘň{”§92ş˘ČG?Áó ŚHE&Nůb:hѡëµďŰ(.PŚ÷9Ďt™ŞüÎ) B9ÍĹ­7łňLżÂwÎe*~U|J«”‰@] #‹÷šóĽę‘×B®ÇÁn$E\]˘TżÍŰ0¶jkßĎřŠť'4˘6Ó<¬×H’CÎśŃěľgôóŢ\Ń–ôăH§UçW5+Ä‹Ô Hâ…z{»ł© QŮÁď–›"Ŕň';už´-±şF”ľ!ľ’ae0a¶S‘f±S‰Ű62ČŠAťĐźâM˝`ţ@©˙ى]Ľ]äkf­hxşě)`nĚ»ľ4Żd ô#eéćeul ďɶĚh@‰ä˝ĆČ ŕ¤ŘDÔăبiQCE4ŕ5UËw3UO>ΗV·•ř{°„i™A,! MĘhńn”řx˙1‡ŁD•ú ‹„űrl©×€łV-‘ş˘”ë6Ý] a©'2%pőţŃ۰X\f±ă˛IĚi…_'żVzÖ^FpŻ1Ĺ Ä6PŇć©‚źŇ{çšÔŐ<µD6s Čľ ĹĎgf\ĹŤV"ĺä•Ćť™ |±żPx:eŔŰJ\Ú¬©´Î=÷ĄooŔ-’|\ŹpkzňđşŕY¬ě^©±ÁiOŇžżB;ăęňďî9˙>µą(V-Ř|ÖüÂ’<-\ḇŠ?S°ßJ4ˇjN©ć%űĐnÚt„쬍@v%´*qN ôšHE î#«…s˘&ňĘ,ĂĎl`jÖ·`¶B}lxh[Éťž9,ń\˝Ň ĂAk=`\¶­Ě˝möšMŤĚ…jĂXҜҌËĐŰe…4Ëńâ1·“Ýů‘x÷˛qá#ÉüÔ[®Ň¶Ď/k o]ĽížŃFyo ł™˘»ý ’ Ý);}S{`IÜČIż”ݶŢĹ ŽpřYQUC“Ů3´íó-ŕvý1Ţ F†ŁŰ§¦źŹFąĹX‰,Í+˝)Íë 6Ů>† ¬p!µi3L‹Ęş\ I<'íPĄť·+ ’¶Řc·/Ą0—Bjä?kŠÉ\őú®ä”zż‹žŠOl˘7+^ź&S¬Ŕ¶Áä:âh]·NŽŇ°÷&Áú•é˝NöѰJQ{Ôt 3ĺ +Qľ©éÄŤV…ďË_>Öĺtˇ­łN?˙Áj Ř'E”qy«K8zĚśh;[hÔô—üÁ8błl2djş…·É·°¤\Ż­őB3ć•őşťĎě¶~ŤźŮO’Ęlz¨ąłÄt_ď…~<ńř¬oÉní™0ëŐg`ĂTÔ6n‘Śá/ŘĺĂIz5éᎊ⌾¬G%öő_…ű5E./.Śşş#…OYő+T×RtŔÜâđWž}ę± &¤2Ä 1>x÷äěŰ!ţŕÇeᤡŕlQŃDG4E´Źán}ĂńőK‡\e*ŰąC1ˡ.1ă|aâ‰M Ż­?Z˛ĚĆŘËŚ21o ăpé˛t=wEňë©`<Ç|ŢĹę0 ­ĂHBśQ@RŚVf8=ÄrS¶—§Ä˝mteŚj){§Ŕ’†$üضE€Ś…­ä5‡QnţXŘBćO=#)ĽLöV‡¶łźĽˇĐ+`q©×u&/díÚíuŔÚţÉěvŐÔ^D¤ö\ű¶ŁUe±čé[ Aű{Oץőá±PÍ ‡„!/ßÚôRĤڞ˝(q i~ĺ'Ç? 3đž±ĚW¦Ň;ĎPÔ‹ =›îécXO2ó.»–" Ôw±ňŰ`g‰|Ł$UĎÚx#ĹĘx™bâďHEb!ěpéÓëGýžMĎÖ‘¦O1®ˇŹ¬żŐFÓ;É–ŕŐ#/áç@W,§uł&;uÚďů\ë"ĎĽô™ą<ç®űiČj‚A9x–o¨-4%óŇ"oţ‡ŠĐ"j‰Ź@“_so5ڏő˛kTŔOÎëTBśŽrzfĄ.ëTŐ <Ür8OĄŕUé –Ü ë¬ÔŘS#ÚÂŻ…KłáŰy$®Ăč„RdVG6ÖPIŰÎ{9ĽM•Ď[ÍŰ÷tľüf×řÚÉů[uGY9(ź¨IŰf'ůqß4GŠ-SŹFĚ}Yxç´˝ZŠ«ˇ;“Fˇ^¬Dóô{Ţ]µě{‚U÷»X)oÝWB`u1W—iÎ; mÎuúÚ˛Ě ®¸ˇŮĺ@Ôś@XIËt ¨[s e »ç×»Íęh.–%y› ÝUň¤í8®âqęMĘ TeŁ”ŰĚę=•D!‰îÄËC˘K˝ĂüDDߌ§ĂËG2ÝŢM/é’6eÖ[¶aä)ÝCWXóZsŕdě7'DEK3˛-9—&CľQ’꣉Y7ä—Ń6žI#_ź;Ýe<Ę®@W”łŔgϢ€ľŤĎÇrťh[ő.›Ëם*O…Ďwř•§OŇžÖ¨şŁ™0'X@r_}«,dlĄ°HTő˘S\`Q‹7ą/Ą Ű·zď„_™Í3i3Ç.ę‰h,±Ťŕh$›E߲ís˝ÎńxÂ'ç5ľaÖ“ÚĆŘńú­'Öćś;®iGy‚“‹°{GÇr;±€Űޡ˛ŃTŢđa–„B Ô+ 3ÖýŐ‡ČÇ»vë­!Ó8ÍâÎV0ĆŢť€IpîO˙k·IfěÚá_ŰżĘF¦:–’–IňAPëÎČ©·‚ Ü’„SŇel#_ŕgdĚ€t›ÎqšűśąMŘŞf4 H‡LżďxQŔÖkż')ţHŇh"{Ëdäü%~#Ĺ1 Ö=ë·°-ó)MŐ‡î†_¬$vÓŢZڧď!ß( ¶Ě¨j×hżNçç3“Řô[śÜôĎXÇóŹŽ@rZâDiëĎĽ)`Nđźb~VJŇ:o(3ABŃtŚ“=Ę"ăź‹}Öy‡VNĘ2Á:cžůFŤP45qwňóĆ%<…ď’ćQśŃÍáĂuÖćPÁ­ţż­NWŁHe¤·čŐzÓÉĚ)Ŕö:cIá$w‡ş®2Ea¤08ŮŰ"-c›™ů+Ň”©s‹)oŐŞÎ9«‚k¬ĐwJ%ŢŰyIEé‹§5ťĚ—Ů#.{®ŹŚ§eaJůXŇ›MĂŤQĂá9J”;đ9ĺC_ě~®MNŠBĎÍť5‘Ý#2OÍ>şţ8¬·m˘ 3EóY>lcŢ@ťË­j:†?Ó|őáä3C íLłVŘ/˙eśj@ ţHÄ0Tî9hĹÁ”ž˘¶|6=‡DÁŘyżNě[ß,ţ‘ŰIQWŰţÄłVźí55˝Q6—đZ—őąŵY%—8î‹–3źsëHň%AP˛Î«›aíŇôŃuŮ9ŤłĚĆ_yŽ„ 'ç§Ű/ÇŃ-I"Ö6Žź*6GĘŁ¦0JŻ#Ýob,Ě÷]ž"cq’µÄÁ˝×qË{!Ş}T‘iG$(M•XM׉»Đfš˘Çú’ŻMbWAÜssŘ;çü÷|vâbv8ذ+ŐµéDP‹g—ˇź• —ľH±ĄĆáµyđćbÎYŽ)M·“ËŃF “FüËďŢ? endstream endobj 5314 0 obj << /Length1 1166 /Length2 10507 /Length3 0 /Length 11284 /Filter /FlateDecode >> stream xÚuveT]Kş-îÁ]7 ¸»»;׍łŤ[pww‡ŕîîÁ»w 4ĽśÓŻ»ßíľo¬«jÎo}2kÖ‹š\EťQÔÜÁ(ĺradebá(YŰ›ş:«›€Ő€–®€? § 5µ†µ‹đżč?„8hâbí’0qůĂkXąMŔ6+  'ëź5 ű?Ŕ|°µ˝@čŰYţPf®ö@‹ş«ŁŁť5Đ\ čěŕ 6:ó,ţtößU⎞`kK+­¦š6==ĂżV^^^€©ç?€ĐŮÚřřgá´spü«ŇźŇ@ü§ióżbU,L$Í­]ţ@kĺââČÇĚěhaü19[0€.Ět•™‹;Ř˙•Ŕé/Í$¬Á@ł?Cy2˙§n¶ w÷ÁÖ óżG2wudÖY;ąe%ţođéß%ĐŔÉÂĆÂËÂ:€fVĚ•ÔđtţM˛ţ›€Ě}˝&vÎ@_k ŕź’·ł‰ŕvúz˙żÄ˙Ü!±˛Ě­Í\¦@Ë?Çđďě` Ĺ?öŠ&.`k€  +€ĺŻç_+?jî˛óüw¸’‰=Ŕ,ĄŁ¨ˇ¨B˙źł˙+JLĚáOJFVn#ç§üÉČËÉţź˙ĄĹ?uřU1±ţż}˛ü;Ą,ČÂŔűŹqţčřϑ܀`ç?ŢĐţmc:Ŕ˙ĚŻäŕbmĐţŰ:ú,ś,\óçĹúżZęđ˙«±ţł†”«ťÝߪĐţCŔ=ś €ż±3˙W¸‰˝µťç˙ňÁj˙áţ˙OY;k3QĄÝżd˛v–˛öš«X»YýĂ.˙TŮüď{Tqp¶ţë&Y9Y˙Ó°˛6łťť˙śĹßdţ%%AfćÖ K€şËWš€Í˙üE›ą‚Áäůű€ţ|űĎ˝…őź@ Ňę’°MCp×cť(‘;ăÁwöA.͇wW2¤;Č=&¨%|Űr"Ž‚{ž” • +ˇ=hEhČĐx"Énw[^±n&xL¬L(™Âs¦F%>”kÚ™ź,„ Ńřiy'âžßd®Č+t¨…ħ0ŐCpüHuŹŽť”áH+‹Ş•Ź—čxqź/•e쾨ňÁ-ŚőH°Ř†Ą!Ëő¶Ě>ŃČé"·ś˙ÂŞîĆ4^\űŔé·*ŤäŇpmJ¤SÎÍ×3ŐËölŐ-/ŇŮÇP™OstË<‰ü{{ěÓ ~RÉ& *>ţt§‚=˙ŞQćbáP÷,í Ď Ł(ČřĚ´Öť"rË«<7źßU^z{wý±m’mbą{ĹÁâÖŇ :x»«mč)SkÉosÎ`âĐM| G~go˘^źB•Řϡ6)ĐMСĺÔGVݨż(K:®Ă†W´XŕŞÉËÚŻ§&>'ě4—ähZýĘđĆđ#,JĺĂ÷2áŢk5ŻBq×mÁ»Śô˛h©©JÁ:b­OŚ‘L1ŠÔłÝÎt2וőHý骛‡& á!d ô GLĺ:XöńňB\! 7ö¤VüŃśžbqŠx ALô˝‹%D -ÓŽ”FŰ<"¦z=_Fúdq7ęń%B}+ĽŮOŁtqÓ༫RHŁQ\›„Ďqô»FhŔŹË®R;™:.|9ČźHđâSDÔp}&Žü˝f»±ÜťW™iş Ň¤´M}âŰŹ×Ć_öBaŽ ›(Cę ‘ŇO– ýđ$V\vÂđ&ŚšĐćŕ6§SC2°ÚńŚý-Q#—Ď0G™kPQcá=u ĐkĂD mň#šĘfŢ|úęPľB‰Î DěFݱM‰şö‰éđ‰Yr×.©a1tPśÝŕ-ał¶fL´ ó Ŕë&ş3uŕłpćŕ4¶×oA{z5ą{ń^&Ú¨^ٵ· E1ĺ†5§˙VÚ¨ăěň„ ·‘ó}Řo'@·śŽĂ®Ţ.÷|Ă}•ÚH#¶v5˝˝}(C™Ý§«úő©†*®Íńjvw3®O[‹/‚źŞ[p ŰsÝ59ŁWÚŁ¬SŹlŘ4‰Mi»6ýYĂë¬zUYÄ–Ř>ĺ§jybPôäB-3?-f¬űÇoÚŠ;çwLĎVŠ4FSĽ5?ľç”%Í«:M«đe« G.éÜ@ž ="á—˝˝,AÄ"{ŽĄµw\™®)ĂOß’žBäŕYܸęuŔ8ľ˝Í–R.MĐÖłw=Rěý‚Ńá[¬rîŤo¦¸Ä5*5 ńoÍX~'<ěUßłçß•±™ÚĚyęHŻ`]ި&W5-Ý=I\ČLd„ ůV >uň™€Ëťą®[Żŕ &ŽL®śë¬gc˝řZ⵿AŮRA2@˛j·ëűkY—č+]P@Kľ Ömg%‡¤ ńŲče„RĐnÁE Ł×Ą ó¤ŤZ˛ókŢexÚđéX?Ý­Í4ÜŮ·UŐˇć^WŃ“FÜI®1ňÚđ´ý™¬ĺÝí•ĚbóMpřRĤŻĺÉ/r®”Ý‘L ;ťi!‘ĄçYtĄĐBŁWtΛę‚tř íöŚ,]ě¤ó5|ë+SyqÉě‹^AĎ(;Vú&0ˇ¦Ô—{úb^ßÓý{MÜc«‚Ę8Bߥ-—¦âř¸âŤ· ĆĘťťR‚Îü¶÷zMÍ0ڵ˛Ä®ýÚµ9<ůܬ.Y…@‚¦~ÇŐ$`&ť*ř¸›ß–ZKi mFę«Ţü-ßx?@˙–)µ¸ýŃI‰Z¶Ľ§âąň<1ěOfßNő´1®DĄ!Ď7ěÚŔÖdŮŃÜQĚ»Š’ŢÝNń"o§Ý•“ř*Ć>¸ř %Îb¦#ź’7Ťc^·A…ÔXUe’n;X+ä™ůE±ńjćÉĎŠ2R‹¤É>ÖjŘr=śĘ@·ťéÉÄN  ‰™đ%xb ú$ý´] ‚¸ń:7.ަ lm±ČÉA-2ś›t* ĹEKS &¶Ëř™şL7@ČÓ·ň5żžô!}¤˝ěDűŔÔ®A˙ĚBz„Ę>4%˘ZČóR ďré¨\# ć~:ą‡[A"&TĽ‡ĺěé0#&ňĐS8 8ŰĐRŁé!±ą.wÝ6IŔŻ aZh©[rÝ•ćTôݤ”•FŃ\–‹H&V*Č˝ô˘ {ĺEáÇĐAř€§źÁŠsç úź« `d`wľŔľp…,‰ éP"ÓHUÜgʸJJČ—kâ„2ąjŽů|ă•!\¦°ú.)©±Ţvädź÷––â u=„ĺSKÇ÷jEPő ň¸µ”Ň'u†~%ă`˝FĺG>ŹRTj” 6]gܤŕö¬?üĄ"„ÉRńšA@¦öްVËv–„–Ѹ“'Ľ‘…,şÜu%Ę‘žMY áÎ"ő3ź’s|JE=®uSTęčŰŢÇŃVÍN»)˙úM/ůĹ8•řţ­3Wž*#Ż y´E ëׄgŻĂĽ‡*@Y„XĆ †ß -E–Ő`Vwqn­)_ńaeLu]P ďa MŻR˛rÁ˝5Ĺ`˛˛LQË ^íľ+™ÚéE[:Ł«qAşKńs/ŘŽź.8®¨~g,MÜúHďÜH5Ö0éRqůl€[Oď@'źôĽ€ČN[ą @ˇŢť‘zxëݖžŘţş{Y9ĐônúÔĎČ'Ü3!ÉŹßľG!RÎíĐŰ.J&±EÂę¨ŇÚźŻ«ÉW˙ŕZ©ô8xy2RŞR&ˇ±DrťVŚ~Z!$›`lLŮ8,!ł¤ 0Od꯻+ő¶uu’žöƛ鿪C ´ÍXUôĄ˛ézĹuëq†NÖ4ÓŹšÖŔҧ†Ě żČ˝zKÉíŠ[“ĎÜ|,švťX’Łł|ż¦µEž Ě€{CÜ›ÚZÇrĆX–“ ŁQ‹„š ]íDŕcß(m?°ĘÍxęń5 `Ĺ^Şs·_Śş]q3h*ćc«d ą;łß@u=«&P¸| ×C!x•mżĄúmËćÁÝąk8¨p¬Ü!Ăűŕ›łä†ěÄĺšl nNg!O¸ýn/üÓ¨ó ¦ťţ·=َoQšaj›píFđâÍym’§‹G·‘ 6€ăĄ#±rEěr7‚ňľÓç Č!­ Äâܶ†…H.ź´§q/€é8ßaÖýô];°ÜŠÉ˛’«¸ŔŁôOUWĹ[ÓŹ5¶Ç“|r\Q*cáhhvzQ(Ç/˙<íBR:=pÄËăYż‹×•ęőž_ÁŚěąI"#+‡?qcă«»=v”GCO抠lRH@"sqîůTÂyš4Ö$>?®(<ł*Đ™čÎ!ž/4V¸#‹ˇĚoU]~oĘőmÍĚâxX:[aRé["'»6ĽcQä'…ýb6™ T>’Ź~®‡#Ö.¤‹đÂőüWŻ[Ćş=¶íV"óÝŰOĆÁÝy$öe©2ű‚k9zk Ź˝béݧGęöç:Ł üär÷qEŹa ď (Uß{ž9͢U1§~Ó’×§ B-©?@zÇ­W|‡Ů#—SZ¸]"$ăNńšw;j0‹řř:ńáMĎkrÁA -_ďpJ¤˛riű˘đjOgî©ĐË軲Xąła®€-âîU=㎠ź×= w×Í×5P˙ph5×,,Ü˙U«OşzYűݵN†_Č?…j züdĐ·ëÚ˛¨Ś0ż†dSíŮfCCŰ“^Dj€Â–F`–=3ďźáżň=2ÚWbÇďb4^<ŘȤéžÖ‰Sô­!X%ó·ígTĎFR1ł§p&Ś!éP<ŕš»•q.•ŕZőű«“ö%ÂŤŔébâ4ôř¸éBŰ _µÖźx·?ŰľĂP,P+f÷TďˇJ`„[¶w2x[ÚŻ E«•¸>ÄvďDý´8Łć‡ó1ß¶)#JÇ🉪ĄTˇťŇä÷M;ôę×Č=ĐÝ„˝ÉEv1*í3¨îlJmňŘ”ÚfKr C|‹ĺ`_/ŹGeŃÂĄ€čI±‘ ô[–øs/ž}=BF53¶ XW9‹8­Ťá,ŞË} 7w˝ĺÝßuÓř!Š–őßš†ç]wŇ™ö@ Mźr"ő"’ŇbühÖ&;NÁACe1řŚ·bZ;Đ—¸Ű$‹™wEJŤVe˛‰¬±mĄ\CÉ84©WdžůY—ĹIUľăKul7ůłbdł:i7Ü ^Ü{Ţť‘a`3٬"2[D3ÍçAČ&.kâ«Ç ‰¦ˇ÷BµäśËZ÷'Ťf¸tZÁOń”ß"VOâ[˛>¦3IČ–Č“ü摍ň&>Ő ?V_č—ö‘ĆHm\GX0ú |\;ě|<$*V<#»Éa…ţľę±Pżňîý3`ţ,â±˝ŔŞŘUŃ ó˙ÖŘÄľFáčfFŢź ď—qîw®‚/ŇIßz“.%ă;rŻmYÖö}gy×Ü÷·–íV)§®¦C—;üč-hnF‰mzicĆP m[łó,h•®Ť7\<•_ď­żR”ăża¬'^Ů~ý°87ˇŢelpW4ČQ˝Ŕ}é‰ŕ0ŤUdÇĄI„×o™VÔÉIá<€Ďę$p—{Íď\ŞŞőX m7¬$¨Qňş3ó5 Ře];‡ Uڶxüđ Ł6MI'śěe!%#yq87ő8g€eЧ"Ă&DI<ŻÚWĺX:ßqÖeŹŔvEZ ĎsĚ}€§Űž6“đŚË6ó~Ý2ůřÄ{°řüđ¦‘tn¤#z$m"ůť˙>Ş’({­S:š·BS·ÓmčĚEµY¨ÎJ>8¤‡Ĺt×\Ľo^>ęÍX¬Ń@_ö±“qúD°Ş×)xĄŘ€k7•e&\ĽË®ś# *´'Pçŕčŕ˛,©’‘0Ľrü KŻç˛ďłĄřů•ßŘĆNüNş„4©z‹źě”Ť“qŻ ®)?ĚäRŚţ«5Ą—FVdާâjոءÍđ]·F řâ~¤ŁĂ ÝdŔZťiE7ťo˙™ţme=ťuw˛SücW'ż;Š×+§>ďIiw±ü"Ý'Ż•ęű ¨:zÓ7É8~ޞáÁđ.Ł–9Ď>şą?\ęĚŚ(tĐeYô’]»’e3lpôˇýs®Ç±¶šW¤¨ÝŚ҉­Ąµ©pf<Z‘qw "r-NOE*`ťŃî·­í™–ľŁľÂŘÎ (@ËŁ[ß‘°†ŐÚţĆK fŽćé%ôŔ ^˝ ëŐ@Đ¦Ś®µ÷Ő“l—hNĚvş…PTŔťü*ë´¶´duŇf3ˇĚé\Nůä×é7đő|wöżM†ţ.B‚˘˘°˙Y8cqDflzźĂ.b™ůŰ<)]Żź´âÜŹo Ä3ˇw3aÂZĽŹÎ'CaxçwD©@ťg3ŽN0Óň–=UsvÖHF’O­ű2SŞŤ´ts[š‘o“G@d(ďq=1Ţp·ĘČ´¨şv‰¤äňtKäF>ř~ęGŇ]śýo?Lsďś=02¸ě8Ő˝]ßÇ==($Ľľő_<‰Ś“Ą¤4łľŢdyi2 çŻ[ůI9Mq° „dOÁ®?·D¨ń+=QÇʇ<ŤLLTśH{TÚŁVzO.ąčÁš:j΄&ŕ~ nÖŢËY±ĺLĹK ę˶oC>2˘§DĄ?ĎçÎěŻĐpřJa.Ô°’oîCÓŞ­˝CĆ)CŽžąFc-™Ţ˝[ÁdZńLŢîŰrŮüß×>]X i6+ŕ÷Z"ÓťćŐC†,{ň'šřfťG;§X]N .,j9mUA˝řěĎeĎdŹňň›“bWM%ÇWËě=Ƨ÷5ÄCu• -ÂeÄIOç$÷§ť ľJŢ™ü_Î䢭ÂË^çjkÓGXiĐA2ěęăşb˘Í«çăPÖÄżvbÓ ĂŐoł®k HńÁM<4߲W-01Đ‹n;9ô1}'Ś)ÉańżH ˇŤůš;ĘzM¶S)VŽ`FżIYĹţ›SŚdĐńĚ&QĎ×ĂmŤQK<`®}–&Äč–8–9d2ąqźQÍĹí/Đ»~©Ń)lüd®µ.t˙YŻą„ľ§i"tB/d;‘«Çs\˘Eö)D{ţÔĺŃV•ŔűY[¨kW`4h{ŚŠžącö ä.˘JŐłăÂ2PŐĚ”úôŇ7˝h®w)4ÄôywpFÁ«şÎWBý°R`d_ Rś27H^•^÷mć%#•Ő+r#č>NB )ü‚ĚéÜ&ĘSMáŹ$ęěş…ňřî¸4WjWPް™ďĐxtŮŚ„ŻRŰď{Ż\vŁ8«Ź5ß u Ť$±ţM•»ę»)ŃŻč/{Š1kĘ‹Z¤ŃÁÄóÍ‘\á›Ě°·VŐvĚuÍ}†Žj“÷é'Ń2nľtśTµĚ>µŘĐóoXí¸}(¦J3_DđóÂóăß°8cz"ÚűÎŔ.ÂcźďX¨»A°Y¨N CÇ´ÜIqŘ%żÓ}Č$?ĘgĄc¸  aÓ †éúUbcÝĚ/Ţ­éŤWř…ĽŔbç~«XJĆÍ$ÖČqÝ0ă3CœȦXlł’š”l…ű­c6‡˘›?Óń˝–Ô­óËí}Đî8#!”­ÄmŇô/nÉý‹čŠü3|Xž©vÓÇ9ŹŤY=˙§ń9,śćmŰM¬’K7»AP¸ÖĆ] á™Śę¨Ů†m˛Ľ—.Ęť-¨\1čĆaj´÷ŠľS‰XY÷´Bä zÚű1’V7~lCŚ„Šlý‘7˘F"ľń˝Ź2…eĺR’$ÄSzn±đ?Vżhhń¤ÝNÖ'˝·ąŕűÂ3ߨ ,8hKoş##eSüÉć„« ś“ZʆKؤeŞ!@Ü)űŐÝm“yµ,Ź"ť D!Uř‡ĎmŤRÜŽ0§–ĎT–+bΦZĘSŞstŤŠ­F]ľqˇ'¦Äfk¶ž—#÷® ř=Éx»ŕ­%Vtpâ2/"gšB—ÚŢ~ĂY {F®#ôËłN6Bä™#®‰ '…Ŕh$˘›>_…ű‚ĂüZ±šiÉ…=ËňÓ Ç=“‚=Ýďň; Ä0·ńS Ţʇ­Î/çlb6I†°Éü“¶§ćr äČŃ.ł{pđ´’XĆ®h^Ë}Čv"Ve?Ú‹Ulź.äË!)ľýŽ:â’bśDĹ>5gŮšŔÇ_«ňg^dĂŤ+°W܇tµË¦Ę ÷ű]+üHUŹ0ë#LB'Q,°őů& 5z0ę~>Z&ÖV`»)Ţ{ üVî¶%v%[1řl Ô‘‡AB‡VĎ…IQ0ç1s·IŚ<˘µµĂô[ŇKîÁîęxÎX˂¥Ý:ú„q.-±1×*ö+O{E*SÍĺK˛3Ń·löľ s‡lĚë&”úIžŃs˛o<Ľü Ň “8öE›ŃRé4+¶C4 <ú“ÂŢ'o¨+ŠÁôŢĎůś$Ď^d‡Étâ:ĎĄ“\u'! ±c/ŚTw«¤ňBPąěÉši}ń=ĘׄyUÇ>NÜô-puI @śßB©Ř$,%Ŕ6 Zí3ŤcĄŮ}őżÇşB´™ťŹuFőiă6Ťo;‹ŮĎ?ln5‹4˝(YśÚŕ9ÇŹúÄ“dxeă4k›É&ţQł°Č ŃPŻJŘadÚ,q{ÓŹTGµw$$źśLŃý ‚`ŕ}““ʭج&wˇäkŤî8ł8˘ö‘űMśkňŢO,ďĆ˝I^÷dđâĺ‡}ĝϴ7Ňń’}ÇÎżB( “ú‘Q¦Řţü›Ů …(ď1_GČ÷źŰ~8¦D:ó}¬âZńęců^dŤ+z»1äÁ6‹Ť×…?]>4Yă%‚$¦Ý*iĚ›@Ĺü§€x-ou˙N!Ó˝mWfĽ˘·Ş‰jg&PÎč>Üľö~ÝÍ­Őß?/ó„’·ü’J~”ţZ“ën#Fë¤ňřŕĂŞd"ÄĐ6†h=Uő2cč®l¶‹"Ë{ö Ä°ÇgŚp”4莆Â,?ÇÚžö“Š{éRŤMÝľtI·Ĺ)čAE('i}¦8 k‡š?]Mk”<ţĐ*ą%Ëý­€A®¦Ž}÷!üw˙Îđ5š67[˝Cú ;ŘśĹqŰRÇ=ąĺC2ń‹…sä(źÍŻŁÂ¸Ú”WĄ,óˇ «ńe•čĐaţŞKésôÄ ĄÁ–ΧáÁŕKńáfĂ€’ź„cţžĎVrľ×Í` ^äş+â#j“RCüG?Šk×é2đv¬s“|W‡a‚ŢBJşř*î^=¶|M|ZŃ(ˇŁą1 Ć&AD%Żł¸"ăă[EíRrŞĹmŠwVęgmWž_Ę—†ť‰ußn 'üPČOĎĄšŹ\ DCí•«ßµ_GnmÝ+%Ô]ÁÖŚáSź^ŐfUŕ©ܸđšÚ´¦_rF_®˝í㾊Ă$AäíŞŰl|ˇ2Ë^+Äăד±nýťÝ«Ă4sT.%§k$’ÖąŚU«@l§Ň|uńósŢaÔŕwbNě˙™PĎvŻŇÍ;&‚áˇ_.'Ęţ˛ĚNËőtPV-}ů•ŰąÜÁ#T'ŚąGßµb2x`/˘ ,t2™čH€¨Ą; 5w9®]ף…vWB\¶#c™¸= ]C"ąäe?™ꚉ,q|ócÄťNswĂí EĎŤ­¨sźB~×8ă˛ÂŰćąFŢ6Ů~őŘ,cuň@gLdó3Ţ ¶ÂţÚ˛¬*śđëĄç“ .= Ś ś@‘‡-jü &Ĺzá4ţ‘Űź>^ľ´Ąô»ŰVďCň—Ý26Ż8ŃFKląË VŠ´ŕp¬1ôiEÖsĚĹDavôTş)ßňHâ…čMI–ČhĽ\µŚ…Ä«Dďô´ěÔ-Ö\˝g±G¶ţ7в‡(cžş‹„ °oy”qAQD–t7BěǶ‘÷Ą=É1DjERçŻwq;*P)–tw6lG#m•˘Ě˛ŚĄ‚ňË›R0—'»×1¤ęç’yLnŤđYĺoĐôŹ—ű´?QÚXp¶;¨ŹŰ ݱĄ×Ä/2ůž“ĚbrN?„žÁÖ6R0ô)žĺM—_.a[}H¶zQB˝Ą’í$6ąL›„ťSÎł‹:TťÄ µiű·ŹyM1/q4¸$łc:]w¤3ó ¤0rKXzé˛÷1ĘR)-´™Ć)‡ÖĄ\pJ!Cű-«ľN`”î*XTΡu{Č.g$s#ÄU>•ň ‹ŇyňĂ=’HAP–YÜëő ʎe€ ˝Z, ek,ěyßX!sYqfĚ«ŚZüĂ«Ä4”®ł»]Wm›ë\†Ópj€`¶ü €łą‚Íčnö3ď/úT|ąé§ňëwE÷Şeą°śÂyáCµ’}ˇ+Ús'>MńÉÇ÷ň]Sşű.9ÂĚŽÇ­0ęuBš]´Ěceyýü5Ş!S‘$Í6g2śđďQţű¸ďÚ°b:ďniöŠ4:~ĹöUŠí5×J®b…EP&AżVH¶Mç4ŚZâ >ffŇg»kô6ü¶QfŠŐŻ11°‹łś ‡#DŔăŕtsŮÇ+ _‘ÁŞ7Ř:|+$aűµţk6Úc!Sá-Ílʆ ˘ŃÔ<'Ó—f‰fy|[F­!ŘZ4fŃ<ď|÷ąĄźßV‚Ü9ˑ谠R^ëŰjž©¤ěóÉĘ'źďĆĎŽ'igđ­đÇu"yAlܲšĐ4Ň‚†‰rř†t¶şŃ¬éŃľáí tަ8$ĺÚ÷¶ś\ĆeZ9ę3HĺĎ|đk‡»ŢÁEÝAKyöĘéľ<_>Ë»r”wyß•\yáĺ­ ßŇ#.Šť7á×v}4\đđĐÔúÄć§”ŤźŠµ _.×|štňĎŇnrdŢć^èa§ďŚüm'Ó«â©uç)}‹nĄD:;\épť¬|eW}lt .™’†qU-!ňó&č™\ëü˝›ľŞ‡ĂzŞĆ°:^č\§ď’ úzREÝ+ZÜĐÂE¨)šş|ŃŘ‘ýî3© -‘ʉ%ęö˘o ťÇ*VëňT>aĺ6°8ŮâÁĂČýtü0ńmż'ýĚ^ü"ď÷·"D»ÂćFvhó1<¦Ľ»‚ĹŹ-Ă×uČńAŹĚ÷XÁF˝ŹUSöâUĄü‰©*%ÍFł˘‚T¬ć0P]ŘÝöľBU/ śhĐźôKÓe,’e˝ýQ-f%Ş`ÖD8.ćR}J·-fq÷nv°­^jçǵˇ‚Ď 8‹‚×§qíó} óD^˝ĎËŁľ®ęćńčëž `ĐŻÚw¬ąL gŐ¤Ó…˙@ý$˛‡ÁŇI|&Rh\ǧĚŰĹý§šŕD/ŹúářÉžľŔE88řA}نży=l7™b.1mÖŇ|6 ď@Dbń©V[159NâzM?íbk\&LĆ_»†ŰÁ3ž6/mÇŔťx0ž+Ľx F¸IëY˘h6ć*ť&syH+o°Üŕ- É{ ŮĆŽ¦QĄv̨ýç!ŽÖC˘ŰďÂŹCr}ąŹk.Í‹NJÖ"Š“şţŐÂľ¦|łčÁ[PK‘–č•2őł—eë[×á‘;ęivĚ­Z‘–K*Ť™M™I<ĎţŘ ˇ>1 sz€1íŁĚĎÂúůůă•%RȨp‡U˙ˇjŰ*…zXź±0‹FlćŢ]}ü">j:r* +ęn/ŻQl˝Żž˝"–ĄĚrI«ë͛Nj+aăd\oqĂEݬ\‹;Ô†N9,˝w@ť†ĘřËÍT"DFRĆŁßçÄř±ľ•Öú‹ěľqU$ǡ襬5\ĎOˇwčťŔőš2­…Ż~2Iä‚™f¶]ŰYÚ»wJ8ţß´3tŹŘZ1î:ć ]xÓďäQ¸}?>Dx·ď~۟ʆĘ®őřT/µ4řĺű2ťYö>DaŘ‚cĺçľă×gëä~4>ö`±K˛ >DąÍcžž·_ušď_¬ľWODD›řĚb}„¸ťmµŹä?5đe|yňąÔ×RÖÁEÓů˙Ő}N­1tÄbŁOëÖN°\Á'Q¤gs:ŢC¦ű¸n—PyţŐ ±ëšCy#›´ł ˙Ŕ‡Ç{?a¦ü®Ü H‡×|%”Šż4J@ĽĚž•á«“DŹ«3ąśl5u–ăŃűşÓŠ7€óR–Ú&}îô>„o† Źâ@Ü‘ţ~¸:ŮďŔh±sŮBűĆ·Î˙LxM2ž®Ëäˇ;S)?á’ľv>ò9eZ•)ľ>ŽŽZČ™~şÝ-ŇPa9ÂăăŹ+v"x.źâŢý*±ŰN‘iúL¸ÓÜŰ“BŤŻLĎăZ–rćP#)Đ•.ĆĽó4“«˘ľâŐ:ˇí§:HÜâiĘíXĄ†űtŠýU¸\”v¬]ü˘˙S:aW•7ŐW©+~7Z~Qą&ć9­Âsd9(7.!ŮĚ|ÔĚ,´÷Ś.ÍyfétťŞZ ĘvňđŐě3să§ô€0[ßµˇŃ$ř°üŚĐ•iĐűűŃ* bm‡®BóĚWެ˛čÂŞËÁIß.ař>RoĎ÷ŇŢś.@ŔzEŢjN´ńÓÁói×Q<°xWÓv„ ¦ŁŠ6H¸Ç8Łq~$°îŁz«mś Űçć5´^ 1 ©m´¶â1!ţ$Cě,’ÂÉ»dFµň˝°éĺAÉYaŮÔĘO05ůđ—‘/)TÝő\ˇˇBľř(AIž7 Äď1ú(•YR#32eJq…cŻ~Trő·{#RS/r(¤„ĚnŔÝóÝdô’Ć©÷§áĚŤŰM,ĂM«Ă°UµĎŢÉí¸zÜĂł žFÜm/ę݆ωí썸΂>EŞ;ć"Ç•Č2ł×+cűwóm’~ąŰ#W°ŹŇ›-”łOöPűg®O·WîĘťb‚NzÜä4•‚–ćě§ÝýÁĂ%ĺÂ4z«ç*Yr0u ‹> stream xÚm´u\śË˛5ž˙fý_=ţ­ĹßVu0ôjĺüĄ‚˝…Hč_-˝hůď¶Ü Î./ł bü{´™@˙—_Ő5€˙3FFś|ś/ô˛pýăxýü‡ěżsČşÚÚţ­ ăż$˝hâRýĄŠíËĂůK¨Ů˙/ lµőü‡¸˙vÔüëAüÝĂ˙b—´·´…€Ř¸¸˙e„şČB= ćęP™Őżfçßr›˙ý@!ę.ĐżžřK×aÚVP3{‹ËËĄü AěÍ˙+©Ś˝™9Ôޤ{Q°łů˙ţ‚Í\ťť_túű¦^b˙}¶€ľ”x@ĚĐćgĚD‚­ż·ÝTK’ąłmŤňôđë\=»Rň˘ĹŘÂm°Ăw«Ű”ńć] &gI«Y‰W"¨ Ŕ…Ć‘ÉĸŰIµł#ăâ…ŕÂËG°×ŠŞ Łź 0ŽźröĆG§ćě˝őě—?¦*»Ň§;‚«ę@ŕO~c°łë¤†DFQ–_޶;Ă$Dxt¤&oë§!Śôk CšÓ:(,¨ŘŮ0qË hl8¸Ć«hÇý0=Ó+…Áç˙+T öíÄ”LżD@¸c¤“űÎŞ]éM\kad.ĂÎ9Ç0điu€ů:qb<ů:&1ńX ź˛ťČĽ Yúô—Ţö ĆtÁ96Iűű¦UîÔ‘Ë^%Ůą4Ä®ĘČr«ë 7MĂÜCłísç–ďŁŕך˙š7pxK†P{€H-“'u?YĄFYĎÎŻZkv†®a+„¬ąlcÂčDşđ5—ˇObm•n zôpb……QK$Ä“‰&˝˛±‰ ĆĐ&'ŽRč¤dţ@ŢŞAW*¸ś)vnY)SîÂŢąö KDd2 I–‘É#e)z~ő­8Zč:’ (/&209†Ěáx5 /Pß› ©ov‚~ëO Jä¸i ľˇ1JéŘĄ]’Ďs&*ÚKs¦Ź ŽÝcµGťa"kŔ@=Ç8->_‘++ç~V­Š:óÝ˙жöfÝ#úˇQŻM;YIáRyŞ’öÄH~ c+Y™+×zÎ.‚`§đŢMî2›b3¦¦jďמ}ý™ňš»1|‰&`S"0ťčťxÄ÷á%’ńf–ľU"‹Ű~ŘŽGQíHđ r"¸ű'>¶Atʧ5ů§j—lÎ'´`™ ź<Ż«ýTŻ+Ľµ tú¦@FöĘ©l15 ‚ť×¸5Íu‹_„Pă — úŤ¬ ;XŘß˝ÇÉxřOŽUĆ«“]^#%‰I|ăpťkE/Óe±_(ćî4ź¦-U'Á}ńtÓGôŇÂĐ`âűn¨XÍ®^Ş7KâŚ÷iŰ=Ć,;8RkRNř5yP" h8K>uvŃÂmRńĹ•ŔŹUÄĐű0˙™Ëě$ţ:R†Lٰ݇±úńXÉjÔK員şlŢ›*­Ätm±q*Ą0ľ§TÝP.’ô9ĄiĎĎt•ěy»p‡Ó±o p'(čnÁtŇpéWäsżüWMŻ)“4Ś«™ąd F>ŁźPôŰ…uD]‘ĺZł>w“jvVaš‹]"\§á@‘Ö›„ČŤÜ"?h&µLlłtP_ ÄęÁ’ŹVĎM™gÖ“¸#qž­řmľ r^ĚaXvéŃ»Y9>Xߣu`żí!î·§«ÔúúţÔéSňV5\ęĺp¶ßÇUЄ寀Xť#|O”ĹŃfĺ5ô‰­ţ–“®Ýýň“ńć´LKŕ»Ű^˛Ő¦hF€–\şpGřBGfŞ‹qş÷o‘{×´jv\Ç9ńłjI»W.Ó xů©´ á±ďăŮú\;®ą°4*rŻ2ň jíMŻJWhž/l/üBĽĎ(łĺƙwžŰ´Űô”6źe·~8šíŢ«čcŽĆŇiÂUĆ_Dů÷ľ:ë–á*’¨’—ĚçYX…ÂíHĂ…’1ßůf¬pç¦ýÇWŮ|ŠÜLţX_ť¬ýŁMçĎą%m=<ĺ]FsRdu«×üNg+]"täáLşbŁŇď"^t[aG]ĺú×Đ/§Č[ů{)ť8 {ĹÝ~cĚ|QWj+ I+/;vú,µYJü]Ú¨%ôČNąÂe±éë©Řcó ÉiíPçţ·áµmQtŽ˙ÇŞ~Ů×ăé ŹŇř„‡łÔôô!Ś‚—ů’ZčáWRjëŢkeH»˝ôČ+ZđB…ŠŽj$:Č”SčŐFhĺsň¶*×QîŻä™ćńÓÂđüľ8XPń©ČßIJfˇ))eŕ/nňJÖ‡pˇĎLfň˝ˇv n4PĘüh›ĎČůđšťtŠí†„!@Aäń°ÄLÔX"ęˇÖ!xĂÉ÷łí·ŚĽ+´ć$˙í 4µńPÁk­™¬üF ‰ˇ1wUĹ šĐ«‹{nn=›ž.(UŚĂő§O˝ë˙Ě—OBÄŢŇC渰GPŐ$%Ş)ąLÜŤ‰ÔŐ§„ŽUńëO8KŔT7_]2Í›ęúýŞŻ¦ăëHo%<Ľ[ąW}˙ěA¬uz!„ÇČć;™ýűʎÚĘeĹ™›ÚňČ;nť?ÍsQkvZA_Yřîűxo ±­™Ş‡©2_tŰ&Ż#™CXű¬˘4úĆﮄ„m €!§Ś‹±ËîÜh6PYQ Kz%5u$}5 ŮłÖĄˇk'caĂ!Ýí~«uÂQťÖŐBV ÄLâýHŔV ×pÉžlÂmŔÉržŽ·ßŠa *VŘĂ{|„ä€řňÉź´{ĺČ΄os>Ëbi•{=źśÖ^* ź]S¨ŰÇŘCŞ ^ü9’ˇŇY*żk0Ňa•:‰´#ˇ šÝ‰«0•¬[:Ł$á˛Đű¨'x}z:ŕóŠ~S9…Ë2‹âHwď8$ÓđŞŮ±ń¦>‡ĘCĽŔĘ›nź>I:7WĺÜŕ®;cdťŁ#Ęo :iŃżŃň‰”¦ŚXP@¬"Ťt±›€ô¤,F±7Ú ¸4?ÇĹ—Iµ†x>­ױί 1Ť 9 ęîő ÚH‰«Ďň—(ó-ň± »Ť@g¸™´ ó*±Ú‹ŚĺßUĚÔôéQ1›xşWSp‹­/Yů¤Ç‘ĐQB»CĚN%Ot‰î}LJčŃťË ĂĘ©šd™,îýа$÷ý´ŔDt¶ ó©(ĎŻYh„S©ăiŘś;) ŰLZh°rsNč2Úđ©b+Íć-[ŘaµZɱ٠jĺč=YŞRúďˇOúmcF~j×&Ó_WM«y÷ŕŇ3Î0jĸŕfGvŤC“„p˙Xď㡗֧ńďKug5řT×ă¸ŕĆNmŕ•\JŤ‹>óÝWśI‹ÄěÄxY«Rä¨bĆĆoFF›‚$,3üć|Ú5E™Ţ”$ Žš,©®Ć<ÖΚč¬â)pH§™y`3÷|]\°ˇú’•úv8 yt­•z^.á\ŕ·7ŤŻJÁO*-5Ú·*[nŕČŃČŁŃ÷!âmüÂUĚę,Xžu˛RpĐB´˝ öŰëĎýÉE§q·řěŇŚ’bx‡‰*–Á—ß rr|YNď>¤ź~µSÉčÍ1Żs°Qk,ţÄţKägEźŰˇ¤ËÁ–oĂhńŽŞŽkëJ[ ż©˝˛7ĂŤżýŮß(:oT ăO©“­4 žz]ßDŚşŘj‚ßP,pÔŔ P˘^é5ąčćP>ľ*¨jżQ&áÎ7Éť”_ PĎÜŚĘ?üŞÜ…ŘfŃéY< Ŕrř÷ÁlĽžŹf”BĎ֡ؽ€ÓËnLcŞR^đhćÓ­ěŽřŘĐŮVÔ żi=-ÜR‰źvV1k"hÎÉM2Z‡ůÜŇ€ŮUŘ#«ŮÇn9 ŹhĎ;݆/bî]¶=[ř‰ţďS•8T‰ţ–‰ţŽâŘC ɉ@ŽĚ¶®!ň<3Ęiî/9Iµč·%ŻQ‹§ŕÄ´‹C°qdT‰\µţ\?^`ť’ž3uďĂ,šůN ”Úđ·ZD¦Ď`ťřŃĐáŤ9 Fś°oý‰$E+2e}sĂO UîkǵWźüŃÝNťH0[Łyß„~łžzM÷ýĘö‘iĆGiçĄÖ?™F9W 5^ —˛NŮý‹'°k%eÉË˝[r5ŰE¦—!ˇz—G‰©É@y[NŁBÂ&6p’úžJ‚˛–ć·Q iŠą•‹î€±—żĎ×Ú4âKĺ&4řŚ!˛Znó±±»j˘>ˇ]CYďűHk^%Ď2c â·Żbž9ö…ÄGöş~G g)ŹaÎri‰[i {͡űîwťÓŮbę;oĺ¬Y-!˝ů˘uËřś¦íyx€ p)çŞ@bHěŚů¸měĂ1ţbaóěf0Ü‚ŢĘŹ6şLMjl&V7DŢ÷IŁ Žď.L–Ô·\Ş<ĺäÝVk¨Ę&”›4ÓH!>ßłéłÖ3>Eíkh-r —iëL´ cŻó4osŹoN•-Ű$źćżµ¨ľ:dĄmŕ<čĽwĂâ´Ň4/k0˘xW‹kµž«mr…Q–…̆·0­Tő~@ÄĚüP ů}2ćÇ0™ĺAÜ—\Ië’ŢkYc/Dc˝í‰Ś÷§ę{ŕzO_1 s¤ůáżi$ŻeőăwöČć7\@ťůŐ~| Ŕé5N!°’(Ű tF~lč2Ű ôž BhĽĽ†“śţő\9Ńří‰ŘżgoŹßb]lĘ•äć¶ÜQ: 4šżLˇŕŇQ–ĚaĽ»¸V-{ÜÇ,őŞ[Äüµ;gĘ5Ŕť“ž/G$0Í<ŕşŇłQJTBÖlŃ Ć*üQómá“!ˇ1|ă;'¨Ö‡íŹ ńŤëůŮ;-k äCăŹĂc8’/sá “–čĹiöÁ ,±•eym’ěÖś4ŕs´çŢ ÍÓ5–ĹŤ‰ńcOźĆĹîµMÓA±ąC´‰t¶”lű´ă<ŹAěcலwšÔHÄ9ř‚dŐť)ýcµŔ n]wWmrQ9kꄸÔ-Ę~ÇIśÚc peÍ~l3D[q?<í2¦ÍěqQb‰ËGKP*dN¨¨„ůU$v5î#~őy:5tyŁI0¬üöCÍůÖ™@ó€ŽÍ Ý{I–j\©ÎLŰëŹ&čąŘ$b#ńÇŚEÁ; Aĺř “˛N />˘ýd$Dt9;m.WQăŔM“‹°Bú‚)Ćx»PžzšŠîä® Ş ů&ô^“ýÂ4ZćŔű"ĹąhŔHÄú’×hôäjWO}Ü´‰Ř~6šZBřŁżMäí˘1°Ň?RŠnb?°ď§Řµ¸Ó©P§őę"ay ¨ţ|ő|ě^}Ďßâ§Óţ+¤ëަÉٟɺq4ZŘŢ5_·UÝ’;?Ë•(Ók›'k'W‰´„9ŘLJťß ±Jë}ÂĎPÉŔ\Ŕg­SNŠĆîŃ:°<÷@—„U••”!l'‡ď‹Ě~@Á)7)!ăúäşöęŐŔ(%ßDV@?˛Şč°bu 8SŃ€7î2†ëx(hŮLşźrd)i0ę7…ô+dmŐě˛ß•ć—ŕá®:{Yć>J,Oé·u+ ‹9ełřÄüiÉÄHŻzîöh©~ÁµŻsä"÷YtßŔeąsĂj–‡ĄŁmBłîľ\±Đz¦©2ůť„ŠňFÂTťÖţ¸ątę1żźŢ^ţ$Üâ^K­ł) zŰRjÍň碥ˇż­?UĐEIF¬ÔťR,É<í•b!ĎćĺąťŽjóžV&靈ÝŞŘřt‡‰ĚŔt2DÍÖ…ÇwAö.“8Kp†ú[?71ŚK°ć>óĘ ÍĐź}“ÎvűA»¸b;z"(4’ű”¶tۡۿŮ}ÂTeŤşšŤgL§~Żő˝ąhŔf;F&DĽL9ú8ŮŚ)°K(`;_lJŁX[tŕ+ż”.Ë]>ŤĄ ĄĄ¤`[n¶L®­.dćÜ˙…NÔČűÚžţóŢ;3QŁśĽüÉ豜ęOŇ«ď<…!ÍC„=!A§úçK<żÄłôŕśřG)üďŢ„l8M?ˇŮNWL›ć~_üěY±âßšßF;©“á@t!jß)ţa%·×|š=§yD’ŔÚ“7%˝Ď„oIK8ý̎䤿¬5†Ůä•n «-tëŃ`ŁńŃĆqJâsG˙|Őű°± Ł3*ľ´rąśĂ>­eřé f6@†ŽE(÷ŚŁ­1ĐY(Ň÷ô;!µTŇÚŹ7ÉűN§qÜ RHŮĹŁÜ›~·Y*\ ÉŤI<®Z´{Ń™öQH”čÓňMľby{׌?ţ:émĄ«ĺCSÇ9îlÎç]5˘IÝ–ѱw4?X¸/;h˙ ~KZp2Ř˙ĘÉ… ě{\5í%‘Šg7 HîQÇcźýéCg? ¤rvo®űíÔiW`«FÝ t@Ç;‰ÜvĘPţŐ/ßíä`[.ž1yY›ÍşŃľőă Ä. 9-/˘"XçQŽę3Ü?‹7ˇúE  0×í“ň±W’ko˝/6š‰ÖüUܱťyÉ”ţ'ZžJü´Ę”O`¤!AúčYŮę×YZކžo­ôŐ>(ŤđÝ˙ü}®Qy­‚LQsĘ„ńłnšČ:Ó'Ó'0ř?ŹůEĄ2|l°˙Äŕrb›ţź _ŇصWÎH¶âňÉşlĘöŤă3Ę «I-v'ô’sřµ-ŰĽäűL<çłđÜËp#5D[[Ělpň4LŘ%ł’tÉÖ´Ĺ1¸E Ýľý‡/ÄŇc¬â’8Đ~?ů(•9lĽ`oŻŃc»‡ŘÝĄîDGžµĆúüURčZ-] ÝŔ;sĄ4Ň1GŠŕŚüŻÎn}9ć¦lÄóŕâ'+ăňü.ި×m·1~wÔn­4Ůƶ|ë¨ôęé2´§*HĐwqkb`ăŘŃtň}3¶ŞUëćŐtÔsşDŮęăYšÁ­}­ýaŦĚô®wđcU»g”·,"9Ń'EʉĹ? úUܤwb„H±µFőx řLÂ?> š\4+ő§(‘†˙Đía|™ě|Ĺ?ü<š:ů®ĘílÝřöVő65łýVÍ貱X« äé§’PóŹĘŻŰ9X‚ Żš•–Ť25Ý1 îÓ9’$^Ě:°íń˘‚%á!ŕDă4ä´WÉźîZ®+Ęť^ "ěkőLm)Ž× űN•„˛+UĂÍđ{ĚwB —ňÂ׆{Ţ:sŰéut}Ĺwö95iQw·jĽĂF¤€ü,}ăf‰úůë*AU=‚ů92[Ýrš/Ó^˛}A|hˇ´5ę»Wí扗důř•Yű¸ňCŃ|ŐĂ™"&űnc/íTa’•śwĘ5¬‰(`-«qK u42ü†`P’łjČ9Wť=Ń$|x‰u‹l·±Đ-Ý4:^.qˇmĹ(ŐÁ硉}rg?şúÓV3\Jéş ůŢ  0¦2c¤ä”y„k“ĐŃE/?ČŢ4éĹt8arýi)ÇČ·˛ńá°gý“˙¦Ď1× Ó5<8ĹŮóIúš‹ńŢh"ˇBŔš÷°Ň̎Z€ś'›üŁ&{–„ö&V[óš´§Kş_MČđ¦EŤ É4‡~ĄXvT# hÁźÝ‰_f'ĘĆ4QeIRGˇ`•‰ź‹HQ†010L0¤ş|gBűÔdR§&ŤÇQ&™]¨c_˝Ýłßîśn’zwk¤ŢĂ0OkhŰÍ“Aµ­µ°s=ÄÖM´ÁŮôíFw”JK$‡7~ÄC!­‹TĄF~w`âg!ó,á:˛Q.x9µ;Ś`RˇšěV¦1l|‹·ů/'T˙˙św•4ľUÄÝBGľ†âŞtřüëŔĄöyŁăFžŐ©CJ"$Gŕ›˘-+BĄĽ‚.`«ç9j¨8䱳ŠTŢĄů­Ó>VX»`Áş¦1`©ü iQ±'Ü˝ôÇ{]ýcµ‰ö×áZőD”ÉgE!ŰQ§_hFř‰Í*{ŹŔBŻw.ÔăKWĂQH´87 -™¨B»>»}fˇzĂ˝dňxG‘¸®_6ć‹_˙qŁĚ‹Dí7Z@)núqA‹pxDccÁ›¬Ç_çP§JN·Ôĺ2ůs_BPę¬:HČú,ľ°b|3žŐJýB‘ú\mÂfvІNń0Ôă 7<Ź Çb˙ý»¤¸n×\ĽL¶§ÉĺüÍ%ÎĆÚÓ¸˘‘hÝJ¶5¶Ďv6ć˛â)±«¨>'śgHW(˝™Ä6!°}ÇáĺS‰m> ŕĎp:WřúŁŠ|NKŕ9 «¦ÁkÇ#ÁýĂŻ†őCŹVď]˛Ś+†uü»x·‚ŕĆ1ň·“>…B.âÇâ‹2 Ů&Ă5ˇąóÇńS˙•ůçzŤě™ß¸Qúm|™ľA܆[ś­ëňúŮpŞXŇ2Qş \sŚz•’¶˘FŇŕ#žVKzü×Bvąăd•…Ö=ŕ4ýš)1q[1ČUěUč~Ű9ČćÝěó?_  ž˘.Ş8iL´jT×Áť¬nM0&ľ ŇÍÁŻ<řÇŤĎ×riĄe¸|꫾…“ÎdOz’sÁ-`Í?ävĚmV«¨Ä9S۰«Pü•·X8ń´9Z3m¨×6c ¤ócRű”yĺÇę-D¶ t…Jőś±$fvd«Ďńç44’WăFU2š‹Ń%3CżJśáć{ßyýC›oW@űEîň>˙y>ďňş iŔéś&xkŻ×'Î<ŐśÔMd9í>~ÖÜxÚL¶ě‚rŠ*2tZg†.Bv˘K{¤vJ=Źćj!›é)y'‚ ·źX5“Ť^“+ڶť·§ĘžV&ݏµt]p‚kDx;5„ŢçőĆц( >ˇľďÉ’>ą˝—Dhq-Ţ+h/żů–¨ {ľw´ŢËŚ›`Î…€6Оű3áV\j|d›LFő¶ÇP˘mĄu„§Ó=P¶¶·efWRÓV$Űľ©lR PëśšAŞ™iß%ž“DZaĺłoŃŇ_ëf®ÖÎTŁ &]č»(~Lě*¤yE’ëţ Ë«<¶LrÎŘĚd»±Sęłm8ÜBwđÖ˙xp Ä.±W ő$dź÷ăµWsĹţxMÉŮĘőăMa·[¨Öéăr›|WČd% .˙QY H…îHţ:T±OŐYDb2¶`Sż*­h `oQ¤2’Ú'Ľ‰ÉŔS-EKwBY*ąŞy:i<ě|$«S‚ôgĘ8eľ×q(Še(cié±ÚĹ‘™–íżŽŹa>pI¸Č¨v:.;ɸ¦@ ‹ĹÖt2čÁ«.&ś“7x,Yf__©”V`ző/O^M]şA:EÍŠ+ć¨Ă"Ŕ×JÓé+xH{~`°›m&Żz· ż\l*Ęŕ–×Y˘*é‚"ťÖŢđ¨v±gŹÎôá1D:S§‹Ů4o%jŰIQtd=ţěółK2fl©yO<[4,{véM…2¦$eăĚós5ůŞpŚf*ő‚˘.‚2eë˝,o}JAÁ`»ůÄ{Ü]@b§a÷É„ëI‚8ĂyéşKó˝-ŇěŮ<Îşp şYXĺ÷čµĎMĚŻă†oOę{đn;±E_ý·˘ŽřľŁëS¸ě%ĺéŁ&ŞŻŽóĎszxF?CąŮ‹ę'â›×Aýsʶ‡‡¶®/-KŐĺ'tĂCrÄt6>5jÔÜ"ywjő'˘Nm;#<?Căf«ţ·:|s­lÎ&Cč°c˝EČŰ] łąǶť· 6~ى4˘óĎŐ8đĺA˝fţsŰîxZ×áńÇš´µĘkBÄ3ôŔódˇăbĺ«ďüEkźąµ,˘IńmŁćŕ› ÉZnyµĄÜWSăŇŰÜÇ>±˘ŁX·ěÜ+ś6jŚĂť›9ăÖ‘WM0;ß«|d`d˙đţƵyţĎ •Ö˘«ç}POľ!©ô˙->I´ŽŰ¬_Ĥ îrL|ZNpPĎŞS|%×>×˙ uGhąúĂĽUăPŇXL¸*dţ:ްgßEST,'‡jöˇűöäâ{‡—5wk“bĘCé˛űgś#Mé_ %čKŮ’0żŃzS“ť7BXŤď"ňşg>ŚáhtOWîú6?l9H7ÉłŹOXz¶0X– :•¤đÄ\i 1KŞd9˘™gú•-qFnĐ-Q,VŁą%7źâŘŮďÍ.oĂ+Ľf‚Ł„ßßbËs­—NŘä*š­UŚöČő3Ú ě™¶b°¶enŔw'  ×~ĆżJ°ÜwاîbŞ–I{Ť¤5+w+ť|ŢYÎx ýđĺuĂ4Ĺ´;¸^ŞÖ”ôV"üŘ“d[81ńęu÷ś“Ăů° qűÉ9˝ęx:wa ±ť-mZ!?ŕ˝ ŽjLR´@oÇ'Ţdux>vSÓZźÝZăóŃ_ ?Içä–şĘíÄç‹ň°»™uÍ,ÝtŘ×-™w’ľă ŕť3·|öMyzľ*8ÂW©ĂzLl2Tg-ˇŠ;Ľg€ ÍäIđ+–Ŕ‘ĺ¶î@ń{o¦Śb.:ćč}Xd¸TTë–®H#Í6Ý;ĚŔÝ:łXR´/ýţq–V%ű™§»˘đ<ĄrźĚP'P›w)†ĆÎŁ)€.ą±™Îş/ 8Fň,%|sSď,’z„[…†ËŤŘÍ”Ř&×÷ÝDö«żޞx˘ő×KÖť€‘©żeţŘ ůťŤ/¨†Ż€7•ćŁ\mäŮ‹tGuŰ-÷ ŞŢ-$ű¦Î÷…d*ř8‚ń»×ŐO´[X3kĂŕĺ€ß!šŕHΖÇ0T/÷6ŽËěyDcuĽ°Í/ĽÎp[Śkd⥯q ź$PtAę–łMb=ŤßvüÉČČÖËşâÇ?ľzW€3˝ÝÓ§I jjŚr(Ă]›ň”,^ eĆŻ+KźŽ®n6ťşaŐŹ˛¦ńôΤ8™ž\¤Üę„~»±úž™ęÚ ˛m„•X˝Ąđôç~ű"ĐűüüçôĆࣿ]č§­=–Űs<óbÖpTŹÜhżďGÄn5šµUß"°\¦&ö†đ-řÂŘůX“Đrú;%Ę7µWyÉąüÎŘÎj2×{É@…XN%§š$ żŹę$´Úä’ç_¤&󤞾[Ý9ę2ţnÎúş:ç 7‹|M$äo I˙ă–=ĐłÉɰł5«僚˛–üţ,8eĆÔ– ±íîólqńKµ§ăŽŁU=őţň¦gUn˙aî‘#ďă/žÁf×ĺŞTˇ˘D.]±g^z~ľwMĂlĄBiÎńĄç3x»:6 s˘sËľ¶2S6łżM¶ş;…‚HËú;úP jUo@C5kłRđôD/C[Ę 1:“uRe˙Ş.6WŻűáÔ1jęM·Ô٤´ OgŔuŕC ÓĂN™•ŻUĐ7Ż÷؆ď)«łţlaźÇ•ć> stream xÚí[ioŰĆýî_ÁŹŻ(ĚŮ7 (;qš&n;iÓ H‘˛ő"KŽ–&íŻçS˛äH®śABújx9sî:w†¤‘Ú&<‘>D›Dr’Ŕ#µK„2 O„§§Ĺé«!qN‚0" Z!!„ÜĄ!=qťŤ(“+©Scá‚% ăëň‰*R!Á°DY@Ó.R"‘VGJ®đĂŞDO¬N”°„ŔšD)E ¬M”á‘r‰˛Ž°Xź(ďh\Í+ąx˘Ą'|N$Z{O´aÇ`Ö.*0´Ă’•hĺĐ”‹m¸DlCĎ€ @śktĂ5 ČÁÂ$ Ŕ…˛{*h€ ŐJřśŻˇ BC8Pý©(ĄĂ˝šÇ6ô§ µ‘0ÚpŐD{ ScĽÝbŃłU± ŁYgke;t ëcHg©Ťnó"ňáo )'đ8.î :¶ąÄň¨{ś¬cŔ¬T±Ť(܆6\U’ěć-(ŇUP:±ZGJ $(tJ€ŠV  6˘pŐ;˛9tď”"AĂű˘ŻÂw=©”MĽŠľ {x”O‚Şúo{BŻ Śŕ W@ÂQą…—„roÝž!ď1Ll ť&^čEH{äßĐ(‘†\ÝFŠ-â`ĺiVš<~Ç× B( #hL (`ś„ü#pČLdDbta„!…RŔ` O 6Ł]l%K·)8 4Ĺ‹"O~GŽ+L0fďŢ˝=ö y‹Ŕü— űý͉÷©tłMÉýFóáđÝŢO?­fv<őä+R§ŰŚY`č#f¨00ţóŃx4KîÝKŘQ*‹·!®ŁÖŞ_𾨢ę—ŕşRSóÓVj­ŠÚ ôٰç“q卵%oöüÁQÂNËĎł¤pú×e‰ ŮYąÇ¦ͦšîßc/Ëéx>é•Ó*LbŰqY ˛ńçä-GÔźR>ńZ¤>ĽĂxŮť€_¸Š˙ţh4F§o«$K°b’­#B6„jݦ!lC¸†h:4M‡–7DÓłmz¶M϶éŮ6=ۦgŰôl›žmÓłkzvUĎK:Śby>‹żźFöŘÁxR”“¨)ţŽý̳÷"ţ ĺö`„ÜÓ!ČAéEJł‰Ó*E:×ýč' {4>'pŻ˙Lg“yov6;{˙~8Î~ 3)ĺŢ Š”2ĄŚp”G§ŹNfYďĂ{ţ>ÓąCžĘ‚+Ąň7Ľ×7ý"8%zNg9ß!PiSĘ,H™VX‹eHąňßT§SÄF •´jřPűąą¶"ăYŕ¶Ęć˘č÷ LÄ’÷xŘ!T$Ę€‰Áä@š›ąHƉµ&Őa¨ÖZöMŃwµ rÓGˇ {ą)|f çwUr“rh±…jdJĹĐĆPżžV1=¦Tť5P•T©Aqô Bm@ó”ĘĚG䣀.Rnô—ˇňRŃ=Á‹"hü„Ô"ďyÔC¦är—Ŕ᛺…Š˘łëćHż˘R!ý‘ł8ň]ćzßÇ9ZŞlČl©âFY»ł f·2ĂßińµHĄą^a0ąďžWZ:ř ™)´¸ş fĺ°d5wÁ,dÜřÜYy$ )î‚)Ő„pĚJŁRőwÁŚzÂ#ýěžYz,ű…˝ fŤ”iäfĚE=ňâvˇuµńßě:ójCĹ&ôŇŽő­÷¤˝żľ'íí­ö¤»Jňn‹üŢenó»X“˛W1c1ŕoÍş‰ťnVď[X°vŠŁÁěÝöż-çÉ÷ă«Đş‰]±ÎU´×ˇ"MáEtĺtĆŇ‹ś×´¨ZŞ\ýŹ®‹`Ú~Vz´AM‡Ł‡­ô<·3†!ŽĐ¶Ń_Í=_:š~¨Źć ¬žó8ÖÂAĎÄqÍ"o78¨ŹxŤÚé1.=>ĄëŕmřšűÚ!Nb[ÝŢânpÄ ůşoŇ[çoŁçV×5ýŤú©Ż5GÔOç>˘ W«A–´BĐK"čń==(„ĘGšĎĆÓ*şfxŐB<ë,Ż+ßöCO I‚Öď™·;YšFhÚčo|4_ßóĄŁé‡úhÂP ĐXÝĂÚ¸÷Kř‡‰7ščÁvĹ‹vâmřÚűj:h]µŐí îGÔ|ŐwÔ[çoŁçF× ýőńAżX8˘~:÷EĽWú‰ńČŁe+šęÁÎ?¶"=n*c¬H’wÇř§Vlů;V¤vÁ…iU}Ł)=ŃK.ĆŢÚŚ :´ ­"[ ¤čŕ–& ćëô××FXvÓx˝ą´«ď©šŕśK}·mŁŁş«:»¶‡HŐî±ÔşŃYđΛ߶A§ń´şµőeľpZfŁ]aQźW˛ŇëE§µ©«ĎŢű4ÔçX™“Úú\qÔVIesFsÁ§đHcIźŇ‚¦’+ľÚ”VŹ€˝żCă ¦7‡čl«~,˝cŔ!h+,’SÁ’0`xjG7ńĐ˝‰°¤K‚݆R)=bÄÚ`u+äÚsGe}ęçFű*ި:/şduĺ¬ßgŹÇěń˝šűwTsßë€G@›D ˝:F+sĹ ŞD“đ„¶ÁÖ†Ź?–­?ąÚÔ ürÚ› .găIµ˘˙5»Ŕ•‡Ď>yöňÇĂăăÇ‚ăÂ0;›&şâ8;űJ&űŇФ«ˇUęÝźöhcĂpf—?—łóÔŁačÚ>˝ĆĘϲá wt6,Ń‚†“YyńzŘcż×wi%ĐÉy6ˇ­˙°l2:Ź?Lč*;›”٬ś°a9ťţPÁ: 3Ł˘ä/7oÖËyôćŃÓÇóäÍ:9Žűô®±"nź_É ˇo'§ć7Ë9,ű3–M!ŕ`úá"›ťł<ë}łéů’°raůíäŕđŐŹż.ňůôxeçăYYäC6aS6-/˝ńp)ËU‰ö¸n »Ť5żzńčŃÁ˛5ÇŁuQˇ˛H||şjniĘ9äçh’'׌Bá÷űť˝‰Ćą Ăüć(#űub-¶/E\kŇĆž«ÂŽĚşeě}\Š·Ť¬}Cüů­,ţôŐĂ'ÇË'۬‹AG§Ď`ö`ÔmMŽ„}…f+ŁŻ6ů›‹d=Ş 7˛ Ůŕ2jx¶R‡‹ĘŰMĆŻźß˙ĺtU¸Ü @Ť$ż?ČaţÖ9l?´ę“|­úˇ˘Ó6I5î]ůň°ŁĄ‹ZOť¤3[ărK “ŰU/ǧÇĎ» »aBÇreź>B¶Kž&5%5ĄÖ$ßu3©vš[šrgË >ź‡ĺöhxIhÍ앍*ůn•“ÄV5ÁĂż!¶ĐźÚ ľ/‰×0Ş-t(wq]]v ›ą›]la'Řn¬®ás[čNo„Ź^¤šŇ›TsÚLşzŠ>·Ž÷?456oúHQC+E¨[¤®[čűůH¨ęăw·JŐŐJ-ęţtýb™4ĽĘh]ŐËQ·Š>‚ŹÝĐë“‘pÝőÇÇŇU’ßr(zoąęĆ×ýyYîuÓâę1}•=âP˙&P‹ endstream endobj 5319 0 obj << /Type /ObjStm /N 100 /First 988 /Length 2080 /Filter /FlateDecode >> stream xÚĄ™ß«d· ÇßçŻđ?PV’e[†(Ľ´$ˇô­ô!ĐKYiŮݔ濏tlź‘}=sŘ{_ÍśăŻ~|lKw–j„!s@(!bŚC¤¬_†Č€IBL©†S!d&5¤†Â5DÉ)HĘs¨9Ţ8â!H@,%p! H«Ā±bH„% ~VeÔ÷’µćšĚ€Ń,][ÍҵµÄ›Z¸hŔ ôČşý“ě;ŤHŁ#Ś(&{u«”Zş"%Kú iTjé|Hi,TRą©Ą„ě=ÍšDjsAcQK«š¦5|ł¬zGhUKŁľ˘+8EłtE{ZÄJ‰7µtE>T´`±TőYWĹYWTËTžĚGŇ")€ľÂXłBëOú˛Z8ZF ™łPš9'´÷tg+ hć\ŽX4s.Ĺô4s–j*h ŽŚ@ÁŘSP(xdOU°VC|SKAiúť–)q5d˘+R1d˘+˛®đtEŃťdC´YWJ©Ą+j1ĺŚ!î:´ô32¨-b&ŰUŃf[Á)d-‘Yş‚ł=ŤşB1KWäcÓ®°|ŐŇEl…JeÉîÄ\ą¨ڎYšyA°4ó˘˙š…ˇP±Ť©ájd–®`u„¶AJ˛Í/*_’E%šyÉE}f^l_©Ą+Äę'šy©XÍŇSfˇZb>4s-ůĐĚ…Ř|hć-*ŃĚ…Ł=ŐĚĹΊf.™ŕöÍ7·˙ýż/áĂO?˙űĺóíĂw˙ůí×/!ßô󧵎#áo·ůřŻĎád%ĐϬ˘ÍČРݣͨ͠§@ŤŢľýöë]EąËhýš‘‡!©§+=_áŠ`r…ÔőtuCZžzLű#Šă¦w¸˘‘LäaôşĹ¨4»Ń}Ć–Ţ]Ĺ*M†± łîńnôdxd•Úâ7şJ©Gśr‡– cxYŮŽ»« ]/c/`&FO8s/iNů=®¤{(Ô X¸{(#+ţHčë˛ÂÉ•¤±Ý‡Q"»ăšQ[žÚnëŰ]1ôŤwt‡ftŚ=a¦T»!ňWzP›L,±==ćŤ9÷w¸ľ'+k‡L˘a”¶ŹNÖŚÜJŞ ßáŞ`ĎAďófHżYRŻd™×ÄďpUĄU)P7p©9OŘoń׷{Wä]%éŠŘŤ-Q» ź Ç)‰8ő ›yŽĆKS¦[ČTd4ŹľŹ1óíľŽá´ÝŇ˝-Ăi»vúž>†ÓfH}Ź/kĆíţjbßüôYCiŢ˙úłÚŘŢpTÎĄżüňbŁtßł¶‰ş÷đžČ1lŰË.n ŻKş»Ę1ąßŁąlŃü _iG§ “ö=•ź>˝üŻŤß“«íp5>>rëÝUĚK4ą˛ż+6…É)Đ…Bö‡—˙i˛ě ’ç‚”gÁm„äP? °Up@hr'ĐCÂÍ@zÎŻ®ĐÁ.®¶é˘‚ô@ˇ§‹[耸ć 8%?pŐ ń Řâ z^Yś—+úĚeÄNOĎÇ4ݧ1o÷lv0ň çʦĄ˛eęUçÇG•Íb^!¦ÝőÉÁHůyt<]đ#Ý3ŘLS°™ž›Ä´žÄájÔ¶±;뤰›v×3¸Ář‚Mś7ŇŠj+†ż‡ÉŤŔ+޸xŢ’sÓ¬ÓÂ,oŹ‘›`ťÖěçÖ|VwdçcÄÇČŤ°Ž0Ź@ŰSĺćXç5ŘínŽ€WsÄ’=Ę,ČsöóX1ü=ĚŢŤ€ŹÎ\wE[rn¬€1 ě/Ŕă×R/X–Řq&—çË;żň wĎc@8c‡´ vôÉcIś=Łë…śŁ:E7>>şSzĎWWŞ\¸ę…Ř«/‰SHO+kż€zA\*;r±§g»ëčń‡ç…©ýôě™¶ż4_)Ŕ]AĘ…Br±?¤o%;Áx!“ŕ>Bq|J}.XĘ,¸ĹU®’.ă,[AGˇ\PČu쯂Jľ€’g(e %;(ůJžˇä-”ě ¤ (i†’·P’’. ¤JŢBIJzĄ+¤-…ä(đBá<ÇăXWŽď!¶ź/ĆQ9ď \}±Äqő5§ĎŰ|ىőąBś‰đ–HtDbşś‰ě#ŚŽHÄç‚4Š[@Ѣr!8“¸=&ä(ĐšŹ mŹ 9(xg(´…‚ ^@Á mˇ ‚P`†‚[(č Ŕˇŕ 8(pf(°…âľÔçP¤ÎP¶ý_\˙—š.g(€[Av‚ϡô˙¬‚#ŕUđE¤\¦YpE\—‰‚Ůvyq]^Ę”ąË˶ˋëňR. Ě]^¶]^\——reîň˛íň⺼ä (s——m—×ĺ%_@™»Ľl»Ľ¸./éĘÜĺeŰĺĹuyIPć./Ű./®ËKzĄ+l»Ľ¸./—]~ľŻ–¦/KÓçexçŐµkúňşéĎ€x Č5}Y›ţú—ÇŇÇÍ6‚ŃŽŕëłź QÜt ݦ{wýDóŚz endstream endobj 5325 0 obj << /Type /ObjStm /N 100 /First 986 /Length 1893 /Filter /FlateDecode >> stream xÚ…™ŰŞ,7†ď×SÔ ±llB`®†aćr±/!;ňř‘zµ«%—Ş}±®Ýĺ_R}¶őw5ôÖŽr@Żă€"6 ¤ŮŽ:ô˘ŤÁí@¬:(ý j÷Ŕb#ťFŁkĺÔ†.G¶şzúŘąVË ĘÁ­XşvąuË@Ą­6ŇÔt1‘ĆĐÇlĎŹ´r–f*Z4w°ĺ¨•s·}úGąŤŕb˵ryÔ‹Zą®([¶Zą®Ľj#ŇQ×:P+´U‚Hő˘V.l«µr±Ą§#ť!¶vQ+—G˝ĘGGĚ6j‡îEűT+ď`{µň^}|˙ýÇw˙űů÷_ľę6Đ„Ęńߏď~°1|Ž˙óÓ·Żżţţąá?˙ăŰ×??‚Çĺ?ţö›}¬[ňqýŻźÂĺŹ˙˙Cg˙>ľ|‰ˇĘ+T•›P˙ţú×C«=.ÝY/…Ş?.YŰ&^!ć>k™ą·{˝D®ŻČ0bd;źücÉr‡îhŁĐBîRAGĘ{ÁŇ`ža/ÁÂÁřt!ĹUČ ÖŤ` ‚Ď„WA8eô·‚Öm‚ &‚2Ä âF°FÁ’ 6'řŠő'8^ű ŠtŢb¬© 9Áş Pf« "(ÂQ0…"ŠÜA™ )qdˇp óśčá`8S| Ď˝wjëÉ ě1ݱz(źÓzŮáşQD8%ÂŽő÷‚‰ä’#B¸Ś€8D•÷‚· ĄŰÜPŔ¸M(Ý&č ŕ F(BAĄm ´S(ÍAi(-BÁJsPÚJŤPZ Ą:(uĄF(-…R”şR#”šB© l @„RS(ŕ Ŕ D(5… l Ä.?^]——˛»üLxtPĘJěň’vyq]žÇ{(»Ľ¤]ž]—çÁ%íňěş<Ź÷P8vyN»<».Ďť7‚k*HN°nN»<».ϲ»<§]ž]—gŮ@‰MźÓ¦Ď®éłÜAy*HJÁµrľ¶ň¸fJOŰp¦řifc>żOĐ%–´6ýő«LěŃçWĄzĆz†ž™Ü|•açřâŇîĘ®˙óÚ˙×dc3<Ű™lńÉž—7ßŮľ…´Ń˛ł|±3»™ě’Šçĺ]vÎ$đĹ$,â&YcuË“µ×^p®Š™ű¬ĺ™;ö÷ËŔŮľŘLÓnĚÎ/đĹ/, Ń/pęŘůľř…U0ž‚y†Î/đĹ/¬‚WęŘůľř…E0úNý;żŔpGa*¤Çž3\–7ç’y¦TZ\2ľëL*sÉđŞtjy…1µ×)č¦ŔŰěěEź/–¶„·MçĺÝŢ,Ż·M4dŤ,!ň $wěÚF|îö4|˝D˘>Ţ v‰‚i†˝;AÚ¶(© :Ax/(#vIŮPŠ‚Ů‚"qPdE"IˇÂwP¦BJ¦›5ţ\Ô˵´Łó ¸z…‹B™zt^W݀я”ţµE.Ĺ endstream endobj 5326 0 obj << /Type /ObjStm /N 100 /First 986 /Length 1918 /Filter /FlateDecode >> stream xÚ…ĎŞ,7Ć÷ç)ęB$Yţ!ł†aČâ.!›;C?RuąŹ¤RUmîÓĺO’vék#Ü`C¦ľ!t” ëÎŤ†~…u+Üt€#ÉÚV 뀶ňL™ckuŔ[oô!؉Nm›Uź2P„J—˙Ëg‰ ëHˇQeÔÚűŹcÉŞhFu—«ňp)T´MUÖěz×đ,3F•?Eĺg):âŤ5FMŤAm#ěh#ŞÇFű´"“Ô/1PfÔ˝B©™ę^˘MMS#©š:ÉŚAZŚ$DcîĹČŚ)ŹČ6™ŻßJĺEtÄ[ˇ*+ERyŃŕ(Ş2šSG2uő%ć&57ÉŚV5šT^z—:HľuŐoĄň˛×KRë\©śšÄŚCŞ$y©i4©ś k4 ÎĽg%•sÎ2’uj•P7n]•A6@/2gßxhV˛ĆO”:pĚ­‚Ö!d4XG¸Ul’©đŮ*í3DŞÝoBo« :C©~üŃ…’3úŞúPK;Na3ďłĂăű}ůkO}˛BČ&»>Éâ)2|FĆ’]ˇVäšĺ.ŻłO…rˇp$‹3U0l`ÜVŻďT+QˇGuÄ[ŐSŚ ÝDćy…:ŞĘr‡bŕVA;„ÍZ"¨ďľ%Xf{d/H©`5‚t!řRXFüT|FóŔýî|g|đ9–`ńáyt™/"ŻÜ!Ë}ŁřhĂ0ąkw±ąs÷ąŻŇŽÜ×Á;rŻ1r7 {Idç,÷nČuzPđ { ˛mÜ ¶ćÓ ›áÓřAĐăę)®fp5¸¬î8­„`5ęĎ% ”úĄz(5…R ~€ÂJMˇ°ÂPŘC©)6PřJńP8…R ”ňĄx(śB)Jy€R<”’B) =@!Ą¤PČ@ˇ(䡔 (ô=Jˇ ‚PĐCˇ (ř=Lˇ PŔCÁŠi˙ €‡‚)ă ÜC!ďJęȸšíAĐCIÝ7@ó ĘKR7@Ć Ptďz¤t´ˇŐBÉ·˙ŐĄŢö,ú32ýźb˙‹±FZŻé˙tę˙Ý! ‘"0}śN}<Ôë[Ň{=Wů˱ĽĘ_ń®Ü)™ţO§ţ_}ői;%ÓđéÔđ‚oř”6|2 źN ? ’L34 źN ?,gÚáÉtxŞW|Va?6ä¨ůĘŽ’éýtęýÁL†V˝ĐŻČ«´#ňÚ)ż)É:™„´É’±t˛ľďż—靸ě*Üţ$c(„úŮít]ÚęÔ+[SM¸ňZ‘Z e¬ť¬¸ß«”vb2^N^!*řbęČx:y… č˝ÂE†Ć+ĐÉ+DA2ő dĽťĽBô^RŻ@Ć+>Pđ^RŻ@Ć+>@ń^RŻ@Ć+ô{A¨^0…Í– ÁĄR€Ďkśá JďMJząčŽ ¸{Ťµ×1™!ÎaBŐ‹PG˛GîQŤ‚ż‘zźá#×ęď`ŢąąŢv9śź7P8)˝µˇFv…Ł…ň ŕHé…m&hHőy/Ř»L3ě†GŻ‚Ĺ ¦xşÁÓń^°M'x$ …ö@ˇU/]ib3PÚ”桴J3PꔥR¨†B=Q»xĺôÚĹk٬]˘O 0=8ČŔqÝŔIĐź4C0ć‚98 ·ş+á(řI ˘8 V/0–FytÇRKĆ@ż‚˛R Ć@ôď=x¤Ôý|§xěÁĺŹ=ŘOˇ źčÂv‡Ô€±ĐîŹű×Ů:ť+őîŽĎ{©.ŽŰŃ6űUjéć4>˘O Ţ6@jŔضá$XĽ`šˇń PńBđP¨)Óô!6ý7E z­Ţ^r€±ě€G?řbůUÉ7Ľóń×p ®awłiă ¸„“€Ç”š0&‚IzŢ#üţt`,Ü endstream endobj 5327 0 obj << /Type /ObjStm /N 100 /First 892 /Length 1850 /Filter /FlateDecode >> stream xÚ}YŃŞ$E }źŻ¨­JĄ’ ‚O""ţŔ>ě ë*~ľ©ééN'›©‡˝ŰÍMN’s*}fú¶ łÔŇ*Ś"Ď˙[i´.ŔçE/ÖEťëó >őnhđśT¨‹ţ…ŰxL‘ÂĚe ŃŔąţ!”ɤICJk :IôBôW„ĄM˝Pஉsh0"é…€ÇD SÓQi^ 2jĄ®ÁBŠÓ5x‚¦X ®¨ëWZj‰F@ Î:ĐcVYĂjŚŽČZB3a í_gęU/4+éDĚÚ¸h— c–Tc踌L:w feť»łÉ]7 Ľôdč…ŞNŔmęĹj¬ŤBmhó­†WÖ#ŘG$lµH(z2u@ŇbzˇÁëś’HÜP/4g]?ô†4XŰĄuVő÷ŠŐäA: «”+uÖA¤ĹăÚ Ňu$MŐ§Âăs~EŐ™p-/HdˇńřöŰLJß~˙ňÇ'] =`µüúřđýZA>®ůřůÓź_ĘŇř¸˙üéßcSź·?úďËĘěĎŰďľsx@7ĽľÇkďů<ř ŻÍ-^cŹ72Ľ&7Ľ±Ç믥xxĂk[Ľ:Ţ«ÝwÓŁŇ=^ŞG7<ŘăU‡WS=j;ńÖ6ľ‡[Źf‡†_ŁÍɆ[0đ`5ëVs°gúٙϖyeK¤˝Ţ[‘WŁ?ţţůď/ÖŮO˙^ťá‹žţúGSżi=–Vň2G“Ż–C¶‘Ďžüµä·&É ®çs„gĎ9Ż–!ÔdÓFä4bH:f…kž}ĚË™(d˘P…Ľ |—á{7™;ŃKR]Éł˙Ł$y[,iĘŤ°6÷’#ăa·Ů÷=Yźh,SdÔ:}ŇľĐôAʱ^ŮŮŮ@“Ă. §=ŐŐQŤÖ¨îŰ%§n8PčväĽ{Łn7}zЧ=㡛"˝î˛Á)Ň3EŔʱ^ŮY'`Š@PĽ"ŕé~ßâCL‘¶SDĵ8E`ŻH3EšWDĽł´Ś‡fŠ´şË®N‘–)RM‘ŕçË źöef>—G,w´kć%fäŚÜc‰3ň™ů¸ŹËÄ-–{>e6.fă2ßp˙Ě–ĚĆĹl\$˛í\śqźŇťÇ‰#ě0Řťc75ż4W˙Ď’"[Çóz ^/§Ů%3çsm ®}e,J¦ą¶׾|Ťt:ík¤şó]1;—`çEg=Q8gő×ÝÍę%X˝ rÂeíţĽYolżnMŰl§ĎČôAÓŰ«»mČű2:o±‘‰ŇM”Ţ·Xnz¶ Ý؆-ŰඡgŰĆ=ląÇ}ϸăŢpdCĆ6Ű-˛í^ő]­Gs´í.5#ľí¶üf _˛ąm8ďňĎçÜLźęő!˙´ŞŐ Ţłť"-SÄ,šE{,r†ý¦ŻKІ°‘5Ů2'¦ŕÄëľ g—ëb›dÇ69_¦Ě—É|™dl±şĂjÖ–{çË”ů2™/oąwľL™/“ů2ń–{çË”ů2™/mąwľL™/“ů2Ńî_ŮŰćË|™†_sgsä}ą…żt@¬b:cöŹĘŚ™ĚikĚä˝É?ýČ3퍙Ě)3ˇ(3@2c¦`Ěä¬2+&łb V| ř ď"Px Ç‘Ě•©żůâđjĘó†w׸îňG8™]S°ëŃÝűk÷•Ľş·לÇŇÚ E9V5µ‚±“Yć˙uÂÜ endstream endobj 5328 0 obj << /Type /ObjStm /N 100 /First 885 /Length 1761 /Filter /FlateDecode >> stream xÚ}ËŞG †÷óýÁU’ęĆY…B^Ŕ‹ł0„'äńóWßÔŞčhq<=]~}ęžż§+µ-m•xË)o5Ź-ËŔk٨ ^óĆT·šÚ&ű+mŇűVţJÂ+bJĆkÚZćWéuë¨X:m˝Ź­´ľŤZđ*¨/liË9#˘V Ćm™*bKß2 ‚ ‚…ňŢjÚ«‚KC° ¸B`a7B0#¸Cza÷†ĘĐ™GA0ŃF‰śűF9!8 :‚sÚ *§ş3‚1I›`4’^p€ŕR3\0”"ăŃl*Źze x »`@N<^‚9Ł`@ÎÁ0™Y̲ c@. Á« rĂ~r¨Śą7c@Ŕ/P¸ ”śxţż†ĘP¨ xĘeĆ>â eĐéŚb+eĽ¸ďrÓçlhĘűHřo}éťëd,<÷š€…ń¦¤ůQ™ôdîôçÜűŞZ}í{Ýgš'ÁÜ#łĚóf§_'­ąŞ6Ě˝ö~|}říË·ßß ¸ăňűőőá{–ăđ—Ď_ßţř¶_{ÇűŻo˙ěWćţîÇ/_˙‡|~řÓçç»ţü™ßĺ×§O¦‰h“Ľ49Ę.ńéŽĎ-uJţůíßoľ‘Óç!ńz÷ŽÄ\µ%ű-Ź&®ŕLwv&›ëCď<Ýž /ů§ÂfňŇ#馒óŰđ%‘Ł0±f'?ű/µ˙g—1®ě2꒝̀b<Ąś&; ­MŠ6!żÉ.ńĽdç;»÷÷W0ż1źŰĚO˝·ü]ď ć˝˝iG»ůEý€Ňť…”Κť˘l#¸śźŮZM×ÓjXKL-OWÓ-4 k™ť4o'MwR{T«VSKśZUi×v%S+yµ”} ŮĂľz싲/!űbŘWŹ}Qö%d_ űâ±/Ę^BöbŘŹ˝({ Ů‹a_<ö˘ě%dφ˝xěYŮsČž {ńŘł˛ç=öě±geO!{2ěŮcOĘžBödسǞ”=…ěłaOű¬ěsČ>öä±ĎĘ>‡ěłaź=öY٧}2ěłÇ>)ű˛O†}öŘ«—±cÇ—JSKÔŽeÔ°–aďÝş® k=Ů‹çÁ˘,ýög¶C[ÔOeőÓöĽÁ‘Ó·NÓľ…¦}5şL»¬]X»$żËˇŃsZQ§•ĹiÍ]ĆüŮňĽa1·}·ţ]°¬‚׎şźĹŹçŻĄçŤMňôęF^˛Ť‹çŔ˘,‹ݵČÔňt©ËâŔK-ăŔâ9°¨ËâŔk-1µĽ«AXJHŰ8°x,ęŔ"!{ăŔâ9°¨‹„썋çŔ˘,˛7,ž‹:°pČŢ8°x,ęŔÂ!{ăŔâ9°¨ …썋çŔ˘,˛7,ž‹:°PČŢ8°x,ęŔ’CöĆĹs`Q–˛7,ž‹:°¤˝q`ńXÔ%qX+›Zűt˙Hç1‚ZóŐŁ–çŔ<şÖ*a-6µ˛WK´VŽjőń¨u©\jÝON¸7żÖ™ÍNvŻš˝Đľ íTb~6ßÂC»~d^†FkÝC~—Că©Řf7%ßJŕŔĹ€ż˛.ÁϧW7ßąé~Ú˛źú|5źL:zu#µ…Ůf?ÍŰOŐýTökŮ®’ŞÜËÂý‚u˘3ĎŃna¬ĆŃS*.şžRü&§DďR(Šşä÷—;źh>YY˝—üCoÍár‹®GězČ®GĽ“Qt!Âa¶YŹxë]ʍ›‹ÄŐĹş.a-RĽť°î„sT‹Ě×{_O¬´)¤Mćb`ďb eO!{2ěÉcOĘ>‡ěłaOű¬ěsČ>öä±ĎĘ>‡ě“aź=öY٧}2ěłÇ>)ű˛7¶|©\jÝěiDěÉŘňĄŇÔ"µe%¬eŘ{¶LjË4"ödl™<[&µeę-¬UL-‡=©ISç°Ö“ýĄr©Ąě[ČŢ3yĆLjĚÔBöŤM-Ź˝Z.µ}5ě›Ç^ jČŢ0yLjŔTßad{LjŔ´đmh‡1·Wd ř4Ź÷nŻHľë]Š7ˇ:0-Ľd‹!_<ňę­´zëRËwu©ÓŇę´Ć[ÉóVRo%Éo˝wzîAž{¸Fľö KKµ`Z-Ř.y¦KjşÄŃŤý®ľî°N˝üĽ˘ĺF׎ş¬ŐšłA¤¦÷ ©H endstream endobj 5329 0 obj << /Type /ObjStm /N 100 /First 933 /Length 7191 /Filter /FlateDecode >> stream xÚµ]ŰŽ$ąq}źŻ¨G­Yd Ă€-[z‘eAÚ'€W{mÉ»Ößű««ł˛:+łşfV‚ÔŐŮÁ`\ĎÉŰ…“9ŮSäŮx˛đÓáţD&ťś řN.Fü4'źěÉ&>…ŕđ“NLédENśě+ţqĚŠ9Iđ' ť‰?qĚ8s˛ú‹Ńo0ţjT0ŽRX—OÖqšXď°ŠÇ—‰¬Ç—ŕË^Uř _„RŻs5|‘DÍÁo„/'b ű2ŞŢęÎTÂęÖ’š ŘrJ¬Á&c-ěŚ|ô0÷DÁąl$ƶ±3bl ):ÂÎH°ő–ŕŹŘĹ6ćL°/g‰OX×YÇ®śn›r.Ŕ}řžKá„-áWwÂŽ\€0Ďńü2< /`;N¬˙€Ý¸D üTď0D"~ŇÉëVĺä ćzüXĹÁ4ď` >Ů“Ź4ŹŃ)hđÉťBú€O‘óóŻáÄ W⟢կ8O1Ŕř$Ř2BŚO N=›%ŇOö”üü«§SJAµxÄÉxqXDăfŤ5zAłzń‘56<5EŤ×4RMÉĎŁŘľĄ†ŔcÖ%ѵ‚fD0V?’&©^ÍÂŕmÂjšp!ąy«1;5,ĚL±Ş7`5±2Źb5In*Ăj)ukĆPŇ…2’tažˇ1t¬u c5ŘŹŞ™ŢbT1M H ÄŤ3µćQ$â3?"´žŤÚgĘMs"V 4WÓ„ 1éj«ˇĽäĂßý݇_|űÝç?u]ĺúűżř|t珿˟ú˙|žE{ţýS˙ßYŃó·ßö˙ű¬É>űűż_é˘W]6íéB[¸Ö6taźŻşÂ¶®i»%íi»–6áÚób篾űôăçŰßä—Mţâ—ß˙’?÷·‹×ELÜ^älâ‹Ákił8ŢĐJÚń•…Úú®T9·˛÷bţŮŢ‹c^ěĄŰíeEíY×+j1_-™ř­˝Ú{^Ąý®4]lĚ–.·č2Űş¦ô¶%’^Ą…o¤ÍĘuţÚY݆ťťőbŘĹYîv‘°,BŰ‹śM|1řFzqu”ťŕň*¸—¬y±÷bţ´÷Ő1ŰÁµq OĽ ŻÂiĂ޸$šméónăV@x ß„Wáu@âu@.Şďm—€0m/r6‘·ÂK@Â^@­bkVöň* Ľ°$ÜÄŻś¶–€ł'íWá [áńKx<ďęň+][vů% ž¶uťĄýVüwÓ.Ž ŻďWŽĽ×–­[ďüö"/&nµ&·8Ţ™ťD1+_ń:Q._=ŰëÍn˘Đş Ź]9…ü†˝´„hWzÚ -ᱲ§ËňJ×–]v‰‚őŰş^¤·˘`—(Ř›ôż8ţ% ˛rĽ]9žd7QĚâxĂŰ‹śM´[•`ÇďÍď¸rŐ%_Ě˝X6÷â—;y˛Śď›é-×ŮšËčľ™ÜkÉUX¶ćö2¶o¦öJĎj‚o™łĚď›ń-×^ON_†ňÍLŽ×._wmYůřfęߤÄ2¶o¦ö*О‘ďËř˝™ľ«dX·Hłš†«§ťOl§Â2­o†u¸^lk.“úfPŻ%Żă°…–Y|3Š×j®w»iÍ«»ofr¸v7o¸{®7łu5ĐüŞ9đµ#íĺÁ2}o†ďÖT[ĆëÍt]ŰríÓ°oá…µaöf­WÇßLßUfmZůęk·ŤÎÁ^¶»7S÷//C÷fćG×Í®›»ŕő×â o»8âvÁ×ÝŚé­É¶ŚŘ› {kݵ×Ä]ÉíiÉ7ykÔ]Í\Ů3m54i•Řt&ň{¦]M囡Ľ5â–!löLó+łFĚ+ŔĽgŮŇÖy˝QűŻVÝ1ęW¬šëuoÝ6ă·ůĎýÇÓż˙ěźľŻ?˙Ăçüéó7zćaZsúŮŻżýő?ćż«ĺ?żŃótîÍáŹŮtۨ‡ŰÄÄŮT$ŚdĽ ß ĎŁďFĐÚZC-’Mćś:ř< Đ›6z›‚qKĐqj>SĆ—R_Şm%—âł4Űkš‚˛!čLsčÖˇŔ$¶ĄGCŐŹAj*ĄéŢ?Âißýů»Ď7žy§ş?Ţ:y-îÄ@اGě4†ëŮĘäE±V·qF7ëzvŘT€öRČG›sK vďlŞenc+T~TďG_›ő¤Ć[= XJv^¸Žą˘Ů ŃQ2‚at)l̨)%ťŐÓxq®¸e*ĽÓĽ‰­‘kŁö&ŮťĂnŤHsE»!XFE>eßbĘŮSě#ÄD¬Ű…Ýtť'äu¨Ţéßw.ąÎ#q„ ţŢHÎqPj† IĄşd=ś¨…'|‘}iO$Ö»s÷ŇP†(J.aj–g4‹ăŃ$ŘHŐ¤’r/CzŠ–đ9÷č¦ćřŚć\…}¤8rtB­Ęp^ë9ć(/6/mč—ß˙éűO—6äßF´˝/1s$=†JVş#;)”}ć¶;źť˝›0_!‚ď´i+Ł®ÄŁ % ׂk¶Ŕ’šńąźŮą–üÜRŘňĹ0hŁXȵU–âz,b3S›ĺębÚ Ý4Ôč DP&ľŽČm É‘Ë\Q6cuîmPăNAĐÓ9…4Ši¬ŃŚ´!Fs…hTę5GôI{Qp9ŰŢ0µ­=˛đG/Éů¤‘ZČÄč‚$áˇCŔťąĹMĽßăßw.ąΚћó@łöÉÚalŤđ–unŮemiŽěĆVDę}4ď‹bËYBUš™˛)čBî•c Ţ‚DE¬3%xqhÄÓG6n Žä\č­`®´JeĎľŚ6Se&ĐV F‘H70Č7q’›EúUŤµLr^ńşŞ˙üçţ㏗»ń:vŕ­Î퀼ţP"{AM7o1ár750µÁčv ĎTŘë)lŮű1“)hQÖ8«‘‘G ĘJÓƇj§lÜ–…{‰‚ţŚ  ćŃň8äÄ2ú4yg¶eŁwµTô÷RĹĺVŃ÷Që%'¤j®Ë۲%8Ó¬Ř`—h{ihŠőX@_›6;»- Ľá`¦°ő}ĎÖ:p:QśëúÍľËăď_ř0̵űZlóÍęä(ŘŇX`K?aĚm»ím7Ś;qdŕ)»óČAÄý’ÓܶlËv@RŚŰ0+FË6uŽX­#µšŘÍui["Ŕ,¬‚‘g‚ľ1%M6gw/Mü7ßýřůRF|{(ťĐ—Xřl×ë´ý¬ ďJšű´DŽ‚wěÇ÷-ş¸E ܸ¦cl!APN©릨üŔG˙v«€ĹÚME‚Ő‚ľP˝m¶˘NK–™Žs.r¶cLI° Çć\bE§D§7^h¤2׋oĺ|A‹ěŔýÝ„5`%•…ŠL}ÖrtoĺÄHdŠHŻn)ˇµ‚÷TBä ąąŢU[•`ŞÍŔ&>Ĺd‡ŻhE–ÝJKˇÍúßś|ďđěűÜ cn…9Ĺ‚†Ţ“@ĐZ'Ś"´%nłödĂ=Ĺi©µ™bRĆ ţ€IWŹrn‘á¨%őě{šÖ”Pâç^QHŔ>4Ă6äşAňHn$ĐK;ŕ(‘Ň+/Sn#mşRA "_|ʺ۶”™ę¬¬«YąČ).D8JU&Ş Wp°-VďĘLÓöÂxěŮ÷-¸FLó2hé€Ç<˝w¶ E&Wő3éí6;1ăP}…ş5­ŚfŃ<7YZŕżô?˙鯗FßG eđ±`GĐa@Ě| Oa€*KÝüë·ż˘Ź˙đůÓ_ęçW ‘îţŐBĄZŔtĂ\¶ é€ŃE›vH»őuě«'WފІšX-[ôÜn!—€âٵb˝oÎ:™CžMŘó@#$ŕMÖ˙€â€E”Ć0ŔMŔČs×Üě­™YҨ%¶n”012G¶h±ę«šßPĐ{A‘câe#†`ä8ĹĽř ˘§‚˝- ě¶ąěaq F#ŔM ÔĚ Ć=Ţu _°·č»“Z:hŻďĄ#şö[hç™x™=¨ţ®ś|K3Ţšj  A1)&äMżŁ@cE»žŕ(_…1łĐ Đa=Gs/|&€m©!ňĹdaäbšËş­¦‚= `q„+ŠĎ1Z%Fé ­łBĎ9:çĺˇt8ŽÇ“&<–!gä 6—«áŐĽŠš]La§é ÚsR4`>! D y!€F'ĚĐ8ÓaŻ;` yŚG`3‹M˝­ö2@Vě ł´öşCP†((3— 02'®€ ĂAÎě+HčĂ­`4$0H1&  =ü_ď4-ŘóA„ŐÉ05)čPÄ ƇbhĄM'Jz(Žăń¤ ŹĄŕęŔ’-hhŚČ±ѬĄ VAͦ/÷*ŕa0ÂX$†~9Íföú”v *;Ą—qrU:Në3ęiÇ» @ĚsÝČ'V‰‚Ć:ŕ ›  Îďő' dQShgŔµsHŤĐXB Ý™ĐfBš˝t¤7F+/°y=NĚuϬĂ[0ĄĂq<ž4á±tH†ął-•ś ú.8jE¦Ť‰ü^§M©w°eß›©śÄ5_ť8[Ł˘¦Úfeěu‡„†P"+C1qô(v @BU đ †ÝQPÄcf˘µšTG€O–ézęčúĹ×™{ jkHĘŘ([ŤFP’6ÉwuČ“©`o`6Ň*( í51­w`NŞfWĽ×SćśO‡épŹ'Mx,˝ÍLi éF,é” ąd­ůÍ˝Ę@3íL9đ0(hÄR:¨ ’aĎĘp» 0ijO ň € ö7i¨rĽ{cOÁR‚ËZ®ĆD”´łÉStVPZ˝7™ ör8,dbC ˝BHŁŚ>đ(É“Č^:úč5â ! @řyÓkÁ&Î`6>”ÇńxŇ„;épáK«í}üx}Q8™íżéiç0ă ŢƤvŐ…Žş¶ M^´ęy!»–^ó´t÷ŻŃ4aż#Ě’ŇůV€·Q™ć=§őžŁßIŔ|˘xođ/ {ňÇôKBş/˙űJv'6ŻäĚŽü!Ć˙řNl߉ç x(  ^Éî„ńŢ%AîË?@»„yGţu%»“FǤ iŕv䏙J"z$ Ž#ńśĄÁ|)ŃŽ KÉŇžü![J´“F%áť0>@QíLŠJ˛uăHÉ9JŹŕÎIOĎ0ŘçĂ€8ëóiŢ +›Öő˛ăÜŮŁß“ç1ő?źĺ艊8‹D[°2ÖŔMđ=ňÉĎ0Ëóú‡^é1±g´a|ŇŐ%UĚ”sš.í÷ý‡?ĺËíťW7\˝nYÔŘć6*J´–ę9 cŇĐ+Ć.<_!¶ď5m+ĺŢ!†Z*Ml–ćčµOř1‹::É?嵌٠©Ūd})8»Ţ0˘OV¨ę«{:ߣ:7ču™ő†r€Q+ľČ7P™VÓSŞą°3gK z¦i„Š€ż€=>[źSŤ(ëI/ ôŃM챎8ŠnŘ<­vO©ŽU,ú!`ś>E¨×,QÖŕđz6°SőţşąňŐÍţŇô#={—ŠďI‰”Šň«±óÎ$éÓ/ö)—g}9X]©©Rc0`Ń7OâoX<EžRŤ‘A±cË”“ŐSbЬc2¬ž-”®Ä{T×alÓË©čCìE}Ęęŕ{ĎĽş©ţ=Şź˛ó tj^&AăoX‚j!|wZ˝°?|Îőż/}9|ajÇyµäVZ]ţ8ß/0j ľZ°”äń+o‹>>B7¤ą˘[‹ jĂbďˇř(T˝ĘÄřtoc]|¸7}ö ;R&×aB3zícşôžW(˘qç†^c)T_,¸+b‰Öčzëîe nŚ˝™hBđ¬Đ+ŁĐňg<Â=áĂ÷rĐőíÚ7Â)ĄŞ·§Ěuä‡Q™ě0˘Éq~iĘfĂ{ŻßźXú8ÜčTĐ ‰a“ .EŞŢÖ@˝LżÝ« Ż8DOˇĄŇ›>Lď}ěÝ'8=ćŰ[½\yäŐ/W@z-HOmŹ˝G|-Ů`b8¶ůgá‡{-'ôâŘT3<ŔĐѺ﹌äyš ÷- >zÝęĂę¦`n#TMź"N¦;Ípóa¸ŹýţÄŇÇáf+UOMZ=®ř[Ă•VPĐrn[÷śÎđşd—gÇO*6ę-•˝őÁ2έÚßE™.›őś¨ľ¨Ä›q™ŘuľwÇß‹ŘńK{Đ1î(zé)A«wf ?9¤ŔŤ¸aŞĺsSş×@fLM­TÂn“ľ¸dTä)¶3ŃĚŇăę>öűK‡ ŕ¸5’±)Ô,¤gşE_›Î÷齼wc}jj>TF#Dy#~ cł­cN‡>_jîÍÇŻóî!ű´öGŢ?äźŐţĐ;žöĚCď!˘Ă”;ŽýOaŰqNVŃ{Ŕ=Du ¤č1c …PgNú{-ČŚĐs°^î 8µëB}"g˙ňšć a=×´™ôÍ$,Foş€®f/sâ\Ć|ýĎüĂçţéoţV‡˙ëű~^ŽęA·>‚F`íaLŽ÷~ĄđŤ+/B~]îQľň čׇô!łłŃfř’ő—c(4űzŠă?>}˙—>~ĽĽăfľęčÍCbWfĽxcóÍ>ţťčs÷đ7ëëj<&x´ŔüVĎÎGÎú°üĺYđ i44rŚťZšč‹F/ˇ—1ź &Ë=iË-·‘ŽçF­‚7”•=Ą˘2]ÝN g€;='}˛#?G‡Ň˙¨ĹŚůżµ÷¤Ë†m’¨Eý÷C€|RĎhwa—»Ąą¶»+ ť’`Ú{gŞzc•ľ[Sĺ›ó?JrŞgĽ˙Ěâ„ř<0šes8˘E4c©Š·ÁÔůüL%ą»aw l ˝§pe×űú‚ ĹK¨eoÎŇćž4ş`AkÍäHŮs@kzľ+ç鼻a÷­“ H ĂÉÍ3/Ő¬dß×2“ćRUoĄˇMvŚÎ€o ČŤŕü%@–^fş_î1ŢÎ…‘ÝAšĎ]ý…ާ/GiSÚ‡ýŘűĎ,ţ@Ř1-ô_I‘Üx‹&bX‰–ú¬™»YŻ—s˛>§˘ď ŢÔ7żˇúŇ·VyÖĚݰę‰2Ź]G7Ŕ]eŕ•–˘3Ă”ľëúÔ}í•ćkžFÉŃ7Ňs…‚žĄh×Ůt7ěúTAŐGšŠÓ×`v´ú^Ł ]{9ď›îK„DÓłß0÷ ¨göë´<‡ýŘűĎ,ţ@صCŽŔíĐr AÓâ«úN'Đ´éĽtwű5ęIś&TĽí­šF€I˛ńeDÜm´ĄÔT†>šEi€·¤v@ ŹfĎwWLŇ%iú<Ś˙ć4ł¬gŞőťqůĽvĽ'ŤRÇ(‰ZIj`Ď$ľyÉń\Żtwß=˝?Őw˘ŕ…@ćP¨ „–;×öÇa?öţ3‹Ď°˙?ądţ endstream endobj 5375 0 obj << /Type /ObjStm /N 100 /First 1066 /Length 8854 /Filter /FlateDecode >> stream xÚµ}KŻ%9nćľ~Ĺ]NÎ"­'E†7†íŤç»áÍŔHčYH»şŞťmL˙űůȸŹ'qîMôTwUť’D‰")ňŁBRFźÂ“yŠ>ŃSH^~¤'ŽY~đ“ő^ëň“ecń‹Í“sÉÉ/űä’vOŢf-óOž’¶ OÁFó~ŧs’2zŠĆë/ü#XmÇOqŤó…đ+›§dś”eű”bŽňË=±Ń^˛bd´Ŕ¨±M´—LO̖妑1)üâ§l˝ö’ź˛N1O9„,żěS&ĂňË=€ä—ĘŮEůž¬1ěÂĎź.(5á§ôź ?cÔž /“¬ĚÍ@`†u$kž,~űmĆÖş¤?~ ňÓă'E-Ĺh–ĂhŁ9㵣9çô'FsŇ ?1š#Ł?1šK"§ŕ0šË¬?1š·"ŕśh2j)FóQgá0šO.a4ĚŐBÚ"‡ŃŔ©6ŔhÁ‰ÔĂh—ŚÍ€sQ\€qŘŔY&ď1šă'F‹YYÇ?, 1~b4B[Ś]Řä˝–b´Ä[[ŚĆ.ĘŔ¨˛śĽö‹Ń˛Ó~FËä…‡ă3Vl$`*ÎDuđO*’i†€źřF &kŔ~~J~&üäí'?ągéŔ",[aéŕ_†-$U7Řsa›4ć˘%-Ĺhbé ݸH[-ňÖF#“D’Ł‘7ZŠŃ xáÝ8J$<,,ŁŠ%Ś–Ŕ…üÄh)°ô «q)Y~ŻÚ„á:¶j\„ŃXôŹźŤ)‹řŁaE ŁÁľĄ-V«ËQĺ‹e Ó1Ú fŻ?~z˘źţöoú›˙Yţ8ţôôţŰĎß~űóď_ľüÓţéďűĺ·o_~.3'Xyl‰śËąřŢ,}‹u¤Zě§'ď°@ĚÓż<­¨kL~”–‹fÄĘiF-ѡŞDˇ†Lď¨˙Çřăoßţ"uú˛]ŰB®ĹIlşézš­±#«3Ýű®ä|J[o —2Łť%č»Z×JͶu[‚Wň|JNÉŘ\ŕ¸tô0 ”¤Đ˘)…cRň$ä˙ţÓßüó×?~ýţŁâýˇŃ˙ý§żű»ĹţËřý—"Â%,ť»émuŔŤ8`yn„m-iŔű7c ü ů–‡’‡SrhÁÄ3±ĄjÍHÝ4‚ŘáĆR”ÜďČŰoß'Š}‡bthM‡!óÉ–L©LµP…’–”6ďÖD쮦^"» ó°9K?# 啢^ÄőŃnĎ4đLď¸Y÷ĂL—šµđč#ÔŠPX\¬SŮ y5!¨DĽ}´á4KOÍ#†D†(˛‰*Š5%Ď”&ŘDś+-EÇł¬ËŢq‹J ?¸  ®aŘF­Uňäŕ"›K3…>=Lv6“V”± u*l1G8Şrá"¸ HVÇ´KĘŠŕj+ÖFóFí‰áăaô9WŰf×1Ď÷n)tĐjĄ†y–a™'üťĺ94Ô-jT¦“YM—bD´+­‹%ŤĆ ŢŽ2çÎp”v¨ ÂŠŞĂ›šÚbŔZ¤\& é]Č}!µpt&e˛! Jľ"•€ë¸tĆ”Ť4.IÇDLŚĹM@úä`vÉ@şhd!KRq©·Çbü𨧊{éŔeăFI3Ă&gÓŚĄ^Lh®Ş:c—Ö3N.S6ł…N¶I aÓD‡ eęŚiIěÄr9'1UÄgbšGBŚYI×rą âéJ¤Ź^K Ą3UJŽĘPRoÖ¤•!°iŇđµ“+ŁA±đQĂvôk›˘cĺ#‡öińÚ GM«fĚm Ű3íľ[Öö‘zöfn†rěň´‘‘Ľď%ga)Ę÷Z˝Ĺ!Ô;?L‘Ř”ŕlÇuÄ,ŻŇĘ'¤®°ŞÖ ŕÖskD#kŞLrIš¸gS©9a’É•JŔǵNx1×۶×F•Z—đ0gëĆ#ő d™X jĘĽ$…“V¨pîČ{b¨ őLHŠ ˇ+)=PďcYxŘGęÍ®ć$pcî ŕ˘Zx˘NÇ­u8iBOÁb5!qË%äÜ)CI˝ł-†µ´Ęô`ŽŃŰÂ’XT¶ď… ´jTqMZS4LŢ`ŇHc9ĄÔSV »ö˘ ßeS/¤€Ě iT®p1˝t€hÝBxyŘž•tmĘmšĽÝYT„ĄOp«> íˇn)‰ăń*˝[Öö‘z±č¨XĐŔ¬M”­#â4Ů$ÔĂz·ś20Ž3ˇł‡Ü‚čni#VHLŰ:˘µ '˛Ś>˘2Öa7#ôŕČćÁŚ4eőut2*ŤĎvuH„ µĚuĘnŕ“.ü˝s˙5~Ő„ŐÜĄť[…HÁÇ2JumÂŮ#Í熠Wx¶H0ÜPZ~ ˝Ç˘üř¸gę{롫:.ĐŢvď੢äÚ&LÉĺ|o˛_ýúýÓ«?‹‹ÉĆ4# Ě(;ümŠătĆ+eZQfg1dfنKÖ`ą‘î2®•!”wąÍ3eI©f.P)… x†\aŘŠVš§®cĆe!ÁYs B*{0°/IYAyćU? ÄŹ{¦·_ľţúźj‰Ľw^Z.&¶ dÍ`3ŰG«npĐ×r7b˛[’ća8L,{Ŕ;“GfI0Ş?PHJj—¤5¶Â'b~Ëşî˘-Ôîg%ÝŻ©ßżý&™Łľ:– "?to˝ŻŐA$ĄtirG^ź[UŇ|˘g)}¸Ď3©żt ůşy™2zC$„«*-Â:,-E €<Ëů ČÎN¶â3°T›ě ëę'Bđ@QRż&…·KyyÖ€ŹĚayl(łKŞSł—îźľ—ďCíäţl*oÝ„ę‘9Ú–á>ş÷ ř§›~&¸5-°UĹś]@„đP1~}ňŮ‹QZ˘›÷Ëňăăžé﵇„X1ŕü“!c€G´IäŔH¸§Ź*±;P˙JŰĹś}…C+%7öX0Ś Cpt˙R †˝ňż+müá/ż«ërf]÷ĄŔŮM˛P'—\ȰŚIXKÉ[Ô` ¬DĂđtÓĽe¤1°6ü–´űřăÝWëB/¨ĎŽm€Xa[ ?fá~©Fí>˙p÷ŔčâĺlrÍäŠÜ¨Nđä+ĄŚ¤ÁťÇ¨î˙ og&ő‘AJc ÉĄ‰8…`ŘxzäěÓaaół|Ó‰|.€T}DČs x3řľĚ¸Ť%ťt9řSrätu¦ŕŕ^N`%ąQ€hgL­Ly& ÇşuÎ,LŐřWňĘjŢ3@Íłgb#RÂŕ8ř32%D(SmÓ9ů•¸ŕZßcmݴګɡSš¶ňĄq¸¨Xc/č˙*ß$nÚ»} )Vś#˛’“ L@ôaNíĐŢí…=SĆ$›Qŕ5ÎÁ^_°e ËA )eXQ"w„wáčk–m.ČŰz•¤Żf`VJ{ˇŇżŽŚ?ĘŐ™ÖźéŁÓô˛őёը­E2›$źUóő×>ţ/ĽDzů¦®_ţ÷·ń'¤,ĺű×ß~ŐÚgďó{ůy|¶ZnKŚş×]Ł-#:ó¸ďfőµ·Ă¤· §ÉÝŽ¬8!ďŠ4;}9°©…ú]‘f.ű‰%Mk«úuě×f'챦`;ÁlIÎ-{2‡ô˛ ±•4¶/ÂVduíÜvĺäÓ‹=Fµ×ˇ_›­ąs˛ďi9ßv)’rűQô<†ßµIąp+)·nŘé÷ť°žŚýÚě„=ý޽ӭ¨6Ą[VĽHJŽ˘Ýé÷ăťĐ˝~¤Ú ]7}1kîň§·fkîtÇCŽsÝt)’ /řz+"-Úq,’ ;yzÝLr·ŕuđxáuě×fkö‚HŠoŐŚnvÝZ|ĐÝët;npZtËť{‰;yÝÍkî^™C«ć=Ý "(Ű"í¤˘vô¶˘¬đčVµ‚“Ů­—Exő)ń„ąh4ęÝĘIvÚI3Šś’»U9ĄxË\9í V?ͰńKîdě×f'쉠x·Bő`ÇťDPśoHAĺť)’j·ŚI&˙ĽawäŽ>˝5[sG"©śou&ŕm‘—˘ýŔTx K[Q”"ş1‘ńÚĄČŘŻÍNؤdř¶K–˘|«5‚¤‚··E’93ďJŚ4J·‹]vĎvÍ]úôÖlÍ]I…ťÁKŇBÚ ,’Š»Ř ź–QtkI$őüťçĄH&µd/˝łtĚ’HŠÂޑѭMiÎan±H*™[=˛H*íl‚eň)Ä5wŻÁŚĎ‚‹¤·Ţv)’â¸X$•wŞe‘TŢ­IeľU„äRQÎi®Řă×`ĆgÁLö6ˇ´[“לtÇp6Ň(ŢÚT†¤˘Ąť“˘]0Ë` :Kkî^Y> f9˝ż•TŽR´łďLRô‚ţ4šŔĂ˙®čĎŰ_óV¬€ĺĹĽ+hÉk#|ěšŘ}«ÜcŇ}÷z&ŠőŕËöĂ[±FŕQ#OŕűbŤ>á°™Ľăi×ü‚} [ď†P8ëîE©přž…„é0)……):ŃđÄćśűüißüś{…‰l#o±-Ýo!ëŔľ†-Ż*…ŤťŔřPěxÚ5?gŰIôw#(”äÁ*śĚ/ă­Řiń˝Vfş—Ś˘Ĺ|´ú[–v­/ŹOl’ĆÔ?Iăęa®¬Ĺ6łßw4— çĚÇO»ÖçĚ E? `µřŢŚ"\ßOU)Šďç$ aűŢîńˇřÜp„§]ó öIű:Śś Řg-ľ·dA¬!ĚOwwóý"D‚?—˝°´k~νŔŘÚŤ ;Ň˝Üâ=î…7řq?©¨ÄŠ7§ěë÷›Űćěořĺ>üÔ•W÷Ĺ MÂý¬4Ç÷ŤI!Ę!j˘€8ľ°´k~νÂ`Ž÷ÂW(śF+ppáĐ:*@8đIZ|/|ś(>ľđ´k~Áľâźx/|RXC÷ňܶMîŮČ ,s(V“ďąD Lr.|ai×üśű¤řč`ůIaO8ŚĽAźź ËY`5,ü~9 dEń9űiçňÓXŘv‘îeźuCh_úŮĘöÜžĹĎNĘîléł×}Ľ=ןĂgm§<ßH\Űž±ü9jGwĽĹ *Ţ VŠ5H‡b±>vÁ‘5÷Ĺhśâ ç?»Ć¬Łkü}˙°ëí}iÉX„ĄŘt(•$ň3ˇT&ďÎ÷źö­/×=Ł˝ĂţL2sň|(…*ň˝†HU‘ďB«Cş9[«¨B8çţSníOŮ'ĹîÖĐ‘U˛5Çrł]L8Iy>”cĂ})¦ěé 6®vÍ/fÄ#€ý”Üyľs=(ëL‡RŘóA)ísţ¸ć|Ďř9 ţśÔA¸;đ(Ĺ0Ëw†”K{ľ ŁRŰ×˝÷›rAÜć7Ią K“Î`ńĆŘľýŐ$BÝűI)—}.{P.Ěşx`JlZ.<ß‹q†pš:€sűٸڵżtĽĂ»({&Kq<(-KńëţţíĎíűß˙öë÷ňő×ńMwFòęůř »x>Ĺš ˛ă”ŽŤľcGsđ%ŘއIͶZęôŤ}Ó˝Ýôš%.;płÚ8ŞŢAś~Ŕ'ĐtcYŰ)ź`Ók2żę±ľ"ŹrwŃÔl’‘#ĹŘ9o{şé˘¸¶†^†i­{Syxr ަ5ßž;Č0Ř×ĂŠ®É1jͤ`U, š=¦×(łě NW˝/ĆXúĚťńź`(Z3ś‰M;8&ů?¦Źdá}ćPmjĐ"±ˇ<«rÄ&6`üjőśTzŮŔ\vĐł\GE. ČŦnM4͆]Č–\‹\v€ÉÇťóžGI†gíř?ő^ďWŻ»KÉś{vr@Ďř‘ÉWL*»pëSző‘˛=!†Ě<Ô=mL…|O>±ďŽŁX“Izm5™ â™[ťq¬Ő¶1\ěžĺ;yÎJŢĄţÇň˙á©ţKˇÔ†›± ‘ů¨łOĎ6“ĎkZgŕN¦źÝ”+ÍťF+ÔB1nŔÍ9&×áőĆĚëNó‘8”az©ľŰÔcńXt1›\ĺřŞ/Iwä2ť—VMçě2 Cjó &T'Şh%N'Ä=¦dáŁFźĄfç7ö+6¤G(ź[Ođđrť 8€|‹,‡–gŐo#»*ŹÜ`čÇęîC®Űv2ĂËý‚L‘ç<Š™ú&ôp2ő‘Gj’ďąµő@°Ŕr¬ivU·ą%ţ‡_żýţ—+żüy ftR ‚ ĄŔ}ďä¶(T<}ްo7yn›¨éśĽaZ7ZčČ ¦ÜÍŔ2Čľw |5ăx>şÍ¶ßyFBč°r^ öĆá“·O‰üP©ŹĄűCź¨u×I”“âuD““• B1$ąŕD0ő`©nb>YřĽZs”`“<ڰZc„%ÚĘ&żxJ^B–ô¤4j$6,”ü„=`]nŁ»Sňćjá&oDDpG“ိĽŮ¬§8ÓÉÔ!D{‡bŠŻ Ggćr ‘ˇl}Ť"q>#îŔRÎs0E—'=«‘—€•űŻÖBc˝­É{dđF űę* ŤŕŹ8Éó©ř"ýä´GRo´ĽéČ\(Vř=Ű=Wň@Q02 šľÉěd\ Ä ?ĺ`x® *¶r®ë«Ę·hđěOhYćÄ&ô.lÜžuµĆő˘ÇOöŕ÷†¶ČÉR„EŔÍ\ťĐĺ<ą9ŘZĺ¸ÜŚZëů#˙řŔŐśk\hSÎ$KŠBŐČ ŁŇ75§ő´ĺ. §fŔ<§‘;é„äq†#Ň6íĽ¦•+qC‚l“¶°䌽ÉPĘŮŤ–NhKěÉöÔÎ#·É$€ î0±Zë¦*sF[cĎňśRśđŘł ?7†ŘÂcĂyTĄ=YÎp99Ť   a%r ›n€ňöIWžĂ#5?–řÇľP3ěŞ7AÔrĺÔudó¸•RîH:žÓ§ Ŕ ´@şý5r벭’FěrAô|N_ňlđ'<BäI?cFH@‹\K®Ş˙ ű4Ö#â 1&[F…1Mů0e;v˛ŹđQMüĚPąDđ¨@QÎĄÔźĺĄĎ1 źí¨řR„šń{’|Ěičđ­ň *oj©3δ¦˛‡»¦L@ę@:AĽ1ŔcFĐă‘y¶ßh)ć¨X{Z(ë!_|•y~‚1缦M‰B­L t=y‘ 0Ăj€…7ÚxB;Ř9[Ĺň´ŁúăÜÄ{ĘťČđübŔąşß#ńŹüPÍÜIť|=2˛_Đá+f…¶2<ćx>ůÖÓÎňđŚ˛‰Č˝ś Ŕ‚Fg’·ńś®˛}ŽńýŻ?üŁűňĺ_żűúëĎşźćŻZČg?(rČ>HŁ4•É pNé—&Úďz­ú|ĚH’ĺq…f-'y„Ťu[;üůűĎňÚ/żm_]ů‘ňËńŘń‰rŢZ 5™śÜ Ŕ!RĄh}›±!é>7›ĆżČ+ ’1ő‘Ś;ťyʵZ„¬'ctĂ÷űJýË×?}×YçeÖ7r×ŃY Ś< F›mňŚv–G™µ_>!®¬ŘyĆMľ»"DđX®Éë%J|ůŹĎ/ś ׏ÉmŃ÷•>¶&X¤;Dč`€9pp§N´ňęM SOEÇî%ââ‡<@ć]łŕĚz˘”+0#Ă[+ą9%§Ö]&w3Aî­“oŤ‹<™‘ôMĆ»Ť¶=9l »Ü#OŔe Ţ yŰŁ¨Bwšśď?ÁďČ‘'ĺ"[5ÖA,đ±ÔŠ Ň””y—OÉ›Oj—]÷Ďĺc5Âk„ăjHŹ{ˇŰ÷ëŕ‡†Źú±´DBm.Xřě˛E)˙ămEíˇ’ëŰO_F—§.Ô„Ż›H,ô˛V¤űHOZ“ďÓňHˇ#ň SŃqřA'^^¨ŹÝ“<áh Ş‘l… ¤ąHm5<âžézň.ǰ’&`Üä>‡7%é]źĎ:‘ Ú>ćË´Ý;´űXÄ×ă\©ńĐZ>0XS®‘Ô‘7Î*{MNn»¸`Ď«Ë }DÂ4"ü,Uř5p °(÷ľ'ő‚™wőÄŚĺdmÓ/¶ňUJľÖ÷ĺNŻÇD8ć÷ôTśöťČ"!ârA*DňÄ?|ađ[O;;’@ßßŢ•˝ŐI˘!ŻĎŤŠ…¸á"žźĄ#ť“µëîĆĄľH?ÂȉAÜöÝB$”çT"\ťěÔÉÂüí?mÜR‚ĘĺˇęphĘźĎ@Čĺgi-:}ç5ďWü-5’µťA4Ä «M_hŞâPm‚N”úŧ˙ąŢŠý¬W—5zoY#‡©ăZ-“ȱ㣠w-Ěç ¬Ř2źĘ,§ąÍóő#ß]Ýv2U§'§cöë:9ž|Ľ˝ŕxAů`˘z:űő:ô}ťdµĽ®“ĂŃŻyńmťÎĺőďľňj’ʆ5ćčŹsôËĂáűrüŇ®T˘§Đßn!í«„ĘŻfˇGĽ_Ż ßU ­¬YŹG[ö—3T^Źt×ÔóĆ–Wę±Ö×? ă®J®Z·¨âíÄ>-«„*e•ś˝=ľzäőHw=Á¬‹1®řÉşéČm.‡‚[UébÉ DĎK8/tHĎË4?Pbľ·Ňg«IŇó2ĎĽ÷yy^U†çµăÖ•N+iUąY˛µn]ą­şě Ű ŇłÝ–ŤKľ¶câŻ7Źď+ő8µYé\őóú¤Â]•83ZMUĄ›,_O”ŽjőµŞşIK†T3iÉę…ÍşJ\¨YY‰2ČŃ.«„jKĽé®'¨Şâ´TÝ/ Z—ČŰĹŘ·Ş´-[ëB^ՙ͉:^WŞ\ąĂ Ę«i¦gŻ`_ß°¸ŻÔ‘Ż+ĺś^WşÍA/Ś9=/-gĚrĚíZ•±W!ó…ďééúmhg×Cë- ďוzŐ"ÄuĄŢśi])×'^_4ŢW†mşéÁtô™ôÁtĂ6]^N7nCgż®Ô0jňşŇkŚ]v«ËŐŮĄ ¶‹t‹?ÂiÁö‘ňz˛nóź)-Ç[}{yá¶n‹Ažă˛NŃŇ ťô¬YÖéeç.çéŽÓôËËßűra&řŐ°[Ä q]ç´.,ët*ě–u:•Ľ˘ŰâlĽŚ0Ď ݧąĹŃH´v†dܲN¦Bveš[řĄŕ—uÚgXYot1_N“މN3o]ÓjXĹ€6ÝĆ »S“«Ójżĺ^çŐüyµ$B× ő i—óľo&×ýÎř7Űü<óUąwîâU «Ď]µôŐű«^ß!XÉb1ŁÓ>‹DĘűáR*ňí2\NZľn‡ËIë[—“ÖgŇU }!Ŕ>ËˬN{yź`ôłŁ»ŕG^y t%yđ%Đ•\śîÚ\Ée{źä˘AĐonď’ŠűtÚÇűd˘_±Żf¬Ç®&Ľ=orŃ@:ą2±wfŻĎ^*p~—@â§Ó> Ä>;„xęěłC§Á>;„xęěłCxýóEÖ-äe„p)y$!ćby™Ői/ďŚ<ľ.§-ď0ÄËiË“ ńrÚňś]M[ÖWľDVq¤wĘ…>ť÷ň>ąKt%q 1]˛,ć®ä"gÉ#_ĘEĚŻ W:Iď’‹łźN;yźX¶çS.¸ŮRąh OŞ\ÉUĚÍ^‰U¬Í^I5ëŁmď’HřtÚ‡ ä˙(uíÔ endstream endobj 5575 0 obj << /Author()/Title()/Subject()/Creator(LaTeX with hyperref package)/Producer(pdfTeX-1.40.14)/Keywords() /CreationDate (D:20140602105956+02'00') /ModDate (D:20140602105956+02'00') /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-2.5-1.40.14 (TeX Live 2013/Debian) kpathsea version 6.1.1) >> endobj 5476 0 obj << /Type /ObjStm /N 99 /First 1046 /Length 4582 /Filter /FlateDecode >> stream xÚ­\[Ź7r~ׯ8Ź™‘x©b‘€! ±“}ł^¬ť—T=cf}áî¬"[+!TeśEľH^#*_@8c¶|Ifbk…˘`ŮZÉŇC‰­•’k–°ňŕśäoâQĺ‚PÂ}\D ‹2Bť.žE˘<łd˙\©c©`çó«oľyőćŹĂŻËăĺ/÷řy¬˙/ÓÓ»‡ŻńµŻĂkwI<ÜĺĎ—}@¨€dbÓŔtX€(α]@s{ÁlfŠ8řó«7ßżűőÝS/CĂĎŻŢľírQa‘ ˇípsŮon4xŹv{¨íťëŮşçqn¶Cm§#Z††C †#вŰk číöDałOŢnŻöĺV×%Ś|Ŕsůš#Ĺp$5G¬„IŤ+chÓ_Ç»ŮÎúCpv{¬ípDD2Ř4A[ŹžSwÉ-»˝ťëk ěöj“Ő.L˝ďŃ"14!0ww‰Îu<ń@¨€Ü0ч* Ç2`Ë›ŹĄă!©ÚęĹKĐ‹73 öâ-Љ·fWęXµÓŕéÎÔqŠŹPű:|„Ú˙Đń¶ŽęĐQÇuŘŕÎą“ˇ©¶Ă2‚żłTśâ‚ŞĄN¤Üńˇt"-µÝ´lłNL`·W¦­Ľ(۬7¦Ź ;KĂ鵯˙qý»líµÂBg´»MAŮżă6@-‘öoą Ą vµ¸ÁŇ'㍥⍦ ĺlăŁĺl«óJń=yďö§…Ô»»Űźx’Y1iiZŽy`­¸ŽG•™Ňc¦öó~Éѵřr.v(u©"|8¤E˛´śŁ…ÄZęř“Ął{ĽA€[÷y‡ˇdŔÔAH˙%wŠş3•Ó·ËƬ´ŽwŮuRîérî ÄŹ:I¨r<ŠZT–’cZ ĺ¦w˝ IVĐúâÍ|ŇGz:˘ rQ‰óńxµ¨,%Ç´`ëSÇ!zA qĐ :  :µać“ë „ÚŁbţ9*KÉ1-©ŤXźzK/Qč „ZJ„P›{A µć@¬ˇv]ZZT–’cZÚ©ćiʦŚ(„,gřŘAČ‚†§˘R‚ď ’ đÚ}ľ*9G ‰±^ĐYÖpzAAAëz\Jťv.mČ…ŔW@:EÉŢ]¨é8¤D+$ňÎv¦–¶Ôiʵěv¨íŮnç IąCFŞí‡\h(†ŠST0•©t"͵˝i©íF¤­@ˇěöÚ!ŮíĚ4Ew†‰˝¤8Y™´[8E°ÁÚŢ ”»Ś (ŐöN L4YOS­,˘tV1˛i8$˘UWDGjŹXąß*+˛rżŐUdĺ~+('»˝Y3˘Ebh8EDí+ő[˝•˝·ŰCmG»=Ööb·3‘9D»k;ť!"ßY‰h5VŽť@©¶w͵˝(Ď!Ś@Ű2pĆb·W˘S<"Ť‚4ťYYOŻi›Ě˛ő„OŰd–Ép4·ë­€Ü®·ž“ó6ćŇŃ_WCÜ!d<öçs‹!y› ë¸éHŞ{_ť@©¶–¶ÖČnŻ VF–¶nË«‰ˇá€Ş«G[Í™÷źP¨®°4Äţ#ş"ę˛OŢ\Uh)]-A ]WdkÇLžĎ‘™ZŽą 9čy„醞d?«: ¤z­qËţÓ±BŠ@ŕŤÍTsŽé/ě9]·ŘŁ;AvűbŹť ~Ý ’Đc'HgÂ9vÂť­ĺ9Őˇśz zÉ…‚č±WS+SŹ<DŹ»,םâ%Ţ™JÎŃRÄtÜv;ÓͶ{ćKgşŮö})=-Ű.rę $§Ň9bĘť©ä 1˛żÄĆzÄČL“zQËDC˝ ežˇ^Đ2Íd×AČ,“ĎŚŁřîL%Ç´´ÇňŕĚé5*"`QLĶ‘íöWBt€7°é€rHK°nM›’cZ*NÜÁhş›;Év85„E (µŮ˘·:'¸BDőÔ;HK‹ĘRrL nełng?|ě Äao‡´e‹ŘA3ă°m7űiÁÝuĹ«’3´l{×ŢLď¶><‡¶€¬t mý8$´˛0™:&¶Vg(ŮźW™ňźt±Ď‡lFÓÖYłÍv— %vő&Cé ŞŽ{:‚ čkJi:NP˛ťń|ÇDŹD/ćz‹ŠŘ‹™AD˝EĹäŹY‰{Ű W%çh)b¬´¤Jéř+EpLV¤ŽÔaEJŕH+Ň}î)ĺÎŇqŠÉסDŇŔu–,đťx% |'\ÉĐÉVé·ŁŠk<†ŠC:ôj´¦=­ Ń#¨ŕĽ  ئ#đ`äđ¨ĎGtDc&ŮTś 6WB˛\ÁvÎl€řł ľŔ¨sŻGi1Ű1‘Â1°KśYrŁë©\HÉvEú–ś @€ H0ŁmŮ‘“ :Ęá“O€p.;@łŁľJ čŃ Çś]˛rÎŮ„¶˘Őc€“ŁŇůŹýôh: iő±Gk¸´ęĎcě„#ńZă ŰN9Ză ŰF9B‡@:âŁĹc¨8EGć;ŃŃęQ´Ć“žt@ęhĆ­ń¤‡0‡3tä;KĹ!zČ­‘«g°t˘•®+ťh…ńbF»M¦É™>lÓKň‡·Ú´»Z­*NбÍSÉŰ•Úu)D POŃŰ€$ă^¬§8úc:âî`ˇ3;ť¤» >‘ákщŚuŰ[=ňއÇ" ˘t•v ‡ĎvewgçŞă)(¶z1×.¤Ř‹™Ń‹9 ˘sť©˘Ťl&łćQÖp˛†s»—ü•yöŽ@¦ÂHžQ0 e…ą,sXhNs~öwůßĺ\˛DN…iąs '”‹ËW—˝3‡xăqÖŃ›•Ó¬śfÍ’¬QÝ.•Ý80Í4žčKŽ~ŽaY®8¬Žs~„Ď>?ýőăÂřŐŹ)Żc¤™řF¸ş8@ć«J‰#î,ž‹­–ˇ$îçg‚qĚ<„žaÜ鄢”ĄĽ(ĺE3¨hŘ·/ ýŤţŤeť]đśÓ™g^ÜWü(nŽÜč'ŽřăđËň:ĆO•ę˘T·zˇ˝S„ş>ÎÂÍÂ˦ÔBJ7 Uµ,€ ¨BRTČ»’śĐŢŞ™ż˙bcíjE˝öęµWŻ[MĚ‚zâoŹP\uÇßZĽµäŐ{ŻŢ{őŢgÔ›ť—ŇŻşÓo-Qľµ4‚ Ť (—A˝ É´”ź Ő#Š;†4€  @+DĐ v^ŕzŢ!®–¤řöáĂÓđîĂň‰oŞ„3,<1q ł†śů66!ßýşËáÖ­=uŻ‚ S‹DĐ"±mW|áĎŤKž—0'·Dľ­ÓÂÓęPÜšy>»zýý»˙óSuÆB ±™]ßăřî4Ń8ń„Zć§•2­Q”2-A DŘ9 wu@îÚ+OyĂJC}Z†y¨Ë|‹]";ŻţţÇđéÝ0ľgiÉ!¸Ńq•Ę÷Š1Öo­ Â2ć Öq'»´4-M”R­ AkB@·ďďł™‹köxňÓčffož’[ÇužĘ4˛ŰşÓ÷üůš×·łhĹ Zq*cZě{€»«âĎÜuAë‹wčv¬jÜZ,jÜZŚcĆÖŐoť}iő«UE5޵h-IÓj ´Z‚”;Fi÷Ô$¶Ł¸;Ă]K.ÝűbAŁÓŠ´âiŰ_Ý9ËżűÔ ¤jí¤[hňݶMĐęňË?„ôőg=ÔľÖA udí­EtĎN>ýö˛ĎhÜľô}µŻŃjUÓ6·Č5A},ńĺoWÓľ}-A@K(­–şQ(ź {é{u_˝'ŇĚŁÖ¨u…n:Ęwěš*ŕË^ÎŘ94|µźT7©Uh˘›ň%ĽźÎýę Ú×zµAŻŃjmZ[ §źĘúęäŔŐĽ«E  V ݢ•Ďđ˝pŁţ«˝%µ®… já˘;°ňż&¨‡ˇĽt+ç«…Fµ®Ő F˙{ÖěĘŽfeLkÝ–Ď6A#˝=WöŐJÚď|ŢÖ-gů,á&hQ‚Z”讳|Žđ˙áyŰŞ˙Q×ÂP Ô‚µŕ@-8đöďoę˙ß[˘éî¶|)± J‚ÖşÁ-_Hüť%ÚąŰ!ę˘j‚Z‡ Ö!¨u¦—ŢíůH——PKÔ’ľxö1ƉÖ6¨µ ęJjY˘G䣏ťqr`ń»ĺ‘/‘ĎE˛ýµ¦ÎĺÍ·ĂÓđţá—WoţÄŮĹ ¸ÍsŻŢüđůé=?3ČO°ý´­ĘË·&ĺďzÉż=ĚË›\.?~?ŚËűÇoľyóÇĎż>ţűđă›Ooßú$ŇwoßţĚ>ĽůáăňáĹĺKđxőí˙Ä.ÄY endstream endobj 5576 0 obj << /Type /XRef /Index [0 5577] /Size 5577 /W [1 3 1] /Root 5574 0 R /Info 5575 0 R /ID [ ] /Length 13271 /Filter /FlateDecode >> stream xÚ%Ýyl[—ßw]Éű"Ú˛ä}•7yĄ÷Ý–Wy·éŤŢ×ßiÓ˘ĚHí4OAFĘ$HÔ iaZ€i§´ Ó¤32™ B&QHŮmJ!ýA$ Đ´ŹP¤´OK°|ťüó¶ÎEŢ{Îç|ď%/?×]]]]í«+ŐůgUáHwW˙Źór tË—;'ě%r7ĺÎ —Â2ą[rg„ËaEw×ęr§…+a•ÜJąSÂŐ°Fî„ÜIáZč•;)wB‚urwĺŇÂőĐ'w_î¸pôË=’;&€ŤrŹĺŽ 7Áfą§rG„[`«ÜkąĂÂm°]î­Ü!áŘ)÷^nH¸ vË}”;(Ürźĺ÷ÂľNnj•Ü~aŕ€Üą}Âx‚!ąµrńgńâ‡ĺRrÂŘđŁrëĺâ%c§ŹËmŰ-Ś‚ťŰ,›Ĺ>%wLn§0uF.-»M>'=Ú. \;%eş—äÎČm^†+rçä˘ÄWášÜąÍÂa¸.5ŤöÜ€›rQÓŤÂ[p[î“\´öŚČ}‘ëŢ…{rßäB÷áA'·Đ%×'|ŹäB“!©ÇđD®_nťđ)dä6Ę…źÁsąMr˝ÂđRn‹\Hůdĺ¶É­ľ†7r1[1oáť\Ôy•đ=|‹YúźäNË­~†/rgĺbüľÂ7ąËrË„?u0ÓöĄ˙C—_Ľó ó;cŘgşĺ>Č-ö™%rŃ€ăÁËäBÔÝBŻ6cŘľĘĹSŮŇĂľđ“\—Đ^ÎtvÍpç/úżÇ¶¨ĐLŻśťůţM¨ş3ëäîÉŮŹť™é“3ěßżuu¦_ĚPÄĚF9Ăţý“šf6Ëöďę7C‰3[ĺžÉ}RńĚvąçrj?cfvĘ˝”{'4=3»ĺ˛rú6cňfĺŢČ˝šÚ™}rę÷]Ďg űĚ9őűžö™!9őűN/3†}ć°śú})4ě3ťa_3ťČŃÚŚaź9.×#÷\hŘgNČ-•ŁÓĂ>sJ.jźö™3rÄ˙ťĆg űĚ9ąŐrO„†}悜Ĺč»ů1ě3—ä,Fß űĚ9óÝlÍö™krçűˇaźą.g1ún.g űĚMą­r÷„†}ć¶Üv93=cŘgFävĘŤă÷ävËĹCâIČ9 }ż-Ś z$gÁűO;óDÎ ~ż)ŚBdä â÷Ř´(âs9 Ţ÷ëÂhŔK9 Ţ÷Ř­h^§«k÷Ë]FăßČŶDIB4ďäŽĘ]†ŕ>ČŶD9C¬źäb[. Cč_äb[˘1$ßäb[.;ĘIţlgŘW˙Ť.ż° |?/—@·ÜUąsÂX"7,wV¸–ÉÝ‘;#\+äžČť®„UrąSÂŐ°F.†é¤p-ôĘĹś¦ 3ěkł!ę´p=ôÉ…¨Ź 7@ż\úp6Ę…¨Ź 7Áfą>ą#Â-°U.„yX¸ ¶Ë…0 wŔNąÜpě–;(wP¸ĺÉî…Î°Żťs$ţľ_8 ·Onź0ž`H./~X.^cP~T.^#^2vú¸\i·0 vB.Ä›Ĺ>%bŘ)ŚFť‘s$ţ»M>'ÚŘ. \s6÷=Ęt.É…¶ /Ă9gdߣÄWáš\č`łp®Ë…˘=7ŕ¦\,Ş…·ŕ¶\,ŚŃÚ;0" cżđ.Ü“‹…1dq:ĂŢŰę>„GrˇˇÔcx"×+·Nř2rëäBŽĎŕą\h¨Wř^ĘŢR~Yą=rk„ŻáŤÜ^ą·đN.zľJř>ČŰÇ}„Or1ě+„źá‹ś3€ď1~_á›\4— ;ŐčţŘöő¦Ë/ś|_*—@·Ü ą%ÂX"w[.Âxđ2ąhr·p9¬‹&ÇS­„Urqt5rť.ôĎƶ¬…NézG˝ý&LÁ:9§żł_…ëˇOÎéďěáč—Ó¨ŮĎÂŘ(§Qłź„›`łśFÍ~n­rŠ=űA¸ ¶Ë{/Ü;ĺ†äŢ wÁnąĂro…{`PÎJ=űF¸öÉiŢěká~8 §yłYáA’3śłŻ„‡ŕ°śáś})<Gĺ çě á18.wAîą0 'ä.É=ž„SrN§g3ÂÓpFîšÜSáY8'w]î‰đ<\{!÷Xx.É˝’{$Ľ WäĽ5š}(Ľ ×äĽ5š} †ërNăgď oŔM9gAł÷„·ŕ¶śaź˝+Ľ#r†}vDż¸'gŘgă!ń¤†˝dŘgo c {ɰĎĆÓÇÎöŇą›Â(„a/-“‹M‹"öRčôş0`ŘKˇÓŘ­hža/…NŻ Łń†˝:Ť’„h {iPîŠ0gŘKłQΫa/…&/ C膽šŚVÄöRhň‚°SŤžťaßřżö’ŁÁěyą {É)Îě9aö’÷tłg…KÁ°—¬*łg„ËÁ°—¬*ł§…+Á°—,(ł§„«Á°—ÎËť®Ă^ş(wBĂ^rt™M ×a/9ó=.܆˝ä=űě1áö’łŚŮŁÂM`ŘKNăgŹ·€a/9Ťź=,܆˝˘>$܆˝˘îĂ^ QîĂ^ QîĂ^ Qď {+˛OO`Ř[!řłxqĂŢ cĂ {+˛xÉŘiĂŢŠ…l·0 fŘ[ÎZfcsŁŘ†˝ĺ¬ev§0eŘ[ŽLł±«ŃdĂŢr:=»]1ě-g7łQ¦‹`Ř[±¸m^ĂŢŠĹ-J| {+·ÍÂa0ě­Xܢ=7Ŕ°·bqŰ(Ľ†˝‹[´ööV,ný»`Ř[±¸…,îaoĹâÖ'|†˝‹[Hę1öV,në„OÁ°·|V5r|†˝ĺŔ7Ű+|†˝5"R~†˝ĺ3…Ů5Â×`Ř[>SŤ1x †˝ Ô*á{č {ęf,P1Bá“\,P+„źá‹ś3ÚŮżŻđMÎíě2ˇa_ě űöC]~á˝Ú¬ů]4ě‹ÝrŢ«Í.öĹ%rŢ«ÍF^&ç˝Úl·Đ«-®sş:OeKWÉůŕh¶Kh/×ČuúÖ_‹mQˇĹ^9‹Lí›Pu×ÉYdjöcQgűä,2µ/B]]ě—łČÔÔ`‘"7ĘYdjź„Ô´¸YÎ"SSżEJ\Ü*g‘©}Rńâv9‹LMíMŔâN9‹LíťĐô,î–łxÔômŃä-Ę9]­˝šÚĹ}rNWkzľhŘČ9]­e…†}qHÎg5zY4싇弽©˝öĹŁr>k©ŃÚ˘a_<.çł–Úsˇa_— ť^F^Ę…Nc·˘yYąĐé5a4ţŤ\č4J˘y':˝" Áö źKŐ˘ś!VĂ>ás©Ú%aݰO8ČŐ˘1$†}ÂA®vAŘéŕ’żŮö=G űDóĽ\†}"„yN؆}"„yV¸ űDóŚp9ö‰ćiáJ0ě!ĚSÂŐ`Ř'B'…kÁ°O„0OS`Ř-Pýµ´p=v‹[í¸pv‹`íp »´żvT¸ :Ăľîv·ÜáŘ*çô­vX¸ ¶ËĹërńşCÂ]°[ÎŃąvP¸ĺâu÷Â>9‹emż0p@ÎbYŰ'Ś'’sĮşŋ–sÄ® cĂŹĘ9b×â%c§ŹË9b×v Ł`'ä±k±ąQěSrŽŘµťÂhÔ9GěZěj4ůśśŔjŰ…! r>«E™.Â%9§ˇµ­ÂËpEÎih-J|®É9 ­mĂu9§ˇµhĎ ¸)çČ^Ű(Ľ·ĺŮkŃÚ;0"çČ^ëŢ…{rŽěµĹ}x çČ^ë>„GrŽěµÔcx"çČ^['| 9GöZČń<—sdŻő _ŔK9GöZHůdĺĽ}­­ľ†Îh¬+Ć ĆĽ…wrqŔX%|äśmÖb„>Â'9g›µÂĎđEÎŮf-Ćď+|“s¶Y[&ě űŇ?Öö=]~ĂąT.nąÎ%Âčü´®âŹ0ĽL.VęnárX!COµVÉ9 ­u WĂ9˘®Ć¶¬…^9˘®~¦`ťQWż ×CźQWż7@żśĹŁúY8ĺĽ÷«~nĂŢđŢŻúQ¸ {Ă{żęá60ě Gµę{áčč~ýŁZőťpě–sT«ľîA9Gµęá^Ř'§~Ő×Âýp@ÎâQÍ œţúJxËY<Ş/…GਜţúBx ŽËY<ŞĎ…i8!çL«úLxNÉ9ÓŞf„§áŚś3­ęSáY8'çČT}"<ä™ŞŹ…á’ś#Ső‘đ2\‘sU}(Ľ ×äśAU‡áşś3¨ę}á ¸)ç ŞzOx nËů€¸zWxFä|¶TĆ/îÉů±‰'} 糥ęmalĐ#9ź-Uăécg:{ą~…NűĆ\ŁŻ†źÁs9g‡Ő^á x)çě°R~YąX<Ö_Ă9o[Ş1oáťś·-ŐUÂ÷đAÎŰ–jŚĐGř$çmKu…đ3|‘‹Ĺ#Ćď+|“‹Ĺc™°łGË7t†ýÔ».żd©\Ýr±‚,öŔ9ď]ŞĆ—ÉyďRí.‡ÎfôŐăOµVÉů¦Ú%\ kä«۲zĺ«ňM‚ÎSmQŘĘWázč“s4­|n€~9GÓĘgál”sjZů$ܛ圚V> ·ŔV9Ă^ů ÜŰĺśšVŢ wŔN9§¦•wÂ]°[Ωiĺ­p Ę95­Ľî…}r>!­Ľî‡rŽ8•¬đ É9âT^ Áa9ďß*/…Gਜ÷o•Âcp\Î÷ *Ď…i8!GŔ•g“ĐiņIg(•Śđ4ś‘‹š>ž…srQÓ'ÂópAÎŮ\ĺ±đ"\’łU /Ă9 Yĺˇđ*\“łU‡áşś…¬r_xnĘYČ*÷„·ŕ¶śłľĘ]á‘óE–Ę0~qOÎ0Uâ!ń¤ä Sĺ¶06葜aŞÄÓÇÎ<‘3L•›Â(DFÎ0UbÓ˘Ďĺ Sĺş0đRÎUb·˘yY9sTą&ŚĆż‘3G•(Ićťś9Ş\†ŕ>Čů  ĺ ±~’łV. Cč_äś™W˘1$ßäĐ*„lľ3ěWOwů…Óߊ^ΛĐył•±"UÎ M÷ĽE+M¦yĂ>ď!™hňˇaźwĆ“‰&ÓĐĽaźwĆ“qŠS9%4ěóÂŚSś ýÍöyaĆBQ9!4ěóÂL4žvç űĽžgÁ*Ç…†}Ţ™~&ŠH÷ó†}Ţ™~ĆJĺ¨Đ°Ď{űšq†R13ó†}ŢŰ×L,2‡…†}Ţ‘q«·yĂ>oŤČ8‚U†„†}Ţ‘ńąEŬÎöykD&šr@hŘç­G¦Š9źX#ň±íĆX#ň±đğŋ[#ň±đ cĂ}řťŹ…'^2vÚŮ\>žÝÂ(łą|067ŠmÝ͇w ŁQÖÝ|Ô/v5š¬$y/TŮ. (IŢ U˘L6Ż$y/TŮ*¤ÎyőĽŞD‰){Ţ[ä|,đ›…¦bŢ[ä|Ô>Úc˘ć˝EÎ{‚ĘFˇiś÷9ď *ŃZ“Â{8•tÝ˙?c·>Ágř_át±rs$Đ =°–Â2X+`%¬‚Ő°ÖB/¤`¬‡>Řý0al†-°¶ÁvŘ;a솽řt=ů­Î±âíŹ ßűá„!8‡á…cpŇpNÂ)8 gŕ,śóp.Â%¸ Wŕ*\a¸7ŕ&Ü‚ŰpFŕ.ÜűđŔ`Ňőéם˛çż Ăx xĎἄW…×đŢÂ;xŕ#|‚Ďđâ…ľä”3G9:ČŃAŽrtŁäč G9:ČŃAŽrtŁät?bxtýÔŰiŮĎ~3^"r‘ŁEä("G9ŠČQDŽ"r‘ŁEä("Gą=0´‘Łäč G9:ČŃAŽrtŁäč G9:ČŃAŽrtŁäč G9:ČŃAN÷sÄ[źtýň/b·!G 9bČCŽrÄ#†1ä!G 9bČCŽrt{d‘# äH G9Č‘@Žr$# äH G9Č‘@Žr$# äH G9Č‘@ŽĘ_ŽťąśtýĘĆNËţł–°L eb(C™ĘÄP&†21”‰ˇL eb(C™ĘÄP¦˛EˇLe(“@™Ę$P&2 ”I Le(“@™Ę$P&2 ”I Le(“@™Ę$P&2 ”I ¬ńe:('I×˙Ř-:(ÓA™ĘtP¦2”é Le:(ÓA™ĘtP¦2 ”­eŠ(“@™Ę$P&2 ”I Le(“@™Ę$P&2 ”I Le(“@™Ę$P&2 ”I LeŤ/ÓAůHŇő' ±[tP¦2”é Le:(ÓA™ĘtP¦2”é ÜŃÁŞű|,÷ŕ^ąß<+÷—§Ęýĺ°VÂ*X k`-ôB ÖÁzč а6ÁfŘŰ!$đ*隼 ă·¤ë/ŢŚMŰ;aě†=0{aě‡p†ŕ†#pŽÁqHĂ 8 §ŕ4śłpÎø—ŕ2\«p †á:Ü€›p Fŕ6lKşţëĺ±[wá܇đÁcxO!Ďŕ9Ľ€—đ ˛đŢŔ[xďá|„OđľŔWřtP?ÂĹD…đ.ŃA!KtP tżb¸“tý…żÚYAţÎ÷xŠ(PD" Q E(˘@Š(PD" Q ÂVŘ´Q  H @(@ $P  H °:é*ýőŘ :(hwa(éú˙4rdQ·2ŞV8ć"kě N$]żu1GŠ(PD" Q E(˘@Š(PD" Q ‚îN']óĎĹ“şŹ˛ÓAˇSżżő§â¤R E(˘@Š(PD" Q E(˘@Š(PD" ±oQ E(˘@Š(PD" Q ÂOŚXL/ °ş ôËŔR`kĐý½¤ë·›ńŕĺľ|¸ÖðŻĹwîÂCŻyHkśŹk}ö•ŚřNÇ•¤«ŃßŢ‘›đť“ ŽŞµĐéę?ŢŻN¸„×m=„Ăm„ŻmÂͶ ÂöÂą¶ ÂŻ¶ÂĄ¶ ›¶‘¶řĐö÷ŮŔAŕ98śfG€żlŕp• °Ś ô&]3<¶Ůg(ů×´ćăí»®Ř ¸¬ăňŔ‹Că®8ŤÇ%—÷>Ńô9zý¬ŹJ| 6éÍYĆ勼ŹĚňg=i #®ďŰâ58ŇÎĎŮŔEŕ4¸ üeW«l`xÉnŮŔ-ŕ¸Zç’®żOĎ<6Ŕ-6ŕęCţłźŘ€« y¬gŔń5ŕőJ,ë.rĺă=vL€«ćŤ¸Ňşâúj4Ů%âŰájڧâó`ŕÚč&ţןb[|ú‘˙č'Ö­˛ťň‹)˛ť"Ű)˛ť"Ű)˛ť"Ű©ĺůštýł?Á’5µVź˘«)_Ŕě˝ß9‘řď]wľMuS›t+ž…š¦’®ßŤgˇµ)şš˘«)şš˘«)şš˘«)şš˘«)şš #]M…«‘®¦ÂËHWSá`ÔË©­I×ĎżĆkŮTŘĂ·xNĂY[Ţ>ťžŇř)ťžştýÁߊż ǡžO…PϧÂ5¨çSáÔó©x–»ľŔűŔ 8ĄÓS<€SŹAϧžżß”žOéůÔ  ś©WŔŃ7őÂÇíą–týb0¶ę-hň”vO‘ÔÔWŹŠ=xaE’^6< ]Łť†.„˝.ĽsÝI˛jM\w¦.„'ó5Ź]ĽîŤ$Ůű-~ІęŕÂ{Że+}ç®Ňí/–%Éí ]~а–Ŕ H’äô•říRX«!ÜŹk!<Ź)§ăzăWă„—q„q „oq„[q„Gq„3q„q/„ q?„÷đ „ăđ„ĎđpžÂá4p_~żáËŔĺ7|V&Éů»zX ]Ó\3|8 ‡ăÂ˙J?1ß sŰ ł×ą.ąf:öňĽÚ™éŘ·O~˛GÓ*4­şÓËüâ­ź˘~_ü%ą |†ĂĂŔ]8|x ‡o'áđŕ~9^ů/bë]Ę{fWA×Lëę´˛Oűí´ľMkă´ţNG·Ţ'ÉŤ×ń·’äóŻĆă”}ş/IžîŤP/§5`Z¦5`Z¦5`Z¦•iz0Ižýąř ýÖŹé0zjŔ´ÂNÇ'ď=ގYˇÚO‡'Sg¦Ă‰©3ÓáżTŤép]ŞĆtx-Uc:–Ş1ľJŐ7ĺ]ĺ}çäCżäc—äSxa†Ś†2š›ő{Ń(už~ŕ#Dk?Ctđ+ŔôOĚáVL <Š=ÎÄĄ~Äĺ.Ä•ŢĂՎõ>Ăp®žÂÁ ŔI88ü›€kpp đ nÁÁŔ8¸ ¸÷ŕ`ôň\’ĽţElř^`ŚNÇĹěř‹c ö(ŰrăąčŮćźÂi‰ zć'››í,7j»§ĎF!xń˛Ś…/üűńŘOŚ…i?Ŷ‚ł0”$řYäř Ď—ßŕ-¸ť]ř#żą|w7“äß?9ÖĽAľ»ÁűđB]_ÂÝ$ůŮ~oáU’ü‡?Ź\\‰­ásýáný áiý ś¬Ůčď»$ÉŹĹü”$©/j ÝYíÎjwV»łÚťŐîl=ĂÚY›ţó÷ńa0ŐĆě–$ůó9rú›ŐĐlŘ;54¦NĚę`V­˛;“ä×÷Ĺ_ěžĚlô’3ĹćżĚjh–ë2äµĚŞ}–Ă2«âYĎŞn6:xt?{H ; d‘Ő”,—dVʞ˝:“˝ ú‘ŐŹ¬~dő#«öŮĂ ©lBMĎ!DŁeŮW Ů×Ŕ¤śŐ·,krVٞ•Ő¨¬Fe5*«QYŤĘFŁLíś Í™Ú9ź3µsÚ=gjçLíś©ťÓŐ9S;§ŤsÚ8§ŤsÚ8§Ťsô%ÝÉ™(I¸G˝cî Ϩ÷Ä˝á] ě\˝|^˝K“ä_®‰żëŘńg[` I~ďâ›Ŕűé^N®ŢŔżŐËtŐ»5Iţ÷{ń¸]ŔtŐ{˘yG€ů©÷`’ü«ń8~«ŢcŞ^O3aŐĺŠę˝ĽP˝—Ş÷*đ=ő†Eř|’üß}ń|Ţŕ÷2?őr;őŢźô†ĺř1„Ńř)„Jž%É˙·?ţ6śĹŃéđż†ŘŚ·>á÷îŕ¨xx‚?C¨ř+„˙÷'JxŇŃčt´řýFéjTuGŁě/“¤5ŽO54et-¤ ľ°ÜŃ*L¬çá0žOéF}´1ŞLŁW“îţ?_m g¬‚Ť*ě¨7lŁ>Ő…Ń“¦]  «®NʆAWGĂ–«żŁaĆŐĐѰŕîxú˝Ҥ{őĄŘ…pßŢĹUÉQĄUˇQĹUżQźÎŚŞîhřMď@¸LďBxKď“٨Žę਎ę਎ęţ¨ő µş•t§~›ĆŃ0\*vIaKt_RÝ’ę–l}i?ěIşŹüf|zdU)…r„űqÂó¨VĄp:ŞU)üŤjU WŁZ•Â˨V%ę,­Kşwüőxć04š…É—x KL„%’/± –ŚF‰äKÔ^"ô)—”ł¤Î%z.)XIÁJ VR°’‚•¬vÖá¤{đuĽn8rU­ţÚ¨K¸eĂ~Ř0»Rq),®T\ c+»RÓۢâ–r¶¨®EĹ-…mQqKu[±ç“îâ/¬4-Ĺn)vK{ZŞŰRŘ–š¶”łĄ’­I÷µµńgÄÚň• L¸3é´Ąt-ŞkQ]KßZdÖŇĽV¸=)»O%nĹߪKkWŇ}ćńĚtß2-#Ô2.-óѲ–´”¸Ąş­ř^Z|Á'6\M[át$ÂVř•ł®F"l…—‘[á`´Ş´âĂGkI+ÜŠÖ’Vx­%­p&ZKZşŐúčH kÝKş/ţRl®¦´ľúE|>vÂđ†a0‚a `ţÂĺ¶ľđń…ąíxŇýěmߍŇ]OşýŁŘR~µ›ę<Ć®pr…u+ĽZę2ˇ`ę2±=éţC1­Őľ¬µn¬hĹÄzĐŹ‰  )Ŕe5± 4eâ<¬Lşßý…xf=šP ĹžP %žĐĐ öÄ ź]O¨î„Ż*ŹĹo/B/CXŻBµg"l‚ę7ć@ő›K úM„Pý&âłđ I÷ç‘Ř p†ý/ę÷ôcâhƄʙ'tkB·&čy"j.şź|í©ŘYS|®)ŘglŠ˙75őű’t˙ô›ń8ÚŤsN]~v1> í•~7Őť _›ęΆ›MugĂæşÜĐ)6é˙tб:ĹqťbĹNńh§·S\Ý)vďxŠA<Ĺ9žb)Ońš§ĐSÜé)¶ő?{ŠŃ=ĹźšŤ+::ĂLźâ˛O±ß§řňS ű)Nţ‹Š÷?ĺ¦)· Hą—@ĘMRî>r[‚”ű¤ÜČ ĺ)·>Hą'BĘÍRî˘r{…”ű.¤Ü!ĺN )·pHą·CĘMRî‘r›”űG¤ÜX"ĺŽ)·˘HąGEĘÍ+Rîj‘r»‹”ű`¤Ü #5× Ř,Ýk#ĺ&)wçHąmGĘýúF9î’r ‘”{‹¬»˝–Ă 8 §aś‡p6ŔŘŰ` ŔzŘ Ăp.Â&¸űá‚®¤ű×ÂÄu;Iş˝?pđ¦!ś'á1„ąí)„Ąí„‘í„}í<„ĂI÷äoÇÓ‡Wđ>pŃým‘Ż­čo‹ţ¬řŢ{HŢ^›Űmż¸ÍÜv;~ËŇvű#ÄUŠĎŔľvű+DuňTáRK Ľi&ĄČ‘VTű"ZQŠÜgĹ•ŕJHŃ•˘+!ŵŔ_VLWYQ±‹ĽdEM)ruˇČ7VTń"·XQŁŠĹhŮŁ¤űĎ~ŠBhhQC‹ÚX‘t˙µ?żŕÄ,ŇK‘˙˛H>E®Ë"éy-‹tUt­¨H¬EľĘ"5ą)‹Väˇ,şšVäś,ęt1:ME.ÉbXO%Ýżń‹x]jj(gC%Qâp&jh1üZ ˘†6üYCCÚĐĐFX Ăw§şŤ¨xçtë/˙Őx°N74Ąľřrx\îâ€ňÁţúˇxŻŰř–t˙Ă˙8rńôŐШ†F54ŞˇQ ŤjhTCŁŐШ†F54ŞˇQ ŤjhTCŁĐĐ€F4@{¦˘ˇ lč`C:ŘĐ™†Î4t¦ˇ3 ťičLCg:Ó«x:ÓĐ™†Î4t¦ˇ3 ťiÄuNťičLCg:Ó0ż 3Ř0ż Ř0ÝŤmI÷﬊"j^#şĹë6Ä[5Ä5ġ5^Kß0µ SŰ0µ SŰŕR Ke&éţ{˙şď“îń˘Î¬VC[€Ájh°U í€pNî‚đKîpIî…đFî‡pD„đA‚p?đ<p:†…ď1ÄÎćýť´z$6( á~ »cřĂĐư,†G1L‰áB Űař ĂDxßGŢ6c|9¬„Ő~ńř‡ž7ŕĐ ŕzśCŻÁĹ硷ő{Ľ}CŁoč3„Šż÷ŢĐO^-ěz „Io=„n¤<îaŇýĎ÷Ĺăâú0î-…µ °ăj:®ŘăJ2®ă 1®ăę2®ăW’žĄIśÚ Ű!jo°›»i°›»IzMÝ$ł&™5ɬIfM2kţ¤Ń€ň\Ăís ·ĎEŰľać;7ŞíEĽHzÎÇ_xĎžßźôśúá6°A®ĂöąŰç:lźë°}®ĂöąŰç:lßpXR÷CQBŘO}Ň6¦Ó#VÓcÓ4„­ô$„™4\ś7 Ľ›· Üž[“žC/cÓNC¸8ď@x7ďB86Őt8|š!Ü™ˇŤđd>ŻÜ ·oŚípx8é9ö«ńĚîARY“ôÜýďâC@Ú[ ¤<¶x,T<¶ú`PěŘđŘ& ŕ±-`/Çěĺ=[™ô\ŽÚŹm%łocń¶”äÇřfÇč~Ś[vĚŚ™Ź1¦Ř1ă2ź ŇŤ)ÝŇŤ)Ý2Ť)Ó2Ť)Ó2Ť…ô”iL™Ć”iL™Ć”iL™Ćâ_”)lŞńCS_AXR_CQßBŘOăËPa:ŤŹ'ÂjúÂ`úÂVJ¬u»_'Ö:±Ö‰µN¬ub­kťXëá] á Ő”zxA5ĄP ¨k@]ęP×€şÔŁQ'’žë˙vĽdt۸~:éů<9=ŞkEťřëÄ_'ţ:ń׉żNüu⯝řëÄ_'ţ:ń׉żNüu⯝řëńý0âŻëtťęÄ_×Đş†Ö5´®Éőľ¤çĹ­Ř*˘©“@=<”+3÷ÂáX%Ü…Ë€v˛WŽÝqä0žŹ^ęôR§—:˝ÔéĄN/uz©ÓKť^ęôR§—:˝ÔéĄN/uz©ÓKť^ęôR§—:˝ÔéĄN/uz©ÓKť^ęôR§—:˝ÔéĄN/uz©ÓKť^ęôR§—:˝ÔéĄţ“ý1\JzŢ.aJ $°ěů+çďćH5ýb˛[ȧ9˛vÁ!żŕ›ťd¨ťäćťdóťäáťdÚťäČťd՝䛝d¨ťě,áżş!^w%DíWVڬ…({ †ĽÂ|ĽÂr<a4Ţa/Ţa*—çßůŻâ…¶A¸tÓŢÜ“Ŕ‘;rřpG|ůp„űvä<ĐËČEŕ´ą üµ#W«vdxiGníČ-x Ç’ž÷ß-ଫľ=NÖ‘Ŕż:ň ¸VG^ŻęČ[ŕPy|©#uä3đ Ž|UÓ¨K&éůŁĄxµoIĎź˙yN•iR™&íĺd¸Ťă+–v˛?éůµl„ř!„®Âő«L“áőU—ÉpřŞËdřz}).íë”i_Msq¦yĄÓĚŃiľôrŹ‹śJzţôÝŘĺś °‚M†}WÁ&Ă´.ç»Ŕ˛ť‰ŹÚĂ<Ë ť Ű«2dÂÄęŤl&¬«ĽÍ™0¬r4g¦ĘÇś s*÷r&,©<Ë™0˘r*g8E3¬ˇ—t3 ˇi/™féM{Ý4#oÚ§Ťií4nÚ¶¤ŮrÓląi[•v%.Í‚›v‰4ămÚ–¦miÚ–¦miÚ–¦miÚ–¦miÚ–¦miÚ–¦miÚ–¦miÚ–¦miÚ–¦mi:¶”)6Ͱšöýń´ #iľÔ´o÷¦ąQÓnX’ćAMű*RÚĹÓ4ëošß4í–$ivÖ´oň¦™XÓn?’挟2É’źý{ńÓłdIé÷ă§çÉ’ß}?˝H–´ţXüô2Yz8?éL%•,ýż¨Ä­ÂűwyËýýÉŇsCW˛ôŹü~ôw;řŹţDżöĎâH±—?”é‡qţ˙‹Hü—-öüuţ°ű?¨óuţ˙(ţ »˙Ăî˙°ű?âí±ű?â˙ę±ű?ěţŹřozâ˙ĺ!Âńżńá"üA„?hí­ý°G?T÷Gü=†óGüż<ń˙Ä˙˙{Iüw%ńÄÄR˙-Lü×$ńźÁĐ_»ł—żáËľýmÚ6ˇmrlzŰH¶‰żMümšlÓd›&Ű4٦É6M¶i˛M“m%n+q[‰ŰJܦÉ6M¶i˛M“mšlÓd›&Ű4٦É6¶‰°M„mëxŰ|´­ămëxŰ:Ţ¶Ž·­ămëxŰ:Ţ¶Ž·É¶mo[ćÚ̵ܶ©¸m™k“rŰ2צ綅§mo[ÇŰäÝÖř¶Ć·5ľ­ńmŤok|[ăŰßÖř¶Ć·5ľ­ńmŤok|[ăŰßÖř¶Ć·5ľ­ńmŤok|[ăŰßÖř¶Ć·5ľ­ńmŤok|[ăŰßÖř¶Ć·5ľ­ńmŤok|[ăŰßÖř¶Ć·5ľÝiüŔ/u˙˙Ç.?%Đ =°–Â2X+`%¬‚Ő°ÖB/¤`¬‡>Řý0al†-°¶ÁvŘ;aě†=0{aě‡p†ŕ†#pŽÁqHĂ 8 §ŕ4śłpÎø—ŕ2\«p †á:Ü€›p nĂ»pîĂxŹŕ1<§gđ^ŔKxYx oŕ-Ľ÷đ>Â'ř _ŕ+|K–Vţ­NĎ˙ůŞ®˙ż ö endstream endobj startxref 383754 %%EOF gtg-trace-0.2-2+dfsg/doc/html/000077500000000000000000000000001234554746700160405ustar00rootroot00000000000000gtg-trace-0.2-2+dfsg/doc/html/html/000077500000000000000000000000001234554746700170045ustar00rootroot00000000000000gtg-trace-0.2-2+dfsg/doc/html/html/GTGBasic_8h.html000066400000000000000000001132261234554746700216610ustar00rootroot00000000000000 Generic Trace Generator (GTG): GTGBasic.h File Reference
GTGBasic.h File Reference

GTGBasic is a basic interface to generate trace in various formats. More...

#include <stdlib.h>
#include <string.h>
#include "GTGColor.h"
#include "GTGTypes.h"

Go to the source code of this file.

Macros

#define GTG_FLAG_NONE   0
 No flag specified. More...
 
#define GTG_FLAG_USE_MPI   1
 Several MPI processes are currently using GTG. More...
 
#define GTG_FLAG_NOTBUF   2
 For writing the traces in a non-buffered mode. More...
 
#define GTG_FLAG_OUTOFORDER   4
 Allow the application to record events out of order. More...
 

Typedefs

typedef uint8_t gtg_flag_t
 Flags that can be specified to GTG. More...
 
typedef enum traceType traceType_t
 

Enumerations

enum  traceType {
  PAJE, VITE, OTF, TAU,
  PAJE, VITE, OTF, TAU
}
 

Functions

void setTraceType (traceType_t type)
 Set the type of output trace. More...
 
traceType_t getTraceType ()
 Get the type of the output trace. More...
 
char * getName (int procRk)
 To get the name of the file to give to the addCont function for processors. More...
 
int bufferedModeActivated ()
 Check wether the buffered-mode is activated. More...
 
trace_return_t initTrace (const char *filename, int rank, gtg_flag_t flags)
 Initialize a trace. More...
 
trace_return_t endTrace ()
 Finalize a trace. More...
 
trace_return_t setCompress (int val)
 Enable trace compression (only available for OTF traces). More...
 
trace_return_t addContType (const char *alias, const char *contType, const char *name)
 Add a Container Type. More...
 
trace_return_t addStateType (const char *alias, const char *contType, const char *name)
 Add a State Type. More...
 
trace_return_t addEventType (const char *alias, const char *contType, const char *name)
 Add an Event Type. More...
 
trace_return_t addLinkType (const char *alias, const char *name, const char *contType, const char *srcContType, const char *destContType)
 Add a Link Type. More...
 
trace_return_t addVarType (const char *alias, const char *name, const char *contType)
 Add a Variable Type. More...
 
trace_return_t addEntityValue (const char *alias, const char *entType, const char *name, gtg_color_t p_color)
 Add an Entity Value. More...
 
trace_return_t addContainer (varPrec time, const char *alias, const char *type, const char *container, const char *name, const char *file)
 Add a Container. More...
 
trace_return_t destroyContainer (varPrec time, const char *name, const char *type)
 Destroy a Container. More...
 
trace_return_t setState (varPrec time, const char *type, const char *cont, const char *val)
 Set the State of a Container. More...
 
trace_return_t pushState (varPrec time, const char *type, const char *cont, const char *val)
 Save the current State on a stack and change the State of a Container. More...
 
trace_return_t popState (varPrec time, const char *type, const char *cont)
 Revert the State of a Container to its previous value. More...
 
trace_return_t addEvent (varPrec time, const char *type, const char *cont, const char *val)
 Add an Event. More...
 
trace_return_t startLink (varPrec time, const char *type, const char *cont, const char *src, const char *dest, const char *val, const char *key)
 Start a Link. More...
 
trace_return_t endLink (varPrec time, const char *type, const char *cont, const char *src, const char *dest, const char *val, const char *key)
 End a Link. More...
 
trace_return_t setVar (varPrec time, const char *type, const char *cont, varPrec val)
 Set a Variable value. More...
 
trace_return_t addVar (varPrec time, const char *type, const char *cont, varPrec val)
 
trace_return_t subVar (varPrec time, const char *type, const char *cont, varPrec val)
 
trace_return_t AddComment (const char *comment)
 

Detailed Description

GTGBasic is a basic interface to generate trace in various formats.

Version
0.1
Authors
Developers are :
Francois Rue - franc.nosp@m.ois..nosp@m.rue@l.nosp@m.abri.nosp@m..fr
Francois Trahay - franc.nosp@m.ois..nosp@m.traha.nosp@m.y@la.nosp@m.bri.f.nosp@m.r
Johnny Jazeix - jazei.nosp@m.x@en.nosp@m.seirb.nosp@m.-mat.nosp@m.meca..nosp@m.fr
Kevin Coulomb - kevin.nosp@m..cou.nosp@m.lomb@.nosp@m.gmai.nosp@m.l.com
Mathieu Faverge - faver.nosp@m.ge@l.nosp@m.abri..nosp@m.fr
Olivier Lagrasse - lagra.nosp@m.sse@.nosp@m.ensei.nosp@m.rb-m.nosp@m.atmec.nosp@m.a.fr
It has been initiated in 2010 by eztrace and ViTE projects that both needs a good library to generate traces.

Macro Definition Documentation

#define GTG_FLAG_NONE   0

No flag specified.

#define GTG_FLAG_NOTBUF   2

For writing the traces in a non-buffered mode.

#define GTG_FLAG_OUTOFORDER   4

Allow the application to record events out of order.

#define GTG_FLAG_USE_MPI   1

Several MPI processes are currently using GTG.

Typedef Documentation

typedef uint8_t gtg_flag_t

Flags that can be specified to GTG.

typedef enum traceType traceType_t

Enumeration Type Documentation

enum traceType
Enumerator
PAJE 

Paje trace format.

VITE 

ViTE-specific trace format.

OTF 

OTF trace format.

TAU 

TAU Trace format.

PAJE 

Paje trace format.

VITE 

ViTE-specific trace format.

OTF 

OTF trace format.

TAU 

TAU Trace format.

Function Documentation

trace_return_t AddComment ( const char *  comment)
trace_return_t addVar ( varPrec  time,
const char *  type,
const char *  cont,
varPrec  val 
)
trace_return_t subVar ( varPrec  time,
const char *  type,
const char *  cont,
varPrec  val 
)
gtg-trace-0.2-2+dfsg/doc/html/html/GTGBasic_8h_source.html000066400000000000000000001105511234554746700232370ustar00rootroot00000000000000 Generic Trace Generator (GTG): GTGBasic.h Source File
Generic Trace Generator (GTG)  0.1
GTGBasic.h
Go to the documentation of this file.
1 
21 #ifndef _GTG_BASIC_H_
22 #define _GTG_BASIC_H_
23 #include <stdlib.h>
24 #include <string.h>
25 #include "GTGColor.h"
26 #include "GTGTypes.h"
27 
31 #define GTG_FLAG_NONE 0
32 
36 #define GTG_FLAG_USE_MPI 1
37 
41 #define GTG_FLAG_NOTBUF 2
42 
46 #define GTG_FLAG_OUTOFORDER 4
47 
51 typedef uint8_t gtg_flag_t;
52 
53 
64 typedef enum traceType{
65  PAJE,
66  VITE,
67  OTF,
68  TAU
70 
77 void setTraceType (traceType_t type);
78 
86 
94 char* getName (int procRk);
95 
104 
105 
119 trace_return_t initTrace (const char* filename, int rank, gtg_flag_t flags);
120 
137 trace_return_t setCompress (int val);
138 
154 trace_return_t addContType (const char* alias, const char* contType,
155  const char* name);
156 
172 trace_return_t addStateType (const char* alias, const char* contType,
173  const char* name);
174 
190 trace_return_t addEventType (const char* alias, const char* contType,
191  const char* name);
192 
212 trace_return_t addLinkType (const char* alias , const char* name,
213  const char* contType, const char* srcContType,
214  const char* destContType);
215 
231 trace_return_t addVarType (const char* alias , const char* name,
232  const char* contType);
233 
248 trace_return_t addEntityValue (const char* alias, const char* entType,
249  const char* name , gtg_color_t p_color);
250 
269 trace_return_t addContainer (varPrec time, const char* alias ,
270  const char* type, const char* container,
271  const char* name, const char* file);
272 
285 trace_return_t destroyContainer (varPrec time, const char* name,
286  const char* type);
287 
302 trace_return_t setState (varPrec time, const char* type,
303  const char* cont, const char* val);
304 
319 trace_return_t pushState (varPrec time, const char* type,
320  const char* cont, const char* val);
321 
334 trace_return_t popState (varPrec time, const char* type,
335  const char* cont);
336 
351 trace_return_t addEvent (varPrec time, const char* type,
352  const char* cont, const char* val);
353 
374 trace_return_t startLink (varPrec time, const char* type,
375  const char* cont, const char* src,
376  const char* dest, const char* val,
377  const char* key);
378 
399 trace_return_t endLink (varPrec time, const char* type,
400  const char* cont, const char* src,
401  const char* dest, const char* val,
402  const char* key);
403 
418 trace_return_t setVar (varPrec time, const char* type,
419  const char* cont, varPrec val);
420 
435 trace_return_t addVar (varPrec time, const char* type,
436  const char* cont, varPrec val);
437 
453 trace_return_t subVar (varPrec time, const char* type,
454  const char* cont, varPrec val);
455 
465 trace_return_t AddComment (const char* comment);
466 #endif /* _GTG_BASIC_H_ */
trace_return_t popState(varPrec time, const char *type, const char *cont)
Revert the State of a Container to its previous value.
trace_return_t addEvent(varPrec time, const char *type, const char *cont, const char *val)
Add an Event.
trace_return_t endLink(varPrec time, const char *type, const char *cont, const char *src, const char *dest, const char *val, const char *key)
End a Link.
Definition: GTGBasic.h:66
double varPrec
Use the double precision type for time and value.
Definition: GTGTypes.h:28
trace_return_t addContainer(varPrec time, const char *alias, const char *type, const char *container, const char *name, const char *file)
Add a Container.
trace_return_t initTrace(const char *filename, int rank, gtg_flag_t flags)
Initialize a trace.
trace_return_t addStateType(const char *alias, const char *contType, const char *name)
Add a State Type.
enum traceType traceType_t
uint8_t gtg_flag_t
Flags that can be specified to GTG.
Definition: GTG_EZTrace.h:51
trace_return_t endTrace()
Finalize a trace.
trace_return_t addLinkType(const char *alias, const char *name, const char *contType, const char *srcContType, const char *destContType)
Add a Link Type.
trace_return_t pushState(varPrec time, const char *type, const char *cont, const char *val)
Save the current State on a stack and change the State of a Container.
trace_return_t subVar(varPrec time, const char *type, const char *cont, varPrec val)
trace_return_t
Define various return values.
Definition: GTGTypes.h:35
trace_return_t addEventType(const char *alias, const char *contType, const char *name)
Add an Event Type.
trace_return_t addEntityValue(const char *alias, const char *entType, const char *name, gtg_color_t p_color)
Add an Entity Value.
Definition: GTGBasic.h:67
trace_return_t setCompress(int val)
Enable trace compression (only available for OTF traces).
Definition: GTGBasic.h:65
trace_return_t setVar(varPrec time, const char *type, const char *cont, varPrec val)
Set a Variable value.
This file defines some useful colors to use in entity values for GTG.
trace_return_t startLink(varPrec time, const char *type, const char *cont, const char *src, const char *dest, const char *val, const char *key)
Start a Link.
This structure defines a color that can be used by GTG.
Definition: GTGColor.h:25
trace_return_t setState(varPrec time, const char *type, const char *cont, const char *val)
Set the State of a Container.
void setTraceType(traceType_t type)
Set the type of output trace.
uint8_t gtg_flag_t
Flags that can be specified to GTG.
Definition: GTGBasic.h:51
trace_return_t addVarType(const char *alias, const char *name, const char *contType)
Add a Variable Type.
trace_return_t destroyContainer(varPrec time, const char *name, const char *type)
Destroy a Container.
trace_return_t addContType(const char *alias, const char *contType, const char *name)
Add a Container Type.
char * getName(int procRk)
To get the name of the file to give to the addCont function for processors.
traceType_t getTraceType()
Get the type of the output trace.
enum traceType traceType_t
int bufferedModeActivated()
Check wether the buffered-mode is activated.
traceType
The type of the output trace.
Definition: GTG_EZTrace.h:64
Definition: GTGBasic.h:68
trace_return_t addVar(varPrec time, const char *type, const char *cont, varPrec val)
trace_return_t AddComment(const char *comment)
gtg-trace-0.2-2+dfsg/doc/html/html/GTGColor_8h.html000066400000000000000000001013271234554746700217150ustar00rootroot00000000000000 Generic Trace Generator (GTG): GTGColor.h File Reference
Generic Trace Generator (GTG)  0.1
GTGColor.h File Reference

This file defines some useful colors to use in entity values for GTG. More...

#include <stdint.h>

Go to the source code of this file.

Data Structures

struct  gtg_color
 This structure defines a color that can be used by GTG. More...
 

Macros

#define GTG_COLOR_BLUE_POS   0
 
#define GTG_COLOR_GREEN_POS   8
 
#define GTG_COLOR_RED_POS   16
 
#define GTG_COLOR_BLUE_MASK   (0x000000ff << GTG_COLOR_BLUE_POS)
 
#define GTG_COLOR_GREEN_MASK   (0x000000ff << GTG_COLOR_GREEN_POS)
 
#define GTG_COLOR_RED_MASK   (0x000000ff << GTG_COLOR_RED_POS)
 

Typedefs

typedef uint32_t gtg_rgb_color_t
 
typedef struct gtg_colorgtg_color_t
 

Functions

static uint8_t GTG_COLOR_GET_BLUE (gtg_rgb_color_t rgb)
 Return the 1-byte value of the blue component of a rgb color. More...
 
static uint8_t GTG_COLOR_GET_GREEN (gtg_rgb_color_t rgb)
 Return the 1-byte value of the green component of a rgb color. More...
 
static uint8_t GTG_COLOR_GET_RED (gtg_rgb_color_t rgb)
 Return the 1-byte value of the red component of a rgb color. More...
 
static gtg_rgb_color_t GTG_COLOR_SET_COLOR (uint8_t r, uint8_t g, uint8_t b)
 Return the 4-bytes RGB color from 3 1-byte components. More...
 
void gtg_color_init ()
 
void gtg_color_exit ()
 
gtg_color_t gtg_color_create (const char *name, uint8_t r, uint8_t g, uint8_t b)
 
void gtg_color_free (gtg_color_t color)
 

Variables

gtg_color_t GTG_BLACK
 Default black color. (R,G,B) = (0, 0, 0) More...
 
gtg_color_t GTG_RED
 Default red color. (R,G,B) = (255, 0, 0) More...
 
gtg_color_t GTG_GREEN
 Default green color. (R,G,B) = (0, 255, 0) More...
 
gtg_color_t GTG_BLUE
 Default blue color. (R,G,B) = (0, 0, 255) More...
 
gtg_color_t GTG_WHITE
 Default white color. (R,G,B) = (255, 255, 255) More...
 
gtg_color_t GTG_TEAL
 Default teal color. (R,G,B) = (0, 255, 255) More...
 
gtg_color_t GTG_DARKGREY
 Default dark grey color. (R,G,B) = (85, 85, 85) More...
 
gtg_color_t GTG_YELLOW
 Default yellow color. (R,G,B) = (255, 255, 0) More...
 
gtg_color_t GTG_PURPLE
 Default purple color. (R,G,B) = (153, 25, 230) More...
 
gtg_color_t GTG_LIGHTBROWN
 Default light brown color. (R,G,B) = (170, 130, 130) More...
 
gtg_color_t GTG_LIGHTGREY
 Default light grey color. (R,G,B) = (200, 200, 200) More...
 
gtg_color_t GTG_DARKBLUE
 Default dark blue color. (R,G,B) = (0, 0, 80) More...
 
gtg_color_t GTG_PINK
 Default pink color. (R,G,B) = (255, 0, 255) More...
 
gtg_color_t GTG_DARKPINK
 Default dark pink color. (R,G,B) = (180, 80, 180) More...
 
gtg_color_t GTG_SEABLUE
 Default sea blue color. (R,G,B) = (25, 128, 200) More...
 
gtg_color_t GTG_KAKI
 Default kaki color. (R,G,B) = (80, 100, 25) More...
 
gtg_color_t GTG_REDBLOOD
 Default red blood color. (R,G,B) = (200, 25, 25) More...
 
gtg_color_t GTG_BROWN
 Default brown color. (R,G,B) = (100, 25, 25) More...
 
gtg_color_t GTG_GRENAT
 Default grenat color. (R,G,B) = (100, 0, 80) More...
 
gtg_color_t GTG_ORANGE
 Default orange color. (R,G,B) = (255, 160, 0) More...
 
gtg_color_t GTG_MAUVE
 Default mauve color. (R,G,B) = (128, 0, 255) More...
 
gtg_color_t GTG_LIGHTPINK
 Default light pink color. (R,G,B) = (255, 128, 255) More...
 

Detailed Description

This file defines some useful colors to use in entity values for GTG.

Version
0.1

Macro Definition Documentation

#define GTG_COLOR_BLUE_MASK   (0x000000ff << GTG_COLOR_BLUE_POS)
#define GTG_COLOR_BLUE_POS   0
#define GTG_COLOR_GREEN_MASK   (0x000000ff << GTG_COLOR_GREEN_POS)
#define GTG_COLOR_GREEN_POS   8
#define GTG_COLOR_RED_MASK   (0x000000ff << GTG_COLOR_RED_POS)
#define GTG_COLOR_RED_POS   16

Typedef Documentation

typedef struct gtg_color* gtg_color_t

Function Documentation

gtg_color_t gtg_color_create ( const char *  name,
uint8_t  r,
uint8_t  g,
uint8_t  b 
)
void gtg_color_exit ( )
void gtg_color_free ( gtg_color_t  color)
void gtg_color_init ( )
gtg-trace-0.2-2+dfsg/doc/html/html/GTGColor_8h_source.html000066400000000000000000001024201234554746700232700ustar00rootroot00000000000000 Generic Trace Generator (GTG): GTGColor.h Source File
Generic Trace Generator (GTG)  0.1
GTGColor.h
Go to the documentation of this file.
1 
9 #ifndef _GTGCOLOR_H_
10 #define _GTGCOLOR_H_
11 
12 #include <stdint.h>
13 
19 
25 struct gtg_color {
27  char* color_name;
30 };
31 typedef struct gtg_color* gtg_color_t;
32 
33 /* In a 4-byte value, the first byte corresponds to blue,
34  * the second to green, the third to red. The 4th byte is
35  * unused (for now). ie. a color is represented as follows:
36  * 0x00rrggbb
37  */
38 #define GTG_COLOR_BLUE_POS 0
39 #define GTG_COLOR_GREEN_POS 8
40 #define GTG_COLOR_RED_POS 16
41 
42 #define GTG_COLOR_BLUE_MASK (0x000000ff << GTG_COLOR_BLUE_POS)
43 #define GTG_COLOR_GREEN_MASK (0x000000ff << GTG_COLOR_GREEN_POS)
44 #define GTG_COLOR_RED_MASK (0x000000ff << GTG_COLOR_RED_POS)
45 
51 static inline uint8_t
53 {
54  return (((rgb) & GTG_COLOR_BLUE_MASK) >> GTG_COLOR_BLUE_POS );
55 }
56 
62 static inline uint8_t
64 {
65  return (((rgb) & GTG_COLOR_GREEN_MASK) >> GTG_COLOR_GREEN_POS);
66 }
67 
73 static inline uint8_t
75 {
76  return (((rgb) & GTG_COLOR_RED_MASK) >> GTG_COLOR_RED_POS );
77 }
78 
79 
85 static inline gtg_rgb_color_t
86 GTG_COLOR_SET_COLOR(uint8_t r, uint8_t g, uint8_t b)
87 {
88  return ((r << GTG_COLOR_RED_POS) |
89  (g << GTG_COLOR_GREEN_POS) |
90  (b << GTG_COLOR_BLUE_POS));
91 }
92 
93 
99 extern gtg_color_t GTG_BLACK;
100 
106 extern gtg_color_t GTG_RED;
107 
113 extern gtg_color_t GTG_GREEN;
114 
120 extern gtg_color_t GTG_BLUE;
121 
127 extern gtg_color_t GTG_WHITE;
128 
134 extern gtg_color_t GTG_TEAL;
135 
141 extern gtg_color_t GTG_DARKGREY;
142 
148 extern gtg_color_t GTG_YELLOW;
149 
155 extern gtg_color_t GTG_PURPLE;
156 
162 extern gtg_color_t GTG_LIGHTBROWN;
163 
169 extern gtg_color_t GTG_LIGHTGREY;
170 
176 extern gtg_color_t GTG_DARKBLUE;
177 
183 extern gtg_color_t GTG_PINK;
184 
190 extern gtg_color_t GTG_DARKPINK;
191 
197 extern gtg_color_t GTG_SEABLUE;
198 
204 extern gtg_color_t GTG_KAKI;
205 
211 extern gtg_color_t GTG_REDBLOOD;
212 
218 extern gtg_color_t GTG_BROWN;
219 
225 extern gtg_color_t GTG_GRENAT;
226 
232 extern gtg_color_t GTG_ORANGE;
233 
239 extern gtg_color_t GTG_MAUVE;
240 
246 extern gtg_color_t GTG_LIGHTPINK;
247 
248 void gtg_color_init();
249 void gtg_color_exit();
250 
251 gtg_color_t gtg_color_create( const char *name, uint8_t r, uint8_t g, uint8_t b);
252 void gtg_color_free(gtg_color_t color);
253 
254 #endif /* _GTGCOLOR_H_ */
gtg_color_t GTG_BROWN
Default brown color. (R,G,B) = (100, 25, 25)
gtg_color_t GTG_DARKBLUE
Default dark blue color. (R,G,B) = (0, 0, 80)
otf2_id_t uint32_t
Definition: GTGOTF2_Structs.h:32
gtg_color_t GTG_PURPLE
Default purple color. (R,G,B) = (153, 25, 230)
void gtg_color_free(gtg_color_t color)
gtg_color_t GTG_BLUE
Default blue color. (R,G,B) = (0, 0, 255)
gtg_color_t GTG_LIGHTGREY
Default light grey color. (R,G,B) = (200, 200, 200)
gtg_color_t GTG_DARKPINK
Default dark pink color. (R,G,B) = (180, 80, 180)
char * color_name
Definition: GTGColor.h:27
static gtg_rgb_color_t GTG_COLOR_SET_COLOR(uint8_t r, uint8_t g, uint8_t b)
Return the 4-bytes RGB color from 3 1-byte components.
Definition: GTGColor.h:86
gtg_color_t GTG_DARKGREY
Default dark grey color. (R,G,B) = (85, 85, 85)
gtg_color_t GTG_BLACK
Default black color. (R,G,B) = (0, 0, 0)
gtg_color_t GTG_TEAL
Default teal color. (R,G,B) = (0, 255, 255)
gtg_color_t GTG_KAKI
Default kaki color. (R,G,B) = (80, 100, 25)
struct gtg_color * gtg_color_t
Definition: GTGColor.h:31
static uint8_t GTG_COLOR_GET_BLUE(gtg_rgb_color_t rgb)
Return the 1-byte value of the blue component of a rgb color.
Definition: GTGColor.h:52
gtg_color_t GTG_ORANGE
Default orange color. (R,G,B) = (255, 160, 0)
#define GTG_COLOR_GREEN_MASK
Definition: GTGColor.h:43
gtg_color_t GTG_PINK
Default pink color. (R,G,B) = (255, 0, 255)
gtg_color_t GTG_RED
Default red color. (R,G,B) = (255, 0, 0)
#define GTG_COLOR_GREEN_POS
Definition: GTGColor.h:39
gtg_color_t GTG_MAUVE
Default mauve color. (R,G,B) = (128, 0, 255)
gtg_color_t GTG_GREEN
Default green color. (R,G,B) = (0, 255, 0)
static uint8_t GTG_COLOR_GET_GREEN(gtg_rgb_color_t rgb)
Return the 1-byte value of the green component of a rgb color.
Definition: GTGColor.h:63
gtg_color_t gtg_color_create(const char *name, uint8_t r, uint8_t g, uint8_t b)
gtg_color_t GTG_YELLOW
Default yellow color. (R,G,B) = (255, 255, 0)
gtg_color_t GTG_GRENAT
Default grenat color. (R,G,B) = (100, 0, 80)
#define GTG_COLOR_RED_MASK
Definition: GTGColor.h:44
#define GTG_COLOR_BLUE_POS
Definition: GTGColor.h:38
This structure defines a color that can be used by GTG.
Definition: GTGColor.h:25
uint32_t gtg_rgb_color_t
Definition: GTGColor.h:18
#define GTG_COLOR_RED_POS
Definition: GTGColor.h:40
void gtg_color_init()
gtg_color_t GTG_REDBLOOD
Default red blood color. (R,G,B) = (200, 25, 25)
gtg_color_t GTG_WHITE
Default white color. (R,G,B) = (255, 255, 255)
static uint8_t GTG_COLOR_GET_RED(gtg_rgb_color_t rgb)
Return the 1-byte value of the red component of a rgb color.
Definition: GTGColor.h:74
void gtg_color_exit()
gtg_color_t GTG_LIGHTPINK
Default light pink color. (R,G,B) = (255, 128, 255)
gtg_color_t GTG_SEABLUE
Default sea blue color. (R,G,B) = (25, 128, 200)
#define GTG_COLOR_BLUE_MASK
Definition: GTGColor.h:42
gtg_rgb_color_t rgb
Definition: GTGColor.h:28
gtg_color_t GTG_LIGHTBROWN
Default light brown color. (R,G,B) = (170, 130, 130)
gtg-trace-0.2-2+dfsg/doc/html/html/GTGCompress_8h.html000066400000000000000000000435071234554746700224370ustar00rootroot00000000000000 Generic Trace Generator (GTG): GTGCompress.h File Reference
Generic Trace Generator (GTG)  0.1
GTGCompress.h File Reference
#include <stdint.h>
#include <stdio.h>
#include <zlib.h>

Go to the source code of this file.

Functions

int gtg_compress_m2m (z_stream *z, void *in_buf, uint32_t len, void *out_buf, uint32_t out_max_len)
 
int gtg_compress_m2f (z_stream *z, void *in_buf, uint32_t len, FILE *file_out)
 
int gtg_compress_f2m (z_stream *z, FILE *file_in, void *out_buf, uint32_t out_max_len)
 
int gtg_compress_f2f (z_stream *z, FILE *file_in, FILE *file_out)
 
int gtg_decompress_m2m (z_stream *z, void *in_buf, uint32_t len, void *out_buf, uint32_t out_max_len)
 
int gtg_decompress_m2f (z_stream *z, void *in_buf, uint32_t len, FILE *file_out)
 
int gtg_decompress_f2m (z_stream *z, FILE *file_in, void *out_buf, uint32_t out_max_len)
 
int gtg_decompress_f2f (z_stream *z, FILE *file_in, FILE *file_out)
 
int gtg_compress_init (z_stream *z, int compression_ratio)
 
int gtg_decompress_init (z_stream *z)
 

Function Documentation

int gtg_compress_f2f ( z_stream *  z,
FILE *  file_in,
FILE *  file_out 
)
int gtg_compress_f2m ( z_stream *  z,
FILE *  file_in,
void *  out_buf,
uint32_t  out_max_len 
)
int gtg_compress_init ( z_stream *  z,
int  compression_ratio 
)
int gtg_compress_m2f ( z_stream *  z,
void *  in_buf,
uint32_t  len,
FILE *  file_out 
)
int gtg_compress_m2m ( z_stream *  z,
void *  in_buf,
uint32_t  len,
void *  out_buf,
uint32_t  out_max_len 
)
int gtg_decompress_f2f ( z_stream *  z,
FILE *  file_in,
FILE *  file_out 
)
int gtg_decompress_f2m ( z_stream *  z,
FILE *  file_in,
void *  out_buf,
uint32_t  out_max_len 
)
int gtg_decompress_init ( z_stream *  z)
int gtg_decompress_m2f ( z_stream *  z,
void *  in_buf,
uint32_t  len,
FILE *  file_out 
)
int gtg_decompress_m2m ( z_stream *  z,
void *  in_buf,
uint32_t  len,
void *  out_buf,
uint32_t  out_max_len 
)
gtg-trace-0.2-2+dfsg/doc/html/html/GTGCompress_8h_source.html000066400000000000000000000264041234554746700240140ustar00rootroot00000000000000 Generic Trace Generator (GTG): GTGCompress.h Source File
Generic Trace Generator (GTG)  0.1
GTGCompress.h
Go to the documentation of this file.
1 #ifndef GTG_COMPRESS_H
2 #define GTG_COMPRESS_H
3 
4 #include <stdint.h>
5 #include <stdio.h>
6 #include <zlib.h>
7 
8 /* compress a buffer into another buffer */
9 int gtg_compress_m2m(z_stream *z, void* in_buf, uint32_t len, void* out_buf, uint32_t out_max_len);
10 /* compress a buffer and save the result in a file */
11 int gtg_compress_m2f(z_stream *z, void* in_buf, uint32_t len, FILE* file_out);
12 /* compress a file into a buffer */
13 int gtg_compress_f2m(z_stream *z, FILE* file_in, void* out_buf, uint32_t out_max_len);
14 /* compress a file into another file */
15 int gtg_compress_f2f(z_stream *z, FILE* file_in, FILE* file_out);
16 
17 /* save functions for decompression */
18 int gtg_decompress_m2m(z_stream *z, void* in_buf, uint32_t len, void* out_buf, uint32_t out_max_len);
19 int gtg_decompress_m2f(z_stream *z, void* in_buf, uint32_t len, FILE* file_out);
20 int gtg_decompress_f2m(z_stream *z, FILE* file_in, void* out_buf, uint32_t out_max_len);
21 int gtg_decompress_f2f(z_stream *z, FILE* file_in, FILE* file_out);
22 
23 int gtg_compress_init(z_stream *z, int compression_ratio);
24 int gtg_decompress_init(z_stream *z);
25 
26 #endif /* GTG_COMPRESS_H */
otf2_id_t uint32_t
Definition: GTGOTF2_Structs.h:32
int gtg_decompress_m2m(z_stream *z, void *in_buf, uint32_t len, void *out_buf, uint32_t out_max_len)
int gtg_decompress_m2f(z_stream *z, void *in_buf, uint32_t len, FILE *file_out)
int gtg_compress_f2m(z_stream *z, FILE *file_in, void *out_buf, uint32_t out_max_len)
int gtg_compress_init(z_stream *z, int compression_ratio)
int gtg_compress_m2f(z_stream *z, void *in_buf, uint32_t len, FILE *file_out)
int gtg_decompress_init(z_stream *z)
int gtg_compress_m2m(z_stream *z, void *in_buf, uint32_t len, void *out_buf, uint32_t out_max_len)
int gtg_decompress_f2f(z_stream *z, FILE *file_in, FILE *file_out)
int gtg_compress_f2f(z_stream *z, FILE *file_in, FILE *file_out)
int gtg_decompress_f2m(z_stream *z, FILE *file_in, void *out_buf, uint32_t out_max_len)
gtg-trace-0.2-2+dfsg/doc/html/html/GTGList_8h.html000066400000000000000000001021401234554746700215440ustar00rootroot00000000000000 Generic Trace Generator (GTG): GTGList.h File Reference
Generic Trace Generator (GTG)  0.1
GTGList.h File Reference

Go to the source code of this file.

Data Structures

struct  gtg_list
 

Macros

#define GTG_LIST_INIT(ptr)
 initialize a list. More...
 
#define GTG_LIST(name)
 declare and initialize a list. More...
 
#define gtg_list_entry(ptr, type, member)   ((type *)((char *)(ptr) - (char *)(&((type *)0)->member)))
 get the structure corresponding to a list entry More...
 
#define gtg_list_for_each(pos, head)   for (pos = (head)->next; pos != (head); pos = pos->next)
 
#define gtg_list_for_each_reverse(pos, head)   for (pos = (head)->prev; pos != (head); pos = pos->prev)
 
#define gtg_list_for_each_safe(pos, n, head)
 
#define gtg_list_for_each_entry(pos, head, member)
 iterate over list of given type More...
 
#define gtg_list_for_each_entry_safe(pos, n, head, member)
 iterate over list of given type safe against removal of list entry More...
 

Typedefs

typedef struct gtg_listgtg_list_t
 

Functions

static void __gtg_list_add (gtg_list_t lnew, gtg_list_t prev, gtg_list_t next)
 
static void gtg_list_add (gtg_list_t lnew, gtg_list_t head)
 Insert a new entry after the specified head. More...
 
static void gtg_list_add_tail (gtg_list_t lnew, gtg_list_t head)
 Insert a new entry before the specified head (ie. at the tail of the list). More...
 
static void __gtg_list_del (gtg_list_t prev, gtg_list_t next)
 
static void gtg_list_del (gtg_list_t entry)
 delete an entry from its list and reinitialize it. More...
 
static int gtg_list_size (gtg_list_t l)
 

Macro Definition Documentation

GTG_LIST (   name)
Value:
struct gtg_list name; \
Definition: GTGList.h:4
#define GTG_LIST_INIT(ptr)
initialize a list.
Definition: GTGList.h:16

declare and initialize a list.

Parameters
nameName of the variable
gtg_list_entry (   ptr,
  type,
  member 
)    ((type *)((char *)(ptr) - (char *)(&((type *)0)->member)))

get the structure corresponding to a list entry

Parameters
ptrpointer to the list entry (gtg_list_t)
typethe type of the struct this is embedded in.
memberthe name of the struct gtg_list member within the struct.
#define gtg_list_for_each (   pos,
  head 
)    for (pos = (head)->next; pos != (head); pos = pos->next)
#define gtg_list_for_each_entry (   pos,
  head,
  member 
)
Value:
for (pos = gtg_list_entry((head)->next, typeof(*pos), member); \
&pos->member != (head); \
pos = gtg_list_entry(pos->member.next, typeof(*pos), member))
#define gtg_list_entry(ptr, type, member)
get the structure corresponding to a list entry
Definition: GTGList.h:39
struct gtg_list * next
Definition: GTGList.h:6

iterate over list of given type

gtg_list_for_each_entry(pos, head, member)

Parameters
posthe type * to use as a loop counter.
headthe head for the list.
memberthe name of the struct gtg_list member within the struct.
#define gtg_list_for_each_entry_safe (   pos,
  n,
  head,
  member 
)
Value:
for (pos = gtg_list_entry((head)->next, typeof(*pos), member), \
n = gtg_list_entry(pos->member.next, typeof(*pos), member); \
&pos->member != (head); \
pos = n, n = gtg_list_entry(n->member.next, typeof(*n), member))
#define gtg_list_entry(ptr, type, member)
get the structure corresponding to a list entry
Definition: GTGList.h:39
struct gtg_list * next
Definition: GTGList.h:6

iterate over list of given type safe against removal of list entry

gtg_list_for_each_entry_safe(pos, n, head, member)

Parameters
posthe type * to use as a loop counter.
nanother type * to use as temporary storage
headthe head for the list.
memberthe name of the struct gtg_list member within the struct.
#define gtg_list_for_each_reverse (   pos,
  head 
)    for (pos = (head)->prev; pos != (head); pos = pos->prev)
#define gtg_list_for_each_safe (   pos,
  n,
  head 
)
Value:
for (pos = (head)->next, n = pos->next; pos != (head); \
pos = n, n = pos->next)
struct gtg_list * next
Definition: GTGList.h:6
GTG_LIST_INIT (   ptr)
Value:
do { \
(ptr)->prev = (ptr); \
(ptr)->next = (ptr); \
} while(0)
struct gtg_list * prev
Definition: GTGList.h:5
struct gtg_list * next
Definition: GTGList.h:6

initialize a list.

Parameters
ptrpointer to the list (gtg_list_t).

Typedef Documentation

typedef struct gtg_list* gtg_list_t

Function Documentation

static void __gtg_list_add ( gtg_list_t  lnew,
gtg_list_t  prev,
gtg_list_t  next 
)
inlinestatic
static void __gtg_list_del ( gtg_list_t  prev,
gtg_list_t  next 
)
inlinestatic

Delete a list entry by making the prev/next entries point to each other.

This is only for internal list manipulation where we know the prev/next entries already!

void gtg_list_add ( gtg_list_t  lnew,
gtg_list_t  head 
)
inlinestatic

Insert a new entry after the specified head.

Parameters
lnewnew entry to be added
headlist head to add it after
void gtg_list_add_tail ( gtg_list_t  lnew,
gtg_list_t  head 
)
inlinestatic

Insert a new entry before the specified head (ie. at the tail of the list).

Parameters
lnewnew entry to be added
headlist head to add it after
void gtg_list_del ( gtg_list_t  entry)
inlinestatic

delete an entry from its list and reinitialize it.

Parameters
entrythe element to delete from the list.
static int gtg_list_size ( gtg_list_t  l)
inlinestatic
gtg-trace-0.2-2+dfsg/doc/html/html/GTGList_8h_source.html000066400000000000000000000556221234554746700231400ustar00rootroot00000000000000 Generic Trace Generator (GTG): GTGList.h Source File
Generic Trace Generator (GTG)  0.1
GTGList.h
Go to the documentation of this file.
1 #ifndef GTG_LIST_H
2 #define GTG_LIST_H
3 
4 struct gtg_list {
5  struct gtg_list *prev;
6  struct gtg_list *next;
7 };
8 
9 typedef struct gtg_list* gtg_list_t;
10 
16 #define GTG_LIST_INIT(ptr) \
17  do { \
18  (ptr)->prev = (ptr); \
19  (ptr)->next = (ptr); \
20  } while(0)
21 
27 #define GTG_LIST(name) \
28  struct gtg_list name; \
29  GTG_LIST_INIT(&name)
30 
31 
39 #define gtg_list_entry(ptr, type, member) \
40  ((type *)((char *)(ptr) - (char *)(&((type *)0)->member)))
41 
42 
43 /*
44  * Insert a new entry between two known consecutive entries.
45  *
46  * This is only for internal list manipulation where we know
47  * the prev/next entries already!
48  */
49 static inline void __gtg_list_add(gtg_list_t lnew,
50  gtg_list_t prev,
51  gtg_list_t next)
52 {
53  next->prev = lnew;
54  lnew->next = next;
55  lnew->prev = prev;
56  prev->next = lnew;
57 }
58 
65 static inline void gtg_list_add(gtg_list_t lnew, gtg_list_t head)
66 {
67  __gtg_list_add(lnew, head, head->next);
68 }
69 
76 static inline void gtg_list_add_tail(gtg_list_t lnew, gtg_list_t head)
77 {
78  __gtg_list_add(lnew, head->prev, head);
79 }
80 
88 static inline void __gtg_list_del(gtg_list_t prev, gtg_list_t next)
89 {
90  next->prev = prev;
91  prev->next = next;
92 }
93 
99 static inline void gtg_list_del(gtg_list_t entry)
100 {
101  __gtg_list_del(entry->prev, entry->next);
102  GTG_LIST_INIT(entry);
103 }
104 
105 
112 #define gtg_list_for_each(pos, head) \
113  for (pos = (head)->next; pos != (head); pos = pos->next)
114 
121 #define gtg_list_for_each_reverse(pos, head) \
122  for (pos = (head)->prev; pos != (head); pos = pos->prev)
123 
131 #define gtg_list_for_each_safe(pos, n, head) \
132  for (pos = (head)->next, n = pos->next; pos != (head); \
133  pos = n, n = pos->next)
134 
135 
136 
144 #define gtg_list_for_each_entry(pos, head, member) \
145  for (pos = gtg_list_entry((head)->next, typeof(*pos), member); \
146  &pos->member != (head); \
147  pos = gtg_list_entry(pos->member.next, typeof(*pos), member))
148 
157 #define gtg_list_for_each_entry_safe(pos, n, head, member) \
158  for (pos = gtg_list_entry((head)->next, typeof(*pos), member), \
159  n = gtg_list_entry(pos->member.next, typeof(*pos), member); \
160  &pos->member != (head); \
161  pos = n, n = gtg_list_entry(n->member.next, typeof(*n), member))
162 
163 
164 static inline int gtg_list_size(gtg_list_t l)
165 {
166  int res = 0;
167  gtg_list_t ptr = NULL;
168  gtg_list_for_each(ptr, l)
169  res++;
170 
171  return res;
172 }
173 
174 #endif /* GTG_LIST_H */
Definition: GTGList.h:4
#define GTG_LIST_INIT(ptr)
initialize a list.
Definition: GTGList.h:16
#define gtg_list_for_each(pos, head)
Definition: GTGList.h:112
static void __gtg_list_del(gtg_list_t prev, gtg_list_t next)
Definition: GTGList.h:88
struct gtg_list * prev
Definition: GTGList.h:5
static void __gtg_list_add(gtg_list_t lnew, gtg_list_t prev, gtg_list_t next)
Definition: GTGList.h:49
static void gtg_list_del(gtg_list_t entry)
delete an entry from its list and reinitialize it.
Definition: GTGList.h:99
struct gtg_list * gtg_list_t
Definition: GTGList.h:9
struct gtg_list * next
Definition: GTGList.h:6
static void gtg_list_add(gtg_list_t lnew, gtg_list_t head)
Insert a new entry after the specified head.
Definition: GTGList.h:65
static int gtg_list_size(gtg_list_t l)
Definition: GTGList.h:164
static void gtg_list_add_tail(gtg_list_t lnew, gtg_list_t head)
Insert a new entry before the specified head (ie. at the tail of the list).
Definition: GTGList.h:76
gtg-trace-0.2-2+dfsg/doc/html/html/GTGMemory_8h.html000066400000000000000000000152551234554746700221130ustar00rootroot00000000000000 Generic Trace Generator (GTG): GTGMemory.h File Reference
Generic Trace Generator (GTG)  0.1
GTGMemory.h File Reference

This file defines a fast allocator for fixed-size blocks. More...

#include <stdlib.h>

Go to the source code of this file.

Data Structures

struct  gtg_memory
 

Typedefs

typedef struct gtg_memorygtg_memory_t
 

Functions

void gtg_block_memory_init (gtg_memory_t *memory, size_t block_size, long initial_block_number)
 Initialize the allocator. More...
 
void * gtg_block_malloc (gtg_memory_t memory)
 Allocate a block of data. More...
 
void gtg_block_free (gtg_memory_t memory, void *ptr)
 Free a block of data. More...
 

Detailed Description

This file defines a fast allocator for fixed-size blocks.

Version
0.1

Typedef Documentation

typedef struct gtg_memory* gtg_memory_t
gtg-trace-0.2-2+dfsg/doc/html/html/GTGMemory_8h_source.html000066400000000000000000000253701234554746700234720ustar00rootroot00000000000000 Generic Trace Generator (GTG): GTGMemory.h Source File
Generic Trace Generator (GTG)  0.1
GTGMemory.h
Go to the documentation of this file.
1 
9 #ifndef GTG_MEMORY_H
10 #define GTG_MEMORY_H
11 
12 #include <stdlib.h>
13 
14 
19 struct gtg_memory {
20  void *first_mem;
21  void *current_mem;
22  size_t block_len;
23  long mem_len;
24  void *first_free;
25  long first_new;
27 };
28 typedef struct gtg_memory *gtg_memory_t;
29 
38 void gtg_block_memory_init(gtg_memory_t *memory, size_t block_size, long initial_block_number);
39 
47 void* gtg_block_malloc(gtg_memory_t memory);
48 
57 void gtg_block_free(gtg_memory_t memory, void *ptr);
58 
59 #endif
Definition: GTGMemory.h:19
struct gtg_memory * gtg_memory_t
Definition: GTGMemory.h:28
void * first_mem
Definition: GTGMemory.h:20
long nb_allocated
Definition: GTGMemory.h:26
void gtg_block_memory_init(gtg_memory_t *memory, size_t block_size, long initial_block_number)
Initialize the allocator.
void * current_mem
Definition: GTGMemory.h:21
long mem_len
Definition: GTGMemory.h:23
size_t block_len
Definition: GTGMemory.h:22
long first_new
Definition: GTGMemory.h:25
void * first_free
Definition: GTGMemory.h:24
void * gtg_block_malloc(gtg_memory_t memory)
Allocate a block of data.
void gtg_block_free(gtg_memory_t memory, void *ptr)
Free a block of data.
gtg-trace-0.2-2+dfsg/doc/html/html/GTGOTF2__Structs_8h.html000066400000000000000000002037011234554746700232360ustar00rootroot00000000000000 Generic Trace Generator (GTG): GTGOTF2_Structs.h File Reference
Generic Trace Generator (GTG)  0.1
GTGOTF2_Structs.h File Reference
#include <stdint.h>
#include "GTGList.h"
#include "GTGStack.h"

Go to the source code of this file.

Data Structures

struct  __OTF2_String
 
struct  StateType
 
struct  State
 
struct  ContainerType
 
struct  Container
 
struct  EntityValue
 
struct  EventType
 
struct  LinkType
 
struct  Link
 
struct  VariableType
 
struct  Variable
 
struct  otf_color
 

Macros

#define MAX_PROCESS   64
 
#define ContainerType_NIL   0
 
#define Container_NIL   0
 
#define StateType_NIL   0
 
#define State_NIL   0
 
#define EntityValue_NIL   0
 
#define EventType_NIL   0
 
#define LinkType_NIL   0
 
#define VariableType_NIL   0
 
#define Variable_NIL   0
 
#define init_OTF2_String(var)
 
#define init_StateType(var)
 
#define init_State(var)
 
#define init_ContainerType(var)
 
#define init_Container(var)
 
#define init_EntityValue(var)
 
#define init_EventType(var)
 
#define init_LinkType(var)
 
#define init_VariableType(var)
 
#define init_Variable(var)
 
#define alloc_struct(ptr, type, list_head)
 
#define alloc_init_struct(type, ptr, list_head, _name_, _alias_)
 
#define alloc_Variable(_ptr_, _id_, _parent_, _type_, _value_)
 
#define alloc_State(_ptr_, _value_, _cont_, _stateType_)
 
#define free_struct(_type_, _list_head_)
 

Typedefs

typedef otf2_id_t uint32_t
 
typedef struct StateType StateType_t
 
typedef struct State State_t
 
typedef struct ContainerType ContainerType_t
 
typedef struct Container Container_t
 
typedef struct EntityValue EntityValue_t
 
typedef struct EventType EventType_t
 
typedef struct LinkType LinkType_t
 
typedef struct Link Link_t
 
typedef struct VariableType VariableType_t
 
typedef struct Variable Variable_t
 
typedef struct otf_colorotf_color_t
 

Macro Definition Documentation

#define alloc_init_struct (   type,
  ptr,
  list_head,
  _name_,
  _alias_ 
)
Value:
do { \
alloc_struct(ptr, type, list_head); \
(ptr)->name = (char *)malloc(sizeof(char)*(strlen(_name_)+1)); \
strcpy((ptr)->name, _name_); \
(ptr)->alias = (char *)malloc(sizeof(char)*(strlen(_alias_)+1)); \
strcpy((ptr)->alias, _alias_); \
}while(0)
#define alloc_struct(ptr, type, list_head)
Definition: GTGOTF2_Structs.h:236
#define alloc_State (   _ptr_,
  _value_,
  _cont_,
  _stateType_ 
)
Value:
do { \
_ptr_ = (State_t*) malloc(sizeof(State_t)); \
init_State(*(_ptr_)); \
(_ptr_)->value = _value_; \
(_ptr_)->cont = _cont_; \
(_ptr_)->stateType = _stateType_; \
}while(0)
#define init_State(var)
Definition: GTGOTF2_Structs.h:160
Definition: GTGOTF2_Structs.h:44
#define alloc_struct (   ptr,
  type,
  list_head 
)
Value:
do { \
ptr = (type*) malloc(sizeof(type)); \
GTG_LIST_INIT(&(ptr->token)); \
ptr->id = (gtg_list_entry((list_head)->prev, type, token)->id) + 1; \
gtg_list_add_tail(&(ptr->token), list_head); \
} while(0)
#define GTG_LIST_INIT(ptr)
initialize a list.
Definition: GTGList.h:16
#define gtg_list_entry(ptr, type, member)
get the structure corresponding to a list entry
Definition: GTGList.h:39
struct gtg_list * prev
Definition: GTGList.h:5
static void gtg_list_add_tail(gtg_list_t lnew, gtg_list_t head)
Insert a new entry before the specified head (ie. at the tail of the list).
Definition: GTGList.h:76
#define alloc_Variable (   _ptr_,
  _id_,
  _parent_,
  _type_,
  _value_ 
)
Value:
do { \
(_ptr_) = (Variable_t*) malloc(sizeof(Variable_t)); \
init_Variable(*(_ptr_)); \
(_ptr_)->id = _id_; \
(_ptr_)->parent = _parent_; \
(_ptr_)->type = _type_; \
(_ptr_)->value = _value_; \
}while(0)
#define init_Variable(var)
Definition: GTGOTF2_Structs.h:226
Definition: GTGOTF2_Structs.h:117
#define Container_NIL   0
#define ContainerType_NIL   0
#define EntityValue_NIL   0
#define EventType_NIL   0
#define free_struct (   _type_,
  _list_head_ 
)
Value:
do{\
_type_ *ptr, *tmp; \
gtg_list_for_each_entry_safe(ptr, tmp, &(_list_head_).token, token) { \
gtg_list_del(&(ptr->token));\
free(ptr->name.name);\
free(ptr->alias);\
free(ptr);\
}\
}while(0)
static void gtg_list_del(gtg_list_t entry)
delete an entry from its list and reinitialize it.
Definition: GTGList.h:99
#define gtg_list_for_each_entry_safe(pos, n, head, member)
iterate over list of given type safe against removal of list entry
Definition: GTGList.h:157
#define init_Container (   var)
Value:
do { \
init_OTF2_String((var).name); \
init_OTF2_String((var).alias); \
(var).ctType = NULL; \
(var).id = Container_NIL; \
(var).parent = NULL; \
(var).ev_writer = NULL; \
GTG_LIST_INIT(&(var).token); \
GTG_STACK_INIT(&(var).state_stack.token); \
}while(0)
#define GTG_LIST_INIT(ptr)
initialize a list.
Definition: GTGList.h:16
#define init_OTF2_String(var)
Definition: GTGOTF2_Structs.h:144
#define Container_NIL
Definition: GTGOTF2_Structs.h:135
#define GTG_STACK_INIT(ptr)
Definition: GTGStack.h:9
#define init_ContainerType (   var)
Value:
do { \
init_OTF2_String((var).name); \
init_OTF2_String((var).alias); \
(var).id = ContainerType_NIL; \
GTG_LIST_INIT(&(var).token); \
}while(0)
#define GTG_LIST_INIT(ptr)
initialize a list.
Definition: GTGList.h:16
#define init_OTF2_String(var)
Definition: GTGOTF2_Structs.h:144
#define ContainerType_NIL
Definition: GTGOTF2_Structs.h:134
#define init_EntityValue (   var)
Value:
do { \
init_OTF2_String((var).name); \
init_OTF2_String((var).alias); \
(var).groupId = 0; \
(var).id = EntityValue_NIL; \
GTG_LIST_INIT(&(var).token); \
}while(0)
#define GTG_LIST_INIT(ptr)
initialize a list.
Definition: GTGList.h:16
#define init_OTF2_String(var)
Definition: GTGOTF2_Structs.h:144
#define EntityValue_NIL
Definition: GTGOTF2_Structs.h:138
#define init_EventType (   var)
Value:
do { \
init_OTF2_String((var).name); \
init_OTF2_String((var).alias); \
(var).contType = NULL; \
(var).id = EventType_NIL; \
GTG_LIST_INIT(&(var).token); \
}while(0)
#define GTG_LIST_INIT(ptr)
initialize a list.
Definition: GTGList.h:16
#define init_OTF2_String(var)
Definition: GTGOTF2_Structs.h:144
#define EventType_NIL
Definition: GTGOTF2_Structs.h:139
#define init_LinkType (   var)
Value:
do { \
init_OTF2_String((var).name); \
init_OTF2_String((var).alias); \
(var).contType = NULL; \
(var).srcType = NULL; \
(var).destType = NULL; \
(var).id = LinkType_NIL; \
GTG_LIST_INIT(&(var).token); \
}while(0)
#define GTG_LIST_INIT(ptr)
initialize a list.
Definition: GTGList.h:16
#define init_OTF2_String(var)
Definition: GTGOTF2_Structs.h:144
#define LinkType_NIL
Definition: GTGOTF2_Structs.h:140
#define init_OTF2_String (   var)
Value:
do { \
(var).id = -1; \
(var).name = NULL; \
} while(0)
#define init_State (   var)
Value:
do { \
(var).value = EntityValue_NIL; \
(var).cont = NULL; \
(var).stateType = NULL; \
GTG_STACK_INIT(&(var).token); \
}while(0)
#define GTG_STACK_INIT(ptr)
Definition: GTGStack.h:9
#define EntityValue_NIL
Definition: GTGOTF2_Structs.h:138
#define init_StateType (   var)
Value:
do { \
init_OTF2_String((var).name); \
init_OTF2_String((var).alias); \
(var).groupId = 0; \
(var).id = StateType_NIL; \
GTG_LIST_INIT(&(var).token); \
}while(0)
#define GTG_LIST_INIT(ptr)
initialize a list.
Definition: GTGList.h:16
#define init_OTF2_String(var)
Definition: GTGOTF2_Structs.h:144
#define StateType_NIL
Definition: GTGOTF2_Structs.h:136
#define init_Variable (   var)
Value:
do { \
(var).parent = NULL; \
(var).type = NULL; \
(var).value = 0; \
(var).id = Variable_NIL; \
GTG_LIST_INIT(&(var).token); \
}while(0)
#define GTG_LIST_INIT(ptr)
initialize a list.
Definition: GTGList.h:16
#define Variable_NIL
Definition: GTGOTF2_Structs.h:142
#define init_VariableType (   var)
Value:
do { \
init_OTF2_String((var).name); \
init_OTF2_String((var).alias); \
(var).contType = NULL; \
(var).id = VariableType_NIL; \
GTG_LIST_INIT(&(var).token); \
}while(0)
#define GTG_LIST_INIT(ptr)
initialize a list.
Definition: GTGList.h:16
#define init_OTF2_String(var)
Definition: GTGOTF2_Structs.h:144
#define VariableType_NIL
Definition: GTGOTF2_Structs.h:141
#define LinkType_NIL   0
#define MAX_PROCESS   64
#define State_NIL   0
#define StateType_NIL   0
#define Variable_NIL   0
#define VariableType_NIL   0

Typedef Documentation

typedef struct Container Container_t

Containers

typedef struct EntityValue EntityValue_t

EntityValue, contains the name of the functions/states

typedef struct EventType EventType_t

Events/Markers

typedef struct Link Link_t
typedef struct LinkType LinkType_t

Links/Messages

typedef struct otf_color* otf_color_t
typedef struct State State_t

States

typedef struct StateType StateType_t

StateTypes

typedef otf2_id_t uint32_t
typedef struct Variable Variable_t
typedef struct VariableType VariableType_t

Variables/Counters

gtg-trace-0.2-2+dfsg/doc/html/html/GTGOTF2__Structs_8h_source.html000066400000000000000000002340251234554746700246210ustar00rootroot00000000000000 Generic Trace Generator (GTG): GTGOTF2_Structs.h Source File
Generic Trace Generator (GTG)  0.1
GTGOTF2_Structs.h
Go to the documentation of this file.
1 
17 #ifndef _GTG_OTF2_STRUCTS_H_
18 #define _GTG_OTF2_STRUCTS_H_
19 
20 #include <stdint.h>
21 #include "GTGList.h"
22 #include "GTGStack.h"
23 
24 /* todo: remove this */
25 #define MAX_PROCESS 64
26 
27 typedef struct __OTF2_String {
29  char* name;
30 };
31 
32 typedef otf2_id_t uint32_t;
33 
35 typedef struct StateType { /* Func group */
38  int groupId;
39  otf2_id_t id;
40  struct gtg_list token; /* stored in the stateTypes list */
41 } StateType_t;
42 
44 typedef struct State {
48  gtg_stack token; /* stored in the states list */
49 } State_t;
50 
51 /* ContainerTypes */
52 typedef struct ContainerType {
55  otf2_id_t id;
57  struct gtg_list token; /* stored in the ctType list */
59 
61 typedef struct Container {
65  otf2_id_t id;
66  struct Container *parent;
67  struct gtg_list token; /* stored in the conts list */
69  OTF2_EvtWriter *evt_writer;
70 
71 } Container_t;
72 
74 typedef struct EntityValue {
77  int groupId;
78  otf2_id_t id;
79  struct gtg_list token; /* not used */
81 
83 typedef struct EventType {
87  otf2_id_t id;
88  struct gtg_list token; /* stored in the eventTypes list */
89 } EventType_t;
90 
92 typedef struct LinkType {
98  otf2_id_t id;
99  struct gtg_list token; /* stored in the linkTypes lisk */
100 } LinkType_t;
101 
102 typedef struct Link {
104  int src;
105 } Link_t;
106 
107 
109 typedef struct VariableType {
113  otf2_id_t id;
114  struct gtg_list token; /* stored in the variableTypes list */
116 
117 typedef struct Variable {
120  uint64_t value;
121  otf2_id_t id;
122  struct gtg_list token; /* stored in the variables list */
123 } Variable_t;
124 
125 struct otf_color {
126  char *colorID;
127  uint8_t red;
128  uint8_t green;
129  uint8_t blue;
130 };
131 
132 typedef struct otf_color* otf_color_t;
133 
134 #define ContainerType_NIL 0
135 #define Container_NIL 0
136 #define StateType_NIL 0
137 #define State_NIL 0
138 #define EntityValue_NIL 0
139 #define EventType_NIL 0
140 #define LinkType_NIL 0
141 #define VariableType_NIL 0
142 #define Variable_NIL 0
143 
144 #define init_OTF2_String(var) \
145  do { \
146  (var).id = -1; \
147  (var).name = NULL; \
148  } while(0)
149 
150 
151 #define init_StateType(var) \
152  do { \
153  init_OTF2_String((var).name); \
154  init_OTF2_String((var).alias); \
155  (var).groupId = 0; \
156  (var).id = StateType_NIL; \
157  GTG_LIST_INIT(&(var).token); \
158  }while(0)
159 
160 #define init_State(var) \
161  do { \
162  (var).value = EntityValue_NIL; \
163  (var).cont = NULL; \
164  (var).stateType = NULL; \
165  GTG_STACK_INIT(&(var).token); \
166  }while(0)
167 
168 #define init_ContainerType(var) \
169  do { \
170  init_OTF2_String((var).name); \
171  init_OTF2_String((var).alias); \
172  (var).id = ContainerType_NIL; \
173  GTG_LIST_INIT(&(var).token); \
174  }while(0)
175 
176 #define init_Container(var) \
177  do { \
178  init_OTF2_String((var).name); \
179  init_OTF2_String((var).alias); \
180  (var).ctType = NULL; \
181  (var).id = Container_NIL; \
182  (var).parent = NULL; \
183  (var).ev_writer = NULL; \
184  GTG_LIST_INIT(&(var).token); \
185  GTG_STACK_INIT(&(var).state_stack.token); \
186  }while(0)
187 
188 #define init_EntityValue(var) \
189  do { \
190  init_OTF2_String((var).name); \
191  init_OTF2_String((var).alias); \
192  (var).groupId = 0; \
193  (var).id = EntityValue_NIL; \
194  GTG_LIST_INIT(&(var).token); \
195  }while(0)
196 
197 #define init_EventType(var) \
198  do { \
199  init_OTF2_String((var).name); \
200  init_OTF2_String((var).alias); \
201  (var).contType = NULL; \
202  (var).id = EventType_NIL; \
203  GTG_LIST_INIT(&(var).token); \
204  }while(0)
205 
206 #define init_LinkType(var) \
207  do { \
208  init_OTF2_String((var).name); \
209  init_OTF2_String((var).alias); \
210  (var).contType = NULL; \
211  (var).srcType = NULL; \
212  (var).destType = NULL; \
213  (var).id = LinkType_NIL; \
214  GTG_LIST_INIT(&(var).token); \
215  }while(0)
216 
217 #define init_VariableType(var) \
218  do { \
219  init_OTF2_String((var).name); \
220  init_OTF2_String((var).alias); \
221  (var).contType = NULL; \
222  (var).id = VariableType_NIL; \
223  GTG_LIST_INIT(&(var).token); \
224  }while(0)
225 
226 #define init_Variable(var) \
227  do { \
228  (var).parent = NULL; \
229  (var).type = NULL; \
230  (var).value = 0; \
231  (var).id = Variable_NIL; \
232  GTG_LIST_INIT(&(var).token); \
233  }while(0)
234 
235 
236 #define alloc_struct(ptr, type, list_head) \
237  do { \
238  ptr = (type*) malloc(sizeof(type)); \
239  GTG_LIST_INIT(&(ptr->token)); \
240  ptr->id = (gtg_list_entry((list_head)->prev, type, token)->id) + 1; \
241  gtg_list_add_tail(&(ptr->token), list_head); \
242  } while(0)
243 
244 /* warning: do not use this ! (name and alias are no longer char* ) */
245 #define alloc_init_struct(type, ptr, list_head, _name_, _alias_) \
246  do { \
247  alloc_struct(ptr, type, list_head); \
248  (ptr)->name = (char *)malloc(sizeof(char)*(strlen(_name_)+1)); \
249  strcpy((ptr)->name, _name_); \
250  (ptr)->alias = (char *)malloc(sizeof(char)*(strlen(_alias_)+1)); \
251  strcpy((ptr)->alias, _alias_); \
252  }while(0)
253 
254 #define alloc_Variable(_ptr_, _id_, _parent_, _type_, _value_) \
255  do { \
256  (_ptr_) = (Variable_t*) malloc(sizeof(Variable_t)); \
257  init_Variable(*(_ptr_)); \
258  (_ptr_)->id = _id_; \
259  (_ptr_)->parent = _parent_; \
260  (_ptr_)->type = _type_; \
261  (_ptr_)->value = _value_; \
262  }while(0)
263 
264 #define alloc_State(_ptr_, _value_, _cont_, _stateType_) \
265  do { \
266  _ptr_ = (State_t*) malloc(sizeof(State_t)); \
267  init_State(*(_ptr_)); \
268  (_ptr_)->value = _value_; \
269  (_ptr_)->cont = _cont_; \
270  (_ptr_)->stateType = _stateType_; \
271  }while(0)
272 
273 #define free_struct(_type_, _list_head_)\
274  do{\
275  _type_ *ptr, *tmp; \
276  gtg_list_for_each_entry_safe(ptr, tmp, &(_list_head_).token, token) { \
277  gtg_list_del(&(ptr->token));\
278  free(ptr->name.name);\
279  free(ptr->alias);\
280  free(ptr);\
281  }\
282  }while(0)
283 
284 #endif /* _GTG_OTF2_STRUCTS_H_ */
otf2_id_t id
Definition: GTGOTF2_Structs.h:121
OTF2_EvtWriter * evt_writer
Definition: GTGOTF2_Structs.h:69
Definition: GTGList.h:4
struct LinkType LinkType_t
Definition: GTGOTF2_Structs.h:27
struct Variable Variable_t
struct __OTF2_String name
Definition: GTGOTF2_Structs.h:84
otf2_id_t id
Definition: GTGOTF2_Structs.h:55
struct gtg_list token
Definition: GTGOTF2_Structs.h:79
Definition: GTGOTF2_Structs.h:74
otf2_id_t uint32_t
Definition: GTGOTF2_Structs.h:32
struct EventType EventType_t
Definition: GTGOTF2_Structs.h:109
struct otf_color * otf_color_t
Definition: GTGOTF2_Structs.h:132
struct VariableType VariableType_t
double varPrec
Use the double precision type for time and value.
Definition: GTGTypes.h:28
struct gtg_list token
Definition: GTGOTF2_Structs.h:88
struct __OTF2_String name
Definition: GTGOTF2_Structs.h:75
otf2_id_t id
Definition: GTGOTF2_Structs.h:113
gtg_stack token
Definition: GTGOTF2_Structs.h:48
Definition: GTGOTF2_Structs.h:92
ContainerType_t * contType
Definition: GTGOTF2_Structs.h:95
otf2_id_t id
Definition: GTGOTF2_Structs.h:87
struct gtg_list token
Definition: GTGOTF2_Structs.h:122
struct gtg_list token
Definition: GTGOTF2_Structs.h:99
struct gtg_list token
Definition: GTGOTF2_Structs.h:114
ContainerType_t * destType
Definition: GTGOTF2_Structs.h:97
Definition: GTGOTF2_Structs.h:61
Container_t * parent
Definition: GTGOTF2_Structs.h:118
uint64_t value
Definition: GTGOTF2_Structs.h:120
State_t state_stack
Definition: GTGOTF2_Structs.h:68
struct __OTF2_String alias
Definition: GTGOTF2_Structs.h:63
struct __OTF2_String alias
Definition: GTGOTF2_Structs.h:54
ContainerType_t * contType
Definition: GTGOTF2_Structs.h:86
Definition: GTGOTF2_Structs.h:52
ContainerType_t * contType
Definition: GTGOTF2_Structs.h:112
otf2_id_t id
Definition: GTGOTF2_Structs.h:78
Container_t * cont
Definition: GTGOTF2_Structs.h:46
otf2_id_t id
Definition: GTGOTF2_Structs.h:65
struct State State_t
ContainerType_t * ctType
Definition: GTGOTF2_Structs.h:64
StateType_t * stateType
Definition: GTGOTF2_Structs.h:47
struct Container * parent
Definition: GTGOTF2_Structs.h:66
struct EntityValue EntityValue_t
struct __OTF2_String name
Definition: GTGOTF2_Structs.h:53
ContainerType_t * srcType
Definition: GTGOTF2_Structs.h:96
struct __OTF2_String alias
Definition: GTGOTF2_Structs.h:111
uint8_t green
Definition: GTGOTF2_Structs.h:128
VariableType_t * type
Definition: GTGOTF2_Structs.h:119
struct __OTF2_String alias
Definition: GTGOTF2_Structs.h:94
struct __OTF2_String alias
Definition: GTGOTF2_Structs.h:37
int groupId
Definition: GTGOTF2_Structs.h:77
struct ContainerType ContainerType_t
struct __OTF2_String name
Definition: GTGOTF2_Structs.h:36
char * colorID
Definition: GTGOTF2_Structs.h:126
struct __OTF2_String alias
Definition: GTGOTF2_Structs.h:85
struct __OTF2_String name
Definition: GTGOTF2_Structs.h:110
char * name
Definition: GTGOTF2_Structs.h:29
Definition: GTGOTF2_Structs.h:83
Definition: GTGOTF2_Structs.h:125
struct __OTF2_String name
Definition: GTGOTF2_Structs.h:62
struct __OTF2_String alias
Definition: GTGOTF2_Structs.h:76
struct gtg_list token
Definition: GTGOTF2_Structs.h:57
uint8_t blue
Definition: GTGOTF2_Structs.h:129
uint8_t red
Definition: GTGOTF2_Structs.h:127
struct gtg_list token
Definition: GTGOTF2_Structs.h:40
Definition: GTGOTF2_Structs.h:44
uint32_t id
Definition: GTGOTF2_Structs.h:28
struct __OTF2_String name
Definition: GTGOTF2_Structs.h:93
struct ContainerType * parent_type
Definition: GTGOTF2_Structs.h:56
otf2_id_t id
Definition: GTGOTF2_Structs.h:39
struct gtg_list token
Definition: GTGOTF2_Structs.h:67
struct Container Container_t
struct Link Link_t
Definition: GTGOTF2_Structs.h:35
int groupId
Definition: GTGOTF2_Structs.h:38
struct StateType StateType_t
Definition: GTGOTF2_Structs.h:117
otf2_id_t id
Definition: GTGOTF2_Structs.h:98
EntityValue_t * value
Definition: GTGOTF2_Structs.h:45
gtg-trace-0.2-2+dfsg/doc/html/html/GTGOTF_8h.html000066400000000000000000000121701234554746700212640ustar00rootroot00000000000000 Generic Trace Generator (GTG): GTGOTF.h File Reference
Generic Trace Generator (GTG)  0.1
GTGOTF.h File Reference

OTF is the global file for gtg interface using OTF. More...

#include <stdint.h>
#include "GTGOTF_Structs.h"
#include "GTGOTF_Basic.h"

Go to the source code of this file.

Detailed Description

gtg-trace-0.2-2+dfsg/doc/html/html/GTGOTF_8h_source.html000066400000000000000000000101261234554746700226430ustar00rootroot00000000000000 Generic Trace Generator (GTG): GTGOTF.h Source File
Generic Trace Generator (GTG)  0.1
GTGOTF.h
Go to the documentation of this file.
1 
17 #ifndef _GTG_OTF_H_
18 #define _GTG_OTF_H_
19 
20 #include <stdint.h>
21 #include "GTGOTF_Structs.h"
22 #include "GTGOTF_Basic.h"
23 
24 #endif /* _GTG_OTF_H_ */
OTF_GTGBasic1 is the OTF implementation of the basic interface to generate traces (GTGBasic1)...
OTF_Structs gives the global types and functions needed to have the OTF implementation.
gtg-trace-0.2-2+dfsg/doc/html/html/GTGOTF__Basic_8h.html000066400000000000000000000631661234554746700225370ustar00rootroot00000000000000 Generic Trace Generator (GTG): GTGOTF_Basic.h File Reference
Generic Trace Generator (GTG)  0.1
GTGOTF_Basic.h File Reference

OTF_GTGBasic1 is the OTF implementation of the basic interface to generate traces (GTGBasic1). More...

#include "GTGTypes.h"
#include "GTGBasic.h"
#include "GTGOTF_Structs.h"

Go to the source code of this file.

Functions

const otf_color_t OTF_get_color (gtg_color_t color)
 Converts a GTG color into a OTF color. More...
 
trace_return_t OTFInitTrace (const char *filename, gtg_flag_t flags)
 Initialize an OTF trace. More...
 
trace_return_t OTFSetCompress (int val)
 Enable trace compression. More...
 
trace_return_t OTFAddContType (const char *alias, const char *contType, const char *name)
 Add a Container Type. More...
 
trace_return_t OTFAddStateType (const char *alias, const char *contType, const char *name)
 Add a State Type. More...
 
trace_return_t OTFAddEventType (const char *alias, const char *contType, const char *name)
 Add an Event Type. More...
 
trace_return_t OTFAddLinkType (const char *alias, const char *name, const char *contType, const char *srcContType, const char *destContType)
 Add a Link Type. More...
 
trace_return_t OTFAddVarType (const char *alias, const char *name, const char *contType)
 Add a Variable Type. More...
 
trace_return_t OTFAddEntityValue (const char *alias, const char *entType, const char *name, const otf_color_t color)
 Add an Entity Value. More...
 
trace_return_t OTFDefineContainer (const char *alias, const char *type, const char *container, const char *name, const char *file)
 
trace_return_t OTFStartContainer (varPrec time, const char *alias, const char *type, const char *container, const char *name, const char *file)
 Start a Container. More...
 
trace_return_t OTFDestroyContainer (varPrec time, const char *name, const char *type)
 Destroy a Container. More...
 
trace_return_t OTFSetState (varPrec time, const char *type, const char *cont, const char *val)
 Set the State of a Container. More...
 
trace_return_t OTFPushState (varPrec time, const char *type, const char *cont, const char *val)
 Save the current State on a stack and change the State of a Container. More...
 
trace_return_t OTFPopState (varPrec time, const char *type, const char *cont)
 Revert the State of a Container to its previous value. More...
 
trace_return_t OTFAddEvent (varPrec time, const char *type, const char *cont, const char *val)
 Add an Event. More...
 
trace_return_t OTFStartLink (varPrec time, const char *type, const char *src, const char *dest, const char *val, const char *key)
 Start a Link. More...
 
trace_return_t OTFEndLink (varPrec time, const char *type, const char *src, const char *dest, const char *val, const char *key)
 End a Link. More...
 
trace_return_t OTFSetVar (varPrec time, const char *type, const char *cont, varPrec val)
 Set a Variable value. More...
 
trace_return_t OTFAddVar (varPrec time, const char *type, const char *cont, varPrec val)
 Add a value to a Variable. More...
 
trace_return_t OTFSubVar (varPrec time, const char *type, const char *cont, varPrec val)
 Substract a value from a Variable. More...
 
trace_return_t OTFAddComment (const char *comment)
 Add some Comment in Trace file. More...
 
trace_return_t OTFEndTrace ()
 Finalize an OTF trace. More...
 

Detailed Description

OTF_GTGBasic1 is the OTF implementation of the basic interface to generate traces (GTGBasic1).

Version
0.1
Authors
Developers are :
Francois Rue - franc.nosp@m.ois..nosp@m.rue@l.nosp@m.abri.nosp@m..fr
Francois Trahay - franc.nosp@m.ois..nosp@m.traha.nosp@m.y@la.nosp@m.bri.f.nosp@m.r
Johnny Jazeix - jazei.nosp@m.x@en.nosp@m.seirb.nosp@m.-mat.nosp@m.meca..nosp@m.fr
Kevin Coulomb - kevin.nosp@m..cou.nosp@m.lomb@.nosp@m.gmai.nosp@m.l.com
Mathieu Faverge - faver.nosp@m.ge@l.nosp@m.abri..nosp@m.fr
Olivier Lagrasse - lagra.nosp@m.sse@.nosp@m.ensei.nosp@m.rb-m.nosp@m.atmec.nosp@m.a.fr

Function Documentation

trace_return_t OTFDefineContainer ( const char *  alias,
const char *  type,
const char *  container,
const char *  name,
const char *  file 
)
gtg-trace-0.2-2+dfsg/doc/html/html/GTGOTF__Basic_8h_source.html000066400000000000000000000754321234554746700241160ustar00rootroot00000000000000 Generic Trace Generator (GTG): GTGOTF_Basic.h Source File
Generic Trace Generator (GTG)  0.1
GTGOTF_Basic.h
Go to the documentation of this file.
1 
16 #ifndef _GTG_OTF_BASIC_H_
17 #define _GTG_OTF_BASIC_H_
18 
19 #include "GTGTypes.h"
20 #include "GTGBasic.h"
21 #include "GTGOTF_Structs.h"
22 
35 
45 trace_return_t OTFInitTrace (const char* filename, gtg_flag_t flags);
46 
56 
69 trace_return_t OTFAddContType (const char* alias, const char* contType,
70  const char* name);
71 
84 trace_return_t OTFAddStateType (const char* alias, const char* contType,
85  const char* name);
86 
99 trace_return_t OTFAddEventType (const char* alias, const char* contType,
100  const char* name);
101 
118 trace_return_t OTFAddLinkType (const char* alias , const char* name,
119  const char* contType, const char* srcContType,
120  const char* destContType);
121 
134 trace_return_t OTFAddVarType (const char* alias , const char* name,
135  const char* contType);
136 
151 trace_return_t OTFAddEntityValue (const char* alias, const char* entType,
152  const char* name , const otf_color_t color);
153 
171 trace_return_t OTFDefineContainer (const char* alias,
172  const char* type, const char* container,
173  const char* name, const char* file);
174 
193 trace_return_t OTFStartContainer (varPrec time, const char* alias ,
194  const char* type, const char* container,
195  const char* name, const char* file);
196 
209 trace_return_t OTFDestroyContainer (varPrec time, const char* name,
210  const char* type);
211 
226 trace_return_t OTFSetState (varPrec time, const char* type,
227  const char* cont, const char* val);
228 
243 trace_return_t OTFPushState (varPrec time, const char* type,
244  const char* cont, const char* val);
245 
258 trace_return_t OTFPopState (varPrec time, const char* type,
259  const char* cont);
260 
275 trace_return_t OTFAddEvent (varPrec time, const char* type,
276  const char* cont, const char* val);
277 
296 trace_return_t OTFStartLink (varPrec time, const char* type,
297  const char* src, const char* dest,
298  const char* val , const char* key);
299 
318 trace_return_t OTFEndLink (varPrec time, const char* type,
319  const char* src, const char* dest,
320  const char* val, const char* key);
321 
336 trace_return_t OTFSetVar (varPrec time, const char* type,
337  const char* cont, varPrec val);
338 
353 trace_return_t OTFAddVar (varPrec time, const char* type,
354  const char* cont, varPrec val);
355 
370 trace_return_t OTFSubVar (varPrec time, const char* type,
371  const char* cont, varPrec val);
372 
382 trace_return_t OTFAddComment (const char* comment);
383 
392 
393 #endif /* _GTG_OTF_BASIC_H_ */
394 
395 
396 
trace_return_t OTFStartContainer(varPrec time, const char *alias, const char *type, const char *container, const char *name, const char *file)
Start a Container.
trace_return_t OTFAddVar(varPrec time, const char *type, const char *cont, varPrec val)
Add a value to a Variable.
trace_return_t OTFSetVar(varPrec time, const char *type, const char *cont, varPrec val)
Set a Variable value.
trace_return_t OTFDefineContainer(const char *alias, const char *type, const char *container, const char *name, const char *file)
double varPrec
Use the double precision type for time and value.
Definition: GTGTypes.h:28
trace_return_t OTFSubVar(varPrec time, const char *type, const char *cont, varPrec val)
Substract a value from a Variable.
trace_return_t OTFDestroyContainer(varPrec time, const char *name, const char *type)
Destroy a Container.
uint8_t gtg_flag_t
Flags that can be specified to GTG.
Definition: GTG_EZTrace.h:51
trace_return_t OTFAddVarType(const char *alias, const char *name, const char *contType)
Add a Variable Type.
trace_return_t OTFAddContType(const char *alias, const char *contType, const char *name)
Add a Container Type.
trace_return_t OTFPopState(varPrec time, const char *type, const char *cont)
Revert the State of a Container to its previous value.
trace_return_t OTFAddStateType(const char *alias, const char *contType, const char *name)
Add a State Type.
trace_return_t OTFAddComment(const char *comment)
Add some Comment in Trace file.
trace_return_t
Define various return values.
Definition: GTGTypes.h:35
trace_return_t OTFEndLink(varPrec time, const char *type, const char *src, const char *dest, const char *val, const char *key)
End a Link.
trace_return_t OTFSetState(varPrec time, const char *type, const char *cont, const char *val)
Set the State of a Container.
trace_return_t OTFAddEventType(const char *alias, const char *contType, const char *name)
Add an Event Type.
GTGBasic is a basic interface to generate trace in various formats.
trace_return_t OTFAddEntityValue(const char *alias, const char *entType, const char *name, const otf_color_t color)
Add an Entity Value.
This structure defines a color that can be used by GTG.
Definition: GTGColor.h:25
trace_return_t OTFEndTrace()
Finalize an OTF trace.
Definition: GTGOTF2_Structs.h:125
trace_return_t OTFSetCompress(int val)
Enable trace compression.
const otf_color_t OTF_get_color(gtg_color_t color)
Converts a GTG color into a OTF color.
trace_return_t OTFStartLink(varPrec time, const char *type, const char *src, const char *dest, const char *val, const char *key)
Start a Link.
trace_return_t OTFAddLinkType(const char *alias, const char *name, const char *contType, const char *srcContType, const char *destContType)
Add a Link Type.
OTF_Structs gives the global types and functions needed to have the OTF implementation.
trace_return_t OTFPushState(varPrec time, const char *type, const char *cont, const char *val)
Save the current State on a stack and change the State of a Container.
trace_return_t OTFInitTrace(const char *filename, gtg_flag_t flags)
Initialize an OTF trace.
trace_return_t OTFAddEvent(varPrec time, const char *type, const char *cont, const char *val)
Add an Event.
gtg-trace-0.2-2+dfsg/doc/html/html/GTGOTF__Structs_8h.html000066400000000000000000002014041234554746700231520ustar00rootroot00000000000000 Generic Trace Generator (GTG): GTGOTF_Structs.h File Reference
Generic Trace Generator (GTG)  0.1
GTGOTF_Structs.h File Reference

OTF_Structs gives the global types and functions needed to have the OTF implementation. More...

#include <stdint.h>
#include "GTGList.h"
#include "GTGStack.h"

Go to the source code of this file.

Data Structures

struct  StateType
 
struct  State
 
struct  ContainerType
 
struct  Container
 
struct  EntityValue
 
struct  EventType
 
struct  LinkType
 
struct  Link
 
struct  VariableType
 
struct  Variable
 
struct  otf_color
 

Macros

#define MAX_PROCESS   64
 
#define ContainerType_NIL   0
 
#define Container_NIL   0
 
#define StateType_NIL   0
 
#define State_NIL   0
 
#define EntityValue_NIL   0
 
#define EventType_NIL   0
 
#define LinkType_NIL   0
 
#define VariableType_NIL   0
 
#define Variable_NIL   0
 
#define init_ContainerType(var)
 
#define init_Container(var)
 
#define init_StateType(var)
 
#define init_EntityValue(var)
 
#define init_EventType(var)
 
#define init_LinkType(var)
 
#define init_VariableType(var)
 
#define init_Variable(var)
 
#define init_State(var)
 
#define alloc_struct(ptr, type, list_head)
 
#define alloc_init_struct(type, ptr, list_head, _name_, _alias_)
 
#define alloc_Variable(_ptr_, _id_, _parent_, _type_, _value_)
 
#define alloc_State(_ptr_, _value_, _cont_, _stateType_)
 
#define free_struct(_type_, _list_head_)
 

Typedefs

typedef struct StateType StateType_t
 
typedef struct State State_t
 
typedef struct ContainerType ContainerType_t
 
typedef struct Container Container_t
 
typedef struct EntityValue EntityValue_t
 
typedef struct EventType EventType_t
 
typedef struct LinkType LinkType_t
 
typedef struct Link Link_t
 
typedef struct VariableType VariableType_t
 
typedef struct Variable Variable_t
 
typedef struct otf_colorotf_color_t
 

Detailed Description

OTF_Structs gives the global types and functions needed to have the OTF implementation.

Version
0.1
Authors
Developers are :
Francois Rue - franc.nosp@m.ois..nosp@m.rue@l.nosp@m.abri.nosp@m..fr
Francois Trahay - franc.nosp@m.ois..nosp@m.traha.nosp@m.y@la.nosp@m.bri.f.nosp@m.r
Johnny Jazeix - jazei.nosp@m.x@en.nosp@m.seirb.nosp@m.-mat.nosp@m.meca..nosp@m.fr
Kevin Coulomb - kevin.nosp@m..cou.nosp@m.lomb@.nosp@m.gmai.nosp@m.l.com
Mathieu Faverge - faver.nosp@m.ge@l.nosp@m.abri..nosp@m.fr
Olivier Lagrasse - lagra.nosp@m.sse@.nosp@m.ensei.nosp@m.rb-m.nosp@m.atmec.nosp@m.a.fr

Macro Definition Documentation

#define alloc_init_struct (   type,
  ptr,
  list_head,
  _name_,
  _alias_ 
)
Value:
do { \
alloc_struct(ptr, type, list_head); \
(ptr)->name = (char *)malloc(sizeof(char)*(strlen(_name_)+1)); \
strcpy((ptr)->name, _name_); \
(ptr)->alias = (char *)malloc(sizeof(char)*(strlen(_alias_)+1)); \
strcpy((ptr)->alias, _alias_); \
}while(0)
#define alloc_struct(ptr, type, list_head)
Definition: GTGOTF_Structs.h:216
#define alloc_State (   _ptr_,
  _value_,
  _cont_,
  _stateType_ 
)
Value:
do { \
_ptr_ = (State_t*) malloc(sizeof(State_t)); \
init_State(*(_ptr_)); \
(_ptr_)->value = _value_; \
(_ptr_)->cont = _cont_; \
(_ptr_)->stateType = _stateType_; \
}while(0)
#define init_State(var)
Definition: GTGOTF_Structs.h:207
Definition: GTGOTF2_Structs.h:44
#define alloc_struct (   ptr,
  type,
  list_head 
)
Value:
do { \
ptr = (type*) malloc(sizeof(type)); \
GTG_LIST_INIT(&(ptr->token)); \
ptr->id = (gtg_list_entry((list_head)->prev, type, token)->id) + 1; \
gtg_list_add_tail(&(ptr->token), list_head); \
} while(0)
#define GTG_LIST_INIT(ptr)
initialize a list.
Definition: GTGList.h:16
#define gtg_list_entry(ptr, type, member)
get the structure corresponding to a list entry
Definition: GTGList.h:39
struct gtg_list * prev
Definition: GTGList.h:5
static void gtg_list_add_tail(gtg_list_t lnew, gtg_list_t head)
Insert a new entry before the specified head (ie. at the tail of the list).
Definition: GTGList.h:76
#define alloc_Variable (   _ptr_,
  _id_,
  _parent_,
  _type_,
  _value_ 
)
Value:
do { \
(_ptr_) = (Variable_t*) malloc(sizeof(Variable_t)); \
init_Variable(*(_ptr_)); \
(_ptr_)->id = _id_; \
(_ptr_)->parent = _parent_; \
(_ptr_)->type = _type_; \
(_ptr_)->value = _value_; \
}while(0)
#define init_Variable(var)
Definition: GTGOTF_Structs.h:198
Definition: GTGOTF2_Structs.h:117
#define Container_NIL   0
#define ContainerType_NIL   0
#define EntityValue_NIL   0
#define EventType_NIL   0
#define free_struct (   _type_,
  _list_head_ 
)
Value:
do{\
_type_ *ptr, *tmp; \
gtg_list_for_each_entry_safe(ptr, tmp, &(_list_head_).token, token) { \
gtg_list_del(&(ptr->token));\
free(ptr->name);\
free(ptr->alias);\
free(ptr);\
}\
}while(0)
static void gtg_list_del(gtg_list_t entry)
delete an entry from its list and reinitialize it.
Definition: GTGList.h:99
#define gtg_list_for_each_entry_safe(pos, n, head, member)
iterate over list of given type safe against removal of list entry
Definition: GTGList.h:157
#define init_Container (   var)
Value:
do { \
(var).name = NULL; \
(var).alias = NULL; \
(var).ctType = ContainerType_NIL; \
(var).id = Container_NIL; \
GTG_LIST_INIT(&(var).token); \
GTG_STACK_INIT(&(var).state_stack.token); \
}while(0)
#define GTG_LIST_INIT(ptr)
initialize a list.
Definition: GTGList.h:16
#define GTG_STACK_INIT(ptr)
Definition: GTGStack.h:9
#define Container_NIL
Definition: GTGOTF_Structs.h:124
#define ContainerType_NIL
Definition: GTGOTF_Structs.h:123
#define init_ContainerType (   var)
Value:
do { \
(var).name = NULL; \
(var).alias = NULL; \
(var).id = ContainerType_NIL; \
GTG_LIST_INIT(&(var).token); \
}while(0)
#define GTG_LIST_INIT(ptr)
initialize a list.
Definition: GTGList.h:16
#define ContainerType_NIL
Definition: GTGOTF_Structs.h:123
#define init_EntityValue (   var)
Value:
do { \
(var).name = NULL; \
(var).alias = NULL; \
(var).groupId = 0; \
(var).id = EntityValue_NIL; \
GTG_LIST_INIT(&(var).token); \
}while(0)
#define EntityValue_NIL
Definition: GTGOTF_Structs.h:127
#define GTG_LIST_INIT(ptr)
initialize a list.
Definition: GTGList.h:16
#define init_EventType (   var)
Value:
do { \
(var).name = NULL; \
(var).alias = NULL; \
(var).contType = ContainerType_NIL; \
(var).id = EventType_NIL; \
GTG_LIST_INIT(&(var).token); \
}while(0)
#define GTG_LIST_INIT(ptr)
initialize a list.
Definition: GTGList.h:16
#define EventType_NIL
Definition: GTGOTF_Structs.h:128
#define ContainerType_NIL
Definition: GTGOTF_Structs.h:123
#define init_LinkType (   var)
Value:
do { \
(var).name = NULL; \
(var).alias = NULL; \
(var).contType = ContainerType_NIL; \
(var).srcType = ContainerType_NIL; \
(var).destType = ContainerType_NIL; \
(var).id = LinkType_NIL; \
GTG_LIST_INIT(&(var).token); \
}while(0)
#define GTG_LIST_INIT(ptr)
initialize a list.
Definition: GTGList.h:16
#define ContainerType_NIL
Definition: GTGOTF_Structs.h:123
#define LinkType_NIL
Definition: GTGOTF_Structs.h:129
#define init_State (   var)
Value:
do { \
(var).value = EntityValue_NIL; \
(var).cont = Container_NIL; \
(var).stateType = StateType_NIL; \
GTG_STACK_INIT(&(var).token); \
}while(0)
#define EntityValue_NIL
Definition: GTGOTF_Structs.h:127
#define GTG_STACK_INIT(ptr)
Definition: GTGStack.h:9
#define Container_NIL
Definition: GTGOTF_Structs.h:124
#define StateType_NIL
Definition: GTGOTF_Structs.h:125
#define init_StateType (   var)
Value:
do { \
(var).name = NULL; \
(var).alias = NULL; \
(var).groupId = 0; \
(var).id = StateType_NIL; \
GTG_LIST_INIT(&(var).token); \
}while(0)
#define GTG_LIST_INIT(ptr)
initialize a list.
Definition: GTGList.h:16
#define StateType_NIL
Definition: GTGOTF_Structs.h:125
#define init_Variable (   var)
Value:
do { \
(var).parent = Container_NIL; \
(var).parent = VariableType_NIL; \
(var).value = 0; \
(var).id = Variable_NIL; \
GTG_LIST_INIT(&(var).token); \
}while(0)
#define Variable_NIL
Definition: GTGOTF_Structs.h:131
#define GTG_LIST_INIT(ptr)
initialize a list.
Definition: GTGList.h:16
#define VariableType_NIL
Definition: GTGOTF_Structs.h:130
#define Container_NIL
Definition: GTGOTF_Structs.h:124
#define init_VariableType (   var)
Value:
do { \
(var).name = NULL; \
(var).alias = NULL; \
(var).contType = ContainerType_NIL; \
(var).id = VariableType_NIL; \
GTG_LIST_INIT(&(var).token); \
}while(0)
#define GTG_LIST_INIT(ptr)
initialize a list.
Definition: GTGList.h:16
#define VariableType_NIL
Definition: GTGOTF_Structs.h:130
#define ContainerType_NIL
Definition: GTGOTF_Structs.h:123
#define LinkType_NIL   0
#define MAX_PROCESS   64
#define State_NIL   0
#define StateType_NIL   0
#define Variable_NIL   0
#define VariableType_NIL   0

Typedef Documentation

typedef struct Container Container_t

Containers

typedef struct EntityValue EntityValue_t

EntityValue, contains the name of the functions/states

typedef struct EventType EventType_t

Events/Markers

typedef struct Link Link_t
typedef struct LinkType LinkType_t

Links/Messages

typedef struct otf_color* otf_color_t
typedef struct State State_t

States

typedef struct StateType StateType_t

StateTypes

typedef struct Variable Variable_t
typedef struct VariableType VariableType_t

Variables/Counters

gtg-trace-0.2-2+dfsg/doc/html/html/GTGOTF__Structs_8h_source.html000066400000000000000000002111331234554746700245320ustar00rootroot00000000000000 Generic Trace Generator (GTG): GTGOTF_Structs.h Source File
Generic Trace Generator (GTG)  0.1
GTGOTF_Structs.h
Go to the documentation of this file.
1 
17 #ifndef _GTG_OTF_STRUCTS_H_
18 #define _GTG_OTF_STRUCTS_H_
19 
20 #include <stdint.h>
21 #include "GTGList.h"
22 #include "GTGStack.h"
23 
24 /* todo: remove this */
25 #define MAX_PROCESS 64
26 
28 typedef struct StateType { /* Func group */
29  char *name;
30  char *alias;
31  int groupId;
32  int id;
33  struct gtg_list token; /* stored in the stateTypes list */
34 } StateType_t;
35 
37 typedef struct State {
38  int value;
39  int cont;
40  int stateType;
41  gtg_stack token; /* stored in the states list */
42 } State_t;
43 
44 /* ContainerTypes */
45 typedef struct ContainerType {
46  char *name;
47  char *alias;
48  int id;
49  struct gtg_list token; /* stored in the ctType list */
51 
53 typedef struct Container {
54  char *name;
55  char *alias;
56  int ctType;
57  int id;
58  struct gtg_list token; /* stored in the conts list */
60 } Container_t;
61 
63 typedef struct EntityValue {
64  char *name;
65  char *alias;
66  int groupId;
67  int id;
68  struct gtg_list token; /* not used */
70 
72 typedef struct EventType {
73  char *name;
74  char *alias;
75  int contType;
76  int id;
77  struct gtg_list token; /* stored in the eventTypes list */
78 } EventType_t;
79 
81 typedef struct LinkType {
82  char *name;
83  char *alias;
84  int contType;
85  int srcType;
86  int destType;
87  int id;
88  struct gtg_list token; /* stored in the linkTypes lisk */
89 } LinkType_t;
90 
91 typedef struct Link {
92  varPrec time;
93  int src;
94 } Link_t;
95 
96 
98 typedef struct VariableType {
99  char *name;
100  char *alias;
101  int contType;
102  int id;
103  struct gtg_list token; /* stored in the variableTypes list */
105 
106 typedef struct Variable {
107  int parent;
108  int type;
109  uint64_t value;
110  int id;
111  struct gtg_list token; /* stored in the variables list */
112 } Variable_t;
113 
114 struct otf_color {
115  char *colorID;
116  uint8_t red;
117  uint8_t green;
118  uint8_t blue;
119 };
120 
121 typedef struct otf_color* otf_color_t;
122 
123 #define ContainerType_NIL 0
124 #define Container_NIL 0
125 #define StateType_NIL 0
126 #define State_NIL 0
127 #define EntityValue_NIL 0
128 #define EventType_NIL 0
129 #define LinkType_NIL 0
130 #define VariableType_NIL 0
131 #define Variable_NIL 0
132 
133 #define init_ContainerType(var)\
134  do { \
135  (var).name = NULL; \
136  (var).alias = NULL; \
137  (var).id = ContainerType_NIL; \
138  GTG_LIST_INIT(&(var).token); \
139  }while(0)
140 
141 #define init_Container(var) \
142  do { \
143  (var).name = NULL; \
144  (var).alias = NULL; \
145  (var).ctType = ContainerType_NIL; \
146  (var).id = Container_NIL; \
147  GTG_LIST_INIT(&(var).token); \
148  GTG_STACK_INIT(&(var).state_stack.token); \
149  }while(0)
150 
151 #define init_StateType(var) \
152  do { \
153  (var).name = NULL; \
154  (var).alias = NULL; \
155  (var).groupId = 0; \
156  (var).id = StateType_NIL; \
157  GTG_LIST_INIT(&(var).token); \
158  }while(0)
159 
160 #define init_EntityValue(var) \
161  do { \
162  (var).name = NULL; \
163  (var).alias = NULL; \
164  (var).groupId = 0; \
165  (var).id = EntityValue_NIL; \
166  GTG_LIST_INIT(&(var).token); \
167  }while(0)
168 
169 #define init_EventType(var) \
170  do { \
171  (var).name = NULL; \
172  (var).alias = NULL; \
173  (var).contType = ContainerType_NIL; \
174  (var).id = EventType_NIL; \
175  GTG_LIST_INIT(&(var).token); \
176  }while(0)
177 
178 #define init_LinkType(var) \
179  do { \
180  (var).name = NULL; \
181  (var).alias = NULL; \
182  (var).contType = ContainerType_NIL; \
183  (var).srcType = ContainerType_NIL; \
184  (var).destType = ContainerType_NIL; \
185  (var).id = LinkType_NIL; \
186  GTG_LIST_INIT(&(var).token); \
187  }while(0)
188 
189 #define init_VariableType(var) \
190  do { \
191  (var).name = NULL; \
192  (var).alias = NULL; \
193  (var).contType = ContainerType_NIL; \
194  (var).id = VariableType_NIL; \
195  GTG_LIST_INIT(&(var).token); \
196  }while(0)
197 
198 #define init_Variable(var) \
199  do { \
200  (var).parent = Container_NIL; \
201  (var).parent = VariableType_NIL; \
202  (var).value = 0; \
203  (var).id = Variable_NIL; \
204  GTG_LIST_INIT(&(var).token); \
205  }while(0)
206 
207 #define init_State(var) \
208  do { \
209  (var).value = EntityValue_NIL; \
210  (var).cont = Container_NIL; \
211  (var).stateType = StateType_NIL; \
212  GTG_STACK_INIT(&(var).token); \
213  }while(0)
214 
215 
216 #define alloc_struct(ptr, type, list_head) \
217  do { \
218  ptr = (type*) malloc(sizeof(type)); \
219  GTG_LIST_INIT(&(ptr->token)); \
220  ptr->id = (gtg_list_entry((list_head)->prev, type, token)->id) + 1; \
221  gtg_list_add_tail(&(ptr->token), list_head); \
222  } while(0)
223 
224 #define alloc_init_struct(type, ptr, list_head, _name_, _alias_) \
225  do { \
226  alloc_struct(ptr, type, list_head); \
227  (ptr)->name = (char *)malloc(sizeof(char)*(strlen(_name_)+1)); \
228  strcpy((ptr)->name, _name_); \
229  (ptr)->alias = (char *)malloc(sizeof(char)*(strlen(_alias_)+1)); \
230  strcpy((ptr)->alias, _alias_); \
231  }while(0)
232 
233 #define alloc_Variable(_ptr_, _id_, _parent_, _type_, _value_) \
234  do { \
235  (_ptr_) = (Variable_t*) malloc(sizeof(Variable_t)); \
236  init_Variable(*(_ptr_)); \
237  (_ptr_)->id = _id_; \
238  (_ptr_)->parent = _parent_; \
239  (_ptr_)->type = _type_; \
240  (_ptr_)->value = _value_; \
241  }while(0)
242 
243 #define alloc_State(_ptr_, _value_, _cont_, _stateType_) \
244  do { \
245  _ptr_ = (State_t*) malloc(sizeof(State_t)); \
246  init_State(*(_ptr_)); \
247  (_ptr_)->value = _value_; \
248  (_ptr_)->cont = _cont_; \
249  (_ptr_)->stateType = _stateType_; \
250  }while(0)
251 
252 #define free_struct(_type_, _list_head_)\
253  do{\
254  _type_ *ptr, *tmp; \
255  gtg_list_for_each_entry_safe(ptr, tmp, &(_list_head_).token, token) { \
256  gtg_list_del(&(ptr->token));\
257  free(ptr->name);\
258  free(ptr->alias);\
259  free(ptr);\
260  }\
261  }while(0)
262 
263 #endif /* _GTG_OTF_STRUCTS_H_ */
int parent
Definition: GTGOTF_Structs.h:107
int type
Definition: GTGOTF_Structs.h:108
Definition: GTGList.h:4
int id
Definition: GTGOTF_Structs.h:48
struct gtg_list token
Definition: GTGOTF2_Structs.h:79
Definition: GTGOTF2_Structs.h:74
int id
Definition: GTGOTF_Structs.h:110
Definition: GTGOTF2_Structs.h:109
int id
Definition: GTGOTF_Structs.h:67
struct otf_color * otf_color_t
Definition: GTGOTF_Structs.h:121
double varPrec
Use the double precision type for time and value.
Definition: GTGTypes.h:28
struct gtg_list token
Definition: GTGOTF2_Structs.h:88
int id
Definition: GTGOTF_Structs.h:102
char * name
Definition: GTGOTF_Structs.h:82
gtg_stack token
Definition: GTGOTF2_Structs.h:48
Definition: GTGOTF2_Structs.h:92
struct Variable Variable_t
struct gtg_list token
Definition: GTGOTF2_Structs.h:122
struct EntityValue EntityValue_t
char * name
Definition: GTGOTF_Structs.h:54
int contType
Definition: GTGOTF_Structs.h:84
int srcType
Definition: GTGOTF_Structs.h:85
char * alias
Definition: GTGOTF_Structs.h:47
int ctType
Definition: GTGOTF_Structs.h:56
int id
Definition: GTGOTF_Structs.h:32
struct gtg_list token
Definition: GTGOTF2_Structs.h:99
struct gtg_list token
Definition: GTGOTF2_Structs.h:114
struct Container Container_t
char * name
Definition: GTGOTF_Structs.h:73
int id
Definition: GTGOTF_Structs.h:87
int destType
Definition: GTGOTF_Structs.h:86
char * name
Definition: GTGOTF_Structs.h:46
Definition: GTGOTF2_Structs.h:61
char * alias
Definition: GTGOTF_Structs.h:74
uint64_t value
Definition: GTGOTF2_Structs.h:120
State_t state_stack
Definition: GTGOTF2_Structs.h:68
Definition: GTGOTF2_Structs.h:52
struct LinkType LinkType_t
char * alias
Definition: GTGOTF_Structs.h:83
int id
Definition: GTGOTF_Structs.h:76
int id
Definition: GTGOTF_Structs.h:57
struct State State_t
char * alias
Definition: GTGOTF_Structs.h:55
struct ContainerType ContainerType_t
struct EventType EventType_t
uint8_t green
Definition: GTGOTF2_Structs.h:128
char * name
Definition: GTGOTF_Structs.h:99
char * name
Definition: GTGOTF_Structs.h:64
int cont
Definition: GTGOTF_Structs.h:39
int stateType
Definition: GTGOTF_Structs.h:40
int groupId
Definition: GTGOTF2_Structs.h:77
char * alias
Definition: GTGOTF_Structs.h:30
char * colorID
Definition: GTGOTF2_Structs.h:126
struct Link Link_t
Definition: GTGOTF2_Structs.h:83
Definition: GTGOTF2_Structs.h:125
int contType
Definition: GTGOTF_Structs.h:101
int value
Definition: GTGOTF_Structs.h:38
struct gtg_list token
Definition: GTGOTF2_Structs.h:57
uint8_t blue
Definition: GTGOTF2_Structs.h:129
char * alias
Definition: GTGOTF_Structs.h:65
uint8_t red
Definition: GTGOTF2_Structs.h:127
struct gtg_list token
Definition: GTGOTF2_Structs.h:40
Definition: GTGOTF2_Structs.h:44
char * alias
Definition: GTGOTF_Structs.h:100
int contType
Definition: GTGOTF_Structs.h:75
struct gtg_list token
Definition: GTGOTF2_Structs.h:67
char * name
Definition: GTGOTF_Structs.h:29
Definition: GTGOTF2_Structs.h:35
int groupId
Definition: GTGOTF2_Structs.h:38
struct StateType StateType_t
Definition: GTGOTF2_Structs.h:117
struct VariableType VariableType_t
gtg-trace-0.2-2+dfsg/doc/html/html/GTGPaje_8h.html000066400000000000000000000114331234554746700215140ustar00rootroot00000000000000 Generic Trace Generator (GTG): GTGPaje.h File Reference
Generic Trace Generator (GTG)  0.1
GTGPaje.h File Reference

pajeColor is a file that defines function that manipulate colors. More...

#include "GTGPaje_Basic.h"

Go to the source code of this file.

Typedefs

typedef char * paje_color_t
 

Functions

paje_color_t Paje_get_color (gtg_color_t p_color)
 Converts a GTG color into a PAJE color. More...
 

Detailed Description

pajeColor is a file that defines function that manipulate colors.

Version
0.1

Typedef Documentation

typedef char* paje_color_t
gtg-trace-0.2-2+dfsg/doc/html/html/GTGPaje_8h_source.html000066400000000000000000000122721234554746700230760ustar00rootroot00000000000000 Generic Trace Generator (GTG): GTGPaje.h Source File
Generic Trace Generator (GTG)  0.1
GTGPaje.h
Go to the documentation of this file.
1 
10 #ifndef _GTG_PAJE_H_
11 #define _GTG_PAJE_H_
12 
13 typedef char* paje_color_t;
14 
23 
24 #include "GTGPaje_Basic.h"
25 
26 #endif /* _GTG_PAJE_H_ */
char * paje_color_t
Definition: GTGPaje.h:13
paje_GTGBasic1 is the Paje implementation of the basic interface to generate traces (GTGBasic1)...
This structure defines a color that can be used by GTG.
Definition: GTGColor.h:25
paje_color_t Paje_get_color(gtg_color_t p_color)
Converts a GTG color into a PAJE color.
gtg-trace-0.2-2+dfsg/doc/html/html/GTGPaje__Basic_8h.html000066400000000000000000001264661234554746700227710ustar00rootroot00000000000000 Generic Trace Generator (GTG): GTGPaje_Basic.h File Reference
Generic Trace Generator (GTG)  0.1
GTGPaje_Basic.h File Reference

paje_GTGBasic1 is the Paje implementation of the basic interface to generate traces (GTGBasic1). More...

#include "GTGBasic.h"

Go to the source code of this file.

Data Structures

struct  gtg_paje_edp_s
 
struct  gtg_paje_eventdef_s
 

Macros

#define FMT_PAJE   0
 Constant to create a paje trace. More...
 
#define FMT_VITE   1
 Constant to create a vite trace. More...
 

Typedefs

typedef struct gtg_paje_edp_s gtg_paje_edp_t
 
typedef struct gtg_paje_eventdef_s gtg_paje_eventdef_t
 

Enumerations

enum  gtg_paje_evtdef_e {
  GTG_PAJE_EVTDEF_DefineContainerType, GTG_PAJE_EVTDEF_DefineStateType, GTG_PAJE_EVTDEF_DefineEventType, GTG_PAJE_EVTDEF_DefineVariableType,
  GTG_PAJE_EVTDEF_DefineLinkType, GTG_PAJE_EVTDEF_DefineEntityValue, GTG_PAJE_EVTDEF_CreateContainer, GTG_PAJE_EVTDEF_DestroyContainer,
  GTG_PAJE_EVTDEF_SetState, GTG_PAJE_EVTDEF_PushState, GTG_PAJE_EVTDEF_PopState, GTG_PAJE_EVTDEF_ResetState,
  GTG_PAJE_EVTDEF_NewEvent, GTG_PAJE_EVTDEF_SetVariable, GTG_PAJE_EVTDEF_AddVariable, GTG_PAJE_EVTDEF_SubVariable,
  GTG_PAJE_EVTDEF_StartLink, GTG_PAJE_EVTDEF_EndLink, GTG_PAJE_EVTDEF_NBR
}
 
enum  gtg_paje_fieldtype_e {
  GTG_PAJE_FIELDTYPE_Int, GTG_PAJE_FIELDTYPE_Hex, GTG_PAJE_FIELDTYPE_Date, GTG_PAJE_FIELDTYPE_Double,
  GTG_PAJE_FIELDTYPE_String, GTG_PAJE_FIELDTYPE_Color, GTG_PAJE_FIELDTYPE_NBR
}
 

Functions

trace_return_t pajeInitTrace (const char *filename, int rank, gtg_flag_t flags, int fmt)
 Initialize a VITE trace ( *.ept) More...
 
char * pajeGetName (int rk)
 Function to get the name of the file containing all the data for the proc of rank rk. More...
 
trace_return_t pajeSetCompress (int val)
 Enable trace compression. More...
 
trace_return_t pajeAddContType (const char *alias, const char *contType, const char *name)
 Add a Container Type. More...
 
trace_return_t pajeAddStateType (const char *alias, const char *contType, const char *name)
 Add a State Type. More...
 
trace_return_t pajeAddEventType (const char *alias, const char *contType, const char *name)
 Add an Event Type. More...
 
trace_return_t pajeAddLinkType (const char *alias, const char *name, const char *contType, const char *srcContType, const char *destContType)
 Add a Link Type. More...
 
trace_return_t pajeAddVarType (const char *alias, const char *contType, const char *name)
 Add a Variable Type. More...
 
trace_return_t pajeAddEntityValue (const char *alias, const char *entType, const char *name, const char *color)
 Add an Entity Value. More...
 
trace_return_t pajeAddContainer (varPrec time, const char *alias, const char *type, const char *container, const char *name, const char *file)
 Add a Container (VITE format). More...
 
trace_return_t pajeSeqAddContainer (varPrec time, const char *alias, const char *type, const char *container, const char *name)
 Add a Container (PAJE format). More...
 
trace_return_t pajeDestroyContainer (varPrec time, const char *name, const char *type)
 Destroy a Container. More...
 
trace_return_t pajeSetState (varPrec time, const char *type, const char *cont, const char *val)
 Set the State of a Container. More...
 
trace_return_t pajePushState (varPrec time, const char *type, const char *cont, const char *val)
 Save the current State on a stack and change the State of a Container. More...
 
trace_return_t pajePopState (varPrec time, const char *type, const char *cont)
 Revert the State of a Container to its previous value. More...
 
trace_return_t pajeAddEvent (varPrec time, const char *type, const char *cont, const char *val)
 Add an Event. More...
 
trace_return_t pajeStartLink (varPrec time, const char *type, const char *cont, const char *src, const char *val, const char *key)
 Start a link. More...
 
trace_return_t pajeEndLink (varPrec time, const char *type, const char *cont, const char *dest, const char *val, const char *key)
 Start a link. More...
 
trace_return_t pajeSetVar (varPrec time, const char *type, const char *cont, varPrec val)
 Set a Variable value. More...
 
trace_return_t pajeAddVar (varPrec time, const char *type, const char *cont, varPrec val)
 Add a value to a Variable. More...
 
trace_return_t pajeSubVar (varPrec time, const char *type, const char *cont, varPrec val)
 Substract a value from a Variable. More...
 
trace_return_t pajeAddComment (const char *comment)
 Add some Comment in Trace file. More...
 
trace_return_t pajeEndTrace ()
 Finalize a PAJE trace. More...
 
trace_return_t viteEndTrace ()
 Finalize a VITE trace. More...
 
void pajeEventDefAddParam (enum gtg_paje_evtdef_e event, const char *name, enum gtg_paje_fieldtype_e type)
 

Variables

gtg_paje_eventdef_t paje_eventdefs [GTG_PAJE_EVTDEF_NBR]
 

Detailed Description

paje_GTGBasic1 is the Paje implementation of the basic interface to generate traces (GTGBasic1).

Version
0.1
Authors
Developers are :
Francois Rue - franc.nosp@m.ois..nosp@m.rue@l.nosp@m.abri.nosp@m..fr
Francois Trahay - franc.nosp@m.ois..nosp@m.traha.nosp@m.y@la.nosp@m.bri.f.nosp@m.r
Johnny Jazeix - jazei.nosp@m.x@en.nosp@m.seirb.nosp@m.-mat.nosp@m.meca..nosp@m.fr
Kevin Coulomb - kevin.nosp@m..cou.nosp@m.lomb@.nosp@m.gmai.nosp@m.l.com
Mathieu Faverge - faver.nosp@m.ge@l.nosp@m.abri..nosp@m.fr
Olivier Lagrasse - lagra.nosp@m.sse@.nosp@m.ensei.nosp@m.rb-m.nosp@m.atmec.nosp@m.a.fr

Macro Definition Documentation

#define FMT_PAJE   0

Constant to create a paje trace.

#define FMT_VITE   1

Constant to create a vite trace.

Typedef Documentation

Enumeration Type Documentation

Enumerator
GTG_PAJE_EVTDEF_DefineContainerType 
GTG_PAJE_EVTDEF_DefineStateType 
GTG_PAJE_EVTDEF_DefineEventType 
GTG_PAJE_EVTDEF_DefineVariableType 
GTG_PAJE_EVTDEF_DefineLinkType 
GTG_PAJE_EVTDEF_DefineEntityValue 
GTG_PAJE_EVTDEF_CreateContainer 
GTG_PAJE_EVTDEF_DestroyContainer 
GTG_PAJE_EVTDEF_SetState 
GTG_PAJE_EVTDEF_PushState 
GTG_PAJE_EVTDEF_PopState 
GTG_PAJE_EVTDEF_ResetState 
GTG_PAJE_EVTDEF_NewEvent 
GTG_PAJE_EVTDEF_SetVariable 
GTG_PAJE_EVTDEF_AddVariable 
GTG_PAJE_EVTDEF_SubVariable 
GTG_PAJE_EVTDEF_StartLink 
GTG_PAJE_EVTDEF_EndLink 
GTG_PAJE_EVTDEF_NBR 
Enumerator
GTG_PAJE_FIELDTYPE_Int 
GTG_PAJE_FIELDTYPE_Hex 
GTG_PAJE_FIELDTYPE_Date 
GTG_PAJE_FIELDTYPE_Double 
GTG_PAJE_FIELDTYPE_String 
GTG_PAJE_FIELDTYPE_Color 
GTG_PAJE_FIELDTYPE_NBR 

Function Documentation

void pajeEventDefAddParam ( enum gtg_paje_evtdef_e  event,
const char *  name,
enum gtg_paje_fieldtype_e  type 
)

Variable Documentation

gtg-trace-0.2-2+dfsg/doc/html/html/GTGPaje__Basic_8h_source.html000066400000000000000000001664631234554746700243520ustar00rootroot00000000000000 Generic Trace Generator (GTG): GTGPaje_Basic.h Source File
Generic Trace Generator (GTG)  0.1
GTGPaje_Basic.h
Go to the documentation of this file.
1 
17 #ifndef _GTG_PAJE_BASIC_H_
18 #define _GTG_PAJE_BASIC_H_
19 
20 #include "GTGBasic.h"
21 
25 #define FMT_PAJE 0
26 
29 #define FMT_VITE 1
30 
46 trace_return_t pajeInitTrace (const char* filename, int rank, gtg_flag_t flags, int fmt);
47 
55 char* pajeGetName (int rk);
56 
66 
79 trace_return_t pajeAddContType (const char* alias, const char* contType,
80  const char* name);
81 
94 trace_return_t pajeAddStateType (const char* alias, const char* contType,
95  const char* name);
96 
109 trace_return_t pajeAddEventType (const char* alias, const char* contType,
110  const char* name);
111 
128 trace_return_t pajeAddLinkType (const char* alias , const char* name,
129  const char* contType, const char* srcContType,
130  const char* destContType);
131 
144 trace_return_t pajeAddVarType (const char* alias , const char* contType,
145  const char* name);
146 
161 trace_return_t pajeAddEntityValue (const char* alias, const char* entType,
162  const char* name , const char* color);
163 
182 trace_return_t pajeAddContainer (varPrec time, const char* alias ,
183  const char* type, const char* container,
184  const char* name, const char* file);
185 
186 
203 trace_return_t pajeSeqAddContainer (varPrec time, const char* alias ,
204  const char* type, const char* container,
205  const char* name);
206 
219 trace_return_t pajeDestroyContainer (varPrec time, const char* name,
220  const char* type);
221 
236 trace_return_t pajeSetState (varPrec time, const char* type,
237  const char* cont, const char* val);
238 
253 trace_return_t pajePushState (varPrec time, const char* type,
254  const char* cont, const char* val);
255 
268 trace_return_t pajePopState (varPrec time, const char* type,
269  const char* cont);
284 trace_return_t pajeAddEvent (varPrec time, const char* type,
285  const char* cont, const char* val);
286 
287 
288 
307 trace_return_t pajeStartLink (varPrec time, const char* type,
308  const char* cont, const char* src,
309  const char* val , const char* key);
310 
329 trace_return_t pajeEndLink (varPrec time, const char* type,
330  const char* cont, const char* dest,
331  const char* val , const char* key);
332 
348 trace_return_t pajeSetVar (varPrec time, const char* type,
349  const char* cont, varPrec val);
350 
365 trace_return_t pajeAddVar (varPrec time, const char* type,
366  const char* cont, varPrec val);
367 
382 trace_return_t pajeSubVar (varPrec time, const char* type,
383  const char* cont, varPrec val);
384 
394 trace_return_t pajeAddComment (const char* comment);
395 
404 
413 
414 /*
415  * Functions to handle extra-parameters in the Paje Definitions
416  * This will need to be cleaned to be closer to OTF interface
417  */
425 
439 };
440 
449 };
450 
453  char *name;
455 };
457 
459  char *name;
460  int id;
463 };
465 
467 
468 void pajeEventDefAddParam( enum gtg_paje_evtdef_e event, const char *name,
469  enum gtg_paje_fieldtype_e type );
470 
471 #endif /* _GTG_PAJE_BASIC_H_ */
trace_return_t pajeSeqAddContainer(varPrec time, const char *alias, const char *type, const char *container, const char *name)
Add a Container (PAJE format).
Definition: GTGPaje_Basic.h:431
Definition: GTGPaje_Basic.h:448
trace_return_t pajePopState(varPrec time, const char *type, const char *cont)
Revert the State of a Container to its previous value.
trace_return_t pajeAddVarType(const char *alias, const char *contType, const char *name)
Add a Variable Type.
int id
Definition: GTGPaje_Basic.h:460
trace_return_t viteEndTrace()
Finalize a VITE trace.
double varPrec
Use the double precision type for time and value.
Definition: GTGTypes.h:28
trace_return_t pajeAddContainer(varPrec time, const char *alias, const char *type, const char *container, const char *name, const char *file)
Add a Container (VITE format).
gtg_paje_eventdef_t paje_eventdefs[GTG_PAJE_EVTDEF_NBR]
trace_return_t pajeAddComment(const char *comment)
Add some Comment in Trace file.
Definition: GTGPaje_Basic.h:429
trace_return_t pajeDestroyContainer(varPrec time, const char *name, const char *type)
Destroy a Container.
uint8_t gtg_flag_t
Flags that can be specified to GTG.
Definition: GTG_EZTrace.h:51
Definition: GTGPaje_Basic.h:424
Definition: GTGPaje_Basic.h:446
trace_return_t pajeAddEntityValue(const char *alias, const char *entType, const char *name, const char *color)
Add an Entity Value.
Definition: GTGPaje_Basic.h:443
void pajeEventDefAddParam(enum gtg_paje_evtdef_e event, const char *name, enum gtg_paje_fieldtype_e type)
gtg_paje_edp_t * last
Definition: GTGPaje_Basic.h:462
Definition: GTGPaje_Basic.h:458
char * name
Definition: GTGPaje_Basic.h:453
trace_return_t pajeAddStateType(const char *alias, const char *contType, const char *name)
Add a State Type.
Definition: GTGPaje_Basic.h:433
Definition: GTGPaje_Basic.h:451
Definition: GTGPaje_Basic.h:438
Definition: GTGPaje_Basic.h:430
char * name
Definition: GTGPaje_Basic.h:459
trace_return_t
Define various return values.
Definition: GTGTypes.h:35
Definition: GTGPaje_Basic.h:421
trace_return_t pajeAddEvent(varPrec time, const char *type, const char *cont, const char *val)
Add an Event.
gtg_paje_edp_t * first
Definition: GTGPaje_Basic.h:461
trace_return_t pajeAddEventType(const char *alias, const char *contType, const char *name)
Add an Event Type.
Definition: GTGPaje_Basic.h:428
struct gtg_paje_edp_s * next
Definition: GTGPaje_Basic.h:452
trace_return_t pajeSubVar(varPrec time, const char *type, const char *cont, varPrec val)
Substract a value from a Variable.
Definition: GTGPaje_Basic.h:435
Definition: GTGPaje_Basic.h:422
trace_return_t pajeEndTrace()
Finalize a PAJE trace.
GTGBasic is a basic interface to generate trace in various formats.
trace_return_t pajeAddContType(const char *alias, const char *contType, const char *name)
Add a Container Type.
trace_return_t pajeSetVar(varPrec time, const char *type, const char *cont, varPrec val)
Set a Variable value.
Definition: GTGPaje_Basic.h:426
Definition: GTGPaje_Basic.h:427
char * pajeGetName(int rk)
Function to get the name of the file containing all the data for the proc of rank rk...
trace_return_t pajePushState(varPrec time, const char *type, const char *cont, const char *val)
Save the current State on a stack and change the State of a Container.
Definition: GTGPaje_Basic.h:432
enum gtg_paje_fieldtype_e type
Definition: GTGPaje_Basic.h:454
Definition: GTGPaje_Basic.h:444
Definition: GTGPaje_Basic.h:434
Definition: GTGPaje_Basic.h:442
Definition: GTGPaje_Basic.h:447
trace_return_t pajeAddLinkType(const char *alias, const char *name, const char *contType, const char *srcContType, const char *destContType)
Add a Link Type.
Definition: GTGPaje_Basic.h:419
trace_return_t pajeSetCompress(int val)
Enable trace compression.
trace_return_t pajeEndLink(varPrec time, const char *type, const char *cont, const char *dest, const char *val, const char *key)
Start a link.
trace_return_t pajeInitTrace(const char *filename, int rank, gtg_flag_t flags, int fmt)
Initialize a VITE trace ( *.ept)
Definition: GTGPaje_Basic.h:437
Definition: GTGPaje_Basic.h:423
gtg_paje_evtdef_e
Definition: GTGPaje_Basic.h:418
Definition: GTGPaje_Basic.h:445
Definition: GTGPaje_Basic.h:436
trace_return_t pajeAddVar(varPrec time, const char *type, const char *cont, varPrec val)
Add a value to a Variable.
trace_return_t pajeStartLink(varPrec time, const char *type, const char *cont, const char *src, const char *val, const char *key)
Start a link.
trace_return_t pajeSetState(varPrec time, const char *type, const char *cont, const char *val)
Set the State of a Container.
Definition: GTGPaje_Basic.h:420
gtg_paje_fieldtype_e
Definition: GTGPaje_Basic.h:441
gtg-trace-0.2-2+dfsg/doc/html/html/GTGReplay_8h.html000066400000000000000000000213741234554746700220760ustar00rootroot00000000000000 Generic Trace Generator (GTG): GTGReplay.h File Reference
Generic Trace Generator (GTG)  0.1
GTGReplay.h File Reference

This file defines functions for postponing event-processing function calls. More...

Go to the source code of this file.

Enumerations

enum  event_type_t {
  event_addContainer, event_destroyContainer, event_setState, event_pushState,
  event_popState, event_addEvent, event_startLink, event_endLink,
  event_setVar, event_addVar, event_subVar
}
 

Functions

void gtg_record (enum event_type_t type, varPrec time,...)
 postpone the recording of an event More...
 
void gtg_write_events (long nb_events_to_write)
 run the first nb_events_to_write events More...
 

Detailed Description

This file defines functions for postponing event-processing function calls.

Version
0.1

Enumeration Type Documentation

Enumerator
event_addContainer 
event_destroyContainer 
event_setState 
event_pushState 
event_popState 
event_addEvent 
event_startLink 
event_endLink 
event_setVar 
event_addVar 
event_subVar 
gtg-trace-0.2-2+dfsg/doc/html/html/GTGReplay_8h_source.html000066400000000000000000000307151234554746700234550ustar00rootroot00000000000000 Generic Trace Generator (GTG): GTGReplay.h Source File
Generic Trace Generator (GTG)  0.1
GTGReplay.h
Go to the documentation of this file.
1 
9 #ifndef GTG_REPLAY_H
10 #define GTG_REPLAY_H
11 
27 };
28 
36 void gtg_record(enum event_type_t type, varPrec time, ...);
37 
44 void gtg_write_events(long nb_events_to_write);
45 
46 #endif /* GTG_REPLAY_H */
event_type_t
Definition: GTGReplay.h:15
Definition: GTGReplay.h:17
double varPrec
Use the double precision type for time and value.
Definition: GTGTypes.h:28
Definition: GTGReplay.h:21
Definition: GTGReplay.h:24
Definition: GTGReplay.h:25
Definition: GTGReplay.h:18
Definition: GTGReplay.h:22
void gtg_write_events(long nb_events_to_write)
run the first nb_events_to_write events
Definition: GTGReplay.h:26
Definition: GTGReplay.h:23
Definition: GTGReplay.h:20
Definition: GTGReplay.h:19
void gtg_record(enum event_type_t type, varPrec time,...)
postpone the recording of an event
Definition: GTGReplay.h:16
gtg-trace-0.2-2+dfsg/doc/html/html/GTGStack_8h.html000066400000000000000000000332421234554746700217040ustar00rootroot00000000000000 Generic Trace Generator (GTG): GTGStack.h File Reference
Generic Trace Generator (GTG)  0.1
GTGStack.h File Reference
#include "GTGList.h"

Go to the source code of this file.

Macros

#define GTG_STACK_INIT(ptr)   GTG_LIST_INIT(ptr)
 
#define GTG_STACK(ptr)   GTG_LIST(ptr)
 
#define gtg_stack_entry(ptr, type, member)   gtg_list_entry(ptr, type, member)
 

Typedefs

typedef struct gtg_list gtg_stack
 
typedef gtg_stackgtg_stack_t
 

Functions

static void gtg_stack_push (gtg_stack_t lnew, gtg_stack_t p_stack)
 
static void gtg_stack_pop (gtg_stack_t p_stack)
 
static gtg_stack_t gtg_stack_top (gtg_stack_t p_stack)
 
static int gtg_stack_empty (gtg_stack_t p_stack)
 

Macro Definition Documentation

#define GTG_STACK (   ptr)    GTG_LIST(ptr)
#define gtg_stack_entry (   ptr,
  type,
  member 
)    gtg_list_entry(ptr, type, member)
#define GTG_STACK_INIT (   ptr)    GTG_LIST_INIT(ptr)

Typedef Documentation

typedef struct gtg_list gtg_stack

Function Documentation

static int gtg_stack_empty ( gtg_stack_t  p_stack)
inlinestatic
static void gtg_stack_pop ( gtg_stack_t  p_stack)
inlinestatic
static void gtg_stack_push ( gtg_stack_t  lnew,
gtg_stack_t  p_stack 
)
inlinestatic
static gtg_stack_t gtg_stack_top ( gtg_stack_t  p_stack)
inlinestatic
gtg-trace-0.2-2+dfsg/doc/html/html/GTGStack_8h_source.html000066400000000000000000000270121234554746700232620ustar00rootroot00000000000000 Generic Trace Generator (GTG): GTGStack.h Source File
Generic Trace Generator (GTG)  0.1
GTGStack.h
Go to the documentation of this file.
1 #ifndef GTG_STACK_H
2 #define GTG_STACK_H
3 
4 #include "GTGList.h"
5 
6 typedef struct gtg_list gtg_stack;
8 
9 #define GTG_STACK_INIT(ptr) GTG_LIST_INIT(ptr)
10 
11 #define GTG_STACK(ptr) GTG_LIST(ptr)
12 
13 #define gtg_stack_entry(ptr, type, member) gtg_list_entry(ptr, type, member)
14 
15 static inline void gtg_stack_push(gtg_stack_t lnew, gtg_stack_t p_stack)
16 {
17  gtg_list_add_tail(lnew, p_stack);
18 }
19 
20 static inline void gtg_stack_pop(gtg_stack_t p_stack)
21 {
22  gtg_list_del(p_stack->prev);
23 }
24 
25 static inline gtg_stack_t gtg_stack_top(gtg_stack_t p_stack)
26 {
27  return p_stack->prev;
28 }
29 
30 static inline int gtg_stack_empty(gtg_stack_t p_stack)
31 {
32  return p_stack->prev == p_stack;
33 }
34 
35 #endif /* GTG_STACK_H */
Definition: GTGList.h:4
struct gtg_list * prev
Definition: GTGList.h:5
static void gtg_list_del(gtg_list_t entry)
delete an entry from its list and reinitialize it.
Definition: GTGList.h:99
static void gtg_stack_push(gtg_stack_t lnew, gtg_stack_t p_stack)
Definition: GTGStack.h:15
gtg_stack * gtg_stack_t
Definition: GTGStack.h:7
static int gtg_stack_empty(gtg_stack_t p_stack)
Definition: GTGStack.h:30
static gtg_stack_t gtg_stack_top(gtg_stack_t p_stack)
Definition: GTGStack.h:25
static void gtg_stack_pop(gtg_stack_t p_stack)
Definition: GTGStack.h:20
static void gtg_list_add_tail(gtg_list_t lnew, gtg_list_t head)
Insert a new entry before the specified head (ie. at the tail of the list).
Definition: GTGList.h:76
gtg-trace-0.2-2+dfsg/doc/html/html/GTGTypes_8h.html000066400000000000000000000131251234554746700217410ustar00rootroot00000000000000 Generic Trace Generator (GTG): GTGTypes.h File Reference
Generic Trace Generator (GTG)  0.1
GTGTypes.h File Reference

Go to the source code of this file.

Typedefs

typedef double varPrec
 Use the double precision type for time and value. More...
 
typedef enum trace_return_t trace_return_t
 

Enumerations

enum  trace_return_t {
  TRACE_SUCCESS, TRACE_ERR_OPEN, TRACE_ERR_CLOSE, TRACE_ERR_WRITE,
  TRACE_ERR_NOT_IMPL
}
 Define various return values. More...
 

Typedef Documentation

gtg-trace-0.2-2+dfsg/doc/html/html/GTGTypes_8h_source.html000066400000000000000000000174411234554746700233260ustar00rootroot00000000000000 Generic Trace Generator (GTG): GTGTypes.h Source File
Generic Trace Generator (GTG)  0.1
GTGTypes.h
Go to the documentation of this file.
1 
18 #ifndef _GTG_TYPES_H_
19 #define _GTG_TYPES_H_
20 
28 typedef double varPrec;
29 
35 typedef enum trace_return_t{
42 
43 #endif /* _GTG_TYPES_H_ */
Definition: GTGTypes.h:39
double varPrec
Use the double precision type for time and value.
Definition: GTGTypes.h:28
Definition: GTGTypes.h:40
trace_return_t
Define various return values.
Definition: GTGTypes.h:35
Definition: GTGTypes.h:38
Definition: GTGTypes.h:37
Definition: GTGTypes.h:36
gtg-trace-0.2-2+dfsg/doc/html/html/GTG_8h.html000066400000000000000000000121151234554746700207120ustar00rootroot00000000000000 Generic Trace Generator (GTG): GTG.h File Reference
Generic Trace Generator (GTG)  0.1
GTG.h File Reference
gtg-trace-0.2-2+dfsg/doc/html/html/GTG_8h_source.html000066400000000000000000000104161234554746700222740ustar00rootroot00000000000000 Generic Trace Generator (GTG): GTG.h Source File
Generic Trace Generator (GTG)  0.1
GTG.h
Go to the documentation of this file.
1 
27 #ifndef _GTG_H_
28 #define _GTG_H_
29 
30 #include <stdint.h>
31 #include "GTGTypes.h"
32 #include "GTGColor.h"
33 #include "GTGBasic.h"
34 
35 #endif /* _GTG_H_ */
GTGBasic is a basic interface to generate trace in various formats.
This file defines some useful colors to use in entity values for GTG.
gtg-trace-0.2-2+dfsg/doc/html/html/GTG__EZTrace_8h.html000066400000000000000000001372001234554746700224310ustar00rootroot00000000000000 Generic Trace Generator (GTG): GTG_EZTrace.h File Reference
Generic Trace Generator (GTG)  0.1
GTG_EZTrace.h File Reference
#include <stdlib.h>
#include <string.h>
#include "GTGColor.h"
#include "GTGTypes.h"

Go to the source code of this file.

Macros

#define GTG_FLAG_NONE   0
 No flag specified. More...
 
#define GTG_FLAG_USE_MPI   1
 Several MPI processes are currently using GTG. More...
 
#define GTG_FLAG_NOTBUF   2
 For writing the traces in a non-buffered mode. More...
 
#define GTG_FLAG_OUTOFORDER   4
 Allow the application to record events out of order. More...
 

Typedefs

typedef uint8_t gtg_flag_t
 Flags that can be specified to GTG. More...
 
typedef enum traceType traceType_t
 

Enumerations

enum  traceType {
  PAJE, VITE, OTF, TAU,
  PAJE, VITE, OTF, TAU
}
 The type of the output trace. More...
 

Functions

void gtg_setTraceType (traceType_t type)
 
traceType_t gtg_getTraceType ()
 
char * gtg_getName (int procRk)
 
int gtg_bufferedModeActivated ()
 
trace_return_t gtg_initTrace (const char *filename, int rank, gtg_flag_t flags)
 
trace_return_t gtg_endTrace ()
 
trace_return_t gtg_setCompress (int val)
 
trace_return_t gtg_addContType (const char *alias, const char *contType, const char *name)
 
trace_return_t gtg_addStateType (const char *alias, const char *contType, const char *name)
 
trace_return_t gtg_addEventType (const char *alias, const char *contType, const char *name)
 
trace_return_t gtg_addLinkType (const char *alias, const char *name, const char *contType, const char *srcContType, const char *destContType)
 
trace_return_t gtg_addVarType (const char *alias, const char *name, const char *contType)
 
trace_return_t gtg_addEntityValue (const char *alias, const char *entType, const char *name, gtg_color_t p_color)
 
trace_return_t gtg_addContainer (varPrec time, const char *alias, const char *type, const char *container, const char *name, const char *file)
 
trace_return_t gtg_destroyContainer (varPrec time, const char *name, const char *type)
 
trace_return_t gtg_setState (varPrec time, const char *type, const char *cont, const char *val)
 
trace_return_t gtg_pushState (varPrec time, const char *type, const char *cont, const char *val)
 
trace_return_t gtg_popState (varPrec time, const char *type, const char *cont)
 
trace_return_t gtg_addEvent (varPrec time, const char *type, const char *cont, const char *val)
 
trace_return_t gtg_startLink (varPrec time, const char *type, const char *cont, const char *src, const char *dest, const char *val, const char *key)
 
trace_return_t gtg_endLink (varPrec time, const char *type, const char *cont, const char *src, const char *dest, const char *val, const char *key)
 
trace_return_t gtg_setVar (varPrec time, const char *type, const char *cont, varPrec val)
 
trace_return_t addVar (varPrec time, const char *type, const char *cont, varPrec val)
 Add a value to a Variable. More...
 
trace_return_t subVar (varPrec time, const char *type, const char *cont, varPrec val)
 Substract a value from a Variable. More...
 
trace_return_t AddComment (const char *comment)
 Add some Comment in Trace file. More...
 

Macro Definition Documentation

#define GTG_FLAG_NONE   0

No flag specified.

#define GTG_FLAG_NOTBUF   2

For writing the traces in a non-buffered mode.

#define GTG_FLAG_OUTOFORDER   4

Allow the application to record events out of order.

#define GTG_FLAG_USE_MPI   1

Several MPI processes are currently using GTG.

Typedef Documentation

typedef uint8_t gtg_flag_t

Flags that can be specified to GTG.

typedef enum traceType traceType_t

Function Documentation

trace_return_t gtg_addContainer ( varPrec  time,
const char *  alias,
const char *  type,
const char *  container,
const char *  name,
const char *  file 
)
trace_return_t gtg_addContType ( const char *  alias,
const char *  contType,
const char *  name 
)
trace_return_t gtg_addEntityValue ( const char *  alias,
const char *  entType,
const char *  name,
gtg_color_t  p_color 
)
trace_return_t gtg_addEvent ( varPrec  time,
const char *  type,
const char *  cont,
const char *  val 
)
trace_return_t gtg_addEventType ( const char *  alias,
const char *  contType,
const char *  name 
)
trace_return_t gtg_addLinkType ( const char *  alias,
const char *  name,
const char *  contType,
const char *  srcContType,
const char *  destContType 
)
trace_return_t gtg_addStateType ( const char *  alias,
const char *  contType,
const char *  name 
)
trace_return_t gtg_addVarType ( const char *  alias,
const char *  name,
const char *  contType 
)
int gtg_bufferedModeActivated ( )
trace_return_t gtg_destroyContainer ( varPrec  time,
const char *  name,
const char *  type 
)
trace_return_t gtg_endLink ( varPrec  time,
const char *  type,
const char *  cont,
const char *  src,
const char *  dest,
const char *  val,
const char *  key 
)
trace_return_t gtg_endTrace ( )
char* gtg_getName ( int  procRk)
traceType_t gtg_getTraceType ( )
trace_return_t gtg_initTrace ( const char *  filename,
int  rank,
gtg_flag_t  flags 
)
trace_return_t gtg_popState ( varPrec  time,
const char *  type,
const char *  cont 
)
trace_return_t gtg_pushState ( varPrec  time,
const char *  type,
const char *  cont,
const char *  val 
)
trace_return_t gtg_setCompress ( int  val)
trace_return_t gtg_setState ( varPrec  time,
const char *  type,
const char *  cont,
const char *  val 
)
void gtg_setTraceType ( traceType_t  type)
trace_return_t gtg_setVar ( varPrec  time,
const char *  type,
const char *  cont,
varPrec  val 
)
trace_return_t gtg_startLink ( varPrec  time,
const char *  type,
const char *  cont,
const char *  src,
const char *  dest,
const char *  val,
const char *  key 
)
gtg-trace-0.2-2+dfsg/doc/html/html/GTG__EZTrace_8h_source.html000066400000000000000000001063741234554746700240210ustar00rootroot00000000000000 Generic Trace Generator (GTG): GTG_EZTrace.h Source File
Generic Trace Generator (GTG)  0.1
GTG_EZTrace.h
Go to the documentation of this file.
1 
21 #ifndef _GTG_BASIC_H_
22 #define _GTG_BASIC_H_
23 #include <stdlib.h>
24 #include <string.h>
25 #include "GTGColor.h"
26 #include "GTGTypes.h"
27 
31 #define GTG_FLAG_NONE 0
32 
36 #define GTG_FLAG_USE_MPI 1
37 
41 #define GTG_FLAG_NOTBUF 2
42 
46 #define GTG_FLAG_OUTOFORDER 4
47 
51 typedef uint8_t gtg_flag_t;
52 
53 
64 typedef enum traceType{
65  PAJE,
66  VITE,
67  OTF,
68  TAU
70 
77 void gtg_setTraceType (traceType_t type);
78 
86 
94 char* gtg_getName (int procRk);
95 
104 
105 
119 trace_return_t gtg_initTrace (const char* filename, int rank, gtg_flag_t flags);
120 
138 
154 trace_return_t gtg_addContType (const char* alias, const char* contType,
155  const char* name);
156 
172 trace_return_t gtg_addStateType (const char* alias, const char* contType,
173  const char* name);
174 
190 trace_return_t gtg_addEventType (const char* alias, const char* contType,
191  const char* name);
192 
212 trace_return_t gtg_addLinkType (const char* alias , const char* name,
213  const char* contType, const char* srcContType,
214  const char* destContType);
215 
231 trace_return_t gtg_addVarType (const char* alias , const char* name,
232  const char* contType);
233 
248 trace_return_t gtg_addEntityValue (const char* alias, const char* entType,
249  const char* name , gtg_color_t p_color);
250 
269 trace_return_t gtg_addContainer (varPrec time, const char* alias ,
270  const char* type, const char* container,
271  const char* name, const char* file);
272 
285 trace_return_t gtg_destroyContainer (varPrec time, const char* name,
286  const char* type);
287 
302 trace_return_t gtg_setState (varPrec time, const char* type,
303  const char* cont, const char* val);
304 
319 trace_return_t gtg_pushState (varPrec time, const char* type,
320  const char* cont, const char* val);
321 
334 trace_return_t gtg_popState (varPrec time, const char* type,
335  const char* cont);
336 
351 trace_return_t gtg_addEvent (varPrec time, const char* type,
352  const char* cont, const char* val);
353 
374 trace_return_t gtg_startLink (varPrec time, const char* type,
375  const char* cont, const char* src,
376  const char* dest, const char* val,
377  const char* key);
378 
399 trace_return_t gtg_endLink (varPrec time, const char* type,
400  const char* cont, const char* src,
401  const char* dest, const char* val,
402  const char* key);
403 
418 trace_return_t gtg_setVar (varPrec time, const char* type,
419  const char* cont, varPrec val);
420 
435 trace_return_t addVar (varPrec time, const char* type,
436  const char* cont, varPrec val);
437 
453 trace_return_t subVar (varPrec time, const char* type,
454  const char* cont, varPrec val);
455 
465 trace_return_t AddComment (const char* comment);
466 #endif /* _GTG_BASIC_H_ */
trace_return_t gtg_startLink(varPrec time, const char *type, const char *cont, const char *src, const char *dest, const char *val, const char *key)
trace_return_t gtg_endLink(varPrec time, const char *type, const char *cont, const char *src, const char *dest, const char *val, const char *key)
trace_return_t gtg_addContType(const char *alias, const char *contType, const char *name)
trace_return_t gtg_pushState(varPrec time, const char *type, const char *cont, const char *val)
double varPrec
Use the double precision type for time and value.
Definition: GTGTypes.h:28
uint8_t gtg_flag_t
Flags that can be specified to GTG.
Definition: GTG_EZTrace.h:51
trace_return_t gtg_addContainer(varPrec time, const char *alias, const char *type, const char *container, const char *name, const char *file)
Definition: GTG_EZTrace.h:66
trace_return_t gtg_initTrace(const char *filename, int rank, gtg_flag_t flags)
trace_return_t gtg_addVarType(const char *alias, const char *name, const char *contType)
trace_return_t addVar(varPrec time, const char *type, const char *cont, varPrec val)
Add a value to a Variable.
trace_return_t
Define various return values.
Definition: GTGTypes.h:35
trace_return_t gtg_popState(varPrec time, const char *type, const char *cont)
trace_return_t gtg_endTrace()
int gtg_bufferedModeActivated()
trace_return_t gtg_addEntityValue(const char *alias, const char *entType, const char *name, gtg_color_t p_color)
char * gtg_getName(int procRk)
Definition: GTG_EZTrace.h:65
trace_return_t gtg_setState(varPrec time, const char *type, const char *cont, const char *val)
void gtg_setTraceType(traceType_t type)
trace_return_t AddComment(const char *comment)
Add some Comment in Trace file.
trace_return_t gtg_addEvent(varPrec time, const char *type, const char *cont, const char *val)
trace_return_t gtg_destroyContainer(varPrec time, const char *name, const char *type)
This file defines some useful colors to use in entity values for GTG.
This structure defines a color that can be used by GTG.
Definition: GTGColor.h:25
Definition: GTG_EZTrace.h:67
trace_return_t subVar(varPrec time, const char *type, const char *cont, varPrec val)
Substract a value from a Variable.
trace_return_t gtg_addEventType(const char *alias, const char *contType, const char *name)
trace_return_t gtg_setCompress(int val)
trace_return_t gtg_addLinkType(const char *alias, const char *name, const char *contType, const char *srcContType, const char *destContType)
Definition: GTG_EZTrace.h:68
trace_return_t gtg_addStateType(const char *alias, const char *contType, const char *name)
enum traceType traceType_t
traceType_t gtg_getTraceType()
traceType
The type of the output trace.
Definition: GTG_EZTrace.h:64
trace_return_t gtg_setVar(varPrec time, const char *type, const char *cont, varPrec val)
gtg-trace-0.2-2+dfsg/doc/html/html/annotated.html000066400000000000000000000152571234554746700216610ustar00rootroot00000000000000 Generic Trace Generator (GTG): Data Structures
Data Structures
Here are the data structures with brief descriptions:
 C__OTF2_String
 CContainer
 CContainerType
 CEntityValue
 CEventType
 Cgtg_colorThis structure defines a color that can be used by GTG
 Cgtg_list
 Cgtg_memory
 Cgtg_paje_edp_s
 Cgtg_paje_eventdef_s
 CLink
 CLinkType
 Cotf_color
 CState
 CStateType
 CVariable
 CVariableType
gtg-trace-0.2-2+dfsg/doc/html/html/bc_s.png000066400000000000000000000012441234554746700204210ustar00rootroot00000000000000‰PNG  IHDR€_ kIDATxíťËkQĆĎťąÉ̤I&“¦mš&156*nÄ…”ܸR,4 +Hµ(U­b”Ş1‚ŠŹJ.ş(E·mߏúhëJmKS'C›(‚čäŃ…¤ď &äÖţ ‡ďrÎĺü3gö(z÷ýŇ&_9ó}’Őź@‰mÚu ` Řh`ń÷ÔŻ  „ú&·ńń×Ů~“˝—Üň‡ÎÝŃM4¸%‰3˛§?Ęęh)€˙ů™\ÄYi>Jb @gűßiŢú˛Ńkg§ăę\č˝­šEťUćťv+?E€î"pćÖŰB\Y&đŘó$vM+ę’DnĽ)}ňţ:§Xoâ 3ŠÚŻ'Żż.‚fÁ0ěuŠ9ňLýj€f6¸%«3Gf”Ô#Ôsm(,ůĂk*Ę’łJŞ…ŻĽJˢo䆔Ľu_~ °r]%%mnu]z°r5[Íư«Úň•Xeµ’†Iů<ČčĐĹg@IÔÚŢŕµë3‚:/<JÇ’ĐQ) ńą…tÚß÷(Mű\63éCgl!ýí;˙¸4Ůhâń=÷Zë29­w’ÝŇ´·V;ĘL3j&7©·ş˝÷a!I†)ëë$-öÇÓúł›‹7tIVľVŕńÔübf¨8ˇČB<﫵imn˙śČ‡„ lߣů‡ŰD —#É5“­'Ć4?쬲řM’™›°»g¬‚|5Ĺçµ˝GNdÓĐr|ô”Ă&„ě"7+'ł@ 5‡G➑Džâɬ^;őă–.3Ňr"ý_RłżÂ@˛oIľĺ$IEND®B`‚gtg-trace-0.2-2+dfsg/doc/html/html/bdwn.png000066400000000000000000000002231234554746700204410ustar00rootroot00000000000000‰PNG  IHDR5ĺZIDATxíťË € DźP–1ńlžmŔ r±j˛.e č†D[ŘÉľŮĎÔĽµ¦ă´Ţ|陣6€Všë3´Ĺ?Ls'(}¬>+ žKó÷Ążch`‚ ^×ŢŤnIEND®B`‚gtg-trace-0.2-2+dfsg/doc/html/html/classes.html000066400000000000000000000145501234554746700213340ustar00rootroot00000000000000 Generic Trace Generator (GTG): Data Structure Index
Data Structure Index
C | E | G | L | O | S | V | _
  C  
EventType   StateType   
  g  
  o  
  L  
  V  
Container   gtg_color   otf_color   
ContainerType   Link   Variable   gtg_list   
  E  
LinkType   VariableType   gtg_memory   
  S  
  _  
gtg_paje_edp_s   
EntityValue   gtg_paje_eventdef_s   
State   __OTF2_String   
C | E | G | L | O | S | V | _
gtg-trace-0.2-2+dfsg/doc/html/html/closed.png000066400000000000000000000002041234554746700207570ustar00rootroot00000000000000‰PNG  IHDR ŕ‘KIDATxíÝm @!†ŃGk™É7Ŕ-`&séts¦Ŕńţňđ@ĺk}Ş2€Ť… P%Á_ËţżN˛ .:0DkĄ‹Â›x" Ö›)ˇxŇ5őIEND®B`‚gtg-trace-0.2-2+dfsg/doc/html/html/dir_bfccd401955b95cf8c75461437045ac0.html000066400000000000000000000220731234554746700250330ustar00rootroot00000000000000 Generic Trace Generator (GTG): inc Directory Reference
Generic Trace Generator (GTG)  0.1
inc Directory Reference

Files

file  GTG.h [code]
 Generic header to include.
 
file  GTG_EZTrace.h [code]
 
file  GTGBasic.h [code]
 GTGBasic is a basic interface to generate trace in various formats.
 
file  GTGColor.h [code]
 This file defines some useful colors to use in entity values for GTG.
 
file  GTGCompress.h [code]
 
file  GTGList.h [code]
 
file  GTGMemory.h [code]
 This file defines a fast allocator for fixed-size blocks.
 
file  GTGOTF.h [code]
 OTF is the global file for gtg interface using OTF.
 
file  GTGOTF2_Structs.h [code]
 
file  GTGOTF_Basic.h [code]
 OTF_GTGBasic1 is the OTF implementation of the basic interface to generate traces (GTGBasic1).
 
file  GTGOTF_Structs.h [code]
 OTF_Structs gives the global types and functions needed to have the OTF implementation.
 
file  GTGPaje.h [code]
 pajeColor is a file that defines function that manipulate colors.
 
file  GTGPaje_Basic.h [code]
 paje_GTGBasic1 is the Paje implementation of the basic interface to generate traces (GTGBasic1).
 
file  GTGReplay.h [code]
 This file defines functions for postponing event-processing function calls.
 
file  GTGStack.h [code]
 
file  GTGTypes.h [code]
 
gtg-trace-0.2-2+dfsg/doc/html/html/doxygen.css000066400000000000000000000614231234554746700212010ustar00rootroot00000000000000/* The standard CSS for doxygen 1.8.7 */ body, table, div, p, dl { font: 400 14px/22px Roboto,sans-serif; } /* @group Heading Levels */ h1.groupheader { font-size: 150%; } .title { font: 400 14px/28px Roboto,sans-serif; font-size: 150%; font-weight: bold; margin: 10px 2px; } h2.groupheader { border-bottom: 1px solid #879ECB; color: #354C7B; font-size: 150%; font-weight: normal; margin-top: 1.75em; padding-top: 8px; padding-bottom: 4px; width: 100%; } h3.groupheader { font-size: 100%; } h1, h2, h3, h4, h5, h6 { -webkit-transition: text-shadow 0.5s linear; -moz-transition: text-shadow 0.5s linear; -ms-transition: text-shadow 0.5s linear; -o-transition: text-shadow 0.5s linear; transition: text-shadow 0.5s linear; margin-right: 15px; } h1.glow, h2.glow, h3.glow, h4.glow, h5.glow, h6.glow { text-shadow: 0 0 15px cyan; } dt { font-weight: bold; } div.multicol { -moz-column-gap: 1em; -webkit-column-gap: 1em; -moz-column-count: 3; -webkit-column-count: 3; } p.startli, p.startdd { margin-top: 2px; } p.starttd { margin-top: 0px; } p.endli { margin-bottom: 0px; } p.enddd { margin-bottom: 4px; } p.endtd { margin-bottom: 2px; } /* @end */ caption { font-weight: bold; } span.legend { font-size: 70%; text-align: center; } h3.version { font-size: 90%; text-align: center; } div.qindex, div.navtab{ background-color: #EBEFF6; border: 1px solid #A3B4D7; text-align: center; } div.qindex, div.navpath { width: 100%; line-height: 140%; } div.navtab { margin-right: 15px; } /* @group Link Styling */ a { color: #3D578C; font-weight: normal; text-decoration: none; } .contents a:visited { color: #4665A2; } a:hover { text-decoration: underline; } a.qindex { font-weight: bold; } a.qindexHL { font-weight: bold; background-color: #9CAFD4; color: #ffffff; border: 1px double #869DCA; } .contents a.qindexHL:visited { color: #ffffff; } a.el { font-weight: bold; } a.elRef { } a.code, a.code:visited, a.line, a.line:visited { color: #4665A2; } a.codeRef, a.codeRef:visited, a.lineRef, a.lineRef:visited { color: #4665A2; } /* @end */ dl.el { margin-left: -1cm; } pre.fragment { border: 1px solid #C4CFE5; background-color: #FBFCFD; padding: 4px 6px; margin: 4px 8px 4px 2px; overflow: auto; word-wrap: break-word; font-size: 9pt; line-height: 125%; font-family: monospace, fixed; font-size: 105%; } div.fragment { padding: 4px 6px; margin: 4px 8px 4px 2px; background-color: #FBFCFD; border: 1px solid #C4CFE5; } div.line { font-family: monospace, fixed; font-size: 13px; min-height: 13px; line-height: 1.0; text-wrap: unrestricted; white-space: -moz-pre-wrap; /* Moz */ white-space: -pre-wrap; /* Opera 4-6 */ white-space: -o-pre-wrap; /* Opera 7 */ white-space: pre-wrap; /* CSS3 */ word-wrap: break-word; /* IE 5.5+ */ text-indent: -53px; padding-left: 53px; padding-bottom: 0px; margin: 0px; -webkit-transition-property: background-color, box-shadow; -webkit-transition-duration: 0.5s; -moz-transition-property: background-color, box-shadow; -moz-transition-duration: 0.5s; -ms-transition-property: background-color, box-shadow; -ms-transition-duration: 0.5s; -o-transition-property: background-color, box-shadow; -o-transition-duration: 0.5s; transition-property: background-color, box-shadow; transition-duration: 0.5s; } div.line.glow { background-color: cyan; box-shadow: 0 0 10px cyan; } span.lineno { padding-right: 4px; text-align: right; border-right: 2px solid #0F0; background-color: #E8E8E8; white-space: pre; } span.lineno a { background-color: #D8D8D8; } span.lineno a:hover { background-color: #C8C8C8; } div.ah { background-color: black; font-weight: bold; color: #ffffff; margin-bottom: 3px; margin-top: 3px; padding: 0.2em; border: solid thin #333; border-radius: 0.5em; -webkit-border-radius: .5em; -moz-border-radius: .5em; box-shadow: 2px 2px 3px #999; -webkit-box-shadow: 2px 2px 3px #999; -moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px; background-image: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#000),color-stop(0.3, #444)); background-image: -moz-linear-gradient(center top, #eee 0%, #444 40%, #000); } div.groupHeader { margin-left: 16px; margin-top: 12px; font-weight: bold; } div.groupText { margin-left: 16px; font-style: italic; } body { background-color: white; color: black; margin: 0; } div.contents { margin-top: 10px; margin-left: 12px; margin-right: 8px; } td.indexkey { background-color: #EBEFF6; font-weight: bold; border: 1px solid #C4CFE5; margin: 2px 0px 2px 0; padding: 2px 10px; white-space: nowrap; vertical-align: top; } td.indexvalue { background-color: #EBEFF6; border: 1px solid #C4CFE5; padding: 2px 10px; margin: 2px 0px; } tr.memlist { background-color: #EEF1F7; } p.formulaDsp { text-align: center; } img.formulaDsp { } img.formulaInl { vertical-align: middle; } div.center { text-align: center; margin-top: 0px; margin-bottom: 0px; padding: 0px; } div.center img { border: 0px; } address.footer { text-align: right; padding-right: 12px; } img.footer { border: 0px; vertical-align: middle; } /* @group Code Colorization */ span.keyword { color: #008000 } span.keywordtype { color: #604020 } span.keywordflow { color: #e08000 } span.comment { color: #800000 } span.preprocessor { color: #806020 } span.stringliteral { color: #002080 } span.charliteral { color: #008080 } span.vhdldigit { color: #ff00ff } span.vhdlchar { color: #000000 } span.vhdlkeyword { color: #700070 } span.vhdllogic { color: #ff0000 } blockquote { background-color: #F7F8FB; border-left: 2px solid #9CAFD4; margin: 0 24px 0 4px; padding: 0 12px 0 16px; } /* @end */ /* .search { color: #003399; font-weight: bold; } form.search { margin-bottom: 0px; margin-top: 0px; } input.search { font-size: 75%; color: #000080; font-weight: normal; background-color: #e8eef2; } */ td.tiny { font-size: 75%; } .dirtab { padding: 4px; border-collapse: collapse; border: 1px solid #A3B4D7; } th.dirtab { background: #EBEFF6; font-weight: bold; } hr { height: 0px; border: none; border-top: 1px solid #4A6AAA; } hr.footer { height: 1px; } /* @group Member Descriptions */ table.memberdecls { border-spacing: 0px; padding: 0px; } .memberdecls td, .fieldtable tr { -webkit-transition-property: background-color, box-shadow; -webkit-transition-duration: 0.5s; -moz-transition-property: background-color, box-shadow; -moz-transition-duration: 0.5s; -ms-transition-property: background-color, box-shadow; -ms-transition-duration: 0.5s; -o-transition-property: background-color, box-shadow; -o-transition-duration: 0.5s; transition-property: background-color, box-shadow; transition-duration: 0.5s; } .memberdecls td.glow, .fieldtable tr.glow { background-color: cyan; box-shadow: 0 0 15px cyan; } .mdescLeft, .mdescRight, .memItemLeft, .memItemRight, .memTemplItemLeft, .memTemplItemRight, .memTemplParams { background-color: #F9FAFC; border: none; margin: 4px; padding: 1px 0 0 8px; } .mdescLeft, .mdescRight { padding: 0px 8px 4px 8px; color: #555; } .memSeparator { border-bottom: 1px solid #DEE4F0; line-height: 1px; margin: 0px; padding: 0px; } .memItemLeft, .memTemplItemLeft { white-space: nowrap; } .memItemRight { width: 100%; } .memTemplParams { color: #4665A2; white-space: nowrap; font-size: 80%; } /* @end */ /* @group Member Details */ /* Styles for detailed member documentation */ .memtemplate { font-size: 80%; color: #4665A2; font-weight: normal; margin-left: 9px; } .memnav { background-color: #EBEFF6; border: 1px solid #A3B4D7; text-align: center; margin: 2px; margin-right: 15px; padding: 2px; } .mempage { width: 100%; } .memitem { padding: 0; margin-bottom: 10px; margin-right: 5px; -webkit-transition: box-shadow 0.5s linear; -moz-transition: box-shadow 0.5s linear; -ms-transition: box-shadow 0.5s linear; -o-transition: box-shadow 0.5s linear; transition: box-shadow 0.5s linear; display: table !important; width: 100%; } .memitem.glow { box-shadow: 0 0 15px cyan; } .memname { font-weight: bold; margin-left: 6px; } .memname td { vertical-align: bottom; } .memproto, dl.reflist dt { border-top: 1px solid #A8B8D9; border-left: 1px solid #A8B8D9; border-right: 1px solid #A8B8D9; padding: 6px 0px 6px 0px; color: #253555; font-weight: bold; text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9); background-image:url('nav_f.png'); background-repeat:repeat-x; background-color: #E2E8F2; /* opera specific markup */ box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); border-top-right-radius: 4px; border-top-left-radius: 4px; /* firefox specific markup */ -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px; -moz-border-radius-topright: 4px; -moz-border-radius-topleft: 4px; /* webkit specific markup */ -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); -webkit-border-top-right-radius: 4px; -webkit-border-top-left-radius: 4px; } .memdoc, dl.reflist dd { border-bottom: 1px solid #A8B8D9; border-left: 1px solid #A8B8D9; border-right: 1px solid #A8B8D9; padding: 6px 10px 2px 10px; background-color: #FBFCFD; border-top-width: 0; background-image:url('nav_g.png'); background-repeat:repeat-x; background-color: #FFFFFF; /* opera specific markup */ border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); /* firefox specific markup */ -moz-border-radius-bottomleft: 4px; -moz-border-radius-bottomright: 4px; -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px; /* webkit specific markup */ -webkit-border-bottom-left-radius: 4px; -webkit-border-bottom-right-radius: 4px; -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); } dl.reflist dt { padding: 5px; } dl.reflist dd { margin: 0px 0px 10px 0px; padding: 5px; } .paramkey { text-align: right; } .paramtype { white-space: nowrap; } .paramname { color: #602020; white-space: nowrap; } .paramname em { font-style: normal; } .paramname code { line-height: 14px; } .params, .retval, .exception, .tparams { margin-left: 0px; padding-left: 0px; } .params .paramname, .retval .paramname { font-weight: bold; vertical-align: top; } .params .paramtype { font-style: italic; vertical-align: top; } .params .paramdir { font-family: "courier new",courier,monospace; vertical-align: top; } table.mlabels { border-spacing: 0px; } td.mlabels-left { width: 100%; padding: 0px; } td.mlabels-right { vertical-align: bottom; padding: 0px; white-space: nowrap; } span.mlabels { margin-left: 8px; } span.mlabel { background-color: #728DC1; border-top:1px solid #5373B4; border-left:1px solid #5373B4; border-right:1px solid #C4CFE5; border-bottom:1px solid #C4CFE5; text-shadow: none; color: white; margin-right: 4px; padding: 2px 3px; border-radius: 3px; font-size: 7pt; white-space: nowrap; vertical-align: middle; } /* @end */ /* these are for tree view inside a (index) page */ div.directory { margin: 10px 0px; border-top: 1px solid #9CAFD4; border-bottom: 1px solid #9CAFD4; width: 100%; } .directory table { border-collapse:collapse; } .directory td { margin: 0px; padding: 0px; vertical-align: top; } .directory td.entry { white-space: nowrap; padding-right: 6px; padding-top: 3px; } .directory td.entry a { outline:none; } .directory td.entry a img { border: none; } .directory td.desc { width: 100%; padding-left: 6px; padding-right: 6px; padding-top: 3px; border-left: 1px solid rgba(0,0,0,0.05); } .directory tr.even { padding-left: 6px; background-color: #F7F8FB; } .directory img { vertical-align: -30%; } .directory .levels { white-space: nowrap; width: 100%; text-align: right; font-size: 9pt; } .directory .levels span { cursor: pointer; padding-left: 2px; padding-right: 2px; color: #3D578C; } .arrow { color: #9CAFD4; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; cursor: pointer; font-size: 80%; display: inline-block; width: 16px; height: 22px; } .icon { font-family: Arial, Helvetica; font-weight: bold; font-size: 12px; height: 14px; width: 16px; display: inline-block; background-color: #728DC1; color: white; text-align: center; border-radius: 4px; margin-left: 2px; margin-right: 2px; } .icona { width: 24px; height: 22px; display: inline-block; } .iconfopen { width: 24px; height: 18px; margin-bottom: 4px; background-image:url('ftv2folderopen.png'); background-position: 0px -4px; background-repeat: repeat-y; vertical-align:top; display: inline-block; } .iconfclosed { width: 24px; height: 18px; margin-bottom: 4px; background-image:url('ftv2folderclosed.png'); background-position: 0px -4px; background-repeat: repeat-y; vertical-align:top; display: inline-block; } .icondoc { width: 24px; height: 18px; margin-bottom: 4px; background-image:url('ftv2doc.png'); background-position: 0px -4px; background-repeat: repeat-y; vertical-align:top; display: inline-block; } table.directory { font: 400 14px Roboto,sans-serif; } /* @end */ div.dynheader { margin-top: 8px; -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } address { font-style: normal; color: #2A3D61; } table.doxtable { border-collapse:collapse; margin-top: 4px; margin-bottom: 4px; } table.doxtable td, table.doxtable th { border: 1px solid #2D4068; padding: 3px 7px 2px; } table.doxtable th { background-color: #374F7F; color: #FFFFFF; font-size: 110%; padding-bottom: 4px; padding-top: 5px; } table.fieldtable { /*width: 100%;*/ margin-bottom: 10px; border: 1px solid #A8B8D9; border-spacing: 0px; -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; -moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px; -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15); box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15); } .fieldtable td, .fieldtable th { padding: 3px 7px 2px; } .fieldtable td.fieldtype, .fieldtable td.fieldname { white-space: nowrap; border-right: 1px solid #A8B8D9; border-bottom: 1px solid #A8B8D9; vertical-align: top; } .fieldtable td.fieldname { padding-top: 3px; } .fieldtable td.fielddoc { border-bottom: 1px solid #A8B8D9; /*width: 100%;*/ } .fieldtable td.fielddoc p:first-child { margin-top: 0px; } .fieldtable td.fielddoc p:last-child { margin-bottom: 2px; } .fieldtable tr:last-child td { border-bottom: none; } .fieldtable th { background-image:url('nav_f.png'); background-repeat:repeat-x; background-color: #E2E8F2; font-size: 90%; color: #253555; padding-bottom: 4px; padding-top: 5px; text-align:left; -moz-border-radius-topleft: 4px; -moz-border-radius-topright: 4px; -webkit-border-top-left-radius: 4px; -webkit-border-top-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; border-bottom: 1px solid #A8B8D9; } .tabsearch { top: 0px; left: 10px; height: 36px; background-image: url('tab_b.png'); z-index: 101; overflow: hidden; font-size: 13px; } .navpath ul { font-size: 11px; background-image:url('tab_b.png'); background-repeat:repeat-x; background-position: 0 -5px; height:30px; line-height:30px; color:#8AA0CC; border:solid 1px #C2CDE4; overflow:hidden; margin:0px; padding:0px; } .navpath li { list-style-type:none; float:left; padding-left:10px; padding-right:15px; background-image:url('bc_s.png'); background-repeat:no-repeat; background-position:right; color:#364D7C; } .navpath li.navelem a { height:32px; display:block; text-decoration: none; outline: none; color: #283A5D; font-family: 'Lucida Grande',Geneva,Helvetica,Arial,sans-serif; text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9); text-decoration: none; } .navpath li.navelem a:hover { color:#6884BD; } .navpath li.footer { list-style-type:none; float:right; padding-left:10px; padding-right:15px; background-image:none; background-repeat:no-repeat; background-position:right; color:#364D7C; font-size: 8pt; } div.summary { float: right; font-size: 8pt; padding-right: 5px; width: 50%; text-align: right; } div.summary a { white-space: nowrap; } div.ingroups { font-size: 8pt; width: 50%; text-align: left; } div.ingroups a { white-space: nowrap; } div.header { background-image:url('nav_h.png'); background-repeat:repeat-x; background-color: #F9FAFC; margin: 0px; border-bottom: 1px solid #C4CFE5; } div.headertitle { padding: 5px 5px 5px 10px; } dl { padding: 0 0 0 10px; } /* dl.note, dl.warning, dl.attention, dl.pre, dl.post, dl.invariant, dl.deprecated, dl.todo, dl.test, dl.bug */ dl.section { margin-left: 0px; padding-left: 0px; } dl.note { margin-left:-7px; padding-left: 3px; border-left:4px solid; border-color: #D0C000; } dl.warning, dl.attention { margin-left:-7px; padding-left: 3px; border-left:4px solid; border-color: #FF0000; } dl.pre, dl.post, dl.invariant { margin-left:-7px; padding-left: 3px; border-left:4px solid; border-color: #00D000; } dl.deprecated { margin-left:-7px; padding-left: 3px; border-left:4px solid; border-color: #505050; } dl.todo { margin-left:-7px; padding-left: 3px; border-left:4px solid; border-color: #00C0E0; } dl.test { margin-left:-7px; padding-left: 3px; border-left:4px solid; border-color: #3030E0; } dl.bug { margin-left:-7px; padding-left: 3px; border-left:4px solid; border-color: #C08050; } dl.section dd { margin-bottom: 6px; } #projectlogo { text-align: center; vertical-align: bottom; border-collapse: separate; } #projectlogo img { border: 0px none; } #projectname { font: 300% Tahoma, Arial,sans-serif; margin: 0px; padding: 2px 0px; } #projectbrief { font: 120% Tahoma, Arial,sans-serif; margin: 0px; padding: 0px; } #projectnumber { font: 50% Tahoma, Arial,sans-serif; margin: 0px; padding: 0px; } #titlearea { padding: 0px; margin: 0px; width: 100%; border-bottom: 1px solid #5373B4; } .image { text-align: center; } .dotgraph { text-align: center; } .mscgraph { text-align: center; } .diagraph { text-align: center; } .caption { font-weight: bold; } div.zoom { border: 1px solid #90A5CE; } dl.citelist { margin-bottom:50px; } dl.citelist dt { color:#334975; float:left; font-weight:bold; margin-right:10px; padding:5px; } dl.citelist dd { margin:2px 0; padding:5px 0; } div.toc { padding: 14px 25px; background-color: #F4F6FA; border: 1px solid #D8DFEE; border-radius: 7px 7px 7px 7px; float: right; height: auto; margin: 0 20px 10px 10px; width: 200px; } div.toc li { background: url("bdwn.png") no-repeat scroll 0 5px transparent; font: 10px/1.2 Verdana,DejaVu Sans,Geneva,sans-serif; margin-top: 5px; padding-left: 10px; padding-top: 2px; } div.toc h3 { font: bold 12px/1.2 Arial,FreeSans,sans-serif; color: #4665A2; border-bottom: 0 none; margin: 0; } div.toc ul { list-style: none outside none; border: medium none; padding: 0px; } div.toc li.level1 { margin-left: 0px; } div.toc li.level2 { margin-left: 15px; } div.toc li.level3 { margin-left: 30px; } div.toc li.level4 { margin-left: 45px; } .inherit_header { font-weight: bold; color: gray; cursor: pointer; -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .inherit_header td { padding: 6px 0px 2px 5px; } .inherit { display: none; } tr.heading h2 { margin-top: 12px; margin-bottom: 4px; } /* tooltip related style info */ .ttc { position: absolute; display: none; } #powerTip { cursor: default; white-space: nowrap; background-color: white; border: 1px solid gray; border-radius: 4px 4px 4px 4px; box-shadow: 1px 1px 7px gray; display: none; font-size: smaller; max-width: 80%; opacity: 0.9; padding: 1ex 1em 1em; position: absolute; z-index: 2147483647; } #powerTip div.ttdoc { color: grey; font-style: italic; } #powerTip div.ttname a { font-weight: bold; } #powerTip div.ttname { font-weight: bold; } #powerTip div.ttdeci { color: #006318; } #powerTip div { margin: 0px; padding: 0px; font: 12px/16px Roboto,sans-serif; } #powerTip:before, #powerTip:after { content: ""; position: absolute; margin: 0px; } #powerTip.n:after, #powerTip.n:before, #powerTip.s:after, #powerTip.s:before, #powerTip.w:after, #powerTip.w:before, #powerTip.e:after, #powerTip.e:before, #powerTip.ne:after, #powerTip.ne:before, #powerTip.se:after, #powerTip.se:before, #powerTip.nw:after, #powerTip.nw:before, #powerTip.sw:after, #powerTip.sw:before { border: solid transparent; content: " "; height: 0; width: 0; position: absolute; } #powerTip.n:after, #powerTip.s:after, #powerTip.w:after, #powerTip.e:after, #powerTip.nw:after, #powerTip.ne:after, #powerTip.sw:after, #powerTip.se:after { border-color: rgba(255, 255, 255, 0); } #powerTip.n:before, #powerTip.s:before, #powerTip.w:before, #powerTip.e:before, #powerTip.nw:before, #powerTip.ne:before, #powerTip.sw:before, #powerTip.se:before { border-color: rgba(128, 128, 128, 0); } #powerTip.n:after, #powerTip.n:before, #powerTip.ne:after, #powerTip.ne:before, #powerTip.nw:after, #powerTip.nw:before { top: 100%; } #powerTip.n:after, #powerTip.ne:after, #powerTip.nw:after { border-top-color: #ffffff; border-width: 10px; margin: 0px -10px; } #powerTip.n:before { border-top-color: #808080; border-width: 11px; margin: 0px -11px; } #powerTip.n:after, #powerTip.n:before { left: 50%; } #powerTip.nw:after, #powerTip.nw:before { right: 14px; } #powerTip.ne:after, #powerTip.ne:before { left: 14px; } #powerTip.s:after, #powerTip.s:before, #powerTip.se:after, #powerTip.se:before, #powerTip.sw:after, #powerTip.sw:before { bottom: 100%; } #powerTip.s:after, #powerTip.se:after, #powerTip.sw:after { border-bottom-color: #ffffff; border-width: 10px; margin: 0px -10px; } #powerTip.s:before, #powerTip.se:before, #powerTip.sw:before { border-bottom-color: #808080; border-width: 11px; margin: 0px -11px; } #powerTip.s:after, #powerTip.s:before { left: 50%; } #powerTip.sw:after, #powerTip.sw:before { right: 14px; } #powerTip.se:after, #powerTip.se:before { left: 14px; } #powerTip.e:after, #powerTip.e:before { left: 100%; } #powerTip.e:after { border-left-color: #ffffff; border-width: 10px; top: 50%; margin-top: -10px; } #powerTip.e:before { border-left-color: #808080; border-width: 11px; top: 50%; margin-top: -11px; } #powerTip.w:after, #powerTip.w:before { right: 100%; } #powerTip.w:after { border-right-color: #ffffff; border-width: 10px; top: 50%; margin-top: -10px; } #powerTip.w:before { border-right-color: #808080; border-width: 11px; top: 50%; margin-top: -11px; } @media print { #top { display: none; } #side-nav { display: none; } #nav-path { display: none; } body { overflow:visible; } h1, h2, h3, h4, h5, h6 { page-break-after: avoid; } .summary { display: none; } .memitem { page-break-inside: avoid; } #doc-content { margin-left:0 !important; height:auto !important; width:auto !important; overflow:inherit; display:inline; } } gtg-trace-0.2-2+dfsg/doc/html/html/doxygen.png000066400000000000000000000073031234554746700211720ustar00rootroot00000000000000‰PNG  IHDRh ;ŘŠIDATxí]y\•Őş~45%TL Q”PE"q–ŹŰ11±]8a„w*©¨(*â" zŔč`8 ¨‰˘mĹ,’ňŕ„p$%”śBó(8k†Ü÷ýÜű6lňö»§k÷Ç÷[ĎŢß·Ö;?k˝ëßŐŐŐPxŃęĎ't´ĎůČ€zŔÇĹ3_€Q4€g@śm˙ ľň‰âci‰ôç˙{ đÇđ¬ů~˝Á€4:őHcÂü đźÁł„Ş'ŐPĆć P7^hŘŚâ™ zb„cóP¨„ 3‚† Ň}ç˙O˛qÁşNkÝTŰ(É?d Ç~zŹ<’«4ÓǡŘžŢv­zµŮ¦ő¬ZâdŰ,Ë6Ók±]Fz< ľZçsŐ?ěsUř2SÉĺwę1”c`[ě—}%Ń˝.ÔĽ6‚BLZű!F8[ ą…×TéŰ— »Ţ#gó]ĺ:vžu?‡včbŮR?wůŽźľĘĐgbŃÉĚŐ$kF~Ę;عƕ˘ďX®?ÉčlĆŮôőŕ»NĘŞĽ­,ěHC§gAz•ĆlÓş­gŃú ]śjÎńĺM…3ÓÚćoŇł'=‘$Ň÷f}G•źS_‡öčco.ĘČą :óŁ Ăds®Ů:ť1=Ľ{ĺ9?÷ý…zqŰvîÓi‰D’pżË šmŮíoŰâýaÖüEqҵwĚ}ż~{ňj€ç{ôÂşźFNĂ«í[ëOq·ÇOSúXO]°>‚‚mućÄľe¤“5Ë{¨JŐŻŁ(›´«bÂçű’ÍlÓĹ}žďú`éUŢy„ac§Á†ÔCşŠóAkl‘±yĄ†ô˘ůôs÷Ař¬7ÄőôoJ±äÄ ů.ĄBe. Z¬Đ×ÇČöĺą­ů'Ů-PëěŠyF.ž‚žÝÚ€lp&.ęđ•jň7’re’z19»ă§HGíř%śüq°ďüz×c¬_k_")źHJnĐŃ~ĐÖá´äŐ5 µÁq€˙5#¸·îŕ¶+9T‘‚ đŽ÷Rܸrz“Ď´Ěť =Ď…{đáOŁČf ˇÍwg|Ž’Ü/˘Ţ$÷Ż˘ëđúŔ;żŕ¨Ö™âŇĆ­]ŻÜW"Ţ/< ‡÷DĎŕ°˝üB}çyIEc^—=[V“Ýh˛ëMä$l];Kű®¸ýr¦Č*Ĺň ˙tŇő$]•Mź÷´;×I€1čó!‚śő¸M ő¨(fĚć<ÁÎÎň5~zżů¶ž mĚęŐ >–âÚ©âëIÎŢçz;ău[i·eç^ĆÜŮÓłNŢëF6B\}7†»+üŽÓ,Ă'a ˝-yHYż,‘^—ńfú~ß?Hcř¸…¸ńó{Z+4\sĺű·ŻŮ·nߣđ«íFơsŘşëű§Dľ?ň<–Ćvkx0ĹM±ćlذÁIÓx˙d”žÜÉ÷EE»AŞM«g*ČŁYEí7Ű™^[uíý®v[wGĺ†=EdĽn×¶ĆćÖĹlˇ'¨pGÚk+‹ć˘Ŕ¬¨C8ŞŤŤâš2 Çł3HŁß ˇ¨BŇűSĂĹů[wĹ ~xpçútÁćmö¤ĹŁĄiQć­‰AB1Éfى›4uąďěIŇ]Ë6äň%˙†ŹŹ† 1t.’NJph¬zĚ ÎR1Ž"3-"¸‡‹&ěó°1âüžěó[:‡ď„Ľ‘……N m–“W0®_čÜÂś ×ő6ůň&»)Ćěꦬýć}¬ń~»{múů]z˝ŁMŤ•şP~^Îá:eQŤTŮ_*7ŐÄ9É8—·ËŤď 3°¶47E•îÂżu÷“SÉ»UŻ _ NíşôW¬eť¸ÄNÓŹ|»;™ż;ŚćĹd"ȉôřňŤŢµőďľ®˝"čÄ´ÖMM+bYµ‘_ÉćEÝüÎ]P»ąXKĐťI˝ŢĄoE<_ą(„EP±Ś|mÇÁˇ‘Ý,ŠÓ©şşZ±Îßş§×kÝ,kÍMš`Äř…jzeŹU»ć ™Át3ÓŔ˝6—ŇöůË·r¨ŤąŃ}““wö:ťÎ§ůëĽ ż|‚TťťÜµÉQKßç_ÁâŔ™ś”pŃĐó໼Ydâ0!®ŕa –řöçW$ĂÁ‘Á$/\¬$đ 2ŢímŢLH‹ź čdŁHVÜ,:ťň˝»RÍZšJ­a„z*>‹_…NT(ů‚^SVF­Uą8ńEţôńÜóůnd;«®8™\C]ř=Čęm¬Ć:‚´ĆbăDd=Áăßž‹UU5O‹|]ţđ®Pčęv‰á\]2ßě˙"yČ[ďyʧzŁg{Y«{„Ă™ř5©˙;w{N3é­nâĨw§Á˘ÍK˘Ý­űĎ29Idż’ě y)ěPŢň8ŚĹ©Ż‰±@mPÔńwjl,6 áhWŐd öŕ uőmÁp®.™áŁÇ…twöR x­ťBδYcŚxg*vo  yň‘•“[¬?ÜVś0ŇNˇO난~Žó’Ż·h#´Hkýś±8kÓŤß^Ŕq@]ŕÓ“ř,56´Ż÷Í-ÎşU»n…[>]@nîřĎśp›[ś6# €4tënŻ:ŽŇţ}…—8äT9_žY$/´G’K™©ů†•(óŃ’Mř©`źÉdŃş;ůO‹ŹB Ó&P{qöhJÉ+Úé–§¦l2«MďöÝ_1ŃÓ«’t¸˝±l€ëŘya ¦ô©«®˝ĆL^¬žęńš¸ůy.ľŰ˝Š[ u/]˝‹iS}řťN>˛e1™q‡jfÚ&˘©iT\=kĎ›ŔXťô-.84V5đu!TEŤ ţ.ŚOH´¶4—zwTr.ď‰¦Ë xőµ·śÖ„HĆůŁžČHůg Ńhń’T$ßyq¸zţ¨pż´ë< q•róŹ÷š‰w˙ÍŃđ–I]´–ćI˛é˛sÂ"×:Ő–bŐ¦“ČŮL6˘9VĘÓWž§<ć;”3?ý©Mę3AV#µ±ËŢŻ‘Źž KŁUrÝ9!›qát¦HŁŮ+6ÇV…/TS^pĂůqgLP'Ú5E ‚–ŔŢşîÄ Ën"2|ź;®W»Îý"Ö¬TwÖâµtúŽO'› á+W Ă+¦âZĚ–<ŐĆ&nOÝ,IŠŁ06.ÁZ.Çńúřh*INÚ’Oe˝ÉgBXĐÔZóäřä9čü“ťhŇíDSšĄŹˇĘŤ µAŻ/Ôc¸ö“`A§Ż"zĺ|‘ €Ĺź¨ú;HÍ#‚Î|%ÄO«OŕĚÉĐÜD ž mÜđâc–ƤÉÂqm¶uË&~÷núŇË ŁÇĎ€ZŐj =«_n[‡‡÷nN§ĎÝ$_ľbE‚€Ő)ů8ľ?6‘lú“ÍŮćÖ}#bW( śłd-®•ťp&ˇý’śÖa”"9öőņĐ$’Ú›AÜ!ä;ĐŃőč{~áą8‘ťŰŢŁ1ŰÓÉ0ž`˛#´kŇuäNĹÖ Qąbhć ”8űÓMáŽa›•ż”w±h˛˘®qŠć°(bK ‚’ZľŇ%ĐĆémáăÖŤË(Éý‚ŰJ)@> ţ›7% ď{y Á“ľĆŇîohfňô>{p˙.­_Î%±ÉčägëlZŘ\B2B #™¸ÚüŇşp‚hÝšü®[ĄÜ<‹#SpńĚA7’ăŘHt4:ź|g¨tÓL¶*($Ć©»ě…®ů’ó÷$;b›ÔŮ`=¶Ł¦M„MĚÄ5ň«·Çľ“H·ĚH.ĽžHeAîş5}r­dő¨±)ŔT};€Q5iÖ2…O0ü…0óńĂ;óć,Š´˛µë”}g‘Ł]‹7ĺ9ŕ©_{üčîęžC>úhę{ŽŤ .ČěđIIđ€?[Kswz6Ňuíý¬;µ€ç§OĺâJÉa˶ťzv°éd† ¤µâ‚l´é芫Ĺüyľc÷ÁčÖÍ'rŕúĹ™TWŐôÓ°ˇL €|Ę˝ŚĽě­hřBă ÝTëî'ò]KřŹŁěâĎ(=ąKx €ż LĚ,Pý¤Ęµu‡ą…× §Ĺľ÷ŕ1Ý«Äý;żpGDäxZYŰ kfć6¸ůóŹć7®ś®ţ6·ŐoÚľÔH~ň®Ţ¸Źâ 8Uř“pŹ<şw3ˇaŁĎŃ’‘3čĎ"€b-ÎÜşĎ_ŞĹ]+ËM©zü°s“f-ęçhÇăŃýĘăô˙5}ZQNb{Ó?ĺ%˙\SUőŘąIÓć}~}p[śoÔÄ„ęĐMMZáNĹĺ@>Ś„˛á6(?ˇĹé âK˝+ü?Ŕ%ÝÝ·/Ç1‚9áUř?B)”ŐčâŢlČŇęĎ @=ŕůÄŢžk­®ĹIEND®B`‚gtg-trace-0.2-2+dfsg/doc/html/html/dynsections.js000066400000000000000000000061041234554746700217050ustar00rootroot00000000000000function toggleVisibility(linkObj) { var base = $(linkObj).attr('id'); var summary = $('#'+base+'-summary'); var content = $('#'+base+'-content'); var trigger = $('#'+base+'-trigger'); var src=$(trigger).attr('src'); if (content.is(':visible')===true) { content.hide(); summary.show(); $(linkObj).addClass('closed').removeClass('opened'); $(trigger).attr('src',src.substring(0,src.length-8)+'closed.png'); } else { content.show(); summary.hide(); $(linkObj).removeClass('closed').addClass('opened'); $(trigger).attr('src',src.substring(0,src.length-10)+'open.png'); } return false; } function updateStripes() { $('table.directory tr'). removeClass('even').filter(':visible:even').addClass('even'); } function toggleLevel(level) { $('table.directory tr').each(function() { var l = this.id.split('_').length-1; var i = $('#img'+this.id.substring(3)); var a = $('#arr'+this.id.substring(3)); if (l Generic Trace Generator (GTG): File List
Generic Trace Generator (GTG)  0.1
File List
Here is a list of all files with brief descriptions:
 GTG.hGeneric header to include
 GTG_EZTrace.h
 GTGBasic.hGTGBasic is a basic interface to generate trace in various formats
 GTGColor.hThis file defines some useful colors to use in entity values for GTG
 GTGCompress.h
 GTGList.h
 GTGMemory.hThis file defines a fast allocator for fixed-size blocks
 GTGOTF.hOTF is the global file for gtg interface using OTF
 GTGOTF2_Structs.h
 GTGOTF_Basic.hOTF_GTGBasic1 is the OTF implementation of the basic interface to generate traces (GTGBasic1)
 GTGOTF_Structs.hOTF_Structs gives the global types and functions needed to have the OTF implementation
 GTGPaje.hPajeColor is a file that defines function that manipulate colors
 GTGPaje_Basic.hPaje_GTGBasic1 is the Paje implementation of the basic interface to generate traces (GTGBasic1)
 GTGReplay.hThis file defines functions for postponing event-processing function calls
 GTGStack.h
 GTGTypes.h
gtg-trace-0.2-2+dfsg/doc/html/html/ftv2blank.png000066400000000000000000000001261234554746700214020ustar00rootroot00000000000000‰PNG  IHDRÉŞ|IDATxíݱðřScOŹx@ –¨y}IEND®B`‚gtg-trace-0.2-2+dfsg/doc/html/html/ftv2doc.png000066400000000000000000000013521234554746700210620ustar00rootroot00000000000000‰PNG  IHDRÚ}\±IDATxíťMOS[…źžsúa?-XZ(PD4‚ AWbu`b 77wäHFĆCËÔÂ˙ŕ/`vo„APňq‹P @ ­űÝč980 îŕ¤+»§Ýy×^ďZď9SWą\83g‰3'°Nâçlą¸_bŻp ďĺűĆVÜÖˇ€ź×"¬Ö†X€d]Đŕ3“ÉĂÄĚ™xŤź ßMŕś[<çSPkvc—hČ'…™^Ĺm™hŘ7 `Ű™¦ èŔĺráq›‘śľ!daeKźţĆŐ:Ě*ł_דâči?I–eP*B7źżĺô!ąÝgr6Ër6oKbëţăđôrI”ËTüŞŚ¨xóö=›ů˘&‰(e+ßóÄkýÇ`ëÁÜb.“¸ĐW×w0Ą°jŃzN™¬|©WE㵢aŻ6[öX†AkÓů*/ś¨‰€ÉŹY­ ˙V’§–u˛jÂ>1W *˝·°PGŽz˙¨/Eg{ źÇâaoŠÁVú:čż™¤1$ôR§W,–Şŕ¨@ŠË56ľŔÔÜ-Ťľ,mę¸Î/ćčą– ňr5ĄT*S(Vf8ö9u’ ŐŁw›ůóa=Í<{ҡUŚ÷rŻ+ÉĺdDĎF$č°…Łéż`zţ»ÎúöN‘µÜ®0Q3Ł~_^ËóâŻN=vpTŕ±LťžT}îkq†Ňm<ĽÎÓ?ZhżXŁď_ţÝĄ[) `gęĂa_Ô*äÔ2`'=ő´F˙2EâÁPú ÷»›l=8‹Wv°%THqÉż<"¤ďGľĆxH{#ĆÖ«aÔJŐއ—m‹„ çńKs˙ŕńVŠŘˇ°·MâŇ^Ť TÁ– Ý›rĄß˝řmü˙_™?ŞWİ÷#uIEND®B`‚gtg-trace-0.2-2+dfsg/doc/html/html/ftv2folderclosed.png000066400000000000000000000011501234554746700227560ustar00rootroot00000000000000‰PNG  IHDRÚ}\/IDATxí]MOÔ@~ÚúuŘlp]öż#›Ĺ]PYEC\9ůĽyŃß`ÖÄ˙ŕ˙ŔÉxóâ˘C &=qĐÄŤŁ—vZçťv¶3m؇vžLűNç}Ţ÷}Ţť˝ZA@n° OäNp ’xóţK°ńń€xÜj”°8sŃ€“ “€śŹ_Ľ[Âíć§ďD'‚•yye+řĽű 7#rNźlďük* ľ0Ь_d«_(ŕńĂ–±ŕôz=ńxőv§÷h©‰zą€šŘP-äó䍒̪uýĽ$»\DăJc—B4ŻăÝÖ.:ŁĎŹ-ŃĎß}µŠLEíşţ #—űáşŔĎgN;BŠ€6ďýń䬜…ö@’Đĺńp&™h>p9¤™EEά¨ÎĘ‘" uĄťn€$R"?{ą<…ë…%PNtâ$‰ß¶±úá+^<é"§2 ŤŞDq”q´\¬«Ň™a–Ś‘©A˙€"Ôµ ™ęźčPŁ}#Eŕz{ű.8i îpłę(ADwD¦E<ę¬cE¦$ HdĘÄ ”Ť.:Ů GŽ-`ŚL‚ýľ'˘‰Ä<¤CIŞ˝;ŮÇTZd±i};>čôß‚z×;K×§8t ¤Ž q”:uv˙v•Ý›¬˛ŮvEân{„M·FXgĽĚfZÖť¨°ą‰*›ßĚß©±ů©:›j–YqčÜë#3çĎSřWř˙˙Ńr'ř Ôůů‚ ©ˇIEND®B`‚gtg-trace-0.2-2+dfsg/doc/html/html/ftv2folderopen.png000066400000000000000000000011251234554746700224500ustar00rootroot00000000000000‰PNG  IHDRÚ}\IDATxí]?oÓP˙9iš4i°;Ťii“¶‰ZЉ‘‰ŔŔ7`bčÔ٬ťŘů,HěU'ô$*Tµ]‚TˇDPÚÄ6wĎ}‰;ˇC; ażÓťßźűÝďjAŔ­InSţ}€9H“ÓŽ|?íÁ÷ =_ĘĆŠ­†ĄŔue*;ŻYEäsYäćB˘źżţÄ—ŁsŮ˝˝Ůچ É«›©ŔYÇq !GÇżv̇ąŃŘ®š °Ś‚ÔFą}qĄb]÷7í·0)Úd›ľ˙đ-čş}PfäŁÖY{4™ŃÂ@}úćôń2ŰüÔ—ńúĺNŚI‚ÁÇcçÁş%٬UаIłmc±ôĺĽÔĆťüČ>é¸xţt9Ć$µý OćVE*őU´Ě‚ç#ž×•ďűr@l$řP˙rHaaÇĄ ˛›dZ®rč‘ăqI„oĽřT\Ž,tŞj2FAxv-Lźp׌p TÄI/ \Ąsfí˝; jViTčú¤o^cpĹüĽűű»Ďb]”€˘¤<†aţŐś˛“ßÓy“٧9Ź:Śîů+ŔŹł€ńŕ,E žfł6éNŤÄEŁKU}Ü^;¶ŘnZ˘uß­US4— ѬëbížN¶.Úk¦ŘjTÄöş%µŞâ ťiŻVÄĘÝň§™ Čů¸)ů˙G€™ňşJ@T x”IEND®B`‚gtg-trace-0.2-2+dfsg/doc/html/html/ftv2lastnode.png000066400000000000000000000001261234554746700221240ustar00rootroot00000000000000‰PNG  IHDRÉŞ|IDATxíݱðřScOŹx@ –¨y}IEND®B`‚gtg-trace-0.2-2+dfsg/doc/html/html/ftv2link.png000066400000000000000000000013521234554746700212520ustar00rootroot00000000000000‰PNG  IHDRÚ}\±IDATxíťMOS[…źžsúa?-XZ(PD4‚ AWbu`b 77wäHFĆCËÔÂ˙ŕ/`vo„APňq‹P @ ­űÝč980 îŕ¤+»§Ýy×^ďZď9SWą\83g‰3'°Nâçlą¸_bŻp ďĺűĆVÜÖˇ€ź×"¬Ö†X€d]Đŕ3“ÉĂÄĚ™xŤź ßMŕś[<çSPkvc—hČ'…™^Ĺm™hŘ7 `Ű™¦ èŔĺráq›‘śľ!daeKźţĆŐ:Ě*ł_דâči?I–eP*B7źżĺô!ąÝgr6Ër6oKbëţăđôrI”ËTüŞŚ¨xóö=›ů˘&‰(e+ßóÄkýÇ`ëÁÜb.“¸ĐW×w0Ą°jŃzN™¬|©WE㵢aŻ6[öX†AkÓů*/ś¨‰€ÉŹY­ ˙V’§–u˛jÂ>1W *˝·°PGŽz˙¨/Eg{ źÇâaoŠÁVú:čż™¤1$ôR§W,–Şŕ¨@ŠË56ľŔÔÜ-Ťľ,mę¸Î/ćčą– ňr5ĄT*S(Vf8ö9u’ ŐŁw›ůóa=Í<{ҡUŚ÷rŻ+ÉĺdDĎF$č°…Łéż`zţ»ÎúöN‘µÜ®0Q3Ł~_^ËóâŻN=vpTŕ±LťžT}îkq†Ňm<ĽÎÓ?ZhżXŁď_ţÝĄ[) `gęĂa_Ô*äÔ2`'=ő´F˙2EâÁPú ÷»›l=8‹Wv°%THqÉż<"¤ďGľĆxH{#ĆÖ«aÔJŐއ—m‹„ çńKs˙ŕńVŠŘˇ°·MâŇ^Ť TÁ– Ý›rĄß˝řmü˙_™?ŞWİ÷#uIEND®B`‚gtg-trace-0.2-2+dfsg/doc/html/html/ftv2mlastnode.png000066400000000000000000000003661234554746700223070ustar00rootroot00000000000000‰PNG  IHDRÉŞ|˝IDATxíÝ!NAĹń¤‡ŕ\ ÷ŕ Um@`Ô5iŇ`ëh ‚ĹW7] b§ÝŠ&ďź—oföÍdľYÔ4 üšcř ‡€´‹Ĺňů3v=Ľ]ʆ§µ\B… Iż‹=B·™Bˇ®;¸k´µ W°ÍN@vyŹÍŃÖ4ăß÷ť]ČâYěă§|M}]ÔÚx6a }ôdׇŘYüú¨>¤||5?Ó>|žB"ˇî'ˇIEND®B`‚gtg-trace-0.2-2+dfsg/doc/html/html/ftv2mnode.png000066400000000000000000000003661234554746700214230ustar00rootroot00000000000000‰PNG  IHDRÉŞ|˝IDATxíÝ!NAĹń¤‡ŕ\ ÷ŕ Um@`Ô5iŇ`ëh ‚ĹW7] b§ÝŠ&ďź—oföÍdľYÔ4 üšcř ‡€´‹Ĺňů3v=Ľ]ʆ§µ\B… Iż‹=B·™Bˇ®;¸k´µ W°ÍN@vyŹÍŃÖ4ăß÷ť]ČâYěă§|M}]ÔÚx6a }ôdׇŘYüú¨>¤||5?Ó>|žB"ˇî'ˇIEND®B`‚gtg-trace-0.2-2+dfsg/doc/html/html/ftv2node.png000066400000000000000000000001261234554746700212400ustar00rootroot00000000000000‰PNG  IHDRÉŞ|IDATxíݱðřScOŹx@ –¨y}IEND®B`‚gtg-trace-0.2-2+dfsg/doc/html/html/ftv2plastnode.png000066400000000000000000000003451234554746700223070ustar00rootroot00000000000000‰PNG  IHDRÉŞ|¬IDATxíť=QF‘ŘĄD«ÔkÄ:‰F©PKŘ=V@§Őł Ő8SHxńĚ0ŤbnrróŠ{ň˝żľ’$ ŔĎTŠP  öĽX¬OŰd6ęěňđ"°˛S´±OĄB€(ˇŕQé)š+YÄ ŇŞËRÉĐ>VtÉsm9(ę„䜥k‚-@ȧ-Ü$ó b Ň[he żKp-ôl|Ců˙ApRG'ŹrÍ­aIEND®B`‚gtg-trace-0.2-2+dfsg/doc/html/html/ftv2pnode.png000066400000000000000000000003451234554746700214230ustar00rootroot00000000000000‰PNG  IHDRÉŞ|¬IDATxíť=QF‘ŘĄD«ÔkÄ:‰F©PKŘ=V@§Őł Ő8SHxńĚ0ŤbnrróŠ{ň˝żľ’$ ŔĎTŠP  öĽX¬OŰd6ęěňđ"°˛S´±OĄB€(ˇŕQé)š+YÄ ŇŞËRÉĐ>VtÉsm9(ę„䜥k‚-@ȧ-Ü$ó b Ň[he żKp-ôl|Ců˙ApRG'ŹrÍ­aIEND®B`‚gtg-trace-0.2-2+dfsg/doc/html/html/ftv2splitbar.png000066400000000000000000000004721234554746700221370ustar00rootroot00000000000000‰PNG  IHDRM¸żIDATxíݡJCa‡ńç( ë%±Ř4 b±ČͶ3v^Á±…ăó–ŽELő…Ą•ł ,˙b;íç{ĂŹ/ĽđŢŔaYŐŻĺóřq:Ľşą›\ňIIIIIIIIIIIIIIIIII-Ňçlą›«ő揊˘č_t/Ď»ťăŁŃíYQVőđęäíă÷´×ůY¬Ú˙µ§¦ivókľ_íĺýŰŁI@$I@$I@$I@$I@$I@$I@$I@$I@$I@$I@$I@$I@$I@$I@$I@$I@$I@$ýC[Vě=ü[„fĆIEND®B`‚gtg-trace-0.2-2+dfsg/doc/html/html/ftv2vertline.png000066400000000000000000000001261234554746700221430ustar00rootroot00000000000000‰PNG  IHDRÉŞ|IDATxíݱðřScOŹx@ –¨y}IEND®B`‚gtg-trace-0.2-2+dfsg/doc/html/html/functions.html000066400000000000000000000274361234554746700217160ustar00rootroot00000000000000 Generic Trace Generator (GTG): Data Fields
Here is a list of all struct and union fields with links to the structures/unions they belong to:

- a -

- b -

- c -

- d -

- e -

- f -

- g -

- i -

- l -

- m -

- n -

- p -

- r -

- s -

- t -

- v -

gtg-trace-0.2-2+dfsg/doc/html/html/functions_vars.html000066400000000000000000000272621234554746700227460ustar00rootroot00000000000000 Generic Trace Generator (GTG): Data Fields - Variables
 

- a -

- b -

- c -

- d -

- e -

- f -

- g -

- i -

- l -

- m -

- n -

- p -

- r -

- s -

- t -

- v -

gtg-trace-0.2-2+dfsg/doc/html/html/globals.html000066400000000000000000000102461234554746700213200ustar00rootroot00000000000000 Generic Trace Generator (GTG): Globals
Here is a list of all functions, variables, defines, enums, and typedefs with links to the files they belong to:

- _ -

gtg-trace-0.2-2+dfsg/doc/html/html/globals_a.html000066400000000000000000000142161234554746700216210ustar00rootroot00000000000000 Generic Trace Generator (GTG): Globals
Here is a list of all functions, variables, defines, enums, and typedefs with links to the files they belong to:

- a -

gtg-trace-0.2-2+dfsg/doc/html/html/globals_b.html000066400000000000000000000101031234554746700216110ustar00rootroot00000000000000 Generic Trace Generator (GTG): Globals
Here is a list of all functions, variables, defines, enums, and typedefs with links to the files they belong to:

- b -

gtg-trace-0.2-2+dfsg/doc/html/html/globals_c.html000066400000000000000000000115361234554746700216250ustar00rootroot00000000000000 Generic Trace Generator (GTG): Globals
Here is a list of all functions, variables, defines, enums, and typedefs with links to the files they belong to:

- c -

gtg-trace-0.2-2+dfsg/doc/html/html/globals_d.html000066400000000000000000000100721234554746700216200ustar00rootroot00000000000000 Generic Trace Generator (GTG): Globals
Here is a list of all functions, variables, defines, enums, and typedefs with links to the files they belong to:

- d -

gtg-trace-0.2-2+dfsg/doc/html/html/globals_defs.html000066400000000000000000000304461234554746700223250ustar00rootroot00000000000000 Generic Trace Generator (GTG): Globals
 

- a -

- c -

- e -

- f -

- g -

- i -

- l -

- m -

- s -

- v -

gtg-trace-0.2-2+dfsg/doc/html/html/globals_e.html000066400000000000000000000154301234554746700216240ustar00rootroot00000000000000 Generic Trace Generator (GTG): Globals
Here is a list of all functions, variables, defines, enums, and typedefs with links to the files they belong to:

- e -

gtg-trace-0.2-2+dfsg/doc/html/html/globals_enum.html000066400000000000000000000063571234554746700223540ustar00rootroot00000000000000 Generic Trace Generator (GTG): Globals
 
gtg-trace-0.2-2+dfsg/doc/html/html/globals_eval.html000066400000000000000000000260161234554746700223310ustar00rootroot00000000000000 Generic Trace Generator (GTG): Globals
 

- e -

- g -

- o -

- p -

- t -

- v -

gtg-trace-0.2-2+dfsg/doc/html/html/globals_f.html000066400000000000000000000106241234554746700216250ustar00rootroot00000000000000 Generic Trace Generator (GTG): Globals
Here is a list of all functions, variables, defines, enums, and typedefs with links to the files they belong to:

- f -

gtg-trace-0.2-2+dfsg/doc/html/html/globals_func.html000066400000000000000000000464761234554746700223510ustar00rootroot00000000000000 Generic Trace Generator (GTG): Globals
 

- _ -

- a -

- b -

- d -

- e -

- g -

- i -

- o -

- p -

- s -

- v -

gtg-trace-0.2-2+dfsg/doc/html/html/globals_g.html000066400000000000000000000526541234554746700216370ustar00rootroot00000000000000 Generic Trace Generator (GTG): Globals
Here is a list of all functions, variables, defines, enums, and typedefs with links to the files they belong to:

- g -

gtg-trace-0.2-2+dfsg/doc/html/html/globals_i.html000066400000000000000000000143271234554746700216340ustar00rootroot00000000000000 Generic Trace Generator (GTG): Globals
Here is a list of all functions, variables, defines, enums, and typedefs with links to the files they belong to:

- i -

gtg-trace-0.2-2+dfsg/doc/html/html/globals_l.html000066400000000000000000000111511234554746700216270ustar00rootroot00000000000000 Generic Trace Generator (GTG): Globals
Here is a list of all functions, variables, defines, enums, and typedefs with links to the files they belong to:

- l -

gtg-trace-0.2-2+dfsg/doc/html/html/globals_m.html000066400000000000000000000102461234554746700216340ustar00rootroot00000000000000 Generic Trace Generator (GTG): Globals
Here is a list of all functions, variables, defines, enums, and typedefs with links to the files they belong to:

- m -

gtg-trace-0.2-2+dfsg/doc/html/html/globals_o.html000066400000000000000000000161731234554746700216430ustar00rootroot00000000000000 Generic Trace Generator (GTG): Globals
Here is a list of all functions, variables, defines, enums, and typedefs with links to the files they belong to:

- o -

gtg-trace-0.2-2+dfsg/doc/html/html/globals_p.html000066400000000000000000000172341234554746700216430ustar00rootroot00000000000000 Generic Trace Generator (GTG): Globals
Here is a list of all functions, variables, defines, enums, and typedefs with links to the files they belong to:

- p -

gtg-trace-0.2-2+dfsg/doc/html/html/globals_s.html000066400000000000000000000131201234554746700216340ustar00rootroot00000000000000 Generic Trace Generator (GTG): Globals
Here is a list of all functions, variables, defines, enums, and typedefs with links to the files they belong to:

- s -

gtg-trace-0.2-2+dfsg/doc/html/html/globals_t.html000066400000000000000000000127041234554746700216440ustar00rootroot00000000000000 Generic Trace Generator (GTG): Globals
Here is a list of all functions, variables, defines, enums, and typedefs with links to the files they belong to:

- t -

gtg-trace-0.2-2+dfsg/doc/html/html/globals_type.html000066400000000000000000000177231234554746700223700ustar00rootroot00000000000000 Generic Trace Generator (GTG): Globals
 

- c -

- e -

- g -

- l -

- o -

- p -

- s -

- t -

- u -

- v -

gtg-trace-0.2-2+dfsg/doc/html/html/globals_u.html000066400000000000000000000100751234554746700216440ustar00rootroot00000000000000 Generic Trace Generator (GTG): Globals
Here is a list of all functions, variables, defines, enums, and typedefs with links to the files they belong to:

- u -

gtg-trace-0.2-2+dfsg/doc/html/html/globals_v.html000066400000000000000000000125111234554746700216420ustar00rootroot00000000000000 Generic Trace Generator (GTG): Globals
Here is a list of all functions, variables, defines, enums, and typedefs with links to the files they belong to:

- v -

gtg-trace-0.2-2+dfsg/doc/html/html/globals_vars.html000066400000000000000000000122321234554746700223500ustar00rootroot00000000000000 Generic Trace Generator (GTG): Globals
 
gtg-trace-0.2-2+dfsg/doc/html/html/group__GTGColor.html000066400000000000000000000764561234554746700227070ustar00rootroot00000000000000 Generic Trace Generator (GTG): Defined colors for GTG
Generic Trace Generator (GTG)  0.1
Defined colors for GTG

Data Structures

struct  gtg_color
 This structure defines a color that can be used by GTG. More...
 

Functions

static uint8_t GTG_COLOR_GET_BLUE (gtg_rgb_color_t rgb)
 Return the 1-byte value of the blue component of a rgb color. More...
 
static uint8_t GTG_COLOR_GET_GREEN (gtg_rgb_color_t rgb)
 Return the 1-byte value of the green component of a rgb color. More...
 
static uint8_t GTG_COLOR_GET_RED (gtg_rgb_color_t rgb)
 Return the 1-byte value of the red component of a rgb color. More...
 
static gtg_rgb_color_t GTG_COLOR_SET_COLOR (uint8_t r, uint8_t g, uint8_t b)
 Return the 4-bytes RGB color from 3 1-byte components. More...
 

Variables

gtg_color_t GTG_BLACK
 Default black color. (R,G,B) = (0, 0, 0) More...
 
gtg_color_t GTG_RED
 Default red color. (R,G,B) = (255, 0, 0) More...
 
gtg_color_t GTG_GREEN
 Default green color. (R,G,B) = (0, 255, 0) More...
 
gtg_color_t GTG_BLUE
 Default blue color. (R,G,B) = (0, 0, 255) More...
 
gtg_color_t GTG_WHITE
 Default white color. (R,G,B) = (255, 255, 255) More...
 
gtg_color_t GTG_TEAL
 Default teal color. (R,G,B) = (0, 255, 255) More...
 
gtg_color_t GTG_DARKGREY
 Default dark grey color. (R,G,B) = (85, 85, 85) More...
 
gtg_color_t GTG_YELLOW
 Default yellow color. (R,G,B) = (255, 255, 0) More...
 
gtg_color_t GTG_PURPLE
 Default purple color. (R,G,B) = (153, 25, 230) More...
 
gtg_color_t GTG_LIGHTBROWN
 Default light brown color. (R,G,B) = (170, 130, 130) More...
 
gtg_color_t GTG_LIGHTGREY
 Default light grey color. (R,G,B) = (200, 200, 200) More...
 
gtg_color_t GTG_DARKBLUE
 Default dark blue color. (R,G,B) = (0, 0, 80) More...
 
gtg_color_t GTG_PINK
 Default pink color. (R,G,B) = (255, 0, 255) More...
 
gtg_color_t GTG_DARKPINK
 Default dark pink color. (R,G,B) = (180, 80, 180) More...
 
gtg_color_t GTG_SEABLUE
 Default sea blue color. (R,G,B) = (25, 128, 200) More...
 
gtg_color_t GTG_KAKI
 Default kaki color. (R,G,B) = (80, 100, 25) More...
 
gtg_color_t GTG_REDBLOOD
 Default red blood color. (R,G,B) = (200, 25, 25) More...
 
gtg_color_t GTG_BROWN
 Default brown color. (R,G,B) = (100, 25, 25) More...
 
gtg_color_t GTG_GRENAT
 Default grenat color. (R,G,B) = (100, 0, 80) More...
 
gtg_color_t GTG_ORANGE
 Default orange color. (R,G,B) = (255, 160, 0) More...
 
gtg_color_t GTG_MAUVE
 Default mauve color. (R,G,B) = (128, 0, 255) More...
 
gtg_color_t GTG_LIGHTPINK
 Default light pink color. (R,G,B) = (255, 128, 255) More...
 

Detailed Description

Function Documentation

GTG_COLOR_GET_BLUE ( gtg_rgb_color_t  rgb)
inlinestatic

Return the 1-byte value of the blue component of a rgb color.

GTG_COLOR_GET_GREEN ( gtg_rgb_color_t  rgb)
inlinestatic

Return the 1-byte value of the green component of a rgb color.

GTG_COLOR_GET_RED ( gtg_rgb_color_t  rgb)
inlinestatic

Return the 1-byte value of the red component of a rgb color.

GTG_COLOR_SET_COLOR ( uint8_t  r,
uint8_t  g,
uint8_t  b 
)
inlinestatic

Return the 4-bytes RGB color from 3 1-byte components.

Variable Documentation

GTG_BLACK

Default black color. (R,G,B) = (0, 0, 0)

GTG_BLUE

Default blue color. (R,G,B) = (0, 0, 255)

GTG_BROWN

Default brown color. (R,G,B) = (100, 25, 25)

GTG_DARKBLUE

Default dark blue color. (R,G,B) = (0, 0, 80)

GTG_DARKGREY

Default dark grey color. (R,G,B) = (85, 85, 85)

GTG_DARKPINK

Default dark pink color. (R,G,B) = (180, 80, 180)

GTG_GREEN

Default green color. (R,G,B) = (0, 255, 0)

GTG_GRENAT

Default grenat color. (R,G,B) = (100, 0, 80)

GTG_KAKI

Default kaki color. (R,G,B) = (80, 100, 25)

GTG_LIGHTBROWN

Default light brown color. (R,G,B) = (170, 130, 130)

GTG_LIGHTGREY

Default light grey color. (R,G,B) = (200, 200, 200)

GTG_LIGHTPINK

Default light pink color. (R,G,B) = (255, 128, 255)

GTG_MAUVE

Default mauve color. (R,G,B) = (128, 0, 255)

GTG_ORANGE

Default orange color. (R,G,B) = (255, 160, 0)

GTG_PINK

Default pink color. (R,G,B) = (255, 0, 255)

GTG_PURPLE

Default purple color. (R,G,B) = (153, 25, 230)

GTG_RED

Default red color. (R,G,B) = (255, 0, 0)

GTG_REDBLOOD

Default red blood color. (R,G,B) = (200, 25, 25)

GTG_SEABLUE

Default sea blue color. (R,G,B) = (25, 128, 200)

GTG_TEAL

Default teal color. (R,G,B) = (0, 255, 255)

GTG_WHITE

Default white color. (R,G,B) = (255, 255, 255)

GTG_YELLOW

Default yellow color. (R,G,B) = (255, 255, 0)

gtg-trace-0.2-2+dfsg/doc/html/html/group__GTGMemory.html000066400000000000000000000170411234554746700230620ustar00rootroot00000000000000 Generic Trace Generator (GTG): Memory management
Generic Trace Generator (GTG)  0.1
Memory management

Functions

void gtg_block_memory_init (gtg_memory_t *memory, size_t block_size, long initial_block_number)
 Initialize the allocator. More...
 
void * gtg_block_malloc (gtg_memory_t memory)
 Allocate a block of data. More...
 
void gtg_block_free (gtg_memory_t memory, void *ptr)
 Free a block of data. More...
 

Detailed Description

Function Documentation

void gtg_block_free ( gtg_memory_t  memory,
void *  ptr 
)

Free a block of data.

Parameters
memoryThe memory describer
ptrThe block of data to free
void * gtg_block_malloc ( gtg_memory_t  memory)

Allocate a block of data.

Parameters
memoryThe memory describer
Returns
A pointer to a block or NULL if allocation failed
void gtg_block_memory_init ( gtg_memory_t memory,
size_t  block_size,
long  initial_block_number 
)

Initialize the allocator.

Parameters
memoryA memory describer
block_sizeThe block size to be allocated when malloc is called
initial_block_numberThe number of blocks to allocate initialy
gtg-trace-0.2-2+dfsg/doc/html/html/group__GTGReplay.html000066400000000000000000000133121234554746700230430ustar00rootroot00000000000000 Generic Trace Generator (GTG): Functions for postponing event-processing function calls
Generic Trace Generator (GTG)  0.1
Functions for postponing event-processing function calls

Functions

void gtg_record (enum event_type_t type, varPrec time,...)
 postpone the recording of an event More...
 
void gtg_write_events (long nb_events_to_write)
 run the first nb_events_to_write events More...
 

Detailed Description

Function Documentation

void gtg_record ( enum event_type_t  type,
varPrec  time,
  ... 
)

postpone the recording of an event

Parameters
typeThe type of function to postpone
timeThe time at which the event happens
void gtg_write_events ( long  nb_events_to_write)

run the first nb_events_to_write events

Parameters
nb_events_to_writeThe number of functions to process (-1 for all functions)
gtg-trace-0.2-2+dfsg/doc/html/html/group__cotf.html000066400000000000000000001573071234554746700222150ustar00rootroot00000000000000 Generic Trace Generator (GTG): OTF interface in C of the traceGeneratorBasic API
Generic Trace Generator (GTG)  0.1
OTF interface in C of the traceGeneratorBasic API

Functions

const otf_color_t OTF_get_color (gtg_color_t color)
 Converts a GTG color into a OTF color. More...
 
trace_return_t OTFInitTrace (const char *filename, gtg_flag_t flags)
 Initialize an OTF trace. More...
 
trace_return_t OTFSetCompress (int val)
 Enable trace compression. More...
 
trace_return_t OTFAddContType (const char *alias, const char *contType, const char *name)
 Add a Container Type. More...
 
trace_return_t OTFAddStateType (const char *alias, const char *contType, const char *name)
 Add a State Type. More...
 
trace_return_t OTFAddEventType (const char *alias, const char *contType, const char *name)
 Add an Event Type. More...
 
trace_return_t OTFAddLinkType (const char *alias, const char *name, const char *contType, const char *srcContType, const char *destContType)
 Add a Link Type. More...
 
trace_return_t OTFAddVarType (const char *alias, const char *name, const char *contType)
 Add a Variable Type. More...
 
trace_return_t OTFAddEntityValue (const char *alias, const char *entType, const char *name, const otf_color_t color)
 Add an Entity Value. More...
 
trace_return_t OTFStartContainer (varPrec time, const char *alias, const char *type, const char *container, const char *name, const char *file)
 Start a Container. More...
 
trace_return_t OTFDestroyContainer (varPrec time, const char *name, const char *type)
 Destroy a Container. More...
 
trace_return_t OTFSetState (varPrec time, const char *type, const char *cont, const char *val)
 Set the State of a Container. More...
 
trace_return_t OTFPushState (varPrec time, const char *type, const char *cont, const char *val)
 Save the current State on a stack and change the State of a Container. More...
 
trace_return_t OTFPopState (varPrec time, const char *type, const char *cont)
 Revert the State of a Container to its previous value. More...
 
trace_return_t OTFAddEvent (varPrec time, const char *type, const char *cont, const char *val)
 Add an Event. More...
 
trace_return_t OTFStartLink (varPrec time, const char *type, const char *src, const char *dest, const char *val, const char *key)
 Start a Link. More...
 
trace_return_t OTFEndLink (varPrec time, const char *type, const char *src, const char *dest, const char *val, const char *key)
 End a Link. More...
 
trace_return_t OTFSetVar (varPrec time, const char *type, const char *cont, varPrec val)
 Set a Variable value. More...
 
trace_return_t OTFAddVar (varPrec time, const char *type, const char *cont, varPrec val)
 Add a value to a Variable. More...
 
trace_return_t OTFSubVar (varPrec time, const char *type, const char *cont, varPrec val)
 Substract a value from a Variable. More...
 
trace_return_t OTFAddComment (const char *comment)
 Add some Comment in Trace file. More...
 
trace_return_t OTFEndTrace ()
 Finalize an OTF trace. More...
 

Detailed Description

Function Documentation

const char * OTF_get_color ( gtg_color_t  color)

Converts a GTG color into a OTF color.

Parameters
colorGTG color to convert
Returns
The OTF color
trace_return_t OTFAddComment ( const char *  comment)

Add some Comment in Trace file.

Parameters
commentComment to be added
Returns
TRACE_SUCCESS on success
An error code otherwise
trace_return_t OTFAddContType ( const char *  alias,
const char *  contType,
const char *  name 
)

Add a Container Type.

Parameters
aliasAlias on the container
contTypeType of container
nameName of the container type
Returns
0 if success
An error code otherwise
trace_return_t OTFAddEntityValue ( const char *  alias,
const char *  entType,
const char *  name,
const otf_color_t  color 
)

Add an Entity Value.

Parameters
aliasAlias on the entity value
entTypeType of the entity
nameName of the variable type
colorColor of the entity
Returns
0 if success
An error code otherwise
trace_return_t OTFAddEvent ( varPrec  time,
const char *  type,
const char *  cont,
const char *  val 
)

Add an Event.

Parameters
timeTime at which the event happens
typeType of the event
contContainer in this event
valEntity value of the event of the container
Returns
0 if success
An error code otherwise
trace_return_t OTFAddEventType ( const char *  alias,
const char *  contType,
const char *  name 
)

Add an Event Type.

Parameters
aliasAlias on the event type
contTypeType of container
nameName of the event type
Returns
0 if success
An error code otherwise
trace_return_t OTFAddLinkType ( const char *  alias,
const char *  name,
const char *  contType,
const char *  srcContType,
const char *  destContType 
)

Add a Link Type.

Parameters
aliasAlias on the link type
nameName of the link type
contTypeType of container
srcContTypeType of the source container
destContTypeType of the destination container
Returns
0 if success
An error code otherwise
trace_return_t OTFAddStateType ( const char *  alias,
const char *  contType,
const char *  name 
)

Add a State Type.

Parameters
aliasAlias on the state type
contTypeType of container
nameName of the state type
Returns
0 if success
An error code otherwise
trace_return_t OTFAddVar ( varPrec  time,
const char *  type,
const char *  cont,
varPrec  val 
)

Add a value to a Variable.

Parameters
timeTime at which the variable is incremented
typeType of the variable
contContainer containning the variable
valValue added
Returns
0 if success
An error code otherwise
trace_return_t OTFAddVarType ( const char *  alias,
const char *  contType,
const char *  name 
)

Add a Variable Type.

Parameters
aliasAlias on the variable type
contTypeType of container
nameName of the variable type
Returns
0 if success
An error code otherwise
trace_return_t OTFDestroyContainer ( varPrec  time,
const char *  name,
const char *  type 
)

Destroy a Container.

Parameters
timeTime at which the container is destroyed
nameName of the container
typeType of the container
Returns
0 if success
An error code otherwise
trace_return_t OTFEndLink ( varPrec  time,
const char *  type,
const char *  cont,
const char *  dest,
const char *  val,
const char *  key 
)

End a Link.

Parameters
timeTime at which the link ends
typeType of the link
contContainer containning the link
destContainer destination
valEntity value of the link
keyKey to identify the link
Returns
0 if success
An error code otherwise
OTFEndTrace ( )

Finalize an OTF trace.

Returns
0 if success
An error code otherwise
trace_return_t OTFInitTrace ( const char *  filename,
gtg_flag_t  flags 
)

Initialize an OTF trace.

Parameters
filenameRoot name of the file to create
flagsOne of GTG_FLAG_NONE, GTG_FLAG_USE_MPI, GTG_FLAG_NOTBUF.
Returns
0 if success An error code otherwise
trace_return_t OTFPopState ( varPrec  time,
const char *  type,
const char *  cont 
)

Revert the State of a Container to its previous value.

Parameters
timeTime at which the state is poped
typeType of the state
contContainer in this state
Returns
0 if success
An error code otherwise
trace_return_t OTFPushState ( varPrec  time,
const char *  type,
const char *  cont,
const char *  val 
)

Save the current State on a stack and change the State of a Container.

Parameters
timeTime at which the state is pushed
typeType of the state
contContainer in this state
valEntity value of the state of the container
Returns
0 if success
An error code otherwise
trace_return_t OTFSetCompress ( int  val)

Enable trace compression.

Parameters
val0 means no compression, otherwize the output files will be compressed.
Returns
0 if success
An error code otherwise
trace_return_t OTFSetState ( varPrec  time,
const char *  type,
const char *  cont,
const char *  val 
)

Set the State of a Container.

Parameters
timeTime at which the state is set
typeType of the state
contContainer in this state
valEntity value of the state of the container
Returns
0 if success
An error code otherwise
trace_return_t OTFSetVar ( varPrec  time,
const char *  type,
const char *  cont,
varPrec  val 
)

Set a Variable value.

Parameters
timeTime at which the variable is set
typeType of the variable
contContainer containning the variable
valValue of the variable
Returns
0 if success
An error code otherwise
trace_return_t OTFStartContainer ( varPrec  time,
const char *  alias,
const char *  type,
const char *  container,
const char *  name,
const char *  file 
)

Start a Container.

Parameters
timeTime at which the container is added
aliasAlias of the new container
typeType of the container
containerContainer parent
nameName of the variable type
fileFile containing the container trace
Returns
0 if success
An error code otherwise
trace_return_t OTFStartLink ( varPrec  time,
const char *  type,
const char *  cont,
const char *  src,
const char *  val,
const char *  key 
)

Start a Link.

Parameters
timeTime at which the link starts
typeType of the link
contContainer containning the link
srcContainer source
valEntity value of the link
keyKey to identify the link
Returns
0 if success
An error code otherwise
trace_return_t OTFSubVar ( varPrec  time,
const char *  type,
const char *  cont,
varPrec  val 
)

Substract a value from a Variable.

Parameters
timeTime at which the variable is incremented
typeType of the variable
contContainer containning the variable
valValue substracted
Returns
0 if success
An error code otherwise
gtg-trace-0.2-2+dfsg/doc/html/html/group__cpaje.html000066400000000000000000001732141234554746700223370ustar00rootroot00000000000000 Generic Trace Generator (GTG): Paje interface in C of the GTGBasic1 API
Generic Trace Generator (GTG)  0.1
Paje interface in C of the GTGBasic1 API

Functions

paje_color_t Paje_get_color (gtg_color_t p_color)
 Converts a GTG color into a PAJE color. More...
 
trace_return_t pajeInitTrace (const char *filename, int rank, gtg_flag_t flags, int fmt)
 Initialize a VITE trace ( *.ept) More...
 
char * pajeGetName (int rk)
 Function to get the name of the file containing all the data for the proc of rank rk. More...
 
trace_return_t pajeSetCompress (int val)
 Enable trace compression. More...
 
trace_return_t pajeAddContType (const char *alias, const char *contType, const char *name)
 Add a Container Type. More...
 
trace_return_t pajeAddStateType (const char *alias, const char *contType, const char *name)
 Add a State Type. More...
 
trace_return_t pajeAddEventType (const char *alias, const char *contType, const char *name)
 Add an Event Type. More...
 
trace_return_t pajeAddLinkType (const char *alias, const char *name, const char *contType, const char *srcContType, const char *destContType)
 Add a Link Type. More...
 
trace_return_t pajeAddVarType (const char *alias, const char *contType, const char *name)
 Add a Variable Type. More...
 
trace_return_t pajeAddEntityValue (const char *alias, const char *entType, const char *name, const char *color)
 Add an Entity Value. More...
 
trace_return_t pajeAddContainer (varPrec time, const char *alias, const char *type, const char *container, const char *name, const char *file)
 Add a Container (VITE format). More...
 
trace_return_t pajeSeqAddContainer (varPrec time, const char *alias, const char *type, const char *container, const char *name)
 Add a Container (PAJE format). More...
 
trace_return_t pajeDestroyContainer (varPrec time, const char *name, const char *type)
 Destroy a Container. More...
 
trace_return_t pajeSetState (varPrec time, const char *type, const char *cont, const char *val)
 Set the State of a Container. More...
 
trace_return_t pajePushState (varPrec time, const char *type, const char *cont, const char *val)
 Save the current State on a stack and change the State of a Container. More...
 
trace_return_t pajePopState (varPrec time, const char *type, const char *cont)
 Revert the State of a Container to its previous value. More...
 
trace_return_t pajeAddEvent (varPrec time, const char *type, const char *cont, const char *val)
 Add an Event. More...
 
trace_return_t pajeStartLink (varPrec time, const char *type, const char *cont, const char *src, const char *val, const char *key)
 Start a link. More...
 
trace_return_t pajeEndLink (varPrec time, const char *type, const char *cont, const char *dest, const char *val, const char *key)
 Start a link. More...
 
trace_return_t pajeSetVar (varPrec time, const char *type, const char *cont, varPrec val)
 Set a Variable value. More...
 
trace_return_t pajeAddVar (varPrec time, const char *type, const char *cont, varPrec val)
 Add a value to a Variable. More...
 
trace_return_t pajeSubVar (varPrec time, const char *type, const char *cont, varPrec val)
 Substract a value from a Variable. More...
 
trace_return_t pajeAddComment (const char *comment)
 Add some Comment in Trace file. More...
 
trace_return_t pajeEndTrace ()
 Finalize a PAJE trace. More...
 
trace_return_t viteEndTrace ()
 Finalize a VITE trace. More...
 

Detailed Description

Function Documentation

const paje_color_t Paje_get_color ( gtg_color_t  color)

Converts a GTG color into a PAJE color.

Parameters
colorGTG color to convert
Returns
The PAJE color
trace_return_t pajeAddComment ( const char *  comment)

Add some Comment in Trace file.

Parameters
commentComment to be added
Returns
TRACE_SUCCESS on success
An error code otherwise
trace_return_t pajeAddContainer ( varPrec  time,
const char *  alias,
const char *  type,
const char *  container,
const char *  name,
const char *  file 
)

Add a Container (VITE format).

Parameters
timeTime at which the container is added
aliasAlias on the new container
typeType of the container
containerContainer parent
nameName of the variable type
fileFile containing the container trace
Returns
0 if success
An error code otherwise
trace_return_t pajeAddContType ( const char *  alias,
const char *  contType,
const char *  name 
)

Add a Container Type.

Parameters
aliasAlias on the container
contTypeType of container
nameName of the container type
Returns
0 if success
An error code otherwise
trace_return_t pajeAddEntityValue ( const char *  alias,
const char *  entType,
const char *  name,
const char *  color 
)

Add an Entity Value.

Parameters
aliasAlias on the entity value
entTypeType of the entity
nameName of the variable type
colorColor of the entity
Returns
0 if success
An error code otherwise
trace_return_t pajeAddEvent ( varPrec  time,
const char *  type,
const char *  cont,
const char *  val 
)

Add an Event.

Parameters
timeTime at which the event happens
typeType of the event
contContainer in this event
valEntity value of the event of the container
Returns
0 if success
An error code otherwise
trace_return_t pajeAddEventType ( const char *  alias,
const char *  contType,
const char *  name 
)

Add an Event Type.

Parameters
aliasAlias on the event type
contTypeType of container
nameName of the event type
Returns
0 if success
An error code otherwise
trace_return_t pajeAddLinkType ( const char *  alias,
const char *  name,
const char *  contType,
const char *  srcContType,
const char *  destContType 
)

Add a Link Type.

Parameters
aliasAlias on the link type
nameName of the link type
contTypeType of container
srcContTypeType of the source container
destContTypeType of the destination container
Returns
0 if success
An error code otherwise
trace_return_t pajeAddStateType ( const char *  alias,
const char *  contType,
const char *  name 
)

Add a State Type.

Parameters
aliasAlias on the state type
contTypeType of container
nameName of the state type
Returns
0 if success
An error code otherwise
trace_return_t pajeAddVar ( varPrec  time,
const char *  type,
const char *  cont,
varPrec  val 
)

Add a value to a Variable.

Parameters
timeTime at which the variable is incremented
typeType of the variable
contContainer containing the variable
valValue added
Returns
0 if success
An error code otherwise
trace_return_t pajeAddVarType ( const char *  alias,
const char *  contType,
const char *  name 
)

Add a Variable Type.

Parameters
aliasAlias on the variable type
contTypeType of container
nameName of the variable type
Returns
0 if success
An error code otherwise
trace_return_t pajeDestroyContainer ( varPrec  time,
const char *  name,
const char *  type 
)

Destroy a Container.

Parameters
timeTime at which the container is destroyed
nameName on the container to destroy
typeType of the container
Returns
0 if success
An error code otherwise
trace_return_t pajeEndLink ( varPrec  time,
const char *  type,
const char *  cont,
const char *  dest,
const char *  val,
const char *  key 
)

Start a link.

Parameters
timeTime at which the link starts
typeType of the link
contContainer parent of the source and destination containers containing the link
destSource container
valValue of the link
keyKey used to match start link with end link
Returns
0 if success
An error code otherwise
pajeEndTrace ( )

Finalize a PAJE trace.

Returns
0 if success
An error code otherwise
char * pajeGetName ( int  rk)

Function to get the name of the file containing all the data for the proc of rank rk.

Parameters
rkRank of the proc you want the filename containing it
Returns
Name of the file.
trace_return_t pajeInitTrace ( const char *  filename,
int  rank,
gtg_flag_t  flags,
int  fmt 
)

Initialize a VITE trace ( *.ept)

Parameters
filenameRoot name of the file to create
rankRank of the processor
flagsOne of GTG_FLAG_NONE, GTG_FLAG_USE_MPI, GTG_FLAG_NOTBUF.
fmtFormat, paje or vite
Returns
0 if success An error code otherwise
trace_return_t pajePopState ( varPrec  time,
const char *  type,
const char *  cont 
)

Revert the State of a Container to its previous value.

Parameters
timeTime at which the state is poped
typeType of the state
contContainer in this state
Returns
0 if success
An error code otherwise
trace_return_t pajePushState ( varPrec  time,
const char *  type,
const char *  cont,
const char *  val 
)

Save the current State on a stack and change the State of a Container.

Parameters
timeTime at which the state is pushed
typeType of the state
contContainer in this state
valEntity value of the state of the container
Returns
0 if success
An error code otherwise
trace_return_t pajeSeqAddContainer ( varPrec  time,
const char *  alias,
const char *  type,
const char *  container,
const char *  name 
)

Add a Container (PAJE format).

Parameters
timeTime at which the container is added
aliasAlias on the new container
typeType of the container
containerContainer parent
nameName of the variable type
Returns
0 if success
An error code otherwise
trace_return_t pajeSetCompress ( int  val)

Enable trace compression.

Parameters
val0 means no compression, otherwize the output files will be compressed.
Returns
0 if success
An error code otherwise
trace_return_t pajeSetState ( varPrec  time,
const char *  type,
const char *  cont,
const char *  val 
)

Set the State of a Container.

Parameters
timeTime at which the state is set
typeType of the state
contContainer in this state
valEntity value of the state of the container
Returns
0 if success
An error code otherwise
trace_return_t pajeSetVar ( varPrec  time,
const char *  type,
const char *  cont,
varPrec  val 
)

Set a Variable value.

Parameters
timeTime at which the variable is set
typeType of the variable
contContainer containing the variable
valValue of the variable
Returns
0 if success
An error code otherwise
trace_return_t pajeStartLink ( varPrec  time,
const char *  type,
const char *  cont,
const char *  src,
const char *  val,
const char *  key 
)

Start a link.

Parameters
timeTime at which the link starts
typeType of the link
contContainer parent of the source and destination containers containing the link
srcSource container
valValue of the link
keyKey used to match start link with end link
Returns
0 if success
An error code otherwise
trace_return_t pajeSubVar ( varPrec  time,
const char *  type,
const char *  cont,
varPrec  val 
)

Substract a value from a Variable.

Parameters
timeTime at which the variable is incremented
typeType of the variable
contContainer containing the variable
valValue substracted
Returns
0 if success
An error code otherwise
viteEndTrace ( )

Finalize a VITE trace.

Returns
0 if success
An error code otherwise
gtg-trace-0.2-2+dfsg/doc/html/html/group__eventf.html000066400000000000000000000157431234554746700225460ustar00rootroot00000000000000 Generic Trace Generator (GTG): Functions related to the events
Generic Trace Generator (GTG)  0.1
Functions related to the events

Functions

trace_return_t addEventType (const char *alias, const char *contType, const char *name)
 Add an Event Type. More...
 
trace_return_t addEvent (varPrec time, const char *type, const char *cont, const char *val)
 Add an Event. More...
 

Detailed Description

Function Documentation

trace_return_t addEvent ( varPrec  time,
const char *  type,
const char *  cont,
const char *  val 
)

Add an Event.

Parameters
timeTime the event happens
typeType of the event
contContainer that produced the event
valValue of the new event
Returns
TRACE_SUCCESS on success
An error code otherwise
trace_return_t addEventType ( const char *  alias,
const char *  contType,
const char *  name 
)

Add an Event Type.

Parameters
aliasAlias on the event type
contTypeType of container of these events
nameAlternative name of the event type
Returns
TRACE_SUCCESS on success
An error code otherwise
gtg-trace-0.2-2+dfsg/doc/html/html/group__init.html000066400000000000000000000236311234554746700222150ustar00rootroot00000000000000 Generic Trace Generator (GTG): To init the generated trace file(s)
Generic Trace Generator (GTG)  0.1
To init the generated trace file(s)

Functions

trace_return_t initTrace (const char *filename, int rank, gtg_flag_t flags)
 Initialize a trace. More...
 
trace_return_t endTrace ()
 Finalize a trace. More...
 
trace_return_t setCompress (int val)
 Enable trace compression (only available for OTF traces). More...
 
trace_return_t addEntityValue (const char *alias, const char *entType, const char *name, gtg_color_t p_color)
 Add an Entity Value. More...
 

Detailed Description

Function Documentation

trace_return_t addEntityValue ( const char *  alias,
const char *  entType,
const char *  name,
gtg_color_t  p_color 
)

Add an Entity Value.

Parameters
aliasAlias on the entity value
entTypeType of the entity that can have the value
nameAlternative name of the variable type
p_colorColor of the entity
Returns
TRACE_SUCCESS on success
An error code otherwise
trace_return_t endTrace ( )

Finalize a trace.

Returns
TRACE_SUCCESS on success
An error code otherwise
int initTrace ( const char *  filename,
int  rank,
gtg_flag_t  flags 
)

Initialize a trace.

Parameters
filenameRoot name of the file to create
rankProcess number of the file to create
flagsOne of GTG_FLAG_NONE, GTG_FLAG_USE_MPI, GTG_FLAG_NOTBUF.
Returns
TRACE_SUCCESS on success
An error code otherwise
trace_return_t setCompress ( int  val)

Enable trace compression (only available for OTF traces).

Parameters
val0 means no compression, otherwize the output files will be compressed
Returns
TRACE_SUCCESS on success
An error code otherwise
gtg-trace-0.2-2+dfsg/doc/html/html/group__linkf.html000066400000000000000000000302001234554746700223430ustar00rootroot00000000000000 Generic Trace Generator (GTG): Functions related to links
Generic Trace Generator (GTG)  0.1
Functions related to links

Functions

trace_return_t addLinkType (const char *alias, const char *name, const char *contType, const char *srcContType, const char *destContType)
 Add a Link Type. More...
 
trace_return_t startLink (varPrec time, const char *type, const char *cont, const char *src, const char *dest, const char *val, const char *key)
 Start a Link. More...
 
trace_return_t endLink (varPrec time, const char *type, const char *cont, const char *src, const char *dest, const char *val, const char *key)
 End a Link. More...
 

Detailed Description

Function Documentation

trace_return_t addLinkType ( const char *  alias,
const char *  name,
const char *  contType,
const char *  srcContType,
const char *  destContType 
)

Add a Link Type.

Parameters
aliasAlias on the link type
nameAlternative name of the link type
contTypeType of common ancestral container
srcContTypeType of the source container
destContTypeType of the destination container
Returns
TRACE_SUCCESS on success
An error code otherwise
trace_return_t endLink ( varPrec  time,
const char *  type,
const char *  cont,
const char *  src,
const char *  dest,
const char *  val,
const char *  key 
)

End a Link.

Parameters
timeTime the link ends
typeType of the link
contContainer containing the link (an ancestor of source and destination container)
srcSource container
destDestination container
valValue of the link
keyKey to match the start link
Returns
TRACE_SUCCESS on success
An error code otherwise
trace_return_t startLink ( varPrec  time,
const char *  type,
const char *  cont,
const char *  src,
const char *  dest,
const char *  val,
const char *  key 
)

Start a Link.

Parameters
timeTime the link starts
typeType of the link
contContainer containing the link (an ancestor of source and destination container)
srcSource container
destDestination container
valValue of the link
keyKey to match the end link
Returns
TRACE_SUCCESS on success
An error code otherwise
gtg-trace-0.2-2+dfsg/doc/html/html/group__procf.html000066400000000000000000000273641234554746700223720ustar00rootroot00000000000000 Generic Trace Generator (GTG): Functions related to the containers
Generic Trace Generator (GTG)  0.1
Functions related to the containers

Functions

trace_return_t addContType (const char *alias, const char *contType, const char *name)
 Add a Container Type. More...
 
trace_return_t addContainer (varPrec time, const char *alias, const char *type, const char *container, const char *name, const char *file)
 Add a Container. More...
 
trace_return_t destroyContainer (varPrec time, const char *name, const char *type)
 Destroy a Container. More...
 
trace_return_t AddComment (const char *comment)
 Add some Comment in Trace file. More...
 

Detailed Description

Function Documentation

trace_return_t AddComment ( const char *  comment)

Add some Comment in Trace file.

Parameters
commentComment to be added
Returns
TRACE_SUCCESS on success
An error code otherwise
trace_return_t addContainer ( varPrec  time,
const char *  alias,
const char *  type,
const char *  container,
const char *  name,
const char *  file 
)

Add a Container.

Parameters
timeTime at which the container is added
aliasAlias of the new container
typeType of the new container
containerContainer parent
nameAlternative name of the variable type
fileFile containing the container for vite format. Use "0" or "" chains for other formats.
Returns
TRACE_SUCCESS on success
An error code otherwise
trace_return_t addContType ( const char *  alias,
const char *  contType,
const char *  name 
)

Add a Container Type.

Parameters
aliasAlias on the container added
contTypeType of the parent container
nameAlternative name of the new container type
Returns
TRACE_SUCCESS on success
An error code otherwise
trace_return_t destroyContainer ( varPrec  time,
const char *  name,
const char *  type 
)

Destroy a Container.

Parameters
timeTime at which the container is destroyed
nameName of the container
typeType of the container
Returns
TRACE_SUCCESS on success
An error code otherwise
gtg-trace-0.2-2+dfsg/doc/html/html/group__statef.html000066400000000000000000000313741234554746700225430ustar00rootroot00000000000000 Generic Trace Generator (GTG): Functions related to the states
Generic Trace Generator (GTG)  0.1
Functions related to the states

Functions

trace_return_t addStateType (const char *alias, const char *contType, const char *name)
 Add a State Type. More...
 
trace_return_t setState (varPrec time, const char *type, const char *cont, const char *val)
 Set the State of a Container. More...
 
trace_return_t pushState (varPrec time, const char *type, const char *cont, const char *val)
 Save the current State on a stack and change the State of a Container. More...
 
trace_return_t popState (varPrec time, const char *type, const char *cont)
 Revert the State of a Container to its previous value. More...
 

Detailed Description

Function Documentation

trace_return_t addStateType ( const char *  alias,
const char *  contType,
const char *  name 
)

Add a State Type.

Parameters
aliasAlias on the state type added
contTypeType of container of these states
nameAlternative name of the state type
Returns
TRACE_SUCCESS on success
An error code otherwise
trace_return_t popState ( varPrec  time,
const char *  type,
const char *  cont 
)

Revert the State of a Container to its previous value.

Parameters
timeTime the state changes
typeType of the state
contContainer whose state changes
Returns
TRACE_SUCCESS on success
An error code otherwise
trace_return_t pushState ( varPrec  time,
const char *  type,
const char *  cont,
const char *  val 
)

Save the current State on a stack and change the State of a Container.

Parameters
timeTime the state changes
typeType of the state
contContainer whose state changes
valValue of state of container
Returns
TRACE_SUCCESS on success
An error code otherwise
trace_return_t setState ( varPrec  time,
const char *  type,
const char *  cont,
const char *  val 
)

Set the State of a Container.

Parameters
timeTime the state changes
typeType of the state
contContainer whose state changes
valValue of new state of container
Returns
TRACE_SUCCESS on success
An error code otherwise
gtg-trace-0.2-2+dfsg/doc/html/html/group__traceType.html000066400000000000000000000264401234554746700232130ustar00rootroot00000000000000 Generic Trace Generator (GTG): Trace type handler
Generic Trace Generator (GTG)  0.1
Trace type handler

Enumerations

enum  traceType {
  PAJE, VITE, OTF, TAU,
  PAJE, VITE, OTF, TAU
}
 The type of the output trace. More...
 

Functions

void setTraceType (traceType_t type)
 Set the type of output trace. More...
 
traceType_t getTraceType ()
 Get the type of the output trace. More...
 
char * getName (int procRk)
 To get the name of the file to give to the addCont function for processors. More...
 
int bufferedModeActivated ()
 Check wether the buffered-mode is activated. More...
 

Detailed Description

Enumeration Type Documentation

enum traceType

The type of the output trace.

Enumerator
PAJE 

Paje trace format.

VITE 

ViTE-specific trace format.

OTF 

OTF trace format.

TAU 

TAU Trace format.

PAJE 

Paje trace format.

VITE 

ViTE-specific trace format.

OTF 

OTF trace format.

TAU 

TAU Trace format.

Function Documentation

int bufferedModeActivated ( )

Check wether the buffered-mode is activated.

Returns
1 is the buffered-mode is activate.
0 otherwise.
traceType_t getName ( int  procRk)

To get the name of the file to give to the addCont function for processors.

Parameters
procRkRank of the proc to get the file containing it
Returns
The name of the file to give for a proc
traceType_t getTraceType ( )

Get the type of the output trace.

Returns
The type of the trace
void setTraceType ( traceType_t  type)

Set the type of output trace.

Parameters
typeType of trace to generate
gtg-trace-0.2-2+dfsg/doc/html/html/group__type.html000066400000000000000000000143501234554746700222310ustar00rootroot00000000000000 Generic Trace Generator (GTG): Types used
Generic Trace Generator (GTG)  0.1
Types used

Typedefs

typedef double varPrec
 Use the double precision type for time and value. More...
 

Enumerations

enum  trace_return_t {
  TRACE_SUCCESS, TRACE_ERR_OPEN, TRACE_ERR_CLOSE, TRACE_ERR_WRITE,
  TRACE_ERR_NOT_IMPL
}
 Define various return values. More...
 

Detailed Description

Typedef Documentation

typedef double varPrec

Use the double precision type for time and value.

Enumeration Type Documentation

Define various return values.

Enumerator
TRACE_SUCCESS 

Success of the call.

TRACE_ERR_OPEN 

Failed to open files to write.

TRACE_ERR_CLOSE 

Failed to close file.

TRACE_ERR_WRITE 

Failed to write trace.

TRACE_ERR_NOT_IMPL 

Function not impleneted.

gtg-trace-0.2-2+dfsg/doc/html/html/group__varf.html000066400000000000000000000317271234554746700222150ustar00rootroot00000000000000 Generic Trace Generator (GTG): Functions related to variables
Generic Trace Generator (GTG)  0.1
Functions related to variables

Functions

trace_return_t addVarType (const char *alias, const char *name, const char *contType)
 Add a Variable Type. More...
 
trace_return_t setVar (varPrec time, const char *type, const char *cont, varPrec val)
 Set a Variable value. More...
 
trace_return_t addVar (varPrec time, const char *type, const char *cont, varPrec val)
 Add a value to a Variable. More...
 
trace_return_t subVar (varPrec time, const char *type, const char *cont, varPrec val)
 Substract a value from a Variable. More...
 

Detailed Description

Function Documentation

trace_return_t addVar ( varPrec  time,
const char *  type,
const char *  cont,
varPrec  val 
)

Add a value to a Variable.

Parameters
timeTime the variable is incremented
typeType of the variable
contContainer containing the variable
valValue added
Returns
TRACE_SUCCESS on success
An error code otherwise
trace_return_t addVarType ( const char *  alias,
const char *  name,
const char *  contType 
)

Add a Variable Type.

Parameters
aliasAlias on the variable type
contTypeType of container
nameAlternative name of the variable type
Returns
TRACE_SUCCESS on success
An error code otherwise
trace_return_t setVar ( varPrec  time,
const char *  type,
const char *  cont,
varPrec  val 
)

Set a Variable value.

Parameters
timeTime the variable changes
typeType of the variable
contContainer containing the variable
valNew value of the variable
Returns
TRACE_SUCCESS on success
An error code otherwise
trace_return_t subVar ( varPrec  time,
const char *  type,
const char *  cont,
varPrec  val 
)

Substract a value from a Variable.

Parameters
timeTime the variable is incremented
typeType of the variable
contContainer containing the variable
valValue substracted
Returns
TRACE_SUCCESS on success
An error code otherwise
gtg-trace-0.2-2+dfsg/doc/html/html/index.html000066400000000000000000000046161234554746700210100ustar00rootroot00000000000000 Generic Trace Generator (GTG): The GTG library
Generic Trace Generator (GTG)  0.1
The GTG library

(\/)
(*-*)
(")(")

Presentation

The GTG library provides a low level library to generate traces in various formats (Paje, OTF).
The use of the library is simple, you just need to include the GTG.h header and then you can use the library as you wish.
Some simple examples are available in the test directory.

gtg-trace-0.2-2+dfsg/doc/html/html/modules.html000066400000000000000000000115441234554746700213470ustar00rootroot00000000000000 Generic Trace Generator (GTG): Modules
Generic Trace Generator (GTG)  0.1
Modules
gtg-trace-0.2-2+dfsg/doc/html/html/nav_f.png000066400000000000000000000002311234554746700205770ustar00rootroot00000000000000‰PNG  IHDR8ł»`IDATxíÝK€ EŃ–·[†řBŃmkâÄÂH—prÓĽ.‚Žó‚ꎤR6Z VI±E‚5jł„lóš›iI¬ŢęçJ0ŚŃŃ/Žű›™uřńóŢż6sH ÝőyIEND®B`‚gtg-trace-0.2-2+dfsg/doc/html/html/nav_g.png000066400000000000000000000001371234554746700206050ustar00rootroot00000000000000‰PNG  IHDRô1&IDATxíÝ1 ÁOHf„á_ ->~¸ĺM iËMčŔS˝ü‚<IEND®B`‚gtg-trace-0.2-2+dfsg/doc/html/html/nav_h.png000066400000000000000000000001421234554746700206020ustar00rootroot00000000000000‰PNG  IHDR ,é@)IDATxíÝA @BQ­łšŰ›Đ˘Žáŕ) )ëý éaĹčÜżĆo‡RlĐßIEND®B`‚gtg-trace-0.2-2+dfsg/doc/html/html/open.png000066400000000000000000000001731234554746700204540ustar00rootroot00000000000000‰PNG  IHDR ŕ‘BIDATxíÝÁ €0 Đ׬ՙ\Ŕş€39—b!©9{|đI>$#Ŕß´ý8/¨ÄŘz/Ď>2Ŕ[ÎgiU,/¬~ĽĎ\ Ä9ٸIEND®B`‚gtg-trace-0.2-2+dfsg/doc/html/html/structContainer.html000066400000000000000000000265351234554746700230740ustar00rootroot00000000000000 Generic Trace Generator (GTG): Container Struct Reference
Container Struct Reference

#include <GTGOTF2_Structs.h>

Data Fields

struct __OTF2_String name
 
struct __OTF2_String alias
 
ContainerType_tctType
 
otf2_id_t id
 
struct Containerparent
 
struct gtg_list token
 
State_t state_stack
 
OTF2_EvtWriter * evt_writer
 
char * name
 
char * alias
 
int ctType
 
int id
 

Detailed Description

Containers

Field Documentation

char* Container::alias
struct __OTF2_String Container::alias
int Container::ctType
ContainerType_t* Container::ctType
OTF2_EvtWriter* Container::evt_writer
int Container::id
otf2_id_t Container::id
char* Container::name
struct __OTF2_String Container::name
struct Container* Container::parent
State_t Container::state_stack
struct gtg_list Container::token

The documentation for this struct was generated from the following files:
gtg-trace-0.2-2+dfsg/doc/html/html/structContainerType.html000066400000000000000000000206101234554746700237220ustar00rootroot00000000000000 Generic Trace Generator (GTG): ContainerType Struct Reference
ContainerType Struct Reference

#include <GTGOTF2_Structs.h>

Data Fields

struct __OTF2_String name
 
struct __OTF2_String alias
 
otf2_id_t id
 
struct ContainerTypeparent_type
 
struct gtg_list token
 
char * name
 
char * alias
 
int id
 

Field Documentation

char* ContainerType::alias
struct __OTF2_String ContainerType::alias
int ContainerType::id
otf2_id_t ContainerType::id
char* ContainerType::name
struct __OTF2_String ContainerType::name
struct ContainerType* ContainerType::parent_type
struct gtg_list ContainerType::token

The documentation for this struct was generated from the following files:
gtg-trace-0.2-2+dfsg/doc/html/html/structEntityValue.html000066400000000000000000000206641234554746700234200ustar00rootroot00000000000000 Generic Trace Generator (GTG): EntityValue Struct Reference
EntityValue Struct Reference

#include <GTGOTF2_Structs.h>

Data Fields

struct __OTF2_String name
 
struct __OTF2_String alias
 
int groupId
 
otf2_id_t id
 
struct gtg_list token
 
char * name
 
char * alias
 
int id
 

Detailed Description

EntityValue, contains the name of the functions/states

Field Documentation

char* EntityValue::alias
struct __OTF2_String EntityValue::alias
int EntityValue::groupId
int EntityValue::id
otf2_id_t EntityValue::id
char* EntityValue::name
struct __OTF2_String EntityValue::name
struct gtg_list EntityValue::token

The documentation for this struct was generated from the following files:
gtg-trace-0.2-2+dfsg/doc/html/html/structEventType.html000066400000000000000000000222061234554746700230640ustar00rootroot00000000000000 Generic Trace Generator (GTG): EventType Struct Reference
EventType Struct Reference

#include <GTGOTF2_Structs.h>

Data Fields

struct __OTF2_String name
 
struct __OTF2_String alias
 
ContainerType_tcontType
 
otf2_id_t id
 
struct gtg_list token
 
char * name
 
char * alias
 
int contType
 
int id
 

Detailed Description

Events/Markers

Field Documentation

char* EventType::alias
struct __OTF2_String EventType::alias
int EventType::contType
ContainerType_t* EventType::contType
int EventType::id
otf2_id_t EventType::id
char* EventType::name
struct __OTF2_String EventType::name
struct gtg_list EventType::token

The documentation for this struct was generated from the following files:
gtg-trace-0.2-2+dfsg/doc/html/html/structLink.html000066400000000000000000000102051234554746700220320ustar00rootroot00000000000000 Generic Trace Generator (GTG): Link Struct Reference
Link Struct Reference

#include <GTGOTF2_Structs.h>

Data Fields

varPrec time
 
int src
 

Field Documentation

int Link::src
varPrec Link::time

The documentation for this struct was generated from the following files:
gtg-trace-0.2-2+dfsg/doc/html/html/structLinkType.html000066400000000000000000000300201234554746700226710ustar00rootroot00000000000000 Generic Trace Generator (GTG): LinkType Struct Reference
LinkType Struct Reference

#include <GTGOTF2_Structs.h>

Data Fields

struct __OTF2_String name
 
struct __OTF2_String alias
 
ContainerType_tcontType
 
ContainerType_tsrcType
 
ContainerType_tdestType
 
otf2_id_t id
 
struct gtg_list token
 
char * name
 
char * alias
 
int contType
 
int srcType
 
int destType
 
int id
 

Detailed Description

Links/Messages

Field Documentation

char* LinkType::alias
struct __OTF2_String LinkType::alias
int LinkType::contType
ContainerType_t* LinkType::contType
int LinkType::destType
ContainerType_t* LinkType::destType
int LinkType::id
otf2_id_t LinkType::id
char* LinkType::name
struct __OTF2_String LinkType::name
int LinkType::srcType
ContainerType_t* LinkType::srcType
struct gtg_list LinkType::token

The documentation for this struct was generated from the following files:
gtg-trace-0.2-2+dfsg/doc/html/html/structState.html000066400000000000000000000176741234554746700222360ustar00rootroot00000000000000 Generic Trace Generator (GTG): State Struct Reference
State Struct Reference

#include <GTGOTF2_Structs.h>

Data Fields

EntityValue_tvalue
 
Container_tcont
 
StateType_tstateType
 
gtg_stack token
 
int value
 
int cont
 
int stateType
 

Detailed Description

States

Field Documentation

int State::cont
Container_t* State::cont
int State::stateType
StateType_t* State::stateType
gtg_stack State::token
int State::value
EntityValue_t* State::value

The documentation for this struct was generated from the following files:
gtg-trace-0.2-2+dfsg/doc/html/html/structStateType.html000066400000000000000000000204641234554746700230670ustar00rootroot00000000000000 Generic Trace Generator (GTG): StateType Struct Reference
StateType Struct Reference

#include <GTGOTF2_Structs.h>

Data Fields

struct __OTF2_String name
 
struct __OTF2_String alias
 
int groupId
 
otf2_id_t id
 
struct gtg_list token
 
char * name
 
char * alias
 
int id
 

Detailed Description

StateTypes

Field Documentation

struct __OTF2_String StateType::alias
char* StateType::alias
int StateType::groupId
int StateType::id
otf2_id_t StateType::id
char* StateType::name
struct __OTF2_String StateType::name
struct gtg_list StateType::token

The documentation for this struct was generated from the following files:
gtg-trace-0.2-2+dfsg/doc/html/html/structVariable.html000066400000000000000000000204011234554746700226610ustar00rootroot00000000000000 Generic Trace Generator (GTG): Variable Struct Reference
Variable Struct Reference

#include <GTGOTF2_Structs.h>

Data Fields

Container_tparent
 
VariableType_ttype
 
uint64_t value
 
otf2_id_t id
 
struct gtg_list token
 
int parent
 
int type
 
int id
 

Field Documentation

int Variable::id
otf2_id_t Variable::id
int Variable::parent
Container_t* Variable::parent
struct gtg_list Variable::token
int Variable::type
VariableType_t* Variable::type
uint64_t Variable::value

The documentation for this struct was generated from the following files:
gtg-trace-0.2-2+dfsg/doc/html/html/structVariableType.html000066400000000000000000000223061234554746700235310ustar00rootroot00000000000000 Generic Trace Generator (GTG): VariableType Struct Reference
VariableType Struct Reference

#include <GTGOTF2_Structs.h>

Data Fields

struct __OTF2_String name
 
struct __OTF2_String alias
 
ContainerType_tcontType
 
otf2_id_t id
 
struct gtg_list token
 
char * name
 
char * alias
 
int contType
 
int id
 

Detailed Description

Variables/Counters

Field Documentation

char* VariableType::alias
struct __OTF2_String VariableType::alias
int VariableType::contType
ContainerType_t* VariableType::contType
int VariableType::id
otf2_id_t VariableType::id
char* VariableType::name
struct __OTF2_String VariableType::name
struct gtg_list VariableType::token

The documentation for this struct was generated from the following files:
gtg-trace-0.2-2+dfsg/doc/html/html/struct____OTF2__String.html000066400000000000000000000102011234554746700241240ustar00rootroot00000000000000 Generic Trace Generator (GTG): __OTF2_String Struct Reference
__OTF2_String Struct Reference

#include <GTGOTF2_Structs.h>

Data Fields

uint32_t id
 
char * name
 

Field Documentation

uint32_t __OTF2_String::id
char* __OTF2_String::name

The documentation for this struct was generated from the following file:
gtg-trace-0.2-2+dfsg/doc/html/html/structgtg__color.html000066400000000000000000000111521234554746700232550ustar00rootroot00000000000000 Generic Trace Generator (GTG): gtg_color Struct Reference
gtg_color Struct Reference

This structure defines a color that can be used by GTG. More...

#include <GTGColor.h>

Data Fields

char * color_name
 
gtg_rgb_color_t rgb
 

Detailed Description

This structure defines a color that can be used by GTG.

Field Documentation

char* gtg_color::color_name

The name of the color (ie. "RED" or "Black",...)

gtg_rgb_color_t gtg_color::rgb

RGB code of the color. It should be obtained by calling GTG_COLOR_SET_COLOR(r, g, b).


The documentation for this struct was generated from the following file:
gtg-trace-0.2-2+dfsg/doc/html/html/structgtg__list.html000066400000000000000000000101701234554746700231110ustar00rootroot00000000000000 Generic Trace Generator (GTG): gtg_list Struct Reference
gtg_list Struct Reference

#include <GTGList.h>

Data Fields

struct gtg_listprev
 
struct gtg_listnext
 

Field Documentation

struct gtg_list* gtg_list::next
struct gtg_list* gtg_list::prev

The documentation for this struct was generated from the following file:
gtg-trace-0.2-2+dfsg/doc/html/html/structgtg__memory.html000066400000000000000000000162331234554746700234540ustar00rootroot00000000000000 Generic Trace Generator (GTG): gtg_memory Struct Reference
gtg_memory Struct Reference

#include <GTGMemory.h>

Data Fields

void * first_mem
 
void * current_mem
 
size_t block_len
 
long mem_len
 
void * first_free
 
long first_new
 
long nb_allocated
 

Field Documentation

size_t gtg_memory::block_len
void* gtg_memory::current_mem
void* gtg_memory::first_free
void* gtg_memory::first_mem
long gtg_memory::first_new
long gtg_memory::mem_len
long gtg_memory::nb_allocated

The documentation for this struct was generated from the following file:
gtg-trace-0.2-2+dfsg/doc/html/html/structgtg__paje__edp__s.html000066400000000000000000000117021234554746700245270ustar00rootroot00000000000000 Generic Trace Generator (GTG): gtg_paje_edp_s Struct Reference
gtg_paje_edp_s Struct Reference

#include <GTGPaje_Basic.h>

Data Fields

struct gtg_paje_edp_snext
 
char * name
 
enum gtg_paje_fieldtype_e type
 

Field Documentation

char* gtg_paje_edp_s::name
struct gtg_paje_edp_s* gtg_paje_edp_s::next
enum gtg_paje_fieldtype_e gtg_paje_edp_s::type

The documentation for this struct was generated from the following file:
gtg-trace-0.2-2+dfsg/doc/html/html/structgtg__paje__eventdef__s.html000066400000000000000000000132271234554746700255630ustar00rootroot00000000000000 Generic Trace Generator (GTG): gtg_paje_eventdef_s Struct Reference
gtg_paje_eventdef_s Struct Reference

#include <GTGPaje_Basic.h>

Data Fields

char * name
 
int id
 
gtg_paje_edp_tfirst
 
gtg_paje_edp_tlast
 

Field Documentation

gtg_paje_edp_t* gtg_paje_eventdef_s::first
int gtg_paje_eventdef_s::id
gtg_paje_edp_t* gtg_paje_eventdef_s::last
char* gtg_paje_eventdef_s::name

The documentation for this struct was generated from the following file:
gtg-trace-0.2-2+dfsg/doc/html/html/structotf__color.html000066400000000000000000000124551234554746700232730ustar00rootroot00000000000000 Generic Trace Generator (GTG): otf_color Struct Reference
otf_color Struct Reference

#include <GTGOTF2_Structs.h>

Data Fields

char * colorID
 
uint8_t red
 
uint8_t green
 
uint8_t blue
 

Field Documentation

uint8_t otf_color::blue
char * otf_color::colorID
uint8_t otf_color::green
uint8_t otf_color::red

The documentation for this struct was generated from the following files:
gtg-trace-0.2-2+dfsg/doc/html/html/sync_off.png000066400000000000000000000015251234554746700213230ustar00rootroot00000000000000‰PNG  IHDRŕw=řIDATxíÝKhTWŔń˙ä1I&3™8M¦Iš™†I3ÚŤ©b$cĚ I1V1±-(Tö±±Đ.* t!‚K[ĄÄŤĄ„¨´fŁ`l(řl©"Y”¤6ĆgĚTú}·sgîÜą ±d{8?ćĚťą÷;çÜďśłuíÚ`:!±F¬Ť˘BäŠ?ŰÄm'yĘĹ>ŃťlUŻ˝ťüý‰č_‹?€Śę ]€Y(ŠNń±8fý1°Öqún-eâ¨řtşmâČ Ó0}b›ů%·©µ×Ś®=ź0´ł?Š1sź‹0€ťŻ8Ŕ‘;_ ‹W|%\ Zð— >č˝ln¨p©.aÇ{ )t;Ú b nźšŻ›Ź65°˘ˇ2çĹÔ?Žž>OĐ´ŕuönm¤˘Ě`×­Z¬WjC~>‘Öľ0+á {{©ŹfÝ×Mć·ćĹ•ěŮĽ` Ý›%uA6´˝ĹĆö¨Á,]k˘ÄWĽ™u±›ť]‹7§Żiňh€ ¶¶¬ťĎÖu1 ló —Ҷ̺–:ŢÍ\ÄcăĎxřhR˛Ęč‡Qt$żß§¨ ŹŞ fdşü<4B˙Ů[•f¸d7=.ŤMé9/—éŞĂëů/˙O Üaŕň}€,‘j?źő.5Úšm?ś˙Ťź®ŽX˙2¬#¸d píć(Ł?cŰúĽ!˝›a1ĄŢ—Žňةܾ7dÔK:‚ů҉ě)Ę3‚Ü™ŕĚŕ]€,±H€µ+křöäu<|`·LhC7ąÔeÍ ź×ťźtÜ‹ óH$^2%l.ęaeĐäýE”ĚÉ|ĹÜěî‰Ýsä }¸ýDű^hzé~đR›¦Ăˇż]|#üŻ@×—Ö‡[ką–<|š(Ç*€ÝądÇtMé:Ýńř«Ř,ęĹű˘]”' řXÓ_nňˇĆ|Řý /c§fžâOIEND®B`‚gtg-trace-0.2-2+dfsg/doc/html/html/sync_on.png000066400000000000000000000015151234554746700211640ustar00rootroot00000000000000‰PNG  IHDRŕw=řIDATxíÝ_HTYŔńď8ă¤ó§i§4-g6ĆËŐ&kQ)¨Ô!Š0ŇURKÚ…„ęˇ/»PEÁ>ěKŹ-+KÁ˛Ń.Y”ľdEPaA‰ř°Ą¶›ZSÓďÜť;3wşŠ–Ż—ßŻgfîďśsçśWKÇń.€ÉřD­¨a‘'¬âq_ôk˘ŔŚ ŔDŽřQ´ÄďC¨¶ĺńĎ˙gĹ ń 0„Y‚:qZ¦Á)~őâ€čLý0HŤVń× žz-ż‰C“%¨g¦6€é8%Úő¬ëwęŮUĎżŞłÄ }? ?€·3ŔŔž©Š Ŕ”K• @hĂ a±đaÇćUe‹ sů~ë2˛ě“&Ú&B*AÄljćşěěi*˨,Ëçí»÷oĆŁT”,d[Ľ3-*ÁŔ…>ĺ‡Ë çLÉźçfkŇ éw#*AEjKUy>űšËÉő&{µ˘8—m5Ki¬ jjD*żNŽÖigwĂ7DŞ’mz骹úKŰľ±¶M!ć¤ÍkĐ?Źšoý¬_ĺÓlXí#Ň~–¸¬ę×ŇŃXŠÓ‘ůRŮ*Eű‚ՂדđEÜ;6«e"Q(˛Ů=–żEzæ5KŘĽÖ¸_ Ź1ňzBŞJë ±XŚě96ĺŞjL^7{ůăJŃ÷1˝i@%8'7M©_\Qś#ÓUŚËńý˙yő Wo Éx8ĽsĄvŻŞě|×SnÜ q_m Ýé î>bčŐí[JX,˝4[Tú{RŁëĽôľţa€tÝjjzzĹ'ĹěȶiIžŽňwĎs ˇ€—ŤŐKřőâC^ŽŚY­¨µÉ%6¨´ęş]vŰđhâ˝iWv–Ťhôëę°Ň¨ľ'ćĚ‚·ń|[ßěúĹ^€YrD=<ýDű]äÇ÷s€Ďő‹8™şCě? Ŕ ¨—t4őá©ގJ㇏W‹É± îrĽcjMÉěx| šE©řNÔ‰śřA˘ţ«–€ZĽń‡jó î#™§˘˘4ťgIEND®B`‚gtg-trace-0.2-2+dfsg/doc/html/html/tab_a.png000066400000000000000000000002161234554746700205570ustar00rootroot00000000000000‰PNG  IHDR$ÇÇ[UIDATxíťK €0C'o¤(Š[Ĺ˝ŕ%Üx˙#Ů©­ç ůťÁöó¦W¦e# 3t I 3+ĽřEă~\D˝9ŻŰŕč’wM·żö˙}Yő_ęA4Yžă}IEND®B`‚gtg-trace-0.2-2+dfsg/doc/html/html/tab_b.png000066400000000000000000000002511234554746700205570ustar00rootroot00000000000000‰PNG  IHDR$ÇÇ[pIDATxíÝM EáÇ»ĐÔ¸¸u`âŔ´V0Đ Ć}:t]DÁ˛sżä®‚¶ýËuĄř|’xůî˝Ŕ>˙1»& mÄ8ÜSŮŃxÜLŔUűšŢ˛ÄiE–ŠĺOs„˘’nxŕŇęÓKN˛~jIEND®B`‚gtg-trace-0.2-2+dfsg/doc/html/html/tab_h.png000066400000000000000000000002611234554746700205660ustar00rootroot00000000000000‰PNG  IHDR$ÇÇ[xIDATxíÝMÁ@†áž~ĄÜĆÎ’Evż"!•˛‘d*×rGq=Š{ĽßSݧçë­ÓÉHÇ uO^őř[Ŕ_‡˘ăXvyËţұ=·VCffćć{°öŤŠó´Rçś%_őç˙Ž˘ö·°ŤÇrug¶(?gh\i>|sIEND®B`‚gtg-trace-0.2-2+dfsg/doc/html/html/tab_s.png000066400000000000000000000002701234554746700206010ustar00rootroot00000000000000‰PNG  IHDR$ÇÇ[IDATxíÝ ‚@@ŃŁ?Q…¤"š˘%¦I‘—Šf–6[´HĂäQ<Ţâőţ]ždr Í’s?O=Ńńńw'ĚF‡Ž íđö-~rĂŤ[śčŠ­ě¬m֬ݯнŠŐF)Yş% §`nĚ,9B ™’©!ŃŚ\ý<Ĺ#üîî•IEND®B`‚gtg-trace-0.2-2+dfsg/doc/html/html/tabs.css000066400000000000000000000022131234554746700204450ustar00rootroot00000000000000.tabs, .tabs2, .tabs3 { background-image: url('tab_b.png'); width: 100%; z-index: 101; font-size: 13px; font-family: 'Lucida Grande',Geneva,Helvetica,Arial,sans-serif; } .tabs2 { font-size: 10px; } .tabs3 { font-size: 9px; } .tablist { margin: 0; padding: 0; display: table; } .tablist li { float: left; display: table-cell; background-image: url('tab_b.png'); line-height: 36px; list-style: none; } .tablist a { display: block; padding: 0 20px; font-weight: bold; background-image:url('tab_s.png'); background-repeat:no-repeat; background-position:right; color: #283A5D; text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9); text-decoration: none; outline: none; } .tabs3 .tablist a { padding: 0 10px; } .tablist a:hover { background-image: url('tab_h.png'); background-repeat:repeat-x; color: #fff; text-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0); text-decoration: none; } .tablist li.current a { background-image: url('tab_a.png'); background-repeat:repeat-x; color: #fff; text-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0); } gtg-trace-0.2-2+dfsg/exm/000077500000000000000000000000001234554746700151205ustar00rootroot00000000000000gtg-trace-0.2-2+dfsg/exm/Makefile000066400000000000000000000011141234554746700165550ustar00rootroot00000000000000BIN= paje_example paje_example2 gtg_color otf_example all: $(BIN) paje_example: paje_example.c gcc -Wall -W -o paje_example paje_example.c $(CFLAGS) $(LDFLAGS) -lgtg -lpthread paje_example2: paje_example2.c gcc -Wall -W -o paje_example2 paje_example2.c $(CFLAGS) $(LDFLAGS) -lgtg -lpthread gtg_color: gtg_color.c gcc -Wall -W -o gtg_color gtg_color.c $(CFLAGS) $(LDFLAGS) -lgtg -lpthread otf_example: otf_example.c gcc -Wall -W -o otf_example otf_example.c $(CFLAGS) $(LDFLAGS) -lgtg -lpthread -lotf clean: rm -f $(BIN) cleantraces: rm -f *def *marker *otf *events *trace *eptgtg-trace-0.2-2+dfsg/exm/gtg_color.c000066400000000000000000000045331234554746700172500ustar00rootroot00000000000000#include #include #include int main (int argc, char** argv){ (void) argc; (void) argv; setTraceType (PAJE); initTrace ("gtg_color", 0, GTG_FLAG_NONE); addContType ("CT_NET", "0", "Network"); addContType ("CT_NODE", "CT_NET", "Node"); addContType ("CT_PROC", "CT_NODE", "Proc"); addStateType ("ST_NodeState", "CT_NODE", "Node state"); addStateType ("ST_ProcState", "CT_PROC", "Procstate"); addEntityValue ("SN_0", "ST_NodeState", "black", GTG_BLACK); addEntityValue ("SN_1", "ST_NodeState", "red", GTG_RED); addEntityValue ("SN_2", "ST_NodeState", "green", GTG_GREEN); addEntityValue ("SN_3", "ST_NodeState", "blue", GTG_BLUE); addEntityValue ("SN_4", "ST_NodeState", "white", GTG_WHITE); addEntityValue ("SN_5", "ST_NodeState", "teal", GTG_TEAL); addEntityValue ("SN_6", "ST_NodeState", "darkgrey", GTG_DARKGREY); addEntityValue ("SN_7", "ST_NodeState", "yellow", GTG_YELLOW); addEntityValue ("SN_8", "ST_NodeState", "purple", GTG_PURPLE); addEntityValue ("SN_9", "ST_NodeState", "lightbrown", GTG_LIGHTBROWN); addEntityValue ("SN_10", "ST_NodeState", "lightgrey", GTG_LIGHTGREY); addEntityValue ("SN_11", "ST_NodeState", "darkblue", GTG_DARKBLUE); addEntityValue ("SN_12", "ST_NodeState", "pink", GTG_PINK); addEntityValue ("SN_13", "ST_NodeState", "darkpink", GTG_DARKPINK); addEntityValue ("SN_14", "ST_NodeState", "seablue", GTG_SEABLUE); addEntityValue ("SN_15", "ST_NodeState", "kaki", GTG_KAKI); addEntityValue ("SN_16", "ST_NodeState", "redblood", GTG_REDBLOOD); addEntityValue ("SN_17", "ST_NodeState", "brown", GTG_BROWN); addEntityValue ("SN_18", "ST_NodeState", "grenat", GTG_GRENAT); addEntityValue ("SN_19", "ST_NodeState", "orange", GTG_ORANGE); addEntityValue ("SN_20", "ST_NodeState", "mauve", GTG_MAUVE); addEntityValue ("SN_21", "ST_NodeState", "lightpink", GTG_LIGHTPINK); addContainer (0.00000, "C_Net0", "CT_NET", "0", "Ensemble0", "0"); addContainer (0.00000, "C_N0", "CT_NODE", "C_Net0", "Node0", "0"); addContainer (0.00000, "C_P0", "CT_PROC", "C_N0", "Proc0", "0"); int i; for(i=0; i<21;i++) { char* nodeState = NULL; asprintf(&nodeState, "SN_%d", i); setState ((float)i, "ST_NodeState", "C_P0", nodeState); free(nodeState); } endTrace (); return EXIT_SUCCESS; } gtg-trace-0.2-2+dfsg/exm/otf_example.c000066400000000000000000000124211234554746700175670ustar00rootroot00000000000000/* * Small example to generate a trace in the otf format * Author Kevin Coulomb and Johnny Jazeix */ #define _GNU_SOURCE #include #include #include #include /* Size of the buffer used */ #define TXTSIZE 200 /* Small function to clean the buffer */ void clear (char* buf, int size){ int i; for (i=0;i use gtg_f implicit none real (8) :: time real (8) :: val integer :: ierr integer :: buf = 0 !! Init call setTraceType_f (PAJE, buf) call initTrace_f ("fpaje", ierr) !! Creating proc types call addContType_f ("CT_NET", "0", "Network", ierr) call addContType_f ("CT_NODE", "CT_NET", "Node", ierr) call addContType_f ("CT_PROC", "CT_NODE", "Proc", ierr) !! Creating state types call addStateType_f ("ST_NodeState", "CT_NODE", "Node state", ierr) call addStateType_f ("ST_ProcState", "CT_PROC", "Procstate", ierr) !! Creating Entity value types call addEntityValue_f ("SN_0", "ST_NodeState", "Sleep", P_RED, ierr) call addEntityValue_f ("SN_1", "ST_NodeState", "WaitLocal",& & P_BLUE, ierr) call addEntityValue_f ("SN_2", "ST_NodeState", "WaitDistant", & & P_GREEN, ierr) call addEntityValue_f ("SP_3", "ST_ProcState", "Produit", P_DARKPINK,& & ierr) call addEntityValue_f ("SP_4", "ST_ProcState", "Somme", P_BROWN, ierr) call addEntityValue_f ("SP_5", "ST_ProcState", "Difference",& & P_ORANGE, ierr) !! Creating link types call addLinkType_f ("L_0", "Fanin", "CT_NET", "CT_PROC", "CT_PROC", & & ierr) call addLinkType_f ("L_1", "Bloc", "CT_NET", "CT_PROC", "CT_PROC", & & ierr) !! Creating var type call addVarType_f ("V_Mem", "Memoire", "CT_NODE", ierr) !! Creating event types call addEventType_f ("E_0", "CT_PROC", "Lapin", ierr) call addEventType_f ("E_1", "CT_PROC", "Chocolat", ierr) time = 0.000000000000 !! Adding containers call addContainer_f (time, "C_Net0", "CT_NET", "0", "Ensemble0", "0",& & ierr) call addContainer_f (time, "C_N0", "CT_NODE", "C_Net0", "Node0", "0",& & ierr) call addContainer_f (time, "C_P0", "CT_PROC", "C_N0", "Proc0", "0", & & ierr) call addContainer_f (time, "C_P1", "CT_PROC", "C_N0", "Proc1", "0", & & ierr) call addContainer_f (time, "C_P2", "CT_PROC", "C_N0", "Proc2", "0", & & ierr) call addContainer_f (time, "C_N1", "CT_NODE", "C_Net0", "Node1", "0",& & ierr) call addContainer_f (time, "C_P3", "CT_PROC", "C_N1", "Proc3", "0", & & ierr) call addContainer_f (time, "C_P4", "CT_PROC", "C_N1", "Proc4", "0", & & ierr) call addContainer_f (time, "C_P5", "CT_PROC", "C_N1", "Proc5", "0", & & ierr) !! Setting var, events states, links on proc/nodes time = 0.0111742 val = 1.0 call setVar_f (time, "V_Mem", "C_N0", val, ierr) time = 0.0211 call setState_f (time, "ST_NodeState", "C_N1", "SN_1", ierr) time = 0.0212742 call setState_f (time, "ST_NodeState", "C_N0", "SN_0", ierr) time = 0.0214742 val = 2.0 call setVar_f (time, "V_Mem", "C_N0", val, ierr) time = 0.0311742 call setState_f (time, "ST_NodeState", "C_N1", "SN_2", ierr) time = 0.0411742 call setState_f (time, "ST_NodeState", "C_N0", "SN_1", ierr) time = 0.0311742 val = 3.0 call setVar_f (time, "V_Mem", "C_N0", val, ierr) time = 0.0411742 val = 1.0 call setVar_f (time, "V_Mem", "C_N1", val, ierr) time = 0.0511742 call setState_f (time, "ST_NodeState", "C_N1", "SN_0", ierr) time = 0.0511742 val = 2.0 call setVar_f (time, "V_Mem", "C_N1", val, ierr) time = 0.0611742 call setState_f (time, "ST_NodeState", "C_N0", "SN_2", ierr) time = 0.0611742 val = 3.0 call setVar_f (time, "V_Mem", "C_N1", val, ierr) time = 0.0151742 call setState_f (time, "ST_ProcState", "C_P0", "SP_3", ierr) time = 0.0161742 call setState_f (time, "ST_ProcState", "C_P1", "SP_3", ierr) time = 0.0161742 call setState_f (time, "ST_ProcState", "C_P0", "SP_5", ierr) time = 0.0171742 call setState_f (time, "ST_ProcState", "C_P3", "SP_5", ierr) time = 0.0171742 call setState_f (time, "ST_ProcState", "C_P4", "SP_3", ierr) time = 0.0181742 call setState_f (time, "ST_ProcState", "C_P5", "SP_4", ierr) time = 0.0181742 call setState_f (time, "ST_ProcState", "C_P2", "SP_3", ierr) time = 0.0191742 call setState_f (time, "ST_ProcState", "C_P3", "SP_4", ierr) time = 0.0191742 call setState_f (time, "ST_ProcState", "C_P1", "SP_4", ierr) time = 0.0111742 call setState_f (time, "ST_ProcState", "C_P0", "SP_3", ierr) time = 0.0111742 call setState_f (time, "ST_ProcState", "C_P0", "SP_3", ierr) time = 0.0211742 call setState_f (time, "ST_ProcState", "C_P5", "SP_4", ierr) time = 0.0211742 call setState_f (time, "ST_ProcState", "C_P4", "SP_5", ierr) time = 0.0311742 call setState_f (time, "ST_ProcState", "C_P3", "SP_5", ierr) time = 0.0311742 call setState_f (time, "ST_ProcState", "C_P2", "SP_5", ierr) time = 0.0411742 call setState_f (time, "ST_ProcState", "C_P0", "SP_3", ierr) time = 0.0411742 call setState_f (time, "ST_ProcState", "C_P1", "SP_3", ierr) time = 0.0511742 call setState_f (time, "ST_ProcState", "C_P1", "SP_4", ierr) time = 0.0511742 call setState_f (time, "ST_ProcState", "C_P2", "SP_4", ierr) time = 0.0611742 call setState_f (time, "ST_ProcState", "C_P0", "SP_3", ierr) time = 0.0611742 call setState_f (time, "ST_ProcState", "C_P3", "SP_3", ierr) time = 0.0711742 call setState_f (time, "ST_ProcState", "C_P0", "SP_4", ierr) time = 0.0711742 call setState_f (time, "ST_ProcState", "C_P5", "SP_5", ierr) time = 0.0811742 call setState_f (time, "ST_ProcState", "C_P4", "SP_5", ierr) time = 0.0811742 call setState_f (time, "ST_ProcState", "C_P2", "SP_4", ierr) time = 0.0911742 call setState_f (time, "ST_ProcState", "C_P0", "SP_3", ierr) time = 0.02 call startLink_f (time, "L_0", "C_Net0", "C_P2", "C_P4", "12", "0", & & ierr) time = 0.03 call startLink_f (time, "L_1", "C_Net0", "C_P4", "C_P2", "13", "1", & & ierr) time = 0.04 call startLink_f (time, "L_0", "C_Net0", "C_P0", "C_P5", "14", "2", & & ierr) time = 0.05 call startLink_f (time, "L_1", "C_Net0", "C_P3", "C_P1", "15", "3", & & ierr) time = 0.03 call endLink_f (time, "L_0", "C_Net0", "C_P2", "C_P4", "12", "0", & & ierr) time = 0.04 call endLink_f (time, "L_1", "C_Net0", "C_P4", "C_P2", "13", "1", & & ierr) time = 0.05 call endLink_f (time, "L_0", "C_Net0", "C_P0", "C_P5", "14", "2", & & ierr) time = 0.06 call endLink_f (time, "L_1", "C_Net0", "C_P3", "C_P1", "15", "3", & & ierr) time = 0.02 call addEvent_f (time, "E_0", "C_P0", "11", ierr) time = 0.05 call addEvent_f (time, "E_0", "C_P2", "10", ierr) time = 0.07 call addEvent_f (time, "E_1", "C_P1", "1", ierr) time = 0.08 call addEvent_f (time, "E_1", "C_P5", "3", ierr) !! Cleaning call endTrace_f (ierr) end program main gtg-trace-0.2-2+dfsg/exm/paje_example.c000066400000000000000000000111741234554746700177220ustar00rootroot00000000000000#include #include #include int main (int argc, char** argv){ (void) argc; (void) argv; setTraceType (PAJE); initTrace ("cpaje", 0, GTG_FLAG_NONE); addContType ("CT_NET", "0", "Network"); addContType ("CT_NODE", "CT_NET", "Node"); addContType ("CT_PROC", "CT_NODE", "Proc"); addStateType ("ST_NodeState", "CT_NODE", "Node state"); addStateType ("ST_ProcState", "CT_PROC", "Procstate"); addEntityValue ("SN_0", "ST_NodeState", "Sleep", GTG_LIGHTPINK); addEntityValue ("SN_1", "ST_NodeState", "WaitLocal", GTG_PINK); addEntityValue ("SN_2", "ST_NodeState", "WaitDistant", GTG_BLUE); addEntityValue ("SP_3", "ST_ProcState", "Produit", GTG_ORANGE); addEntityValue ("SP_4", "ST_ProcState", "Somme", GTG_GREEN); addEntityValue ("SP_5", "ST_ProcState", "Difference", GTG_BLACK); addLinkType ("L_0", "Fanin", "CT_NET", "CT_PROC", "CT_PROC"); addLinkType ("L_1", "Bloc", "CT_NET", "CT_PROC", "CT_PROC"); addVarType ("V_Mem", "Memoire", "CT_NODE"); addEventType ("E_0", "CT_PROC", "Lapin"); addEventType ("E_1", "CT_PROC", "Chocolat"); addContainer (0.00000, "C_Net0", "CT_NET", "0", "Ensemble0", "0"); addContainer (0.00000, "C_N0", "CT_NODE", "C_Net0", "Node0", "0"); addContainer (0.00000, "C_P0", "CT_PROC", "C_N0", "Proc0", "0"); addContainer (0.00000, "C_P1", "CT_PROC", "C_N0", "Proc1", "0"); addContainer (0.00000, "C_P2", "CT_PROC", "C_N0", "Proc2", "0"); addContainer (0.00000, "C_N1", "CT_NODE", "C_Net0", "Node1", "0"); addContainer (0.00000, "C_P3", "CT_PROC", "C_N1", "Proc3", "0"); addContainer (0.00000, "C_P4", "CT_PROC", "C_N1", "Proc4", "0"); addContainer (0.00000, "C_P5", "CT_PROC", "C_N1", "Proc5", "0"); setVar (0.0111742, "V_Mem", "C_N0", 1.0000000); setState (0.01120000, "ST_NodeState", "C_N1", "SN_1"); setState (0.02121000, "ST_NodeState", "C_N0", "SN_0"); setVar (0.0212742, "V_Mem", "C_N0", 2.0000000); setState (0.03122000, "ST_NodeState", "C_N1", "SN_2"); setState (0.04123000, "ST_NodeState", "C_N0", "SN_1"); setVar (0.0313742, "V_Mem", "C_N0", 3.0000000); setVar (0.0414742, "V_Mem", "C_N1", 1.0000000); setState (0.05124000, "ST_NodeState", "C_N1", "SN_0"); setVar (0.0515742, "V_Mem", "C_N1", 2.0000000); setState (0.06124500, "ST_NodeState", "C_N0", "SN_2"); setVar (0.0616742, "V_Mem", "C_N1", 3.0000000); setState (0.00130000, "ST_ProcState", "C_P0", "SP_3"); setState (0.00140000, "ST_ProcState", "C_P1", "SP_3"); setState (0.00150000, "ST_ProcState", "C_P0", "SP_5"); setState (0.00160000, "ST_ProcState", "C_P3", "SP_5"); setState (0.00170000, "ST_ProcState", "C_P4", "SP_3"); setState (0.00180000, "ST_ProcState", "C_P5", "SP_4"); setState (0.00190000, "ST_ProcState", "C_P2", "SP_3"); setState (0.00200000, "ST_ProcState", "C_P3", "SP_4"); setState (0.00210000, "ST_ProcState", "C_P1", "SP_4"); setState (0.00230000, "ST_ProcState", "C_P0", "SP_3"); setState (0.00330000, "ST_ProcState", "C_P0", "SP_3"); setState (0.00430000, "ST_ProcState", "C_P5", "SP_4"); setState (0.00530000, "ST_ProcState", "C_P4", "SP_5"); setState (0.00630000, "ST_ProcState", "C_P3", "SP_5"); setState (0.00730000, "ST_ProcState", "C_P2", "SP_5"); setState (0.00830000, "ST_ProcState", "C_P0", "SP_3"); setState (0.00930000, "ST_ProcState", "C_P1", "SP_3"); setState (0.01030000, "ST_ProcState", "C_P1", "SP_4"); setState (0.02130000, "ST_ProcState", "C_P2", "SP_4"); setState (0.03130000, "ST_ProcState", "C_P0", "SP_3"); setState (0.04130000, "ST_ProcState", "C_P3", "SP_3"); setState (0.05130000, "ST_ProcState", "C_P0", "SP_4"); setState (0.06130000, "ST_ProcState", "C_P5", "SP_5"); setState (0.07130000, "ST_ProcState", "C_P4", "SP_2"); setState (0.08130000, "ST_ProcState", "C_P2", "SP_4"); setState (0.09130000, "ST_ProcState", "C_P0", "SP_3"); startLink (0.020000, "L_0", "C_Net0", "C_P2", "C_P4", "12", "0"); startLink (0.030000, "L_1", "C_Net0", "C_P4", "C_P2", "13", "1"); startLink (0.040000, "L_0", "C_Net0", "C_P0", "C_P5", "14", "2"); startLink (0.050000, "L_1", "C_Net0", "C_P3", "C_P1", "15", "3"); endLink (0.030000, "L_0", "C_Net0", "C_P2", "C_P4", "12", "0"); endLink (0.040000, "L_1", "C_Net0", "C_P4", "C_P2", "13", "1"); endLink (0.050000, "L_0", "C_Net0", "C_P0", "C_P5", "14", "2"); endLink (0.060000, "L_1", "C_Net0", "C_P3", "C_P1", "15", "3"); addEvent (0.030000, "E_0", "C_P0", "11"); addEvent (0.050000, "E_0", "C_P2", "10"); addEvent (0.070000, "E_1", "C_P1", "1"); addEvent (0.090000, "E_1", "C_P5", "3"); endTrace (); return EXIT_SUCCESS; } gtg-trace-0.2-2+dfsg/exm/paje_example2.c000066400000000000000000000116171234554746700200060ustar00rootroot00000000000000/* * Small example to generate a trace in the Paje format * Author Kevin Coulomb */ #include #include #include #include #include /* Size of the buffer used */ #define TXTSIZE 200 /* Small function to clean the buffer */ void clear (char* buf, int size){ int i; for (i=0;i #include #include int main (int argc, char** argv){ int rk; MPI_Init (&argc, &argv); MPI_Comm_rank (MPI_COMM_WORLD, &rk); setTraceType (VITE, BUFF); setComm (MPI_COMM_WORLD); initTrace ("cvite"); if (rk==0){ addContType ("CT_NET", "0", "Network"); addContType ("CT_NODE", "CT_NET", "Node"); addContType ("CT_PROC", "CT_NODE", "Proc"); addStateType ("ST_NodeState", "CT_NODE", "Node state"); addStateType ("ST_ProcState", "CT_PROC", "Procstate"); addEntityValue ("SN_0", "ST_NodeState", "Sleep", "0.5 0.5 0.5"); addEntityValue ("SN_1", "ST_NodeState", "WaitLocal", "0.0 0.5 0.9"); addEntityValue ("SN_2", "ST_NodeState", "WaitDistant", "0.9 0.5 0.0"); addEntityValue ("SP_3", "ST_ProcState", "Produit", "0.5 0.9 0.0"); addEntityValue ("SP_4", "ST_ProcState", "Somme", "0.9 0.9 0.0"); addEntityValue ("SP_5", "ST_ProcState", "Difference", "0.1 0.5 0.4"); addLinkType ("L_0", "Fanin", "CT_NET", "CT_PROC", "CT_PROC"); addLinkType ("L_1", "Bloc", "CT_NET", "CT_PROC", "CT_PROC"); addVarType ("V_Mem", "Memoire", "CT_NODE"); addEventType ("E_0", "CT_PROC", "Lapin"); addEventType ("E_1", "CT_PROC", "Chocolat"); addContainer (0.00000, "C_Net0", "CT_NET", "0", "Ensemble0", "0"); addContainer (0.00000, "C_N0", "CT_NODE", "C_Net0", "Node0", "0"); addContainer (0.00000, "C_N1", "CT_NODE", "C_Net0", "Node1", "0"); addContainer (0.00000, "C_P0", "CT_PROC", "C_N0", "Proc0", "cvite_proc0"); addContainer (0.00000, "C_P1", "CT_PROC", "C_N0", "Proc1", "cvite_proc1"); addContainer (0.00000, "C_P2", "CT_PROC", "C_N0", "Proc2", "cvite_proc2"); addContainer (0.00000, "C_P3", "CT_PROC", "C_N1", "Proc3", "cvite_proc3"); addContainer (0.00000, "C_P4", "CT_PROC", "C_N1", "Proc4", "cvite_proc4"); addContainer (0.00000, "C_P5", "CT_PROC", "C_N1", "Proc5", "cvite_proc5"); } setVar (0.0111742, "V_Mem", "C_N0", 1.0000000); setState (0.01120000, "ST_NodeState", "C_N1", "SN_1"); setState (0.02121000, "ST_NodeState", "C_N0", "SN_0"); setVar (0.0212742, "V_Mem", "C_N0", 2.0000000); setState (0.03122000, "ST_NodeState", "C_N1", "SN_2"); setState (0.04123000, "ST_NodeState", "C_N0", "SN_1"); setVar (0.0313742, "V_Mem", "C_N0", 3.0000000); setVar (0.0414742, "V_Mem", "C_N1", 1.0000000); setState (0.05124000, "ST_NodeState", "C_N1", "SN_0"); setVar (0.0515742, "V_Mem", "C_N1", 2.0000000); setState (0.06124500, "ST_NodeState", "C_N0", "SN_2"); setVar (0.0616742, "V_Mem", "C_N1", 3.0000000); switch (rk){ case 0: setState (0.00130000, "ST_ProcState", "C_P0", "SP_3"); setState (0.00150000, "ST_ProcState", "C_P0", "SP_5"); setState (0.00230000, "ST_ProcState", "C_P0", "SP_3"); setState (0.00330000, "ST_ProcState", "C_P0", "SP_3"); setState (0.00830000, "ST_ProcState", "C_P0", "SP_3"); setState (0.03130000, "ST_ProcState", "C_P0", "SP_3"); setState (0.05130000, "ST_ProcState", "C_P0", "SP_4"); setState (0.09130000, "ST_ProcState", "C_P0", "SP_3"); startLink (0.040000, "L_0", "C_Net0", "C_P0", "C_P5", "14", "2"); endLink (0.050000, "L_0", "C_Net0", "C_P0", "C_P5", "14", "2"); addEvent (0.030000, "E_0", "C_P0", "11"); break; case 1 : setState (0.00140000, "ST_ProcState", "C_P1", "SP_3"); setState (0.00210000, "ST_ProcState", "C_P1", "SP_4"); setState (0.00930000, "ST_ProcState", "C_P1", "SP_3"); setState (0.01030000, "ST_ProcState", "C_P1", "SP_4"); addEvent (0.070000, "E_1", "C_P1", "1"); break; case 3 : setState (0.00160000, "ST_ProcState", "C_P3", "SP_5"); setState (0.00200000, "ST_ProcState", "C_P3", "SP_4"); setState (0.00630000, "ST_ProcState", "C_P3", "SP_5"); setState (0.04130000, "ST_ProcState", "C_P3", "SP_3"); startLink (0.050000, "L_1", "C_Net0", "C_P3", "C_P1", "15", "3"); endLink (0.060000, "L_1", "C_Net0", "C_P3", "C_P1", "15", "3"); break; case 4 : setState (0.00170000, "ST_ProcState", "C_P4", "SP_3"); setState (0.00530000, "ST_ProcState", "C_P4", "SP_5"); setState (0.07130000, "ST_ProcState", "C_P4", "SP_5"); startLink (0.030000, "L_1", "C_Net0", "C_P4", "C_P2", "13", "1"); endLink (0.030000, "L_0", "C_Net0", "C_P2", "C_P4", "12", "0"); break; case 5 : setState (0.00180000, "ST_ProcState", "C_P5", "SP_4"); setState (0.00430000, "ST_ProcState", "C_P5", "SP_4"); setState (0.06130000, "ST_ProcState", "C_P5", "SP_5"); addEvent (0.090000, "E_1", "C_P5", "3"); break; case 2 : setState (0.00190000, "ST_ProcState", "C_P2", "SP_3"); setState (0.00730000, "ST_ProcState", "C_P2", "SP_5"); setState (0.02130000, "ST_ProcState", "C_P2", "SP_4"); setState (0.08130000, "ST_ProcState", "C_P2", "SP_4"); startLink (0.020000, "L_0", "C_Net0", "C_P2", "C_P4", "12", "0"); endLink (0.040000, "L_1", "C_Net0", "C_P4", "C_P2", "13", "1"); addEvent (0.050000, "E_0", "C_P2", "10"); break; default : break; } endTrace (); MPI_Finalize (); return EXIT_SUCCESS; } gtg-trace-0.2-2+dfsg/extlib/000077500000000000000000000000001234554746700156165ustar00rootroot00000000000000gtg-trace-0.2-2+dfsg/extlib/Makefile.am000066400000000000000000000000751234554746700176540ustar00rootroot00000000000000 if DONT_USE_INTERNAL_OTF SUBDIRS = else SUBDIRS = otf endif gtg-trace-0.2-2+dfsg/extlib/Makefile.in000066400000000000000000000433471234554746700176760ustar00rootroot00000000000000# Makefile.in generated by automake 1.14.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 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@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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 = extlib DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am 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) mkinstalldirs = $(install_sh) -d CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DIST_SUBDIRS = otf DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ F77 = @F77@ FFLAGS = @FFLAGS@ FGREP = @FGREP@ GREP = @GREP@ HAVE_DOXYGEN = @HAVE_DOXYGEN@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MPIDIR = @MPIDIR@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTFDIR = @OTFDIR@ OTF_INC = @OTF_INC@ OTF_LIB = @OTF_LIB@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ 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@ PDFLATEX = @PDFLATEX@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_MPIDIR_FROM_USER = @USE_MPIDIR_FROM_USER@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_F77 = @ac_ct_F77@ 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@ subdirs = @subdirs@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ @DONT_USE_INTERNAL_OTF_FALSE@SUBDIRS = otf @DONT_USE_INTERNAL_OTF_TRUE@SUBDIRS = all: all-recursive .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu extlib/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu extlib/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ 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-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ 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" cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @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 @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ $(am__make_dryrun) \ || test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done check-am: all-am check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: 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." clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic clean-libtool cscopelist-am ctags \ ctags-am distclean distclean-generic distclean-libtool \ distclean-tags distdir 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-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-am # 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: gtg-trace-0.2-2+dfsg/gtg.pc.in000066400000000000000000000003121234554746700160350ustar00rootroot00000000000000prefix=@prefix@ exec_prefix=@exec_prefix@ libdir=@libdir@ includedir=@includedir@ Name: GTG Description: GTG - Generic Trace Generator Version: @VERSION@ Libs: -L${libdir} -lgtg Cflags: -I${includedir}gtg-trace-0.2-2+dfsg/inc/000077500000000000000000000000001234554746700151005ustar00rootroot00000000000000gtg-trace-0.2-2+dfsg/inc/GTG.h000066400000000000000000000017341234554746700156770ustar00rootroot00000000000000/** * \file GTG.h * \brief Generic header to include * \authors * Developpers are : \n * Francois Rue - francois.rue@labri.fr \n * Francois Trahay - francois.trahay@labri.fr \n * Johnny Jazeix - jazeix@enseirb-matmeca.fr \n * Kevin Coulomb - kevin.coulomb@gmail.com \n * Mathieu Faverge - faverge@labri.fr \n * Olivier Lagrasse - lagrasse@enseirb-matmeca.fr \n * * * \mainpage The GTG library * * (\\/) \n * (*-*) \n * (")(") \n * * \section Presentation * The GTG library provides a low level library to generate traces in various formats (Paje, OTF). \n * The use of the library is simple, you just need to include the GTG.h header * and then you can use the library as you wish. \n * Some simple examples are available in the test directory. \n * */ #ifndef _GTG_H_ #define _GTG_H_ #include #include "GTGTypes.h" #include "GTGColor.h" #include "GTGBasic.h" #endif /* _GTG_H_ */ gtg-trace-0.2-2+dfsg/inc/GTGBasic.h000066400000000000000000000352231234554746700166410ustar00rootroot00000000000000/** * \file GTGBasic.h * \version 0.1 * \brief * * GTGBasic is a basic interface to generate trace in various formats. * * \authors * Developers are : \n * Francois Rue - francois.rue@labri.fr \n * Francois Trahay - francois.trahay@labri.fr \n * Johnny Jazeix - jazeix@enseirb-matmeca.fr \n * Kevin Coulomb - kevin.coulomb@gmail.com \n * Mathieu Faverge - faverge@labri.fr \n * Olivier Lagrasse - lagrasse@enseirb-matmeca.fr \n * * It has been initiated in 2010 by *eztrace* and *ViTE* projects * that both needs a good library to generate traces. * */ #ifndef _GTG_BASIC_H_ #define _GTG_BASIC_H_ #include #include #include "GTGColor.h" #include "GTGTypes.h" /** * \brief No flag specified. */ #define GTG_FLAG_NONE 0 /** * \brief Several MPI processes are currently using GTG. */ #define GTG_FLAG_USE_MPI 1 /** * \brief For writing the traces in a non-buffered mode. */ #define GTG_FLAG_NOTBUF 2 /** * \brief Allow the application to record events out of order */ #define GTG_FLAG_OUTOFORDER 4 /** * \brief Flags that can be specified to GTG. */ typedef uint8_t gtg_flag_t; /** * \defgroup traceType Trace type handler */ /** * \ingroup traceType * \enum traceType * \brief The type of the output trace. * */ typedef enum traceType{ PAJE, /*!< Paje trace format. */ VITE, /*!< ViTE-specific trace format. */ OTF, /*!< OTF trace format. */ TAU /*!< TAU Trace format. */ }traceType_t; /** * \ingroup traceType * \fn void setTraceType (traceType_t type) * \brief Set the type of output trace. * \param type Type of trace to generate */ void setTraceType (traceType_t type); /** * \ingroup traceType * \fn traceType_t getTraceType () * \brief Get the type of the output trace. * \return The type of the trace */ traceType_t getTraceType (); /** * \ingroup traceType * \fn traceType_t getName (int procRk) * \param procRk Rank of the proc to get the file containing it * \brief To get the name of the file to give to the addCont function for processors * \return The name of the file to give for a proc */ char* getName (int procRk); /** * \ingroup traceType * \fn int bufferedModeActivated() * \brief Check wether the buffered-mode is activated. * \return 1 is the buffered-mode is activate.\n * 0 otherwise. */ int bufferedModeActivated(); /** * \defgroup init To init the generated trace file(s) */ /** * \ingroup init * \fn int initTrace (const char* filename, int rank, gtg_flag_t flags) * \brief Initialize a trace. * \param filename Root name of the file to create * \param rank Process number of the file to create * \param flags One of GTG_FLAG_NONE, GTG_FLAG_USE_MPI, GTG_FLAG_NOTBUF. * \return TRACE_SUCCESS on success \n * An error code otherwise */ trace_return_t initTrace (const char* filename, int rank, gtg_flag_t flags); /** * \ingroup init * \fn trace_return_t endTrace () * \brief Finalize a trace. * \return TRACE_SUCCESS on success \n * An error code otherwise */ trace_return_t endTrace (); /** * \ingroup init * \fn trace_return_t setCompress (int val) * \brief Enable trace compression (only available for OTF traces). * \param val 0 means no compression, otherwize the output files will be compressed * \return TRACE_SUCCESS on success \n * An error code otherwise */ trace_return_t setCompress (int val); /** * \defgroup procf Functions related to the containers */ /** * \ingroup procf * \fn trace_return_t addContType (const char* alias, * const char* contType, * const char* name) * \brief Add a Container Type. * \param alias Alias on the container added * \param contType Type of the parent container * \param name Alternative name of the new container type * \return TRACE_SUCCESS on success \n * An error code otherwise */ trace_return_t addContType (const char* alias, const char* contType, const char* name); /** * \defgroup statef Functions related to the states */ /** * \ingroup statef * \fn trace_return_t addStateType (const char* alias, * const char* contType, * const char* name) * \brief Add a State Type. * \param alias Alias on the state type added * \param contType Type of container of these states * \param name Alternative name of the state type * \return TRACE_SUCCESS on success \n * An error code otherwise */ trace_return_t addStateType (const char* alias, const char* contType, const char* name); /** * \defgroup eventf Functions related to the events */ /** * \ingroup eventf * \fn trace_return_t addEventType (const char* alias, * const char* contType, * const char* name) * \brief Add an Event Type. * \param alias Alias on the event type * \param contType Type of container of these events * \param name Alternative name of the event type * \return TRACE_SUCCESS on success \n * An error code otherwise */ trace_return_t addEventType (const char* alias, const char* contType, const char* name); /** * \defgroup linkf Functions related to links */ /** * \ingroup linkf * \fn trace_return_t addLinkType (const char* alias, * const char* name, * const char* contType, * const char* srcContType, * const char* destContType); * \brief Add a Link Type. * \param alias Alias on the link type * \param name Alternative name of the link type * \param contType Type of common ancestral container * \param srcContType Type of the source container * \param destContType Type of the destination container * \return TRACE_SUCCESS on success \n * An error code otherwise */ trace_return_t addLinkType (const char* alias , const char* name, const char* contType, const char* srcContType, const char* destContType); /** * \defgroup varf Functions related to variables */ /** * \ingroup varf * \fn trace_return_t addVarType (const char* alias, * const char* name, * const char* contType) * \brief Add a Variable Type. * \param alias Alias on the variable type * \param contType Type of container * \param name Alternative name of the variable type * \return TRACE_SUCCESS on success \n * An error code otherwise */ trace_return_t addVarType (const char* alias , const char* name, const char* contType); /** * \ingroup init * \fn trace_return_t addEntityValue (const char* alias, * const char* entType, * const char* name, * gtg_color_t p_color) * \brief Add an Entity Value. * \param alias Alias on the entity value * \param entType Type of the entity that can have the value * \param name Alternative name of the variable type * \param p_color Color of the entity * \return TRACE_SUCCESS on success \n * An error code otherwise */ trace_return_t addEntityValue (const char* alias, const char* entType, const char* name , gtg_color_t p_color); /** * \ingroup procf * \fn trace_return_t addContainer (varPrec time, * const char * alias, * const char * type, * const char * container, * const char * name, * const char * file) * \brief Add a Container. * \param time Time at which the container is added * \param alias Alias of the new container * \param type Type of the new container * \param container Container parent * \param name Alternative name of the variable type * \param file File containing the container for vite format. Use "0" or "" chains for other formats. * \return TRACE_SUCCESS on success \n * An error code otherwise */ trace_return_t addContainer (varPrec time, const char* alias , const char* type, const char* container, const char* name, const char* file); /** * \ingroup procf * \fn trace_return_t destroyContainer (varPrec time, * const char * name, * const char * type) * \brief Destroy a Container. * \param time Time at which the container is destroyed * \param name Name of the container * \param type Type of the container * \return TRACE_SUCCESS on success \n * An error code otherwise */ trace_return_t destroyContainer (varPrec time, const char* name, const char* type); /** * \ingroup statef * \fn trace_return_t setState (varPrec time, * const char * type, * const char * cont, * const char * val) * \brief Set the State of a Container. * \param time Time the state changes * \param type Type of the state * \param cont Container whose state changes * \param val Value of new state of container * \return TRACE_SUCCESS on success \n * An error code otherwise */ trace_return_t setState (varPrec time, const char* type, const char* cont, const char* val); /** * \ingroup statef * \fn trace_return_t pushState (varPrec time, * const char * type, * const char * cont, * const char * val) * \brief Save the current State on a stack and change the State of a Container. * \param time Time the state changes * \param type Type of the state * \param cont Container whose state changes * \param val Value of state of container * \return TRACE_SUCCESS on success \n * An error code otherwise */ trace_return_t pushState (varPrec time, const char* type, const char* cont, const char* val); /** * \ingroup statef * \fn trace_return_t popState (varPrec time, * const char * type, * const char * cont) * \brief Revert the State of a Container to its previous value. * \param time Time the state changes * \param type Type of the state * \param cont Container whose state changes * \return TRACE_SUCCESS on success \n * An error code otherwise */ trace_return_t popState (varPrec time, const char* type, const char* cont); /** * \ingroup eventf * \fn trace_return_t addEvent (varPrec time, * const char * type, * const char * cont, * const char * val) * \brief Add an Event. * \param time Time the event happens * \param type Type of the event * \param cont Container that produced the event * \param val Value of the new event * \return TRACE_SUCCESS on success \n * An error code otherwise */ trace_return_t addEvent (varPrec time, const char* type, const char* cont, const char* val); /** * \ingroup linkf * \fn trace_return_t startLink (varPrec time, * const char * type, * const char * cont, * const char * src, * const char * dest, * const char * val, * const char * key) * \brief Start a Link. * \param time Time the link starts * \param type Type of the link * \param cont Container containing the link (an ancestor of source and destination container) * \param src Source container * \param dest Destination container * \param val Value of the link * \param key Key to match the end link * \return TRACE_SUCCESS on success \n * An error code otherwise */ trace_return_t startLink (varPrec time, const char* type, const char* cont, const char* src, const char* dest, const char* val, const char* key); /** * \ingroup linkf * \fn trace_return_t endLink (varPrec time, * const char * type, * const char * cont, * const char * src, * const char * dest, * const char * val, * const char * key) * \brief End a Link. * \param time Time the link ends * \param type Type of the link * \param cont Container containing the link (an ancestor of source and destination container) * \param src Source container * \param dest Destination container * \param val Value of the link * \param key Key to match the start link * \return TRACE_SUCCESS on success \n * An error code otherwise */ trace_return_t endLink (varPrec time, const char* type, const char* cont, const char* src, const char* dest, const char* val, const char* key); /** * \ingroup varf * \fn trace_return_t setVar (varPrec time, * const char * type, * const char * cont, * varPrec val) * \brief Set a Variable value. * \param time Time the variable changes * \param type Type of the variable * \param cont Container containing the variable * \param val New value of the variable * \return TRACE_SUCCESS on success \n * An error code otherwise */ trace_return_t setVar (varPrec time, const char* type, const char* cont, varPrec val); /** * \ingroup varf * \fn trace_return_t addVar (varPrec time, * const char * type, * const char * cont, * varPrec val) * \brief Add a value to a Variable. * \param time Time the variable is incremented * \param type Type of the variable * \param cont Container containing the variable * \param val Value added * \return TRACE_SUCCESS on success \n * An error code otherwise */ trace_return_t addVar (varPrec time, const char* type, const char* cont, varPrec val); /** * \ingroup varf * \fn trace_return_t subVar (varPrec time, * const char * type, * const char * cont, * varPrec val) * \brief Substract a value from a Variable. * \param time Time the variable is incremented * \param type Type of the variable * \param cont Container containing the variable * \param val Value substracted * \return TRACE_SUCCESS on success \n * An error code otherwise */ trace_return_t subVar (varPrec time, const char* type, const char* cont, varPrec val); /** * \ingroup procf * \fn trace_return_t AddComment (const char* comment) * * \brief Add some Comment in Trace file. * \param comment Comment to be added * \return TRACE_SUCCESS on success \n * An error code otherwise */ trace_return_t AddComment (const char* comment); #endif /* _GTG_BASIC_H_ */ gtg-trace-0.2-2+dfsg/inc/GTGColor.h000066400000000000000000000126471234554746700167030ustar00rootroot00000000000000/** * \file GTGColor.h * \version 0.1 * \brief * * This file defines some useful colors to use in entity values for GTG. * */ #ifndef _GTGCOLOR_H_ #define _GTGCOLOR_H_ #include /** * \defgroup GTGColor Defined colors for GTG */ typedef uint32_t gtg_rgb_color_t; /** * \ingroup GTGColor * \struct gtg_color * \brief This structure defines a color that can be used by GTG. */ struct gtg_color { /*@{*/ char* color_name; /**< The name of the color (ie. "RED" or "Black",...) */ gtg_rgb_color_t rgb; /**< RGB code of the color. It should be obtained by calling GTG_COLOR_SET_COLOR(r, g, b). */ /*@{*/ }; typedef struct gtg_color* gtg_color_t; /* In a 4-byte value, the first byte corresponds to blue, * the second to green, the third to red. The 4th byte is * unused (for now). ie. a color is represented as follows: * 0x00rrggbb */ #define GTG_COLOR_BLUE_POS 0 #define GTG_COLOR_GREEN_POS 8 #define GTG_COLOR_RED_POS 16 #define GTG_COLOR_BLUE_MASK (0x000000ff << GTG_COLOR_BLUE_POS) #define GTG_COLOR_GREEN_MASK (0x000000ff << GTG_COLOR_GREEN_POS) #define GTG_COLOR_RED_MASK (0x000000ff << GTG_COLOR_RED_POS) /** * \ingroup GTGColor * \fn GTG_COLOR_GET_BLUE(gtg_rgb_color_t rgb) * \brief Return the 1-byte value of the blue component of a rgb color. */ static inline uint8_t GTG_COLOR_GET_BLUE(gtg_rgb_color_t rgb) { return (((rgb) & GTG_COLOR_BLUE_MASK) >> GTG_COLOR_BLUE_POS ); } /** * \ingroup GTGColor * \fn GTG_COLOR_GET_GREEN(gtg_rgb_color_t rgb) * \brief Return the 1-byte value of the green component of a rgb color. */ static inline uint8_t GTG_COLOR_GET_GREEN(gtg_rgb_color_t rgb) { return (((rgb) & GTG_COLOR_GREEN_MASK) >> GTG_COLOR_GREEN_POS); } /** * \ingroup GTGColor * \fn GTG_COLOR_GET_RED(gtg_rgb_color_t rgb) * \brief Return the 1-byte value of the red component of a rgb color. */ static inline uint8_t GTG_COLOR_GET_RED(gtg_rgb_color_t rgb) { return (((rgb) & GTG_COLOR_RED_MASK) >> GTG_COLOR_RED_POS ); } /** * \ingroup GTGColor * \fn GTG_COLOR_SET_COLOR(uint8_t r, uint8_t g, uint8_t b) * \brief Return the 4-bytes RGB color from 3 1-byte components. */ static inline gtg_rgb_color_t GTG_COLOR_SET_COLOR(uint8_t r, uint8_t g, uint8_t b) { return ((r << GTG_COLOR_RED_POS) | (g << GTG_COLOR_GREEN_POS) | (b << GTG_COLOR_BLUE_POS)); } /** * \ingroup GTGColor * \var GTG_BLACK * \brief Default black color. (R,G,B) = (0, 0, 0) */ extern gtg_color_t GTG_BLACK; /** * \ingroup GTGColor * \var GTG_RED * \brief Default red color. (R,G,B) = (255, 0, 0) */ extern gtg_color_t GTG_RED; /** * \ingroup GTGColor * \var GTG_GREEN * \brief Default green color. (R,G,B) = (0, 255, 0) */ extern gtg_color_t GTG_GREEN; /** * \ingroup GTGColor * \var GTG_BLUE * \brief Default blue color. (R,G,B) = (0, 0, 255) */ extern gtg_color_t GTG_BLUE; /** * \ingroup GTGColor * \var GTG_WHITE * \brief Default white color. (R,G,B) = (255, 255, 255) */ extern gtg_color_t GTG_WHITE; /** * \ingroup GTGColor * \var GTG_TEAL * \brief Default teal color. (R,G,B) = (0, 255, 255) */ extern gtg_color_t GTG_TEAL; /** * \ingroup GTGColor * \var GTG_DARKGREY * \brief Default dark grey color. (R,G,B) = (85, 85, 85) */ extern gtg_color_t GTG_DARKGREY; /** * \ingroup GTGColor * \var GTG_YELLOW * \brief Default yellow color. (R,G,B) = (255, 255, 0) */ extern gtg_color_t GTG_YELLOW; /** * \ingroup GTGColor * \var GTG_PURPLE * \brief Default purple color. (R,G,B) = (153, 25, 230) */ extern gtg_color_t GTG_PURPLE; /** * \ingroup GTGColor * \var GTG_LIGHTBROWN * \brief Default light brown color. (R,G,B) = (170, 130, 130) */ extern gtg_color_t GTG_LIGHTBROWN; /** * \ingroup GTGColor * \var GTG_LIGHTGREY * \brief Default light grey color. (R,G,B) = (200, 200, 200) */ extern gtg_color_t GTG_LIGHTGREY; /** * \ingroup GTGColor * \var GTG_DARKBLUE * \brief Default dark blue color. (R,G,B) = (0, 0, 80) */ extern gtg_color_t GTG_DARKBLUE; /** * \ingroup GTGColor * \var GTG_PINK * \brief Default pink color. (R,G,B) = (255, 0, 255) */ extern gtg_color_t GTG_PINK; /** * \ingroup GTGColor * \var GTG_DARKPINK * \brief Default dark pink color. (R,G,B) = (180, 80, 180) */ extern gtg_color_t GTG_DARKPINK; /** * \ingroup GTGColor * \var GTG_SEABLUE * \brief Default sea blue color. (R,G,B) = (25, 128, 200) */ extern gtg_color_t GTG_SEABLUE; /** * \ingroup GTGColor * \var GTG_KAKI * \brief Default kaki color. (R,G,B) = (80, 100, 25) */ extern gtg_color_t GTG_KAKI; /** * \ingroup GTGColor * \var GTG_REDBLOOD * \brief Default red blood color. (R,G,B) = (200, 25, 25) */ extern gtg_color_t GTG_REDBLOOD; /** * \ingroup GTGColor * \var GTG_BROWN * \brief Default brown color. (R,G,B) = (100, 25, 25) */ extern gtg_color_t GTG_BROWN; /** * \ingroup GTGColor * \var GTG_GRENAT * \brief Default grenat color. (R,G,B) = (100, 0, 80) */ extern gtg_color_t GTG_GRENAT; /** * \ingroup GTGColor * \var GTG_ORANGE * \brief Default orange color. (R,G,B) = (255, 160, 0) */ extern gtg_color_t GTG_ORANGE; /** * \ingroup GTGColor * \var GTG_MAUVE * \brief Default mauve color. (R,G,B) = (128, 0, 255) */ extern gtg_color_t GTG_MAUVE; /** * \ingroup GTGColor * \var GTG_LIGHTPINK * \brief Default light pink color. (R,G,B) = (255, 128, 255) */ extern gtg_color_t GTG_LIGHTPINK; void gtg_color_init(); void gtg_color_exit(); gtg_color_t gtg_color_create( const char *name, uint8_t r, uint8_t g, uint8_t b); void gtg_color_free(gtg_color_t color); #endif /* _GTGCOLOR_H_ */ gtg-trace-0.2-2+dfsg/inc/GTGCompress.h000066400000000000000000000021361234554746700174100ustar00rootroot00000000000000#ifndef GTG_COMPRESS_H #define GTG_COMPRESS_H #include #include #include /* compress a buffer into another buffer */ int gtg_compress_m2m(z_stream *z, void* in_buf, uint32_t len, void* out_buf, uint32_t out_max_len); /* compress a buffer and save the result in a file */ int gtg_compress_m2f(z_stream *z, void* in_buf, uint32_t len, FILE* file_out); /* compress a file into a buffer */ int gtg_compress_f2m(z_stream *z, FILE* file_in, void* out_buf, uint32_t out_max_len); /* compress a file into another file */ int gtg_compress_f2f(z_stream *z, FILE* file_in, FILE* file_out); /* save functions for decompression */ int gtg_decompress_m2m(z_stream *z, void* in_buf, uint32_t len, void* out_buf, uint32_t out_max_len); int gtg_decompress_m2f(z_stream *z, void* in_buf, uint32_t len, FILE* file_out); int gtg_decompress_f2m(z_stream *z, FILE* file_in, void* out_buf, uint32_t out_max_len); int gtg_decompress_f2f(z_stream *z, FILE* file_in, FILE* file_out); int gtg_compress_init(z_stream *z, int compression_ratio); int gtg_decompress_init(z_stream *z); #endif /* GTG_COMPRESS_H */ gtg-trace-0.2-2+dfsg/inc/GTGList.h000066400000000000000000000115541234554746700165340ustar00rootroot00000000000000#ifndef GTG_LIST_H #define GTG_LIST_H struct gtg_list { struct gtg_list *prev; struct gtg_list *next; }; typedef struct gtg_list* gtg_list_t; /** * \fn GTG_LIST_INIT(ptr) * \brief initialize a list. * \param ptr pointer to the list (gtg_list_t). */ #define GTG_LIST_INIT(ptr) \ do { \ (ptr)->prev = (ptr); \ (ptr)->next = (ptr); \ } while(0) /** * \fn GTG_LIST(name) * \brief declare and initialize a list. * \param name Name of the variable */ #define GTG_LIST(name) \ struct gtg_list name; \ GTG_LIST_INIT(&name) /** * \fn gtg_list_entry(ptr, type, member) * \brief get the structure corresponding to a list entry * \param ptr pointer to the list entry (gtg_list_t) * \param type the type of the struct this is embedded in. * \param member the name of the struct gtg_list member within the struct. */ #define gtg_list_entry(ptr, type, member) \ ((type *)((char *)(ptr) - (char *)(&((type *)0)->member))) /* * Insert a new entry between two known consecutive entries. * * This is only for internal list manipulation where we know * the prev/next entries already! */ static inline void __gtg_list_add(gtg_list_t lnew, gtg_list_t prev, gtg_list_t next) { next->prev = lnew; lnew->next = next; lnew->prev = prev; prev->next = lnew; } /** * \fn void gtg_list_add(gtg_list_t lnew, gtg_list_t head) * \brief Insert a new entry after the specified head. * \param lnew new entry to be added * \param head list head to add it after */ static inline void gtg_list_add(gtg_list_t lnew, gtg_list_t head) { __gtg_list_add(lnew, head, head->next); } /** * \fn void gtg_list_add_tail(gtg_list_t lnew, gtg_list_t head) * \brief Insert a new entry before the specified head (ie. at the tail of the list). * \param lnew new entry to be added * \param head list head to add it after */ static inline void gtg_list_add_tail(gtg_list_t lnew, gtg_list_t head) { __gtg_list_add(lnew, head->prev, head); } /** * Delete a list entry by making the prev/next entries * point to each other. * * This is only for internal list manipulation where we know * the prev/next entries already! */ static inline void __gtg_list_del(gtg_list_t prev, gtg_list_t next) { next->prev = prev; prev->next = next; } /** * \fn void gtg_list_del(gtg_list_t entry) * \brief delete an entry from its list and reinitialize it. * \param entry the element to delete from the list. */ static inline void gtg_list_del(gtg_list_t entry) { __gtg_list_del(entry->prev, entry->next); GTG_LIST_INIT(entry); } /** * \fn gtg_list_for_each(gtg_list_t pos, gtg_list_t head) * \brief iterate over a list * \param pos the gtg_list_t to use as a loop counter. * \param head the head for the list. */ #define gtg_list_for_each(pos, head) \ for (pos = (head)->next; pos != (head); pos = pos->next) /** * \fn gtg_list_for_each_reverse(gtg_list_t pos, gtg_list_t head) * \brief iterate over a list backwards * \param pos the gtg_list_t to use as a loop counter. * \param head the head for the list. */ #define gtg_list_for_each_reverse(pos, head) \ for (pos = (head)->prev; pos != (head); pos = pos->prev) /** * \fn gtg_list_for_each_safe(gtg_list_t pos, gtg_list_t n, gtg_list_t head) * \brief iterate over a list safe against removal of list entry * \param pos the gtg_list_t to use as a loop counter. * \param n another gtg_list_t to use as temporary storage * \param head the head for the list. */ #define gtg_list_for_each_safe(pos, n, head) \ for (pos = (head)->next, n = pos->next; pos != (head); \ pos = n, n = pos->next) /** * gtg_list_for_each_entry(pos, head, member) * \brief iterate over list of given type * \param pos the type * to use as a loop counter. * \param head the head for the list. * \param member the name of the struct gtg_list member within the struct. */ #define gtg_list_for_each_entry(pos, head, member) \ for (pos = gtg_list_entry((head)->next, typeof(*pos), member); \ &pos->member != (head); \ pos = gtg_list_entry(pos->member.next, typeof(*pos), member)) /** * gtg_list_for_each_entry_safe(pos, n, head, member) * \brief iterate over list of given type safe against removal of list entry * \param pos the type * to use as a loop counter. * \param n another type * to use as temporary storage * \param head the head for the list. * \param member the name of the struct gtg_list member within the struct. */ #define gtg_list_for_each_entry_safe(pos, n, head, member) \ for (pos = gtg_list_entry((head)->next, typeof(*pos), member), \ n = gtg_list_entry(pos->member.next, typeof(*pos), member); \ &pos->member != (head); \ pos = n, n = gtg_list_entry(n->member.next, typeof(*n), member)) static inline int gtg_list_size(gtg_list_t l) { int res = 0; gtg_list_t ptr = NULL; gtg_list_for_each(ptr, l) res++; return res; } #endif /* GTG_LIST_H */ gtg-trace-0.2-2+dfsg/inc/GTGMemory.h000066400000000000000000000026001234554746700170610ustar00rootroot00000000000000/** * \file GTGMemory.h * \version 0.1 * \brief * * This file defines a fast allocator for fixed-size blocks */ #ifndef GTG_MEMORY_H #define GTG_MEMORY_H #include /** * \defgroup GTGMemory Memory management */ struct gtg_memory { void *first_mem; void *current_mem; size_t block_len; long mem_len; void *first_free; long first_new; long nb_allocated; }; typedef struct gtg_memory *gtg_memory_t; /** * \ingroup GTGMemory * \fn void gtg_block_memory_init(gtg_memory_t *memory, size_t block_size, long initial_block_number) * \brief Initialize the allocator * \param memory A memory describer * \param block_size The block size to be allocated when malloc is called * \param initial_block_number The number of blocks to allocate initialy */ void gtg_block_memory_init(gtg_memory_t *memory, size_t block_size, long initial_block_number); /** * \ingroup GTGMemory * \fn void* gtg_block_malloc(gtg_memory_t memory); * \brief Allocate a block of data * \param memory The memory describer * \return A pointer to a block or NULL if allocation failed */ void* gtg_block_malloc(gtg_memory_t memory); /** * \ingroup GTGMemory * \fn void gtg_block_free(gtg_memory_t memory, void *ptr); * \brief Free a block of data * \param memory The memory describer * \param ptr The block of data to free */ void gtg_block_free(gtg_memory_t memory, void *ptr); #endif gtg-trace-0.2-2+dfsg/inc/GTGOTF.h000066400000000000000000000011751234554746700162470ustar00rootroot00000000000000/** * \file GTGOTF.h * \version 0.1 * \brief * OTF is the global file for gtg interface using OTF. * * \authors * Developers are : \n * Francois Rue - francois.rue@labri.fr \n * Francois Trahay - francois.trahay@labri.fr \n * Johnny Jazeix - jazeix@enseirb-matmeca.fr \n * Kevin Coulomb - kevin.coulomb@gmail.com \n * Mathieu Faverge - faverge@labri.fr \n * Olivier Lagrasse - lagrasse@enseirb-matmeca.fr \n * */ #ifndef _GTG_OTF_H_ #define _GTG_OTF_H_ #include #include "GTGOTF_Structs.h" #include "GTGOTF_Basic.h" #endif /* _GTG_OTF_H_ */ gtg-trace-0.2-2+dfsg/inc/GTGOTF_Basic.h000066400000000000000000000323521234554746700173510ustar00rootroot00000000000000/** * \file GTGOTF_Basic.h * \version 0.1 * \brief * OTF_GTGBasic1 is the OTF implementation of the basic interface to generate traces (GTGBasic1). * * \authors * Developers are : \n * Francois Rue - francois.rue@labri.fr \n * Francois Trahay - francois.trahay@labri.fr \n * Johnny Jazeix - jazeix@enseirb-matmeca.fr \n * Kevin Coulomb - kevin.coulomb@gmail.com \n * Mathieu Faverge - faverge@labri.fr \n * Olivier Lagrasse - lagrasse@enseirb-matmeca.fr \n */ #ifndef _GTG_OTF_BASIC_H_ #define _GTG_OTF_BASIC_H_ #include "GTGTypes.h" #include "GTGBasic.h" #include "GTGOTF_Structs.h" /** * \defgroup cotf OTF interface in C of the traceGeneratorBasic API */ /** * \ingroup cotf * \fn const char* OTF_get_color(gtg_color_t color) * \brief Converts a GTG color into a OTF color. * \param color GTG color to convert * \return The OTF color */ const otf_color_t OTF_get_color(gtg_color_t color); /** * \ingroup cotf * \fn trace_return_t OTFInitTrace (const char* filename, gtg_flag_t flags) * \brief Initialize an OTF trace. * \param filename Root name of the file to create * \param flags One of GTG_FLAG_NONE, GTG_FLAG_USE_MPI, GTG_FLAG_NOTBUF. * \return 0 if success * An error code otherwise */ trace_return_t OTFInitTrace (const char* filename, gtg_flag_t flags); /** * \ingroup cotf * \fn trace_return_t OTFSetCompress(int val) * \brief Enable trace compression. * \param val 0 means no compression, otherwize the output files will be compressed. * \return 0 if success \n * An error code otherwise */ trace_return_t OTFSetCompress(int val); /** * \ingroup cotf * \fn trace_return_t OTFAddContType (const char* alias, * const char* contType, * const char* name) * \brief Add a Container Type. * \param alias Alias on the container * \param contType Type of container * \param name Name of the container type * \return 0 if success \n * An error code otherwise */ trace_return_t OTFAddContType (const char* alias, const char* contType, const char* name); /** * \ingroup cotf * \fn trace_return_t OTFAddStateType (const char* alias, * const char* contType, * const char* name) * \brief Add a State Type. * \param alias Alias on the state type * \param contType Type of container * \param name Name of the state type * \return 0 if success \n * An error code otherwise */ trace_return_t OTFAddStateType (const char* alias, const char* contType, const char* name); /** * \ingroup cotf * \fn trace_return_t OTFAddEventType (const char* alias, * const char* contType, * const char* name) * \brief Add an Event Type. * \param alias Alias on the event type * \param contType Type of container * \param name Name of the event type * \return 0 if success \n * An error code otherwise */ trace_return_t OTFAddEventType (const char* alias, const char* contType, const char* name); /** * \ingroup cotf * \fn trace_return_t OTFAddLinkType (const char* alias, * const char* name, * const char* contType, * const char* srcContType, * const char* destContType); * \brief Add a Link Type. * \param alias Alias on the link type * \param name Name of the link type * \param contType Type of container * \param srcContType Type of the source container * \param destContType Type of the destination container * \return 0 if success \n * An error code otherwise */ trace_return_t OTFAddLinkType (const char* alias , const char* name, const char* contType, const char* srcContType, const char* destContType); /** * \ingroup cotf * \fn trace_return_t OTFAddVarType (const char* alias, * const char* contType, * const char* name) * \brief Add a Variable Type. * \param alias Alias on the variable type * \param contType Type of container * \param name Name of the variable type * \return 0 if success \n * An error code otherwise */ trace_return_t OTFAddVarType (const char* alias , const char* name, const char* contType); /** * \ingroup cotf * \fn trace_return_t OTFAddEntityValue (const char* alias, * const char* entType, * const char* name, * const otf_color_t color) * \brief Add an Entity Value. * \param alias Alias on the entity value * \param entType Type of the entity * \param name Name of the variable type * \param color Color of the entity * \return 0 if success \n * An error code otherwise */ trace_return_t OTFAddEntityValue (const char* alias, const char* entType, const char* name , const otf_color_t color); /** * \ingroup cotf * \fn trace_return_t OTFDefineContainer (varPrec time, * const char * alias, * const char * type, * const char * container, * const char * name, * const char * file) * \brief Define a Container. * \param alias Alias of the new container * \param type Type of the container * \param container Container parent * \param name Name of the variable type * \param file File containing the container trace * \return 0 if success \n * An error code otherwise */ trace_return_t OTFDefineContainer (const char* alias, const char* type, const char* container, const char* name, const char* file); /** * \ingroup cotf * \fn trace_return_t OTFStartContainer (varPrec time, * const char * alias, * const char * type, * const char * container, * const char * name, * const char * file) * \brief Start a Container. * \param time Time at which the container is added * \param alias Alias of the new container * \param type Type of the container * \param container Container parent * \param name Name of the variable type * \param file File containing the container trace * \return 0 if success \n * An error code otherwise */ trace_return_t OTFStartContainer (varPrec time, const char* alias , const char* type, const char* container, const char* name, const char* file); /** * \ingroup cotf * \fn trace_return_t OTFDestroyContainer (varPrec time, * const char * name, * const char * type) * \brief Destroy a Container. * \param time Time at which the container is destroyed * \param name Name of the container * \param type Type of the container * \return 0 if success \n * An error code otherwise */ trace_return_t OTFDestroyContainer (varPrec time, const char* name, const char* type); /** * \ingroup cotf * \fn trace_return_t OTFSetState (varPrec time, * const char * type, * const char * cont, * const char * val) * \brief Set the State of a Container. * \param time Time at which the state is set * \param type Type of the state * \param cont Container in this state * \param val Entity value of the state of the container * \return 0 if success \n * An error code otherwise */ trace_return_t OTFSetState (varPrec time, const char* type, const char* cont, const char* val); /** * \ingroup cotf * \fn trace_return_t OTFPushState (varPrec time, * const char * type, * const char * cont, * const char * val) * \brief Save the current State on a stack and change the State of a Container. * \param time Time at which the state is pushed * \param type Type of the state * \param cont Container in this state * \param val Entity value of the state of the container * \return 0 if success \n * An error code otherwise */ trace_return_t OTFPushState (varPrec time, const char* type, const char* cont, const char* val); /** * \ingroup cotf * \fn trace_return_t OTFPopState (varPrec time, * const char * type, * const char * cont) * \brief Revert the State of a Container to its previous value. * \param time Time at which the state is poped * \param type Type of the state * \param cont Container in this state * \return 0 if success \n * An error code otherwise */ trace_return_t OTFPopState (varPrec time, const char* type, const char* cont); /** * \ingroup cotf * \fn trace_return_t OTFAddEvent (varPrec time, * const char * type, * const char * cont, * const char * val) * \brief Add an Event. * \param time Time at which the event happens * \param type Type of the event * \param cont Container in this event * \param val Entity value of the event of the container * \return 0 if success \n * An error code otherwise */ trace_return_t OTFAddEvent (varPrec time, const char* type, const char* cont, const char* val); /** * \ingroup cotf * \fn trace_return_t OTFStartLink (varPrec time, * const char * type, * const char * cont, * const char * src, * const char * val, * const char * key) * \brief Start a Link. * \param time Time at which the link starts * \param type Type of the link * \param cont Container containning the link * \param src Container source * \param val Entity value of the link * \param key Key to identify the link * \return 0 if success \n * An error code otherwise */ trace_return_t OTFStartLink (varPrec time, const char* type, const char* src, const char* dest, const char* val , const char* key); /** * \ingroup cotf * \fn trace_return_t OTFEndLink (varPrec time, * const char * type, * const char * cont, * const char * dest, * const char * val, * const char * key) * \brief End a Link. * \param time Time at which the link ends * \param type Type of the link * \param cont Container containning the link * \param dest Container destination * \param val Entity value of the link * \param key Key to identify the link * \return 0 if success \n * An error code otherwise */ trace_return_t OTFEndLink (varPrec time, const char* type, const char* src, const char* dest, const char* val, const char* key); /** * \ingroup cotf * \fn trace_return_t OTFSetVar (varPrec time, * const char * type, * const char * cont, * varPrec val) * \brief Set a Variable value. * \param time Time at which the variable is set * \param type Type of the variable * \param cont Container containning the variable * \param val Value of the variable * \return 0 if success \n * An error code otherwise */ trace_return_t OTFSetVar (varPrec time, const char* type, const char* cont, varPrec val); /** * \ingroup cotf * \fn trace_return_t OTFAddVar (varPrec time, * const char * type, * const char * cont, * varPrec val) * \brief Add a value to a Variable. * \param time Time at which the variable is incremented * \param type Type of the variable * \param cont Container containning the variable * \param val Value added * \return 0 if success \n * An error code otherwise */ trace_return_t OTFAddVar (varPrec time, const char* type, const char* cont, varPrec val); /** * \ingroup cotf * \fn trace_return_t OTFSubVar (varPrec time, * const char * type, * const char * cont, * varPrec val) * \brief Substract a value from a Variable. * \param time Time at which the variable is incremented * \param type Type of the variable * \param cont Container containning the variable * \param val Value substracted * \return 0 if success \n * An error code otherwise */ trace_return_t OTFSubVar (varPrec time, const char* type, const char* cont, varPrec val); /** * \ingroup cotf * \fn trace_return_t OTFAddComment (const char* comment) * * \brief Add some Comment in Trace file. * \param comment Comment to be added * \return TRACE_SUCCESS on success \n * An error code otherwise */ trace_return_t OTFAddComment (const char* comment); /** * \ingroup cotf * \fn OTFEndTrace () * \brief Finalize an OTF trace. * \return 0 if success \n * An error code otherwise */ trace_return_t OTFEndTrace (); #endif /* _GTG_OTF_BASIC_H_ */ gtg-trace-0.2-2+dfsg/inc/GTGOTF_Structs.h000066400000000000000000000155661234554746700200070ustar00rootroot00000000000000/** * \file GTGOTF_Structs.h * \version 0.1 * \brief * OTF_Structs gives the global types and functions needed to have the OTF implementation. * * \authors * Developers are : \n * Francois Rue - francois.rue@labri.fr \n * Francois Trahay - francois.trahay@labri.fr \n * Johnny Jazeix - jazeix@enseirb-matmeca.fr \n * Kevin Coulomb - kevin.coulomb@gmail.com \n * Mathieu Faverge - faverge@labri.fr \n * Olivier Lagrasse - lagrasse@enseirb-matmeca.fr \n * */ #ifndef _GTG_OTF_STRUCTS_H_ #define _GTG_OTF_STRUCTS_H_ #include #include "GTGList.h" #include "GTGStack.h" /* todo: remove this */ #define MAX_PROCESS 64 /*! StateTypes */ typedef struct StateType { /* Func group */ char *name; char *alias; int groupId; int id; struct gtg_list token; /* stored in the stateTypes list */ } StateType_t; /*! States */ typedef struct State { int value; int cont; int stateType; gtg_stack token; /* stored in the states list */ } State_t; /* ContainerTypes */ typedef struct ContainerType { char *name; char *alias; int id; struct gtg_list token; /* stored in the ctType list */ } ContainerType_t; /*! Containers */ typedef struct Container { char *name; char *alias; int ctType; int id; struct gtg_list token; /* stored in the conts list */ State_t state_stack; } Container_t; /*! EntityValue, contains the name of the functions/states */ typedef struct EntityValue { char *name; char *alias; int groupId; int id; struct gtg_list token; /* not used */ } EntityValue_t; /*! Events/Markers */ typedef struct EventType { char *name; char *alias; int contType; int id; struct gtg_list token; /* stored in the eventTypes list */ } EventType_t; /*! Links/Messages */ typedef struct LinkType { char *name; char *alias; int contType; int srcType; int destType; int id; struct gtg_list token; /* stored in the linkTypes lisk */ } LinkType_t; typedef struct Link { varPrec time; int src; } Link_t; /*! Variables/Counters */ typedef struct VariableType { char *name; char *alias; int contType; int id; struct gtg_list token; /* stored in the variableTypes list */ } VariableType_t; typedef struct Variable { int parent; int type; uint64_t value; int id; struct gtg_list token; /* stored in the variables list */ } Variable_t; struct otf_color { char *colorID; uint8_t red; uint8_t green; uint8_t blue; }; typedef struct otf_color* otf_color_t; #define ContainerType_NIL 0 #define Container_NIL 0 #define StateType_NIL 0 #define State_NIL 0 #define EntityValue_NIL 0 #define EventType_NIL 0 #define LinkType_NIL 0 #define VariableType_NIL 0 #define Variable_NIL 0 #define init_ContainerType(var)\ do { \ (var).name = NULL; \ (var).alias = NULL; \ (var).id = ContainerType_NIL; \ GTG_LIST_INIT(&(var).token); \ }while(0) #define init_Container(var) \ do { \ (var).name = NULL; \ (var).alias = NULL; \ (var).ctType = ContainerType_NIL; \ (var).id = Container_NIL; \ GTG_LIST_INIT(&(var).token); \ GTG_STACK_INIT(&(var).state_stack.token); \ }while(0) #define init_StateType(var) \ do { \ (var).name = NULL; \ (var).alias = NULL; \ (var).groupId = 0; \ (var).id = StateType_NIL; \ GTG_LIST_INIT(&(var).token); \ }while(0) #define init_EntityValue(var) \ do { \ (var).name = NULL; \ (var).alias = NULL; \ (var).groupId = 0; \ (var).id = EntityValue_NIL; \ GTG_LIST_INIT(&(var).token); \ }while(0) #define init_EventType(var) \ do { \ (var).name = NULL; \ (var).alias = NULL; \ (var).contType = ContainerType_NIL; \ (var).id = EventType_NIL; \ GTG_LIST_INIT(&(var).token); \ }while(0) #define init_LinkType(var) \ do { \ (var).name = NULL; \ (var).alias = NULL; \ (var).contType = ContainerType_NIL; \ (var).srcType = ContainerType_NIL; \ (var).destType = ContainerType_NIL; \ (var).id = LinkType_NIL; \ GTG_LIST_INIT(&(var).token); \ }while(0) #define init_VariableType(var) \ do { \ (var).name = NULL; \ (var).alias = NULL; \ (var).contType = ContainerType_NIL; \ (var).id = VariableType_NIL; \ GTG_LIST_INIT(&(var).token); \ }while(0) #define init_Variable(var) \ do { \ (var).parent = Container_NIL; \ (var).parent = VariableType_NIL; \ (var).value = 0; \ (var).id = Variable_NIL; \ GTG_LIST_INIT(&(var).token); \ }while(0) #define init_State(var) \ do { \ (var).value = EntityValue_NIL; \ (var).cont = Container_NIL; \ (var).stateType = StateType_NIL; \ GTG_STACK_INIT(&(var).token); \ }while(0) #define alloc_struct(ptr, type, list_head) \ do { \ ptr = (type*) malloc(sizeof(type)); \ GTG_LIST_INIT(&(ptr->token)); \ ptr->id = (gtg_list_entry((list_head)->prev, type, token)->id) + 1; \ gtg_list_add_tail(&(ptr->token), list_head); \ } while(0) #define alloc_init_struct(type, ptr, list_head, _name_, _alias_) \ do { \ alloc_struct(ptr, type, list_head); \ (ptr)->name = (char *)malloc(sizeof(char)*(strlen(_name_)+1)); \ strcpy((ptr)->name, _name_); \ (ptr)->alias = (char *)malloc(sizeof(char)*(strlen(_alias_)+1)); \ strcpy((ptr)->alias, _alias_); \ }while(0) #define alloc_Variable(_ptr_, _id_, _parent_, _type_, _value_) \ do { \ (_ptr_) = (Variable_t*) malloc(sizeof(Variable_t)); \ init_Variable(*(_ptr_)); \ (_ptr_)->id = _id_; \ (_ptr_)->parent = _parent_; \ (_ptr_)->type = _type_; \ (_ptr_)->value = _value_; \ }while(0) #define alloc_State(_ptr_, _value_, _cont_, _stateType_) \ do { \ _ptr_ = (State_t*) malloc(sizeof(State_t)); \ init_State(*(_ptr_)); \ (_ptr_)->value = _value_; \ (_ptr_)->cont = _cont_; \ (_ptr_)->stateType = _stateType_; \ }while(0) #define free_struct(_type_, _list_head_)\ do{\ _type_ *ptr, *tmp; \ gtg_list_for_each_entry_safe(ptr, tmp, &(_list_head_).token, token) { \ gtg_list_del(&(ptr->token));\ free(ptr->name);\ free(ptr->alias);\ free(ptr);\ }\ }while(0) #endif /* _GTG_OTF_STRUCTS_H_ */ gtg-trace-0.2-2+dfsg/inc/GTGPaje.h000066400000000000000000000007751234554746700165030ustar00rootroot00000000000000/** * \file GTGPaje.h * \version 0.1 * \brief * * pajeColor is a file that defines function that manipulate colors. * */ #ifndef _GTG_PAJE_H_ #define _GTG_PAJE_H_ typedef char* paje_color_t; /** * \ingroup cpaje * \fn const paje_color_t Paje_get_color(gtg_color_t color) * \brief Converts a GTG color into a PAJE color. * \param color GTG color to convert * \return The PAJE color */ paje_color_t Paje_get_color(gtg_color_t p_color); #include "GTGPaje_Basic.h" #endif /* _GTG_PAJE_H_ */ gtg-trace-0.2-2+dfsg/inc/GTGPaje_Basic.h000066400000000000000000000367531234554746700176110ustar00rootroot00000000000000/** * \file GTGPaje_Basic.h * \version 0.1 * \brief * paje_GTGBasic1 is the Paje implementation of the basic interface to generate traces (GTGBasic1). * * \authors * Developers are : \n * Francois Rue - francois.rue@labri.fr \n * Francois Trahay - francois.trahay@labri.fr \n * Johnny Jazeix - jazeix@enseirb-matmeca.fr \n * Kevin Coulomb - kevin.coulomb@gmail.com \n * Mathieu Faverge - faverge@labri.fr \n * Olivier Lagrasse - lagrasse@enseirb-matmeca.fr \n * */ #ifndef _GTG_PAJE_BASIC_H_ #define _GTG_PAJE_BASIC_H_ #include "GTGBasic.h" /** * \brief Constant to create a paje trace */ #define FMT_PAJE 0 /** * \brief Constant to create a vite trace */ #define FMT_VITE 1 /** * \defgroup cpaje Paje interface in C of the GTGBasic1 API */ /** * \ingroup cpaje * \fn trace_return_t pajeInitTrace (const char* filename, int rank, gtg_flag_t flags, int fmt) * \brief Initialize a VITE trace ( *.ept) * \param filename Root name of the file to create * \param rank Rank of the processor * \param flags One of GTG_FLAG_NONE, GTG_FLAG_USE_MPI, GTG_FLAG_NOTBUF. * \param fmt Format, paje or vite * \return 0 if success * An error code otherwise */ trace_return_t pajeInitTrace (const char* filename, int rank, gtg_flag_t flags, int fmt); /** * \ingroup cpaje * \fn char* pajeGetName (int rk) * \param rk Rank of the proc you want the filename containing it * \brief Function to get the name of the file containing all the data for the proc of rank rk * \return Name of the file. */ char* pajeGetName (int rk); /** * \ingroup cpaje * \fn trace_return_t pajeSetCompress(int val) * \brief Enable trace compression. * \param val 0 means no compression, otherwize the output files will be compressed. * \return 0 if success \n * An error code otherwise */ trace_return_t pajeSetCompress(int val); /** * \ingroup cpaje * \fn trace_return_t pajeAddContType (const char* alias, * const char* contType, * const char* name) * \brief Add a Container Type. * \param alias Alias on the container * \param contType Type of container * \param name Name of the container type * \return 0 if success \n * An error code otherwise */ trace_return_t pajeAddContType (const char* alias, const char* contType, const char* name); /** * \ingroup cpaje * \fn trace_return_t pajeAddStateType (const char* alias, * const char* contType, * const char* name) * \brief Add a State Type. * \param alias Alias on the state type * \param contType Type of container * \param name Name of the state type * \return 0 if success \n * An error code otherwise */ trace_return_t pajeAddStateType (const char* alias, const char* contType, const char* name); /** * \ingroup cpaje * \fn trace_return_t pajeAddEventType (const char* alias, * const char* contType, * const char* name) * \brief Add an Event Type. * \param alias Alias on the event type * \param contType Type of container * \param name Name of the event type * \return 0 if success \n * An error code otherwise */ trace_return_t pajeAddEventType (const char* alias, const char* contType, const char* name); /** * \ingroup cpaje * \fn trace_return_t pajeAddLinkType (const char* alias, * const char* name, * const char* contType, * const char* srcContType, * const char* destContType); * \brief Add a Link Type. * \param alias Alias on the link type * \param name Name of the link type * \param contType Type of container * \param srcContType Type of the source container * \param destContType Type of the destination container * \return 0 if success \n * An error code otherwise */ trace_return_t pajeAddLinkType (const char* alias , const char* name, const char* contType, const char* srcContType, const char* destContType); /** * \ingroup cpaje * \fn trace_return_t pajeAddVarType (const char* alias, * const char* contType, * const char* name) * \brief Add a Variable Type. * \param alias Alias on the variable type * \param contType Type of container * \param name Name of the variable type * \return 0 if success \n * An error code otherwise */ trace_return_t pajeAddVarType (const char* alias , const char* contType, const char* name); /** * \ingroup cpaje * \fn trace_return_t pajeAddEntityValue (const char* alias, * const char* entType, * const char* name, * const char* color) * \brief Add an Entity Value. * \param alias Alias on the entity value * \param entType Type of the entity * \param name Name of the variable type * \param color Color of the entity * \return 0 if success \n * An error code otherwise */ trace_return_t pajeAddEntityValue (const char* alias, const char* entType, const char* name , const char* color); /** * \ingroup cpaje * \fn trace_return_t pajeAddContainer (varPrec time, * const char * alias, * const char * type, * const char * container, * const char * name, * const char * file) * \brief Add a Container (VITE format). * \param time Time at which the container is added * \param alias Alias on the new container * \param type Type of the container * \param container Container parent * \param name Name of the variable type * \param file File containing the container trace * \return 0 if success \n * An error code otherwise */ trace_return_t pajeAddContainer (varPrec time, const char* alias , const char* type, const char* container, const char* name, const char* file); /** * \ingroup cpaje * \fn trace_return_t pajeSeqAddContainer (varPrec time, * const char * alias, * const char * type, * const char * container, * const char * name) * \brief Add a Container (PAJE format). * \param time Time at which the container is added * \param alias Alias on the new container * \param type Type of the container * \param container Container parent * \param name Name of the variable type * \return 0 if success \n * An error code otherwise */ trace_return_t pajeSeqAddContainer (varPrec time, const char* alias , const char* type, const char* container, const char* name); /** * \ingroup cpaje * \fn trace_return_t pajeDestroyContainer (varPrec time, * const char * name, * const char * type) * \brief Destroy a Container. * \param time Time at which the container is destroyed * \param name Name on the container to destroy * \param type Type of the container * \return 0 if success \n * An error code otherwise */ trace_return_t pajeDestroyContainer (varPrec time, const char* name, const char* type); /** * \ingroup cpaje * \fn trace_return_t pajeSetState (varPrec time, * const char * type, * const char * cont, * const char * val) * \brief Set the State of a Container. * \param time Time at which the state is set * \param type Type of the state * \param cont Container in this state * \param val Entity value of the state of the container * \return 0 if success \n * An error code otherwise */ trace_return_t pajeSetState (varPrec time, const char* type, const char* cont, const char* val); /** * \ingroup cpaje * \fn trace_return_t pajePushState (varPrec time, * const char * type, * const char * cont, * const char * val) * \brief Save the current State on a stack and change the State of a Container. * \param time Time at which the state is pushed * \param type Type of the state * \param cont Container in this state * \param val Entity value of the state of the container * \return 0 if success \n * An error code otherwise */ trace_return_t pajePushState (varPrec time, const char* type, const char* cont, const char* val); /** * \ingroup cpaje * \fn trace_return_t pajePopState (varPrec time, * const char * type, * const char * cont) * \brief Revert the State of a Container to its previous value. * \param time Time at which the state is poped * \param type Type of the state * \param cont Container in this state * \return 0 if success \n * An error code otherwise */ trace_return_t pajePopState (varPrec time, const char* type, const char* cont); /** * \ingroup cpaje * \fn trace_return_t pajeAddEvent (varPrec time, * const char * type, * const char * cont, * const char * val) * \brief Add an Event. * \param time Time at which the event happens * \param type Type of the event * \param cont Container in this event * \param val Entity value of the event of the container * \return 0 if success \n * An error code otherwise */ trace_return_t pajeAddEvent (varPrec time, const char* type, const char* cont, const char* val); /** * \ingroup cpaje * \fn trace_return_t pajeStartLink (varPrec time, * const char * type, * const char * cont, * const char * src, * const char * val, * const char * key) * \brief Start a link * \param time Time at which the link starts * \param type Type of the link * \param cont Container parent of the source and destination containers containing the link * \param src Source container * \param val Value of the link * \param key Key used to match start link with end link * \return 0 if success \n * An error code otherwise */ trace_return_t pajeStartLink (varPrec time, const char* type, const char* cont, const char* src, const char* val , const char* key); /** * \ingroup cpaje * \fn trace_return_t pajeEndLink (varPrec time, * const char * type, * const char * cont, * const char * dest, * const char * val, * const char * key) * \brief Start a link * \param time Time at which the link starts * \param type Type of the link * \param cont Container parent of the source and destination containers containing the link * \param dest Source container * \param val Value of the link * \param key Key used to match start link with end link * \return 0 if success \n * An error code otherwise */ trace_return_t pajeEndLink (varPrec time, const char* type, const char* cont, const char* dest, const char* val , const char* key); /** * \ingroup cpaje * \fn trace_return_t pajeSetVar (varPrec time, * const char * type, * const char * cont, * varPrec val) * \brief Set a Variable value * \param time Time at which the variable is set * \param type Type of the variable * \param cont Container containing the variable * \param val Value of the variable * \return 0 if success \n * An error code otherwise */ trace_return_t pajeSetVar (varPrec time, const char* type, const char* cont, varPrec val); /** * \ingroup cpaje * \fn trace_return_t pajeAddVar (varPrec time, * const char * type, * const char * cont, * varPrec val) * \brief Add a value to a Variable. * \param time Time at which the variable is incremented * \param type Type of the variable * \param cont Container containing the variable * \param val Value added * \return 0 if success \n * An error code otherwise */ trace_return_t pajeAddVar (varPrec time, const char* type, const char* cont, varPrec val); /** * \ingroup cpaje * \fn trace_return_t pajeSubVar (varPrec time, * const char * type, * const char * cont, * varPrec val) * \brief Substract a value from a Variable. * \param time Time at which the variable is incremented * \param type Type of the variable * \param cont Container containing the variable * \param val Value substracted * \return 0 if success \n * An error code otherwise */ trace_return_t pajeSubVar (varPrec time, const char* type, const char* cont, varPrec val); /** * \ingroup cpaje * \fn trace_return_t pajeAddComment (const char* comment) * * \brief Add some Comment in Trace file. * \param comment Comment to be added * \return TRACE_SUCCESS on success \n * An error code otherwise */ trace_return_t pajeAddComment (const char* comment); /** * \ingroup cpaje * \fn pajeEndTrace () * \brief Finalize a PAJE trace. * \return 0 if success \n * An error code otherwise */ trace_return_t pajeEndTrace (); /** * \ingroup cpaje * \fn viteEndTrace () * \brief Finalize a VITE trace. * \return 0 if success \n * An error code otherwise */ trace_return_t viteEndTrace (); /* * Functions to handle extra-parameters in the Paje Definitions * This will need to be cleaned to be closer to OTF interface */ enum gtg_paje_evtdef_e { GTG_PAJE_EVTDEF_DefineContainerType, GTG_PAJE_EVTDEF_DefineStateType, GTG_PAJE_EVTDEF_DefineEventType, GTG_PAJE_EVTDEF_DefineVariableType, GTG_PAJE_EVTDEF_DefineLinkType, GTG_PAJE_EVTDEF_DefineEntityValue, GTG_PAJE_EVTDEF_CreateContainer, GTG_PAJE_EVTDEF_DestroyContainer, GTG_PAJE_EVTDEF_SetState, GTG_PAJE_EVTDEF_PushState, GTG_PAJE_EVTDEF_PopState, GTG_PAJE_EVTDEF_ResetState, GTG_PAJE_EVTDEF_NewEvent, GTG_PAJE_EVTDEF_SetVariable, GTG_PAJE_EVTDEF_AddVariable, GTG_PAJE_EVTDEF_SubVariable, GTG_PAJE_EVTDEF_StartLink, GTG_PAJE_EVTDEF_EndLink, GTG_PAJE_EVTDEF_NBR }; enum gtg_paje_fieldtype_e { GTG_PAJE_FIELDTYPE_Int, GTG_PAJE_FIELDTYPE_Hex, GTG_PAJE_FIELDTYPE_Date, GTG_PAJE_FIELDTYPE_Double, GTG_PAJE_FIELDTYPE_String, GTG_PAJE_FIELDTYPE_Color, GTG_PAJE_FIELDTYPE_NBR }; struct gtg_paje_edp_s { struct gtg_paje_edp_s *next; char *name; enum gtg_paje_fieldtype_e type; }; typedef struct gtg_paje_edp_s gtg_paje_edp_t; struct gtg_paje_eventdef_s { char *name; int id; gtg_paje_edp_t *first; gtg_paje_edp_t *last; }; typedef struct gtg_paje_eventdef_s gtg_paje_eventdef_t; extern gtg_paje_eventdef_t paje_eventdefs[GTG_PAJE_EVTDEF_NBR]; void pajeEventDefAddParam( enum gtg_paje_evtdef_e event, const char *name, enum gtg_paje_fieldtype_e type ); #endif /* _GTG_PAJE_BASIC_H_ */ gtg-trace-0.2-2+dfsg/inc/GTGReplay.h000066400000000000000000000021111234554746700170420ustar00rootroot00000000000000/** * \file GTGReplay.h * \version 0.1 * \brief * * This file defines functions for postponing event-processing function calls */ #ifndef GTG_REPLAY_H #define GTG_REPLAY_H /** * \defgroup GTGReplay Functions for postponing event-processing function calls */ enum event_type_t { event_addContainer, event_destroyContainer, event_setState, event_pushState, event_popState, event_addEvent, event_startLink, event_endLink, event_setVar, event_addVar, event_subVar }; /** * \ingroup GTGReplay * \fn void gtg_record(enum event_type_t type, varPrec time, ...) * \brief postpone the recording of an event * \param type The type of function to postpone * \param time The time at which the event happens */ void gtg_record(enum event_type_t type, varPrec time, ...); /** * \ingroup GTGReplay * \fn void gtg_write_events(long nb_events_to_write) * \brief run the first nb_events_to_write events * \param nb_events_to_write The number of functions to process (-1 for all functions) */ void gtg_write_events(long nb_events_to_write); #endif /* GTG_REPLAY_H */ gtg-trace-0.2-2+dfsg/inc/GTGStack.h000066400000000000000000000013051234554746700166570ustar00rootroot00000000000000#ifndef GTG_STACK_H #define GTG_STACK_H #include "GTGList.h" typedef struct gtg_list gtg_stack; typedef gtg_stack* gtg_stack_t; #define GTG_STACK_INIT(ptr) GTG_LIST_INIT(ptr) #define GTG_STACK(ptr) GTG_LIST(ptr) #define gtg_stack_entry(ptr, type, member) gtg_list_entry(ptr, type, member) static inline void gtg_stack_push(gtg_stack_t lnew, gtg_stack_t p_stack) { gtg_list_add_tail(lnew, p_stack); } static inline void gtg_stack_pop(gtg_stack_t p_stack) { gtg_list_del(p_stack->prev); } static inline gtg_stack_t gtg_stack_top(gtg_stack_t p_stack) { return p_stack->prev; } static inline int gtg_stack_empty(gtg_stack_t p_stack) { return p_stack->prev == p_stack; } #endif /* GTG_STACK_H */ gtg-trace-0.2-2+dfsg/inc/GTGTypes.h000066400000000000000000000023261234554746700167220ustar00rootroot00000000000000/** * \file GTGtypes.h * \version 0.1 * \brief * * types define some types that are used in the library. * * \authors * Developpers are : \n * Francois Rue - francois.rue@labri.fr \n * Francois Trahay - francois.trahay@labri.fr \n * Johnny Jazeix - jazeix@enseirb-matmeca.fr \n * Kevin Coulomb - kevin.coulomb@gmail.com \n * Mathieu Faverge - faverge@labri.fr \n * Olivier Lagrasse - lagrasse@enseirb-matmeca.fr \n * */ #ifndef _GTG_TYPES_H_ #define _GTG_TYPES_H_ /** * \defgroup type Types used */ /** * \ingroup type Type used for time and value in C * \brief Use the double precision type for time and value. */ typedef double varPrec; /** * \ingroup type Return values of functions * \enum trace_return_t * \brief Define various return values */ typedef enum trace_return_t{ TRACE_SUCCESS , /*!< Success of the call. */ TRACE_ERR_OPEN , /*!< Failed to open files to write. */ TRACE_ERR_CLOSE, /*!< Failed to close file. */ TRACE_ERR_WRITE, /*!< Failed to write trace. */ TRACE_ERR_NOT_IMPL /*!< Function not impleneted. */ } trace_return_t; #endif /* _GTG_TYPES_H_ */ gtg-trace-0.2-2+dfsg/inc/Makefile.am000066400000000000000000000005351234554746700171370ustar00rootroot00000000000000# Copyright © CNRS, INRIA, Université Bordeaux 1 # See COPYING in top-level directory. include_HEADERS = GTG.h \ GTGBasic.h \ GTGColor.h \ GTGReplay.h \ GTGMemory.h \ GTGOTF.h \ GTGOTF_Basic.h \ GTGOTF_Structs.h \ GTGPaje.h \ GTGPaje_Basic.h \ GTGTypes.h \ GTGList.h \ GTGStack.h \ GTGCompress.h gtg-trace-0.2-2+dfsg/inc/Makefile.in000066400000000000000000000400111234554746700171410ustar00rootroot00000000000000# Makefile.in generated by automake 1.14.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 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@ # Copyright © CNRS, INRIA, Université Bordeaux 1 # See COPYING in top-level directory. VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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 = inc DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(include_HEADERS) 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) mkinstalldirs = $(install_sh) -d CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac 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__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } am__installdirs = "$(DESTDIR)$(includedir)" HEADERS = $(include_HEADERS) am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ F77 = @F77@ FFLAGS = @FFLAGS@ FGREP = @FGREP@ GREP = @GREP@ HAVE_DOXYGEN = @HAVE_DOXYGEN@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MPIDIR = @MPIDIR@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTFDIR = @OTFDIR@ OTF_INC = @OTF_INC@ OTF_LIB = @OTF_LIB@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ 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@ PDFLATEX = @PDFLATEX@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_MPIDIR_FROM_USER = @USE_MPIDIR_FROM_USER@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_F77 = @ac_ct_F77@ 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@ subdirs = @subdirs@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ include_HEADERS = GTG.h \ GTGBasic.h \ GTGColor.h \ GTGReplay.h \ GTGMemory.h \ GTGOTF.h \ GTGOTF_Basic.h \ GTGOTF_Structs.h \ GTGPaje.h \ GTGPaje_Basic.h \ GTGTypes.h \ GTGList.h \ GTGStack.h \ GTGCompress.h all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu inc/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu inc/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-includeHEADERS: $(include_HEADERS) @$(NORMAL_INSTALL) @list='$(include_HEADERS)'; test -n "$(includedir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(includedir)'"; \ $(MKDIR_P) "$(DESTDIR)$(includedir)" || exit 1; \ fi; \ 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)$(includedir)'"; \ $(INSTALL_HEADER) $$files "$(DESTDIR)$(includedir)" || exit $$?; \ done uninstall-includeHEADERS: @$(NORMAL_UNINSTALL) @list='$(include_HEADERS)'; test -n "$(includedir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(includedir)'; $(am__uninstall_files_from_dir) ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ 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-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ 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" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @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 check-am: all-am check: check-am all-am: Makefile $(HEADERS) installdirs: for dir in "$(DESTDIR)$(includedir)"; 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: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: 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." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -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-includeHEADERS 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 Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-includeHEADERS .MAKE: install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ clean-libtool cscopelist-am ctags ctags-am distclean \ distclean-generic distclean-libtool distclean-tags distdir 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-includeHEADERS install-info install-info-am \ install-man install-pdf install-pdf-am install-ps \ install-ps-am install-strip installcheck installcheck-am \ installdirs maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-am \ uninstall-includeHEADERS # 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: gtg-trace-0.2-2+dfsg/install-sh000077500000000000000000000332551234554746700163430ustar00rootroot00000000000000#!/bin/sh # install - install a program, script, or datafile scriptversion=2011-11-20.07; # 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 # Protect names problematic for 'test' and other utilities. case $dst_arg in -* | [=\(\)!]) dst_arg=./$dst_arg;; esac 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 # Protect names problematic for 'test' and other utilities. case $dst_arg in -* | [=\(\)!]) dst_arg=./$dst_arg;; esac 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 do_exit='(exit $ret); exit $ret' trap "ret=129; $do_exit" 1 trap "ret=130; $do_exit" 2 trap "ret=141; $do_exit" 13 trap "ret=143; $do_exit" 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 problematic for 'test' and other utilities. 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 # 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-writable 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 X"$d" = X && 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: gtg-trace-0.2-2+dfsg/ltmain.sh000066400000000000000000010520261234554746700161550ustar00rootroot00000000000000 # libtool (GNU libtool) 2.4.2 # Written by Gordon Matzigkeit , 1996 # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, # 2007, 2008, 2009, 2010, 2011 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. # GNU Libtool 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. # # As a special exception to the GNU General Public License, # if you distribute this file as part of a program or library that # is built using GNU Libtool, you may include this file under the # same distribution terms that you use for the rest of that program. # # GNU Libtool 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 GNU Libtool; see the file COPYING. If not, a copy # can be downloaded from http://www.gnu.org/licenses/gpl.html, # or obtained by writing to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # Usage: $progname [OPTION]... [MODE-ARG]... # # Provide generalized library-building support services. # # --config show all configuration variables # --debug enable verbose shell tracing # -n, --dry-run display commands without modifying any files # --features display basic configuration information and exit # --mode=MODE use operation mode MODE # --preserve-dup-deps don't remove duplicate dependency libraries # --quiet, --silent don't print informational messages # --no-quiet, --no-silent # print informational messages (default) # --no-warn don't display warning messages # --tag=TAG use configuration variables from tag TAG # -v, --verbose print more informational messages than default # --no-verbose don't print the extra informational messages # --version print version information # -h, --help, --help-all print short, long, or detailed help message # # MODE must be one of the following: # # clean remove files from the build directory # compile compile a source file into a libtool object # execute automatically set library path, then run a program # finish complete the installation of libtool libraries # install install libraries or executables # link create a library or an executable # uninstall remove libraries from an installed directory # # MODE-ARGS vary depending on the MODE. When passed as first option, # `--mode=MODE' may be abbreviated as `MODE' or a unique abbreviation of that. # Try `$progname --help --mode=MODE' for a more detailed description of MODE. # # When reporting a bug, please describe a test case to reproduce it and # include the following information: # # host-triplet: $host # shell: $SHELL # compiler: $LTCC # compiler flags: $LTCFLAGS # linker: $LD (gnu? $with_gnu_ld) # $progname: (GNU libtool) 2.4.2 Debian-2.4.2-1.7 # automake: $automake_version # autoconf: $autoconf_version # # Report bugs to . # GNU libtool home page: . # General help using GNU software: . PROGRAM=libtool PACKAGE=libtool VERSION="2.4.2 Debian-2.4.2-1.7" TIMESTAMP="" package_revision=1.3337 # Be Bourne compatible if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs 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 BIN_SH=xpg4; export BIN_SH # for Tru64 DUALCASE=1; export DUALCASE # for MKS sh # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF $1 _LTECHO_EOF' } # NLS nuisances: We save the old values to restore during execute mode. lt_user_locale= lt_safe_locale= for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES do eval "if test \"\${$lt_var+set}\" = set; then save_$lt_var=\$$lt_var $lt_var=C export $lt_var lt_user_locale=\"$lt_var=\\\$save_\$lt_var; \$lt_user_locale\" lt_safe_locale=\"$lt_var=C; \$lt_safe_locale\" fi" done LC_ALL=C LANGUAGE=C export LANGUAGE LC_ALL $lt_unset CDPATH # Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh # is ksh but when the shell is invoked as "sh" and the current value of # the _XPG environment variable is not equal to 1 (one), the special # positional parameter $0, within a function call, is the name of the # function. progpath="$0" : ${CP="cp -f"} test "${ECHO+set}" = set || ECHO=${as_echo-'printf %s\n'} : ${MAKE="make"} : ${MKDIR="mkdir"} : ${MV="mv -f"} : ${RM="rm -f"} : ${SHELL="${CONFIG_SHELL-/bin/sh}"} : ${Xsed="$SED -e 1s/^X//"} # Global variables: EXIT_SUCCESS=0 EXIT_FAILURE=1 EXIT_MISMATCH=63 # $? = 63 is used to indicate version mismatch to missing. EXIT_SKIP=77 # $? = 77 is used to indicate a skipped test to automake. exit_status=$EXIT_SUCCESS # Make sure IFS has a sensible default lt_nl=' ' IFS=" $lt_nl" dirname="s,/[^/]*$,," basename="s,^.*/,," # func_dirname file append nondir_replacement # Compute the dirname of FILE. If nonempty, add APPEND to the result, # otherwise set result to NONDIR_REPLACEMENT. func_dirname () { func_dirname_result=`$ECHO "${1}" | $SED "$dirname"` if test "X$func_dirname_result" = "X${1}"; then func_dirname_result="${3}" else func_dirname_result="$func_dirname_result${2}" fi } # func_dirname may be replaced by extended shell implementation # func_basename file func_basename () { func_basename_result=`$ECHO "${1}" | $SED "$basename"` } # func_basename may be replaced by extended shell implementation # func_dirname_and_basename file append nondir_replacement # perform func_basename and func_dirname in a single function # call: # dirname: Compute the dirname of FILE. If nonempty, # add APPEND to the result, otherwise set result # to NONDIR_REPLACEMENT. # value returned in "$func_dirname_result" # basename: Compute filename of FILE. # value retuned in "$func_basename_result" # Implementation must be kept synchronized with func_dirname # and func_basename. For efficiency, we do not delegate to # those functions but instead duplicate the functionality here. func_dirname_and_basename () { # Extract subdirectory from the argument. func_dirname_result=`$ECHO "${1}" | $SED -e "$dirname"` if test "X$func_dirname_result" = "X${1}"; then func_dirname_result="${3}" else func_dirname_result="$func_dirname_result${2}" fi func_basename_result=`$ECHO "${1}" | $SED -e "$basename"` } # func_dirname_and_basename may be replaced by extended shell implementation # func_stripname prefix suffix name # strip PREFIX and SUFFIX off of NAME. # PREFIX and SUFFIX must not contain globbing or regex special # characters, hashes, percent signs, but SUFFIX may contain a leading # dot (in which case that matches only a dot). # func_strip_suffix prefix name func_stripname () { case ${2} in .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;; *) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;; esac } # func_stripname may be replaced by extended shell implementation # These SED scripts presuppose an absolute path with a trailing slash. pathcar='s,^/\([^/]*\).*$,\1,' pathcdr='s,^/[^/]*,,' removedotparts=':dotsl s@/\./@/@g t dotsl s,/\.$,/,' collapseslashes='s@/\{1,\}@/@g' finalslash='s,/*$,/,' # func_normal_abspath PATH # Remove doubled-up and trailing slashes, "." path components, # and cancel out any ".." path components in PATH after making # it an absolute path. # value returned in "$func_normal_abspath_result" func_normal_abspath () { # Start from root dir and reassemble the path. func_normal_abspath_result= func_normal_abspath_tpath=$1 func_normal_abspath_altnamespace= case $func_normal_abspath_tpath in "") # Empty path, that just means $cwd. func_stripname '' '/' "`pwd`" func_normal_abspath_result=$func_stripname_result return ;; # The next three entries are used to spot a run of precisely # two leading slashes without using negated character classes; # we take advantage of case's first-match behaviour. ///*) # Unusual form of absolute path, do nothing. ;; //*) # Not necessarily an ordinary path; POSIX reserves leading '//' # and for example Cygwin uses it to access remote file shares # over CIFS/SMB, so we conserve a leading double slash if found. func_normal_abspath_altnamespace=/ ;; /*) # Absolute path, do nothing. ;; *) # Relative path, prepend $cwd. func_normal_abspath_tpath=`pwd`/$func_normal_abspath_tpath ;; esac # Cancel out all the simple stuff to save iterations. We also want # the path to end with a slash for ease of parsing, so make sure # there is one (and only one) here. func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ -e "$removedotparts" -e "$collapseslashes" -e "$finalslash"` while :; do # Processed it all yet? if test "$func_normal_abspath_tpath" = / ; then # If we ascended to the root using ".." the result may be empty now. if test -z "$func_normal_abspath_result" ; then func_normal_abspath_result=/ fi break fi func_normal_abspath_tcomponent=`$ECHO "$func_normal_abspath_tpath" | $SED \ -e "$pathcar"` func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ -e "$pathcdr"` # Figure out what to do with it case $func_normal_abspath_tcomponent in "") # Trailing empty path component, ignore it. ;; ..) # Parent dir; strip last assembled component from result. func_dirname "$func_normal_abspath_result" func_normal_abspath_result=$func_dirname_result ;; *) # Actual path component, append it. func_normal_abspath_result=$func_normal_abspath_result/$func_normal_abspath_tcomponent ;; esac done # Restore leading double-slash if one was found on entry. func_normal_abspath_result=$func_normal_abspath_altnamespace$func_normal_abspath_result } # func_relative_path SRCDIR DSTDIR # generates a relative path from SRCDIR to DSTDIR, with a trailing # slash if non-empty, suitable for immediately appending a filename # without needing to append a separator. # value returned in "$func_relative_path_result" func_relative_path () { func_relative_path_result= func_normal_abspath "$1" func_relative_path_tlibdir=$func_normal_abspath_result func_normal_abspath "$2" func_relative_path_tbindir=$func_normal_abspath_result # Ascend the tree starting from libdir while :; do # check if we have found a prefix of bindir case $func_relative_path_tbindir in $func_relative_path_tlibdir) # found an exact match func_relative_path_tcancelled= break ;; $func_relative_path_tlibdir*) # found a matching prefix func_stripname "$func_relative_path_tlibdir" '' "$func_relative_path_tbindir" func_relative_path_tcancelled=$func_stripname_result if test -z "$func_relative_path_result"; then func_relative_path_result=. fi break ;; *) func_dirname $func_relative_path_tlibdir func_relative_path_tlibdir=${func_dirname_result} if test "x$func_relative_path_tlibdir" = x ; then # Have to descend all the way to the root! func_relative_path_result=../$func_relative_path_result func_relative_path_tcancelled=$func_relative_path_tbindir break fi func_relative_path_result=../$func_relative_path_result ;; esac done # Now calculate path; take care to avoid doubling-up slashes. func_stripname '' '/' "$func_relative_path_result" func_relative_path_result=$func_stripname_result func_stripname '/' '/' "$func_relative_path_tcancelled" if test "x$func_stripname_result" != x ; then func_relative_path_result=${func_relative_path_result}/${func_stripname_result} fi # Normalisation. If bindir is libdir, return empty string, # else relative path ending with a slash; either way, target # file name can be directly appended. if test ! -z "$func_relative_path_result"; then func_stripname './' '' "$func_relative_path_result/" func_relative_path_result=$func_stripname_result fi } # The name of this program: func_dirname_and_basename "$progpath" progname=$func_basename_result # Make sure we have an absolute path for reexecution: case $progpath in [\\/]*|[A-Za-z]:\\*) ;; *[\\/]*) progdir=$func_dirname_result progdir=`cd "$progdir" && pwd` progpath="$progdir/$progname" ;; *) save_IFS="$IFS" IFS=${PATH_SEPARATOR-:} for progdir in $PATH; do IFS="$save_IFS" test -x "$progdir/$progname" && break done IFS="$save_IFS" test -n "$progdir" || progdir=`pwd` progpath="$progdir/$progname" ;; esac # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. Xsed="${SED}"' -e 1s/^X//' sed_quote_subst='s/\([`"$\\]\)/\\\1/g' # Same as above, but do not quote variable references. double_quote_subst='s/\(["`\\]\)/\\\1/g' # Sed substitution that turns a string into a regex matching for the # string literally. sed_make_literal_regex='s,[].[^$\\*\/],\\&,g' # Sed substitution that converts a w32 file name or path # which contains forward slashes, into one that contains # (escaped) backslashes. A very naive implementation. lt_sed_naive_backslashify='s|\\\\*|\\|g;s|/|\\|g;s|\\|\\\\|g' # Re-`\' parameter expansions in output of double_quote_subst that were # `\'-ed in input to the same. If an odd number of `\' preceded a '$' # in input to double_quote_subst, that '$' was protected from expansion. # Since each input `\' is now two `\'s, look for any number of runs of # four `\'s followed by two `\'s and then a '$'. `\' that '$'. bs='\\' bs2='\\\\' bs4='\\\\\\\\' dollar='\$' sed_double_backslash="\ s/$bs4/&\\ /g s/^$bs2$dollar/$bs&/ s/\\([^$bs]\\)$bs2$dollar/\\1$bs2$bs$dollar/g s/\n//g" # Standard options: opt_dry_run=false opt_help=false opt_quiet=false opt_verbose=false opt_warning=: # func_echo arg... # Echo program name prefixed message, along with the current mode # name if it has been set yet. func_echo () { $ECHO "$progname: ${opt_mode+$opt_mode: }$*" } # func_verbose arg... # Echo program name prefixed message in verbose mode only. func_verbose () { $opt_verbose && func_echo ${1+"$@"} # A bug in bash halts the script if the last line of a function # fails when set -e is in force, so we need another command to # work around that: : } # func_echo_all arg... # Invoke $ECHO with all args, space-separated. func_echo_all () { $ECHO "$*" } # func_error arg... # Echo program name prefixed message to standard error. func_error () { $ECHO "$progname: ${opt_mode+$opt_mode: }"${1+"$@"} 1>&2 } # func_warning arg... # Echo program name prefixed warning message to standard error. func_warning () { $opt_warning && $ECHO "$progname: ${opt_mode+$opt_mode: }warning: "${1+"$@"} 1>&2 # bash bug again: : } # func_fatal_error arg... # Echo program name prefixed message to standard error, and exit. func_fatal_error () { func_error ${1+"$@"} exit $EXIT_FAILURE } # func_fatal_help arg... # Echo program name prefixed message to standard error, followed by # a help hint, and exit. func_fatal_help () { func_error ${1+"$@"} func_fatal_error "$help" } help="Try \`$progname --help' for more information." ## default # func_grep expression filename # Check whether EXPRESSION matches any line of FILENAME, without output. func_grep () { $GREP "$1" "$2" >/dev/null 2>&1 } # func_mkdir_p directory-path # Make sure the entire path to DIRECTORY-PATH is available. func_mkdir_p () { my_directory_path="$1" my_dir_list= if test -n "$my_directory_path" && test "$opt_dry_run" != ":"; then # Protect directory names starting with `-' case $my_directory_path in -*) my_directory_path="./$my_directory_path" ;; esac # While some portion of DIR does not yet exist... while test ! -d "$my_directory_path"; do # ...make a list in topmost first order. Use a colon delimited # list incase some portion of path contains whitespace. my_dir_list="$my_directory_path:$my_dir_list" # If the last portion added has no slash in it, the list is done case $my_directory_path in */*) ;; *) break ;; esac # ...otherwise throw away the child directory and loop my_directory_path=`$ECHO "$my_directory_path" | $SED -e "$dirname"` done my_dir_list=`$ECHO "$my_dir_list" | $SED 's,:*$,,'` save_mkdir_p_IFS="$IFS"; IFS=':' for my_dir in $my_dir_list; do IFS="$save_mkdir_p_IFS" # mkdir can fail with a `File exist' error if two processes # try to create one of the directories concurrently. Don't # stop in that case! $MKDIR "$my_dir" 2>/dev/null || : done IFS="$save_mkdir_p_IFS" # Bail out if we (or some other process) failed to create a directory. test -d "$my_directory_path" || \ func_fatal_error "Failed to create \`$1'" fi } # func_mktempdir [string] # Make a temporary directory that won't clash with other running # libtool processes, and avoids race conditions if possible. If # given, STRING is the basename for that directory. func_mktempdir () { my_template="${TMPDIR-/tmp}/${1-$progname}" if test "$opt_dry_run" = ":"; then # Return a directory name, but don't create it in dry-run mode my_tmpdir="${my_template}-$$" else # If mktemp works, use that first and foremost my_tmpdir=`mktemp -d "${my_template}-XXXXXXXX" 2>/dev/null` if test ! -d "$my_tmpdir"; then # Failing that, at least try and use $RANDOM to avoid a race my_tmpdir="${my_template}-${RANDOM-0}$$" save_mktempdir_umask=`umask` umask 0077 $MKDIR "$my_tmpdir" umask $save_mktempdir_umask fi # If we're not in dry-run mode, bomb out on failure test -d "$my_tmpdir" || \ func_fatal_error "cannot create temporary directory \`$my_tmpdir'" fi $ECHO "$my_tmpdir" } # func_quote_for_eval arg # Aesthetically quote ARG to be evaled later. # This function returns two values: FUNC_QUOTE_FOR_EVAL_RESULT # is double-quoted, suitable for a subsequent eval, whereas # FUNC_QUOTE_FOR_EVAL_UNQUOTED_RESULT has merely all characters # which are still active within double quotes backslashified. func_quote_for_eval () { case $1 in *[\\\`\"\$]*) func_quote_for_eval_unquoted_result=`$ECHO "$1" | $SED "$sed_quote_subst"` ;; *) func_quote_for_eval_unquoted_result="$1" ;; esac case $func_quote_for_eval_unquoted_result in # Double-quote args containing shell metacharacters to delay # word splitting, command substitution and and variable # expansion for a subsequent eval. # Many Bourne shells cannot handle close brackets correctly # in scan sets, so we specify it separately. *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") func_quote_for_eval_result="\"$func_quote_for_eval_unquoted_result\"" ;; *) func_quote_for_eval_result="$func_quote_for_eval_unquoted_result" esac } # func_quote_for_expand arg # Aesthetically quote ARG to be evaled later; same as above, # but do not quote variable references. func_quote_for_expand () { case $1 in *[\\\`\"]*) my_arg=`$ECHO "$1" | $SED \ -e "$double_quote_subst" -e "$sed_double_backslash"` ;; *) my_arg="$1" ;; esac case $my_arg in # Double-quote args containing shell metacharacters to delay # word splitting and command substitution for a subsequent eval. # Many Bourne shells cannot handle close brackets correctly # in scan sets, so we specify it separately. *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") my_arg="\"$my_arg\"" ;; esac func_quote_for_expand_result="$my_arg" } # func_show_eval cmd [fail_exp] # Unless opt_silent is true, then output CMD. Then, if opt_dryrun is # not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP # is given, then evaluate it. func_show_eval () { my_cmd="$1" my_fail_exp="${2-:}" ${opt_silent-false} || { func_quote_for_expand "$my_cmd" eval "func_echo $func_quote_for_expand_result" } if ${opt_dry_run-false}; then :; else eval "$my_cmd" my_status=$? if test "$my_status" -eq 0; then :; else eval "(exit $my_status); $my_fail_exp" fi fi } # func_show_eval_locale cmd [fail_exp] # Unless opt_silent is true, then output CMD. Then, if opt_dryrun is # not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP # is given, then evaluate it. Use the saved locale for evaluation. func_show_eval_locale () { my_cmd="$1" my_fail_exp="${2-:}" ${opt_silent-false} || { func_quote_for_expand "$my_cmd" eval "func_echo $func_quote_for_expand_result" } if ${opt_dry_run-false}; then :; else eval "$lt_user_locale $my_cmd" my_status=$? eval "$lt_safe_locale" if test "$my_status" -eq 0; then :; else eval "(exit $my_status); $my_fail_exp" fi fi } # func_tr_sh # Turn $1 into a string suitable for a shell variable name. # Result is stored in $func_tr_sh_result. All characters # not in the set a-zA-Z0-9_ are replaced with '_'. Further, # if $1 begins with a digit, a '_' is prepended as well. func_tr_sh () { case $1 in [0-9]* | *[!a-zA-Z0-9_]*) func_tr_sh_result=`$ECHO "$1" | $SED 's/^\([0-9]\)/_\1/; s/[^a-zA-Z0-9_]/_/g'` ;; * ) func_tr_sh_result=$1 ;; esac } # func_version # Echo version message to standard output and exit. func_version () { $opt_debug $SED -n '/(C)/!b go :more /\./!{ N s/\n# / / b more } :go /^# '$PROGRAM' (GNU /,/# warranty; / { s/^# // s/^# *$// s/\((C)\)[ 0-9,-]*\( [1-9][0-9]*\)/\1\2/ p }' < "$progpath" exit $? } # func_usage # Echo short help message to standard output and exit. func_usage () { $opt_debug $SED -n '/^# Usage:/,/^# *.*--help/ { s/^# // s/^# *$// s/\$progname/'$progname'/ p }' < "$progpath" echo $ECHO "run \`$progname --help | more' for full usage" exit $? } # func_help [NOEXIT] # Echo long help message to standard output and exit, # unless 'noexit' is passed as argument. func_help () { $opt_debug $SED -n '/^# Usage:/,/# Report bugs to/ { :print s/^# // s/^# *$// s*\$progname*'$progname'* s*\$host*'"$host"'* s*\$SHELL*'"$SHELL"'* s*\$LTCC*'"$LTCC"'* s*\$LTCFLAGS*'"$LTCFLAGS"'* s*\$LD*'"$LD"'* s/\$with_gnu_ld/'"$with_gnu_ld"'/ s/\$automake_version/'"`(${AUTOMAKE-automake} --version) 2>/dev/null |$SED 1q`"'/ s/\$autoconf_version/'"`(${AUTOCONF-autoconf} --version) 2>/dev/null |$SED 1q`"'/ p d } /^# .* home page:/b print /^# General help using/b print ' < "$progpath" ret=$? if test -z "$1"; then exit $ret fi } # func_missing_arg argname # Echo program name prefixed message to standard error and set global # exit_cmd. func_missing_arg () { $opt_debug func_error "missing argument for $1." exit_cmd=exit } # func_split_short_opt shortopt # Set func_split_short_opt_name and func_split_short_opt_arg shell # variables after splitting SHORTOPT after the 2nd character. func_split_short_opt () { my_sed_short_opt='1s/^\(..\).*$/\1/;q' my_sed_short_rest='1s/^..\(.*\)$/\1/;q' func_split_short_opt_name=`$ECHO "$1" | $SED "$my_sed_short_opt"` func_split_short_opt_arg=`$ECHO "$1" | $SED "$my_sed_short_rest"` } # func_split_short_opt may be replaced by extended shell implementation # func_split_long_opt longopt # Set func_split_long_opt_name and func_split_long_opt_arg shell # variables after splitting LONGOPT at the `=' sign. func_split_long_opt () { my_sed_long_opt='1s/^\(--[^=]*\)=.*/\1/;q' my_sed_long_arg='1s/^--[^=]*=//' func_split_long_opt_name=`$ECHO "$1" | $SED "$my_sed_long_opt"` func_split_long_opt_arg=`$ECHO "$1" | $SED "$my_sed_long_arg"` } # func_split_long_opt may be replaced by extended shell implementation exit_cmd=: magic="%%%MAGIC variable%%%" magic_exe="%%%MAGIC EXE variable%%%" # Global variables. nonopt= preserve_args= lo2o="s/\\.lo\$/.${objext}/" o2lo="s/\\.${objext}\$/.lo/" extracted_archives= extracted_serial=0 # If this variable is set in any of the actions, the command in it # will be execed at the end. This prevents here-documents from being # left over by shells. exec_cmd= # func_append var value # Append VALUE to the end of shell variable VAR. func_append () { eval "${1}=\$${1}\${2}" } # func_append may be replaced by extended shell implementation # func_append_quoted var value # Quote VALUE and append to the end of shell variable VAR, separated # by a space. func_append_quoted () { func_quote_for_eval "${2}" eval "${1}=\$${1}\\ \$func_quote_for_eval_result" } # func_append_quoted may be replaced by extended shell implementation # func_arith arithmetic-term... func_arith () { func_arith_result=`expr "${@}"` } # func_arith may be replaced by extended shell implementation # func_len string # STRING may not start with a hyphen. func_len () { func_len_result=`expr "${1}" : ".*" 2>/dev/null || echo $max_cmd_len` } # func_len may be replaced by extended shell implementation # func_lo2o object func_lo2o () { func_lo2o_result=`$ECHO "${1}" | $SED "$lo2o"` } # func_lo2o may be replaced by extended shell implementation # func_xform libobj-or-source func_xform () { func_xform_result=`$ECHO "${1}" | $SED 's/\.[^.]*$/.lo/'` } # func_xform may be replaced by extended shell implementation # func_fatal_configuration arg... # Echo program name prefixed message to standard error, followed by # a configuration failure hint, and exit. func_fatal_configuration () { func_error ${1+"$@"} func_error "See the $PACKAGE documentation for more information." func_fatal_error "Fatal configuration error." } # func_config # Display the configuration for all the tags in this script. func_config () { re_begincf='^# ### BEGIN LIBTOOL' re_endcf='^# ### END LIBTOOL' # Default configuration. $SED "1,/$re_begincf CONFIG/d;/$re_endcf CONFIG/,\$d" < "$progpath" # Now print the configurations for the tags. for tagname in $taglist; do $SED -n "/$re_begincf TAG CONFIG: $tagname\$/,/$re_endcf TAG CONFIG: $tagname\$/p" < "$progpath" done exit $? } # func_features # Display the features supported by this script. func_features () { echo "host: $host" if test "$build_libtool_libs" = yes; then echo "enable shared libraries" else echo "disable shared libraries" fi if test "$build_old_libs" = yes; then echo "enable static libraries" else echo "disable static libraries" fi exit $? } # func_enable_tag tagname # Verify that TAGNAME is valid, and either flag an error and exit, or # enable the TAGNAME tag. We also add TAGNAME to the global $taglist # variable here. func_enable_tag () { # Global variable: tagname="$1" re_begincf="^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\$" re_endcf="^# ### END LIBTOOL TAG CONFIG: $tagname\$" sed_extractcf="/$re_begincf/,/$re_endcf/p" # Validate tagname. case $tagname in *[!-_A-Za-z0-9,/]*) func_fatal_error "invalid tag name: $tagname" ;; esac # Don't test for the "default" C tag, as we know it's # there but not specially marked. case $tagname in CC) ;; *) if $GREP "$re_begincf" "$progpath" >/dev/null 2>&1; then taglist="$taglist $tagname" # Evaluate the configuration. Be careful to quote the path # and the sed script, to avoid splitting on whitespace, but # also don't use non-portable quotes within backquotes within # quotes we have to do it in 2 steps: extractedcf=`$SED -n -e "$sed_extractcf" < "$progpath"` eval "$extractedcf" else func_error "ignoring unknown tag $tagname" fi ;; esac } # func_check_version_match # Ensure that we are using m4 macros, and libtool script from the same # release of libtool. func_check_version_match () { if test "$package_revision" != "$macro_revision"; then if test "$VERSION" != "$macro_version"; then if test -z "$macro_version"; then cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, but the $progname: definition of this LT_INIT comes from an older release. $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION $progname: and run autoconf again. _LT_EOF else cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, but the $progname: definition of this LT_INIT comes from $PACKAGE $macro_version. $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION $progname: and run autoconf again. _LT_EOF fi else cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, revision $package_revision, $progname: but the definition of this LT_INIT comes from revision $macro_revision. $progname: You should recreate aclocal.m4 with macros from revision $package_revision $progname: of $PACKAGE $VERSION and run autoconf again. _LT_EOF fi exit $EXIT_MISMATCH fi } # Shorthand for --mode=foo, only valid as the first argument case $1 in clean|clea|cle|cl) shift; set dummy --mode clean ${1+"$@"}; shift ;; compile|compil|compi|comp|com|co|c) shift; set dummy --mode compile ${1+"$@"}; shift ;; execute|execut|execu|exec|exe|ex|e) shift; set dummy --mode execute ${1+"$@"}; shift ;; finish|finis|fini|fin|fi|f) shift; set dummy --mode finish ${1+"$@"}; shift ;; install|instal|insta|inst|ins|in|i) shift; set dummy --mode install ${1+"$@"}; shift ;; link|lin|li|l) shift; set dummy --mode link ${1+"$@"}; shift ;; uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u) shift; set dummy --mode uninstall ${1+"$@"}; shift ;; esac # Option defaults: opt_debug=: opt_dry_run=false opt_config=false opt_preserve_dup_deps=false opt_features=false opt_finish=false opt_help=false opt_help_all=false opt_silent=: opt_warning=: opt_verbose=: opt_silent=false opt_verbose=false # Parse options once, thoroughly. This comes as soon as possible in the # script to make things like `--version' happen as quickly as we can. { # this just eases exit handling while test $# -gt 0; do opt="$1" shift case $opt in --debug|-x) opt_debug='set -x' func_echo "enabling shell trace mode" $opt_debug ;; --dry-run|--dryrun|-n) opt_dry_run=: ;; --config) opt_config=: func_config ;; --dlopen|-dlopen) optarg="$1" opt_dlopen="${opt_dlopen+$opt_dlopen }$optarg" shift ;; --preserve-dup-deps) opt_preserve_dup_deps=: ;; --features) opt_features=: func_features ;; --finish) opt_finish=: set dummy --mode finish ${1+"$@"}; shift ;; --help) opt_help=: ;; --help-all) opt_help_all=: opt_help=': help-all' ;; --mode) test $# = 0 && func_missing_arg $opt && break optarg="$1" opt_mode="$optarg" case $optarg in # Valid mode arguments: clean|compile|execute|finish|install|link|relink|uninstall) ;; # Catch anything else as an error *) func_error "invalid argument for $opt" exit_cmd=exit break ;; esac shift ;; --no-silent|--no-quiet) opt_silent=false func_append preserve_args " $opt" ;; --no-warning|--no-warn) opt_warning=false func_append preserve_args " $opt" ;; --no-verbose) opt_verbose=false func_append preserve_args " $opt" ;; --silent|--quiet) opt_silent=: func_append preserve_args " $opt" opt_verbose=false ;; --verbose|-v) opt_verbose=: func_append preserve_args " $opt" opt_silent=false ;; --tag) test $# = 0 && func_missing_arg $opt && break optarg="$1" opt_tag="$optarg" func_append preserve_args " $opt $optarg" func_enable_tag "$optarg" shift ;; -\?|-h) func_usage ;; --help) func_help ;; --version) func_version ;; # Separate optargs to long options: --*=*) func_split_long_opt "$opt" set dummy "$func_split_long_opt_name" "$func_split_long_opt_arg" ${1+"$@"} shift ;; # Separate non-argument short options: -\?*|-h*|-n*|-v*) func_split_short_opt "$opt" set dummy "$func_split_short_opt_name" "-$func_split_short_opt_arg" ${1+"$@"} shift ;; --) break ;; -*) func_fatal_help "unrecognized option \`$opt'" ;; *) set dummy "$opt" ${1+"$@"}; shift; break ;; esac done # Validate options: # save first non-option argument if test "$#" -gt 0; then nonopt="$opt" shift fi # preserve --debug test "$opt_debug" = : || func_append preserve_args " --debug" case $host in *cygwin* | *mingw* | *pw32* | *cegcc*) # don't eliminate duplications in $postdeps and $predeps opt_duplicate_compiler_generated_deps=: ;; *) opt_duplicate_compiler_generated_deps=$opt_preserve_dup_deps ;; esac $opt_help || { # Sanity checks first: func_check_version_match if test "$build_libtool_libs" != yes && test "$build_old_libs" != yes; then func_fatal_configuration "not configured to build any kind of library" fi # Darwin sucks eval std_shrext=\"$shrext_cmds\" # Only execute mode is allowed to have -dlopen flags. if test -n "$opt_dlopen" && test "$opt_mode" != execute; then func_error "unrecognized option \`-dlopen'" $ECHO "$help" 1>&2 exit $EXIT_FAILURE fi # Change the help message to a mode-specific one. generic_help="$help" help="Try \`$progname --help --mode=$opt_mode' for more information." } # Bail if the options were screwed $exit_cmd $EXIT_FAILURE } ## ----------- ## ## Main. ## ## ----------- ## # func_lalib_p file # True iff FILE is a libtool `.la' library or `.lo' object file. # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_lalib_p () { test -f "$1" && $SED -e 4q "$1" 2>/dev/null \ | $GREP "^# Generated by .*$PACKAGE" > /dev/null 2>&1 } # func_lalib_unsafe_p file # True iff FILE is a libtool `.la' library or `.lo' object file. # This function implements the same check as func_lalib_p without # resorting to external programs. To this end, it redirects stdin and # closes it afterwards, without saving the original file descriptor. # As a safety measure, use it only where a negative result would be # fatal anyway. Works if `file' does not exist. func_lalib_unsafe_p () { lalib_p=no if test -f "$1" && test -r "$1" && exec 5<&0 <"$1"; then for lalib_p_l in 1 2 3 4 do read lalib_p_line case "$lalib_p_line" in \#\ Generated\ by\ *$PACKAGE* ) lalib_p=yes; break;; esac done exec 0<&5 5<&- fi test "$lalib_p" = yes } # func_ltwrapper_script_p file # True iff FILE is a libtool wrapper script # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_ltwrapper_script_p () { func_lalib_p "$1" } # func_ltwrapper_executable_p file # True iff FILE is a libtool wrapper executable # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_ltwrapper_executable_p () { func_ltwrapper_exec_suffix= case $1 in *.exe) ;; *) func_ltwrapper_exec_suffix=.exe ;; esac $GREP "$magic_exe" "$1$func_ltwrapper_exec_suffix" >/dev/null 2>&1 } # func_ltwrapper_scriptname file # Assumes file is an ltwrapper_executable # uses $file to determine the appropriate filename for a # temporary ltwrapper_script. func_ltwrapper_scriptname () { func_dirname_and_basename "$1" "" "." func_stripname '' '.exe' "$func_basename_result" func_ltwrapper_scriptname_result="$func_dirname_result/$objdir/${func_stripname_result}_ltshwrapper" } # func_ltwrapper_p file # True iff FILE is a libtool wrapper script or wrapper executable # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_ltwrapper_p () { func_ltwrapper_script_p "$1" || func_ltwrapper_executable_p "$1" } # func_execute_cmds commands fail_cmd # Execute tilde-delimited COMMANDS. # If FAIL_CMD is given, eval that upon failure. # FAIL_CMD may read-access the current command in variable CMD! func_execute_cmds () { $opt_debug save_ifs=$IFS; IFS='~' for cmd in $1; do IFS=$save_ifs eval cmd=\"$cmd\" func_show_eval "$cmd" "${2-:}" done IFS=$save_ifs } # func_source file # Source FILE, adding directory component if necessary. # Note that it is not necessary on cygwin/mingw to append a dot to # FILE even if both FILE and FILE.exe exist: automatic-append-.exe # behavior happens only for exec(3), not for open(2)! Also, sourcing # `FILE.' does not work on cygwin managed mounts. func_source () { $opt_debug case $1 in */* | *\\*) . "$1" ;; *) . "./$1" ;; esac } # func_resolve_sysroot PATH # Replace a leading = in PATH with a sysroot. Store the result into # func_resolve_sysroot_result func_resolve_sysroot () { func_resolve_sysroot_result=$1 case $func_resolve_sysroot_result in =*) func_stripname '=' '' "$func_resolve_sysroot_result" func_resolve_sysroot_result=$lt_sysroot$func_stripname_result ;; esac } # func_replace_sysroot PATH # If PATH begins with the sysroot, replace it with = and # store the result into func_replace_sysroot_result. func_replace_sysroot () { case "$lt_sysroot:$1" in ?*:"$lt_sysroot"*) func_stripname "$lt_sysroot" '' "$1" func_replace_sysroot_result="=$func_stripname_result" ;; *) # Including no sysroot. func_replace_sysroot_result=$1 ;; esac } # func_infer_tag arg # Infer tagged configuration to use if any are available and # if one wasn't chosen via the "--tag" command line option. # Only attempt this if the compiler in the base compile # command doesn't match the default compiler. # arg is usually of the form 'gcc ...' func_infer_tag () { $opt_debug if test -n "$available_tags" && test -z "$tagname"; then CC_quoted= for arg in $CC; do func_append_quoted CC_quoted "$arg" done CC_expanded=`func_echo_all $CC` CC_quoted_expanded=`func_echo_all $CC_quoted` case $@ in # Blanks in the command may have been stripped by the calling shell, # but not from the CC environment variable when configure was run. " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) ;; # Blanks at the start of $base_compile will cause this to fail # if we don't check for them as well. *) for z in $available_tags; do if $GREP "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then # Evaluate the configuration. eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`" CC_quoted= for arg in $CC; do # Double-quote args containing other shell metacharacters. func_append_quoted CC_quoted "$arg" done CC_expanded=`func_echo_all $CC` CC_quoted_expanded=`func_echo_all $CC_quoted` case "$@ " in " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) # The compiler in the base compile command matches # the one in the tagged configuration. # Assume this is the tagged configuration we want. tagname=$z break ;; esac fi done # If $tagname still isn't set, then no tagged configuration # was found and let the user know that the "--tag" command # line option must be used. if test -z "$tagname"; then func_echo "unable to infer tagged configuration" func_fatal_error "specify a tag with \`--tag'" # else # func_verbose "using $tagname tagged configuration" fi ;; esac fi } # func_write_libtool_object output_name pic_name nonpic_name # Create a libtool object file (analogous to a ".la" file), # but don't create it if we're doing a dry run. func_write_libtool_object () { write_libobj=${1} if test "$build_libtool_libs" = yes; then write_lobj=\'${2}\' else write_lobj=none fi if test "$build_old_libs" = yes; then write_oldobj=\'${3}\' else write_oldobj=none fi $opt_dry_run || { cat >${write_libobj}T </dev/null` if test "$?" -eq 0 && test -n "${func_convert_core_file_wine_to_w32_tmp}"; then func_convert_core_file_wine_to_w32_result=`$ECHO "$func_convert_core_file_wine_to_w32_tmp" | $SED -e "$lt_sed_naive_backslashify"` else func_convert_core_file_wine_to_w32_result= fi fi } # end: func_convert_core_file_wine_to_w32 # func_convert_core_path_wine_to_w32 ARG # Helper function used by path conversion functions when $build is *nix, and # $host is mingw, cygwin, or some other w32 environment. Relies on a correctly # configured wine environment available, with the winepath program in $build's # $PATH. Assumes ARG has no leading or trailing path separator characters. # # ARG is path to be converted from $build format to win32. # Result is available in $func_convert_core_path_wine_to_w32_result. # Unconvertible file (directory) names in ARG are skipped; if no directory names # are convertible, then the result may be empty. func_convert_core_path_wine_to_w32 () { $opt_debug # unfortunately, winepath doesn't convert paths, only file names func_convert_core_path_wine_to_w32_result="" if test -n "$1"; then oldIFS=$IFS IFS=: for func_convert_core_path_wine_to_w32_f in $1; do IFS=$oldIFS func_convert_core_file_wine_to_w32 "$func_convert_core_path_wine_to_w32_f" if test -n "$func_convert_core_file_wine_to_w32_result" ; then if test -z "$func_convert_core_path_wine_to_w32_result"; then func_convert_core_path_wine_to_w32_result="$func_convert_core_file_wine_to_w32_result" else func_append func_convert_core_path_wine_to_w32_result ";$func_convert_core_file_wine_to_w32_result" fi fi done IFS=$oldIFS fi } # end: func_convert_core_path_wine_to_w32 # func_cygpath ARGS... # Wrapper around calling the cygpath program via LT_CYGPATH. This is used when # when (1) $build is *nix and Cygwin is hosted via a wine environment; or (2) # $build is MSYS and $host is Cygwin, or (3) $build is Cygwin. In case (1) or # (2), returns the Cygwin file name or path in func_cygpath_result (input # file name or path is assumed to be in w32 format, as previously converted # from $build's *nix or MSYS format). In case (3), returns the w32 file name # or path in func_cygpath_result (input file name or path is assumed to be in # Cygwin format). Returns an empty string on error. # # ARGS are passed to cygpath, with the last one being the file name or path to # be converted. # # Specify the absolute *nix (or w32) name to cygpath in the LT_CYGPATH # environment variable; do not put it in $PATH. func_cygpath () { $opt_debug if test -n "$LT_CYGPATH" && test -f "$LT_CYGPATH"; then func_cygpath_result=`$LT_CYGPATH "$@" 2>/dev/null` if test "$?" -ne 0; then # on failure, ensure result is empty func_cygpath_result= fi else func_cygpath_result= func_error "LT_CYGPATH is empty or specifies non-existent file: \`$LT_CYGPATH'" fi } #end: func_cygpath # func_convert_core_msys_to_w32 ARG # Convert file name or path ARG from MSYS format to w32 format. Return # result in func_convert_core_msys_to_w32_result. func_convert_core_msys_to_w32 () { $opt_debug # awkward: cmd appends spaces to result func_convert_core_msys_to_w32_result=`( cmd //c echo "$1" ) 2>/dev/null | $SED -e 's/[ ]*$//' -e "$lt_sed_naive_backslashify"` } #end: func_convert_core_msys_to_w32 # func_convert_file_check ARG1 ARG2 # Verify that ARG1 (a file name in $build format) was converted to $host # format in ARG2. Otherwise, emit an error message, but continue (resetting # func_to_host_file_result to ARG1). func_convert_file_check () { $opt_debug if test -z "$2" && test -n "$1" ; then func_error "Could not determine host file name corresponding to" func_error " \`$1'" func_error "Continuing, but uninstalled executables may not work." # Fallback: func_to_host_file_result="$1" fi } # end func_convert_file_check # func_convert_path_check FROM_PATHSEP TO_PATHSEP FROM_PATH TO_PATH # Verify that FROM_PATH (a path in $build format) was converted to $host # format in TO_PATH. Otherwise, emit an error message, but continue, resetting # func_to_host_file_result to a simplistic fallback value (see below). func_convert_path_check () { $opt_debug if test -z "$4" && test -n "$3"; then func_error "Could not determine the host path corresponding to" func_error " \`$3'" func_error "Continuing, but uninstalled executables may not work." # Fallback. This is a deliberately simplistic "conversion" and # should not be "improved". See libtool.info. if test "x$1" != "x$2"; then lt_replace_pathsep_chars="s|$1|$2|g" func_to_host_path_result=`echo "$3" | $SED -e "$lt_replace_pathsep_chars"` else func_to_host_path_result="$3" fi fi } # end func_convert_path_check # func_convert_path_front_back_pathsep FRONTPAT BACKPAT REPL ORIG # Modifies func_to_host_path_result by prepending REPL if ORIG matches FRONTPAT # and appending REPL if ORIG matches BACKPAT. func_convert_path_front_back_pathsep () { $opt_debug case $4 in $1 ) func_to_host_path_result="$3$func_to_host_path_result" ;; esac case $4 in $2 ) func_append func_to_host_path_result "$3" ;; esac } # end func_convert_path_front_back_pathsep ################################################## # $build to $host FILE NAME CONVERSION FUNCTIONS # ################################################## # invoked via `$to_host_file_cmd ARG' # # In each case, ARG is the path to be converted from $build to $host format. # Result will be available in $func_to_host_file_result. # func_to_host_file ARG # Converts the file name ARG from $build format to $host format. Return result # in func_to_host_file_result. func_to_host_file () { $opt_debug $to_host_file_cmd "$1" } # end func_to_host_file # func_to_tool_file ARG LAZY # converts the file name ARG from $build format to toolchain format. Return # result in func_to_tool_file_result. If the conversion in use is listed # in (the comma separated) LAZY, no conversion takes place. func_to_tool_file () { $opt_debug case ,$2, in *,"$to_tool_file_cmd",*) func_to_tool_file_result=$1 ;; *) $to_tool_file_cmd "$1" func_to_tool_file_result=$func_to_host_file_result ;; esac } # end func_to_tool_file # func_convert_file_noop ARG # Copy ARG to func_to_host_file_result. func_convert_file_noop () { func_to_host_file_result="$1" } # end func_convert_file_noop # func_convert_file_msys_to_w32 ARG # Convert file name ARG from (mingw) MSYS to (mingw) w32 format; automatic # conversion to w32 is not available inside the cwrapper. Returns result in # func_to_host_file_result. func_convert_file_msys_to_w32 () { $opt_debug func_to_host_file_result="$1" if test -n "$1"; then func_convert_core_msys_to_w32 "$1" func_to_host_file_result="$func_convert_core_msys_to_w32_result" fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_msys_to_w32 # func_convert_file_cygwin_to_w32 ARG # Convert file name ARG from Cygwin to w32 format. Returns result in # func_to_host_file_result. func_convert_file_cygwin_to_w32 () { $opt_debug func_to_host_file_result="$1" if test -n "$1"; then # because $build is cygwin, we call "the" cygpath in $PATH; no need to use # LT_CYGPATH in this case. func_to_host_file_result=`cygpath -m "$1"` fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_cygwin_to_w32 # func_convert_file_nix_to_w32 ARG # Convert file name ARG from *nix to w32 format. Requires a wine environment # and a working winepath. Returns result in func_to_host_file_result. func_convert_file_nix_to_w32 () { $opt_debug func_to_host_file_result="$1" if test -n "$1"; then func_convert_core_file_wine_to_w32 "$1" func_to_host_file_result="$func_convert_core_file_wine_to_w32_result" fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_nix_to_w32 # func_convert_file_msys_to_cygwin ARG # Convert file name ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. # Returns result in func_to_host_file_result. func_convert_file_msys_to_cygwin () { $opt_debug func_to_host_file_result="$1" if test -n "$1"; then func_convert_core_msys_to_w32 "$1" func_cygpath -u "$func_convert_core_msys_to_w32_result" func_to_host_file_result="$func_cygpath_result" fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_msys_to_cygwin # func_convert_file_nix_to_cygwin ARG # Convert file name ARG from *nix to Cygwin format. Requires Cygwin installed # in a wine environment, working winepath, and LT_CYGPATH set. Returns result # in func_to_host_file_result. func_convert_file_nix_to_cygwin () { $opt_debug func_to_host_file_result="$1" if test -n "$1"; then # convert from *nix to w32, then use cygpath to convert from w32 to cygwin. func_convert_core_file_wine_to_w32 "$1" func_cygpath -u "$func_convert_core_file_wine_to_w32_result" func_to_host_file_result="$func_cygpath_result" fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_nix_to_cygwin ############################################# # $build to $host PATH CONVERSION FUNCTIONS # ############################################# # invoked via `$to_host_path_cmd ARG' # # In each case, ARG is the path to be converted from $build to $host format. # The result will be available in $func_to_host_path_result. # # Path separators are also converted from $build format to $host format. If # ARG begins or ends with a path separator character, it is preserved (but # converted to $host format) on output. # # All path conversion functions are named using the following convention: # file name conversion function : func_convert_file_X_to_Y () # path conversion function : func_convert_path_X_to_Y () # where, for any given $build/$host combination the 'X_to_Y' value is the # same. If conversion functions are added for new $build/$host combinations, # the two new functions must follow this pattern, or func_init_to_host_path_cmd # will break. # func_init_to_host_path_cmd # Ensures that function "pointer" variable $to_host_path_cmd is set to the # appropriate value, based on the value of $to_host_file_cmd. to_host_path_cmd= func_init_to_host_path_cmd () { $opt_debug if test -z "$to_host_path_cmd"; then func_stripname 'func_convert_file_' '' "$to_host_file_cmd" to_host_path_cmd="func_convert_path_${func_stripname_result}" fi } # func_to_host_path ARG # Converts the path ARG from $build format to $host format. Return result # in func_to_host_path_result. func_to_host_path () { $opt_debug func_init_to_host_path_cmd $to_host_path_cmd "$1" } # end func_to_host_path # func_convert_path_noop ARG # Copy ARG to func_to_host_path_result. func_convert_path_noop () { func_to_host_path_result="$1" } # end func_convert_path_noop # func_convert_path_msys_to_w32 ARG # Convert path ARG from (mingw) MSYS to (mingw) w32 format; automatic # conversion to w32 is not available inside the cwrapper. Returns result in # func_to_host_path_result. func_convert_path_msys_to_w32 () { $opt_debug func_to_host_path_result="$1" if test -n "$1"; then # Remove leading and trailing path separator characters from ARG. MSYS # behavior is inconsistent here; cygpath turns them into '.;' and ';.'; # and winepath ignores them completely. func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" func_to_host_path_result="$func_convert_core_msys_to_w32_result" func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" fi } # end func_convert_path_msys_to_w32 # func_convert_path_cygwin_to_w32 ARG # Convert path ARG from Cygwin to w32 format. Returns result in # func_to_host_file_result. func_convert_path_cygwin_to_w32 () { $opt_debug func_to_host_path_result="$1" if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_to_host_path_result=`cygpath -m -p "$func_to_host_path_tmp1"` func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" fi } # end func_convert_path_cygwin_to_w32 # func_convert_path_nix_to_w32 ARG # Convert path ARG from *nix to w32 format. Requires a wine environment and # a working winepath. Returns result in func_to_host_file_result. func_convert_path_nix_to_w32 () { $opt_debug func_to_host_path_result="$1" if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" func_to_host_path_result="$func_convert_core_path_wine_to_w32_result" func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" fi } # end func_convert_path_nix_to_w32 # func_convert_path_msys_to_cygwin ARG # Convert path ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. # Returns result in func_to_host_file_result. func_convert_path_msys_to_cygwin () { $opt_debug func_to_host_path_result="$1" if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" func_cygpath -u -p "$func_convert_core_msys_to_w32_result" func_to_host_path_result="$func_cygpath_result" func_convert_path_check : : \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" : "$1" fi } # end func_convert_path_msys_to_cygwin # func_convert_path_nix_to_cygwin ARG # Convert path ARG from *nix to Cygwin format. Requires Cygwin installed in a # a wine environment, working winepath, and LT_CYGPATH set. Returns result in # func_to_host_file_result. func_convert_path_nix_to_cygwin () { $opt_debug func_to_host_path_result="$1" if test -n "$1"; then # Remove leading and trailing path separator characters from # ARG. msys behavior is inconsistent here, cygpath turns them # into '.;' and ';.', and winepath ignores them completely. func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" func_cygpath -u -p "$func_convert_core_path_wine_to_w32_result" func_to_host_path_result="$func_cygpath_result" func_convert_path_check : : \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" : "$1" fi } # end func_convert_path_nix_to_cygwin # func_mode_compile arg... func_mode_compile () { $opt_debug # Get the compilation command and the source file. base_compile= srcfile="$nonopt" # always keep a non-empty value in "srcfile" suppress_opt=yes suppress_output= arg_mode=normal libobj= later= pie_flag= for arg do case $arg_mode in arg ) # do not "continue". Instead, add this to base_compile lastarg="$arg" arg_mode=normal ;; target ) libobj="$arg" arg_mode=normal continue ;; normal ) # Accept any command-line options. case $arg in -o) test -n "$libobj" && \ func_fatal_error "you cannot specify \`-o' more than once" arg_mode=target continue ;; -pie | -fpie | -fPIE) func_append pie_flag " $arg" continue ;; -shared | -static | -prefer-pic | -prefer-non-pic) func_append later " $arg" continue ;; -no-suppress) suppress_opt=no continue ;; -Xcompiler) arg_mode=arg # the next one goes into the "base_compile" arg list continue # The current "srcfile" will either be retained or ;; # replaced later. I would guess that would be a bug. -Wc,*) func_stripname '-Wc,' '' "$arg" args=$func_stripname_result lastarg= save_ifs="$IFS"; IFS=',' for arg in $args; do IFS="$save_ifs" func_append_quoted lastarg "$arg" done IFS="$save_ifs" func_stripname ' ' '' "$lastarg" lastarg=$func_stripname_result # Add the arguments to base_compile. func_append base_compile " $lastarg" continue ;; *) # Accept the current argument as the source file. # The previous "srcfile" becomes the current argument. # lastarg="$srcfile" srcfile="$arg" ;; esac # case $arg ;; esac # case $arg_mode # Aesthetically quote the previous argument. func_append_quoted base_compile "$lastarg" done # for arg case $arg_mode in arg) func_fatal_error "you must specify an argument for -Xcompile" ;; target) func_fatal_error "you must specify a target with \`-o'" ;; *) # Get the name of the library object. test -z "$libobj" && { func_basename "$srcfile" libobj="$func_basename_result" } ;; esac # Recognize several different file suffixes. # If the user specifies -o file.o, it is replaced with file.lo case $libobj in *.[cCFSifmso] | \ *.ada | *.adb | *.ads | *.asm | \ *.c++ | *.cc | *.ii | *.class | *.cpp | *.cxx | \ *.[fF][09]? | *.for | *.java | *.go | *.obj | *.sx | *.cu | *.cup) func_xform "$libobj" libobj=$func_xform_result ;; esac case $libobj in *.lo) func_lo2o "$libobj"; obj=$func_lo2o_result ;; *) func_fatal_error "cannot determine name of library object from \`$libobj'" ;; esac func_infer_tag $base_compile for arg in $later; do case $arg in -shared) test "$build_libtool_libs" != yes && \ func_fatal_configuration "can not build a shared library" build_old_libs=no continue ;; -static) build_libtool_libs=no build_old_libs=yes continue ;; -prefer-pic) pic_mode=yes continue ;; -prefer-non-pic) pic_mode=no continue ;; esac done func_quote_for_eval "$libobj" test "X$libobj" != "X$func_quote_for_eval_result" \ && $ECHO "X$libobj" | $GREP '[]~#^*{};<>?"'"'"' &()|`$[]' \ && func_warning "libobj name \`$libobj' may not contain shell special characters." func_dirname_and_basename "$obj" "/" "" objname="$func_basename_result" xdir="$func_dirname_result" lobj=${xdir}$objdir/$objname test -z "$base_compile" && \ func_fatal_help "you must specify a compilation command" # Delete any leftover library objects. if test "$build_old_libs" = yes; then removelist="$obj $lobj $libobj ${libobj}T" else removelist="$lobj $libobj ${libobj}T" fi # On Cygwin there's no "real" PIC flag so we must build both object types case $host_os in cygwin* | mingw* | pw32* | os2* | cegcc*) pic_mode=default ;; esac if test "$pic_mode" = no && test "$deplibs_check_method" != pass_all; then # non-PIC code in shared libraries is not supported pic_mode=default fi # Calculate the filename of the output object if compiler does # not support -o with -c if test "$compiler_c_o" = no; then output_obj=`$ECHO "$srcfile" | $SED 's%^.*/%%; s%\.[^.]*$%%'`.${objext} lockfile="$output_obj.lock" else output_obj= need_locks=no lockfile= fi # Lock this critical section if it is needed # We use this script file to make the link, it avoids creating a new file if test "$need_locks" = yes; then until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do func_echo "Waiting for $lockfile to be removed" sleep 2 done elif test "$need_locks" = warn; then if test -f "$lockfile"; then $ECHO "\ *** ERROR, $lockfile exists and contains: `cat $lockfile 2>/dev/null` This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support \`-c' and \`-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $opt_dry_run || $RM $removelist exit $EXIT_FAILURE fi func_append removelist " $output_obj" $ECHO "$srcfile" > "$lockfile" fi $opt_dry_run || $RM $removelist func_append removelist " $lockfile" trap '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' 1 2 15 func_to_tool_file "$srcfile" func_convert_file_msys_to_w32 srcfile=$func_to_tool_file_result func_quote_for_eval "$srcfile" qsrcfile=$func_quote_for_eval_result # Only build a PIC object if we are building libtool libraries. if test "$build_libtool_libs" = yes; then # Without this assignment, base_compile gets emptied. fbsd_hideous_sh_bug=$base_compile if test "$pic_mode" != no; then command="$base_compile $qsrcfile $pic_flag" else # Don't build PIC code command="$base_compile $qsrcfile" fi func_mkdir_p "$xdir$objdir" if test -z "$output_obj"; then # Place PIC objects in $objdir func_append command " -o $lobj" fi func_show_eval_locale "$command" \ 'test -n "$output_obj" && $RM $removelist; exit $EXIT_FAILURE' if test "$need_locks" = warn && test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then $ECHO "\ *** ERROR, $lockfile contains: `cat $lockfile 2>/dev/null` but it should contain: $srcfile This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support \`-c' and \`-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $opt_dry_run || $RM $removelist exit $EXIT_FAILURE fi # Just move the object if needed, then go on to compile the next one if test -n "$output_obj" && test "X$output_obj" != "X$lobj"; then func_show_eval '$MV "$output_obj" "$lobj"' \ 'error=$?; $opt_dry_run || $RM $removelist; exit $error' fi # Allow error messages only from the first compilation. if test "$suppress_opt" = yes; then suppress_output=' >/dev/null 2>&1' fi fi # Only build a position-dependent object if we build old libraries. if test "$build_old_libs" = yes; then if test "$pic_mode" != yes; then # Don't build PIC code command="$base_compile $qsrcfile$pie_flag" else command="$base_compile $qsrcfile $pic_flag" fi if test "$compiler_c_o" = yes; then func_append command " -o $obj" fi # Suppress compiler output if we already did a PIC compilation. func_append command "$suppress_output" func_show_eval_locale "$command" \ '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' if test "$need_locks" = warn && test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then $ECHO "\ *** ERROR, $lockfile contains: `cat $lockfile 2>/dev/null` but it should contain: $srcfile This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support \`-c' and \`-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $opt_dry_run || $RM $removelist exit $EXIT_FAILURE fi # Just move the object if needed if test -n "$output_obj" && test "X$output_obj" != "X$obj"; then func_show_eval '$MV "$output_obj" "$obj"' \ 'error=$?; $opt_dry_run || $RM $removelist; exit $error' fi fi $opt_dry_run || { func_write_libtool_object "$libobj" "$objdir/$objname" "$objname" # Unlock the critical section if it was locked if test "$need_locks" != no; then removelist=$lockfile $RM "$lockfile" fi } exit $EXIT_SUCCESS } $opt_help || { test "$opt_mode" = compile && func_mode_compile ${1+"$@"} } func_mode_help () { # We need to display help for each of the modes. case $opt_mode in "") # Generic help is extracted from the usage comments # at the start of this file. func_help ;; clean) $ECHO \ "Usage: $progname [OPTION]... --mode=clean RM [RM-OPTION]... FILE... Remove files from the build directory. RM is the name of the program to use to delete files associated with each FILE (typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed to RM. If FILE is a libtool library, object or program, all the files associated with it are deleted. Otherwise, only FILE itself is deleted using RM." ;; compile) $ECHO \ "Usage: $progname [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE Compile a source file into a libtool library object. This mode accepts the following additional options: -o OUTPUT-FILE set the output file name to OUTPUT-FILE -no-suppress do not suppress compiler output for multiple passes -prefer-pic try to build PIC objects only -prefer-non-pic try to build non-PIC objects only -shared do not build a \`.o' file suitable for static linking -static only build a \`.o' file suitable for static linking -Wc,FLAG pass FLAG directly to the compiler COMPILE-COMMAND is a command to be used in creating a \`standard' object file from the given SOURCEFILE. The output file name is determined by removing the directory component from SOURCEFILE, then substituting the C source code suffix \`.c' with the library object suffix, \`.lo'." ;; execute) $ECHO \ "Usage: $progname [OPTION]... --mode=execute COMMAND [ARGS]... Automatically set library path, then run a program. This mode accepts the following additional options: -dlopen FILE add the directory containing FILE to the library path This mode sets the library path environment variable according to \`-dlopen' flags. If any of the ARGS are libtool executable wrappers, then they are translated into their corresponding uninstalled binary, and any of their required library directories are added to the library path. Then, COMMAND is executed, with ARGS as arguments." ;; finish) $ECHO \ "Usage: $progname [OPTION]... --mode=finish [LIBDIR]... Complete the installation of libtool libraries. Each LIBDIR is a directory that contains libtool libraries. The commands that this mode executes may require superuser privileges. Use the \`--dry-run' option if you just want to see what would be executed." ;; install) $ECHO \ "Usage: $progname [OPTION]... --mode=install INSTALL-COMMAND... Install executables or libraries. INSTALL-COMMAND is the installation command. The first component should be either the \`install' or \`cp' program. The following components of INSTALL-COMMAND are treated specially: -inst-prefix-dir PREFIX-DIR Use PREFIX-DIR as a staging area for installation The rest of the components are interpreted as arguments to that command (only BSD-compatible install options are recognized)." ;; link) $ECHO \ "Usage: $progname [OPTION]... --mode=link LINK-COMMAND... Link object files or libraries together to form another library, or to create an executable program. LINK-COMMAND is a command using the C compiler that you would use to create a program from several object files. The following components of LINK-COMMAND are treated specially: -all-static do not do any dynamic linking at all -avoid-version do not add a version suffix if possible -bindir BINDIR specify path to binaries directory (for systems where libraries must be found in the PATH setting at runtime) -dlopen FILE \`-dlpreopen' FILE if it cannot be dlopened at runtime -dlpreopen FILE link in FILE and add its symbols to lt_preloaded_symbols -export-dynamic allow symbols from OUTPUT-FILE to be resolved with dlsym(3) -export-symbols SYMFILE try to export only the symbols listed in SYMFILE -export-symbols-regex REGEX try to export only the symbols matching REGEX -LLIBDIR search LIBDIR for required installed libraries -lNAME OUTPUT-FILE requires the installed library libNAME -module build a library that can dlopened -no-fast-install disable the fast-install mode -no-install link a not-installable executable -no-undefined declare that a library does not refer to external symbols -o OUTPUT-FILE create OUTPUT-FILE from the specified objects -objectlist FILE Use a list of object files found in FILE to specify objects -precious-files-regex REGEX don't remove output files matching REGEX -release RELEASE specify package release information -rpath LIBDIR the created library will eventually be installed in LIBDIR -R[ ]LIBDIR add LIBDIR to the runtime path of programs and libraries -shared only do dynamic linking of libtool libraries -shrext SUFFIX override the standard shared library file extension -static do not do any dynamic linking of uninstalled libtool libraries -static-libtool-libs do not do any dynamic linking of libtool libraries -version-info CURRENT[:REVISION[:AGE]] specify library version info [each variable defaults to 0] -weak LIBNAME declare that the target provides the LIBNAME interface -Wc,FLAG -Xcompiler FLAG pass linker-specific FLAG directly to the compiler -Wl,FLAG -Xlinker FLAG pass linker-specific FLAG directly to the linker -XCClinker FLAG pass link-specific FLAG to the compiler driver (CC) All other options (arguments beginning with \`-') are ignored. Every other argument is treated as a filename. Files ending in \`.la' are treated as uninstalled libtool libraries, other files are standard or library object files. If the OUTPUT-FILE ends in \`.la', then a libtool library is created, only library objects (\`.lo' files) may be specified, and \`-rpath' is required, except when creating a convenience library. If OUTPUT-FILE ends in \`.a' or \`.lib', then a standard library is created using \`ar' and \`ranlib', or on Windows using \`lib'. If OUTPUT-FILE ends in \`.lo' or \`.${objext}', then a reloadable object file is created, otherwise an executable program is created." ;; uninstall) $ECHO \ "Usage: $progname [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE... Remove libraries from an installation directory. RM is the name of the program to use to delete files associated with each FILE (typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed to RM. If FILE is a libtool library, all the files associated with it are deleted. Otherwise, only FILE itself is deleted using RM." ;; *) func_fatal_help "invalid operation mode \`$opt_mode'" ;; esac echo $ECHO "Try \`$progname --help' for more information about other modes." } # Now that we've collected a possible --mode arg, show help if necessary if $opt_help; then if test "$opt_help" = :; then func_mode_help else { func_help noexit for opt_mode in compile link execute install finish uninstall clean; do func_mode_help done } | sed -n '1p; 2,$s/^Usage:/ or: /p' { func_help noexit for opt_mode in compile link execute install finish uninstall clean; do echo func_mode_help done } | sed '1d /^When reporting/,/^Report/{ H d } $x /information about other modes/d /more detailed .*MODE/d s/^Usage:.*--mode=\([^ ]*\) .*/Description of \1 mode:/' fi exit $? fi # func_mode_execute arg... func_mode_execute () { $opt_debug # The first argument is the command name. cmd="$nonopt" test -z "$cmd" && \ func_fatal_help "you must specify a COMMAND" # Handle -dlopen flags immediately. for file in $opt_dlopen; do test -f "$file" \ || func_fatal_help "\`$file' is not a file" dir= case $file in *.la) func_resolve_sysroot "$file" file=$func_resolve_sysroot_result # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$file" \ || func_fatal_help "\`$lib' is not a valid libtool archive" # Read the libtool library. dlname= library_names= func_source "$file" # Skip this library if it cannot be dlopened. if test -z "$dlname"; then # Warn if it was a shared library. test -n "$library_names" && \ func_warning "\`$file' was not linked with \`-export-dynamic'" continue fi func_dirname "$file" "" "." dir="$func_dirname_result" if test -f "$dir/$objdir/$dlname"; then func_append dir "/$objdir" else if test ! -f "$dir/$dlname"; then func_fatal_error "cannot find \`$dlname' in \`$dir' or \`$dir/$objdir'" fi fi ;; *.lo) # Just add the directory containing the .lo file. func_dirname "$file" "" "." dir="$func_dirname_result" ;; *) func_warning "\`-dlopen' is ignored for non-libtool libraries and objects" continue ;; esac # Get the absolute pathname. absdir=`cd "$dir" && pwd` test -n "$absdir" && dir="$absdir" # Now add the directory to shlibpath_var. if eval "test -z \"\$$shlibpath_var\""; then eval "$shlibpath_var=\"\$dir\"" else eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\"" fi done # This variable tells wrapper scripts just to set shlibpath_var # rather than running their programs. libtool_execute_magic="$magic" # Check if any of the arguments is a wrapper script. args= for file do case $file in -* | *.la | *.lo ) ;; *) # Do a test to see if this is really a libtool program. if func_ltwrapper_script_p "$file"; then func_source "$file" # Transform arg to wrapped name. file="$progdir/$program" elif func_ltwrapper_executable_p "$file"; then func_ltwrapper_scriptname "$file" func_source "$func_ltwrapper_scriptname_result" # Transform arg to wrapped name. file="$progdir/$program" fi ;; esac # Quote arguments (to preserve shell metacharacters). func_append_quoted args "$file" done if test "X$opt_dry_run" = Xfalse; then if test -n "$shlibpath_var"; then # Export the shlibpath_var. eval "export $shlibpath_var" fi # Restore saved environment variables for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES do eval "if test \"\${save_$lt_var+set}\" = set; then $lt_var=\$save_$lt_var; export $lt_var else $lt_unset $lt_var fi" done # Now prepare to actually exec the command. exec_cmd="\$cmd$args" else # Display what would be done. if test -n "$shlibpath_var"; then eval "\$ECHO \"\$shlibpath_var=\$$shlibpath_var\"" echo "export $shlibpath_var" fi $ECHO "$cmd$args" exit $EXIT_SUCCESS fi } test "$opt_mode" = execute && func_mode_execute ${1+"$@"} # func_mode_finish arg... func_mode_finish () { $opt_debug libs= libdirs= admincmds= for opt in "$nonopt" ${1+"$@"} do if test -d "$opt"; then func_append libdirs " $opt" elif test -f "$opt"; then if func_lalib_unsafe_p "$opt"; then func_append libs " $opt" else func_warning "\`$opt' is not a valid libtool archive" fi else func_fatal_error "invalid argument \`$opt'" fi done if test -n "$libs"; then if test -n "$lt_sysroot"; then sysroot_regex=`$ECHO "$lt_sysroot" | $SED "$sed_make_literal_regex"` sysroot_cmd="s/\([ ']\)$sysroot_regex/\1/g;" else sysroot_cmd= fi # Remove sysroot references if $opt_dry_run; then for lib in $libs; do echo "removing references to $lt_sysroot and \`=' prefixes from $lib" done else tmpdir=`func_mktempdir` for lib in $libs; do sed -e "${sysroot_cmd} s/\([ ']-[LR]\)=/\1/g; s/\([ ']\)=/\1/g" $lib \ > $tmpdir/tmp-la mv -f $tmpdir/tmp-la $lib done ${RM}r "$tmpdir" fi fi if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then for libdir in $libdirs; do if test -n "$finish_cmds"; then # Do each command in the finish commands. func_execute_cmds "$finish_cmds" 'admincmds="$admincmds '"$cmd"'"' fi if test -n "$finish_eval"; then # Do the single finish_eval. eval cmds=\"$finish_eval\" $opt_dry_run || eval "$cmds" || func_append admincmds " $cmds" fi done fi # Exit here if they wanted silent mode. $opt_silent && exit $EXIT_SUCCESS if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then echo "----------------------------------------------------------------------" echo "Libraries have been installed in:" for libdir in $libdirs; do $ECHO " $libdir" done echo echo "If you ever happen to want to link against installed libraries" echo "in a given directory, LIBDIR, you must either use libtool, and" echo "specify the full pathname of the library, or use the \`-LLIBDIR'" echo "flag during linking and do at least one of the following:" if test -n "$shlibpath_var"; then echo " - add LIBDIR to the \`$shlibpath_var' environment variable" echo " during execution" fi if test -n "$runpath_var"; then echo " - add LIBDIR to the \`$runpath_var' environment variable" echo " during linking" fi if test -n "$hardcode_libdir_flag_spec"; then libdir=LIBDIR eval flag=\"$hardcode_libdir_flag_spec\" $ECHO " - use the \`$flag' linker flag" fi if test -n "$admincmds"; then $ECHO " - have your system administrator run these commands:$admincmds" fi if test -f /etc/ld.so.conf; then echo " - have your system administrator add LIBDIR to \`/etc/ld.so.conf'" fi echo echo "See any operating system documentation about shared libraries for" case $host in solaris2.[6789]|solaris2.1[0-9]) echo "more information, such as the ld(1), crle(1) and ld.so(8) manual" echo "pages." ;; *) echo "more information, such as the ld(1) and ld.so(8) manual pages." ;; esac echo "----------------------------------------------------------------------" fi exit $EXIT_SUCCESS } test "$opt_mode" = finish && func_mode_finish ${1+"$@"} # func_mode_install arg... func_mode_install () { $opt_debug # There may be an optional sh(1) argument at the beginning of # install_prog (especially on Windows NT). if test "$nonopt" = "$SHELL" || test "$nonopt" = /bin/sh || # Allow the use of GNU shtool's install command. case $nonopt in *shtool*) :;; *) false;; esac; then # Aesthetically quote it. func_quote_for_eval "$nonopt" install_prog="$func_quote_for_eval_result " arg=$1 shift else install_prog= arg=$nonopt fi # The real first argument should be the name of the installation program. # Aesthetically quote it. func_quote_for_eval "$arg" func_append install_prog "$func_quote_for_eval_result" install_shared_prog=$install_prog case " $install_prog " in *[\\\ /]cp\ *) install_cp=: ;; *) install_cp=false ;; esac # We need to accept at least all the BSD install flags. dest= files= opts= prev= install_type= isdir=no stripme= no_mode=: for arg do arg2= if test -n "$dest"; then func_append files " $dest" dest=$arg continue fi case $arg in -d) isdir=yes ;; -f) if $install_cp; then :; else prev=$arg fi ;; -g | -m | -o) prev=$arg ;; -s) stripme=" -s" continue ;; -*) ;; *) # If the previous option needed an argument, then skip it. if test -n "$prev"; then if test "x$prev" = x-m && test -n "$install_override_mode"; then arg2=$install_override_mode no_mode=false fi prev= else dest=$arg continue fi ;; esac # Aesthetically quote the argument. func_quote_for_eval "$arg" func_append install_prog " $func_quote_for_eval_result" if test -n "$arg2"; then func_quote_for_eval "$arg2" fi func_append install_shared_prog " $func_quote_for_eval_result" done test -z "$install_prog" && \ func_fatal_help "you must specify an install program" test -n "$prev" && \ func_fatal_help "the \`$prev' option requires an argument" if test -n "$install_override_mode" && $no_mode; then if $install_cp; then :; else func_quote_for_eval "$install_override_mode" func_append install_shared_prog " -m $func_quote_for_eval_result" fi fi if test -z "$files"; then if test -z "$dest"; then func_fatal_help "no file or destination specified" else func_fatal_help "you must specify a destination" fi fi # Strip any trailing slash from the destination. func_stripname '' '/' "$dest" dest=$func_stripname_result # Check to see that the destination is a directory. test -d "$dest" && isdir=yes if test "$isdir" = yes; then destdir="$dest" destname= else func_dirname_and_basename "$dest" "" "." destdir="$func_dirname_result" destname="$func_basename_result" # Not a directory, so check to see that there is only one file specified. set dummy $files; shift test "$#" -gt 1 && \ func_fatal_help "\`$dest' is not a directory" fi case $destdir in [\\/]* | [A-Za-z]:[\\/]*) ;; *) for file in $files; do case $file in *.lo) ;; *) func_fatal_help "\`$destdir' must be an absolute directory name" ;; esac done ;; esac # This variable tells wrapper scripts just to set variables rather # than running their programs. libtool_install_magic="$magic" staticlibs= future_libdirs= current_libdirs= for file in $files; do # Do each installation. case $file in *.$libext) # Do the static libraries later. func_append staticlibs " $file" ;; *.la) func_resolve_sysroot "$file" file=$func_resolve_sysroot_result # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$file" \ || func_fatal_help "\`$file' is not a valid libtool archive" library_names= old_library= relink_command= func_source "$file" # Add the libdir to current_libdirs if it is the destination. if test "X$destdir" = "X$libdir"; then case "$current_libdirs " in *" $libdir "*) ;; *) func_append current_libdirs " $libdir" ;; esac else # Note the libdir as a future libdir. case "$future_libdirs " in *" $libdir "*) ;; *) func_append future_libdirs " $libdir" ;; esac fi func_dirname "$file" "/" "" dir="$func_dirname_result" func_append dir "$objdir" if test -n "$relink_command"; then # Determine the prefix the user has applied to our future dir. inst_prefix_dir=`$ECHO "$destdir" | $SED -e "s%$libdir\$%%"` # Don't allow the user to place us outside of our expected # location b/c this prevents finding dependent libraries that # are installed to the same prefix. # At present, this check doesn't affect windows .dll's that # are installed into $libdir/../bin (currently, that works fine) # but it's something to keep an eye on. test "$inst_prefix_dir" = "$destdir" && \ func_fatal_error "error: cannot install \`$file' to a directory not ending in $libdir" if test -n "$inst_prefix_dir"; then # Stick the inst_prefix_dir data into the link command. relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%"` else relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%%"` fi func_warning "relinking \`$file'" func_show_eval "$relink_command" \ 'func_fatal_error "error: relink \`$file'\'' with the above command before installing it"' fi # See the names of the shared library. set dummy $library_names; shift if test -n "$1"; then realname="$1" shift srcname="$realname" test -n "$relink_command" && srcname="$realname"T # Install the shared library and build the symlinks. func_show_eval "$install_shared_prog $dir/$srcname $destdir/$realname" \ 'exit $?' tstripme="$stripme" case $host_os in cygwin* | mingw* | pw32* | cegcc*) case $realname in *.dll.a) tstripme="" ;; esac ;; esac if test -n "$tstripme" && test -n "$striplib"; then func_show_eval "$striplib $destdir/$realname" 'exit $?' fi if test "$#" -gt 0; then # Delete the old symlinks, and create new ones. # Try `ln -sf' first, because the `ln' binary might depend on # the symlink we replace! Solaris /bin/ln does not understand -f, # so we also need to try rm && ln -s. for linkname do test "$linkname" != "$realname" \ && func_show_eval "(cd $destdir && { $LN_S -f $realname $linkname || { $RM $linkname && $LN_S $realname $linkname; }; })" done fi # Do each command in the postinstall commands. lib="$destdir/$realname" func_execute_cmds "$postinstall_cmds" 'exit $?' fi # Install the pseudo-library for information purposes. func_basename "$file" name="$func_basename_result" instname="$dir/$name"i func_show_eval "$install_prog $instname $destdir/$name" 'exit $?' # Maybe install the static library, too. test -n "$old_library" && func_append staticlibs " $dir/$old_library" ;; *.lo) # Install (i.e. copy) a libtool object. # Figure out destination file name, if it wasn't already specified. if test -n "$destname"; then destfile="$destdir/$destname" else func_basename "$file" destfile="$func_basename_result" destfile="$destdir/$destfile" fi # Deduce the name of the destination old-style object file. case $destfile in *.lo) func_lo2o "$destfile" staticdest=$func_lo2o_result ;; *.$objext) staticdest="$destfile" destfile= ;; *) func_fatal_help "cannot copy a libtool object to \`$destfile'" ;; esac # Install the libtool object if requested. test -n "$destfile" && \ func_show_eval "$install_prog $file $destfile" 'exit $?' # Install the old object if enabled. if test "$build_old_libs" = yes; then # Deduce the name of the old-style object file. func_lo2o "$file" staticobj=$func_lo2o_result func_show_eval "$install_prog \$staticobj \$staticdest" 'exit $?' fi exit $EXIT_SUCCESS ;; *) # Figure out destination file name, if it wasn't already specified. if test -n "$destname"; then destfile="$destdir/$destname" else func_basename "$file" destfile="$func_basename_result" destfile="$destdir/$destfile" fi # If the file is missing, and there is a .exe on the end, strip it # because it is most likely a libtool script we actually want to # install stripped_ext="" case $file in *.exe) if test ! -f "$file"; then func_stripname '' '.exe' "$file" file=$func_stripname_result stripped_ext=".exe" fi ;; esac # Do a test to see if this is really a libtool program. case $host in *cygwin* | *mingw*) if func_ltwrapper_executable_p "$file"; then func_ltwrapper_scriptname "$file" wrapper=$func_ltwrapper_scriptname_result else func_stripname '' '.exe' "$file" wrapper=$func_stripname_result fi ;; *) wrapper=$file ;; esac if func_ltwrapper_script_p "$wrapper"; then notinst_deplibs= relink_command= func_source "$wrapper" # Check the variables that should have been set. test -z "$generated_by_libtool_version" && \ func_fatal_error "invalid libtool wrapper script \`$wrapper'" finalize=yes for lib in $notinst_deplibs; do # Check to see that each library is installed. libdir= if test -f "$lib"; then func_source "$lib" fi libfile="$libdir/"`$ECHO "$lib" | $SED 's%^.*/%%g'` ### testsuite: skip nested quoting test if test -n "$libdir" && test ! -f "$libfile"; then func_warning "\`$lib' has not been installed in \`$libdir'" finalize=no fi done relink_command= func_source "$wrapper" outputname= if test "$fast_install" = no && test -n "$relink_command"; then $opt_dry_run || { if test "$finalize" = yes; then tmpdir=`func_mktempdir` func_basename "$file$stripped_ext" file="$func_basename_result" outputname="$tmpdir/$file" # Replace the output file specification. relink_command=`$ECHO "$relink_command" | $SED 's%@OUTPUT@%'"$outputname"'%g'` $opt_silent || { func_quote_for_expand "$relink_command" eval "func_echo $func_quote_for_expand_result" } if eval "$relink_command"; then : else func_error "error: relink \`$file' with the above command before installing it" $opt_dry_run || ${RM}r "$tmpdir" continue fi file="$outputname" else func_warning "cannot relink \`$file'" fi } else # Install the binary that we compiled earlier. file=`$ECHO "$file$stripped_ext" | $SED "s%\([^/]*\)$%$objdir/\1%"` fi fi # remove .exe since cygwin /usr/bin/install will append another # one anyway case $install_prog,$host in */usr/bin/install*,*cygwin*) case $file:$destfile in *.exe:*.exe) # this is ok ;; *.exe:*) destfile=$destfile.exe ;; *:*.exe) func_stripname '' '.exe' "$destfile" destfile=$func_stripname_result ;; esac ;; esac func_show_eval "$install_prog\$stripme \$file \$destfile" 'exit $?' $opt_dry_run || if test -n "$outputname"; then ${RM}r "$tmpdir" fi ;; esac done for file in $staticlibs; do func_basename "$file" name="$func_basename_result" # Set up the ranlib parameters. oldlib="$destdir/$name" func_to_tool_file "$oldlib" func_convert_file_msys_to_w32 tool_oldlib=$func_to_tool_file_result func_show_eval "$install_prog \$file \$oldlib" 'exit $?' if test -n "$stripme" && test -n "$old_striplib"; then func_show_eval "$old_striplib $tool_oldlib" 'exit $?' fi # Do each command in the postinstall commands. func_execute_cmds "$old_postinstall_cmds" 'exit $?' done test -n "$future_libdirs" && \ func_warning "remember to run \`$progname --finish$future_libdirs'" if test -n "$current_libdirs"; then # Maybe just do a dry run. $opt_dry_run && current_libdirs=" -n$current_libdirs" exec_cmd='$SHELL $progpath $preserve_args --finish$current_libdirs' else exit $EXIT_SUCCESS fi } test "$opt_mode" = install && func_mode_install ${1+"$@"} # func_generate_dlsyms outputname originator pic_p # Extract symbols from dlprefiles and create ${outputname}S.o with # a dlpreopen symbol table. func_generate_dlsyms () { $opt_debug my_outputname="$1" my_originator="$2" my_pic_p="${3-no}" my_prefix=`$ECHO "$my_originator" | sed 's%[^a-zA-Z0-9]%_%g'` my_dlsyms= if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then if test -n "$NM" && test -n "$global_symbol_pipe"; then my_dlsyms="${my_outputname}S.c" else func_error "not configured to extract global symbols from dlpreopened files" fi fi if test -n "$my_dlsyms"; then case $my_dlsyms in "") ;; *.c) # Discover the nlist of each of the dlfiles. nlist="$output_objdir/${my_outputname}.nm" func_show_eval "$RM $nlist ${nlist}S ${nlist}T" # Parse the name list into a source file. func_verbose "creating $output_objdir/$my_dlsyms" $opt_dry_run || $ECHO > "$output_objdir/$my_dlsyms" "\ /* $my_dlsyms - symbol resolution table for \`$my_outputname' dlsym emulation. */ /* Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION */ #ifdef __cplusplus extern \"C\" { #endif #if defined(__GNUC__) && (((__GNUC__ == 4) && (__GNUC_MINOR__ >= 4)) || (__GNUC__ > 4)) #pragma GCC diagnostic ignored \"-Wstrict-prototypes\" #endif /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ #if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE) /* DATA imports from DLLs on WIN32 con't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs. */ # define LT_DLSYM_CONST #elif defined(__osf__) /* This system does not cope well with relocations in const data. */ # define LT_DLSYM_CONST #else # define LT_DLSYM_CONST const #endif /* External symbol declarations for the compiler. */\ " if test "$dlself" = yes; then func_verbose "generating symbol list for \`$output'" $opt_dry_run || echo ': @PROGRAM@ ' > "$nlist" # Add our own program objects to the symbol list. progfiles=`$ECHO "$objs$old_deplibs" | $SP2NL | $SED "$lo2o" | $NL2SP` for progfile in $progfiles; do func_to_tool_file "$progfile" func_convert_file_msys_to_w32 func_verbose "extracting global C symbols from \`$func_to_tool_file_result'" $opt_dry_run || eval "$NM $func_to_tool_file_result | $global_symbol_pipe >> '$nlist'" done if test -n "$exclude_expsyms"; then $opt_dry_run || { eval '$EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T' eval '$MV "$nlist"T "$nlist"' } fi if test -n "$export_symbols_regex"; then $opt_dry_run || { eval '$EGREP -e "$export_symbols_regex" "$nlist" > "$nlist"T' eval '$MV "$nlist"T "$nlist"' } fi # Prepare the list of exported symbols if test -z "$export_symbols"; then export_symbols="$output_objdir/$outputname.exp" $opt_dry_run || { $RM $export_symbols eval "${SED} -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"' case $host in *cygwin* | *mingw* | *cegcc* ) eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' eval 'cat "$export_symbols" >> "$output_objdir/$outputname.def"' ;; esac } else $opt_dry_run || { eval "${SED} -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"' eval '$GREP -f "$output_objdir/$outputname.exp" < "$nlist" > "$nlist"T' eval '$MV "$nlist"T "$nlist"' case $host in *cygwin* | *mingw* | *cegcc* ) eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' eval 'cat "$nlist" >> "$output_objdir/$outputname.def"' ;; esac } fi fi for dlprefile in $dlprefiles; do func_verbose "extracting global C symbols from \`$dlprefile'" func_basename "$dlprefile" name="$func_basename_result" case $host in *cygwin* | *mingw* | *cegcc* ) # if an import library, we need to obtain dlname if func_win32_import_lib_p "$dlprefile"; then func_tr_sh "$dlprefile" eval "curr_lafile=\$libfile_$func_tr_sh_result" dlprefile_dlbasename="" if test -n "$curr_lafile" && func_lalib_p "$curr_lafile"; then # Use subshell, to avoid clobbering current variable values dlprefile_dlname=`source "$curr_lafile" && echo "$dlname"` if test -n "$dlprefile_dlname" ; then func_basename "$dlprefile_dlname" dlprefile_dlbasename="$func_basename_result" else # no lafile. user explicitly requested -dlpreopen . $sharedlib_from_linklib_cmd "$dlprefile" dlprefile_dlbasename=$sharedlib_from_linklib_result fi fi $opt_dry_run || { if test -n "$dlprefile_dlbasename" ; then eval '$ECHO ": $dlprefile_dlbasename" >> "$nlist"' else func_warning "Could not compute DLL name from $name" eval '$ECHO ": $name " >> "$nlist"' fi func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe | $SED -e '/I __imp/d' -e 's/I __nm_/D /;s/_nm__//' >> '$nlist'" } else # not an import lib $opt_dry_run || { eval '$ECHO ": $name " >> "$nlist"' func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" } fi ;; *) $opt_dry_run || { eval '$ECHO ": $name " >> "$nlist"' func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" } ;; esac done $opt_dry_run || { # Make sure we have at least an empty file. test -f "$nlist" || : > "$nlist" if test -n "$exclude_expsyms"; then $EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T $MV "$nlist"T "$nlist" fi # Try sorting and uniquifying the output. if $GREP -v "^: " < "$nlist" | if sort -k 3 /dev/null 2>&1; then sort -k 3 else sort +2 fi | uniq > "$nlist"S; then : else $GREP -v "^: " < "$nlist" > "$nlist"S fi if test -f "$nlist"S; then eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$my_dlsyms"' else echo '/* NONE */' >> "$output_objdir/$my_dlsyms" fi echo >> "$output_objdir/$my_dlsyms" "\ /* The mapping between symbol names and symbols. */ typedef struct { const char *name; void *address; } lt_dlsymlist; extern LT_DLSYM_CONST lt_dlsymlist lt_${my_prefix}_LTX_preloaded_symbols[]; LT_DLSYM_CONST lt_dlsymlist lt_${my_prefix}_LTX_preloaded_symbols[] = {\ { \"$my_originator\", (void *) 0 }," case $need_lib_prefix in no) eval "$global_symbol_to_c_name_address" < "$nlist" >> "$output_objdir/$my_dlsyms" ;; *) eval "$global_symbol_to_c_name_address_lib_prefix" < "$nlist" >> "$output_objdir/$my_dlsyms" ;; esac echo >> "$output_objdir/$my_dlsyms" "\ {0, (void *) 0} }; /* This works around a problem in FreeBSD linker */ #ifdef FREEBSD_WORKAROUND static const void *lt_preloaded_setup() { return lt_${my_prefix}_LTX_preloaded_symbols; } #endif #ifdef __cplusplus } #endif\ " } # !$opt_dry_run pic_flag_for_symtable= case "$compile_command " in *" -static "*) ;; *) case $host in # compiling the symbol table file with pic_flag works around # a FreeBSD bug that causes programs to crash when -lm is # linked before any other PIC object. But we must not use # pic_flag when linking with -static. The problem exists in # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1. *-*-freebsd2.*|*-*-freebsd3.0*|*-*-freebsdelf3.0*) pic_flag_for_symtable=" $pic_flag -DFREEBSD_WORKAROUND" ;; *-*-hpux*) pic_flag_for_symtable=" $pic_flag" ;; *) if test "X$my_pic_p" != Xno; then pic_flag_for_symtable=" $pic_flag" fi ;; esac ;; esac symtab_cflags= for arg in $LTCFLAGS; do case $arg in -pie | -fpie | -fPIE) ;; *) func_append symtab_cflags " $arg" ;; esac done # Now compile the dynamic symbol file. func_show_eval '(cd $output_objdir && $LTCC$symtab_cflags -c$no_builtin_flag$pic_flag_for_symtable "$my_dlsyms")' 'exit $?' # Clean up the generated files. func_show_eval '$RM "$output_objdir/$my_dlsyms" "$nlist" "${nlist}S" "${nlist}T"' # Transform the symbol file into the correct name. symfileobj="$output_objdir/${my_outputname}S.$objext" case $host in *cygwin* | *mingw* | *cegcc* ) if test -f "$output_objdir/$my_outputname.def"; then compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` else compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` fi ;; *) compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` ;; esac ;; *) func_fatal_error "unknown suffix for \`$my_dlsyms'" ;; esac else # We keep going just in case the user didn't refer to # lt_preloaded_symbols. The linker will fail if global_symbol_pipe # really was required. # Nullify the symbol file. compile_command=`$ECHO "$compile_command" | $SED "s% @SYMFILE@%%"` finalize_command=`$ECHO "$finalize_command" | $SED "s% @SYMFILE@%%"` fi } # func_win32_libid arg # return the library type of file 'arg' # # Need a lot of goo to handle *both* DLLs and import libs # Has to be a shell function in order to 'eat' the argument # that is supplied when $file_magic_command is called. # Despite the name, also deal with 64 bit binaries. func_win32_libid () { $opt_debug win32_libid_type="unknown" win32_fileres=`file -L $1 2>/dev/null` case $win32_fileres in *ar\ archive\ import\ library*) # definitely import win32_libid_type="x86 archive import" ;; *ar\ archive*) # could be an import, or static # Keep the egrep pattern in sync with the one in _LT_CHECK_MAGIC_METHOD. if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null | $EGREP 'file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' >/dev/null; then func_to_tool_file "$1" func_convert_file_msys_to_w32 win32_nmres=`eval $NM -f posix -A \"$func_to_tool_file_result\" | $SED -n -e ' 1,100{ / I /{ s,.*,import, p q } }'` case $win32_nmres in import*) win32_libid_type="x86 archive import";; *) win32_libid_type="x86 archive static";; esac fi ;; *DLL*) win32_libid_type="x86 DLL" ;; *executable*) # but shell scripts are "executable" too... case $win32_fileres in *MS\ Windows\ PE\ Intel*) win32_libid_type="x86 DLL" ;; esac ;; esac $ECHO "$win32_libid_type" } # func_cygming_dll_for_implib ARG # # Platform-specific function to extract the # name of the DLL associated with the specified # import library ARG. # Invoked by eval'ing the libtool variable # $sharedlib_from_linklib_cmd # Result is available in the variable # $sharedlib_from_linklib_result func_cygming_dll_for_implib () { $opt_debug sharedlib_from_linklib_result=`$DLLTOOL --identify-strict --identify "$1"` } # func_cygming_dll_for_implib_fallback_core SECTION_NAME LIBNAMEs # # The is the core of a fallback implementation of a # platform-specific function to extract the name of the # DLL associated with the specified import library LIBNAME. # # SECTION_NAME is either .idata$6 or .idata$7, depending # on the platform and compiler that created the implib. # # Echos the name of the DLL associated with the # specified import library. func_cygming_dll_for_implib_fallback_core () { $opt_debug match_literal=`$ECHO "$1" | $SED "$sed_make_literal_regex"` $OBJDUMP -s --section "$1" "$2" 2>/dev/null | $SED '/^Contents of section '"$match_literal"':/{ # Place marker at beginning of archive member dllname section s/.*/====MARK====/ p d } # These lines can sometimes be longer than 43 characters, but # are always uninteresting /:[ ]*file format pe[i]\{,1\}-/d /^In archive [^:]*:/d # Ensure marker is printed /^====MARK====/p # Remove all lines with less than 43 characters /^.\{43\}/!d # From remaining lines, remove first 43 characters s/^.\{43\}//' | $SED -n ' # Join marker and all lines until next marker into a single line /^====MARK====/ b para H $ b para b :para x s/\n//g # Remove the marker s/^====MARK====// # Remove trailing dots and whitespace s/[\. \t]*$// # Print /./p' | # we now have a list, one entry per line, of the stringified # contents of the appropriate section of all members of the # archive which possess that section. Heuristic: eliminate # all those which have a first or second character that is # a '.' (that is, objdump's representation of an unprintable # character.) This should work for all archives with less than # 0x302f exports -- but will fail for DLLs whose name actually # begins with a literal '.' or a single character followed by # a '.'. # # Of those that remain, print the first one. $SED -e '/^\./d;/^.\./d;q' } # func_cygming_gnu_implib_p ARG # This predicate returns with zero status (TRUE) if # ARG is a GNU/binutils-style import library. Returns # with nonzero status (FALSE) otherwise. func_cygming_gnu_implib_p () { $opt_debug func_to_tool_file "$1" func_convert_file_msys_to_w32 func_cygming_gnu_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $EGREP ' (_head_[A-Za-z0-9_]+_[ad]l*|[A-Za-z0-9_]+_[ad]l*_iname)$'` test -n "$func_cygming_gnu_implib_tmp" } # func_cygming_ms_implib_p ARG # This predicate returns with zero status (TRUE) if # ARG is an MS-style import library. Returns # with nonzero status (FALSE) otherwise. func_cygming_ms_implib_p () { $opt_debug func_to_tool_file "$1" func_convert_file_msys_to_w32 func_cygming_ms_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $GREP '_NULL_IMPORT_DESCRIPTOR'` test -n "$func_cygming_ms_implib_tmp" } # func_cygming_dll_for_implib_fallback ARG # Platform-specific function to extract the # name of the DLL associated with the specified # import library ARG. # # This fallback implementation is for use when $DLLTOOL # does not support the --identify-strict option. # Invoked by eval'ing the libtool variable # $sharedlib_from_linklib_cmd # Result is available in the variable # $sharedlib_from_linklib_result func_cygming_dll_for_implib_fallback () { $opt_debug if func_cygming_gnu_implib_p "$1" ; then # binutils import library sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$7' "$1"` elif func_cygming_ms_implib_p "$1" ; then # ms-generated import library sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$6' "$1"` else # unknown sharedlib_from_linklib_result="" fi } # func_extract_an_archive dir oldlib func_extract_an_archive () { $opt_debug f_ex_an_ar_dir="$1"; shift f_ex_an_ar_oldlib="$1" if test "$lock_old_archive_extraction" = yes; then lockfile=$f_ex_an_ar_oldlib.lock until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do func_echo "Waiting for $lockfile to be removed" sleep 2 done fi func_show_eval "(cd \$f_ex_an_ar_dir && $AR x \"\$f_ex_an_ar_oldlib\")" \ 'stat=$?; rm -f "$lockfile"; exit $stat' if test "$lock_old_archive_extraction" = yes; then $opt_dry_run || rm -f "$lockfile" fi if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then : else func_fatal_error "object name conflicts in archive: $f_ex_an_ar_dir/$f_ex_an_ar_oldlib" fi } # func_extract_archives gentop oldlib ... func_extract_archives () { $opt_debug my_gentop="$1"; shift my_oldlibs=${1+"$@"} my_oldobjs="" my_xlib="" my_xabs="" my_xdir="" for my_xlib in $my_oldlibs; do # Extract the objects. case $my_xlib in [\\/]* | [A-Za-z]:[\\/]*) my_xabs="$my_xlib" ;; *) my_xabs=`pwd`"/$my_xlib" ;; esac func_basename "$my_xlib" my_xlib="$func_basename_result" my_xlib_u=$my_xlib while :; do case " $extracted_archives " in *" $my_xlib_u "*) func_arith $extracted_serial + 1 extracted_serial=$func_arith_result my_xlib_u=lt$extracted_serial-$my_xlib ;; *) break ;; esac done extracted_archives="$extracted_archives $my_xlib_u" my_xdir="$my_gentop/$my_xlib_u" func_mkdir_p "$my_xdir" case $host in *-darwin*) func_verbose "Extracting $my_xabs" # Do not bother doing anything if just a dry run $opt_dry_run || { darwin_orig_dir=`pwd` cd $my_xdir || exit $? darwin_archive=$my_xabs darwin_curdir=`pwd` darwin_base_archive=`basename "$darwin_archive"` darwin_arches=`$LIPO -info "$darwin_archive" 2>/dev/null | $GREP Architectures 2>/dev/null || true` if test -n "$darwin_arches"; then darwin_arches=`$ECHO "$darwin_arches" | $SED -e 's/.*are://'` darwin_arch= func_verbose "$darwin_base_archive has multiple architectures $darwin_arches" for darwin_arch in $darwin_arches ; do func_mkdir_p "unfat-$$/${darwin_base_archive}-${darwin_arch}" $LIPO -thin $darwin_arch -output "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" "${darwin_archive}" cd "unfat-$$/${darwin_base_archive}-${darwin_arch}" func_extract_an_archive "`pwd`" "${darwin_base_archive}" cd "$darwin_curdir" $RM "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" done # $darwin_arches ## Okay now we've a bunch of thin objects, gotta fatten them up :) darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print | $SED -e "$basename" | sort -u` darwin_file= darwin_files= for darwin_file in $darwin_filelist; do darwin_files=`find unfat-$$ -name $darwin_file -print | sort | $NL2SP` $LIPO -create -output "$darwin_file" $darwin_files done # $darwin_filelist $RM -rf unfat-$$ cd "$darwin_orig_dir" else cd $darwin_orig_dir func_extract_an_archive "$my_xdir" "$my_xabs" fi # $darwin_arches } # !$opt_dry_run ;; *) func_extract_an_archive "$my_xdir" "$my_xabs" ;; esac my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | sort | $NL2SP` done func_extract_archives_result="$my_oldobjs" } # func_emit_wrapper [arg=no] # # Emit a libtool wrapper script on stdout. # Don't directly open a file because we may want to # incorporate the script contents within a cygwin/mingw # wrapper executable. Must ONLY be called from within # func_mode_link because it depends on a number of variables # set therein. # # ARG is the value that the WRAPPER_SCRIPT_BELONGS_IN_OBJDIR # variable will take. If 'yes', then the emitted script # will assume that the directory in which it is stored is # the $objdir directory. This is a cygwin/mingw-specific # behavior. func_emit_wrapper () { func_emit_wrapper_arg1=${1-no} $ECHO "\ #! $SHELL # $output - temporary wrapper script for $objdir/$outputname # Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION # # The $output program cannot be directly executed until all the libtool # libraries that it depends on are installed. # # This wrapper script should never be moved out of the build directory. # If it is, it will not operate correctly. # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. sed_quote_subst='$sed_quote_subst' # Be Bourne compatible if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs 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 BIN_SH=xpg4; export BIN_SH # for Tru64 DUALCASE=1; export DUALCASE # for MKS sh # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH relink_command=\"$relink_command\" # This environment variable determines our operation mode. if test \"\$libtool_install_magic\" = \"$magic\"; then # install mode needs the following variables: generated_by_libtool_version='$macro_version' notinst_deplibs='$notinst_deplibs' else # When we are sourced in execute mode, \$file and \$ECHO are already set. if test \"\$libtool_execute_magic\" != \"$magic\"; then file=\"\$0\"" qECHO=`$ECHO "$ECHO" | $SED "$sed_quote_subst"` $ECHO "\ # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF \$1 _LTECHO_EOF' } ECHO=\"$qECHO\" fi # Very basic option parsing. These options are (a) specific to # the libtool wrapper, (b) are identical between the wrapper # /script/ and the wrapper /executable/ which is used only on # windows platforms, and (c) all begin with the string "--lt-" # (application programs are unlikely to have options which match # this pattern). # # There are only two supported options: --lt-debug and # --lt-dump-script. There is, deliberately, no --lt-help. # # The first argument to this parsing function should be the # script's $0 value, followed by "$@". lt_option_debug= func_parse_lt_options () { lt_script_arg0=\$0 shift for lt_opt do case \"\$lt_opt\" in --lt-debug) lt_option_debug=1 ;; --lt-dump-script) lt_dump_D=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%/[^/]*$%%'\` test \"X\$lt_dump_D\" = \"X\$lt_script_arg0\" && lt_dump_D=. lt_dump_F=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%^.*/%%'\` cat \"\$lt_dump_D/\$lt_dump_F\" exit 0 ;; --lt-*) \$ECHO \"Unrecognized --lt- option: '\$lt_opt'\" 1>&2 exit 1 ;; esac done # Print the debug banner immediately: if test -n \"\$lt_option_debug\"; then echo \"${outputname}:${output}:\${LINENO}: libtool wrapper (GNU $PACKAGE$TIMESTAMP) $VERSION\" 1>&2 fi } # Used when --lt-debug. Prints its arguments to stdout # (redirection is the responsibility of the caller) func_lt_dump_args () { lt_dump_args_N=1; for lt_arg do \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[\$lt_dump_args_N]: \$lt_arg\" lt_dump_args_N=\`expr \$lt_dump_args_N + 1\` done } # Core function for launching the target application func_exec_program_core () { " case $host in # Backslashes separate directories on plain windows *-*-mingw | *-*-os2* | *-cegcc*) $ECHO "\ if test -n \"\$lt_option_debug\"; then \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[0]: \$progdir\\\\\$program\" 1>&2 func_lt_dump_args \${1+\"\$@\"} 1>&2 fi exec \"\$progdir\\\\\$program\" \${1+\"\$@\"} " ;; *) $ECHO "\ if test -n \"\$lt_option_debug\"; then \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[0]: \$progdir/\$program\" 1>&2 func_lt_dump_args \${1+\"\$@\"} 1>&2 fi exec \"\$progdir/\$program\" \${1+\"\$@\"} " ;; esac $ECHO "\ \$ECHO \"\$0: cannot exec \$program \$*\" 1>&2 exit 1 } # A function to encapsulate launching the target application # Strips options in the --lt-* namespace from \$@ and # launches target application with the remaining arguments. func_exec_program () { case \" \$* \" in *\\ --lt-*) for lt_wr_arg do case \$lt_wr_arg in --lt-*) ;; *) set x \"\$@\" \"\$lt_wr_arg\"; shift;; esac shift done ;; esac func_exec_program_core \${1+\"\$@\"} } # Parse options func_parse_lt_options \"\$0\" \${1+\"\$@\"} # Find the directory that this script lives in. thisdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*$%%'\` test \"x\$thisdir\" = \"x\$file\" && thisdir=. # Follow symbolic links until we get to the real thisdir. file=\`ls -ld \"\$file\" | $SED -n 's/.*-> //p'\` while test -n \"\$file\"; do destdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*\$%%'\` # If there was a directory component, then change thisdir. if test \"x\$destdir\" != \"x\$file\"; then case \"\$destdir\" in [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;; *) thisdir=\"\$thisdir/\$destdir\" ;; esac fi file=\`\$ECHO \"\$file\" | $SED 's%^.*/%%'\` file=\`ls -ld \"\$thisdir/\$file\" | $SED -n 's/.*-> //p'\` done # Usually 'no', except on cygwin/mingw when embedded into # the cwrapper. WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=$func_emit_wrapper_arg1 if test \"\$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR\" = \"yes\"; then # special case for '.' if test \"\$thisdir\" = \".\"; then thisdir=\`pwd\` fi # remove .libs from thisdir case \"\$thisdir\" in *[\\\\/]$objdir ) thisdir=\`\$ECHO \"\$thisdir\" | $SED 's%[\\\\/][^\\\\/]*$%%'\` ;; $objdir ) thisdir=. ;; esac fi # Try to get the absolute directory name. absdir=\`cd \"\$thisdir\" && pwd\` test -n \"\$absdir\" && thisdir=\"\$absdir\" " if test "$fast_install" = yes; then $ECHO "\ program=lt-'$outputname'$exeext progdir=\"\$thisdir/$objdir\" if test ! -f \"\$progdir/\$program\" || { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | ${SED} 1q\`; \\ test \"X\$file\" != \"X\$progdir/\$program\"; }; then file=\"\$\$-\$program\" if test ! -d \"\$progdir\"; then $MKDIR \"\$progdir\" else $RM \"\$progdir/\$file\" fi" $ECHO "\ # relink executable if necessary if test -n \"\$relink_command\"; then if relink_command_output=\`eval \$relink_command 2>&1\`; then : else $ECHO \"\$relink_command_output\" >&2 $RM \"\$progdir/\$file\" exit 1 fi fi $MV \"\$progdir/\$file\" \"\$progdir/\$program\" 2>/dev/null || { $RM \"\$progdir/\$program\"; $MV \"\$progdir/\$file\" \"\$progdir/\$program\"; } $RM \"\$progdir/\$file\" fi" else $ECHO "\ program='$outputname' progdir=\"\$thisdir/$objdir\" " fi $ECHO "\ if test -f \"\$progdir/\$program\"; then" # fixup the dll searchpath if we need to. # # Fix the DLL searchpath if we need to. Do this before prepending # to shlibpath, because on Windows, both are PATH and uninstalled # libraries must come first. if test -n "$dllsearchpath"; then $ECHO "\ # Add the dll search path components to the executable PATH PATH=$dllsearchpath:\$PATH " fi # Export our shlibpath_var if we have one. if test "$shlibpath_overrides_runpath" = yes && test -n "$shlibpath_var" && test -n "$temp_rpath"; then $ECHO "\ # Add our own library path to $shlibpath_var $shlibpath_var=\"$temp_rpath\$$shlibpath_var\" # Some systems cannot cope with colon-terminated $shlibpath_var # The second colon is a workaround for a bug in BeOS R4 sed $shlibpath_var=\`\$ECHO \"\$$shlibpath_var\" | $SED 's/::*\$//'\` export $shlibpath_var " fi $ECHO "\ if test \"\$libtool_execute_magic\" != \"$magic\"; then # Run the actual program with our arguments. func_exec_program \${1+\"\$@\"} fi else # The program doesn't exist. \$ECHO \"\$0: error: \\\`\$progdir/\$program' does not exist\" 1>&2 \$ECHO \"This script is just a wrapper for \$program.\" 1>&2 \$ECHO \"See the $PACKAGE documentation for more information.\" 1>&2 exit 1 fi fi\ " } # func_emit_cwrapperexe_src # emit the source code for a wrapper executable on stdout # Must ONLY be called from within func_mode_link because # it depends on a number of variable set therein. func_emit_cwrapperexe_src () { cat < #include #ifdef _MSC_VER # include # include # include #else # include # include # ifdef __CYGWIN__ # include # endif #endif #include #include #include #include #include #include #include #include /* declarations of non-ANSI functions */ #if defined(__MINGW32__) # ifdef __STRICT_ANSI__ int _putenv (const char *); # endif #elif defined(__CYGWIN__) # ifdef __STRICT_ANSI__ char *realpath (const char *, char *); int putenv (char *); int setenv (const char *, const char *, int); # endif /* #elif defined (other platforms) ... */ #endif /* portability defines, excluding path handling macros */ #if defined(_MSC_VER) # define setmode _setmode # define stat _stat # define chmod _chmod # define getcwd _getcwd # define putenv _putenv # define S_IXUSR _S_IEXEC # ifndef _INTPTR_T_DEFINED # define _INTPTR_T_DEFINED # define intptr_t int # endif #elif defined(__MINGW32__) # define setmode _setmode # define stat _stat # define chmod _chmod # define getcwd _getcwd # define putenv _putenv #elif defined(__CYGWIN__) # define HAVE_SETENV # define FOPEN_WB "wb" /* #elif defined (other platforms) ... */ #endif #if defined(PATH_MAX) # define LT_PATHMAX PATH_MAX #elif defined(MAXPATHLEN) # define LT_PATHMAX MAXPATHLEN #else # define LT_PATHMAX 1024 #endif #ifndef S_IXOTH # define S_IXOTH 0 #endif #ifndef S_IXGRP # define S_IXGRP 0 #endif /* path handling portability macros */ #ifndef DIR_SEPARATOR # define DIR_SEPARATOR '/' # define PATH_SEPARATOR ':' #endif #if defined (_WIN32) || defined (__MSDOS__) || defined (__DJGPP__) || \ defined (__OS2__) # define HAVE_DOS_BASED_FILE_SYSTEM # define FOPEN_WB "wb" # ifndef DIR_SEPARATOR_2 # define DIR_SEPARATOR_2 '\\' # endif # ifndef PATH_SEPARATOR_2 # define PATH_SEPARATOR_2 ';' # endif #endif #ifndef DIR_SEPARATOR_2 # define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR) #else /* DIR_SEPARATOR_2 */ # define IS_DIR_SEPARATOR(ch) \ (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2)) #endif /* DIR_SEPARATOR_2 */ #ifndef PATH_SEPARATOR_2 # define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR) #else /* PATH_SEPARATOR_2 */ # define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR_2) #endif /* PATH_SEPARATOR_2 */ #ifndef FOPEN_WB # define FOPEN_WB "w" #endif #ifndef _O_BINARY # define _O_BINARY 0 #endif #define XMALLOC(type, num) ((type *) xmalloc ((num) * sizeof(type))) #define XFREE(stale) do { \ if (stale) { free ((void *) stale); stale = 0; } \ } while (0) #if defined(LT_DEBUGWRAPPER) static int lt_debug = 1; #else static int lt_debug = 0; #endif const char *program_name = "libtool-wrapper"; /* in case xstrdup fails */ void *xmalloc (size_t num); char *xstrdup (const char *string); const char *base_name (const char *name); char *find_executable (const char *wrapper); char *chase_symlinks (const char *pathspec); int make_executable (const char *path); int check_executable (const char *path); char *strendzap (char *str, const char *pat); void lt_debugprintf (const char *file, int line, const char *fmt, ...); void lt_fatal (const char *file, int line, const char *message, ...); static const char *nonnull (const char *s); static const char *nonempty (const char *s); void lt_setenv (const char *name, const char *value); char *lt_extend_str (const char *orig_value, const char *add, int to_end); void lt_update_exe_path (const char *name, const char *value); void lt_update_lib_path (const char *name, const char *value); char **prepare_spawn (char **argv); void lt_dump_script (FILE *f); EOF cat <= 0) && (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH))) return 1; else return 0; } int make_executable (const char *path) { int rval = 0; struct stat st; lt_debugprintf (__FILE__, __LINE__, "(make_executable): %s\n", nonempty (path)); if ((!path) || (!*path)) return 0; if (stat (path, &st) >= 0) { rval = chmod (path, st.st_mode | S_IXOTH | S_IXGRP | S_IXUSR); } return rval; } /* Searches for the full path of the wrapper. Returns newly allocated full path name if found, NULL otherwise Does not chase symlinks, even on platforms that support them. */ char * find_executable (const char *wrapper) { int has_slash = 0; const char *p; const char *p_next; /* static buffer for getcwd */ char tmp[LT_PATHMAX + 1]; int tmp_len; char *concat_name; lt_debugprintf (__FILE__, __LINE__, "(find_executable): %s\n", nonempty (wrapper)); if ((wrapper == NULL) || (*wrapper == '\0')) return NULL; /* Absolute path? */ #if defined (HAVE_DOS_BASED_FILE_SYSTEM) if (isalpha ((unsigned char) wrapper[0]) && wrapper[1] == ':') { concat_name = xstrdup (wrapper); if (check_executable (concat_name)) return concat_name; XFREE (concat_name); } else { #endif if (IS_DIR_SEPARATOR (wrapper[0])) { concat_name = xstrdup (wrapper); if (check_executable (concat_name)) return concat_name; XFREE (concat_name); } #if defined (HAVE_DOS_BASED_FILE_SYSTEM) } #endif for (p = wrapper; *p; p++) if (*p == '/') { has_slash = 1; break; } if (!has_slash) { /* no slashes; search PATH */ const char *path = getenv ("PATH"); if (path != NULL) { for (p = path; *p; p = p_next) { const char *q; size_t p_len; for (q = p; *q; q++) if (IS_PATH_SEPARATOR (*q)) break; p_len = q - p; p_next = (*q == '\0' ? q : q + 1); if (p_len == 0) { /* empty path: current directory */ if (getcwd (tmp, LT_PATHMAX) == NULL) lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", nonnull (strerror (errno))); tmp_len = strlen (tmp); concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); memcpy (concat_name, tmp, tmp_len); concat_name[tmp_len] = '/'; strcpy (concat_name + tmp_len + 1, wrapper); } else { concat_name = XMALLOC (char, p_len + 1 + strlen (wrapper) + 1); memcpy (concat_name, p, p_len); concat_name[p_len] = '/'; strcpy (concat_name + p_len + 1, wrapper); } if (check_executable (concat_name)) return concat_name; XFREE (concat_name); } } /* not found in PATH; assume curdir */ } /* Relative path | not found in path: prepend cwd */ if (getcwd (tmp, LT_PATHMAX) == NULL) lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", nonnull (strerror (errno))); tmp_len = strlen (tmp); concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); memcpy (concat_name, tmp, tmp_len); concat_name[tmp_len] = '/'; strcpy (concat_name + tmp_len + 1, wrapper); if (check_executable (concat_name)) return concat_name; XFREE (concat_name); return NULL; } char * chase_symlinks (const char *pathspec) { #ifndef S_ISLNK return xstrdup (pathspec); #else char buf[LT_PATHMAX]; struct stat s; char *tmp_pathspec = xstrdup (pathspec); char *p; int has_symlinks = 0; while (strlen (tmp_pathspec) && !has_symlinks) { lt_debugprintf (__FILE__, __LINE__, "checking path component for symlinks: %s\n", tmp_pathspec); if (lstat (tmp_pathspec, &s) == 0) { if (S_ISLNK (s.st_mode) != 0) { has_symlinks = 1; break; } /* search backwards for last DIR_SEPARATOR */ p = tmp_pathspec + strlen (tmp_pathspec) - 1; while ((p > tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) p--; if ((p == tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) { /* no more DIR_SEPARATORS left */ break; } *p = '\0'; } else { lt_fatal (__FILE__, __LINE__, "error accessing file \"%s\": %s", tmp_pathspec, nonnull (strerror (errno))); } } XFREE (tmp_pathspec); if (!has_symlinks) { return xstrdup (pathspec); } tmp_pathspec = realpath (pathspec, buf); if (tmp_pathspec == 0) { lt_fatal (__FILE__, __LINE__, "could not follow symlinks for %s", pathspec); } return xstrdup (tmp_pathspec); #endif } char * strendzap (char *str, const char *pat) { size_t len, patlen; assert (str != NULL); assert (pat != NULL); len = strlen (str); patlen = strlen (pat); if (patlen <= len) { str += len - patlen; if (strcmp (str, pat) == 0) *str = '\0'; } return str; } void lt_debugprintf (const char *file, int line, const char *fmt, ...) { va_list args; if (lt_debug) { (void) fprintf (stderr, "%s:%s:%d: ", program_name, file, line); va_start (args, fmt); (void) vfprintf (stderr, fmt, args); va_end (args); } } static void lt_error_core (int exit_status, const char *file, int line, const char *mode, const char *message, va_list ap) { fprintf (stderr, "%s:%s:%d: %s: ", program_name, file, line, mode); vfprintf (stderr, message, ap); fprintf (stderr, ".\n"); if (exit_status >= 0) exit (exit_status); } void lt_fatal (const char *file, int line, const char *message, ...) { va_list ap; va_start (ap, message); lt_error_core (EXIT_FAILURE, file, line, "FATAL", message, ap); va_end (ap); } static const char * nonnull (const char *s) { return s ? s : "(null)"; } static const char * nonempty (const char *s) { return (s && !*s) ? "(empty)" : nonnull (s); } void lt_setenv (const char *name, const char *value) { lt_debugprintf (__FILE__, __LINE__, "(lt_setenv) setting '%s' to '%s'\n", nonnull (name), nonnull (value)); { #ifdef HAVE_SETENV /* always make a copy, for consistency with !HAVE_SETENV */ char *str = xstrdup (value); setenv (name, str, 1); #else int len = strlen (name) + 1 + strlen (value) + 1; char *str = XMALLOC (char, len); sprintf (str, "%s=%s", name, value); if (putenv (str) != EXIT_SUCCESS) { XFREE (str); } #endif } } char * lt_extend_str (const char *orig_value, const char *add, int to_end) { char *new_value; if (orig_value && *orig_value) { int orig_value_len = strlen (orig_value); int add_len = strlen (add); new_value = XMALLOC (char, add_len + orig_value_len + 1); if (to_end) { strcpy (new_value, orig_value); strcpy (new_value + orig_value_len, add); } else { strcpy (new_value, add); strcpy (new_value + add_len, orig_value); } } else { new_value = xstrdup (add); } return new_value; } void lt_update_exe_path (const char *name, const char *value) { lt_debugprintf (__FILE__, __LINE__, "(lt_update_exe_path) modifying '%s' by prepending '%s'\n", nonnull (name), nonnull (value)); if (name && *name && value && *value) { char *new_value = lt_extend_str (getenv (name), value, 0); /* some systems can't cope with a ':'-terminated path #' */ int len = strlen (new_value); while (((len = strlen (new_value)) > 0) && IS_PATH_SEPARATOR (new_value[len-1])) { new_value[len-1] = '\0'; } lt_setenv (name, new_value); XFREE (new_value); } } void lt_update_lib_path (const char *name, const char *value) { lt_debugprintf (__FILE__, __LINE__, "(lt_update_lib_path) modifying '%s' by prepending '%s'\n", nonnull (name), nonnull (value)); if (name && *name && value && *value) { char *new_value = lt_extend_str (getenv (name), value, 0); lt_setenv (name, new_value); XFREE (new_value); } } EOF case $host_os in mingw*) cat <<"EOF" /* Prepares an argument vector before calling spawn(). Note that spawn() does not by itself call the command interpreter (getenv ("COMSPEC") != NULL ? getenv ("COMSPEC") : ({ OSVERSIONINFO v; v.dwOSVersionInfoSize = sizeof(OSVERSIONINFO); GetVersionEx(&v); v.dwPlatformId == VER_PLATFORM_WIN32_NT; }) ? "cmd.exe" : "command.com"). Instead it simply concatenates the arguments, separated by ' ', and calls CreateProcess(). We must quote the arguments since Win32 CreateProcess() interprets characters like ' ', '\t', '\\', '"' (but not '<' and '>') in a special way: - Space and tab are interpreted as delimiters. They are not treated as delimiters if they are surrounded by double quotes: "...". - Unescaped double quotes are removed from the input. Their only effect is that within double quotes, space and tab are treated like normal characters. - Backslashes not followed by double quotes are not special. - But 2*n+1 backslashes followed by a double quote become n backslashes followed by a double quote (n >= 0): \" -> " \\\" -> \" \\\\\" -> \\" */ #define SHELL_SPECIAL_CHARS "\"\\ \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" #define SHELL_SPACE_CHARS " \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" char ** prepare_spawn (char **argv) { size_t argc; char **new_argv; size_t i; /* Count number of arguments. */ for (argc = 0; argv[argc] != NULL; argc++) ; /* Allocate new argument vector. */ new_argv = XMALLOC (char *, argc + 1); /* Put quoted arguments into the new argument vector. */ for (i = 0; i < argc; i++) { const char *string = argv[i]; if (string[0] == '\0') new_argv[i] = xstrdup ("\"\""); else if (strpbrk (string, SHELL_SPECIAL_CHARS) != NULL) { int quote_around = (strpbrk (string, SHELL_SPACE_CHARS) != NULL); size_t length; unsigned int backslashes; const char *s; char *quoted_string; char *p; length = 0; backslashes = 0; if (quote_around) length++; for (s = string; *s != '\0'; s++) { char c = *s; if (c == '"') length += backslashes + 1; length++; if (c == '\\') backslashes++; else backslashes = 0; } if (quote_around) length += backslashes + 1; quoted_string = XMALLOC (char, length + 1); p = quoted_string; backslashes = 0; if (quote_around) *p++ = '"'; for (s = string; *s != '\0'; s++) { char c = *s; if (c == '"') { unsigned int j; for (j = backslashes + 1; j > 0; j--) *p++ = '\\'; } *p++ = c; if (c == '\\') backslashes++; else backslashes = 0; } if (quote_around) { unsigned int j; for (j = backslashes; j > 0; j--) *p++ = '\\'; *p++ = '"'; } *p = '\0'; new_argv[i] = quoted_string; } else new_argv[i] = (char *) string; } new_argv[argc] = NULL; return new_argv; } EOF ;; esac cat <<"EOF" void lt_dump_script (FILE* f) { EOF func_emit_wrapper yes | $SED -n -e ' s/^\(.\{79\}\)\(..*\)/\1\ \2/ h s/\([\\"]\)/\\\1/g s/$/\\n/ s/\([^\n]*\).*/ fputs ("\1", f);/p g D' cat <<"EOF" } EOF } # end: func_emit_cwrapperexe_src # func_win32_import_lib_p ARG # True if ARG is an import lib, as indicated by $file_magic_cmd func_win32_import_lib_p () { $opt_debug case `eval $file_magic_cmd \"\$1\" 2>/dev/null | $SED -e 10q` in *import*) : ;; *) false ;; esac } # func_mode_link arg... func_mode_link () { $opt_debug case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) # It is impossible to link a dll without this setting, and # we shouldn't force the makefile maintainer to figure out # which system we are compiling for in order to pass an extra # flag for every libtool invocation. # allow_undefined=no # FIXME: Unfortunately, there are problems with the above when trying # to make a dll which has undefined symbols, in which case not # even a static library is built. For now, we need to specify # -no-undefined on the libtool link line when we can be certain # that all symbols are satisfied, otherwise we get a static library. allow_undefined=yes ;; *) allow_undefined=yes ;; esac libtool_args=$nonopt base_compile="$nonopt $@" compile_command=$nonopt finalize_command=$nonopt compile_rpath= finalize_rpath= compile_shlibpath= finalize_shlibpath= convenience= old_convenience= deplibs= old_deplibs= compiler_flags= linker_flags= dllsearchpath= lib_search_path=`pwd` inst_prefix_dir= new_inherited_linker_flags= avoid_version=no bindir= dlfiles= dlprefiles= dlself=no export_dynamic=no export_symbols= export_symbols_regex= generated= libobjs= ltlibs= module=no no_install=no objs= non_pic_objects= precious_files_regex= prefer_static_libs=no preload=no prev= prevarg= release= rpath= xrpath= perm_rpath= temp_rpath= thread_safe=no vinfo= vinfo_number=no weak_libs= single_module="${wl}-single_module" func_infer_tag $base_compile # We need to know -static, to get the right output filenames. for arg do case $arg in -shared) test "$build_libtool_libs" != yes && \ func_fatal_configuration "can not build a shared library" build_old_libs=no break ;; -all-static | -static | -static-libtool-libs) case $arg in -all-static) if test "$build_libtool_libs" = yes && test -z "$link_static_flag"; then func_warning "complete static linking is impossible in this configuration" fi if test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=yes ;; -static) if test -z "$pic_flag" && test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=built ;; -static-libtool-libs) if test -z "$pic_flag" && test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=yes ;; esac build_libtool_libs=no build_old_libs=yes break ;; esac done # See if our shared archives depend on static archives. test -n "$old_archive_from_new_cmds" && build_old_libs=yes # Go through the arguments, transforming them on the way. while test "$#" -gt 0; do arg="$1" shift func_quote_for_eval "$arg" qarg=$func_quote_for_eval_unquoted_result func_append libtool_args " $func_quote_for_eval_result" # If the previous option needs an argument, assign it. if test -n "$prev"; then case $prev in output) func_append compile_command " @OUTPUT@" func_append finalize_command " @OUTPUT@" ;; esac case $prev in bindir) bindir="$arg" prev= continue ;; dlfiles|dlprefiles) if test "$preload" = no; then # Add the symbol object into the linking commands. func_append compile_command " @SYMFILE@" func_append finalize_command " @SYMFILE@" preload=yes fi case $arg in *.la | *.lo) ;; # We handle these cases below. force) if test "$dlself" = no; then dlself=needless export_dynamic=yes fi prev= continue ;; self) if test "$prev" = dlprefiles; then dlself=yes elif test "$prev" = dlfiles && test "$dlopen_self" != yes; then dlself=yes else dlself=needless export_dynamic=yes fi prev= continue ;; *) if test "$prev" = dlfiles; then func_append dlfiles " $arg" else func_append dlprefiles " $arg" fi prev= continue ;; esac ;; expsyms) export_symbols="$arg" test -f "$arg" \ || func_fatal_error "symbol file \`$arg' does not exist" prev= continue ;; expsyms_regex) export_symbols_regex="$arg" prev= continue ;; framework) case $host in *-*-darwin*) case "$deplibs " in *" $qarg.ltframework "*) ;; *) func_append deplibs " $qarg.ltframework" # this is fixed later ;; esac ;; esac prev= continue ;; inst_prefix) inst_prefix_dir="$arg" prev= continue ;; objectlist) if test -f "$arg"; then save_arg=$arg moreargs= for fil in `cat "$save_arg"` do # func_append moreargs " $fil" arg=$fil # A libtool-controlled object. # Check to see that this really is a libtool object. if func_lalib_unsafe_p "$arg"; then pic_object= non_pic_object= # Read the .lo file func_source "$arg" if test -z "$pic_object" || test -z "$non_pic_object" || test "$pic_object" = none && test "$non_pic_object" = none; then func_fatal_error "cannot find name of object for \`$arg'" fi # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir="$func_dirname_result" if test "$pic_object" != none; then # Prepend the subdirectory the object is found in. pic_object="$xdir$pic_object" if test "$prev" = dlfiles; then if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then func_append dlfiles " $pic_object" prev= continue else # If libtool objects are unsupported, then we need to preload. prev=dlprefiles fi fi # CHECK ME: I think I busted this. -Ossama if test "$prev" = dlprefiles; then # Preload the old-style object. func_append dlprefiles " $pic_object" prev= fi # A PIC object. func_append libobjs " $pic_object" arg="$pic_object" fi # Non-PIC object. if test "$non_pic_object" != none; then # Prepend the subdirectory the object is found in. non_pic_object="$xdir$non_pic_object" # A standard non-PIC object func_append non_pic_objects " $non_pic_object" if test -z "$pic_object" || test "$pic_object" = none ; then arg="$non_pic_object" fi else # If the PIC object exists, use it instead. # $xdir was prepended to $pic_object above. non_pic_object="$pic_object" func_append non_pic_objects " $non_pic_object" fi else # Only an error if not doing a dry-run. if $opt_dry_run; then # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir="$func_dirname_result" func_lo2o "$arg" pic_object=$xdir$objdir/$func_lo2o_result non_pic_object=$xdir$func_lo2o_result func_append libobjs " $pic_object" func_append non_pic_objects " $non_pic_object" else func_fatal_error "\`$arg' is not a valid libtool object" fi fi done else func_fatal_error "link input file \`$arg' does not exist" fi arg=$save_arg prev= continue ;; precious_regex) precious_files_regex="$arg" prev= continue ;; release) release="-$arg" prev= continue ;; rpath | xrpath) # We need an absolute path. case $arg in [\\/]* | [A-Za-z]:[\\/]*) ;; *) func_fatal_error "only absolute run-paths are allowed" ;; esac if test "$prev" = rpath; then case "$rpath " in *" $arg "*) ;; *) func_append rpath " $arg" ;; esac else case "$xrpath " in *" $arg "*) ;; *) func_append xrpath " $arg" ;; esac fi prev= continue ;; shrext) shrext_cmds="$arg" prev= continue ;; weak) func_append weak_libs " $arg" prev= continue ;; xcclinker) func_append linker_flags " $qarg" func_append compiler_flags " $qarg" prev= func_append compile_command " $qarg" func_append finalize_command " $qarg" continue ;; xcompiler) func_append compiler_flags " $qarg" prev= func_append compile_command " $qarg" func_append finalize_command " $qarg" continue ;; xlinker) func_append linker_flags " $qarg" func_append compiler_flags " $wl$qarg" prev= func_append compile_command " $wl$qarg" func_append finalize_command " $wl$qarg" continue ;; *) eval "$prev=\"\$arg\"" prev= continue ;; esac fi # test -n "$prev" prevarg="$arg" case $arg in -all-static) if test -n "$link_static_flag"; then # See comment for -static flag below, for more details. func_append compile_command " $link_static_flag" func_append finalize_command " $link_static_flag" fi continue ;; -allow-undefined) # FIXME: remove this flag sometime in the future. func_fatal_error "\`-allow-undefined' must not be used because it is the default" ;; -avoid-version) avoid_version=yes continue ;; -bindir) prev=bindir continue ;; -dlopen) prev=dlfiles continue ;; -dlpreopen) prev=dlprefiles continue ;; -export-dynamic) export_dynamic=yes continue ;; -export-symbols | -export-symbols-regex) if test -n "$export_symbols" || test -n "$export_symbols_regex"; then func_fatal_error "more than one -exported-symbols argument is not allowed" fi if test "X$arg" = "X-export-symbols"; then prev=expsyms else prev=expsyms_regex fi continue ;; -framework) prev=framework continue ;; -inst-prefix-dir) prev=inst_prefix continue ;; # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:* # so, if we see these flags be careful not to treat them like -L -L[A-Z][A-Z]*:*) case $with_gcc/$host in no/*-*-irix* | /*-*-irix*) func_append compile_command " $arg" func_append finalize_command " $arg" ;; esac continue ;; -L*) func_stripname "-L" '' "$arg" if test -z "$func_stripname_result"; then if test "$#" -gt 0; then func_fatal_error "require no space between \`-L' and \`$1'" else func_fatal_error "need path for \`-L' option" fi fi func_resolve_sysroot "$func_stripname_result" dir=$func_resolve_sysroot_result # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) ;; *) absdir=`cd "$dir" && pwd` test -z "$absdir" && \ func_fatal_error "cannot determine absolute directory name of \`$dir'" dir="$absdir" ;; esac case "$deplibs " in *" -L$dir "* | *" $arg "*) # Will only happen for absolute or sysroot arguments ;; *) # Preserve sysroot, but never include relative directories case $dir in [\\/]* | [A-Za-z]:[\\/]* | =*) func_append deplibs " $arg" ;; *) func_append deplibs " -L$dir" ;; esac func_append lib_search_path " $dir" ;; esac case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) testbindir=`$ECHO "$dir" | $SED 's*/lib$*/bin*'` case :$dllsearchpath: in *":$dir:"*) ;; ::) dllsearchpath=$dir;; *) func_append dllsearchpath ":$dir";; esac case :$dllsearchpath: in *":$testbindir:"*) ;; ::) dllsearchpath=$testbindir;; *) func_append dllsearchpath ":$testbindir";; esac ;; esac continue ;; -l*) if test "X$arg" = "X-lc" || test "X$arg" = "X-lm"; then case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos* | *-cegcc* | *-*-haiku*) # These systems don't actually have a C or math library (as such) continue ;; *-*-os2*) # These systems don't actually have a C library (as such) test "X$arg" = "X-lc" && continue ;; *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) # Do not include libc due to us having libc/libc_r. test "X$arg" = "X-lc" && continue ;; *-*-rhapsody* | *-*-darwin1.[012]) # Rhapsody C and math libraries are in the System framework func_append deplibs " System.ltframework" continue ;; *-*-sco3.2v5* | *-*-sco5v6*) # Causes problems with __ctype test "X$arg" = "X-lc" && continue ;; *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) # Compiler inserts libc in the correct place for threads to work test "X$arg" = "X-lc" && continue ;; esac elif test "X$arg" = "X-lc_r"; then case $host in *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) # Do not include libc_r directly, use -pthread flag. continue ;; esac fi func_append deplibs " $arg" continue ;; -module) module=yes continue ;; # Tru64 UNIX uses -model [arg] to determine the layout of C++ # classes, name mangling, and exception handling. # Darwin uses the -arch flag to determine output architecture. -model|-arch|-isysroot|--sysroot) func_append compiler_flags " $arg" func_append compile_command " $arg" func_append finalize_command " $arg" prev=xcompiler continue ;; -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) func_append compiler_flags " $arg" func_append compile_command " $arg" func_append finalize_command " $arg" case "$new_inherited_linker_flags " in *" $arg "*) ;; * ) func_append new_inherited_linker_flags " $arg" ;; esac continue ;; -multi_module) single_module="${wl}-multi_module" continue ;; -no-fast-install) fast_install=no continue ;; -no-install) case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-darwin* | *-cegcc*) # The PATH hackery in wrapper scripts is required on Windows # and Darwin in order for the loader to find any dlls it needs. func_warning "\`-no-install' is ignored for $host" func_warning "assuming \`-no-fast-install' instead" fast_install=no ;; *) no_install=yes ;; esac continue ;; -no-undefined) allow_undefined=no continue ;; -objectlist) prev=objectlist continue ;; -o) prev=output ;; -precious-files-regex) prev=precious_regex continue ;; -release) prev=release continue ;; -rpath) prev=rpath continue ;; -R) prev=xrpath continue ;; -R*) func_stripname '-R' '' "$arg" dir=$func_stripname_result # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) ;; =*) func_stripname '=' '' "$dir" dir=$lt_sysroot$func_stripname_result ;; *) func_fatal_error "only absolute run-paths are allowed" ;; esac case "$xrpath " in *" $dir "*) ;; *) func_append xrpath " $dir" ;; esac continue ;; -shared) # The effects of -shared are defined in a previous loop. continue ;; -shrext) prev=shrext continue ;; -static | -static-libtool-libs) # The effects of -static are defined in a previous loop. # We used to do the same as -all-static on platforms that # didn't have a PIC flag, but the assumption that the effects # would be equivalent was wrong. It would break on at least # Digital Unix and AIX. continue ;; -thread-safe) thread_safe=yes continue ;; -version-info) prev=vinfo continue ;; -version-number) prev=vinfo vinfo_number=yes continue ;; -weak) prev=weak continue ;; -Wc,*) func_stripname '-Wc,' '' "$arg" args=$func_stripname_result arg= save_ifs="$IFS"; IFS=',' for flag in $args; do IFS="$save_ifs" func_quote_for_eval "$flag" func_append arg " $func_quote_for_eval_result" func_append compiler_flags " $func_quote_for_eval_result" done IFS="$save_ifs" func_stripname ' ' '' "$arg" arg=$func_stripname_result ;; -Wl,*) func_stripname '-Wl,' '' "$arg" args=$func_stripname_result arg= save_ifs="$IFS"; IFS=',' for flag in $args; do IFS="$save_ifs" func_quote_for_eval "$flag" func_append arg " $wl$func_quote_for_eval_result" func_append compiler_flags " $wl$func_quote_for_eval_result" func_append linker_flags " $func_quote_for_eval_result" done IFS="$save_ifs" func_stripname ' ' '' "$arg" arg=$func_stripname_result ;; -Xcompiler) prev=xcompiler continue ;; -Xlinker) prev=xlinker continue ;; -XCClinker) prev=xcclinker continue ;; # -msg_* for osf cc -msg_*) func_quote_for_eval "$arg" arg="$func_quote_for_eval_result" ;; # Flags to be passed through unchanged, with rationale: # -64, -mips[0-9] enable 64-bit mode for the SGI compiler # -r[0-9][0-9]* specify processor for the SGI compiler # -xarch=*, -xtarget=* enable 64-bit mode for the Sun compiler # +DA*, +DD* enable 64-bit mode for the HP compiler # -q* compiler args for the IBM compiler # -m*, -t[45]*, -txscale* architecture-specific flags for GCC # -F/path path to uninstalled frameworks, gcc on darwin # -p, -pg, --coverage, -fprofile-* profiling flags for GCC # @file GCC response files # -tp=* Portland pgcc target processor selection # --sysroot=* for sysroot support # -O*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \ -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \ -O*|-flto*|-fwhopr*|-fuse-linker-plugin) func_quote_for_eval "$arg" arg="$func_quote_for_eval_result" func_append compile_command " $arg" func_append finalize_command " $arg" func_append compiler_flags " $arg" continue ;; # Some other compiler flag. -* | +*) func_quote_for_eval "$arg" arg="$func_quote_for_eval_result" ;; *.$objext) # A standard object. func_append objs " $arg" ;; *.lo) # A libtool-controlled object. # Check to see that this really is a libtool object. if func_lalib_unsafe_p "$arg"; then pic_object= non_pic_object= # Read the .lo file func_source "$arg" if test -z "$pic_object" || test -z "$non_pic_object" || test "$pic_object" = none && test "$non_pic_object" = none; then func_fatal_error "cannot find name of object for \`$arg'" fi # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir="$func_dirname_result" if test "$pic_object" != none; then # Prepend the subdirectory the object is found in. pic_object="$xdir$pic_object" if test "$prev" = dlfiles; then if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then func_append dlfiles " $pic_object" prev= continue else # If libtool objects are unsupported, then we need to preload. prev=dlprefiles fi fi # CHECK ME: I think I busted this. -Ossama if test "$prev" = dlprefiles; then # Preload the old-style object. func_append dlprefiles " $pic_object" prev= fi # A PIC object. func_append libobjs " $pic_object" arg="$pic_object" fi # Non-PIC object. if test "$non_pic_object" != none; then # Prepend the subdirectory the object is found in. non_pic_object="$xdir$non_pic_object" # A standard non-PIC object func_append non_pic_objects " $non_pic_object" if test -z "$pic_object" || test "$pic_object" = none ; then arg="$non_pic_object" fi else # If the PIC object exists, use it instead. # $xdir was prepended to $pic_object above. non_pic_object="$pic_object" func_append non_pic_objects " $non_pic_object" fi else # Only an error if not doing a dry-run. if $opt_dry_run; then # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir="$func_dirname_result" func_lo2o "$arg" pic_object=$xdir$objdir/$func_lo2o_result non_pic_object=$xdir$func_lo2o_result func_append libobjs " $pic_object" func_append non_pic_objects " $non_pic_object" else func_fatal_error "\`$arg' is not a valid libtool object" fi fi ;; *.$libext) # An archive. func_append deplibs " $arg" func_append old_deplibs " $arg" continue ;; *.la) # A libtool-controlled library. func_resolve_sysroot "$arg" if test "$prev" = dlfiles; then # This library was specified with -dlopen. func_append dlfiles " $func_resolve_sysroot_result" prev= elif test "$prev" = dlprefiles; then # The library was specified with -dlpreopen. func_append dlprefiles " $func_resolve_sysroot_result" prev= else func_append deplibs " $func_resolve_sysroot_result" fi continue ;; # Some other compiler argument. *) # Unknown arguments in both finalize_command and compile_command need # to be aesthetically quoted because they are evaled later. func_quote_for_eval "$arg" arg="$func_quote_for_eval_result" ;; esac # arg # Now actually substitute the argument into the commands. if test -n "$arg"; then func_append compile_command " $arg" func_append finalize_command " $arg" fi done # argument parsing loop test -n "$prev" && \ func_fatal_help "the \`$prevarg' option requires an argument" if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then eval arg=\"$export_dynamic_flag_spec\" func_append compile_command " $arg" func_append finalize_command " $arg" fi oldlibs= # calculate the name of the file, without its directory func_basename "$output" outputname="$func_basename_result" libobjs_save="$libobjs" if test -n "$shlibpath_var"; then # get the directories listed in $shlibpath_var eval shlib_search_path=\`\$ECHO \"\${$shlibpath_var}\" \| \$SED \'s/:/ /g\'\` else shlib_search_path= fi eval sys_lib_search_path=\"$sys_lib_search_path_spec\" eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\" func_dirname "$output" "/" "" output_objdir="$func_dirname_result$objdir" func_to_tool_file "$output_objdir/" tool_output_objdir=$func_to_tool_file_result # Create the object directory. func_mkdir_p "$output_objdir" # Determine the type of output case $output in "") func_fatal_help "you must specify an output file" ;; *.$libext) linkmode=oldlib ;; *.lo | *.$objext) linkmode=obj ;; *.la) linkmode=lib ;; *) linkmode=prog ;; # Anything else should be a program. esac specialdeplibs= libs= # Find all interdependent deplibs by searching for libraries # that are linked more than once (e.g. -la -lb -la) for deplib in $deplibs; do if $opt_preserve_dup_deps ; then case "$libs " in *" $deplib "*) func_append specialdeplibs " $deplib" ;; esac fi func_append libs " $deplib" done if test "$linkmode" = lib; then libs="$predeps $libs $compiler_lib_search_path $postdeps" # Compute libraries that are listed more than once in $predeps # $postdeps and mark them as special (i.e., whose duplicates are # not to be eliminated). pre_post_deps= if $opt_duplicate_compiler_generated_deps; then for pre_post_dep in $predeps $postdeps; do case "$pre_post_deps " in *" $pre_post_dep "*) func_append specialdeplibs " $pre_post_deps" ;; esac func_append pre_post_deps " $pre_post_dep" done fi pre_post_deps= fi deplibs= newdependency_libs= newlib_search_path= need_relink=no # whether we're linking any uninstalled libtool libraries notinst_deplibs= # not-installed libtool libraries notinst_path= # paths that contain not-installed libtool libraries case $linkmode in lib) passes="conv dlpreopen link" for file in $dlfiles $dlprefiles; do case $file in *.la) ;; *) func_fatal_help "libraries can \`-dlopen' only libtool libraries: $file" ;; esac done ;; prog) compile_deplibs= finalize_deplibs= alldeplibs=no newdlfiles= newdlprefiles= passes="conv scan dlopen dlpreopen link" ;; *) passes="conv" ;; esac for pass in $passes; do # The preopen pass in lib mode reverses $deplibs; put it back here # so that -L comes before libs that need it for instance... if test "$linkmode,$pass" = "lib,link"; then ## FIXME: Find the place where the list is rebuilt in the wrong ## order, and fix it there properly tmp_deplibs= for deplib in $deplibs; do tmp_deplibs="$deplib $tmp_deplibs" done deplibs="$tmp_deplibs" fi if test "$linkmode,$pass" = "lib,link" || test "$linkmode,$pass" = "prog,scan"; then libs="$deplibs" deplibs= fi if test "$linkmode" = prog; then case $pass in dlopen) libs="$dlfiles" ;; dlpreopen) libs="$dlprefiles" ;; link) libs="$deplibs %DEPLIBS%" test "X$link_all_deplibs" != Xno && libs="$libs $dependency_libs" ;; esac fi if test "$linkmode,$pass" = "lib,dlpreopen"; then # Collect and forward deplibs of preopened libtool libs for lib in $dlprefiles; do # Ignore non-libtool-libs dependency_libs= func_resolve_sysroot "$lib" case $lib in *.la) func_source "$func_resolve_sysroot_result" ;; esac # Collect preopened libtool deplibs, except any this library # has declared as weak libs for deplib in $dependency_libs; do func_basename "$deplib" deplib_base=$func_basename_result case " $weak_libs " in *" $deplib_base "*) ;; *) func_append deplibs " $deplib" ;; esac done done libs="$dlprefiles" fi if test "$pass" = dlopen; then # Collect dlpreopened libraries save_deplibs="$deplibs" deplibs= fi for deplib in $libs; do lib= found=no case $deplib in -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) if test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else func_append compiler_flags " $deplib" if test "$linkmode" = lib ; then case "$new_inherited_linker_flags " in *" $deplib "*) ;; * ) func_append new_inherited_linker_flags " $deplib" ;; esac fi fi continue ;; -l*) if test "$linkmode" != lib && test "$linkmode" != prog; then func_warning "\`-l' is ignored for archives/objects" continue fi func_stripname '-l' '' "$deplib" name=$func_stripname_result if test "$linkmode" = lib; then searchdirs="$newlib_search_path $lib_search_path $compiler_lib_search_dirs $sys_lib_search_path $shlib_search_path" else searchdirs="$newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path" fi for searchdir in $searchdirs; do for search_ext in .la $std_shrext .so .a; do # Search the libtool library lib="$searchdir/lib${name}${search_ext}" if test -f "$lib"; then if test "$search_ext" = ".la"; then found=yes else found=no fi break 2 fi done done if test "$found" != yes; then # deplib doesn't seem to be a libtool library if test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs" fi continue else # deplib is a libtool library # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib, # We need to do some special things here, and not later. if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then case " $predeps $postdeps " in *" $deplib "*) if func_lalib_p "$lib"; then library_names= old_library= func_source "$lib" for l in $old_library $library_names; do ll="$l" done if test "X$ll" = "X$old_library" ; then # only static version available found=no func_dirname "$lib" "" "." ladir="$func_dirname_result" lib=$ladir/$old_library if test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs" fi continue fi fi ;; *) ;; esac fi fi ;; # -l *.ltframework) if test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" if test "$linkmode" = lib ; then case "$new_inherited_linker_flags " in *" $deplib "*) ;; * ) func_append new_inherited_linker_flags " $deplib" ;; esac fi fi continue ;; -L*) case $linkmode in lib) deplibs="$deplib $deplibs" test "$pass" = conv && continue newdependency_libs="$deplib $newdependency_libs" func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result" func_append newlib_search_path " $func_resolve_sysroot_result" ;; prog) if test "$pass" = conv; then deplibs="$deplib $deplibs" continue fi if test "$pass" = scan; then deplibs="$deplib $deplibs" else compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" fi func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result" func_append newlib_search_path " $func_resolve_sysroot_result" ;; *) func_warning "\`-L' is ignored for archives/objects" ;; esac # linkmode continue ;; # -L -R*) if test "$pass" = link; then func_stripname '-R' '' "$deplib" func_resolve_sysroot "$func_stripname_result" dir=$func_resolve_sysroot_result # Make sure the xrpath contains only unique directories. case "$xrpath " in *" $dir "*) ;; *) func_append xrpath " $dir" ;; esac fi deplibs="$deplib $deplibs" continue ;; *.la) func_resolve_sysroot "$deplib" lib=$func_resolve_sysroot_result ;; *.$libext) if test "$pass" = conv; then deplibs="$deplib $deplibs" continue fi case $linkmode in lib) # Linking convenience modules into shared libraries is allowed, # but linking other static libraries is non-portable. case " $dlpreconveniencelibs " in *" $deplib "*) ;; *) valid_a_lib=no case $deplibs_check_method in match_pattern*) set dummy $deplibs_check_method; shift match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` if eval "\$ECHO \"$deplib\"" 2>/dev/null | $SED 10q \ | $EGREP "$match_pattern_regex" > /dev/null; then valid_a_lib=yes fi ;; pass_all) valid_a_lib=yes ;; esac if test "$valid_a_lib" != yes; then echo $ECHO "*** Warning: Trying to link with static lib archive $deplib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have" echo "*** because the file extensions .$libext of this argument makes me believe" echo "*** that it is just a static archive that I should not use here." else echo $ECHO "*** Warning: Linking the shared library $output against the" $ECHO "*** static library $deplib is not portable!" deplibs="$deplib $deplibs" fi ;; esac continue ;; prog) if test "$pass" != link; then deplibs="$deplib $deplibs" else compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" fi continue ;; esac # linkmode ;; # *.$libext *.lo | *.$objext) if test "$pass" = conv; then deplibs="$deplib $deplibs" elif test "$linkmode" = prog; then if test "$pass" = dlpreopen || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then # If there is no dlopen support or we're linking statically, # we need to preload. func_append newdlprefiles " $deplib" compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else func_append newdlfiles " $deplib" fi fi continue ;; %DEPLIBS%) alldeplibs=yes continue ;; esac # case $deplib if test "$found" = yes || test -f "$lib"; then : else func_fatal_error "cannot find the library \`$lib' or unhandled argument \`$deplib'" fi # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$lib" \ || func_fatal_error "\`$lib' is not a valid libtool archive" func_dirname "$lib" "" "." ladir="$func_dirname_result" dlname= dlopen= dlpreopen= libdir= library_names= old_library= inherited_linker_flags= # If the library was installed with an old release of libtool, # it will not redefine variables installed, or shouldnotlink installed=yes shouldnotlink=no avoidtemprpath= # Read the .la file func_source "$lib" # Convert "-framework foo" to "foo.ltframework" if test -n "$inherited_linker_flags"; then tmp_inherited_linker_flags=`$ECHO "$inherited_linker_flags" | $SED 's/-framework \([^ $]*\)/\1.ltframework/g'` for tmp_inherited_linker_flag in $tmp_inherited_linker_flags; do case " $new_inherited_linker_flags " in *" $tmp_inherited_linker_flag "*) ;; *) func_append new_inherited_linker_flags " $tmp_inherited_linker_flag";; esac done fi dependency_libs=`$ECHO " $dependency_libs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` if test "$linkmode,$pass" = "lib,link" || test "$linkmode,$pass" = "prog,scan" || { test "$linkmode" != prog && test "$linkmode" != lib; }; then test -n "$dlopen" && func_append dlfiles " $dlopen" test -n "$dlpreopen" && func_append dlprefiles " $dlpreopen" fi if test "$pass" = conv; then # Only check for convenience libraries deplibs="$lib $deplibs" if test -z "$libdir"; then if test -z "$old_library"; then func_fatal_error "cannot find name of link library for \`$lib'" fi # It is a libtool convenience library, so add in its objects. func_append convenience " $ladir/$objdir/$old_library" func_append old_convenience " $ladir/$objdir/$old_library" tmp_libs= for deplib in $dependency_libs; do deplibs="$deplib $deplibs" if $opt_preserve_dup_deps ; then case "$tmp_libs " in *" $deplib "*) func_append specialdeplibs " $deplib" ;; esac fi func_append tmp_libs " $deplib" done elif test "$linkmode" != prog && test "$linkmode" != lib; then func_fatal_error "\`$lib' is not a convenience library" fi continue fi # $pass = conv # Get the name of the library we link against. linklib= if test -n "$old_library" && { test "$prefer_static_libs" = yes || test "$prefer_static_libs,$installed" = "built,no"; }; then linklib=$old_library else for l in $old_library $library_names; do linklib="$l" done fi if test -z "$linklib"; then func_fatal_error "cannot find name of link library for \`$lib'" fi # This library was specified with -dlopen. if test "$pass" = dlopen; then if test -z "$libdir"; then func_fatal_error "cannot -dlopen a convenience library: \`$lib'" fi if test -z "$dlname" || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then # If there is no dlname, no dlopen support or we're linking # statically, we need to preload. We also need to preload any # dependent libraries so libltdl's deplib preloader doesn't # bomb out in the load deplibs phase. func_append dlprefiles " $lib $dependency_libs" else func_append newdlfiles " $lib" fi continue fi # $pass = dlopen # We need an absolute path. case $ladir in [\\/]* | [A-Za-z]:[\\/]*) abs_ladir="$ladir" ;; *) abs_ladir=`cd "$ladir" && pwd` if test -z "$abs_ladir"; then func_warning "cannot determine absolute directory name of \`$ladir'" func_warning "passing it literally to the linker, although it might fail" abs_ladir="$ladir" fi ;; esac func_basename "$lib" laname="$func_basename_result" # Find the relevant object directory and library name. if test "X$installed" = Xyes; then if test ! -f "$lt_sysroot$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then func_warning "library \`$lib' was moved." dir="$ladir" absdir="$abs_ladir" libdir="$abs_ladir" else dir="$lt_sysroot$libdir" absdir="$lt_sysroot$libdir" fi test "X$hardcode_automatic" = Xyes && avoidtemprpath=yes else if test ! -f "$ladir/$objdir/$linklib" && test -f "$abs_ladir/$linklib"; then dir="$ladir" absdir="$abs_ladir" # Remove this search path later func_append notinst_path " $abs_ladir" else dir="$ladir/$objdir" absdir="$abs_ladir/$objdir" # Remove this search path later func_append notinst_path " $abs_ladir" fi fi # $installed = yes func_stripname 'lib' '.la' "$laname" name=$func_stripname_result # This library was specified with -dlpreopen. if test "$pass" = dlpreopen; then if test -z "$libdir" && test "$linkmode" = prog; then func_fatal_error "only libraries may -dlpreopen a convenience library: \`$lib'" fi case "$host" in # special handling for platforms with PE-DLLs. *cygwin* | *mingw* | *cegcc* ) # Linker will automatically link against shared library if both # static and shared are present. Therefore, ensure we extract # symbols from the import library if a shared library is present # (otherwise, the dlopen module name will be incorrect). We do # this by putting the import library name into $newdlprefiles. # We recover the dlopen module name by 'saving' the la file # name in a special purpose variable, and (later) extracting the # dlname from the la file. if test -n "$dlname"; then func_tr_sh "$dir/$linklib" eval "libfile_$func_tr_sh_result=\$abs_ladir/\$laname" func_append newdlprefiles " $dir/$linklib" else func_append newdlprefiles " $dir/$old_library" # Keep a list of preopened convenience libraries to check # that they are being used correctly in the link pass. test -z "$libdir" && \ func_append dlpreconveniencelibs " $dir/$old_library" fi ;; * ) # Prefer using a static library (so that no silly _DYNAMIC symbols # are required to link). if test -n "$old_library"; then func_append newdlprefiles " $dir/$old_library" # Keep a list of preopened convenience libraries to check # that they are being used correctly in the link pass. test -z "$libdir" && \ func_append dlpreconveniencelibs " $dir/$old_library" # Otherwise, use the dlname, so that lt_dlopen finds it. elif test -n "$dlname"; then func_append newdlprefiles " $dir/$dlname" else func_append newdlprefiles " $dir/$linklib" fi ;; esac fi # $pass = dlpreopen if test -z "$libdir"; then # Link the convenience library if test "$linkmode" = lib; then deplibs="$dir/$old_library $deplibs" elif test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$dir/$old_library $compile_deplibs" finalize_deplibs="$dir/$old_library $finalize_deplibs" else deplibs="$lib $deplibs" # used for prog,scan pass fi continue fi if test "$linkmode" = prog && test "$pass" != link; then func_append newlib_search_path " $ladir" deplibs="$lib $deplibs" linkalldeplibs=no if test "$link_all_deplibs" != no || test -z "$library_names" || test "$build_libtool_libs" = no; then linkalldeplibs=yes fi tmp_libs= for deplib in $dependency_libs; do case $deplib in -L*) func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result" func_append newlib_search_path " $func_resolve_sysroot_result" ;; esac # Need to link against all dependency_libs? if test "$linkalldeplibs" = yes; then deplibs="$deplib $deplibs" else # Need to hardcode shared library paths # or/and link against static libraries newdependency_libs="$deplib $newdependency_libs" fi if $opt_preserve_dup_deps ; then case "$tmp_libs " in *" $deplib "*) func_append specialdeplibs " $deplib" ;; esac fi func_append tmp_libs " $deplib" done # for deplib continue fi # $linkmode = prog... if test "$linkmode,$pass" = "prog,link"; then if test -n "$library_names" && { { test "$prefer_static_libs" = no || test "$prefer_static_libs,$installed" = "built,yes"; } || test -z "$old_library"; }; then # We need to hardcode the library path if test -n "$shlibpath_var" && test -z "$avoidtemprpath" ; then # Make sure the rpath contains only unique directories. case "$temp_rpath:" in *"$absdir:"*) ;; *) func_append temp_rpath "$absdir:" ;; esac fi # Hardcode the library path. # Skip directories that are in the system default run-time # search path. case " $sys_lib_dlsearch_path " in *" $absdir "*) ;; *) case "$compile_rpath " in *" $absdir "*) ;; *) func_append compile_rpath " $absdir" ;; esac ;; esac case " $sys_lib_dlsearch_path " in *" $libdir "*) ;; *) case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac ;; esac fi # $linkmode,$pass = prog,link... if test "$alldeplibs" = yes && { test "$deplibs_check_method" = pass_all || { test "$build_libtool_libs" = yes && test -n "$library_names"; }; }; then # We only need to search for static libraries continue fi fi link_static=no # Whether the deplib will be linked statically use_static_libs=$prefer_static_libs if test "$use_static_libs" = built && test "$installed" = yes; then use_static_libs=no fi if test -n "$library_names" && { test "$use_static_libs" = no || test -z "$old_library"; }; then case $host in *cygwin* | *mingw* | *cegcc*) # No point in relinking DLLs because paths are not encoded func_append notinst_deplibs " $lib" need_relink=no ;; *) if test "$installed" = no; then func_append notinst_deplibs " $lib" need_relink=yes fi ;; esac # This is a shared library # Warn about portability, can't link against -module's on some # systems (darwin). Don't bleat about dlopened modules though! dlopenmodule="" for dlpremoduletest in $dlprefiles; do if test "X$dlpremoduletest" = "X$lib"; then dlopenmodule="$dlpremoduletest" break fi done if test -z "$dlopenmodule" && test "$shouldnotlink" = yes && test "$pass" = link; then echo if test "$linkmode" = prog; then $ECHO "*** Warning: Linking the executable $output against the loadable module" else $ECHO "*** Warning: Linking the shared library $output against the loadable module" fi $ECHO "*** $linklib is not portable!" fi if test "$linkmode" = lib && test "$hardcode_into_libs" = yes; then # Hardcode the library path. # Skip directories that are in the system default run-time # search path. case " $sys_lib_dlsearch_path " in *" $absdir "*) ;; *) case "$compile_rpath " in *" $absdir "*) ;; *) func_append compile_rpath " $absdir" ;; esac ;; esac case " $sys_lib_dlsearch_path " in *" $libdir "*) ;; *) case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac ;; esac fi if test -n "$old_archive_from_expsyms_cmds"; then # figure out the soname set dummy $library_names shift realname="$1" shift libname=`eval "\\$ECHO \"$libname_spec\""` # use dlname if we got it. it's perfectly good, no? if test -n "$dlname"; then soname="$dlname" elif test -n "$soname_spec"; then # bleh windows case $host in *cygwin* | mingw* | *cegcc*) func_arith $current - $age major=$func_arith_result versuffix="-$major" ;; esac eval soname=\"$soname_spec\" else soname="$realname" fi # Make a new name for the extract_expsyms_cmds to use soroot="$soname" func_basename "$soroot" soname="$func_basename_result" func_stripname 'lib' '.dll' "$soname" newlib=libimp-$func_stripname_result.a # If the library has no export list, then create one now if test -f "$output_objdir/$soname-def"; then : else func_verbose "extracting exported symbol list from \`$soname'" func_execute_cmds "$extract_expsyms_cmds" 'exit $?' fi # Create $newlib if test -f "$output_objdir/$newlib"; then :; else func_verbose "generating import library for \`$soname'" func_execute_cmds "$old_archive_from_expsyms_cmds" 'exit $?' fi # make sure the library variables are pointing to the new library dir=$output_objdir linklib=$newlib fi # test -n "$old_archive_from_expsyms_cmds" if test "$linkmode" = prog || test "$opt_mode" != relink; then add_shlibpath= add_dir= add= lib_linked=yes case $hardcode_action in immediate | unsupported) if test "$hardcode_direct" = no; then add="$dir/$linklib" case $host in *-*-sco3.2v5.0.[024]*) add_dir="-L$dir" ;; *-*-sysv4*uw2*) add_dir="-L$dir" ;; *-*-sysv5OpenUNIX* | *-*-sysv5UnixWare7.[01].[10]* | \ *-*-unixware7*) add_dir="-L$dir" ;; *-*-darwin* ) # if the lib is a (non-dlopened) module then we can not # link against it, someone is ignoring the earlier warnings if /usr/bin/file -L $add 2> /dev/null | $GREP ": [^:]* bundle" >/dev/null ; then if test "X$dlopenmodule" != "X$lib"; then $ECHO "*** Warning: lib $linklib is a module, not a shared library" if test -z "$old_library" ; then echo echo "*** And there doesn't seem to be a static archive available" echo "*** The link will probably fail, sorry" else add="$dir/$old_library" fi elif test -n "$old_library"; then add="$dir/$old_library" fi fi esac elif test "$hardcode_minus_L" = no; then case $host in *-*-sunos*) add_shlibpath="$dir" ;; esac add_dir="-L$dir" add="-l$name" elif test "$hardcode_shlibpath_var" = no; then add_shlibpath="$dir" add="-l$name" else lib_linked=no fi ;; relink) if test "$hardcode_direct" = yes && test "$hardcode_direct_absolute" = no; then add="$dir/$linklib" elif test "$hardcode_minus_L" = yes; then add_dir="-L$absdir" # Try looking first in the location we're being installed to. if test -n "$inst_prefix_dir"; then case $libdir in [\\/]*) func_append add_dir " -L$inst_prefix_dir$libdir" ;; esac fi add="-l$name" elif test "$hardcode_shlibpath_var" = yes; then add_shlibpath="$dir" add="-l$name" else lib_linked=no fi ;; *) lib_linked=no ;; esac if test "$lib_linked" != yes; then func_fatal_configuration "unsupported hardcode properties" fi if test -n "$add_shlibpath"; then case :$compile_shlibpath: in *":$add_shlibpath:"*) ;; *) func_append compile_shlibpath "$add_shlibpath:" ;; esac fi if test "$linkmode" = prog; then test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs" test -n "$add" && compile_deplibs="$add $compile_deplibs" else test -n "$add_dir" && deplibs="$add_dir $deplibs" test -n "$add" && deplibs="$add $deplibs" if test "$hardcode_direct" != yes && test "$hardcode_minus_L" != yes && test "$hardcode_shlibpath_var" = yes; then case :$finalize_shlibpath: in *":$libdir:"*) ;; *) func_append finalize_shlibpath "$libdir:" ;; esac fi fi fi if test "$linkmode" = prog || test "$opt_mode" = relink; then add_shlibpath= add_dir= add= # Finalize command for both is simple: just hardcode it. if test "$hardcode_direct" = yes && test "$hardcode_direct_absolute" = no; then add="$libdir/$linklib" elif test "$hardcode_minus_L" = yes; then add_dir="-L$libdir" add="-l$name" elif test "$hardcode_shlibpath_var" = yes; then case :$finalize_shlibpath: in *":$libdir:"*) ;; *) func_append finalize_shlibpath "$libdir:" ;; esac add="-l$name" elif test "$hardcode_automatic" = yes; then if test -n "$inst_prefix_dir" && test -f "$inst_prefix_dir$libdir/$linklib" ; then add="$inst_prefix_dir$libdir/$linklib" else add="$libdir/$linklib" fi else # We cannot seem to hardcode it, guess we'll fake it. add_dir="-L$libdir" # Try looking first in the location we're being installed to. if test -n "$inst_prefix_dir"; then case $libdir in [\\/]*) func_append add_dir " -L$inst_prefix_dir$libdir" ;; esac fi add="-l$name" fi if test "$linkmode" = prog; then test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs" test -n "$add" && finalize_deplibs="$add $finalize_deplibs" else test -n "$add_dir" && deplibs="$add_dir $deplibs" test -n "$add" && deplibs="$add $deplibs" fi fi elif test "$linkmode" = prog; then # Here we assume that one of hardcode_direct or hardcode_minus_L # is not unsupported. This is valid on all known static and # shared platforms. if test "$hardcode_direct" != unsupported; then test -n "$old_library" && linklib="$old_library" compile_deplibs="$dir/$linklib $compile_deplibs" finalize_deplibs="$dir/$linklib $finalize_deplibs" else compile_deplibs="-l$name -L$dir $compile_deplibs" finalize_deplibs="-l$name -L$dir $finalize_deplibs" fi elif test "$build_libtool_libs" = yes; then # Not a shared library if test "$deplibs_check_method" != pass_all; then # We're trying link a shared library against a static one # but the system doesn't support it. # Just print a warning and add the library to dependency_libs so # that the program can be linked against the static library. echo $ECHO "*** Warning: This system can not link to static lib archive $lib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have." if test "$module" = yes; then echo "*** But as you try to build a module library, libtool will still create " echo "*** a static module, that should work as long as the dlopening application" echo "*** is linked with the -dlopen flag to resolve symbols at runtime." if test -z "$global_symbol_pipe"; then echo echo "*** However, this would only work if libtool was able to extract symbol" echo "*** lists from a program, using \`nm' or equivalent, but libtool could" echo "*** not find such a program. So, this module is probably useless." echo "*** \`nm' from GNU binutils and a full rebuild may help." fi if test "$build_old_libs" = no; then build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi fi else deplibs="$dir/$old_library $deplibs" link_static=yes fi fi # link shared/static library? if test "$linkmode" = lib; then if test -n "$dependency_libs" && { test "$hardcode_into_libs" != yes || test "$build_old_libs" = yes || test "$link_static" = yes; }; then # Extract -R from dependency_libs temp_deplibs= for libdir in $dependency_libs; do case $libdir in -R*) func_stripname '-R' '' "$libdir" temp_xrpath=$func_stripname_result case " $xrpath " in *" $temp_xrpath "*) ;; *) func_append xrpath " $temp_xrpath";; esac;; *) func_append temp_deplibs " $libdir";; esac done dependency_libs="$temp_deplibs" fi func_append newlib_search_path " $absdir" # Link against this library test "$link_static" = no && newdependency_libs="$abs_ladir/$laname $newdependency_libs" # ... and its dependency_libs tmp_libs= for deplib in $dependency_libs; do newdependency_libs="$deplib $newdependency_libs" case $deplib in -L*) func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result";; *) func_resolve_sysroot "$deplib" ;; esac if $opt_preserve_dup_deps ; then case "$tmp_libs " in *" $func_resolve_sysroot_result "*) func_append specialdeplibs " $func_resolve_sysroot_result" ;; esac fi func_append tmp_libs " $func_resolve_sysroot_result" done if test "$link_all_deplibs" != no; then # Add the search paths of all dependency libraries for deplib in $dependency_libs; do path= case $deplib in -L*) path="$deplib" ;; *.la) func_resolve_sysroot "$deplib" deplib=$func_resolve_sysroot_result func_dirname "$deplib" "" "." dir=$func_dirname_result # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) absdir="$dir" ;; *) absdir=`cd "$dir" && pwd` if test -z "$absdir"; then func_warning "cannot determine absolute directory name of \`$dir'" absdir="$dir" fi ;; esac if $GREP "^installed=no" $deplib > /dev/null; then case $host in *-*-darwin*) depdepl= eval deplibrary_names=`${SED} -n -e 's/^library_names=\(.*\)$/\1/p' $deplib` if test -n "$deplibrary_names" ; then for tmp in $deplibrary_names ; do depdepl=$tmp done if test -f "$absdir/$objdir/$depdepl" ; then depdepl="$absdir/$objdir/$depdepl" darwin_install_name=`${OTOOL} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` if test -z "$darwin_install_name"; then darwin_install_name=`${OTOOL64} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` fi func_append compiler_flags " ${wl}-dylib_file ${wl}${darwin_install_name}:${depdepl}" func_append linker_flags " -dylib_file ${darwin_install_name}:${depdepl}" path= fi fi ;; *) path="-L$absdir/$objdir" ;; esac else eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` test -z "$libdir" && \ func_fatal_error "\`$deplib' is not a valid libtool archive" test "$absdir" != "$libdir" && \ func_warning "\`$deplib' seems to be moved" path="-L$absdir" fi ;; esac case " $deplibs " in *" $path "*) ;; *) deplibs="$path $deplibs" ;; esac done fi # link_all_deplibs != no fi # linkmode = lib done # for deplib in $libs if test "$pass" = link; then if test "$linkmode" = "prog"; then compile_deplibs="$new_inherited_linker_flags $compile_deplibs" finalize_deplibs="$new_inherited_linker_flags $finalize_deplibs" else compiler_flags="$compiler_flags "`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` fi fi dependency_libs="$newdependency_libs" if test "$pass" = dlpreopen; then # Link the dlpreopened libraries before other libraries for deplib in $save_deplibs; do deplibs="$deplib $deplibs" done fi if test "$pass" != dlopen; then if test "$pass" != conv; then # Make sure lib_search_path contains only unique directories. lib_search_path= for dir in $newlib_search_path; do case "$lib_search_path " in *" $dir "*) ;; *) func_append lib_search_path " $dir" ;; esac done newlib_search_path= fi if test "$linkmode,$pass" != "prog,link"; then vars="deplibs" else vars="compile_deplibs finalize_deplibs" fi for var in $vars dependency_libs; do # Add libraries to $var in reverse order eval tmp_libs=\"\$$var\" new_libs= for deplib in $tmp_libs; do # FIXME: Pedantically, this is the right thing to do, so # that some nasty dependency loop isn't accidentally # broken: #new_libs="$deplib $new_libs" # Pragmatically, this seems to cause very few problems in # practice: case $deplib in -L*) new_libs="$deplib $new_libs" ;; -R*) ;; *) # And here is the reason: when a library appears more # than once as an explicit dependence of a library, or # is implicitly linked in more than once by the # compiler, it is considered special, and multiple # occurrences thereof are not removed. Compare this # with having the same library being listed as a # dependency of multiple other libraries: in this case, # we know (pedantically, we assume) the library does not # need to be listed more than once, so we keep only the # last copy. This is not always right, but it is rare # enough that we require users that really mean to play # such unportable linking tricks to link the library # using -Wl,-lname, so that libtool does not consider it # for duplicate removal. case " $specialdeplibs " in *" $deplib "*) new_libs="$deplib $new_libs" ;; *) case " $new_libs " in *" $deplib "*) ;; *) new_libs="$deplib $new_libs" ;; esac ;; esac ;; esac done tmp_libs= for deplib in $new_libs; do case $deplib in -L*) case " $tmp_libs " in *" $deplib "*) ;; *) func_append tmp_libs " $deplib" ;; esac ;; *) func_append tmp_libs " $deplib" ;; esac done eval $var=\"$tmp_libs\" done # for var fi # Last step: remove runtime libs from dependency_libs # (they stay in deplibs) tmp_libs= for i in $dependency_libs ; do case " $predeps $postdeps $compiler_lib_search_path " in *" $i "*) i="" ;; esac if test -n "$i" ; then func_append tmp_libs " $i" fi done dependency_libs=$tmp_libs done # for pass if test "$linkmode" = prog; then dlfiles="$newdlfiles" fi if test "$linkmode" = prog || test "$linkmode" = lib; then dlprefiles="$newdlprefiles" fi case $linkmode in oldlib) if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then func_warning "\`-dlopen' is ignored for archives" fi case " $deplibs" in *\ -l* | *\ -L*) func_warning "\`-l' and \`-L' are ignored for archives" ;; esac test -n "$rpath" && \ func_warning "\`-rpath' is ignored for archives" test -n "$xrpath" && \ func_warning "\`-R' is ignored for archives" test -n "$vinfo" && \ func_warning "\`-version-info/-version-number' is ignored for archives" test -n "$release" && \ func_warning "\`-release' is ignored for archives" test -n "$export_symbols$export_symbols_regex" && \ func_warning "\`-export-symbols' is ignored for archives" # Now set the variables for building old libraries. build_libtool_libs=no oldlibs="$output" func_append objs "$old_deplibs" ;; lib) # Make sure we only generate libraries of the form `libNAME.la'. case $outputname in lib*) func_stripname 'lib' '.la' "$outputname" name=$func_stripname_result eval shared_ext=\"$shrext_cmds\" eval libname=\"$libname_spec\" ;; *) test "$module" = no && \ func_fatal_help "libtool library \`$output' must begin with \`lib'" if test "$need_lib_prefix" != no; then # Add the "lib" prefix for modules if required func_stripname '' '.la' "$outputname" name=$func_stripname_result eval shared_ext=\"$shrext_cmds\" eval libname=\"$libname_spec\" else func_stripname '' '.la' "$outputname" libname=$func_stripname_result fi ;; esac if test -n "$objs"; then if test "$deplibs_check_method" != pass_all; then func_fatal_error "cannot build libtool library \`$output' from non-libtool objects on this host:$objs" else echo $ECHO "*** Warning: Linking the shared library $output against the non-libtool" $ECHO "*** objects $objs is not portable!" func_append libobjs " $objs" fi fi test "$dlself" != no && \ func_warning "\`-dlopen self' is ignored for libtool libraries" set dummy $rpath shift test "$#" -gt 1 && \ func_warning "ignoring multiple \`-rpath's for a libtool library" install_libdir="$1" oldlibs= if test -z "$rpath"; then if test "$build_libtool_libs" = yes; then # Building a libtool convenience library. # Some compilers have problems with a `.al' extension so # convenience libraries should have the same extension an # archive normally would. oldlibs="$output_objdir/$libname.$libext $oldlibs" build_libtool_libs=convenience build_old_libs=yes fi test -n "$vinfo" && \ func_warning "\`-version-info/-version-number' is ignored for convenience libraries" test -n "$release" && \ func_warning "\`-release' is ignored for convenience libraries" else # Parse the version information argument. save_ifs="$IFS"; IFS=':' set dummy $vinfo 0 0 0 shift IFS="$save_ifs" test -n "$7" && \ func_fatal_help "too many parameters to \`-version-info'" # convert absolute version numbers to libtool ages # this retains compatibility with .la files and attempts # to make the code below a bit more comprehensible case $vinfo_number in yes) number_major="$1" number_minor="$2" number_revision="$3" # # There are really only two kinds -- those that # use the current revision as the major version # and those that subtract age and use age as # a minor version. But, then there is irix # which has an extra 1 added just for fun # case $version_type in # correct linux to gnu/linux during the next big refactor darwin|linux|osf|windows|none) func_arith $number_major + $number_minor current=$func_arith_result age="$number_minor" revision="$number_revision" ;; freebsd-aout|freebsd-elf|qnx|sunos) current="$number_major" revision="$number_minor" age="0" ;; irix|nonstopux) func_arith $number_major + $number_minor current=$func_arith_result age="$number_minor" revision="$number_minor" lt_irix_increment=no ;; *) func_fatal_configuration "$modename: unknown library version type \`$version_type'" ;; esac ;; no) current="$1" revision="$2" age="$3" ;; esac # Check that each of the things are valid numbers. case $current in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) func_error "CURRENT \`$current' must be a nonnegative integer" func_fatal_error "\`$vinfo' is not valid version information" ;; esac case $revision in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) func_error "REVISION \`$revision' must be a nonnegative integer" func_fatal_error "\`$vinfo' is not valid version information" ;; esac case $age in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) func_error "AGE \`$age' must be a nonnegative integer" func_fatal_error "\`$vinfo' is not valid version information" ;; esac if test "$age" -gt "$current"; then func_error "AGE \`$age' is greater than the current interface number \`$current'" func_fatal_error "\`$vinfo' is not valid version information" fi # Calculate the version variables. major= versuffix= verstring= case $version_type in none) ;; darwin) # Like Linux, but with the current version available in # verstring for coding it into the library header func_arith $current - $age major=.$func_arith_result versuffix="$major.$age.$revision" # Darwin ld doesn't like 0 for these options... func_arith $current + 1 minor_current=$func_arith_result xlcverstring="${wl}-compatibility_version ${wl}$minor_current ${wl}-current_version ${wl}$minor_current.$revision" verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" ;; freebsd-aout) major=".$current" versuffix=".$current.$revision"; ;; freebsd-elf) major=".$current" versuffix=".$current" ;; irix | nonstopux) if test "X$lt_irix_increment" = "Xno"; then func_arith $current - $age else func_arith $current - $age + 1 fi major=$func_arith_result case $version_type in nonstopux) verstring_prefix=nonstopux ;; *) verstring_prefix=sgi ;; esac verstring="$verstring_prefix$major.$revision" # Add in all the interfaces that we are compatible with. loop=$revision while test "$loop" -ne 0; do func_arith $revision - $loop iface=$func_arith_result func_arith $loop - 1 loop=$func_arith_result verstring="$verstring_prefix$major.$iface:$verstring" done # Before this point, $major must not contain `.'. major=.$major versuffix="$major.$revision" ;; linux) # correct to gnu/linux during the next big refactor func_arith $current - $age major=.$func_arith_result versuffix="$major.$age.$revision" ;; osf) func_arith $current - $age major=.$func_arith_result versuffix=".$current.$age.$revision" verstring="$current.$age.$revision" # Add in all the interfaces that we are compatible with. loop=$age while test "$loop" -ne 0; do func_arith $current - $loop iface=$func_arith_result func_arith $loop - 1 loop=$func_arith_result verstring="$verstring:${iface}.0" done # Make executables depend on our current version. func_append verstring ":${current}.0" ;; qnx) major=".$current" versuffix=".$current" ;; sunos) major=".$current" versuffix=".$current.$revision" ;; windows) # Use '-' rather than '.', since we only want one # extension on DOS 8.3 filesystems. func_arith $current - $age major=$func_arith_result versuffix="-$major" ;; *) func_fatal_configuration "unknown library version type \`$version_type'" ;; esac # Clear the version info if we defaulted, and they specified a release. if test -z "$vinfo" && test -n "$release"; then major= case $version_type in darwin) # we can't check for "0.0" in archive_cmds due to quoting # problems, so we reset it completely verstring= ;; *) verstring="0.0" ;; esac if test "$need_version" = no; then versuffix= else versuffix=".0.0" fi fi # Remove version info from name if versioning should be avoided if test "$avoid_version" = yes && test "$need_version" = no; then major= versuffix= verstring="" fi # Check to see if the archive will have undefined symbols. if test "$allow_undefined" = yes; then if test "$allow_undefined_flag" = unsupported; then func_warning "undefined symbols not allowed in $host shared libraries" build_libtool_libs=no build_old_libs=yes fi else # Don't allow undefined symbols. allow_undefined_flag="$no_undefined_flag" fi fi func_generate_dlsyms "$libname" "$libname" "yes" func_append libobjs " $symfileobj" test "X$libobjs" = "X " && libobjs= if test "$opt_mode" != relink; then # Remove our outputs, but don't remove object files since they # may have been created when compiling PIC objects. removelist= tempremovelist=`$ECHO "$output_objdir/*"` for p in $tempremovelist; do case $p in *.$objext | *.gcno) ;; $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/${libname}${release}.*) if test "X$precious_files_regex" != "X"; then if $ECHO "$p" | $EGREP -e "$precious_files_regex" >/dev/null 2>&1 then continue fi fi func_append removelist " $p" ;; *) ;; esac done test -n "$removelist" && \ func_show_eval "${RM}r \$removelist" fi # Now set the variables for building old libraries. if test "$build_old_libs" = yes && test "$build_libtool_libs" != convenience ; then func_append oldlibs " $output_objdir/$libname.$libext" # Transform .lo files to .o files. oldobjs="$objs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.${libext}$/d; $lo2o" | $NL2SP` fi # Eliminate all temporary directories. #for path in $notinst_path; do # lib_search_path=`$ECHO "$lib_search_path " | $SED "s% $path % %g"` # deplibs=`$ECHO "$deplibs " | $SED "s% -L$path % %g"` # dependency_libs=`$ECHO "$dependency_libs " | $SED "s% -L$path % %g"` #done if test -n "$xrpath"; then # If the user specified any rpath flags, then add them. temp_xrpath= for libdir in $xrpath; do func_replace_sysroot "$libdir" func_append temp_xrpath " -R$func_replace_sysroot_result" case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac done if test "$hardcode_into_libs" != yes || test "$build_old_libs" = yes; then dependency_libs="$temp_xrpath $dependency_libs" fi fi # Make sure dlfiles contains only unique files that won't be dlpreopened old_dlfiles="$dlfiles" dlfiles= for lib in $old_dlfiles; do case " $dlprefiles $dlfiles " in *" $lib "*) ;; *) func_append dlfiles " $lib" ;; esac done # Make sure dlprefiles contains only unique files old_dlprefiles="$dlprefiles" dlprefiles= for lib in $old_dlprefiles; do case "$dlprefiles " in *" $lib "*) ;; *) func_append dlprefiles " $lib" ;; esac done if test "$build_libtool_libs" = yes; then if test -n "$rpath"; then case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos* | *-cegcc* | *-*-haiku*) # these systems don't actually have a c library (as such)! ;; *-*-rhapsody* | *-*-darwin1.[012]) # Rhapsody C library is in the System framework func_append deplibs " System.ltframework" ;; *-*-netbsd*) # Don't link with libc until the a.out ld.so is fixed. ;; *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) # Do not include libc due to us having libc/libc_r. ;; *-*-sco3.2v5* | *-*-sco5v6*) # Causes problems with __ctype ;; *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) # Compiler inserts libc in the correct place for threads to work ;; *) # Add libc to deplibs on all other systems if necessary. if test "$build_libtool_need_lc" = "yes"; then func_append deplibs " -lc" fi ;; esac fi # Transform deplibs into only deplibs that can be linked in shared. name_save=$name libname_save=$libname release_save=$release versuffix_save=$versuffix major_save=$major # I'm not sure if I'm treating the release correctly. I think # release should show up in the -l (ie -lgmp5) so we don't want to # add it in twice. Is that correct? release="" versuffix="" major="" newdeplibs= droppeddeps=no case $deplibs_check_method in pass_all) # Don't check for shared/static. Everything works. # This might be a little naive. We might want to check # whether the library exists or not. But this is on # osf3 & osf4 and I'm not really sure... Just # implementing what was already the behavior. newdeplibs=$deplibs ;; test_compile) # This code stresses the "libraries are programs" paradigm to its # limits. Maybe even breaks it. We compile a program, linking it # against the deplibs as a proxy for the library. Then we can check # whether they linked in statically or dynamically with ldd. $opt_dry_run || $RM conftest.c cat > conftest.c </dev/null` $nocaseglob else potential_libs=`ls $i/$libnameglob[.-]* 2>/dev/null` fi for potent_lib in $potential_libs; do # Follow soft links. if ls -lLd "$potent_lib" 2>/dev/null | $GREP " -> " >/dev/null; then continue fi # The statement above tries to avoid entering an # endless loop below, in case of cyclic links. # We might still enter an endless loop, since a link # loop can be closed while we follow links, # but so what? potlib="$potent_lib" while test -h "$potlib" 2>/dev/null; do potliblink=`ls -ld $potlib | ${SED} 's/.* -> //'` case $potliblink in [\\/]* | [A-Za-z]:[\\/]*) potlib="$potliblink";; *) potlib=`$ECHO "$potlib" | $SED 's,[^/]*$,,'`"$potliblink";; esac done if eval $file_magic_cmd \"\$potlib\" 2>/dev/null | $SED -e 10q | $EGREP "$file_magic_regex" > /dev/null; then func_append newdeplibs " $a_deplib" a_deplib="" break 2 fi done done fi if test -n "$a_deplib" ; then droppeddeps=yes echo $ECHO "*** Warning: linker path does not have real file for library $a_deplib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have" echo "*** because I did check the linker path looking for a file starting" if test -z "$potlib" ; then $ECHO "*** with $libname but no candidates were found. (...for file magic test)" else $ECHO "*** with $libname and none of the candidates passed a file format test" $ECHO "*** using a file magic. Last file checked: $potlib" fi fi ;; *) # Add a -L argument. func_append newdeplibs " $a_deplib" ;; esac done # Gone through all deplibs. ;; match_pattern*) set dummy $deplibs_check_method; shift match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` for a_deplib in $deplibs; do case $a_deplib in -l*) func_stripname -l '' "$a_deplib" name=$func_stripname_result if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then case " $predeps $postdeps " in *" $a_deplib "*) func_append newdeplibs " $a_deplib" a_deplib="" ;; esac fi if test -n "$a_deplib" ; then libname=`eval "\\$ECHO \"$libname_spec\""` for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do potential_libs=`ls $i/$libname[.-]* 2>/dev/null` for potent_lib in $potential_libs; do potlib="$potent_lib" # see symlink-check above in file_magic test if eval "\$ECHO \"$potent_lib\"" 2>/dev/null | $SED 10q | \ $EGREP "$match_pattern_regex" > /dev/null; then func_append newdeplibs " $a_deplib" a_deplib="" break 2 fi done done fi if test -n "$a_deplib" ; then droppeddeps=yes echo $ECHO "*** Warning: linker path does not have real file for library $a_deplib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have" echo "*** because I did check the linker path looking for a file starting" if test -z "$potlib" ; then $ECHO "*** with $libname but no candidates were found. (...for regex pattern test)" else $ECHO "*** with $libname and none of the candidates passed a file format test" $ECHO "*** using a regex pattern. Last file checked: $potlib" fi fi ;; *) # Add a -L argument. func_append newdeplibs " $a_deplib" ;; esac done # Gone through all deplibs. ;; none | unknown | *) newdeplibs="" tmp_deplibs=`$ECHO " $deplibs" | $SED 's/ -lc$//; s/ -[LR][^ ]*//g'` if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then for i in $predeps $postdeps ; do # can't use Xsed below, because $i might contain '/' tmp_deplibs=`$ECHO " $tmp_deplibs" | $SED "s,$i,,"` done fi case $tmp_deplibs in *[!\ \ ]*) echo if test "X$deplibs_check_method" = "Xnone"; then echo "*** Warning: inter-library dependencies are not supported in this platform." else echo "*** Warning: inter-library dependencies are not known to be supported." fi echo "*** All declared inter-library dependencies are being dropped." droppeddeps=yes ;; esac ;; esac versuffix=$versuffix_save major=$major_save release=$release_save libname=$libname_save name=$name_save case $host in *-*-rhapsody* | *-*-darwin1.[012]) # On Rhapsody replace the C library with the System framework newdeplibs=`$ECHO " $newdeplibs" | $SED 's/ -lc / System.ltframework /'` ;; esac if test "$droppeddeps" = yes; then if test "$module" = yes; then echo echo "*** Warning: libtool could not satisfy all declared inter-library" $ECHO "*** dependencies of module $libname. Therefore, libtool will create" echo "*** a static module, that should work as long as the dlopening" echo "*** application is linked with the -dlopen flag." if test -z "$global_symbol_pipe"; then echo echo "*** However, this would only work if libtool was able to extract symbol" echo "*** lists from a program, using \`nm' or equivalent, but libtool could" echo "*** not find such a program. So, this module is probably useless." echo "*** \`nm' from GNU binutils and a full rebuild may help." fi if test "$build_old_libs" = no; then oldlibs="$output_objdir/$libname.$libext" build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi else echo "*** The inter-library dependencies that have been dropped here will be" echo "*** automatically added whenever a program is linked with this library" echo "*** or is declared to -dlopen it." if test "$allow_undefined" = no; then echo echo "*** Since this library must not contain undefined symbols," echo "*** because either the platform does not support them or" echo "*** it was explicitly requested with -no-undefined," echo "*** libtool will only create a static version of it." if test "$build_old_libs" = no; then oldlibs="$output_objdir/$libname.$libext" build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi fi fi fi # Done checking deplibs! deplibs=$newdeplibs fi # Time to change all our "foo.ltframework" stuff back to "-framework foo" case $host in *-*-darwin*) newdeplibs=`$ECHO " $newdeplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` new_inherited_linker_flags=`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` deplibs=`$ECHO " $deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` ;; esac # move library search paths that coincide with paths to not yet # installed libraries to the beginning of the library search list new_libs= for path in $notinst_path; do case " $new_libs " in *" -L$path/$objdir "*) ;; *) case " $deplibs " in *" -L$path/$objdir "*) func_append new_libs " -L$path/$objdir" ;; esac ;; esac done for deplib in $deplibs; do case $deplib in -L*) case " $new_libs " in *" $deplib "*) ;; *) func_append new_libs " $deplib" ;; esac ;; *) func_append new_libs " $deplib" ;; esac done deplibs="$new_libs" # All the library-specific variables (install_libdir is set above). library_names= old_library= dlname= # Test again, we may have decided not to build it any more if test "$build_libtool_libs" = yes; then # Remove ${wl} instances when linking with ld. # FIXME: should test the right _cmds variable. case $archive_cmds in *\$LD\ *) wl= ;; esac if test "$hardcode_into_libs" = yes; then # Hardcode the library paths hardcode_libdirs= dep_rpath= rpath="$finalize_rpath" test "$opt_mode" != relink && rpath="$compile_rpath$rpath" for libdir in $rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then func_replace_sysroot "$libdir" libdir=$func_replace_sysroot_result if test -z "$hardcode_libdirs"; then hardcode_libdirs="$libdir" else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" func_append dep_rpath " $flag" fi elif test -n "$runpath_var"; then case "$perm_rpath " in *" $libdir "*) ;; *) func_append perm_rpath " $libdir" ;; esac fi done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir="$hardcode_libdirs" eval "dep_rpath=\"$hardcode_libdir_flag_spec\"" fi if test -n "$runpath_var" && test -n "$perm_rpath"; then # We should set the runpath_var. rpath= for dir in $perm_rpath; do func_append rpath "$dir:" done eval "$runpath_var='$rpath\$$runpath_var'; export $runpath_var" fi test -n "$dep_rpath" && deplibs="$dep_rpath $deplibs" fi shlibpath="$finalize_shlibpath" test "$opt_mode" != relink && shlibpath="$compile_shlibpath$shlibpath" if test -n "$shlibpath"; then eval "$shlibpath_var='$shlibpath\$$shlibpath_var'; export $shlibpath_var" fi # Get the real and link names of the library. eval shared_ext=\"$shrext_cmds\" eval library_names=\"$library_names_spec\" set dummy $library_names shift realname="$1" shift if test -n "$soname_spec"; then eval soname=\"$soname_spec\" else soname="$realname" fi if test -z "$dlname"; then dlname=$soname fi lib="$output_objdir/$realname" linknames= for link do func_append linknames " $link" done # Use standard objects if they are pic test -z "$pic_flag" && libobjs=`$ECHO "$libobjs" | $SP2NL | $SED "$lo2o" | $NL2SP` test "X$libobjs" = "X " && libobjs= delfiles= if test -n "$export_symbols" && test -n "$include_expsyms"; then $opt_dry_run || cp "$export_symbols" "$output_objdir/$libname.uexp" export_symbols="$output_objdir/$libname.uexp" func_append delfiles " $export_symbols" fi orig_export_symbols= case $host_os in cygwin* | mingw* | cegcc*) if test -n "$export_symbols" && test -z "$export_symbols_regex"; then # exporting using user supplied symfile if test "x`$SED 1q $export_symbols`" != xEXPORTS; then # and it's NOT already a .def file. Must figure out # which of the given symbols are data symbols and tag # them as such. So, trigger use of export_symbols_cmds. # export_symbols gets reassigned inside the "prepare # the list of exported symbols" if statement, so the # include_expsyms logic still works. orig_export_symbols="$export_symbols" export_symbols= always_export_symbols=yes fi fi ;; esac # Prepare the list of exported symbols if test -z "$export_symbols"; then if test "$always_export_symbols" = yes || test -n "$export_symbols_regex"; then func_verbose "generating symbol list for \`$libname.la'" export_symbols="$output_objdir/$libname.exp" $opt_dry_run || $RM $export_symbols cmds=$export_symbols_cmds save_ifs="$IFS"; IFS='~' for cmd1 in $cmds; do IFS="$save_ifs" # Take the normal branch if the nm_file_list_spec branch # doesn't work or if tool conversion is not needed. case $nm_file_list_spec~$to_tool_file_cmd in *~func_convert_file_noop | *~func_convert_file_msys_to_w32 | ~*) try_normal_branch=yes eval cmd=\"$cmd1\" func_len " $cmd" len=$func_len_result ;; *) try_normal_branch=no ;; esac if test "$try_normal_branch" = yes \ && { test "$len" -lt "$max_cmd_len" \ || test "$max_cmd_len" -le -1; } then func_show_eval "$cmd" 'exit $?' skipped_export=false elif test -n "$nm_file_list_spec"; then func_basename "$output" output_la=$func_basename_result save_libobjs=$libobjs save_output=$output output=${output_objdir}/${output_la}.nm func_to_tool_file "$output" libobjs=$nm_file_list_spec$func_to_tool_file_result func_append delfiles " $output" func_verbose "creating $NM input file list: $output" for obj in $save_libobjs; do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" done > "$output" eval cmd=\"$cmd1\" func_show_eval "$cmd" 'exit $?' output=$save_output libobjs=$save_libobjs skipped_export=false else # The command line is too long to execute in one step. func_verbose "using reloadable object file for export list..." skipped_export=: # Break out early, otherwise skipped_export may be # set to false by a later but shorter cmd. break fi done IFS="$save_ifs" if test -n "$export_symbols_regex" && test "X$skipped_export" != "X:"; then func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' func_show_eval '$MV "${export_symbols}T" "$export_symbols"' fi fi fi if test -n "$export_symbols" && test -n "$include_expsyms"; then tmp_export_symbols="$export_symbols" test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols" $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' fi if test "X$skipped_export" != "X:" && test -n "$orig_export_symbols"; then # The given exports_symbols file has to be filtered, so filter it. func_verbose "filter symbol list for \`$libname.la' to tag DATA exports" # FIXME: $output_objdir/$libname.filter potentially contains lots of # 's' commands which not all seds can handle. GNU sed should be fine # though. Also, the filter scales superlinearly with the number of # global variables. join(1) would be nice here, but unfortunately # isn't a blessed tool. $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter func_append delfiles " $export_symbols $output_objdir/$libname.filter" export_symbols=$output_objdir/$libname.def $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols fi tmp_deplibs= for test_deplib in $deplibs; do case " $convenience " in *" $test_deplib "*) ;; *) func_append tmp_deplibs " $test_deplib" ;; esac done deplibs="$tmp_deplibs" if test -n "$convenience"; then if test -n "$whole_archive_flag_spec" && test "$compiler_needs_object" = yes && test -z "$libobjs"; then # extract the archives, so we have objects to list. # TODO: could optimize this to just extract one archive. whole_archive_flag_spec= fi if test -n "$whole_archive_flag_spec"; then save_libobjs=$libobjs eval libobjs=\"\$libobjs $whole_archive_flag_spec\" test "X$libobjs" = "X " && libobjs= else gentop="$output_objdir/${outputname}x" func_append generated " $gentop" func_extract_archives $gentop $convenience func_append libobjs " $func_extract_archives_result" test "X$libobjs" = "X " && libobjs= fi fi if test "$thread_safe" = yes && test -n "$thread_safe_flag_spec"; then eval flag=\"$thread_safe_flag_spec\" func_append linker_flags " $flag" fi # Make a backup of the uninstalled library when relinking if test "$opt_mode" = relink; then $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}U && $MV $realname ${realname}U)' || exit $? fi # Do each of the archive commands. if test "$module" = yes && test -n "$module_cmds" ; then if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then eval test_cmds=\"$module_expsym_cmds\" cmds=$module_expsym_cmds else eval test_cmds=\"$module_cmds\" cmds=$module_cmds fi else if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then eval test_cmds=\"$archive_expsym_cmds\" cmds=$archive_expsym_cmds else eval test_cmds=\"$archive_cmds\" cmds=$archive_cmds fi fi if test "X$skipped_export" != "X:" && func_len " $test_cmds" && len=$func_len_result && test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then : else # The command line is too long to link in one step, link piecewise # or, if using GNU ld and skipped_export is not :, use a linker # script. # Save the value of $output and $libobjs because we want to # use them later. If we have whole_archive_flag_spec, we # want to use save_libobjs as it was before # whole_archive_flag_spec was expanded, because we can't # assume the linker understands whole_archive_flag_spec. # This may have to be revisited, in case too many # convenience libraries get linked in and end up exceeding # the spec. if test -z "$convenience" || test -z "$whole_archive_flag_spec"; then save_libobjs=$libobjs fi save_output=$output func_basename "$output" output_la=$func_basename_result # Clear the reloadable object creation command queue and # initialize k to one. test_cmds= concat_cmds= objlist= last_robj= k=1 if test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "$with_gnu_ld" = yes; then output=${output_objdir}/${output_la}.lnkscript func_verbose "creating GNU ld script: $output" echo 'INPUT (' > $output for obj in $save_libobjs do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" >> $output done echo ')' >> $output func_append delfiles " $output" func_to_tool_file "$output" output=$func_to_tool_file_result elif test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "X$file_list_spec" != X; then output=${output_objdir}/${output_la}.lnk func_verbose "creating linker input file list: $output" : > $output set x $save_libobjs shift firstobj= if test "$compiler_needs_object" = yes; then firstobj="$1 " shift fi for obj do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" >> $output done func_append delfiles " $output" func_to_tool_file "$output" output=$firstobj\"$file_list_spec$func_to_tool_file_result\" else if test -n "$save_libobjs"; then func_verbose "creating reloadable object files..." output=$output_objdir/$output_la-${k}.$objext eval test_cmds=\"$reload_cmds\" func_len " $test_cmds" len0=$func_len_result len=$len0 # Loop over the list of objects to be linked. for obj in $save_libobjs do func_len " $obj" func_arith $len + $func_len_result len=$func_arith_result if test "X$objlist" = X || test "$len" -lt "$max_cmd_len"; then func_append objlist " $obj" else # The command $test_cmds is almost too long, add a # command to the queue. if test "$k" -eq 1 ; then # The first file doesn't have a previous command to add. reload_objs=$objlist eval concat_cmds=\"$reload_cmds\" else # All subsequent reloadable object files will link in # the last one created. reload_objs="$objlist $last_robj" eval concat_cmds=\"\$concat_cmds~$reload_cmds~\$RM $last_robj\" fi last_robj=$output_objdir/$output_la-${k}.$objext func_arith $k + 1 k=$func_arith_result output=$output_objdir/$output_la-${k}.$objext objlist=" $obj" func_len " $last_robj" func_arith $len0 + $func_len_result len=$func_arith_result fi done # Handle the remaining objects by creating one last # reloadable object file. All subsequent reloadable object # files will link in the last one created. test -z "$concat_cmds" || concat_cmds=$concat_cmds~ reload_objs="$objlist $last_robj" eval concat_cmds=\"\${concat_cmds}$reload_cmds\" if test -n "$last_robj"; then eval concat_cmds=\"\${concat_cmds}~\$RM $last_robj\" fi func_append delfiles " $output" else output= fi if ${skipped_export-false}; then func_verbose "generating symbol list for \`$libname.la'" export_symbols="$output_objdir/$libname.exp" $opt_dry_run || $RM $export_symbols libobjs=$output # Append the command to create the export file. test -z "$concat_cmds" || concat_cmds=$concat_cmds~ eval concat_cmds=\"\$concat_cmds$export_symbols_cmds\" if test -n "$last_robj"; then eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\" fi fi test -n "$save_libobjs" && func_verbose "creating a temporary reloadable object file: $output" # Loop through the commands generated above and execute them. save_ifs="$IFS"; IFS='~' for cmd in $concat_cmds; do IFS="$save_ifs" $opt_silent || { func_quote_for_expand "$cmd" eval "func_echo $func_quote_for_expand_result" } $opt_dry_run || eval "$cmd" || { lt_exit=$? # Restore the uninstalled library and exit if test "$opt_mode" = relink; then ( cd "$output_objdir" && \ $RM "${realname}T" && \ $MV "${realname}U" "$realname" ) fi exit $lt_exit } done IFS="$save_ifs" if test -n "$export_symbols_regex" && ${skipped_export-false}; then func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' func_show_eval '$MV "${export_symbols}T" "$export_symbols"' fi fi if ${skipped_export-false}; then if test -n "$export_symbols" && test -n "$include_expsyms"; then tmp_export_symbols="$export_symbols" test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols" $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' fi if test -n "$orig_export_symbols"; then # The given exports_symbols file has to be filtered, so filter it. func_verbose "filter symbol list for \`$libname.la' to tag DATA exports" # FIXME: $output_objdir/$libname.filter potentially contains lots of # 's' commands which not all seds can handle. GNU sed should be fine # though. Also, the filter scales superlinearly with the number of # global variables. join(1) would be nice here, but unfortunately # isn't a blessed tool. $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter func_append delfiles " $export_symbols $output_objdir/$libname.filter" export_symbols=$output_objdir/$libname.def $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols fi fi libobjs=$output # Restore the value of output. output=$save_output if test -n "$convenience" && test -n "$whole_archive_flag_spec"; then eval libobjs=\"\$libobjs $whole_archive_flag_spec\" test "X$libobjs" = "X " && libobjs= fi # Expand the library linking commands again to reset the # value of $libobjs for piecewise linking. # Do each of the archive commands. if test "$module" = yes && test -n "$module_cmds" ; then if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then cmds=$module_expsym_cmds else cmds=$module_cmds fi else if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then cmds=$archive_expsym_cmds else cmds=$archive_cmds fi fi fi if test -n "$delfiles"; then # Append the command to remove temporary files to $cmds. eval cmds=\"\$cmds~\$RM $delfiles\" fi # Add any objects from preloaded convenience libraries if test -n "$dlprefiles"; then gentop="$output_objdir/${outputname}x" func_append generated " $gentop" func_extract_archives $gentop $dlprefiles func_append libobjs " $func_extract_archives_result" test "X$libobjs" = "X " && libobjs= fi save_ifs="$IFS"; IFS='~' for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" $opt_silent || { func_quote_for_expand "$cmd" eval "func_echo $func_quote_for_expand_result" } $opt_dry_run || eval "$cmd" || { lt_exit=$? # Restore the uninstalled library and exit if test "$opt_mode" = relink; then ( cd "$output_objdir" && \ $RM "${realname}T" && \ $MV "${realname}U" "$realname" ) fi exit $lt_exit } done IFS="$save_ifs" # Restore the uninstalled library and exit if test "$opt_mode" = relink; then $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}T && $MV $realname ${realname}T && $MV ${realname}U $realname)' || exit $? if test -n "$convenience"; then if test -z "$whole_archive_flag_spec"; then func_show_eval '${RM}r "$gentop"' fi fi exit $EXIT_SUCCESS fi # Create links to the real library. for linkname in $linknames; do if test "$realname" != "$linkname"; then func_show_eval '(cd "$output_objdir" && $RM "$linkname" && $LN_S "$realname" "$linkname")' 'exit $?' fi done # If -module or -export-dynamic was specified, set the dlname. if test "$module" = yes || test "$export_dynamic" = yes; then # On all known operating systems, these are identical. dlname="$soname" fi fi ;; obj) if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then func_warning "\`-dlopen' is ignored for objects" fi case " $deplibs" in *\ -l* | *\ -L*) func_warning "\`-l' and \`-L' are ignored for objects" ;; esac test -n "$rpath" && \ func_warning "\`-rpath' is ignored for objects" test -n "$xrpath" && \ func_warning "\`-R' is ignored for objects" test -n "$vinfo" && \ func_warning "\`-version-info' is ignored for objects" test -n "$release" && \ func_warning "\`-release' is ignored for objects" case $output in *.lo) test -n "$objs$old_deplibs" && \ func_fatal_error "cannot build library object \`$output' from non-libtool objects" libobj=$output func_lo2o "$libobj" obj=$func_lo2o_result ;; *) libobj= obj="$output" ;; esac # Delete the old objects. $opt_dry_run || $RM $obj $libobj # Objects from convenience libraries. This assumes # single-version convenience libraries. Whenever we create # different ones for PIC/non-PIC, this we'll have to duplicate # the extraction. reload_conv_objs= gentop= # reload_cmds runs $LD directly, so let us get rid of # -Wl from whole_archive_flag_spec and hope we can get by with # turning comma into space.. wl= if test -n "$convenience"; then if test -n "$whole_archive_flag_spec"; then eval tmp_whole_archive_flags=\"$whole_archive_flag_spec\" reload_conv_objs=$reload_objs\ `$ECHO "$tmp_whole_archive_flags" | $SED 's|,| |g'` else gentop="$output_objdir/${obj}x" func_append generated " $gentop" func_extract_archives $gentop $convenience reload_conv_objs="$reload_objs $func_extract_archives_result" fi fi # If we're not building shared, we need to use non_pic_objs test "$build_libtool_libs" != yes && libobjs="$non_pic_objects" # Create the old-style object. reload_objs="$objs$old_deplibs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.${libext}$/d; /\.lib$/d; $lo2o" | $NL2SP`" $reload_conv_objs" ### testsuite: skip nested quoting test output="$obj" func_execute_cmds "$reload_cmds" 'exit $?' # Exit if we aren't doing a library object file. if test -z "$libobj"; then if test -n "$gentop"; then func_show_eval '${RM}r "$gentop"' fi exit $EXIT_SUCCESS fi if test "$build_libtool_libs" != yes; then if test -n "$gentop"; then func_show_eval '${RM}r "$gentop"' fi # Create an invalid libtool object if no PIC, so that we don't # accidentally link it into a program. # $show "echo timestamp > $libobj" # $opt_dry_run || eval "echo timestamp > $libobj" || exit $? exit $EXIT_SUCCESS fi if test -n "$pic_flag" || test "$pic_mode" != default; then # Only do commands if we really have different PIC objects. reload_objs="$libobjs $reload_conv_objs" output="$libobj" func_execute_cmds "$reload_cmds" 'exit $?' fi if test -n "$gentop"; then func_show_eval '${RM}r "$gentop"' fi exit $EXIT_SUCCESS ;; prog) case $host in *cygwin*) func_stripname '' '.exe' "$output" output=$func_stripname_result.exe;; esac test -n "$vinfo" && \ func_warning "\`-version-info' is ignored for programs" test -n "$release" && \ func_warning "\`-release' is ignored for programs" test "$preload" = yes \ && test "$dlopen_support" = unknown \ && test "$dlopen_self" = unknown \ && test "$dlopen_self_static" = unknown && \ func_warning "\`LT_INIT([dlopen])' not used. Assuming no dlopen support." case $host in *-*-rhapsody* | *-*-darwin1.[012]) # On Rhapsody replace the C library is the System framework compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's/ -lc / System.ltframework /'` finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's/ -lc / System.ltframework /'` ;; esac case $host in *-*-darwin*) # Don't allow lazy linking, it breaks C++ global constructors # But is supposedly fixed on 10.4 or later (yay!). if test "$tagname" = CXX ; then case ${MACOSX_DEPLOYMENT_TARGET-10.0} in 10.[0123]) func_append compile_command " ${wl}-bind_at_load" func_append finalize_command " ${wl}-bind_at_load" ;; esac fi # Time to change all our "foo.ltframework" stuff back to "-framework foo" compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` ;; esac # move library search paths that coincide with paths to not yet # installed libraries to the beginning of the library search list new_libs= for path in $notinst_path; do case " $new_libs " in *" -L$path/$objdir "*) ;; *) case " $compile_deplibs " in *" -L$path/$objdir "*) func_append new_libs " -L$path/$objdir" ;; esac ;; esac done for deplib in $compile_deplibs; do case $deplib in -L*) case " $new_libs " in *" $deplib "*) ;; *) func_append new_libs " $deplib" ;; esac ;; *) func_append new_libs " $deplib" ;; esac done compile_deplibs="$new_libs" func_append compile_command " $compile_deplibs" func_append finalize_command " $finalize_deplibs" if test -n "$rpath$xrpath"; then # If the user specified any rpath flags, then add them. for libdir in $rpath $xrpath; do # This is the magic to use -rpath. case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac done fi # Now hardcode the library paths rpath= hardcode_libdirs= for libdir in $compile_rpath $finalize_rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then if test -z "$hardcode_libdirs"; then hardcode_libdirs="$libdir" else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" func_append rpath " $flag" fi elif test -n "$runpath_var"; then case "$perm_rpath " in *" $libdir "*) ;; *) func_append perm_rpath " $libdir" ;; esac fi case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) testbindir=`${ECHO} "$libdir" | ${SED} -e 's*/lib$*/bin*'` case :$dllsearchpath: in *":$libdir:"*) ;; ::) dllsearchpath=$libdir;; *) func_append dllsearchpath ":$libdir";; esac case :$dllsearchpath: in *":$testbindir:"*) ;; ::) dllsearchpath=$testbindir;; *) func_append dllsearchpath ":$testbindir";; esac ;; esac done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir="$hardcode_libdirs" eval rpath=\" $hardcode_libdir_flag_spec\" fi compile_rpath="$rpath" rpath= hardcode_libdirs= for libdir in $finalize_rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then if test -z "$hardcode_libdirs"; then hardcode_libdirs="$libdir" else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" func_append rpath " $flag" fi elif test -n "$runpath_var"; then case "$finalize_perm_rpath " in *" $libdir "*) ;; *) func_append finalize_perm_rpath " $libdir" ;; esac fi done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir="$hardcode_libdirs" eval rpath=\" $hardcode_libdir_flag_spec\" fi finalize_rpath="$rpath" if test -n "$libobjs" && test "$build_old_libs" = yes; then # Transform all the library objects into standard objects. compile_command=`$ECHO "$compile_command" | $SP2NL | $SED "$lo2o" | $NL2SP` finalize_command=`$ECHO "$finalize_command" | $SP2NL | $SED "$lo2o" | $NL2SP` fi func_generate_dlsyms "$outputname" "@PROGRAM@" "no" # template prelinking step if test -n "$prelink_cmds"; then func_execute_cmds "$prelink_cmds" 'exit $?' fi wrappers_required=yes case $host in *cegcc* | *mingw32ce*) # Disable wrappers for cegcc and mingw32ce hosts, we are cross compiling anyway. wrappers_required=no ;; *cygwin* | *mingw* ) if test "$build_libtool_libs" != yes; then wrappers_required=no fi ;; *) if test "$need_relink" = no || test "$build_libtool_libs" != yes; then wrappers_required=no fi ;; esac if test "$wrappers_required" = no; then # Replace the output file specification. compile_command=`$ECHO "$compile_command" | $SED 's%@OUTPUT@%'"$output"'%g'` link_command="$compile_command$compile_rpath" # We have no uninstalled library dependencies, so finalize right now. exit_status=0 func_show_eval "$link_command" 'exit_status=$?' if test -n "$postlink_cmds"; then func_to_tool_file "$output" postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` func_execute_cmds "$postlink_cmds" 'exit $?' fi # Delete the generated files. if test -f "$output_objdir/${outputname}S.${objext}"; then func_show_eval '$RM "$output_objdir/${outputname}S.${objext}"' fi exit $exit_status fi if test -n "$compile_shlibpath$finalize_shlibpath"; then compile_command="$shlibpath_var=\"$compile_shlibpath$finalize_shlibpath\$$shlibpath_var\" $compile_command" fi if test -n "$finalize_shlibpath"; then finalize_command="$shlibpath_var=\"$finalize_shlibpath\$$shlibpath_var\" $finalize_command" fi compile_var= finalize_var= if test -n "$runpath_var"; then if test -n "$perm_rpath"; then # We should set the runpath_var. rpath= for dir in $perm_rpath; do func_append rpath "$dir:" done compile_var="$runpath_var=\"$rpath\$$runpath_var\" " fi if test -n "$finalize_perm_rpath"; then # We should set the runpath_var. rpath= for dir in $finalize_perm_rpath; do func_append rpath "$dir:" done finalize_var="$runpath_var=\"$rpath\$$runpath_var\" " fi fi if test "$no_install" = yes; then # We don't need to create a wrapper script. link_command="$compile_var$compile_command$compile_rpath" # Replace the output file specification. link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output"'%g'` # Delete the old output file. $opt_dry_run || $RM $output # Link the executable and exit func_show_eval "$link_command" 'exit $?' if test -n "$postlink_cmds"; then func_to_tool_file "$output" postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` func_execute_cmds "$postlink_cmds" 'exit $?' fi exit $EXIT_SUCCESS fi if test "$hardcode_action" = relink; then # Fast installation is not supported link_command="$compile_var$compile_command$compile_rpath" relink_command="$finalize_var$finalize_command$finalize_rpath" func_warning "this platform does not like uninstalled shared libraries" func_warning "\`$output' will be relinked during installation" else if test "$fast_install" != no; then link_command="$finalize_var$compile_command$finalize_rpath" if test "$fast_install" = yes; then relink_command=`$ECHO "$compile_var$compile_command$compile_rpath" | $SED 's%@OUTPUT@%\$progdir/\$file%g'` else # fast_install is set to needless relink_command= fi else link_command="$compile_var$compile_command$compile_rpath" relink_command="$finalize_var$finalize_command$finalize_rpath" fi fi # Replace the output file specification. link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'` # Delete the old output files. $opt_dry_run || $RM $output $output_objdir/$outputname $output_objdir/lt-$outputname func_show_eval "$link_command" 'exit $?' if test -n "$postlink_cmds"; then func_to_tool_file "$output_objdir/$outputname" postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output_objdir/$outputname"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` func_execute_cmds "$postlink_cmds" 'exit $?' fi # Now create the wrapper script. func_verbose "creating $output" # Quote the relink command for shipping. if test -n "$relink_command"; then # Preserve any variables that may affect compiler behavior for var in $variables_saved_for_relink; do if eval test -z \"\${$var+set}\"; then relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" elif eval var_value=\$$var; test -z "$var_value"; then relink_command="$var=; export $var; $relink_command" else func_quote_for_eval "$var_value" relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" fi done relink_command="(cd `pwd`; $relink_command)" relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` fi # Only actually do things if not in dry run mode. $opt_dry_run || { # win32 will think the script is a binary if it has # a .exe suffix, so we strip it off here. case $output in *.exe) func_stripname '' '.exe' "$output" output=$func_stripname_result ;; esac # test for cygwin because mv fails w/o .exe extensions case $host in *cygwin*) exeext=.exe func_stripname '' '.exe' "$outputname" outputname=$func_stripname_result ;; *) exeext= ;; esac case $host in *cygwin* | *mingw* ) func_dirname_and_basename "$output" "" "." output_name=$func_basename_result output_path=$func_dirname_result cwrappersource="$output_path/$objdir/lt-$output_name.c" cwrapper="$output_path/$output_name.exe" $RM $cwrappersource $cwrapper trap "$RM $cwrappersource $cwrapper; exit $EXIT_FAILURE" 1 2 15 func_emit_cwrapperexe_src > $cwrappersource # The wrapper executable is built using the $host compiler, # because it contains $host paths and files. If cross- # compiling, it, like the target executable, must be # executed on the $host or under an emulation environment. $opt_dry_run || { $LTCC $LTCFLAGS -o $cwrapper $cwrappersource $STRIP $cwrapper } # Now, create the wrapper script for func_source use: func_ltwrapper_scriptname $cwrapper $RM $func_ltwrapper_scriptname_result trap "$RM $func_ltwrapper_scriptname_result; exit $EXIT_FAILURE" 1 2 15 $opt_dry_run || { # note: this script will not be executed, so do not chmod. if test "x$build" = "x$host" ; then $cwrapper --lt-dump-script > $func_ltwrapper_scriptname_result else func_emit_wrapper no > $func_ltwrapper_scriptname_result fi } ;; * ) $RM $output trap "$RM $output; exit $EXIT_FAILURE" 1 2 15 func_emit_wrapper no > $output chmod +x $output ;; esac } exit $EXIT_SUCCESS ;; esac # See if we need to build an old-fashioned archive. for oldlib in $oldlibs; do if test "$build_libtool_libs" = convenience; then oldobjs="$libobjs_save $symfileobj" addlibs="$convenience" build_libtool_libs=no else if test "$build_libtool_libs" = module; then oldobjs="$libobjs_save" build_libtool_libs=no else oldobjs="$old_deplibs $non_pic_objects" if test "$preload" = yes && test -f "$symfileobj"; then func_append oldobjs " $symfileobj" fi fi addlibs="$old_convenience" fi if test -n "$addlibs"; then gentop="$output_objdir/${outputname}x" func_append generated " $gentop" func_extract_archives $gentop $addlibs func_append oldobjs " $func_extract_archives_result" fi # Do each command in the archive commands. if test -n "$old_archive_from_new_cmds" && test "$build_libtool_libs" = yes; then cmds=$old_archive_from_new_cmds else # Add any objects from preloaded convenience libraries if test -n "$dlprefiles"; then gentop="$output_objdir/${outputname}x" func_append generated " $gentop" func_extract_archives $gentop $dlprefiles func_append oldobjs " $func_extract_archives_result" fi # POSIX demands no paths to be encoded in archives. We have # to avoid creating archives with duplicate basenames if we # might have to extract them afterwards, e.g., when creating a # static archive out of a convenience library, or when linking # the entirety of a libtool archive into another (currently # not supported by libtool). if (for obj in $oldobjs do func_basename "$obj" $ECHO "$func_basename_result" done | sort | sort -uc >/dev/null 2>&1); then : else echo "copying selected object files to avoid basename conflicts..." gentop="$output_objdir/${outputname}x" func_append generated " $gentop" func_mkdir_p "$gentop" save_oldobjs=$oldobjs oldobjs= counter=1 for obj in $save_oldobjs do func_basename "$obj" objbase="$func_basename_result" case " $oldobjs " in " ") oldobjs=$obj ;; *[\ /]"$objbase "*) while :; do # Make sure we don't pick an alternate name that also # overlaps. newobj=lt$counter-$objbase func_arith $counter + 1 counter=$func_arith_result case " $oldobjs " in *[\ /]"$newobj "*) ;; *) if test ! -f "$gentop/$newobj"; then break; fi ;; esac done func_show_eval "ln $obj $gentop/$newobj || cp $obj $gentop/$newobj" func_append oldobjs " $gentop/$newobj" ;; *) func_append oldobjs " $obj" ;; esac done fi func_to_tool_file "$oldlib" func_convert_file_msys_to_w32 tool_oldlib=$func_to_tool_file_result eval cmds=\"$old_archive_cmds\" func_len " $cmds" len=$func_len_result if test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then cmds=$old_archive_cmds elif test -n "$archiver_list_spec"; then func_verbose "using command file archive linking..." for obj in $oldobjs do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" done > $output_objdir/$libname.libcmd func_to_tool_file "$output_objdir/$libname.libcmd" oldobjs=" $archiver_list_spec$func_to_tool_file_result" cmds=$old_archive_cmds else # the command line is too long to link in one step, link in parts func_verbose "using piecewise archive linking..." save_RANLIB=$RANLIB RANLIB=: objlist= concat_cmds= save_oldobjs=$oldobjs oldobjs= # Is there a better way of finding the last object in the list? for obj in $save_oldobjs do last_oldobj=$obj done eval test_cmds=\"$old_archive_cmds\" func_len " $test_cmds" len0=$func_len_result len=$len0 for obj in $save_oldobjs do func_len " $obj" func_arith $len + $func_len_result len=$func_arith_result func_append objlist " $obj" if test "$len" -lt "$max_cmd_len"; then : else # the above command should be used before it gets too long oldobjs=$objlist if test "$obj" = "$last_oldobj" ; then RANLIB=$save_RANLIB fi test -z "$concat_cmds" || concat_cmds=$concat_cmds~ eval concat_cmds=\"\${concat_cmds}$old_archive_cmds\" objlist= len=$len0 fi done RANLIB=$save_RANLIB oldobjs=$objlist if test "X$oldobjs" = "X" ; then eval cmds=\"\$concat_cmds\" else eval cmds=\"\$concat_cmds~\$old_archive_cmds\" fi fi fi func_execute_cmds "$cmds" 'exit $?' done test -n "$generated" && \ func_show_eval "${RM}r$generated" # Now create the libtool archive. case $output in *.la) old_library= test "$build_old_libs" = yes && old_library="$libname.$libext" func_verbose "creating $output" # Preserve any variables that may affect compiler behavior for var in $variables_saved_for_relink; do if eval test -z \"\${$var+set}\"; then relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" elif eval var_value=\$$var; test -z "$var_value"; then relink_command="$var=; export $var; $relink_command" else func_quote_for_eval "$var_value" relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" fi done # Quote the link command for shipping. relink_command="(cd `pwd`; $SHELL $progpath $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)" relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` if test "$hardcode_automatic" = yes ; then relink_command= fi # Only create the output if not a dry run. $opt_dry_run || { for installed in no yes; do if test "$installed" = yes; then if test -z "$install_libdir"; then break fi output="$output_objdir/$outputname"i # Replace all uninstalled libtool libraries with the installed ones newdependency_libs= for deplib in $dependency_libs; do case $deplib in *.la) func_basename "$deplib" name="$func_basename_result" func_resolve_sysroot "$deplib" eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $func_resolve_sysroot_result` test -z "$libdir" && \ func_fatal_error "\`$deplib' is not a valid libtool archive" func_append newdependency_libs " ${lt_sysroot:+=}$libdir/$name" ;; -L*) func_stripname -L '' "$deplib" func_replace_sysroot "$func_stripname_result" func_append newdependency_libs " -L$func_replace_sysroot_result" ;; -R*) func_stripname -R '' "$deplib" func_replace_sysroot "$func_stripname_result" func_append newdependency_libs " -R$func_replace_sysroot_result" ;; *) func_append newdependency_libs " $deplib" ;; esac done dependency_libs="$newdependency_libs" newdlfiles= for lib in $dlfiles; do case $lib in *.la) func_basename "$lib" name="$func_basename_result" eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` test -z "$libdir" && \ func_fatal_error "\`$lib' is not a valid libtool archive" func_append newdlfiles " ${lt_sysroot:+=}$libdir/$name" ;; *) func_append newdlfiles " $lib" ;; esac done dlfiles="$newdlfiles" newdlprefiles= for lib in $dlprefiles; do case $lib in *.la) # Only pass preopened files to the pseudo-archive (for # eventual linking with the app. that links it) if we # didn't already link the preopened objects directly into # the library: func_basename "$lib" name="$func_basename_result" eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` test -z "$libdir" && \ func_fatal_error "\`$lib' is not a valid libtool archive" func_append newdlprefiles " ${lt_sysroot:+=}$libdir/$name" ;; esac done dlprefiles="$newdlprefiles" else newdlfiles= for lib in $dlfiles; do case $lib in [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;; *) abs=`pwd`"/$lib" ;; esac func_append newdlfiles " $abs" done dlfiles="$newdlfiles" newdlprefiles= for lib in $dlprefiles; do case $lib in [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;; *) abs=`pwd`"/$lib" ;; esac func_append newdlprefiles " $abs" done dlprefiles="$newdlprefiles" fi $RM $output # place dlname in correct position for cygwin # In fact, it would be nice if we could use this code for all target # systems that can't hard-code library paths into their executables # and that have no shared library path variable independent of PATH, # but it turns out we can't easily determine that from inspecting # libtool variables, so we have to hard-code the OSs to which it # applies here; at the moment, that means platforms that use the PE # object format with DLL files. See the long comment at the top of # tests/bindir.at for full details. tdlname=$dlname case $host,$output,$installed,$module,$dlname in *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll | *cegcc*,*lai,yes,no,*.dll) # If a -bindir argument was supplied, place the dll there. if test "x$bindir" != x ; then func_relative_path "$install_libdir" "$bindir" tdlname=$func_relative_path_result$dlname else # Otherwise fall back on heuristic. tdlname=../bin/$dlname fi ;; esac $ECHO > $output "\ # $outputname - a libtool library file # Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION # # Please DO NOT delete this file! # It is necessary for linking the library. # The name that we can dlopen(3). dlname='$tdlname' # Names of this library. library_names='$library_names' # The name of the static archive. old_library='$old_library' # Linker flags that can not go in dependency_libs. inherited_linker_flags='$new_inherited_linker_flags' # Libraries that this one depends upon. dependency_libs='$dependency_libs' # Names of additional weak libraries provided by this library weak_library_names='$weak_libs' # Version information for $libname. current=$current age=$age revision=$revision # Is this an already installed library? installed=$installed # Should we warn about portability when linking against -modules? shouldnotlink=$module # Files to dlopen/dlpreopen dlopen='$dlfiles' dlpreopen='$dlprefiles' # Directory that this library needs to be installed in: libdir='$install_libdir'" if test "$installed" = no && test "$need_relink" = yes; then $ECHO >> $output "\ relink_command=\"$relink_command\"" fi done } # Do a symbolic link so that the libtool archive can be found in # LD_LIBRARY_PATH before the program is installed. func_show_eval '( cd "$output_objdir" && $RM "$outputname" && $LN_S "../$outputname" "$outputname" )' 'exit $?' ;; esac exit $EXIT_SUCCESS } { test "$opt_mode" = link || test "$opt_mode" = relink; } && func_mode_link ${1+"$@"} # func_mode_uninstall arg... func_mode_uninstall () { $opt_debug RM="$nonopt" files= rmforce= exit_status=0 # This variable tells wrapper scripts just to set variables rather # than running their programs. libtool_install_magic="$magic" for arg do case $arg in -f) func_append RM " $arg"; rmforce=yes ;; -*) func_append RM " $arg" ;; *) func_append files " $arg" ;; esac done test -z "$RM" && \ func_fatal_help "you must specify an RM program" rmdirs= for file in $files; do func_dirname "$file" "" "." dir="$func_dirname_result" if test "X$dir" = X.; then odir="$objdir" else odir="$dir/$objdir" fi func_basename "$file" name="$func_basename_result" test "$opt_mode" = uninstall && odir="$dir" # Remember odir for removal later, being careful to avoid duplicates if test "$opt_mode" = clean; then case " $rmdirs " in *" $odir "*) ;; *) func_append rmdirs " $odir" ;; esac fi # Don't error if the file doesn't exist and rm -f was used. if { test -L "$file"; } >/dev/null 2>&1 || { test -h "$file"; } >/dev/null 2>&1 || test -f "$file"; then : elif test -d "$file"; then exit_status=1 continue elif test "$rmforce" = yes; then continue fi rmfiles="$file" case $name in *.la) # Possibly a libtool archive, so verify it. if func_lalib_p "$file"; then func_source $dir/$name # Delete the libtool libraries and symlinks. for n in $library_names; do func_append rmfiles " $odir/$n" done test -n "$old_library" && func_append rmfiles " $odir/$old_library" case "$opt_mode" in clean) case " $library_names " in *" $dlname "*) ;; *) test -n "$dlname" && func_append rmfiles " $odir/$dlname" ;; esac test -n "$libdir" && func_append rmfiles " $odir/$name $odir/${name}i" ;; uninstall) if test -n "$library_names"; then # Do each command in the postuninstall commands. func_execute_cmds "$postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1' fi if test -n "$old_library"; then # Do each command in the old_postuninstall commands. func_execute_cmds "$old_postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1' fi # FIXME: should reinstall the best remaining shared library. ;; esac fi ;; *.lo) # Possibly a libtool object, so verify it. if func_lalib_p "$file"; then # Read the .lo file func_source $dir/$name # Add PIC object to the list of files to remove. if test -n "$pic_object" && test "$pic_object" != none; then func_append rmfiles " $dir/$pic_object" fi # Add non-PIC object to the list of files to remove. if test -n "$non_pic_object" && test "$non_pic_object" != none; then func_append rmfiles " $dir/$non_pic_object" fi fi ;; *) if test "$opt_mode" = clean ; then noexename=$name case $file in *.exe) func_stripname '' '.exe' "$file" file=$func_stripname_result func_stripname '' '.exe' "$name" noexename=$func_stripname_result # $file with .exe has already been added to rmfiles, # add $file without .exe func_append rmfiles " $file" ;; esac # Do a test to see if this is a libtool program. if func_ltwrapper_p "$file"; then if func_ltwrapper_executable_p "$file"; then func_ltwrapper_scriptname "$file" relink_command= func_source $func_ltwrapper_scriptname_result func_append rmfiles " $func_ltwrapper_scriptname_result" else relink_command= func_source $dir/$noexename fi # note $name still contains .exe if it was in $file originally # as does the version of $file that was added into $rmfiles func_append rmfiles " $odir/$name $odir/${name}S.${objext}" if test "$fast_install" = yes && test -n "$relink_command"; then func_append rmfiles " $odir/lt-$name" fi if test "X$noexename" != "X$name" ; then func_append rmfiles " $odir/lt-${noexename}.c" fi fi fi ;; esac func_show_eval "$RM $rmfiles" 'exit_status=1' done # Try to remove the ${objdir}s in the directories where we deleted files for dir in $rmdirs; do if test -d "$dir"; then func_show_eval "rmdir $dir >/dev/null 2>&1" fi done exit $exit_status } { test "$opt_mode" = uninstall || test "$opt_mode" = clean; } && func_mode_uninstall ${1+"$@"} test -z "$opt_mode" && { help="$generic_help" func_fatal_help "you must specify a MODE" } test -z "$exec_cmd" && \ func_fatal_help "invalid operation mode \`$opt_mode'" if test -n "$exec_cmd"; then eval exec "$exec_cmd" exit $EXIT_FAILURE fi exit $exit_status # The TAGs below are defined such that we never get into a situation # in which we disable both kinds of libraries. Given conflicting # choices, we go for a static library, that is the most portable, # since we can't tell whether shared libraries were disabled because # the user asked for that or because the platform doesn't support # them. This is particularly important on AIX, because we don't # support having both static and shared libraries enabled at the same # time on that platform, so we default to a shared-only configuration. # If a disable-shared tag is given, we'll fallback to a static-only # configuration. But we'll never go from static-only to shared-only. # ### BEGIN LIBTOOL TAG CONFIG: disable-shared build_libtool_libs=no build_old_libs=yes # ### END LIBTOOL TAG CONFIG: disable-shared # ### BEGIN LIBTOOL TAG CONFIG: disable-static build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac` # ### END LIBTOOL TAG CONFIG: disable-static # Local Variables: # mode:shell-script # sh-indentation:2 # End: # vi:sw=2 gtg-trace-0.2-2+dfsg/missing000077500000000000000000000153301234554746700157300ustar00rootroot00000000000000#! /bin/sh # Common wrapper for a few potentially missing GNU programs. scriptversion=2013-10-28.13; # UTC # Copyright (C) 1996-2013 Free Software Foundation, Inc. # Originally written 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 case $1 in --is-lightweight) # Used by our autoconf macros to check whether the available missing # script is modern enough. exit 0 ;; --run) # Back-compat with the calling convention used by older automake. shift ;; -h|--h|--he|--hel|--help) echo "\ $0 [OPTION]... PROGRAM [ARGUMENT]... Run 'PROGRAM [ARGUMENT]...', returning a proper advice when this fails due to PROGRAM being missing or too old. Options: -h, --help display this help and exit -v, --version output version information and exit Supported PROGRAM values: aclocal autoconf autoheader autom4te automake makeinfo bison yacc flex lex help2man 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 # Run the given program, remember its exit status. "$@"; st=$? # If it succeeded, we are done. test $st -eq 0 && exit 0 # Also exit now if we it failed (or wasn't found), and '--version' was # passed; such an option is passed most likely to detect whether the # program is present and works. case $2 in --version|--help) exit $st;; esac # Exit code 63 means version mismatch. This often happens when the user # tries to use an ancient version of a tool on a file that requires a # minimum version. if test $st -eq 63; then msg="probably too old" elif test $st -eq 127; then # Program was missing. msg="missing on your system" else # Program was found and executed, but failed. Give up. exit $st fi perl_URL=http://www.perl.org/ flex_URL=http://flex.sourceforge.net/ gnu_software_URL=http://www.gnu.org/software program_details () { case $1 in aclocal|automake) echo "The '$1' program is part of the GNU Automake package:" echo "<$gnu_software_URL/automake>" echo "It also requires GNU Autoconf, GNU m4 and Perl in order to run:" echo "<$gnu_software_URL/autoconf>" echo "<$gnu_software_URL/m4/>" echo "<$perl_URL>" ;; autoconf|autom4te|autoheader) echo "The '$1' program is part of the GNU Autoconf package:" echo "<$gnu_software_URL/autoconf/>" echo "It also requires GNU m4 and Perl in order to run:" echo "<$gnu_software_URL/m4/>" echo "<$perl_URL>" ;; esac } give_advice () { # Normalize program name to check for. normalized_program=`echo "$1" | sed ' s/^gnu-//; t s/^gnu//; t s/^g//; t'` printf '%s\n' "'$1' is $msg." configure_deps="'configure.ac' or m4 files included by 'configure.ac'" case $normalized_program in autoconf*) echo "You should only need it if you modified 'configure.ac'," echo "or m4 files included by it." program_details 'autoconf' ;; autoheader*) echo "You should only need it if you modified 'acconfig.h' or" echo "$configure_deps." program_details 'autoheader' ;; automake*) echo "You should only need it if you modified 'Makefile.am' or" echo "$configure_deps." program_details 'automake' ;; aclocal*) echo "You should only need it if you modified 'acinclude.m4' or" echo "$configure_deps." program_details 'aclocal' ;; autom4te*) echo "You might have modified some maintainer files that require" echo "the 'autom4te' program to be rebuilt." program_details 'autom4te' ;; bison*|yacc*) echo "You should only need it if you modified a '.y' file." echo "You may want to install the GNU Bison package:" echo "<$gnu_software_URL/bison/>" ;; lex*|flex*) echo "You should only need it if you modified a '.l' file." echo "You may want to install the Fast Lexical Analyzer package:" echo "<$flex_URL>" ;; help2man*) echo "You should only need it if you modified a dependency" \ "of a man page." echo "You may want to install the GNU Help2man package:" echo "<$gnu_software_URL/help2man/>" ;; makeinfo*) echo "You should only need it if you modified a '.texi' file, or" echo "any other file indirectly affecting the aspect of the manual." echo "You might want to install the Texinfo package:" echo "<$gnu_software_URL/texinfo/>" echo "The spurious makeinfo call might also be the consequence of" echo "using a buggy 'make' (AIX, DU, IRIX), in which case you might" echo "want to install GNU make:" echo "<$gnu_software_URL/make/>" ;; *) echo "You might have modified some files without having the proper" echo "tools for further handling them. Check the 'README' file, it" echo "often tells you about the needed prerequisites for installing" echo "this package. You may also peek at any GNU archive site, in" echo "case some other package contains this missing '$1' program." ;; esac } give_advice "$1" | sed -e '1s/^/WARNING: /' \ -e '2,$s/^/ /' >&2 # Propagate the correct exit status (expected to be 127 for a program # not found, 63 for a program that failed due to version mismatch). exit $st # 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: gtg-trace-0.2-2+dfsg/src/000077500000000000000000000000001234554746700151165ustar00rootroot00000000000000gtg-trace-0.2-2+dfsg/src/C/000077500000000000000000000000001234554746700153005ustar00rootroot00000000000000gtg-trace-0.2-2+dfsg/src/C/GTGBasic1_c.c000066400000000000000000000331571234554746700174230ustar00rootroot00000000000000#define _GNU_SOURCE #include #include #include #include #include "GTG.h" #include "GTGPaje.h" #include "GTGBasic.h" #include "GTGReplay.h" #include "GTGOTF_Basic.h" #include "GTGPaje_Basic.h" /* verbose !=0 means debugging mode */ int verbose = 0; static traceType_t traceType; /* Flags that should be used */ gtg_flag_t gtg_flags; char* getName (int procNbr){ switch (traceType){ #ifdef BUILD_PAJE case PAJE : case VITE : return pajeGetName (procNbr); break; #endif #ifdef BUILD_OTF case OTF : break; #endif #ifdef BUILD_TAU case TAU : #endif default : break; } return "0"; } void setTraceType (traceType_t type){ char* res; traceType = type; res = getenv("GTG_VERBOSE"); if(res) verbose = 1; } traceType_t getTraceType (){ return traceType; } int bufferedModeActivated() { return !(gtg_flags & GTG_FLAG_NOTBUF); } trace_return_t initTrace (const char* filename, int rank, gtg_flag_t flags){ /* first, let's initialize gtg */ gtg_color_init(); if( (flags & GTG_FLAG_USE_MPI) && (flags & GTG_FLAG_OUTOFORDER)) { fprintf(stderr, "Warning: you cannot record events out of order when using MPI\n"); flags ^= GTG_FLAG_OUTOFORDER; } gtg_flags = flags; switch (traceType){ #ifdef BUILD_PAJE case PAJE : return pajeInitTrace (filename, rank, flags, FMT_PAJE); break; case VITE : return pajeInitTrace (filename, rank, flags, FMT_VITE); break; #endif /* BUILD_PAJE */ #ifdef BUILD_OTF case OTF : return OTFInitTrace (filename, flags); break; #endif /* BUILD_OTF */ #ifdef BUILD_TAU case TAU : #endif /* BUILD_TAU */ default : break; } return TRACE_ERR_NOT_IMPL; } trace_return_t setCompress (int val){ #ifndef BUILD_OTF (void) val; #endif switch (traceType){ #ifdef BUILD_OTF case OTF : return OTFSetCompress (val); break; #endif case PAJE : return pajeSetCompress(val); break; case TAU : default : return TRACE_SUCCESS; } return TRACE_SUCCESS; } trace_return_t addContType (const char* alias, const char* contType, const char* name){ switch (traceType){ #ifdef BUILD_PAJE case PAJE : case VITE : return pajeAddContType (alias, contType, name); break; #endif #ifdef BUILD_OTF case OTF : return OTFAddContType (alias, contType, name); break; #endif #ifdef BUILD_TAU case TAU : #endif default : break; } return TRACE_SUCCESS; } trace_return_t addStateType (const char* alias, const char* contType, const char* name){ switch (traceType){ #ifdef BUILD_PAJE case PAJE : case VITE : return pajeAddStateType (alias, contType, name); break; #endif #ifdef BUILD_OTF case OTF : return OTFAddStateType (alias, contType, name); break; #endif #ifdef BUILD_TAU case TAU : #endif default : break; } return TRACE_SUCCESS; } trace_return_t addEventType (const char* alias, const char* contType, const char* name){ switch (traceType){ #ifdef BUILD_PAJE case PAJE : case VITE : return pajeAddEventType (alias, contType, name); break; #endif #ifdef BUILD_OTF case OTF : return OTFAddEventType (alias, contType, name); break; #endif #ifdef BUILD_TAU case TAU : #endif default : break; } return TRACE_SUCCESS; } trace_return_t addLinkType (const char* alias , const char* name, const char* contType, const char* srcContType, const char* destContType){ switch (traceType){ #ifdef BUILD_PAJE case PAJE : case VITE : return pajeAddLinkType (alias, name, contType, srcContType, destContType); break; #endif #ifdef BUILD_OTF case OTF : return OTFAddLinkType (alias, name, contType, srcContType, destContType); break; #endif #ifdef BUILD_TAU case TAU : #endif default : break; } return TRACE_SUCCESS; } trace_return_t addVarType (const char* alias , const char* name, const char* contType){ switch (traceType){ #ifdef BUILD_PAJE case PAJE : case VITE : return pajeAddVarType (alias, contType, name); break; #endif #ifdef BUILD_OTF case OTF : return OTFAddVarType (alias, contType, name); break; #endif #ifdef BUILD_TAU case TAU : #endif default : break; } return TRACE_SUCCESS; } trace_return_t addEntityValue (const char* alias, const char* entType, const char* name , gtg_color_t p_color){ switch (traceType){ #ifdef BUILD_PAJE case PAJE : case VITE : return pajeAddEntityValue (alias, entType, name, Paje_get_color(p_color)); break; #endif #ifdef BUILD_OTF case OTF : return OTFAddEntityValue (alias, entType, name, OTF_get_color(p_color)); break; #endif #ifdef BUILD_TAU case TAU : #endif default : break; } return TRACE_SUCCESS; } trace_return_t addContainer (varPrec time, const char* alias , const char* type, const char* container, const char* name, const char* file){ #ifdef BUILD_OTF /* for OTF traces, adding a container consists in two steps: * 1 - defining the container (this appears in the trace headers) * 2 - starting the container (this appears in the body) * We need to define the container right now so that it can be refered to * before its start (for example a StartLink event may use this container * before its creation) */ if (traceType == OTF){ return OTFDefineContainer (alias, type, container, name, file); } #endif if(gtg_flags & GTG_FLAG_OUTOFORDER) { /* if the application records events out of order, don't execute this function right now. */ gtg_record(event_addContainer, time, alias, type, container, name, file); return TRACE_SUCCESS; } switch (traceType){ #ifdef BUILD_PAJE case PAJE : return pajeSeqAddContainer (time, alias, type, container, name); break; case VITE : return pajeAddContainer (time, alias, type, container, name, file); break; #endif #ifdef BUILD_OTF case OTF : return OTFStartContainer (time, alias, type, container, name, file); break; #endif #ifdef BUILD_TAU case TAU : #endif default : break; } return TRACE_SUCCESS; } trace_return_t destroyContainer (varPrec time, const char* name, const char* type){ if(gtg_flags & GTG_FLAG_OUTOFORDER) { gtg_record(event_destroyContainer, time, name, type); return TRACE_SUCCESS; } switch (traceType){ #ifdef BUILD_PAJE case PAJE : case VITE : return pajeDestroyContainer (time, name, type); break; #endif #ifdef BUILD_OTF case OTF : return OTFDestroyContainer (time, name, type); break; #endif #ifdef BUILD_TAU case TAU : #endif default : break; } return TRACE_SUCCESS; } trace_return_t setState (varPrec time, const char* type, const char* cont, const char* val){ if(gtg_flags & GTG_FLAG_OUTOFORDER) { gtg_record(event_setState, time, type, cont, val); return TRACE_SUCCESS; } switch (traceType){ #ifdef BUILD_PAJE case PAJE : case VITE : return pajeSetState (time, type, cont, val); break; #endif #ifdef BUILD_OTF case OTF : return OTFSetState (time, type, cont, val); break; #endif #ifdef BUILD_TAU case TAU : #endif default : break; } return TRACE_SUCCESS; } trace_return_t pushState (varPrec time, const char* type, const char* cont, const char* val){ if(gtg_flags & GTG_FLAG_OUTOFORDER) { gtg_record(event_pushState, time, type, cont, val); return TRACE_SUCCESS; } switch (traceType){ #ifdef BUILD_PAJE case PAJE : case VITE : return pajePushState (time, type, cont, val); break; #endif #ifdef BUILD_OTF case OTF : return OTFPushState (time, type, cont, val); break; #endif #ifdef BUILD_TAU case TAU : #endif default : break; } return TRACE_SUCCESS; } trace_return_t popState (varPrec time, const char* type, const char* cont){ if(gtg_flags & GTG_FLAG_OUTOFORDER) { gtg_record(event_popState, time, type, cont); return TRACE_SUCCESS; } switch (traceType){ #ifdef BUILD_PAJE case PAJE : case VITE : return pajePopState (time, type, cont); break; #endif #ifdef BUILD_OTF case OTF : return OTFPopState (time, type, cont); break; #endif #ifdef BUILD_TAU case TAU : #endif default : break; } return TRACE_SUCCESS; } trace_return_t addEvent (varPrec time, const char* type, const char* cont, const char* val){ if(gtg_flags & GTG_FLAG_OUTOFORDER) { gtg_record(event_addEvent, time, type, cont, val); return TRACE_SUCCESS; } switch (traceType){ #ifdef BUILD_PAJE case PAJE : case VITE : return pajeAddEvent (time, type, cont, val); break; #endif #ifdef BUILD_OTF case OTF : return OTFAddEvent (time, type, cont, val); break; #endif #ifdef BUILD_TAU case TAU : #endif default : break; } return TRACE_SUCCESS; } trace_return_t startLink (varPrec time, const char* type, const char* cont, const char* src, const char* dest, const char* val, const char* key){ if(gtg_flags & GTG_FLAG_OUTOFORDER) { gtg_record(event_startLink, time, type, cont, src, dest, val, key); return TRACE_SUCCESS; } #ifndef BUILD_OTF (void) dest; #endif switch (traceType){ #ifdef BUILD_PAJE case PAJE : case VITE : return pajeStartLink (time, type, cont, src, val, key); break; #endif #ifdef BUILD_OTF case OTF : return OTFStartLink (time, type, src, dest, val, key); break; #endif #ifdef BUILD_TAU case TAU : #endif default : break; } return TRACE_SUCCESS; } trace_return_t endLink (varPrec time, const char* type, const char* cont, const char* src, const char* dest, const char* val, const char* key){ if(gtg_flags & GTG_FLAG_OUTOFORDER) { gtg_record(event_endLink, time, type, cont, src, dest, val, key); return TRACE_SUCCESS; } #ifndef BUILD_OTF (void) src; #endif switch (traceType){ #ifdef BUILD_PAJE case PAJE : case VITE : return pajeEndLink (time, type, cont, dest, val, key); break; #endif #ifdef BUILD_OTF case OTF : return OTFEndLink (time, type, src, dest, val, key); break; #endif #ifdef BUILD_TAU case TAU : #endif default : break; } return TRACE_SUCCESS; } trace_return_t setVar (varPrec time, const char* type, const char* cont, varPrec val){ if(gtg_flags & GTG_FLAG_OUTOFORDER) { gtg_record(event_setVar, time, type, cont, val); return TRACE_SUCCESS; } switch (traceType){ #ifdef BUILD_PAJE case PAJE : case VITE : return pajeSetVar (time, type, cont, val); break; #endif #ifdef BUILD_OTF case OTF : return OTFSetVar (time, type, cont, val); break; #endif #ifdef BUILD_TAU case TAU : #endif default : break; } return TRACE_SUCCESS; } trace_return_t addVar (varPrec time, const char* type, const char* cont, varPrec val){ if(gtg_flags & GTG_FLAG_OUTOFORDER) { gtg_record(event_addVar, time, type, cont, val); return TRACE_SUCCESS; } switch (traceType){ #ifdef BUILD_PAJE case PAJE : case VITE : return pajeAddVar (time, type, cont, val); break; #endif #ifdef BUILD_OTF case OTF : return OTFAddVar (time, type, cont, val); break; #endif #ifdef BUILD_TAU case TAU : #endif default : break; } return TRACE_SUCCESS; } trace_return_t subVar (varPrec time, const char* type, const char* cont, varPrec val){ if(gtg_flags & GTG_FLAG_OUTOFORDER) { gtg_record(event_subVar, time, type, cont, val); return TRACE_SUCCESS; } switch (traceType){ #ifdef BUILD_PAJE case PAJE : case VITE : return pajeSubVar (time, type, cont, val); break; #endif #ifdef BUILD_OTF case OTF : return OTFSubVar (time, type, cont, val); break; #endif #ifdef BUILD_TAU case TAU : #endif default : break; } return TRACE_SUCCESS; } trace_return_t AddComment (const char* comment){ switch (traceType){ #ifdef BUILD_PAJE case PAJE : case VITE : return pajeAddComment (comment); break; #endif #ifdef BUILD_OTF case OTF : return OTFAddComment (comment); break; #endif #ifdef BUILD_TAU case TAU : #endif default : break; } return TRACE_SUCCESS; } trace_return_t endTrace (){ int ret = TRACE_ERR_CLOSE; if(gtg_flags & GTG_FLAG_OUTOFORDER) { gtg_write_events(-1); } switch (traceType){ #ifdef BUILD_PAJE case PAJE : ret = pajeEndTrace (); break; case VITE : ret = viteEndTrace (); break; #endif #ifdef BUILD_OTF case OTF : ret = OTFEndTrace (); break; #endif #ifdef BUILD_TAU case TAU : #endif default : break; } gtg_color_exit(); return ret; } gtg-trace-0.2-2+dfsg/src/C/GTGColor.c000066400000000000000000000151321234554746700170660ustar00rootroot00000000000000/** * \file GTGColor.c * \version 0.1 * \brief * * This file defines some basic colors to use in entity values for GTG. * */ #include #include #include "GTGColor.h" #define NB_DEFAULT_COLOR 22 struct gtg_color __gtg_colors[NB_DEFAULT_COLOR]; gtg_color_t GTG_BLACK; gtg_color_t GTG_RED; gtg_color_t GTG_GREEN; gtg_color_t GTG_BLUE; gtg_color_t GTG_WHITE; gtg_color_t GTG_TEAL; gtg_color_t GTG_DARKGREY; gtg_color_t GTG_YELLOW; gtg_color_t GTG_PURPLE; gtg_color_t GTG_LIGHTBROWN; gtg_color_t GTG_LIGHTGREY; gtg_color_t GTG_DARKBLUE; gtg_color_t GTG_PINK; gtg_color_t GTG_DARKPINK; gtg_color_t GTG_SEABLUE; gtg_color_t GTG_KAKI; gtg_color_t GTG_REDBLOOD; gtg_color_t GTG_BROWN; gtg_color_t GTG_GRENAT; gtg_color_t GTG_ORANGE; gtg_color_t GTG_MAUVE; gtg_color_t GTG_LIGHTPINK; /** * \ingroup color * \brief Black color */ #define GTG_BLACK_RGB (gtg_rgb_color_t) GTG_COLOR_SET_COLOR(0, 0, 0) /** * \ingroup color * \brief Red color */ #define GTG_RED_RGB (gtg_rgb_color_t) GTG_COLOR_SET_COLOR(255, 0, 0) /** * \ingroup color * \brief Green color */ #define GTG_GREEN_RGB (gtg_rgb_color_t) GTG_COLOR_SET_COLOR(0, 255, 0) /** * \ingroup color * \brief Blue color */ #define GTG_BLUE_RGB (gtg_rgb_color_t) GTG_COLOR_SET_COLOR(0, 0, 255) /** * \ingroup color * \brief White color */ #define GTG_WHITE_RGB (gtg_rgb_color_t) GTG_COLOR_SET_COLOR(255, 255, 255) /** * \ingroup color * \brief Teal color */ #define GTG_TEAL_RGB (gtg_rgb_color_t) GTG_COLOR_SET_COLOR(0, 255, 255) /** * \ingroup color * \brief Dark grey color */ #define GTG_DARKGREY_RGB (gtg_rgb_color_t) GTG_COLOR_SET_COLOR(85, 85, 85) /** * \ingroup color * \brief Yellow color */ #define GTG_YELLOW_RGB (gtg_rgb_color_t) GTG_COLOR_SET_COLOR(255, 255, 0) /** * \ingroup color * \brief Purple color */ #define GTG_PURPLE_RGB (gtg_rgb_color_t) GTG_COLOR_SET_COLOR(153, 25, 230) /** * \ingroup color * \brief Light brown color */ #define GTG_LIGHTBROWN_RGB (gtg_rgb_color_t) GTG_COLOR_SET_COLOR(170, 130, 130) /** * \ingroup color * \brief Light grey color */ #define GTG_LIGHTGREY_RGB (gtg_rgb_color_t) GTG_COLOR_SET_COLOR(200, 200, 200) /** * \ingroup color * \brief Dark blue color */ #define GTG_DARKBLUE_RGB (gtg_rgb_color_t) GTG_COLOR_SET_COLOR(0, 0, 80) /** * \ingroup color * \brief Pink color */ #define GTG_PINK_RGB (gtg_rgb_color_t) GTG_COLOR_SET_COLOR(255, 0, 255) /** * \ingroup color * \brief Dark pink color */ #define GTG_DARKPINK_RGB (gtg_rgb_color_t) GTG_COLOR_SET_COLOR(180, 80, 180) /** * \ingroup color * \brief Sea blue color */ #define GTG_SEABLUE_RGB (gtg_rgb_color_t) GTG_COLOR_SET_COLOR(25, 128, 200) /** * \ingroup color * \brief Kaki color */ #define GTG_KAKI_RGB (gtg_rgb_color_t) GTG_COLOR_SET_COLOR(80, 100, 25) /** * \ingroup color * \brief Red blood color */ #define GTG_REDBLOOD_RGB (gtg_rgb_color_t) GTG_COLOR_SET_COLOR(200, 25, 25) /** * \ingroup color * \brief Brown color */ #define GTG_BROWN_RGB (gtg_rgb_color_t) GTG_COLOR_SET_COLOR(100, 25, 25) /** * \ingroup color * \brief Grenat color */ #define GTG_GRENAT_RGB (gtg_rgb_color_t) GTG_COLOR_SET_COLOR(100, 0, 80) /** * \ingroup color * \brief Orange color */ #define GTG_ORANGE_RGB (gtg_rgb_color_t) GTG_COLOR_SET_COLOR(255, 160, 0) /** * \ingroup color * \brief Mauve color */ #define GTG_MAUVE_RGB (gtg_rgb_color_t) GTG_COLOR_SET_COLOR(128, 0, 255) /** * \ingroup color * \brief Light pink color */ #define GTG_LIGHTPINK_RGB (gtg_rgb_color_t) GTG_COLOR_SET_COLOR(255, 128, 255) void __init_color(gtg_color_t p_color, const char* name, gtg_rgb_color_t rgb) { p_color->color_name = (char*)malloc((strlen(name)+1)*sizeof(char)); strncpy(p_color->color_name, name, strlen(name)+1); p_color->rgb = rgb; } static int __gtg_color_initialized = 0; void gtg_color_init() { /* make sure that this function is only run once */ if(__gtg_color_initialized) return; __gtg_color_initialized = 1; /* fill the default color structures */ GTG_BLACK = &__gtg_colors[0]; GTG_RED = &__gtg_colors[1]; GTG_GREEN = &__gtg_colors[2]; GTG_BLUE = &__gtg_colors[3]; GTG_WHITE = &__gtg_colors[4]; GTG_TEAL = &__gtg_colors[5]; GTG_DARKGREY = &__gtg_colors[6]; GTG_YELLOW = &__gtg_colors[7]; GTG_PURPLE = &__gtg_colors[8]; GTG_LIGHTBROWN = &__gtg_colors[9]; GTG_LIGHTGREY = &__gtg_colors[10]; GTG_DARKBLUE = &__gtg_colors[11]; GTG_PINK = &__gtg_colors[12]; GTG_DARKPINK = &__gtg_colors[13]; GTG_SEABLUE = &__gtg_colors[14]; GTG_KAKI = &__gtg_colors[15]; GTG_REDBLOOD = &__gtg_colors[16]; GTG_BROWN = &__gtg_colors[17]; GTG_GRENAT = &__gtg_colors[18]; GTG_ORANGE = &__gtg_colors[19]; GTG_MAUVE = &__gtg_colors[20]; GTG_LIGHTPINK = &__gtg_colors[21]; __init_color(GTG_BLACK , "BLACK" , GTG_BLACK_RGB); __init_color(GTG_RED , "RED" , GTG_RED_RGB); __init_color(GTG_GREEN , "GREEN" , GTG_GREEN_RGB); __init_color(GTG_BLUE , "BLUE" , GTG_BLUE_RGB); __init_color(GTG_WHITE , "WHITE" , GTG_WHITE_RGB); __init_color(GTG_TEAL , "TEAL" , GTG_TEAL_RGB); __init_color(GTG_DARKGREY , "DARKGREY" , GTG_DARKGREY_RGB); __init_color(GTG_YELLOW , "YELLOW" , GTG_YELLOW_RGB); __init_color(GTG_PURPLE , "PURPLE" , GTG_PURPLE_RGB); __init_color(GTG_LIGHTBROWN, "LIGHTBROWN", GTG_LIGHTBROWN_RGB); __init_color(GTG_LIGHTGREY , "LIGHTGREY" , GTG_LIGHTGREY_RGB); __init_color(GTG_DARKBLUE , "DARKBLUE" , GTG_DARKBLUE_RGB); __init_color(GTG_PINK , "PINK" , GTG_PINK_RGB); __init_color(GTG_DARKPINK , "DARKPINK" , GTG_DARKPINK_RGB); __init_color(GTG_SEABLUE , "SEABLUE" , GTG_SEABLUE_RGB); __init_color(GTG_KAKI , "KAKI" , GTG_KAKI_RGB); __init_color(GTG_REDBLOOD , "REDBLOOD" , GTG_REDBLOOD_RGB); __init_color(GTG_BROWN , "BROWN" , GTG_BROWN_RGB); __init_color(GTG_GRENAT , "GRENAT" , GTG_GRENAT_RGB); __init_color(GTG_ORANGE , "ORANGE" , GTG_ORANGE_RGB); __init_color(GTG_MAUVE , "MAUVE" , GTG_MAUVE_RGB); __init_color(GTG_LIGHTPINK , "LIGHTPINK" , GTG_LIGHTPINK_RGB); } void gtg_color_exit() { int i; for (i=0; icolor_name != NULL ) free(color->color_name); free(color); } gtg-trace-0.2-2+dfsg/src/C/GTGMemory.c000066400000000000000000000043261234554746700172630ustar00rootroot00000000000000#include #include #include "GTGMemory.h" #define CTRL_ALLOC(ptr) \ { \ if(!ptr) { \ fprintf(stderr, "Cannot allocate memory. Aborting\n"); \ abort(); \ } \ } /* Initialize the allocator */ void gtg_block_memory_init(gtg_memory_t *memory, size_t block_len, long initial_block_number) { gtg_memory_t temp_mem = NULL; /* allocate the memory descriptor */ temp_mem = (gtg_memory_t) malloc(sizeof(struct gtg_memory)); CTRL_ALLOC(temp_mem); if (block_len < sizeof(void *)) { block_len = sizeof(void *); } /* allocate n * block_len */ temp_mem->first_mem = malloc((initial_block_number * block_len) + sizeof(void *)); CTRL_ALLOC(temp_mem->first_mem); memset(temp_mem->first_mem, 0, (initial_block_number * block_len) + sizeof(void *)); temp_mem->current_mem = temp_mem->first_mem; *(void **) ((char *) temp_mem->current_mem + (initial_block_number * block_len)) = NULL; temp_mem->block_len = block_len; temp_mem->mem_len = initial_block_number; temp_mem->first_free = NULL; temp_mem->first_new = 0; temp_mem->nb_allocated = 0; *memory = temp_mem; } /* Allocate a block of data */ void* gtg_block_malloc(gtg_memory_t memory) { void *ptr = NULL; if (memory->first_free != NULL) { /* There is a remaining block in memory */ ptr = memory->first_free; memory->first_free = *(void **) ptr; } else { if (memory->first_new >= memory->mem_len) { /* The allocated memory is exhausted. Allocate a larger space. */ const size_t mem_size = memory->mem_len * memory->block_len; void *new_mem = malloc(mem_size + sizeof(void *)); memset(new_mem, 0, mem_size + sizeof(void *)); *(void **) ((char *) new_mem + mem_size) = NULL; *(void **) ((char *) memory->current_mem + mem_size) = new_mem; memory->current_mem = new_mem; memory->first_new = 0; } ptr = (char *) memory->current_mem + memory->block_len * memory->first_new; memory->first_new++; } memory->nb_allocated++; return ptr; } /* Free a block of data */ void gtg_block_free(gtg_memory_t memory, void *ptr) { *(void **) ptr = memory->first_free; memory->first_free = ptr; memory->nb_allocated--; } gtg-trace-0.2-2+dfsg/src/C/GTGReplay.c000066400000000000000000000352531234554746700172520ustar00rootroot00000000000000#define _GNU_SOURCE #include #include #include #include #include "GTGBasic.h" #include "GTGReplay.h" #include "GTGMemory.h" #define MAX_EVENTS (2048*1024) #define SHORTCUT_RATIO 1000 extern gtg_flag_t gtg_flags; #define likely(x) __builtin_expect(!!(x), 1) #define unlikely(x) __builtin_expect(!!(x), 0) /* This file is used for ensuring that events are recorded in the correct order. * This is done by storing events in a list. The list is flushed when full or at the * end of the application. When the list is flushed, when event is recorded (by calling * addVar, startLink, etc.) * When adding an event to the list, it is inserted in the correct order (so the list * is sorted). In order to avoid browsing the entire list when inserting an event, * a 'shortcut' list is also implemented. One event out of 1000 is inserted in the * shortcut list. Thus, looking for the place to insert an element, we can browse the * shortcut list until we find the right shortcut. We then browse the event list, starting * from this shortcut. This permits to speed up the insertion of events by approx 1000. */ /* event list */ struct event_list_t { struct event_list_t *next; struct event_list_t *prev; enum event_type_t type; varPrec time; uint64_t data[6]; }; /* shortcut list */ struct event_list_shortcut_t { struct event_list_shortcut_t *next; struct event_list_shortcut_t *prev; varPrec time; struct event_list_t* event; }; /* queue and tail of the shortcut list */ static struct event_list_shortcut_t* __shortcut_first = NULL; static struct event_list_shortcut_t* __shortcut_last = NULL; /* queue and tail of the event list */ static struct event_list_t* __first_event = NULL; static struct event_list_t* __last_event = NULL; static int nb_events = 0; /* block allocators used for the event list and the shortcut list */ gtg_memory_t memory; gtg_memory_t shortcut_memory; /* insert new_event *after* cur_event */ static void __event_list_insert_after(struct event_list_t*new_event, struct event_list_t *cur_event) { assert(cur_event); new_event->prev = cur_event; new_event->next = cur_event->next; cur_event->next = new_event; if(cur_event->next) new_event->next->prev = new_event; else /* this is the last event */ __last_event = new_event; } /* insert new_event *before* cur_event */ static void __event_list_insert_before(struct event_list_t*new_event, struct event_list_t *cur_event) { assert(cur_event); new_event->next = cur_event; new_event->prev = cur_event->prev; cur_event->prev = new_event; if(cur_event->prev) new_event->prev->next = new_event; else __first_event = new_event; } /* for debugging purpose, print the list of recorded events */ static inline void __gtg_print_events() { struct event_list_t* cur_event = __first_event; while(cur_event) { printf("[%p]\t T=%f \t event type=%d\n", (void*)cur_event, cur_event->time, cur_event->type); cur_event = cur_event->next; } } static inline void __gtg_print_n_events(int nb_events, struct event_list_t *p_event) { struct event_list_t* cur_event = p_event; int i; for(i=0; itime, cur_event->type); cur_event = cur_event->next; } } /* run the first nb_events_to_write events * if nb_events_to_write == 1, it run all recorded events. */ void gtg_write_events(long nb_events_to_write) { struct event_list_t* cur_event = __first_event; struct event_list_t* prev; struct event_list_t* next; void* ptr; volatile int n = 0; int cpt=0; /* unset the outoforder flag so that functions can be called for real */ gtg_flags ^= GTG_FLAG_OUTOFORDER; while(cur_event && ((nb_events_to_write<0) ||(n < nb_events_to_write))) { /* for each event, call the corresponding function */ cpt++; switch(cur_event->type) { case event_addContainer: /* get the 5 parameters that were recorded and pass them to addContainer */ addContainer(cur_event->time, (char*)cur_event->data[0], (char*)cur_event->data[1], (char*)cur_event->data[2], (char*)cur_event->data[3], (char*)cur_event->data[4]); break; case event_destroyContainer: destroyContainer(cur_event->time, (char*)cur_event->data[0], (char*)cur_event->data[1]); break; case event_setState: setState(cur_event->time, (char*)cur_event->data[0], (char*)cur_event->data[1], (char*)cur_event->data[2]); break; case event_pushState: pushState(cur_event->time, (char*)cur_event->data[0], (char*)cur_event->data[1], (char*)cur_event->data[2]); break; case event_popState: popState(cur_event->time, (char*)cur_event->data[0], (char*)cur_event->data[1]); break; case event_addEvent: addEvent(cur_event->time, (char*)cur_event->data[0], (char*)cur_event->data[1], (char*)cur_event->data[2]); break; case event_startLink: startLink(cur_event->time, (char*)cur_event->data[0], (char*)cur_event->data[1], (char*)cur_event->data[2], (char*)cur_event->data[3], (char*)cur_event->data[4], (char*)cur_event->data[5]); break; case event_endLink: endLink(cur_event->time, (char*)cur_event->data[0], (char*)cur_event->data[1], (char*)cur_event->data[2], (char*)cur_event->data[3], (char*)cur_event->data[4], (char*)cur_event->data[5]); break; case event_setVar: setVar(cur_event->time, (char*)cur_event->data[0], (char*)cur_event->data[1], (double)cur_event->data[2]); break; case event_addVar: addVar(cur_event->time, (char*)cur_event->data[0], (char*)cur_event->data[1], (double)cur_event->data[2]); break; case event_subVar: subVar(cur_event->time, (char*)cur_event->data[0], (char*)cur_event->data[1], (double)cur_event->data[2]); break; default: fprintf(stderr, "Unknown event type: %d\n", cur_event->type); } /* remove the current item from the list */ prev = cur_event->prev; next = cur_event->next; if(prev) prev->next = next; if(next) next->prev = prev; n++; nb_events--; /* delete the current event */ ptr = cur_event; cur_event = next; gtg_block_free(memory, ptr); } __first_event = cur_event; /* update the shortcut list */ { struct event_list_shortcut_t *cur_shortcut = __shortcut_first; if(__first_event) { /* the event list is not empty. Remove the shortcut that correspond * to events that were processed. */ while(cur_shortcut && cur_shortcut->time < __first_event->time) { struct event_list_shortcut_t * next_shortcut = cur_shortcut->next; next_shortcut->prev = NULL; gtg_block_free(shortcut_memory, cur_shortcut); cur_shortcut = next_shortcut; } } else { /* the event list is empty. Let's empty the shortcut list. */ while(cur_shortcut) { struct event_list_shortcut_t * next_shortcut = cur_shortcut->next; cur_shortcut->prev = NULL; gtg_block_free(shortcut_memory, cur_shortcut); cur_shortcut = next_shortcut; } } __shortcut_first = cur_shortcut; if(!__shortcut_first) /* if the shortcut list is empty, update shortcut_last */ __shortcut_last = NULL; } /* set the outoforder flag so that the next calls to functions can be recorded */ gtg_flags |= GTG_FLAG_OUTOFORDER; } /* update the shortcut list */ static void __gtg_insert_shortcut(struct event_list_t* new_event) { struct event_list_shortcut_t *new_shortcut; /* create a shortcut (roughly) once every 1000 events */ if(nb_events % SHORTCUT_RATIO) return; /* allocate and initialize the new shortcut */ new_shortcut = gtg_block_malloc(shortcut_memory); new_shortcut->time = new_event->time; new_shortcut->event = new_event; /* insert the shortcut in the shortcut list */ if(!__shortcut_first || !__shortcut_last) { /* the shortcut list is not initialized yet */ __shortcut_first = new_shortcut; __shortcut_last = new_shortcut; new_shortcut->next = NULL; new_shortcut->prev = NULL; return; } /* browse the shortcut list and find where to insert new_shortcut */ { struct event_list_shortcut_t * cur_shortcut = __shortcut_last; while(cur_shortcut && cur_shortcut->time > new_shortcut->time) { cur_shortcut = cur_shortcut->prev; } if(!cur_shortcut) { /* we need to insert new_shortcut at the beginning of the list */ new_shortcut->next = __shortcut_first; new_shortcut->prev = NULL; new_shortcut->next->prev = new_shortcut; __shortcut_first = new_shortcut; return; } /* insert new_shortcut between cur_shortcut and cur_shortcut->next */ new_shortcut->next = cur_shortcut->next; new_shortcut->prev = cur_shortcut; cur_shortcut->next = new_shortcut; if(new_shortcut->next) new_shortcut->next->prev = new_shortcut; else { __shortcut_last = new_shortcut; } } } /* Insert an event in the list of events. * At any time, this list is sorted. */ static void __gtg_insert(struct event_list_t* new_event) { struct event_list_t* cur_event = NULL; struct event_list_t* next_event = NULL; /* The list of event is not initialized yet */ if(!__last_event || !__first_event) { __last_event = new_event; __first_event = new_event; new_event->next = NULL; new_event->prev = NULL; goto out; } /* This is the 'normal' case: the event is the last one */ if(likely(new_event->time >= __last_event->time)) { /* the event is the last one */ __last_event->next = new_event; new_event->prev = __last_event; new_event->next = NULL; __last_event = new_event; goto out; } if(new_event->time < __first_event->time) { /* the event is the first one */ __first_event->prev = new_event; new_event->next = __first_event; new_event->prev = NULL; __first_event = new_event; goto out; } /* the last event happened after new_event. * let's browse the list and find a place to insert new_event. */ cur_event = __first_event; next_event = __first_event->next; if(unlikely(!next_event)) { /* only one event in the list. We know that it happened after new_event. * let's insert new_event in the first position */ /* this should never happen */ new_event->next = __first_event; __first_event->prev = new_event; __first_event = new_event; goto out; } /* browse the shortcut list starting from the end (since it is likely that new_event * happened not so long before last_event. */ { struct event_list_shortcut_t* cur_shortcut = __shortcut_last; while(cur_shortcut) { if(cur_shortcut->time <= new_event->time) { /* we need to insert new_event between cur_shortcut and cur_shortcut->next */ /* browse the list, starting from cur_shortcut->event */ cur_event = cur_shortcut->event; while(cur_event->time <= new_event->time) { /* We don't need to check for the end of the list. * This should never happen since this case is handled earlier */ cur_event = cur_event->next; } assert(cur_event->prev->time <= new_event->time); /* insert new_event between cur_event->prev and cur_event */ __event_list_insert_before(new_event, cur_event); goto out; } if(cur_shortcut->prev) cur_shortcut = cur_shortcut->prev; else /* we browsed the whole list but didn't find the place where to insert the event. */ break; } } /* cur_shortcut is NULL */ /* browse the list starting from the end (since it is likely that new_event * happened not so long before last_event. */ cur_event = __last_event; while(cur_event->time > new_event->time) { if(cur_event->prev) cur_event = cur_event->prev; else break; } /* insert new_event after cur_event */ __event_list_insert_after(new_event, cur_event); out: __gtg_insert_shortcut(new_event); } /* copy nb_string string parameters and nb_double double parameters into the data array of evt * warning: actually, the parameters are not copied (in the case of string) */ static void __copy_args(struct event_list_t* evt, int nb_string, int nb_double, va_list args) { int i; for(i=0; idata[i] = (uint64_t) x; } for(i=nb_string; idata[i] = (uint64_t)x; } } /* postpone the recording of an event */ void gtg_record(enum event_type_t type, varPrec time, ...) { struct event_list_t* new_event; va_list arguments; static int initialized=0; if(!initialized) { /* initialize the block allocator */ gtg_block_memory_init(&memory, sizeof(struct event_list_t), MAX_EVENTS); gtg_block_memory_init(&shortcut_memory, sizeof(struct event_list_shortcut_t), MAX_EVENTS/1000); initialized = 1; } /* If the buffer is full, flush half of the recorded events. * There may be out of order events, but it is quite unlikely. */ if(nb_events > MAX_EVENTS) gtg_write_events(MAX_EVENTS/2); /* allocate the new event */ new_event = gtg_block_malloc(memory); new_event->next = NULL; new_event->type = type; new_event->time = time; va_start (arguments, time); /* Depending on the type of event, copy its parameters */ switch(type) { case event_startLink: case event_endLink: /* 6 parameters */ __copy_args(new_event, 6, 0, arguments); break; case event_addContainer: /* 5 parameters */ __copy_args(new_event, 5, 0, arguments); break; case event_setState: case event_pushState: case event_addEvent: /* 3 parameters */ __copy_args(new_event, 3, 0, arguments); break; case event_setVar: case event_addVar: case event_subVar: /* 2 string parameters + 1 double */ __copy_args(new_event, 2, 1, arguments); break; case event_destroyContainer: case event_popState: /* 2 parameters */ __copy_args(new_event, 2, 0, arguments); break; default: fprintf(stderr, "Unknown event type: %d\n", type); } va_end (arguments); /* Insert the new event in the list */ nb_events++; __gtg_insert(new_event); } gtg-trace-0.2-2+dfsg/src/C/OTF_GTGBasic1_c.c000066400000000000000000000434141234554746700201300ustar00rootroot00000000000000#ifdef BUILD_OTF #define _GNU_SOURCE #include #include #include #include "GTG.h" #include "GTGOTF.h" /* set in GTGBasic1_c.c * verbose !=0 means debugging mode */ extern int verbose; /* set to 'val' if the initialization should invoke set_compression * This may happen when setCompress is called before initTrace */ int use_compress = 0; /* Flags that should be used. */ static gtg_flag_t otf_flags; /* OTF data */ static OTF_FileManager* manager = NULL; static OTF_Writer* writer = NULL; /* each of these instances of structures corresponds to the NIL value. It contains: * - the head of the list * - the first identifier */ ContainerType_t ctType; Container_t conts; StateType_t stateTypes; EntityValue_t states; VariableType_t variableTypes; Variable_t variables; EventType_t eventTypes; LinkType_t linkTypes; /* Root name */ static char *filename = NULL; #define CHECK_RESULT(__func__) { \ if(__func__ != 1) { \ fprintf(stderr, "Error while writing the OTF trace\n"); \ abort(); \ } \ } #define TIMER_RES 100000. struct otf_color otf_color_null; const otf_color_t OTF_get_color(gtg_color_t color) { /* todo */ return &otf_color_null; } /* * Local methods for OTF only, will be put in an other file after to be cleaner than now... */ #define getXXXPtrFromName(_type_, list_head) \ struct _type_ *get##_type_##PtrFromName(const char *name) { \ struct _type_ *ptr; \ if(name == NULL) { \ return NULL; \ } \ gtg_list_for_each_entry(ptr, &(list_head).token, token) { \ if(strcmp(name, ptr->name) == 0 \ || strcmp(name, ptr->alias) == 0) { \ return ptr; \ } \ } \ return NULL; \ } #define getXXXFromName(__type__) \ int get##__type__##FromName(const char *name) { \ struct __type__ *res = get##__type__##PtrFromName(name); \ return (res? res->id : __type__##_NIL); \ } /* generate functions that permit to retrieve a pointer to an object*/ getXXXPtrFromName(ContainerType, ctType) getXXXPtrFromName(Container, conts) getXXXPtrFromName(StateType, stateTypes) getXXXPtrFromName(EntityValue, states) getXXXPtrFromName(VariableType, variableTypes) getXXXPtrFromName(EventType, eventTypes) getXXXPtrFromName(LinkType, linkTypes) /* generate functions that permit to retrieve the id of objects */ getXXXFromName(ContainerType) getXXXFromName(Container) getXXXFromName(StateType) getXXXFromName(EntityValue) getXXXFromName(VariableType) getXXXFromName(EventType) getXXXFromName(LinkType) /* * return a pointer to the Variable whose container is cont and whose variable type is type. * return NULL if not found */ Variable_t *getVariablePtrFromCont(int cont, int type) { struct Variable *ptr; /* todo: use one list of variable per container */ gtg_list_for_each_entry(ptr, &(variables).token, token) { if(type == ptr->type && cont == ptr->parent) { return ptr; } } return NULL; } /* * return the id of the Variable whose container is cont and whose variable type is type. * return NULL if not found */ int getVariableFromCont(int cont, int type) { Variable_t *res = getVariablePtrFromCont(cont, type); return (res? res->id : Variable_NIL); } /* Initialize all the OTF-specific variables */ static void __OTF_init() { /* initialize otf_color_null */ asprintf(&otf_color_null.colorID, "NO COLOR"); otf_color_null.red = 0; otf_color_null.green = 0; otf_color_null.blue = 0; /* initialize all the lists/stacks */ init_ContainerType(ctType); init_Container(conts); init_StateType(stateTypes); init_EntityValue(states); init_VariableType(variableTypes); init_Variable(variables); init_EventType(eventTypes); init_LinkType(linkTypes); } /* Beginning of the implementation of the interface for OTF */ trace_return_t OTFInitTrace(const char* filenam, gtg_flag_t flags) { int ret = TRACE_ERR_OPEN; otf_flags = flags; /* first, let's initialize all the OTF-specific variables */ __OTF_init(); filename = (char *)malloc (sizeof (char)* (strlen (filenam)+1)); strcpy (filename, filenam); /* Open maximum of a MAX_PROCESS files for writing trace */ manager = OTF_FileManager_open(MAX_PROCESS); if(manager == NULL) { fprintf (stderr, "Failed to open a manager for OTF. \n Leaving \n"); return (trace_return_t) ret; } writer = OTF_Writer_open(filename, 0, manager); if(writer == NULL) { OTF_FileManager_close(manager); manager = NULL; fprintf (stderr, "Failed to open a writer for OTF. \n Leaving \n"); return (trace_return_t) ret; } OTF_Writer_writeDefTimerResolution(writer, 0, TIMER_RES); if(use_compress) OTF_Writer_setCompression (writer, use_compress); OTFAddContType("0", NULL, "0"); return TRACE_SUCCESS; } trace_return_t OTFSetCompress(int val) { if(writer) { if(OTF_Writer_setCompression (writer, val)) return TRACE_SUCCESS; } else { /* postpone the invocation of setCompression */ use_compress=val; } return TRACE_ERR_WRITE; } trace_return_t OTFAddContType (const char* alias, const char* contType, const char* name) { uint32_t parent = 0; ContainerType_t *p_cont; if(contType != NULL && strcmp(contType, "0") != 0) { /* get its parent id */ parent = getContainerTypeFromName(contType); } /* allocate the container type, initialise it and add it to the list of * container types. */ alloc_init_struct(ContainerType_t, p_cont, &ctType.token, name, alias); if(verbose) printf("addCtType : name %s, alias %s, contType %s\n", name, alias, contType); return TRACE_SUCCESS; } trace_return_t OTFAddStateType (const char* alias, const char* contType, const char* name) { /* allocate the state type, initialise it and add it to the list of * state types. */ StateType_t *p_state; alloc_init_struct(StateType_t, p_state, &stateTypes.token, name, alias); if(verbose) printf("addStateType : id %d, alias %s, name %s, contType %s\n", p_state->id, alias, name, contType); CHECK_RESULT(OTF_Writer_writeDefFunctionGroup(writer, 0, p_state->id, name)); return TRACE_SUCCESS; } trace_return_t OTFAddEventType (const char* alias, const char* contType, const char* name) { /* allocate the event type, initialise it and add it to the list of * event types. */ EventType_t *p_event; alloc_init_struct(EventType_t, p_event, &eventTypes.token, name, alias); p_event->contType = getContainerTypeFromName(contType); if(verbose) printf("addEventType : id %d, alias %s, name %s, contType %s\n", p_event->id, alias, name, contType); CHECK_RESULT(OTF_Writer_writeDefMarker(writer, 0, p_event->id, name, OTF_MARKER_TYPE_UNKNOWN)); return TRACE_SUCCESS; } trace_return_t OTFAddLinkType (const char* alias , const char* name, const char* contType, const char* srcContType, const char* destContType) { /* allocate the link type, initialise it and add it to the list of * link types. */ LinkType_t *p_link; alloc_init_struct(LinkType_t, p_link, &linkTypes.token, name, alias); p_link->contType = getContainerTypeFromName(contType); p_link->srcType = getContainerTypeFromName(srcContType); p_link->destType = getContainerTypeFromName(destContType); if(verbose) printf("addLinkType : id %d, alias %s, name %s, contType %s, src %s, dest %s\n", p_link->id, alias, name, contType, srcContType, destContType); return TRACE_SUCCESS; } trace_return_t OTFAddVarType (const char* alias , const char* contType, const char* name) { /* allocate the Variable type, initialise it and add it to the list of * variable types. */ VariableType_t *p_variable; alloc_init_struct(VariableType_t, p_variable, &variableTypes.token, name, alias); CHECK_RESULT(OTF_Writer_writeDefCounterGroup (writer, 0, p_variable->id, name)); if(verbose) printf("addVarType : id %d, alias %s, name %s, contType %s\n", p_variable->id, alias, name, contType); return TRACE_SUCCESS; } trace_return_t OTFAddEntityValue (const char* alias, const char* entType, const char* name , const otf_color_t color) { int type; EntityValue_t *p_ent; type = getStateTypeFromName(entType); alloc_init_struct(EntityValue_t, p_ent, &states.token, name, alias); if(verbose) printf("addEntityValue : id %d, alias %s, name %s, type %d\n", p_ent->id, alias, name, type); CHECK_RESULT(OTF_Writer_writeDefFunction(writer, 0, p_ent->id, name, type, 0)); return TRACE_SUCCESS; } trace_return_t OTFDefineContainer (const char* alias, const char* type, const char* container, const char* name, const char* file) { int parent; Container_t *p_cont; parent = getContainerFromName(container); /*int ctType = getContainerTypeFromName(type);*/ /* allocate the Container, initialize it and add it to the list of * containers. */ alloc_init_struct(Container_t, p_cont, &conts.token, name, alias); /* Initialize the state stack. */ init_State(p_cont->state_stack); if(verbose) printf("addCont : parent %d, id %d, name %s, alias %s, type %s, parent %s\n", parent, p_cont->id, name, alias, type, container); CHECK_RESULT(OTF_Writer_writeDefProcess(writer, 0, p_cont->id, name, parent)); return TRACE_SUCCESS; } trace_return_t OTFStartContainer (varPrec time, const char* alias, const char* type, const char* container, const char* name, const char* file) { uint32_t new_container = getContainerFromName(alias); if(!new_container) { /* container not yet defined */ OTFDefineContainer(alias, type, container, name, file); } OTF_Writer_writeBeginProcess (writer, time*TIMER_RES, new_container); return TRACE_SUCCESS; } trace_return_t OTFSeqAddContainer (varPrec time, const char* alias, const char* type, const char* container, const char* name) { return OTFStartContainer(time, alias, type, container, name, NULL); } trace_return_t OTFDestroyContainer (varPrec time, const char* name, const char* type) { uint32_t process = getContainerFromName(name); CHECK_RESULT(OTF_Writer_writeEndProcess (writer, time*TIMER_RES, process)); return TRACE_SUCCESS; } trace_return_t OTFSetState (varPrec time, const char* type, const char* cont, const char* val) { Container_t *p_parent = getContainerPtrFromName(cont); int stateType = getStateTypeFromName(type); int state = getEntityValueFromName(val); /* We need to free the current State structure (if it exists). */ State_t* p_state; if(!gtg_stack_empty(&p_parent->state_stack.token)) { p_state = gtg_list_entry(gtg_stack_top(&p_parent->state_stack.token), State_t, token); gtg_stack_pop(&p_parent->state_stack.token); free(p_state); } /* Allocate a new State structure and fill it */ alloc_State(p_state, state, p_parent->id, stateType); /* Add the structure to the container state stack. */ gtg_stack_push(&p_state->token, &p_parent->state_stack.token); if(verbose) printf("SetState : parent %d, stateType %d, val %d\n", p_parent->id, stateType, state); CHECK_RESULT(OTF_Writer_writeEnter (writer, time*TIMER_RES, state, p_parent->id, 0)); return TRACE_SUCCESS; } trace_return_t OTFPushState (varPrec time, const char* type, const char* cont, const char* val) { Container_t *p_parent = getContainerPtrFromName(cont); int stateType = getStateTypeFromName(type); int value = getEntityValueFromName(val); State_t* p_state; /* Allocate a new State structure and fill it */ alloc_State(p_state, value, p_parent->id, stateType); /* Add the structure to the container state stack. */ gtg_stack_push(&p_state->token, &p_parent->state_stack.token); if(verbose) printf("PushState : parent %d, stateType %d, val %d\n", p_parent->id, stateType, value); CHECK_RESULT(OTF_Writer_writeEnter (writer, time*TIMER_RES, value, p_parent->id, 0)); return TRACE_SUCCESS; } trace_return_t OTFPopState (varPrec time, const char* type, const char* cont) { /* Pop and set */ Container_t *p_parent = getContainerPtrFromName(cont); State_t *p_state; /* Free the current State structure (if it exists). */ if(!gtg_stack_empty(&p_parent->state_stack.token)) { /* Get the top of the stack. */ p_state = gtg_list_entry(gtg_stack_top(&p_parent->state_stack.token), State_t, token); gtg_stack_pop(&p_parent->state_stack.token); } else { /* The stack is empty, don't do anything and print a warning */ fprintf(stderr, "Warning: PopState called, but the stack is empty!\n"); return TRACE_ERR_WRITE; } if(verbose) printf("PopState : parent %d, stateType %d, val %d\n", p_state->cont, p_state->stateType, p_state->value); CHECK_RESULT(OTF_Writer_writeLeave (writer, time*TIMER_RES, p_state->value, p_state->cont, 0)); free(p_state); return TRACE_SUCCESS; } trace_return_t OTFAddEvent (varPrec time , const char* type, const char *cont, const char* val){ uint32_t process = getContainerFromName(cont); uint32_t eventType = getEventTypeFromName(type); CHECK_RESULT(OTF_Writer_writeMarker (writer, time*TIMER_RES, process, eventType, val)); if(verbose) printf("AddEvent : parent %d, eventType %d, val %s\n", process, eventType, val); return TRACE_SUCCESS; } trace_return_t OTFStartLink (varPrec time, const char* type, const char* src, const char* dest, const char* val , const char* key){ uint32_t source = getContainerFromName(src); uint32_t destination = getContainerFromName(dest); uint32_t linkType = getLinkTypeFromName(type); CHECK_RESULT(OTF_Writer_writeSendMsg(writer, time*TIMER_RES, source, destination, 0, linkType, 0, 0)); if(verbose) printf("StartLink : time %f, src %d, dest %d, linkType %d, val %s, key %s\n", time*TIMER_RES, source, destination, linkType, val, key); return TRACE_SUCCESS; } trace_return_t OTFEndLink (varPrec time, const char* type, const char* src, const char* dest, const char* val, const char* key){ uint32_t src_cont = getContainerFromName(src); uint32_t dest_cont = getContainerFromName(dest); uint32_t linkType = getLinkTypeFromName(type); CHECK_RESULT(OTF_Writer_writeRecvMsg(writer, time*TIMER_RES, dest_cont, src_cont, 0, linkType, 0, 0)); if(verbose) printf("EndLink : time %f, src %d, dest %d, linkType %d, val %s, key %s\n", time*TIMER_RES, src_cont, dest_cont, linkType, val, key); return TRACE_SUCCESS; } trace_return_t OTFSetVar (varPrec time, const char* type, const char* cont, varPrec val) { int parent = getContainerFromName(cont); int varType = getVariableTypeFromName(type); /* Check wether the variable already exists */ Variable_t * p_counter = getVariablePtrFromCont(parent, varType); if(!p_counter) { /* the variable doesn't exist yet. Allocate and initialize it */ alloc_Variable(p_counter, (gtg_list_entry(variables.token.prev, Variable_t, token)->id) + 1, parent, varType, 0); gtg_list_add_tail(&(p_counter->token), &(variables.token)); CHECK_RESULT(OTF_Writer_writeDefCounter(writer, 0, p_counter->id, type, 0, varType, NULL)); } /* Update the value of the variable */ p_counter->value = val; if( p_counter->value < 0) { fprintf(stderr, "A counter value can not be negative!\n"); return TRACE_ERR_WRITE; } CHECK_RESULT(OTF_Writer_writeCounter (writer, time*TIMER_RES, parent, varType, p_counter->value)); if(verbose) printf("setVar : %s %s %f\n", type, cont, val); return TRACE_SUCCESS; } trace_return_t OTFAddVar (varPrec time, const char* type, const char* cont, varPrec val) { int parent = getContainerFromName(cont); int varType = getVariableTypeFromName(type); /* Check wether the variable already exists */ Variable_t * p_counter = getVariablePtrFromCont(parent, varType); if(!p_counter) { /* the variable doesn't exist yet. Allocate and initialize it */ alloc_Variable(p_counter, (gtg_list_entry(variables.token.prev, Variable_t, token)->id) + 1, parent, varType, 0 /* Let's assume that the initial value is 0 */); gtg_list_add_tail(&(p_counter->token), &(variables.token)); CHECK_RESULT(OTF_Writer_writeDefCounter(writer, 0, p_counter->id, type, 0, varType, NULL)); } /* update the variable value */ p_counter->value += val; if(p_counter->value < 0) { fprintf(stderr, "A counter value can not be negative!\n"); return TRACE_ERR_WRITE; } CHECK_RESULT(OTF_Writer_writeCounter (writer, time*TIMER_RES, parent, varType, p_counter->value)); if(verbose) printf("addVar : %s %s %f\n", type, cont, val); return TRACE_SUCCESS; } trace_return_t OTFSubVar (varPrec time, const char* type, const char* cont, varPrec val) { return OTFAddVar(time, type, cont, - (val) ); } trace_return_t OTFAddComment (const char* comment){ /* Not implemented yet */ return TRACE_ERR_WRITE; } trace_return_t OTFEndTrace () { Container_t *ptr, *tmp; State_t *ptr2, *tmp2; /* free all the allocated structures */ free_struct(ContainerType_t, ctType); free_struct(StateType_t, stateTypes); free_struct(VariableType_t, variableTypes); free_struct(EventType_t, eventTypes); free_struct(LinkType_t, linkTypes); free_struct(EntityValue_t, states); /* special case for the list of containers since each one contains a state stack */ gtg_list_for_each_entry_safe(ptr, tmp, &(conts).token, token) { gtg_list_del(&(ptr->token)); /* Free the State stack */ gtg_list_for_each_entry_safe(ptr2, tmp2, &(ptr->state_stack).token, token) { gtg_list_del(&(ptr2->token)); free(ptr2); } free(ptr->name); free(ptr->alias); free(ptr); } /* Close the output trace */ if(!OTF_Writer_close(writer)) { fprintf (stderr, "unable to close the file writer"); return TRACE_ERR_CLOSE; } writer = NULL; OTF_FileManager_close(manager); manager = NULL; if (filename) free (filename); filename = NULL; free(otf_color_null.colorID); return TRACE_SUCCESS; } #endif /* BUILD_OTF */ gtg-trace-0.2-2+dfsg/src/C/gtg_compress.c000066400000000000000000000024071234554746700201430ustar00rootroot00000000000000 #include #include #include #include #include "GTGCompress.h" char* input_filename; char* output_filename; static void usage (int argc __attribute__((unused)), char **argv) { fprintf (stderr, "Usage : %s -i input_filename [-o output_filename] \n", argv[0]); } static void parse_args (int argc, char **argv) { int i; input_filename = NULL; for (i = 1; i < argc; i++) { if (strcmp (argv[i], "-o") == 0) { output_filename = argv[++i]; } else if (strcmp (argv[i], "-i") == 0) { if(input_filename) { usage (argc, argv); exit (-1); } input_filename = argv[++i]; } else { if(input_filename) { usage (argc, argv); exit (-1); } input_filename = argv[i]; } } } int main(int argc, char**argv) { parse_args(argc, argv); if(!input_filename) { fprintf(stderr, "please provide an input file and an output file\n"); exit(-1); } if(!output_filename) { asprintf(&output_filename, "%s.z", input_filename); } printf("compressing file %s into file %s\n", input_filename, output_filename); FILE *fin=fopen(input_filename, "r"); FILE *fout=fopen(output_filename, "w"); z_stream z; gtg_compress_init(&z, 1); gtg_compress_f2f(&z, fin, fout); return 0; } gtg-trace-0.2-2+dfsg/src/C/gtg_compress_core.c000066400000000000000000000165651234554746700211650ustar00rootroot00000000000000 #include #include #include #include #include #include #include #include "GTGCompress.h" #define BUF_SIZE_MAX (1024*1024*32) /* block size used */ #define BLOCK_SIZE (128*1024) int gtg_compress_init(z_stream *z, int compression_ratio) { static int first_init = 1; int status = Z_OK; if(first_init) { int level = compression_ratio; z->zalloc = NULL; z->zfree = NULL; z->opaque = NULL; z->avail_in = 0; z->next_in = Z_NULL; status = deflateInit(z, level); if (status != Z_OK) { fprintf(stderr, "error at init: %d\n", status); } first_init=0; } return status; } int gtg_compress_m2m(z_stream *z, void* in_buf, uint32_t len, void* out_buf, uint32_t out_max_len) { int status; int offset_out = 0; /* offset in the dest buffer */ z->avail_out = out_max_len; z->avail_in = len; z->next_out = out_buf; z->next_in = in_buf; /* compress */ status = deflate( z, Z_SYNC_FLUSH ); if ( Z_OK != status ) { fprintf( stderr, "error %d in compressing\n", status); return -1; } /* compute output len */ offset_out = out_max_len - z->avail_out; return offset_out; } int gtg_compress_m2f(z_stream *z, void* in_buf, uint32_t len, FILE* file_out) { int status; int offset_in = 0; int offset_out = 0; int total_written = 0; int cur_input_size = 0; uint8_t out_buf[BLOCK_SIZE]; int written = 0; /* compress each block of data */ while(offset_in < len) { z->next_out = out_buf; z->avail_out = BLOCK_SIZE; /* compute input buffer address */ if(offset_in + BLOCK_SIZE > len) z->avail_in = len - offset_in; else z->avail_in = BLOCK_SIZE; cur_input_size = z->avail_in; z->next_in = &((uint8_t*)in_buf)[offset_in]; /* compress */ status = deflate( z, Z_SYNC_FLUSH ); if ( Z_OK != status ) { fprintf( stderr, "error %d in compressing\n", status); return -1; } /* compute new offset */ offset_out = BLOCK_SIZE - z->avail_out; offset_in += cur_input_size; /* write to disk */ written = fwrite(out_buf, sizeof(uint8_t), offset_out, file_out); if(written < offset_out) { fprintf(stderr, "warning: %d bytes out of %d were written to disk\n", written, offset_out); } total_written += written; } return total_written; } int gtg_compress_f2m(z_stream *z, FILE* file_in, void* out_buf, uint32_t out_max_len) { int status; int offset = 0; /* offset in the dest buffer */ uint8_t in_buf[BLOCK_SIZE]; int in_len = 0; while(!feof(file_in)) { /* read a block of data */ in_len = fread(in_buf, sizeof(uint8_t), BLOCK_SIZE, file_in); z->avail_in = in_len; z->next_in = in_buf; z->avail_out = out_max_len - offset; z->next_out = &((uint8_t*)out_buf)[offset]; /* compress the block */ status = deflate( z, Z_SYNC_FLUSH ); if ( Z_OK != status ) { fprintf( stderr, "error %d in compressing\n", status); return -1; } /* compute output len */ offset = out_max_len - z->avail_out; } return offset; } int gtg_compress_f2f(z_stream *z, FILE* file_in, FILE* file_out) { int status; int offset = 0; /* offset in the dest buffer */ uint8_t in_buf[BLOCK_SIZE]; uint8_t out_buf[BLOCK_SIZE]; int in_len = 0; int total_written = 0; int written = 0; while(!feof(file_in)) { /* read a block of data */ in_len = fread(in_buf, sizeof(uint8_t), BLOCK_SIZE, file_in); z->avail_in = in_len; z->next_in = in_buf; z->avail_out = BLOCK_SIZE; z->next_out = out_buf; /* compress the block */ status = deflate( z, Z_SYNC_FLUSH ); if ( Z_OK != status ) { fprintf( stderr, "error %d in compressing\n", status); return -1; } /* compute output len */ offset = BLOCK_SIZE - z->avail_out; /* write the output block to disk */ written = fwrite(out_buf, sizeof(uint8_t), offset, file_out); if(written < offset) { fprintf(stderr, "warning: %d bytes out of %d were written to disk\n", written, offset); } total_written += written; } return total_written; } /* decompression routines */ int gtg_decompress_init(z_stream *z) { int status; z->zalloc = NULL; z->zfree = NULL; z->opaque = NULL; z->avail_in = 0; z->next_in = Z_NULL; status = inflateInit(z); if (status != Z_OK) { fprintf(stderr, "error at init: %d\n", status); } return status; } int gtg_decompress_m2m(z_stream *z, void* in_buf, uint32_t len, void* out_buf, uint32_t out_max_len) { int status; z->next_in= in_buf; z->avail_in = len; z->next_out = out_buf; z->avail_out = out_max_len; /* decompress */ status = inflate( z, Z_SYNC_FLUSH ); if ( Z_OK != status ) { fprintf( stderr, "error %d in compressing\n", status); return -1; } return out_max_len - z->avail_out; } int gtg_decompress_m2f(z_stream *z, void* in_buf, uint32_t len, FILE* file_out) { int status; uint8_t out_buf[BLOCK_SIZE]; int offset_out = 0; int offset_in = 0; int total_written = 0; int written = 0; /* decompress one block at a time */ while(offset_in < len) { z->next_in= &((uint8_t*)in_buf)[offset_in]; z->avail_in = len - offset_in; z->next_out = out_buf; z->avail_out = BLOCK_SIZE; /* decompress */ status = inflate( z, Z_SYNC_FLUSH ); if ( Z_OK != status ) { fprintf( stderr, "error %d in compressing\n", status); return -1; } /* compute new offsets */ offset_out = BLOCK_SIZE - z->avail_out; offset_in = len - z->avail_in; written = fwrite(out_buf, 1, offset_out, file_out); if(written < offset_out){ fprintf(stderr, "warning: %d bytes out of %d written\n", written, offset_out); return -1; } total_written += written; } return total_written; } int gtg_decompress_f2m(z_stream *z, FILE* file_in, void* out_buf, uint32_t out_max_len) { int status; uint8_t in_buf[BLOCK_SIZE]; uint32_t in_len = 0; int offset_out = 0; while(! feof(file_in)) { in_len = fread(in_buf, BLOCK_SIZE, sizeof(uint8_t), file_in); z->avail_in = in_len; z->next_in = in_buf; z->avail_out = out_max_len - offset_out; z->next_out = &((uint8_t*)out_buf)[offset_out]; /* decompress */ status = inflate( z, Z_SYNC_FLUSH ); if ( Z_OK != status ) { fprintf( stderr, "error %d in compressing\n", status); return -1; } /* compute output len */ offset_out = out_max_len - z->avail_out; } return offset_out; } int gtg_decompress_f2f(z_stream *z, FILE* file_in, FILE* file_out) { int status; int offset = 0; /* offset in the dest buffer */ uint8_t in_buf[BLOCK_SIZE]; uint8_t out_buf[BLOCK_SIZE]; int in_len = 0; int total_written = 0; int written = 0; while(!feof(file_in)) { in_len = fread(in_buf, sizeof(uint8_t), BLOCK_SIZE, file_in); z->avail_in = in_len; z->next_in = in_buf; z->avail_out = BLOCK_SIZE; z->next_out = out_buf; /* decompress */ status = inflate( z, Z_SYNC_FLUSH ); if ( Z_OK != status ) { fprintf( stderr, "error %d in compressing\n", status); return -1; } /* compute output len */ offset = BLOCK_SIZE - z->avail_out; written = fwrite(out_buf, sizeof(uint8_t), offset, file_out); if(written < offset) { fprintf(stderr, "warning: %d bytes out of %d were written to disk\n", written, offset); } total_written += written; } return total_written; } gtg-trace-0.2-2+dfsg/src/C/gtg_decompress.c000066400000000000000000000023751234554746700204600ustar00rootroot00000000000000 #include #include #include #include #include "GTGCompress.h" char* input_filename; char* output_filename; static void usage (int argc __attribute__((unused)), char **argv) { fprintf (stderr, "Usage : %s -i input_filename [-o output_filename] \n", argv[0]); } static void parse_args (int argc, char **argv) { int i; input_filename = NULL; for (i = 1; i < argc; i++) { if (strcmp (argv[i], "-o") == 0) { output_filename = argv[++i]; } else if (strcmp (argv[i], "-i") == 0) { if(input_filename) { usage (argc, argv); exit (-1); } input_filename = argv[++i]; } else { if(input_filename) { usage (argc, argv); exit (-1); } input_filename = argv[i]; } } } int main(int argc, char**argv) { parse_args(argc, argv); if(!input_filename) { fprintf(stderr, "please provide an input file\n"); exit(-1); } if(!output_filename) { asprintf(&output_filename, "%s.unzipped", input_filename); } printf("decompressing file %s into file %s\n", input_filename, output_filename); FILE *fin=fopen(input_filename, "r"); FILE *fout=fopen(output_filename, "w"); z_stream z; gtg_decompress_init(&z); gtg_decompress_f2f(&z, fin, fout); return 0; } gtg-trace-0.2-2+dfsg/src/C/interfaceCFortranBasic1.c000066400000000000000000000313121234554746700220660ustar00rootroot00000000000000#include #include #include "GTG.h" void setTraceType_i (int *type) { setTraceType ((traceType_t) * type); } int getTraceType_i () { return getTraceType (); } int bufferedModeActivated_i() { return bufferedModeActivated_i(); } void initTrace_i (char *f, int *len, int *rank, gtg_flag_t* flags, int *err) { char *filename = (char *) malloc (sizeof (char) * (*len + 1)); memcpy (filename, f, *len); filename[*len] = '\0'; *err = initTrace (filename, *rank, *flags); } void addContType_i (char *alias, int *s1, char *contType, int *s2, char *name, int *s3, int *err) { char *a = (char *) malloc (sizeof (char) * (*s1 + 1)); char *c = (char *) malloc (sizeof (char) * (*s2 + 1)); char *n = (char *) malloc (sizeof (char) * (*s3 + 1)); memcpy (a, alias, *s1); a[*s1] = '\0'; memcpy (c, contType, *s2); c[*s2] = '\0'; memcpy (n, name, *s3); n[*s3] = '\0'; *err = addContType (a, c, n); } void addStateType_i (char *alias, int *s1, char *contType, int *s2, char *name, int *s3, int *err) { char *a = (char *) malloc (sizeof (char) * (*s1 + 1)); char *c = (char *) malloc (sizeof (char) * (*s2 + 1)); char *n = (char *) malloc (sizeof (char) * (*s3 + 1)); memcpy (a, alias, *s1); a[*s1] = '\0'; memcpy (c, contType, *s2); c[*s2] = '\0'; memcpy (n, name, *s3); n[*s3] = '\0'; *err = addStateType (a, c, n); } void addEventType_i (char *alias, int *s1, char *contType, int *s2, char *name, int *s3, int *err) { char *a = (char *) malloc (sizeof (char) * (*s1 + 1)); char *n = (char *) malloc (sizeof (char) * (*s3 + 1)); char *c = (char *) malloc (sizeof (char) * (*s2 + 1)); memcpy (a, alias, *s1); a[*s1] = '\0'; memcpy (c, contType, *s2); c[*s2] = '\0'; memcpy (n, name, *s3); n[*s3] = '\0'; *err = addEventType (a, c, n); } void addLinkType_i (char *alias, int *s1, char *name, int *s3, char *contType, int *s2, char *src, int *s4, char *dest, int *s5, int *err) { char *a = (char *) malloc (sizeof (char) * (*s1 + 1)); char *d = (char *) malloc (sizeof (char) * (*s5 + 1)); char *c = (char *) malloc (sizeof (char) * (*s2 + 1)); char *n = (char *) malloc (sizeof (char) * (*s3 + 1)); char *s = (char *) malloc (sizeof (char) * (*s4 + 1)); memcpy (a, alias, *s1); a[*s1] = '\0'; memcpy (c, contType, *s2); c[*s2] = '\0'; memcpy (n, name, *s3); n[*s3] = '\0'; memcpy (s, src, *s4); s[*s4] = '\0'; memcpy (d, dest, *s5); d[*s5] = '\0'; *err = addLinkType (a, n, c, s, d); } void addVarType_i (char *alias, int *s1, char *name, int *s3, char *contType, int *s2, int *err) { char *a = (char *) malloc (sizeof (char) * (*s1 + 1)); char *n = (char *) malloc (sizeof (char) * (*s3 + 1)); char *c = (char *) malloc (sizeof (char) * (*s2 + 1)); memcpy (a, alias, *s1); a[*s1] = '\0'; memcpy (c, contType, *s2); c[*s2] = '\0'; memcpy (n, name, *s3); n[*s3] = '\0'; *err = addVarType (a, c, n); } void addEntityValue_i (char *alias, int *s1, char *entType, int *s2, char *name, int *s3, gtg_color_t color, int *s4, int *err) { char *a = (char *) malloc (sizeof (char) * (*s1 + 1)); char *c = (char *) malloc (sizeof (char) * (*s2 + 1)); char *n = (char *) malloc (sizeof (char) * (*s3 + 1)); memcpy (a, alias, *s1); a[*s1] = '\0'; memcpy (c, entType, *s2); c[*s2] = '\0'; memcpy (n, name, *s3); n[*s3] = '\0'; *err = addEntityValue (a, c, n, color); } void addContainer_i (varPrec * time, char *alias, int *s1, char *type, int *s2, char *container, int *s3, char *name, int *s4, char *filename, int *s5, int *err) { char *a = (char *) malloc (sizeof (char) * (*s1 + 1)); char *t = (char *) malloc (sizeof (char) * (*s2 + 1)); char *c = (char *) malloc (sizeof (char) * (*s3 + 1)); char *n = (char *) malloc (sizeof (char) * (*s4 + 1)); char *f = (char *) malloc (sizeof (char) * (*s5 + 1)); memcpy (a, alias, *s1); a[*s1] = '\0'; memcpy (t, type, *s2); t[*s2] = '\0'; memcpy (c, container, *s3); c[*s3] = '\0'; memcpy (n, name, *s4); n[*s4] = '\0'; memcpy (f, filename, *s5); f[*s5] = '\0'; *err = addContainer (*time, a, t, c, n, f); } void destroyContainer_i (varPrec * time, char *name, int *s1, char *type, int *s2, int *err) { char *t = (char *) malloc (sizeof (char) * (*s2 + 1)); char *n = (char *) malloc (sizeof (char) * (*s1 + 1)); memcpy (t, type, *s2); t[*s2] = '\0'; memcpy (n, name, *s1); n[*s1] = '\0'; *err = destroyContainer (*time, n, t); } void setState_i (varPrec * time, char *type, int *s2, char *cont, int *s1, char *val, int *s3, int *err) { char *t = (char *) malloc (sizeof (char) * (*s2 + 1)); char *v = (char *) malloc (sizeof (char) * (*s3 + 1)); char *c = (char *) malloc (sizeof (char) * (*s1 + 1)); memcpy (t, type, *s2); t[*s2] = '\0'; memcpy (c, cont, *s1); c[*s1] = '\0'; memcpy (v, val, *s3); v[*s3] = '\0'; *err = setState (*time, t, c, v); } void pushState_i (varPrec * time, char *type, int *s2, char *cont, int *s1, char *val, int *s3, int *err) { char *t = (char *) malloc (sizeof (char) * (*s2 + 1)); char *c = (char *) malloc (sizeof (char) * (*s1 + 1)); char *v = (char *) malloc (sizeof (char) * (*s3 + 1)); memcpy (t, type, *s2); t[*s2] = '\0'; memcpy (c, cont, *s1); c[*s1] = '\0'; memcpy (v, val, *s3); v[*s3] = '\0'; *err = pushState (*time, t, c, v); } void popState_i (varPrec * time, char *type, int *s2, char *cont, int *s1, int *s3, int *err) { char *t = (char *) malloc (sizeof (char) * (*s2 + 1)); char *c = (char *) malloc (sizeof (char) * (*s1 + 1)); memcpy (t, type, *s2); t[*s2] = '\0'; memcpy (c, cont, *s1); c[*s1] = '\0'; *err = popState (*time, t, c); } void addEvent_i (varPrec * time, char *type, int *s2, char *cont, int *s1, char *val, int *s3, int *err) { char *t = (char *) malloc (sizeof (char) * (*s2 + 1)); char *v = (char *) malloc (sizeof (char) * (*s3 + 1)); char *c = (char *) malloc (sizeof (char) * (*s1 + 1)); memcpy (t, type, *s2); t[*s2] = '\0'; memcpy (c, cont, *s1); c[*s1] = '\0'; memcpy (v, val, *s3); v[*s3] = '\0'; *err = addEvent (*time, t, c, v); } void startLink_i (varPrec * time, char *type, int *s2, char *cont, int *s1, char *src, int *s3, char *dest, int *s4, char *val, int *s5, char *key, int *s6, int *err) { char *t = (char *) malloc (sizeof (char) * (*s2 + 1)); char *k = (char *) malloc (sizeof (char) * (*s6 + 1)); char *c = (char *) malloc (sizeof (char) * (*s1 + 1)); char *v = (char *) malloc (sizeof (char) * (*s5 + 1)); char *s = (char *) malloc (sizeof (char) * (*s3 + 1)); char *d = (char *) malloc (sizeof (char) * (*s4 + 1)); memcpy (t, type, *s2); t[*s2] = '\0'; memcpy (c, cont, *s1); c[*s1] = '\0'; memcpy (v, val, *s5); v[*s5] = '\0'; memcpy (s, src, *s3); s[*s3] = '\0'; memcpy (d, dest, *s4); d[*s4] = '\0'; memcpy (k, key, *s6); k[*s6] = '\0'; *err = startLink (*time, t, c, s, d, v, k); } void endLink_i (varPrec * time, char *type, int *s2, char *cont, int *s1, char *src, int *s3, char *dest, int *s4, char *val, int *s5, char *key, int *s6, int *err) { char *t = (char *) malloc (sizeof (char) * (*s2 + 1)); char *k = (char *) malloc (sizeof (char) * (*s6 + 1)); char *c = (char *) malloc (sizeof (char) * (*s1 + 1)); char *v = (char *) malloc (sizeof (char) * (*s5 + 1)); char *s = (char *) malloc (sizeof (char) * (*s3 + 1)); char *d = (char *) malloc (sizeof (char) * (*s4 + 1)); memcpy (t, type, *s2); t[*s2] = '\0'; memcpy (c, cont, *s1); c[*s1] = '\0'; memcpy (v, val, *s5); v[*s5] = '\0'; memcpy (s, src, *s3); s[*s3] = '\0'; memcpy (d, dest, *s4); d[*s4] = '\0'; memcpy (k, key, *s6); k[*s6] = '\0'; *err = endLink (*time, t, c, s, d, v, k); } void setVar_i (varPrec * time, char *type, int *s2, char *cont, int *s1, varPrec * val, int *err) { char *t = (char *) malloc (sizeof (char) * (*s2 + 1)); char *c = (char *) malloc (sizeof (char) * (*s1 + 1)); memcpy (t, type, *s2); t[*s2] = '\0'; memcpy (c, cont, *s1); c[*s1] = '\0'; *err = setVar (*time, t, c, *val); } void addVar_i (varPrec * time, char *type, int *s2, char *cont, int *s1, varPrec * val, int *err) { char *t = (char *) malloc (sizeof (char) * (*s2 + 1)); char *c = (char *) malloc (sizeof (char) * (*s1 + 1)); memcpy (t, type, *s2); t[*s2] = '\0'; memcpy (c, cont, *s1); c[*s1] = '\0'; *err = addVar (*time, t, c, *val); } void subVar_i (varPrec * time, char *type, int *s2, char *cont, int *s1, varPrec * val, int *err) { char *t = (char *) malloc (sizeof (char) * (*s2 + 1)); char *c = (char *) malloc (sizeof (char) * (*s1 + 1)); memcpy (t, type, *s2); t[*s2] = '\0'; memcpy (c, cont, *s1); c[*s1] = '\0'; *err = subVar (*time, t, c, *val); } void addComm_i (char *comm, int *s2, int *err) { char *t = (char *) malloc (sizeof (char) * (*s2 + 1)); memcpy (t, comm, *s2); t[*s2] = '\0'; *err = AddComment (t); } void endTrace_i (int *err) { *err = endTrace (); } /* manual aliasing of function, in order to avoid using GCC specific __attribute__ keyword */ void settracetype_i_ (int *type) { setTraceType_i (type); } int gettracetype_i_ () { return getTraceType_i (); } int bufferedmodeactivated_i_() { return bufferedModeActivated_i(); } void inittrace_i_ (char *f, int *len, int*rank, gtg_flag_t* flags, int *err) { initTrace_i (f, len, rank, flags, err); } void addconttype_i_ (char *alias, int *s1, char *contType, int *s2, char *name, int *s3, int *err) { addContType_i (alias, s1, contType, s2, name, s3, err); } void addstatetype_i_ (char *alias, int *s1, char *contType, int *s2, char *name, int *s3, int *err) { addStateType_i (alias, s1, contType, s2, name, s3, err); } void addeventtype_i_ (char *alias, int *s1, char *contType, int *s2, char *name, int *s3, int *err) { addEventType_i (alias, s1, contType, s2, name, s3, err); } void addlinktype_i_ (char *alias, int *s1, char *name, int *s3, char *contType, int *s2, char *src, int *s4, char *dest, int *s5, int *err) { addLinkType_i (alias, s1, name, s3, contType, s2, src, s4, dest, s5, err); } void addvartype_i_ (char *alias, int *s1, char *name, int *s3, char *contType, int *s2, int *err) { addVarType_i (alias, s1, name, s3, contType, s2, err); } void addentityvalue_i_ (char *alias, int *s1, char *entType, int *s2, char *name, int *s3, gtg_color_t color, int *s4, int *err) { addEntityValue_i (alias, s1, entType, s2, name, s3, color, s4, err); } void addcontainer_i_ (varPrec * time, char *alias, int *s1, char *type, int *s2, char *container, int *s3, char *name, int *s4, char *filename, int *s5, int *err) { addContainer_i (time, alias, s1, type, s2, container, s3, name, s4, filename, s5, err); } void destroycontainer_i_ (varPrec * time, char *name, int *s1, char *type, int *s2, int *err) { destroyContainer_i (time, name, s1, type, s2, err); } void setstate_i_ (varPrec * time, char *type, int *s2, char *cont, int *s1, char *val, int *s3, int *err) { setState_i (time, type, s2, cont, s1, val, s3, err); } void pushstate_i_ (varPrec * time, char *type, int *s2, char *cont, int *s1, char *val, int *s3, int *err) { pushState_i (time, type, s2, cont, s1, val, s3, err); } void popstate_i_ (varPrec * time, char *type, int *s2, char *cont, int *s1, int *s3, int *err) { popState_i (time, type, s2, cont, s1, s3, err); } void addevent_i_ (varPrec * time, char *type, int *s2, char *cont, int *s1, char *val, int *s3, int *err) { addEvent_i (time, type, s2, cont, s1, val, s3, err); } void startlink_i_ (varPrec * time, char *type, int *s2, char *cont, int *s1, char *src, int *s3, char *dest, int *s4, char *val, int *s5, char *key, int *s6, int *err) { startLink_i (time, type, s2, cont, s1, src, s3, dest, s4, val, s5, key, s6, err); } void endlink_i_ (varPrec * time, char *type, int *s2, char *cont, int *s1, char *src, int *s3, char *dest, int *s4, char *val, int *s5, char *key, int *s6, int *err) { endLink_i (time, type, s2, cont, s1, src, s3, dest, s4, val, s5, key, s6, err); } void setvar_i_ (varPrec * time, char *type, int *s2, char *cont, int *s1, varPrec * val, int *err) { setVar_i (time, type, s2, cont, s1, val, err); } void addvar_i_ (varPrec * time, char *type, int *s2, char *cont, int *s1, varPrec * val, int *err) { addVar_i (time, type, s2, cont, s1, val, err); } void subvar_i_ (varPrec * time, char *type, int *s2, char *cont, int *s1, varPrec * val, int *err) { subVar_i (time, type, s2, cont, s1, val, err); } void addcomm_i_ (char *comm, int *s2, int *err) { addComm_i (comm, s2, err); } void endtrace_i_ (int *err) { endTrace_i (err); } gtg-trace-0.2-2+dfsg/src/C/paje_GTGBasic1_c.c000066400000000000000000000526331234554746700204220ustar00rootroot00000000000000#ifdef BUILD_PAJE #define _GNU_SOURCE #include #include #include #include #ifdef USE_MPI #include #endif #ifndef HAVE_ASPRINTF extern int asprintf(char **ret, const char *format, ...); /* extern int vasprintf(char **ret, const char *format, va_list args); */ #endif /* HAVE_ASPRINTF */ #include "GTG.h" #include "GTGPaje_Basic.h" #include "GTGPaje.h" #if HAVE_LIBZ #include "GTGCompress.h" #endif extern int _is_paje_header_written; void pajeInitHeaderData( int fmt ); void pajeWriteHeader( FILE *file ); /* set in GTGBasic1_c.c * verbose !=0 means debugging mode */ extern int verbose; /* File where each proc writes state/event/var/link changes. */ static FILE* procFile; /* File where each proc writes the header and the definitions of the data. */ static FILE* headFile; /* Root name */ static char* filename; /* mpi rank */ static int rank; /* Name built for getName */ static char* nameTmp; /* Flags that should be used. */ static gtg_flag_t paje_flags; /* Max length of the names built */ #define BUFFSIZE 200 /* in non-buffered mode, flush a file */ #define FLUSH(file) \ if(paje_flags & GTG_FLAG_NOTBUF) \ fflush(file) #define PRINT_PAJE_HEADER() \ if ( !_is_paje_header_written ) { \ pajeWriteHeader( headFile ); \ FLUSH( headFile ); \ } /* Structure containing the info of a current line */ typedef struct line_t{ FILE* file; /* File */ char* value; /* The value of the line */ size_t size; /* Size of the value buffer */ varPrec time; /* Time (second element of the line) */ int status; /* If EOF reached */ }line_t; typedef struct doubleLinkList_t{ struct doubleLinkList_t* prev; /* Previous element */ struct doubleLinkList_t* next; /* Next element */ line_t current; /* Current line */ }doubleLinkList_t; #if HAVE_LIBZ static z_stream z; static int compression_ratio = 0; /* compress data and write to disk */ void paje_print(FILE* file, const char*format, ...) { int len = 0; int ret = 0; va_list args; char* tmp_buf = NULL; va_start(args, format); if(compression_ratio) { len = vasprintf(&tmp_buf, format, args); va_end(args); ret = gtg_compress_m2f(&z, tmp_buf, len, file); if (ret < 0) { fprintf(stderr, "gtg: an error occured while compressing\n"); } } else { /* don't compress, write directly to disk */ vfprintf(file, format, args); va_end(args); } } trace_return_t pajeSetCompress(int val) { compression_ratio = val; if(val) gtg_compress_init(&z, compression_ratio); return TRACE_SUCCESS; } #else /* HAVE_LIBZ */ #define paje_print fprintf trace_return_t pajeSetCompress(int val) { return TRACE_ERR_WRITE; } #endif /* Insert a doubleLinkList_t item in the sorted doubleLinkedList starting with first */ void insert (doubleLinkList_t** first, doubleLinkList_t* item){ varPrec time; doubleLinkList_t* iter = *first; if (!first || !item){ fprintf (stderr, "Invalid insert parameter. Leaving\n"); exit(-1); } time = item->current.time; /* If nil list, item is the first and leaving */ if (iter==NULL){ *first=item; item->prev = NULL; item->next = NULL; /* printf (stderr, "Nil list\n"); */ return; } /* If to insert in first pos */ if (time<=iter->current.time){ item->prev = NULL; item->next = *first; if (item->next) (item->next)->prev = item; *first = item; return; } /* Positionning iterator to insert in a sorted list */ while (time>iter->current.time && iter->next) iter = iter->next; if (time<=iter->current.time){ item->prev = iter->prev; item->next = iter; iter->prev = item; if (item->prev) (item->prev)->next = item; } else{ iter->next = item; item->prev = iter; item->next=NULL; } } void initMerge (char* file, int rk, doubleLinkList_t* li){ char f[BUFFSIZE]; sprintf (f, "%s_proc%d.ept", file, rk); li->current.file = fopen (f, "a+"); if (!li->current.file){ fprintf (stderr, "Failed to open generated trace. Leaving\n"); exit (-1); } rewind (li->current.file); li->current.value = NULL; li->current.status = 1; } #ifndef HAVE_GETLINE ssize_t getline(char** buf, size_t* size, FILE* stream) { char *ret; int alloc_size = 1024; int nb_char = 0; if(!(*buf)) { /* we need to allocate the buffer */ alloc_size = 1024; *buf = malloc(sizeof(char) * alloc_size); } else { alloc_size = *size; } *buf[0]=0; do { if(nb_char + 512 >= alloc_size) { /* the next fgets may overflow the buffer, so let's allocate more space */ alloc_size *= 2; *buf = realloc(*buf, alloc_size); *size = alloc_size; } /* read at most 512 bytes */ ret = fgets((*buf)+nb_char, 512, stream); if(!ret){ /* error while reading or EOF */ *size = 1; (*buf)[0] = EOF; return -1; } nb_char = strlen(*buf); } while((*buf)[nb_char -1] !='\n'); return nb_char; } #endif /* HAVE_GETLINE */ void myGetLine (doubleLinkList_t* li){ int toto; int ret; if (li->current.value) free (li->current.value); li->current.value = NULL; ret = getline (&(li->current.value), &(li->current.size), li->current.file); if (li->current.size==0 || ret ==-1){ li->current.status=0; } if ((li->current.size)>0) sscanf (li->current.value, "%d %lf", &toto, &(li->current.time)); else fprintf (stderr, "failed to read\n"); } /* need to run 'rm -f' force because there is no file some time*/ void clean_files (char* fileName, int nbFile){ int ret; char cmd[BUFFSIZE]; sprintf (cmd, "rm -f %s_root.ept %s_proc*.ept", filename,filename); ret = system(cmd); if (ret == -1) { perror("cleanfiles"); } } void merge (char* filename, int nbFile){ doubleLinkList_t* first = NULL; doubleLinkList_t* list; doubleLinkList_t* iter; FILE * res; FILE * oldF; char * buf = NULL; char tmp[BUFFSIZE]; char tmp2[BUFFSIZE]; size_t size; int i; /* Getting the first part of the trace (header+def) */ #if HAVE_LIBZ if(compression_ratio) sprintf (tmp, "%s.trace.z", filename); else #endif sprintf (tmp, "%s.trace", filename); res = fopen (tmp, "w+"); sprintf (tmp2, "%s_root.ept", filename); oldF = fopen (tmp2,"a+"); if (res==NULL || oldF==NULL){ fprintf (stderr, "Failed to create the trace file. Leaving\n"); exit (-1); } rewind (oldF); do{ i = getline (&buf, &size, oldF); if (size==0 || i==-1) break; paje_print (res, "%s", buf); }while (buf[0] != EOF); fclose (oldF); /* Initialising the parallel merge */ list = (doubleLinkList_t *)malloc (sizeof (doubleLinkList_t)*nbFile); for (i=0;icurrent.status != 0){ paje_print (res, "%s", first->current.value); myGetLine (first); if (first->current.status==0){ first=first->next; if (first) first->prev = NULL; } else{ iter = first; first = first->next; if (first) first->prev = NULL; if (first && iter->current.status != 0) insert (&first, iter); } /* for (i=0;i\n\n"); */ } fclose (res); clean_files (filename, nbFile); } paje_color_t Paje_get_color(gtg_color_t p_color) { /** \todo it is not const*/ int ret; paje_color_t res = NULL; ret = asprintf(&res, "%1.1f %1.1f %1.1f", (float)GTG_COLOR_GET_RED( p_color->rgb)/256, (float)GTG_COLOR_GET_GREEN(p_color->rgb)/256, (float)GTG_COLOR_GET_BLUE( p_color->rgb)/256); (void)ret; return res; } char* pajeGetName (int procNb){ if (nameTmp) free (nameTmp); nameTmp = (char *)malloc (sizeof (char)*BUFFSIZE); if (filename){ sprintf (nameTmp, "%s_proc%d.ept", filename, procNb); if(verbose) fprintf (stderr, "Name built : %s \n", nameTmp); return nameTmp; } return "0"; } trace_return_t my_open (int rk){ trace_return_t ret = TRACE_ERR_OPEN; char f[BUFFSIZE]; if (!procFile){ if(!(paje_flags & GTG_FLAG_USE_MPI)) { procFile = headFile; } else { sprintf (f, "%s_proc%d.ept", filename, rk); procFile = fopen (f, "w"); } if (!procFile) return ret; ret = TRACE_SUCCESS; } return ret; } trace_return_t my_close (){ trace_return_t ret = TRACE_ERR_CLOSE; if (procFile){ ret = (trace_return_t) fclose (procFile); procFile = NULL; } return ret; } trace_return_t pajeInitTrace (const char* filenam, int rk, gtg_flag_t flags, int fmt) { char file[BUFFSIZE]; trace_return_t ret = TRACE_ERR_OPEN; my_close (); rank = rk; /* fixme: why there is need to copy filenam ????*/ filename = (char *)malloc (sizeof (char)* (strlen (filenam)+1)); strcpy (filename, filenam); procFile = NULL; paje_flags = flags; if( rank==0 || ! (flags & GTG_FLAG_USE_MPI)) { sprintf (file, "%s_root.ept", filename); headFile = fopen (file, "w"); if (!headFile){ fprintf (stderr, "Failed to open file %s. \n Leaving\n", file); return ret; } pajeInitHeaderData( fmt ); FLUSH(headFile); } return my_open(rank); } trace_return_t pajeAddContType(const char* alias, const char* contType, const char* name) { PRINT_PAJE_HEADER(); if(verbose) printf("addCtType : name %s, alias %s, contType %s\n", name, alias, contType); if (headFile){ fprintf (headFile, "%d \"%s\" \"%s\" \"%s\"\n", paje_eventdefs[GTG_PAJE_EVTDEF_DefineContainerType].id, name, contType ? contType : "0", alias); FLUSH(headFile); return TRACE_SUCCESS; } return TRACE_ERR_WRITE; } trace_return_t pajeAddStateType (const char* alias, const char* contType, const char* name){ PRINT_PAJE_HEADER(); if(verbose) printf("addStateType : alias %s, name %s, contType %s\n", alias, name, contType); if (headFile){ fprintf (headFile, "%d \"%s\" \"%s\" \"%s\"\n", paje_eventdefs[GTG_PAJE_EVTDEF_DefineStateType].id, name, contType, alias); FLUSH(headFile); return TRACE_SUCCESS; } return TRACE_ERR_WRITE; } trace_return_t pajeAddEventType (const char* alias, const char* contType, const char* name){ PRINT_PAJE_HEADER(); if(verbose) printf("addEventType : alias %s, name %s, contType %s\n", alias, name, contType); if (headFile){ fprintf (headFile, "%d \"%s\" \"%s\" \"%s\"\n", paje_eventdefs[GTG_PAJE_EVTDEF_DefineEventType].id, name, contType, alias); FLUSH(headFile); return TRACE_SUCCESS; } return TRACE_ERR_WRITE; } trace_return_t pajeAddVarType (const char* alias , const char* contType, const char* name){ PRINT_PAJE_HEADER(); if(verbose) printf("addVarType : alias %s, name %s, contType %s\n", alias, name, contType); if (headFile){ fprintf (headFile, "%d \"%s\" \"%s\" \"0 0 0\" \"%s\"\n", paje_eventdefs[GTG_PAJE_EVTDEF_DefineVariableType].id, name, contType, alias); FLUSH(headFile); return TRACE_SUCCESS; } return TRACE_ERR_WRITE; } trace_return_t pajeAddLinkType (const char* alias , const char* name, const char* contType, const char* srcContType, const char* destContType){ PRINT_PAJE_HEADER(); if (verbose) printf ("Add link type: alias: %s name: %s contType: %s src: %s des: %s\n", alias, name, contType, srcContType, destContType); if (headFile){ fprintf (headFile, "%d \"%s\" \"%s\" \"%s\" \"%s\" \"%s\"\n", paje_eventdefs[GTG_PAJE_EVTDEF_DefineLinkType].id, name, contType, srcContType, destContType, alias); FLUSH(headFile); return TRACE_SUCCESS; } return TRACE_ERR_WRITE; } trace_return_t pajeAddEntityValue (const char* alias, const char* entType, const char* name , const char* color){ PRINT_PAJE_HEADER(); if(verbose) printf("addEntityValue : color %s, alias %s, name %s, type %s\n", color, alias, name, entType); if (headFile){ fprintf (headFile, "%d \"%s\" \"%s\" \"%s\" \"%s\"\n", paje_eventdefs[GTG_PAJE_EVTDEF_DefineEntityValue].id, entType, name, color, alias); FLUSH(headFile); return TRACE_SUCCESS; } return TRACE_ERR_WRITE; } trace_return_t pajeAddContainer(varPrec time, const char* alias, const char* type, const char* container, const char* name, const char* file){ PRINT_PAJE_HEADER(); if (headFile){ if(container && strcmp(container, "(null)")!=0 ) fprintf (headFile, "%d %.13e \"%s\" \"%s\" \"%s\" \"%s\" \"%s\"\n", paje_eventdefs[GTG_PAJE_EVTDEF_CreateContainer].id, time, name, type, container, alias, file); else fprintf (headFile, "%d %.13e \"%s\" \"%s\" 0 \"%s\" \"%s\"\n", paje_eventdefs[GTG_PAJE_EVTDEF_CreateContainer].id, time, name, type, alias, file); FLUSH(headFile); return TRACE_SUCCESS; } return TRACE_ERR_WRITE; } trace_return_t pajeSeqAddContainer (varPrec time, const char* alias , const char* type, const char* container, const char* name){ PRINT_PAJE_HEADER(); if (headFile){ if(container && strcmp(container, "(null)")!=0 ) fprintf (headFile, "%d %.13e \"%s\" \"%s\" \"%s\" \"%s\"\n", paje_eventdefs[GTG_PAJE_EVTDEF_CreateContainer].id, time, name, type, container, alias); else fprintf (headFile, "%d %.13e \"%s\" \"%s\" 0 \"%s\"\n", paje_eventdefs[GTG_PAJE_EVTDEF_CreateContainer].id, time, name, type, alias); FLUSH(headFile); return TRACE_SUCCESS; } return TRACE_ERR_WRITE; } trace_return_t pajeDestroyContainer (varPrec time, const char* name, const char* type){ PRINT_PAJE_HEADER(); if (headFile){ fprintf (headFile, "%d %.13e \"%s\" \"%s\"\n", paje_eventdefs[GTG_PAJE_EVTDEF_DestroyContainer].id, time, name, type); FLUSH(headFile); return TRACE_SUCCESS; } return TRACE_ERR_WRITE; } trace_return_t pajeSetState (varPrec time, const char* type, const char* cont, const char* val){ if(verbose) printf("SetState : type %s, container %s, val %s\n", type, cont, val); if (procFile){ fprintf (procFile, "%d %.13e \"%s\" \"%s\" \"%s\"\n", paje_eventdefs[GTG_PAJE_EVTDEF_SetState].id, time, type, cont, val); FLUSH(procFile); return TRACE_SUCCESS; } return TRACE_ERR_WRITE; } trace_return_t pajePushState (varPrec time, const char* type, const char* cont, const char* val){ if(verbose) printf("PushState : type %s, container %s, val %s\n", type, cont, val); if (procFile){ fprintf (procFile, "%d %.13e \"%s\" \"%s\" \"%s\"\n", paje_eventdefs[GTG_PAJE_EVTDEF_PushState].id, time, type, cont, val); FLUSH(procFile); return TRACE_SUCCESS; } return TRACE_ERR_WRITE; } trace_return_t pajePopState (varPrec time, const char* type, const char* cont){ if(verbose) printf("PopState : type %s, container %s\n", type, cont); if (procFile){ fprintf (procFile, "%d %.13e \"%s\" \"%s\"\n", paje_eventdefs[GTG_PAJE_EVTDEF_PopState].id, time, type, cont); FLUSH(procFile); return TRACE_SUCCESS; } return TRACE_ERR_WRITE; } trace_return_t pajeAddEvent (varPrec time, const char* type, const char* cont, const char* val){ if(verbose) printf("AddEvent : type %s, cont %s, val %s\n", type, cont, val); if (procFile){ fprintf (procFile, "%d %.13e \"%s\" \"%s\" \"%s\"\n", paje_eventdefs[GTG_PAJE_EVTDEF_NewEvent].id, time, type, cont, val); FLUSH(procFile); return TRACE_SUCCESS; } return TRACE_ERR_WRITE; } trace_return_t pajeStartLink (varPrec time, const char* type, const char* cont, const char* src, const char* val , const char* key){ if (verbose) printf ("Start link: type: %s container: %s src: %s val: %s key %s\n", type, cont, src, val, key); if (procFile){ fprintf (procFile, "%d %.13e \"%s\" \"%s\" \"%s\" \"%s\" \"%s\"\n", paje_eventdefs[GTG_PAJE_EVTDEF_StartLink].id, time, type, cont, src, val, key); FLUSH(procFile); return TRACE_SUCCESS; } return TRACE_ERR_WRITE; } trace_return_t pajeEndLink (varPrec time, const char* type, const char* cont, const char* dest, const char* val , const char* key){ if (verbose) printf ("End link type: %s container: %s src: %s val: %s key %s\n", type, cont, dest, val, key); if (procFile){ fprintf (procFile, "%d %.13e \"%s\" \"%s\" \"%s\" \"%s\" \"%s\"\n", paje_eventdefs[GTG_PAJE_EVTDEF_EndLink].id, time, type, cont, dest, val, key); FLUSH(procFile); return TRACE_SUCCESS; } return TRACE_ERR_WRITE; } trace_return_t pajeSetVar (varPrec time, const char* type, const char* cont, varPrec val){ if (verbose) printf ("SetVar: type: %s container: %s value: %e\n", type, cont, val); if (procFile){ fprintf (procFile, "%d %.13e \"%s\" \"%s\" %e\n", paje_eventdefs[GTG_PAJE_EVTDEF_SetVariable].id, time, type, cont, val); FLUSH(procFile); return TRACE_SUCCESS; } return TRACE_ERR_WRITE; } trace_return_t pajeAddVar (varPrec time, const char* type, const char* cont, varPrec val){ if (verbose) printf ("AddVar: type: %s container: %s value: %e\n", type, cont, val); if (procFile){ fprintf (procFile, "%d %.13e \"%s\" \"%s\" %e\n", paje_eventdefs[GTG_PAJE_EVTDEF_AddVariable].id, time, type, cont, val); FLUSH(procFile); return TRACE_SUCCESS; } return TRACE_ERR_WRITE; } trace_return_t pajeSubVar (varPrec time, const char* type, const char* cont, varPrec val){ if (verbose) printf ("SubVar: type: %s container: %s value: %e\n", type, cont, val); if (procFile){ fprintf (procFile, "%d %.13e \"%s\" \"%s\" %e\n", paje_eventdefs[GTG_PAJE_EVTDEF_SubVariable].id, time, type, cont, val); FLUSH(procFile); return TRACE_SUCCESS; } return TRACE_ERR_WRITE; } trace_return_t pajeAddComment (const char* comment){ if (verbose) printf ("AddComment: %s\n",comment); if (procFile){ fprintf(procFile,"#%s\r\n",comment); FLUSH(procFile); return TRACE_SUCCESS; } return TRACE_ERR_WRITE; } trace_return_t pajeEndTrace (){ int size = 1; my_close (); /* Wait for all proc to finish writing their trace */ #ifdef USE_MPI if(paje_flags & GTG_FLAG_USE_MPI) { MPI_Barrier (MPI_COMM_WORLD); MPI_Comm_size (MPI_COMM_WORLD, &size); if(verbose) fprintf (stderr, "USING MPI\n"); } if (rank==0) #endif /* USE_MPI */ merge (filename, size); if (nameTmp) free (nameTmp); nameTmp = NULL; if (filename) free (filename); filename = NULL; return TRACE_SUCCESS; } trace_return_t viteEndTrace (){ my_close (); if (filename) free (filename); if (nameTmp) free (nameTmp); filename = NULL; nameTmp = NULL; return TRACE_SUCCESS; } /* * Hack that will be removed */ FILE *pajeGetProcFile() { return procFile; } #endif gtg-trace-0.2-2+dfsg/src/C/paje_header.c000066400000000000000000000246441234554746700177050ustar00rootroot00000000000000#ifdef BUILD_PAJE #define _GNU_SOURCE_ #include #include #include #ifdef USE_MPI #include #endif #include "GTG.h" #include "GTGPaje.h" int _is_paje_header_written = 0; gtg_paje_eventdef_t paje_eventdefs[GTG_PAJE_EVTDEF_NBR] = { { "PajeDefineContainerType", 0, NULL, NULL}, { "PajeDefineStateType", 1, NULL, NULL}, { "PajeDefineEventType", 2, NULL, NULL}, { "PajeDefineVariableType", 3, NULL, NULL}, { "PajeDefineLinkType", 4, NULL, NULL}, { "PajeDefineEntityValue", 5, NULL, NULL}, { "PajeCreateContainer", 7, NULL, NULL}, { "PajeDestroyContainer", 8, NULL, NULL}, { "PajeSetState", 10, NULL, NULL}, { "PajePushState", 11, NULL, NULL}, { "PajePopState", 12, NULL, NULL}, { "PajeResetState", 13, NULL, NULL}, { "PajeNewEvent", 20, NULL, NULL}, { "PajeSetVariable", 30, NULL, NULL}, { "PajeAddVariable", 31, NULL, NULL}, { "PajeSubVariable", 32, NULL, NULL}, { "PajeStartLink", 40, NULL, NULL}, { "PajeEndLink", 41, NULL, NULL}, }; char *FieldType[GTG_PAJE_FIELDTYPE_NBR] = { "int", "hex", "date", "double", "string", "color" }; #define printExtra( file, event ) \ if ( (paje_eventdefs[event].first) != NULL ) { \ gtg_paje_edp_t *e, *n; \ for( e = paje_eventdefs[event].first; e != NULL; ) { \ n = e->next; \ fprintf(file, "%% %s %s\n", e->name, FieldType[e->type]); \ e = n; \ } \ } /* * args needs to be set to 0 before the first call */ void pajeEventDefAddParam( enum gtg_paje_evtdef_e event, const char *name, enum gtg_paje_fieldtype_e type ) { gtg_paje_edp_t *node = (gtg_paje_edp_t*)malloc(sizeof(gtg_paje_edp_t)); if (_is_paje_header_written) { fprintf(stderr, "GTG [PAJE/VITE]: You cannot add parameters to definitions after the header has been written to the file\n"); return; } node->next = NULL; node->name = strdup(name); node->type = type; if( paje_eventdefs[event].first == NULL ) { paje_eventdefs[event].first = node; paje_eventdefs[event].last = node; } else { paje_eventdefs[event].last->next = node; paje_eventdefs[event].last = node; } } void pajeEventDefDeleteParams( enum gtg_paje_evtdef_e event ) { gtg_paje_edp_t *e, *n; for( e = paje_eventdefs[event].first; e != NULL; ) { n = e->next; free(e->name); free(e); e = n; } paje_eventdefs[event].first = NULL; paje_eventdefs[event].last = NULL; } void pajeEventDefClean() { int i; for(i=0; i&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 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@ @HAVE_LIBZ_TRUE@bin_PROGRAMS = gtg_compress$(EXEEXT) \ @HAVE_LIBZ_TRUE@ gtg_decompress$(EXEEXT) @FORTRAN_TRUE@am__append_1 = C/interfaceCFortranBasic1.c \ @FORTRAN_TRUE@ FORTRAN/GTGBasic1_f.f @USE_MPI_TRUE@am__append_2 = -DUSE_MPI @USE_MPI_TRUE@am__append_3 = -lmpi @HAVE_LIBZ_TRUE@am__append_4 = -DHAVE_LIBZ @HAVE_LIBZ_TRUE@am__append_5 = C/gtg_compress_core.c @HAVE_LIBZ_TRUE@am__append_6 = -lz @USE_OTF_TRUE@am__append_7 = -DBUILD_OTF $(OTFINCLUDE) @USE_OTF_TRUE@am__append_8 = C/OTF_GTGBasic1_c.c @USE_OTF_TRUE@am__append_9 = $(OTFLIBADD) @USE_OTF_FALSE@libgtg_la_DEPENDENCIES = $(am__DEPENDENCIES_1) \ @USE_OTF_FALSE@ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_3) subdir = src DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(top_srcdir)/depcomp 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) mkinstalldirs = $(install_sh) -d CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = 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__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(bindir)" LTLIBRARIES = $(lib_LTLIBRARIES) am__DEPENDENCIES_1 = @DONT_USE_INTERNAL_OTF_FALSE@@USE_OTF_TRUE@am__DEPENDENCIES_2 = $(top_builddir)/extlib/otf/otflib/libopen-trace-format.la @USE_OTF_TRUE@am__DEPENDENCIES_3 = $(am__DEPENDENCIES_2) am__libgtg_la_SOURCES_DIST = C/GTGBasic1_c.c C/GTGColor.c \ C/GTGReplay.c C/GTGMemory.c C/paje_header.c \ C/paje_GTGBasic1_c.c C/interfaceCFortranBasic1.c \ FORTRAN/GTGBasic1_f.f C/gtg_compress_core.c \ C/OTF_GTGBasic1_c.c am__dirstamp = $(am__leading_dot)dirstamp @FORTRAN_TRUE@am__objects_1 = C/libgtg_la-interfaceCFortranBasic1.lo \ @FORTRAN_TRUE@ FORTRAN/GTGBasic1_f.lo @HAVE_LIBZ_TRUE@am__objects_2 = C/libgtg_la-gtg_compress_core.lo @USE_OTF_TRUE@am__objects_3 = C/libgtg_la-OTF_GTGBasic1_c.lo am_libgtg_la_OBJECTS = C/libgtg_la-GTGBasic1_c.lo \ C/libgtg_la-GTGColor.lo C/libgtg_la-GTGReplay.lo \ C/libgtg_la-GTGMemory.lo C/libgtg_la-paje_header.lo \ C/libgtg_la-paje_GTGBasic1_c.lo $(am__objects_1) \ $(am__objects_2) $(am__objects_3) libgtg_la_OBJECTS = $(am_libgtg_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = libgtg_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=F77 $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(F77LD) $(AM_FFLAGS) $(FFLAGS) \ $(libgtg_la_LDFLAGS) $(LDFLAGS) -o $@ PROGRAMS = $(bin_PROGRAMS) am__gtg_compress_SOURCES_DIST = C/gtg_compress.c @HAVE_LIBZ_TRUE@am_gtg_compress_OBJECTS = \ @HAVE_LIBZ_TRUE@ C/gtg_compress-gtg_compress.$(OBJEXT) gtg_compress_OBJECTS = $(am_gtg_compress_OBJECTS) @HAVE_LIBZ_TRUE@gtg_compress_DEPENDENCIES = libgtg.la am__gtg_decompress_SOURCES_DIST = C/gtg_decompress.c @HAVE_LIBZ_TRUE@am_gtg_decompress_OBJECTS = \ @HAVE_LIBZ_TRUE@ C/gtg_decompress-gtg_decompress.$(OBJEXT) gtg_decompress_OBJECTS = $(am_gtg_decompress_OBJECTS) @HAVE_LIBZ_TRUE@gtg_decompress_DEPENDENCIES = libgtg.la AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ depcomp = $(SHELL) $(top_srcdir)/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = F77COMPILE = $(F77) $(AM_FFLAGS) $(FFLAGS) LTF77COMPILE = $(LIBTOOL) $(AM_V_lt) --tag=F77 $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) AM_V_F77 = $(am__v_F77_@AM_V@) am__v_F77_ = $(am__v_F77_@AM_DEFAULT_V@) am__v_F77_0 = @echo " F77 " $@; am__v_F77_1 = F77LD = $(F77) F77LINK = $(LIBTOOL) $(AM_V_lt) --tag=F77 $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(F77LD) $(AM_FFLAGS) $(FFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_F77LD = $(am__v_F77LD_@AM_V@) am__v_F77LD_ = $(am__v_F77LD_@AM_DEFAULT_V@) am__v_F77LD_0 = @echo " F77LD " $@; am__v_F77LD_1 = SOURCES = $(libgtg_la_SOURCES) $(gtg_compress_SOURCES) \ $(gtg_decompress_SOURCES) DIST_SOURCES = $(am__libgtg_la_SOURCES_DIST) \ $(am__gtg_compress_SOURCES_DIST) \ $(am__gtg_decompress_SOURCES_DIST) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ F77 = @F77@ FFLAGS = @FFLAGS@ FGREP = @FGREP@ GREP = @GREP@ HAVE_DOXYGEN = @HAVE_DOXYGEN@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MPIDIR = @MPIDIR@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTFDIR = @OTFDIR@ OTF_INC = @OTF_INC@ OTF_LIB = @OTF_LIB@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ 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@ PDFLATEX = @PDFLATEX@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_MPIDIR_FROM_USER = @USE_MPIDIR_FROM_USER@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ ac_ct_F77 = @ac_ct_F77@ 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@ subdirs = @subdirs@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ # todo: # cpaje_SOURCES = paje_example.c # cpaje_LDADD = libgtg.la @LIBS@ lib_LTLIBRARIES = libgtg.la libgtg_la_CPPFLAGS = -I$(srcdir)/../inc/ libgtg_la_CFLAGS = -Wall -pedantic -DBUILD_PAJE $(am__append_2) \ $(am__append_4) $(am__append_7) libgtg_la_LIBADD = $(am__append_3) $(am__append_6) $(am__append_9) libgtg_la_LDFLAGS = --no-undefined libgtg_la_SOURCES = C/GTGBasic1_c.c C/GTGColor.c C/GTGReplay.c \ C/GTGMemory.c C/paje_header.c C/paje_GTGBasic1_c.c \ $(am__append_1) $(am__append_5) $(am__append_8) @DONT_USE_INTERNAL_OTF_FALSE@@USE_OTF_TRUE@OTFINCLUDE = -I$(top_srcdir)/extlib/otf/otflib -I$(top_builddir)/extlib/otf/otflib @DONT_USE_INTERNAL_OTF_TRUE@@USE_OTF_TRUE@OTFINCLUDE = @DONT_USE_INTERNAL_OTF_FALSE@@USE_OTF_TRUE@OTFLIBADD = $(top_builddir)/extlib/otf/otflib/libopen-trace-format.la @DONT_USE_INTERNAL_OTF_TRUE@@USE_OTF_TRUE@OTFLIBADD = -lopen-trace-format @DONT_USE_INTERNAL_OTF_FALSE@@USE_OTF_TRUE@OTFDEPENDENCIES = $(OTFLIBADD) @DONT_USE_INTERNAL_OTF_TRUE@@USE_OTF_TRUE@OTFDEPENDENCIES = @USE_OTF_TRUE@libgtg_la_DEPENDENCIES = $(OTFDEPENDENCIES) @HAVE_LIBZ_TRUE@gtg_compress_SOURCES = C/gtg_compress.c @HAVE_LIBZ_TRUE@gtg_compress_LDADD = -lz libgtg.la @HAVE_LIBZ_TRUE@gtg_compress_CPPFLAGS = -I$(srcdir)/../inc/ @HAVE_LIBZ_TRUE@gtg_decompress_SOURCES = C/gtg_decompress.c @HAVE_LIBZ_TRUE@gtg_decompress_LDADD = -lz libgtg.la @HAVE_LIBZ_TRUE@gtg_decompress_CPPFLAGS = -I$(srcdir)/../inc/ all: all-am .SUFFIXES: .SUFFIXES: .c .f .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu src/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): install-libLTLIBRARIES: $(lib_LTLIBRARIES) @$(NORMAL_INSTALL) @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ list2=; for p in $$list; do \ if test -f $$p; then \ list2="$$list2 $$p"; \ else :; fi; \ done; \ test -z "$$list2" || { \ echo " $(MKDIR_P) '$(DESTDIR)$(libdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(libdir)" || exit 1; \ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \ } uninstall-libLTLIBRARIES: @$(NORMAL_UNINSTALL) @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ for p in $$list; do \ $(am__strip_dir) \ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \ done clean-libLTLIBRARIES: -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) @list='$(lib_LTLIBRARIES)'; \ locs=`for p in $$list; do echo $$p; done | \ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ sort -u`; \ test -z "$$locs" || { \ echo rm -f $${locs}; \ rm -f $${locs}; \ } C/$(am__dirstamp): @$(MKDIR_P) C @: > C/$(am__dirstamp) C/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) C/$(DEPDIR) @: > C/$(DEPDIR)/$(am__dirstamp) C/libgtg_la-GTGBasic1_c.lo: C/$(am__dirstamp) \ C/$(DEPDIR)/$(am__dirstamp) C/libgtg_la-GTGColor.lo: C/$(am__dirstamp) C/$(DEPDIR)/$(am__dirstamp) C/libgtg_la-GTGReplay.lo: C/$(am__dirstamp) \ C/$(DEPDIR)/$(am__dirstamp) C/libgtg_la-GTGMemory.lo: C/$(am__dirstamp) \ C/$(DEPDIR)/$(am__dirstamp) C/libgtg_la-paje_header.lo: C/$(am__dirstamp) \ C/$(DEPDIR)/$(am__dirstamp) C/libgtg_la-paje_GTGBasic1_c.lo: C/$(am__dirstamp) \ C/$(DEPDIR)/$(am__dirstamp) C/libgtg_la-interfaceCFortranBasic1.lo: C/$(am__dirstamp) \ C/$(DEPDIR)/$(am__dirstamp) FORTRAN/$(am__dirstamp): @$(MKDIR_P) FORTRAN @: > FORTRAN/$(am__dirstamp) FORTRAN/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) FORTRAN/$(DEPDIR) @: > FORTRAN/$(DEPDIR)/$(am__dirstamp) FORTRAN/GTGBasic1_f.lo: FORTRAN/$(am__dirstamp) \ FORTRAN/$(DEPDIR)/$(am__dirstamp) C/libgtg_la-gtg_compress_core.lo: C/$(am__dirstamp) \ C/$(DEPDIR)/$(am__dirstamp) C/libgtg_la-OTF_GTGBasic1_c.lo: C/$(am__dirstamp) \ C/$(DEPDIR)/$(am__dirstamp) libgtg.la: $(libgtg_la_OBJECTS) $(libgtg_la_DEPENDENCIES) $(EXTRA_libgtg_la_DEPENDENCIES) $(AM_V_F77LD)$(libgtg_la_LINK) -rpath $(libdir) $(libgtg_la_OBJECTS) $(libgtg_la_LIBADD) $(LIBS) install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ fi; \ for p in $$list; do echo "$$p $$p"; done | \ sed 's/$(EXEEXT)$$//' | \ while read p p1; do if test -f $$p \ || test -f $$p1 \ ; then echo "$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n;h' \ -e 's|.*|.|' \ -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) files[d] = files[d] " " $$1; \ else { print "f", $$3 "/" $$4, $$1; } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ } \ ; done uninstall-binPROGRAMS: @$(NORMAL_UNINSTALL) @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ -e 's/$$/$(EXEEXT)/' \ `; \ test -n "$$list" || exit 0; \ echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(bindir)" && rm -f $$files clean-binPROGRAMS: @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ echo " rm -f" $$list; \ rm -f $$list || exit $$?; \ test -n "$(EXEEXT)" || exit 0; \ list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ echo " rm -f" $$list; \ rm -f $$list C/gtg_compress-gtg_compress.$(OBJEXT): C/$(am__dirstamp) \ C/$(DEPDIR)/$(am__dirstamp) gtg_compress$(EXEEXT): $(gtg_compress_OBJECTS) $(gtg_compress_DEPENDENCIES) $(EXTRA_gtg_compress_DEPENDENCIES) @rm -f gtg_compress$(EXEEXT) $(AM_V_CCLD)$(LINK) $(gtg_compress_OBJECTS) $(gtg_compress_LDADD) $(LIBS) C/gtg_decompress-gtg_decompress.$(OBJEXT): C/$(am__dirstamp) \ C/$(DEPDIR)/$(am__dirstamp) gtg_decompress$(EXEEXT): $(gtg_decompress_OBJECTS) $(gtg_decompress_DEPENDENCIES) $(EXTRA_gtg_decompress_DEPENDENCIES) @rm -f gtg_decompress$(EXEEXT) $(AM_V_CCLD)$(LINK) $(gtg_decompress_OBJECTS) $(gtg_decompress_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) -rm -f C/*.$(OBJEXT) -rm -f C/*.lo -rm -f FORTRAN/*.$(OBJEXT) -rm -f FORTRAN/*.lo distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@C/$(DEPDIR)/gtg_compress-gtg_compress.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@C/$(DEPDIR)/gtg_decompress-gtg_decompress.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@C/$(DEPDIR)/libgtg_la-GTGBasic1_c.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@C/$(DEPDIR)/libgtg_la-GTGColor.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@C/$(DEPDIR)/libgtg_la-GTGMemory.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@C/$(DEPDIR)/libgtg_la-GTGReplay.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@C/$(DEPDIR)/libgtg_la-OTF_GTGBasic1_c.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@C/$(DEPDIR)/libgtg_la-gtg_compress_core.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@C/$(DEPDIR)/libgtg_la-interfaceCFortranBasic1.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@C/$(DEPDIR)/libgtg_la-paje_GTGBasic1_c.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@C/$(DEPDIR)/libgtg_la-paje_header.Plo@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< C/libgtg_la-GTGBasic1_c.lo: C/GTGBasic1_c.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgtg_la_CPPFLAGS) $(CPPFLAGS) $(libgtg_la_CFLAGS) $(CFLAGS) -MT C/libgtg_la-GTGBasic1_c.lo -MD -MP -MF C/$(DEPDIR)/libgtg_la-GTGBasic1_c.Tpo -c -o C/libgtg_la-GTGBasic1_c.lo `test -f 'C/GTGBasic1_c.c' || echo '$(srcdir)/'`C/GTGBasic1_c.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) C/$(DEPDIR)/libgtg_la-GTGBasic1_c.Tpo C/$(DEPDIR)/libgtg_la-GTGBasic1_c.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='C/GTGBasic1_c.c' object='C/libgtg_la-GTGBasic1_c.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgtg_la_CPPFLAGS) $(CPPFLAGS) $(libgtg_la_CFLAGS) $(CFLAGS) -c -o C/libgtg_la-GTGBasic1_c.lo `test -f 'C/GTGBasic1_c.c' || echo '$(srcdir)/'`C/GTGBasic1_c.c C/libgtg_la-GTGColor.lo: C/GTGColor.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgtg_la_CPPFLAGS) $(CPPFLAGS) $(libgtg_la_CFLAGS) $(CFLAGS) -MT C/libgtg_la-GTGColor.lo -MD -MP -MF C/$(DEPDIR)/libgtg_la-GTGColor.Tpo -c -o C/libgtg_la-GTGColor.lo `test -f 'C/GTGColor.c' || echo '$(srcdir)/'`C/GTGColor.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) C/$(DEPDIR)/libgtg_la-GTGColor.Tpo C/$(DEPDIR)/libgtg_la-GTGColor.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='C/GTGColor.c' object='C/libgtg_la-GTGColor.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgtg_la_CPPFLAGS) $(CPPFLAGS) $(libgtg_la_CFLAGS) $(CFLAGS) -c -o C/libgtg_la-GTGColor.lo `test -f 'C/GTGColor.c' || echo '$(srcdir)/'`C/GTGColor.c C/libgtg_la-GTGReplay.lo: C/GTGReplay.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgtg_la_CPPFLAGS) $(CPPFLAGS) $(libgtg_la_CFLAGS) $(CFLAGS) -MT C/libgtg_la-GTGReplay.lo -MD -MP -MF C/$(DEPDIR)/libgtg_la-GTGReplay.Tpo -c -o C/libgtg_la-GTGReplay.lo `test -f 'C/GTGReplay.c' || echo '$(srcdir)/'`C/GTGReplay.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) C/$(DEPDIR)/libgtg_la-GTGReplay.Tpo C/$(DEPDIR)/libgtg_la-GTGReplay.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='C/GTGReplay.c' object='C/libgtg_la-GTGReplay.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgtg_la_CPPFLAGS) $(CPPFLAGS) $(libgtg_la_CFLAGS) $(CFLAGS) -c -o C/libgtg_la-GTGReplay.lo `test -f 'C/GTGReplay.c' || echo '$(srcdir)/'`C/GTGReplay.c C/libgtg_la-GTGMemory.lo: C/GTGMemory.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgtg_la_CPPFLAGS) $(CPPFLAGS) $(libgtg_la_CFLAGS) $(CFLAGS) -MT C/libgtg_la-GTGMemory.lo -MD -MP -MF C/$(DEPDIR)/libgtg_la-GTGMemory.Tpo -c -o C/libgtg_la-GTGMemory.lo `test -f 'C/GTGMemory.c' || echo '$(srcdir)/'`C/GTGMemory.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) C/$(DEPDIR)/libgtg_la-GTGMemory.Tpo C/$(DEPDIR)/libgtg_la-GTGMemory.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='C/GTGMemory.c' object='C/libgtg_la-GTGMemory.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgtg_la_CPPFLAGS) $(CPPFLAGS) $(libgtg_la_CFLAGS) $(CFLAGS) -c -o C/libgtg_la-GTGMemory.lo `test -f 'C/GTGMemory.c' || echo '$(srcdir)/'`C/GTGMemory.c C/libgtg_la-paje_header.lo: C/paje_header.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgtg_la_CPPFLAGS) $(CPPFLAGS) $(libgtg_la_CFLAGS) $(CFLAGS) -MT C/libgtg_la-paje_header.lo -MD -MP -MF C/$(DEPDIR)/libgtg_la-paje_header.Tpo -c -o C/libgtg_la-paje_header.lo `test -f 'C/paje_header.c' || echo '$(srcdir)/'`C/paje_header.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) C/$(DEPDIR)/libgtg_la-paje_header.Tpo C/$(DEPDIR)/libgtg_la-paje_header.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='C/paje_header.c' object='C/libgtg_la-paje_header.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgtg_la_CPPFLAGS) $(CPPFLAGS) $(libgtg_la_CFLAGS) $(CFLAGS) -c -o C/libgtg_la-paje_header.lo `test -f 'C/paje_header.c' || echo '$(srcdir)/'`C/paje_header.c C/libgtg_la-paje_GTGBasic1_c.lo: C/paje_GTGBasic1_c.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgtg_la_CPPFLAGS) $(CPPFLAGS) $(libgtg_la_CFLAGS) $(CFLAGS) -MT C/libgtg_la-paje_GTGBasic1_c.lo -MD -MP -MF C/$(DEPDIR)/libgtg_la-paje_GTGBasic1_c.Tpo -c -o C/libgtg_la-paje_GTGBasic1_c.lo `test -f 'C/paje_GTGBasic1_c.c' || echo '$(srcdir)/'`C/paje_GTGBasic1_c.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) C/$(DEPDIR)/libgtg_la-paje_GTGBasic1_c.Tpo C/$(DEPDIR)/libgtg_la-paje_GTGBasic1_c.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='C/paje_GTGBasic1_c.c' object='C/libgtg_la-paje_GTGBasic1_c.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgtg_la_CPPFLAGS) $(CPPFLAGS) $(libgtg_la_CFLAGS) $(CFLAGS) -c -o C/libgtg_la-paje_GTGBasic1_c.lo `test -f 'C/paje_GTGBasic1_c.c' || echo '$(srcdir)/'`C/paje_GTGBasic1_c.c C/libgtg_la-interfaceCFortranBasic1.lo: C/interfaceCFortranBasic1.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgtg_la_CPPFLAGS) $(CPPFLAGS) $(libgtg_la_CFLAGS) $(CFLAGS) -MT C/libgtg_la-interfaceCFortranBasic1.lo -MD -MP -MF C/$(DEPDIR)/libgtg_la-interfaceCFortranBasic1.Tpo -c -o C/libgtg_la-interfaceCFortranBasic1.lo `test -f 'C/interfaceCFortranBasic1.c' || echo '$(srcdir)/'`C/interfaceCFortranBasic1.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) C/$(DEPDIR)/libgtg_la-interfaceCFortranBasic1.Tpo C/$(DEPDIR)/libgtg_la-interfaceCFortranBasic1.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='C/interfaceCFortranBasic1.c' object='C/libgtg_la-interfaceCFortranBasic1.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgtg_la_CPPFLAGS) $(CPPFLAGS) $(libgtg_la_CFLAGS) $(CFLAGS) -c -o C/libgtg_la-interfaceCFortranBasic1.lo `test -f 'C/interfaceCFortranBasic1.c' || echo '$(srcdir)/'`C/interfaceCFortranBasic1.c C/libgtg_la-gtg_compress_core.lo: C/gtg_compress_core.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgtg_la_CPPFLAGS) $(CPPFLAGS) $(libgtg_la_CFLAGS) $(CFLAGS) -MT C/libgtg_la-gtg_compress_core.lo -MD -MP -MF C/$(DEPDIR)/libgtg_la-gtg_compress_core.Tpo -c -o C/libgtg_la-gtg_compress_core.lo `test -f 'C/gtg_compress_core.c' || echo '$(srcdir)/'`C/gtg_compress_core.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) C/$(DEPDIR)/libgtg_la-gtg_compress_core.Tpo C/$(DEPDIR)/libgtg_la-gtg_compress_core.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='C/gtg_compress_core.c' object='C/libgtg_la-gtg_compress_core.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgtg_la_CPPFLAGS) $(CPPFLAGS) $(libgtg_la_CFLAGS) $(CFLAGS) -c -o C/libgtg_la-gtg_compress_core.lo `test -f 'C/gtg_compress_core.c' || echo '$(srcdir)/'`C/gtg_compress_core.c C/libgtg_la-OTF_GTGBasic1_c.lo: C/OTF_GTGBasic1_c.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgtg_la_CPPFLAGS) $(CPPFLAGS) $(libgtg_la_CFLAGS) $(CFLAGS) -MT C/libgtg_la-OTF_GTGBasic1_c.lo -MD -MP -MF C/$(DEPDIR)/libgtg_la-OTF_GTGBasic1_c.Tpo -c -o C/libgtg_la-OTF_GTGBasic1_c.lo `test -f 'C/OTF_GTGBasic1_c.c' || echo '$(srcdir)/'`C/OTF_GTGBasic1_c.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) C/$(DEPDIR)/libgtg_la-OTF_GTGBasic1_c.Tpo C/$(DEPDIR)/libgtg_la-OTF_GTGBasic1_c.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='C/OTF_GTGBasic1_c.c' object='C/libgtg_la-OTF_GTGBasic1_c.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgtg_la_CPPFLAGS) $(CPPFLAGS) $(libgtg_la_CFLAGS) $(CFLAGS) -c -o C/libgtg_la-OTF_GTGBasic1_c.lo `test -f 'C/OTF_GTGBasic1_c.c' || echo '$(srcdir)/'`C/OTF_GTGBasic1_c.c C/gtg_compress-gtg_compress.o: C/gtg_compress.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gtg_compress_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT C/gtg_compress-gtg_compress.o -MD -MP -MF C/$(DEPDIR)/gtg_compress-gtg_compress.Tpo -c -o C/gtg_compress-gtg_compress.o `test -f 'C/gtg_compress.c' || echo '$(srcdir)/'`C/gtg_compress.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) C/$(DEPDIR)/gtg_compress-gtg_compress.Tpo C/$(DEPDIR)/gtg_compress-gtg_compress.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='C/gtg_compress.c' object='C/gtg_compress-gtg_compress.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gtg_compress_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o C/gtg_compress-gtg_compress.o `test -f 'C/gtg_compress.c' || echo '$(srcdir)/'`C/gtg_compress.c C/gtg_compress-gtg_compress.obj: C/gtg_compress.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gtg_compress_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT C/gtg_compress-gtg_compress.obj -MD -MP -MF C/$(DEPDIR)/gtg_compress-gtg_compress.Tpo -c -o C/gtg_compress-gtg_compress.obj `if test -f 'C/gtg_compress.c'; then $(CYGPATH_W) 'C/gtg_compress.c'; else $(CYGPATH_W) '$(srcdir)/C/gtg_compress.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) C/$(DEPDIR)/gtg_compress-gtg_compress.Tpo C/$(DEPDIR)/gtg_compress-gtg_compress.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='C/gtg_compress.c' object='C/gtg_compress-gtg_compress.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gtg_compress_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o C/gtg_compress-gtg_compress.obj `if test -f 'C/gtg_compress.c'; then $(CYGPATH_W) 'C/gtg_compress.c'; else $(CYGPATH_W) '$(srcdir)/C/gtg_compress.c'; fi` C/gtg_decompress-gtg_decompress.o: C/gtg_decompress.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gtg_decompress_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT C/gtg_decompress-gtg_decompress.o -MD -MP -MF C/$(DEPDIR)/gtg_decompress-gtg_decompress.Tpo -c -o C/gtg_decompress-gtg_decompress.o `test -f 'C/gtg_decompress.c' || echo '$(srcdir)/'`C/gtg_decompress.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) C/$(DEPDIR)/gtg_decompress-gtg_decompress.Tpo C/$(DEPDIR)/gtg_decompress-gtg_decompress.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='C/gtg_decompress.c' object='C/gtg_decompress-gtg_decompress.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gtg_decompress_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o C/gtg_decompress-gtg_decompress.o `test -f 'C/gtg_decompress.c' || echo '$(srcdir)/'`C/gtg_decompress.c C/gtg_decompress-gtg_decompress.obj: C/gtg_decompress.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gtg_decompress_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT C/gtg_decompress-gtg_decompress.obj -MD -MP -MF C/$(DEPDIR)/gtg_decompress-gtg_decompress.Tpo -c -o C/gtg_decompress-gtg_decompress.obj `if test -f 'C/gtg_decompress.c'; then $(CYGPATH_W) 'C/gtg_decompress.c'; else $(CYGPATH_W) '$(srcdir)/C/gtg_decompress.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) C/$(DEPDIR)/gtg_decompress-gtg_decompress.Tpo C/$(DEPDIR)/gtg_decompress-gtg_decompress.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='C/gtg_decompress.c' object='C/gtg_decompress-gtg_decompress.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gtg_decompress_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o C/gtg_decompress-gtg_decompress.obj `if test -f 'C/gtg_decompress.c'; then $(CYGPATH_W) 'C/gtg_decompress.c'; else $(CYGPATH_W) '$(srcdir)/C/gtg_decompress.c'; fi` .f.o: $(AM_V_F77)$(F77COMPILE) -c -o $@ $< .f.obj: $(AM_V_F77)$(F77COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .f.lo: $(AM_V_F77)$(LTF77COMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs -rm -rf C/.libs C/_libs -rm -rf FORTRAN/.libs FORTRAN/_libs ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ 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-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ 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" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @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 check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) install-binPROGRAMS: install-libLTLIBRARIES installdirs: for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(bindir)"; 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: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: 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) -rm -f C/$(DEPDIR)/$(am__dirstamp) -rm -f C/$(am__dirstamp) -rm -f FORTRAN/$(DEPDIR)/$(am__dirstamp) -rm -f FORTRAN/$(am__dirstamp) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-binPROGRAMS clean-generic clean-libLTLIBRARIES \ clean-libtool mostlyclean-am distclean: distclean-am -rm -rf C/$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-binPROGRAMS install-libLTLIBRARIES 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 -rf C/$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-binPROGRAMS uninstall-libLTLIBRARIES .MAKE: install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \ clean-binPROGRAMS clean-generic clean-libLTLIBRARIES \ clean-libtool cscopelist-am ctags ctags-am distclean \ distclean-compile distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ install install-am install-binPROGRAMS 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-libLTLIBRARIES install-man install-pdf \ install-pdf-am install-ps install-ps-am install-strip \ installcheck installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags tags-am uninstall uninstall-am uninstall-binPROGRAMS \ uninstall-libLTLIBRARIES #noinst_HEADERS = ev_codes.h #include_HEADERS = GTGBasic.h GTGOTF_Basic.h GTGPaje_Color.h GTGPaje_Basic.h GTGtypes.h # 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: