From ba5eba58497eecc41ebcd6c15a7b5f5542ceb6be Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rafa=C5=82=20D=C5=82ugo=C5=82=C4=99cki?= Date: Thu, 7 Jan 2016 23:45:25 +0100 Subject: [PATCH 1/1] Initial commit --- .gitignore | 2 + Makefile.am | 17 + Makefile.in | 1068 ++ README.build.txt | 38 + acinclude.m4 | 321 + aclocal.m4 | 1155 ++ aminclude.am | 186 + autogen.sh | 9 + compile | 347 + config.guess | 1420 +++ config.h.in | 74 + config.sub | 1799 +++ configure | 20885 +++++++++++++++++++++++++++++++++ configure.ac | 45 + depcomp | 791 ++ doc/doxygen_sqlite3.db | Bin 0 -> 1112064 bytes doc/xplus-gno.tag | 19124 ++++++++++++++++++++++++++++++ doxygen.cfg | 2354 ++++ doxygen.cfg.bak | 1553 +++ include/Makefile.am | 2 + include/Makefile.in | 578 + include/libgno/Document.h | 53 + include/libgno/GenoPro.h | 13413 +++++++++++++++++++++ include/libgno/all-include.h | 22 + install-sh | 527 + ltmain.sh | 9661 +++++++++++++++ m4/libtool.m4 | 7997 +++++++++++++ m4/ltoptions.m4 | 384 + m4/ltsugar.m4 | 123 + m4/ltversion.m4 | 23 + m4/lt~obsolete.m4 | 98 + main.cpp | 51 + missing | 215 + src/Makefile.am | 7 + src/Makefile.in | 680 ++ src/libgno/Document.cpp | 78 + src/libgno/GenoPro.cpp | 16856 ++++++++++++++++++++++++++ 37 files changed, 101956 insertions(+) create mode 100644 .gitignore create mode 100644 Makefile.am create mode 100644 Makefile.in create mode 100644 README.build.txt create mode 100644 acinclude.m4 create mode 100644 aclocal.m4 create mode 100644 aminclude.am create mode 100755 autogen.sh create mode 100755 compile create mode 100755 config.guess create mode 100644 config.h.in create mode 100755 config.sub create mode 100755 configure create mode 100644 configure.ac create mode 100755 depcomp create mode 100644 doc/doxygen_sqlite3.db create mode 100644 doc/xplus-gno.tag create mode 100644 doxygen.cfg create mode 100644 doxygen.cfg.bak create mode 100644 include/Makefile.am create mode 100644 include/Makefile.in create mode 100644 include/libgno/Document.h create mode 100644 include/libgno/GenoPro.h create mode 100644 include/libgno/all-include.h create mode 100755 install-sh create mode 100644 ltmain.sh create mode 100644 m4/libtool.m4 create mode 100644 m4/ltoptions.m4 create mode 100644 m4/ltsugar.m4 create mode 100644 m4/ltversion.m4 create mode 100644 m4/lt~obsolete.m4 create mode 100644 main.cpp create mode 100755 missing create mode 100644 src/Makefile.am create mode 100644 src/Makefile.in create mode 100644 src/libgno/Document.cpp create mode 100644 src/libgno/GenoPro.cpp diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7606c67 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +autom4te.cache +doc/html diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..6424581 --- /dev/null +++ b/Makefile.am @@ -0,0 +1,17 @@ +# DOXYGEN SUPPORT +include $(top_srcdir)/aminclude.am + +# ensure the distribution of the doxygen configuration file +EXTRA_DIST = doxygen.cfg + +ACLOCAL_AMFLAGS = -I m4 +AUTOMAKE_OPTIONS = foreign +SUBDIRS = src include + +AM_CXXFLAGS= -I/usr/local/include -I$(top_srcdir)/include + +bin_PROGRAMS=gnorun +gnorun_SOURCES=main.cpp + +gnorun_LDADD = $(top_srcdir)/src/libgno.la /usr/local/lib/libxsdall.la +gnorun_LDFLAGS = -lexpat diff --git a/Makefile.in b/Makefile.in new file mode 100644 index 0000000..fff0996 --- /dev/null +++ b/Makefile.in @@ -0,0 +1,1068 @@ +# 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 (C) 2004 Oren Ben-Kiki +# This file is distributed under the same terms as the Automake macro files. + +# Generate automatic documentation using Doxygen. Goals and variables values +# are controlled by the various DX_COND_??? conditionals set by autoconf. +# +# The provided goals are: +# doxygen-doc: Generate all doxygen documentation. +# doxygen-run: Run doxygen, which will generate some of the documentation +# (HTML, CHM, CHI, MAN, RTF, XML) but will not do the post +# processing required for the rest of it (PS, PDF, and some MAN). +# doxygen-man: Rename some doxygen generated man pages. +# doxygen-ps: Generate doxygen PostScript documentation. +# doxygen-pdf: Generate doxygen PDF documentation. +# +# Note that by default these are not integrated into the automake goals. If +# doxygen is used to generate man pages, you can achieve this integration by +# setting man3_MANS to the list of man pages generated and then adding the +# dependency: +# +# $(man3_MANS): doxygen-doc +# +# This will cause make to run doxygen and generate all the documentation. +# +# The following variable is intended for use in Makefile.am: +# +# DX_CLEANFILES = everything to clean. +# +# This is usually added to MOSTLYCLEANFILES. + +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@ +DIST_COMMON = $(top_srcdir)/aminclude.am $(srcdir)/Makefile.in \ + $(srcdir)/Makefile.am $(top_srcdir)/configure \ + $(am__configure_deps) $(srcdir)/config.h.in depcomp compile \ + config.guess config.sub install-sh missing ltmain.sh +bin_PROGRAMS = gnorun$(EXEEXT) +subdir = . +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \ + $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ + $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ + $(top_srcdir)/acinclude.m4 $(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_HEADER = config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +am__installdirs = "$(DESTDIR)$(bindir)" +PROGRAMS = $(bin_PROGRAMS) +am_gnorun_OBJECTS = main.$(OBJEXT) +gnorun_OBJECTS = $(am_gnorun_OBJECTS) +gnorun_DEPENDENCIES = $(top_srcdir)/src/libgno.la \ + /usr/local/lib/libxsdall.la +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 = +gnorun_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ + $(CXXFLAGS) $(gnorun_LDFLAGS) $(LDFLAGS) -o $@ +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 +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CXXFLAGS) $(CXXFLAGS) +AM_V_CXX = $(am__v_CXX_@AM_V@) +am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@) +am__v_CXX_0 = @echo " CXX " $@; +am__v_CXX_1 = +CXXLD = $(CXX) +CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ + $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CXXLD = $(am__v_CXXLD_@AM_V@) +am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@) +am__v_CXXLD_0 = @echo " CXXLD " $@; +am__v_CXXLD_1 = +SOURCES = $(gnorun_SOURCES) +DIST_SOURCES = $(gnorun_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 \ + cscope distdir dist dist-all distcheck +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \ + $(LISP)config.h.in +# 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@ +CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DLLTOOL = @DLLTOOL@ +DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +DX_CONFIG = @DX_CONFIG@ +DX_DOCDIR = @DX_DOCDIR@ +DX_DOT = @DX_DOT@ +DX_DOXYGEN = @DX_DOXYGEN@ +DX_DVIPS = @DX_DVIPS@ +DX_EGREP = @DX_EGREP@ +DX_ENV = @DX_ENV@ +DX_FLAG_DX_CURRENT_FEATURE = @DX_FLAG_DX_CURRENT_FEATURE@ +DX_FLAG_chi = @DX_FLAG_chi@ +DX_FLAG_chm = @DX_FLAG_chm@ +DX_FLAG_doc = @DX_FLAG_doc@ +DX_FLAG_dot = @DX_FLAG_dot@ +DX_FLAG_html = @DX_FLAG_html@ +DX_FLAG_man = @DX_FLAG_man@ +DX_FLAG_pdf = @DX_FLAG_pdf@ +DX_FLAG_ps = @DX_FLAG_ps@ +DX_FLAG_rtf = @DX_FLAG_rtf@ +DX_FLAG_xml = @DX_FLAG_xml@ +DX_HHC = @DX_HHC@ +DX_LATEX = @DX_LATEX@ +DX_MAKEINDEX = @DX_MAKEINDEX@ +DX_PDFLATEX = @DX_PDFLATEX@ +DX_PERL = @DX_PERL@ +DX_PROJECT = @DX_PROJECT@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +GREP = @GREP@ +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@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +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@ +RANLIB = @RANLIB@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +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_CXX = @ac_ct_CXX@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +@DX_COND_doc_TRUE@@DX_COND_html_TRUE@DX_CLEAN_HTML = @DX_DOCDIR@/html +@DX_COND_chm_TRUE@@DX_COND_doc_TRUE@DX_CLEAN_CHM = @DX_DOCDIR@/chm +@DX_COND_chi_TRUE@@DX_COND_chm_TRUE@@DX_COND_doc_TRUE@DX_CLEAN_CHI = @DX_DOCDIR@/@PACKAGE@.chi +@DX_COND_doc_TRUE@@DX_COND_man_TRUE@DX_CLEAN_MAN = @DX_DOCDIR@/man +@DX_COND_doc_TRUE@@DX_COND_rtf_TRUE@DX_CLEAN_RTF = @DX_DOCDIR@/rtf +@DX_COND_doc_TRUE@@DX_COND_xml_TRUE@DX_CLEAN_XML = @DX_DOCDIR@/xml +@DX_COND_doc_TRUE@@DX_COND_ps_TRUE@DX_CLEAN_PS = @DX_DOCDIR@/@PACKAGE@.ps +@DX_COND_doc_TRUE@@DX_COND_ps_TRUE@DX_PS_GOAL = doxygen-ps +@DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@DX_CLEAN_PDF = @DX_DOCDIR@/@PACKAGE@.pdf +@DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@DX_PDF_GOAL = doxygen-pdf +@DX_COND_doc_TRUE@@DX_COND_latex_TRUE@DX_CLEAN_LATEX = @DX_DOCDIR@/latex +@DX_COND_doc_TRUE@DX_CLEANFILES = \ +@DX_COND_doc_TRUE@ @DX_DOCDIR@/@PACKAGE@.tag \ +@DX_COND_doc_TRUE@ -r \ +@DX_COND_doc_TRUE@ $(DX_CLEAN_HTML) \ +@DX_COND_doc_TRUE@ $(DX_CLEAN_CHM) \ +@DX_COND_doc_TRUE@ $(DX_CLEAN_CHI) \ +@DX_COND_doc_TRUE@ $(DX_CLEAN_MAN) \ +@DX_COND_doc_TRUE@ $(DX_CLEAN_RTF) \ +@DX_COND_doc_TRUE@ $(DX_CLEAN_XML) \ +@DX_COND_doc_TRUE@ $(DX_CLEAN_PS) \ +@DX_COND_doc_TRUE@ $(DX_CLEAN_PDF) \ +@DX_COND_doc_TRUE@ $(DX_CLEAN_LATEX) + + +# DOXYGEN SUPPORT + +# ensure the distribution of the doxygen configuration file +EXTRA_DIST = doxygen.cfg +ACLOCAL_AMFLAGS = -I m4 +AUTOMAKE_OPTIONS = foreign +SUBDIRS = src include +AM_CXXFLAGS = -I/usr/local/include -I$(top_srcdir)/include +gnorun_SOURCES = main.cpp +gnorun_LDADD = $(top_srcdir)/src/libgno.la /usr/local/lib/libxsdall.la +gnorun_LDFLAGS = -lexpat +all: config.h + $(MAKE) $(AM_MAKEFLAGS) all-recursive + +.SUFFIXES: +.SUFFIXES: .cpp .lo .o .obj +am--refresh: Makefile + @: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/aminclude.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \ + $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + echo ' $(SHELL) ./config.status'; \ + $(SHELL) ./config.status;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \ + esac; +$(top_srcdir)/aminclude.am: + +$(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): + +config.h: stamp-h1 + @test -f $@ || rm -f stamp-h1 + @test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h1 + +stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status + @rm -f stamp-h1 + cd $(top_builddir) && $(SHELL) ./config.status config.h +$(srcdir)/config.h.in: $(am__configure_deps) + ($(am__cd) $(top_srcdir) && $(AUTOHEADER)) + rm -f stamp-h1 + touch $@ + +distclean-hdr: + -rm -f config.h stamp-h1 +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 + +gnorun$(EXEEXT): $(gnorun_OBJECTS) $(gnorun_DEPENDENCIES) $(EXTRA_gnorun_DEPENDENCIES) + @rm -f gnorun$(EXEEXT) + $(AM_V_CXXLD)$(gnorun_LINK) $(gnorun_OBJECTS) $(gnorun_LDADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/main.Po@am__quote@ + +.cpp.o: +@am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ +@am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< + +.cpp.obj: +@am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ +@am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.cpp.lo: +@am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ +@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ +@am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +distclean-libtool: + -rm -f libtool config.lt + +# 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 $(PROGRAMS) config.h +installdirs: installdirs-recursive +installdirs-am: + for dir in "$(DESTDIR)$(bindir)"; 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-binPROGRAMS clean-generic clean-libtool mostlyclean-am + +distclean: distclean-recursive + -rm -f $(am__CONFIG_DISTCLEAN_FILES) + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-hdr distclean-libtool 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-binPROGRAMS + +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 -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: uninstall-binPROGRAMS + +.MAKE: $(am__recursive_targets) all install-am install-strip + +.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \ + am--refresh check check-am clean clean-binPROGRAMS \ + 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-compile distclean-generic distclean-hdr \ + distclean-libtool distclean-tags distcleancheck distdir \ + distuninstallcheck 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-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-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags tags-am uninstall uninstall-am uninstall-binPROGRAMS + + +@DX_COND_doc_TRUE@@DX_COND_ps_TRUE@doxygen-ps: @DX_DOCDIR@/@PACKAGE@.ps + +@DX_COND_doc_TRUE@@DX_COND_ps_TRUE@@DX_DOCDIR@/@PACKAGE@.ps: @DX_DOCDIR@/@PACKAGE@.tag +@DX_COND_doc_TRUE@@DX_COND_ps_TRUE@ cd @DX_DOCDIR@/latex; \ +@DX_COND_doc_TRUE@@DX_COND_ps_TRUE@ rm -f *.aux *.toc *.idx *.ind *.ilg *.log *.out; \ +@DX_COND_doc_TRUE@@DX_COND_ps_TRUE@ $(DX_LATEX) refman.tex; \ +@DX_COND_doc_TRUE@@DX_COND_ps_TRUE@ $(MAKEINDEX_PATH) refman.idx; \ +@DX_COND_doc_TRUE@@DX_COND_ps_TRUE@ $(DX_LATEX) refman.tex; \ +@DX_COND_doc_TRUE@@DX_COND_ps_TRUE@ countdown=5; \ +@DX_COND_doc_TRUE@@DX_COND_ps_TRUE@ while $(DX_EGREP) 'Rerun (LaTeX|to get cross-references right)' \ +@DX_COND_doc_TRUE@@DX_COND_ps_TRUE@ refman.log > /dev/null 2>&1 \ +@DX_COND_doc_TRUE@@DX_COND_ps_TRUE@ && test $$countdown -gt 0; do \ +@DX_COND_doc_TRUE@@DX_COND_ps_TRUE@ $(DX_LATEX) refman.tex; \ +@DX_COND_doc_TRUE@@DX_COND_ps_TRUE@ countdown=`expr $$countdown - 1`; \ +@DX_COND_doc_TRUE@@DX_COND_ps_TRUE@ done; \ +@DX_COND_doc_TRUE@@DX_COND_ps_TRUE@ $(DX_DVIPS) -o ../@PACKAGE@.ps refman.dvi + +@DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@doxygen-pdf: @DX_DOCDIR@/@PACKAGE@.pdf + +@DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@@DX_DOCDIR@/@PACKAGE@.pdf: @DX_DOCDIR@/@PACKAGE@.tag +@DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@ cd @DX_DOCDIR@/latex; \ +@DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@ rm -f *.aux *.toc *.idx *.ind *.ilg *.log *.out; \ +@DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@ $(DX_PDFLATEX) refman.tex; \ +@DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@ $(DX_MAKEINDEX) refman.idx; \ +@DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@ $(DX_PDFLATEX) refman.tex; \ +@DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@ countdown=5; \ +@DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@ while $(DX_EGREP) 'Rerun (LaTeX|to get cross-references right)' \ +@DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@ refman.log > /dev/null 2>&1 \ +@DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@ && test $$countdown -gt 0; do \ +@DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@ $(DX_PDFLATEX) refman.tex; \ +@DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@ countdown=`expr $$countdown - 1`; \ +@DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@ done; \ +@DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@ mv refman.pdf ../@PACKAGE@.pdf + +@DX_COND_doc_TRUE@.PHONY: doxygen-run doxygen-doc $(DX_PS_GOAL) $(DX_PDF_GOAL) + +@DX_COND_doc_TRUE@.INTERMEDIATE: doxygen-run $(DX_PS_GOAL) $(DX_PDF_GOAL) + +@DX_COND_doc_TRUE@doxygen-run: @DX_DOCDIR@/@PACKAGE@.tag + +@DX_COND_doc_TRUE@doxygen-doc: doxygen-run $(DX_PS_GOAL) $(DX_PDF_GOAL) + +@DX_COND_doc_TRUE@@DX_DOCDIR@/@PACKAGE@.tag: $(DX_CONFIG) $(pkginclude_HEADERS) +@DX_COND_doc_TRUE@ rm -rf @DX_DOCDIR@ +@DX_COND_doc_TRUE@ $(DX_ENV) $(DX_DOXYGEN) $(srcdir)/$(DX_CONFIG) + +# 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: diff --git a/README.build.txt b/README.build.txt new file mode 100644 index 0000000..fefbf7b --- /dev/null +++ b/README.build.txt @@ -0,0 +1,38 @@ + +Steps to build the generated source: +==================================== + + $ ./autogen.sh : generate configure script, run configure + $ make : build the source + $ make install : install the build + $ make doxygen-doc : generates the doxygen html documentation in doc/ directory + relative to current working directory + +( Note: The autogen.sh should be run only once, which generates the configure script and runs it too. +Once you have the configure script generated, next time onwards you should run configure instead of autogen.sh.) + +It is likely that, while experimenting the tool with XML-Schema, you edit the files like XML-Schema iteratively, and would want to see the build in action for each such edit. +After every edit, you should run following commands in that order: +---------------------------------------------------------- + $ xsd2cpp XML-Schema outdir + $ cd outdir + $ run configure ( with your choice of options) + $ make + $ make install +---------------------------------------------------------- + +Please note, that the main.cpp if already present in the output path, is not overridden instead a file named "main.cpp.template" is written corresponding to the new invocation. This is so to preserve any user edits inside main.cpp over it's generated copy. The important thing to remember is that if an edit is made to the XML-Schema file, the main.cpp may need to get updated with changes like renamed classes, new includes, choice of documentElement etc. A "make" in this case may fail on main.cpp. So please make sure to do following in such cases: + * apply user edits(if any) from current main.cpp to main.cpp.template + * rename main.cpp.template to main.cpp + * then run "make" + + + +The build is installed in the path depending on --prefix option specified to autogen.sh or configure. +Note that in the absence of an explicit specification of --prefix option, the autogen.sh(generated by xsd2cpp) defaults the install path to a directory build/ relative to the directory of input XML-Schema file. + +For the input XML-Schema file .xsd, the build contains: + * the data-binding+parser+writer library + * header files to be used in user development sources consuming the abovestated library + * there is a binary built with name run + diff --git a/acinclude.m4 b/acinclude.m4 new file mode 100644 index 0000000..93b12f4 --- /dev/null +++ b/acinclude.m4 @@ -0,0 +1,321 @@ +# This file is part of Autoconf. -*- Autoconf -*- + +# Copyright (C) 2004 Oren Ben-Kiki +# This file is distributed under the same terms as the Autoconf macro files. + +########## CHANGELOG ################## +# 2009-01-14 Martin Mann +# * DX_ARG_ABLE : new variable 'DX_FLAG_DX_CURRENT_FEATURE' +# * DX_CLEAR_DEPEND : use of explicit variable 'DX_FLAG_DX_CURRENT_FEATURE' +# in AC_SUBST instead of 'DX_FLAG[]DX_CURRENT_FEATURE' which is rejected by +# newer autotools + +# Generate automatic documentation using Doxygen. Works in concert with the +# aminclude.m4 file and a compatible doxygen configuration file. Defines the +# following public macros: +# +# DX_???_FEATURE(ON|OFF) - control the default setting fo a Doxygen feature. +# Supported features are 'DOXYGEN' itself, 'DOT' for generating graphics, +# 'HTML' for plain HTML, 'CHM' for compressed HTML help (for MS users), 'CHI' +# for generating a seperate .chi file by the .chm file, and 'MAN', 'RTF', +# 'XML', 'PDF' and 'PS' for the appropriate output formats. The environment +# variable DOXYGEN_PAPER_SIZE may be specified to override the default 'a4wide' +# paper size. +# +# By default, HTML, PDF and PS documentation is generated as this seems to be +# the most popular and portable combination. MAN pages created by Doxygen are +# usually problematic, though by picking an appropriate subset and doing some +# massaging they might be better than nothing. CHM and RTF are specific for MS +# (note that you can't generate both HTML and CHM at the same time). The XML is +# rather useless unless you apply specialized post-processing to it. +# +# The macro mainly controls the default state of the feature. The use can +# override the default by specifying --enable or --disable. The macros ensure +# that contradictory flags are not given (e.g., --enable-doxygen-html and +# --enable-doxygen-chm, --enable-doxygen-anything with --disable-doxygen, etc.) +# Finally, each feature will be automatically disabled (with a warning) if the +# required programs are missing. +# +# Once all the feature defaults have been specified, call DX_INIT_DOXYGEN with +# the following parameters: a one-word name for the project for use as a +# filename base etc., an optional configuration file name (the default is +# 'Doxyfile', the same as Doxygen's default), and an optional output directory +# name (the default is 'doxygen-doc'). + +## ----------## +## Defaults. ## +## ----------## + +DX_ENV="" +AC_DEFUN([DX_FEATURE_doc], ON) +AC_DEFUN([DX_FEATURE_dot], ON) +AC_DEFUN([DX_FEATURE_man], OFF) +AC_DEFUN([DX_FEATURE_html], ON) +AC_DEFUN([DX_FEATURE_chm], OFF) +AC_DEFUN([DX_FEATURE_chi], OFF) +AC_DEFUN([DX_FEATURE_rtf], OFF) +AC_DEFUN([DX_FEATURE_xml], OFF) +AC_DEFUN([DX_FEATURE_pdf], ON) +AC_DEFUN([DX_FEATURE_ps], ON) + +## --------------- ## +## Private macros. ## +## --------------- ## + +# DX_ENV_APPEND(VARIABLE, VALUE) +# ------------------------------ +# Append VARIABLE="VALUE" to DX_ENV for invoking doxygen. +AC_DEFUN([DX_ENV_APPEND], [AC_SUBST([DX_ENV], ["$DX_ENV $1='$2'"])]) + +# DX_DIRNAME_EXPR +# --------------- +# Expand into a shell expression prints the directory part of a path. +AC_DEFUN([DX_DIRNAME_EXPR], + [[expr ".$1" : '\(\.\)[^/]*$' \| "x$1" : 'x\(.*\)/[^/]*$']]) + +# DX_IF_FEATURE(FEATURE, IF-ON, IF-OFF) +# ------------------------------------- +# Expands according to the M4 (static) status of the feature. +AC_DEFUN([DX_IF_FEATURE], [ifelse(DX_FEATURE_$1, ON, [$2], [$3])]) + +# DX_REQUIRE_PROG(VARIABLE, PROGRAM) +# ---------------------------------- +# Require the specified program to be found for the DX_CURRENT_FEATURE to work. +AC_DEFUN([DX_REQUIRE_PROG], [ +AC_PATH_TOOL([$1], [$2]) +if test "$DX_FLAG_DX_CURRENT_FEATURE$$1" = 1; then + AC_MSG_WARN([$2 not found - will not DX_CURRENT_DESCRIPTION]) + AC_SUBST([DX_FLAG_DX_CURRENT_FEATURE], 0) +fi +]) + +# DX_TEST_FEATURE(FEATURE) +# ------------------------ +# Expand to a shell expression testing whether the feature is active. +AC_DEFUN([DX_TEST_FEATURE], [test "$DX_FLAG_$1" = 1]) + +# DX_CHECK_DEPEND(REQUIRED_FEATURE, REQUIRED_STATE) +# ------------------------------------------------- +# Verify that a required features has the right state before trying to turn on +# the DX_CURRENT_FEATURE. +AC_DEFUN([DX_CHECK_DEPEND], [ +test "$DX_FLAG_$1" = "$2" \ +|| AC_MSG_ERROR([doxygen-DX_CURRENT_FEATURE ifelse([$2], 1, + requires, contradicts) doxygen-DX_CURRENT_FEATURE]) +]) + +# DX_CLEAR_DEPEND(FEATURE, REQUIRED_FEATURE, REQUIRED_STATE) +# ---------------------------------------------------------- +# Turn off the DX_CURRENT_FEATURE if the required feature is off. +AC_DEFUN([DX_CLEAR_DEPEND], [ +test "$DX_FLAG_$1" = "$2" || AC_SUBST([DX_FLAG_DX_CURRENT_FEATURE], 0) +]) + + +# DX_FEATURE_ARG(FEATURE, DESCRIPTION, +# CHECK_DEPEND, CLEAR_DEPEND, +# REQUIRE, DO-IF-ON, DO-IF-OFF) +# -------------------------------------------- +# Parse the command-line option controlling a feature. CHECK_DEPEND is called +# if the user explicitly turns the feature on (and invokes DX_CHECK_DEPEND), +# otherwise CLEAR_DEPEND is called to turn off the default state if a required +# feature is disabled (using DX_CLEAR_DEPEND). REQUIRE performs additional +# requirement tests (DX_REQUIRE_PROG). Finally, an automake flag is set and +# DO-IF-ON or DO-IF-OFF are called according to the final state of the feature. +AC_DEFUN([DX_ARG_ABLE], [ + AC_DEFUN([DX_CURRENT_FEATURE], [$1]) + AC_DEFUN([DX_FLAG_DX_CURRENT_FEATURE], [DX_FLAG_$1]) + AC_DEFUN([DX_CURRENT_DESCRIPTION], [$2]) + AC_ARG_ENABLE(doxygen-$1, + [AS_HELP_STRING(DX_IF_FEATURE([$1], [--disable-doxygen-$1], + [--enable-doxygen-$1]), + DX_IF_FEATURE([$1], [don't $2], [$2]))], + [ +case "$enableval" in +#( +y|Y|yes|Yes|YES) + AC_SUBST([DX_FLAG_$1], 1) + $3 +;; #( +n|N|no|No|NO) + AC_SUBST([DX_FLAG_$1], 0) +;; #( +*) + AC_MSG_ERROR([invalid value '$enableval' given to doxygen-$1]) +;; +esac +], [ +AC_SUBST([DX_FLAG_$1], [DX_IF_FEATURE([$1], 1, 0)]) +$4 +]) +if DX_TEST_FEATURE([$1]); then + $5 + : +fi +if DX_TEST_FEATURE([$1]); then + AM_CONDITIONAL(DX_COND_$1, :) + $6 + : +else + AM_CONDITIONAL(DX_COND_$1, false) + $7 + : +fi +]) + +## -------------- ## +## Public macros. ## +## -------------- ## + +# DX_XXX_FEATURE(DEFAULT_STATE) +# ----------------------------- +AC_DEFUN([DX_DOXYGEN_FEATURE], [AC_DEFUN([DX_FEATURE_doc], [$1])]) +AC_DEFUN([DX_MAN_FEATURE], [AC_DEFUN([DX_FEATURE_man], [$1])]) +AC_DEFUN([DX_HTML_FEATURE], [AC_DEFUN([DX_FEATURE_html], [$1])]) +AC_DEFUN([DX_CHM_FEATURE], [AC_DEFUN([DX_FEATURE_chm], [$1])]) +AC_DEFUN([DX_CHI_FEATURE], [AC_DEFUN([DX_FEATURE_chi], [$1])]) +AC_DEFUN([DX_RTF_FEATURE], [AC_DEFUN([DX_FEATURE_rtf], [$1])]) +AC_DEFUN([DX_XML_FEATURE], [AC_DEFUN([DX_FEATURE_xml], [$1])]) +AC_DEFUN([DX_XML_FEATURE], [AC_DEFUN([DX_FEATURE_xml], [$1])]) +AC_DEFUN([DX_PDF_FEATURE], [AC_DEFUN([DX_FEATURE_pdf], [$1])]) +AC_DEFUN([DX_PS_FEATURE], [AC_DEFUN([DX_FEATURE_ps], [$1])]) + +# DX_INIT_DOXYGEN(PROJECT, [CONFIG-FILE], [OUTPUT-DOC-DIR]) +# --------------------------------------------------------- +# PROJECT also serves as the base name for the documentation files. +# The default CONFIG-FILE is "Doxyfile" and OUTPUT-DOC-DIR is "doxygen-doc". +AC_DEFUN([DX_INIT_DOXYGEN], [ + +# Files: +AC_SUBST([DX_PROJECT], [$1]) +AC_SUBST([DX_CONFIG], [ifelse([$2], [], Doxyfile, [$2])]) +AC_SUBST([DX_DOCDIR], [ifelse([$3], [], doxygen-doc, [$3])]) + +# Environment variables used inside doxygen.cfg: +DX_ENV_APPEND(SRCDIR, $srcdir) +DX_ENV_APPEND(PROJECT, $DX_PROJECT) +DX_ENV_APPEND(DOCDIR, $DX_DOCDIR) +DX_ENV_APPEND(VERSION, $PACKAGE_VERSION) + +# Doxygen itself: +DX_ARG_ABLE(doc, [generate any doxygen documentation], + [], + [], + [DX_REQUIRE_PROG([DX_DOXYGEN], doxygen) + DX_REQUIRE_PROG([DX_PERL], perl)], + [DX_ENV_APPEND(PERL_PATH, $DX_PERL)]) + +# Dot for graphics: +DX_ARG_ABLE(dot, [generate graphics for doxygen documentation], + [DX_CHECK_DEPEND(doc, 1)], + [DX_CLEAR_DEPEND(doc, 1)], + [DX_REQUIRE_PROG([DX_DOT], dot)], + [DX_ENV_APPEND(HAVE_DOT, YES) + DX_ENV_APPEND(DOT_PATH, [`DX_DIRNAME_EXPR($DX_DOT)`])], + [DX_ENV_APPEND(HAVE_DOT, NO)]) + +# Man pages generation: +DX_ARG_ABLE(man, [generate doxygen manual pages], + [DX_CHECK_DEPEND(doc, 1)], + [DX_CLEAR_DEPEND(doc, 1)], + [], + [DX_ENV_APPEND(GENERATE_MAN, YES)], + [DX_ENV_APPEND(GENERATE_MAN, NO)]) + +# RTF file generation: +DX_ARG_ABLE(rtf, [generate doxygen RTF documentation], + [DX_CHECK_DEPEND(doc, 1)], + [DX_CLEAR_DEPEND(doc, 1)], + [], + [DX_ENV_APPEND(GENERATE_RTF, YES)], + [DX_ENV_APPEND(GENERATE_RTF, NO)]) + +# XML file generation: +DX_ARG_ABLE(xml, [generate doxygen XML documentation], + [DX_CHECK_DEPEND(doc, 1)], + [DX_CLEAR_DEPEND(doc, 1)], + [], + [DX_ENV_APPEND(GENERATE_XML, YES)], + [DX_ENV_APPEND(GENERATE_XML, NO)]) + +# (Compressed) HTML help generation: +DX_ARG_ABLE(chm, [generate doxygen compressed HTML help documentation], + [DX_CHECK_DEPEND(doc, 1)], + [DX_CLEAR_DEPEND(doc, 1)], + [DX_REQUIRE_PROG([DX_HHC], hhc)], + [DX_ENV_APPEND(HHC_PATH, $DX_HHC) + DX_ENV_APPEND(GENERATE_HTML, YES) + DX_ENV_APPEND(GENERATE_HTMLHELP, YES)], + [DX_ENV_APPEND(GENERATE_HTMLHELP, NO)]) + +# Seperate CHI file generation. +DX_ARG_ABLE(chi, [generate doxygen seperate compressed HTML help index file], + [DX_CHECK_DEPEND(chm, 1)], + [DX_CLEAR_DEPEND(chm, 1)], + [], + [DX_ENV_APPEND(GENERATE_CHI, YES)], + [DX_ENV_APPEND(GENERATE_CHI, NO)]) + +# Plain HTML pages generation: +DX_ARG_ABLE(html, [generate doxygen plain HTML documentation], + [DX_CHECK_DEPEND(doc, 1) DX_CHECK_DEPEND(chm, 0)], + [DX_CLEAR_DEPEND(doc, 1) DX_CLEAR_DEPEND(chm, 0)], + [], + [DX_ENV_APPEND(GENERATE_HTML, YES)], + [DX_TEST_FEATURE(chm) || DX_ENV_APPEND(GENERATE_HTML, NO)]) + +# PostScript file generation: +DX_ARG_ABLE(ps, [generate doxygen PostScript documentation], + [DX_CHECK_DEPEND(doc, 1)], + [DX_CLEAR_DEPEND(doc, 1)], + [DX_REQUIRE_PROG([DX_LATEX], latex) + DX_REQUIRE_PROG([DX_MAKEINDEX], makeindex) + DX_REQUIRE_PROG([DX_DVIPS], dvips) + DX_REQUIRE_PROG([DX_EGREP], egrep)]) + +# PDF file generation: +DX_ARG_ABLE(pdf, [generate doxygen PDF documentation], + [DX_CHECK_DEPEND(doc, 1)], + [DX_CLEAR_DEPEND(doc, 1)], + [DX_REQUIRE_PROG([DX_PDFLATEX], pdflatex) + DX_REQUIRE_PROG([DX_MAKEINDEX], makeindex) + DX_REQUIRE_PROG([DX_EGREP], egrep)]) + +# LaTeX generation for PS and/or PDF: +if DX_TEST_FEATURE(ps) || DX_TEST_FEATURE(pdf); then + AM_CONDITIONAL(DX_COND_latex, :) + DX_ENV_APPEND(GENERATE_LATEX, YES) +else + AM_CONDITIONAL(DX_COND_latex, false) + DX_ENV_APPEND(GENERATE_LATEX, NO) +fi + +# Paper size for PS and/or PDF: +AC_ARG_VAR(DOXYGEN_PAPER_SIZE, + [a4wide (default), a4, letter, legal or executive]) +case "$DOXYGEN_PAPER_SIZE" in +#( +"") + AC_SUBST(DOXYGEN_PAPER_SIZE, "") +;; #( +a4wide|a4|letter|legal|executive) + DX_ENV_APPEND(PAPER_SIZE, $DOXYGEN_PAPER_SIZE) +;; #( +*) + AC_MSG_ERROR([unknown DOXYGEN_PAPER_SIZE='$DOXYGEN_PAPER_SIZE']) +;; +esac + +#For debugging: +#echo DX_FLAG_doc=$DX_FLAG_doc +#echo DX_FLAG_dot=$DX_FLAG_dot +#echo DX_FLAG_man=$DX_FLAG_man +#echo DX_FLAG_html=$DX_FLAG_html +#echo DX_FLAG_chm=$DX_FLAG_chm +#echo DX_FLAG_chi=$DX_FLAG_chi +#echo DX_FLAG_rtf=$DX_FLAG_rtf +#echo DX_FLAG_xml=$DX_FLAG_xml +#echo DX_FLAG_pdf=$DX_FLAG_pdf +#echo DX_FLAG_ps=$DX_FLAG_ps +#echo DX_ENV=$DX_ENV +]) diff --git a/aclocal.m4 b/aclocal.m4 new file mode 100644 index 0000000..080439c --- /dev/null +++ b/aclocal.m4 @@ -0,0 +1,1155 @@ +# 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'.])]) + +# 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], +[AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])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 + +m4_include([m4/libtool.m4]) +m4_include([m4/ltoptions.m4]) +m4_include([m4/ltsugar.m4]) +m4_include([m4/ltversion.m4]) +m4_include([m4/lt~obsolete.m4]) +m4_include([acinclude.m4]) diff --git a/aminclude.am b/aminclude.am new file mode 100644 index 0000000..420049e --- /dev/null +++ b/aminclude.am @@ -0,0 +1,186 @@ +# Copyright (C) 2004 Oren Ben-Kiki +# This file is distributed under the same terms as the Automake macro files. + +# Generate automatic documentation using Doxygen. Goals and variables values +# are controlled by the various DX_COND_??? conditionals set by autoconf. +# +# The provided goals are: +# doxygen-doc: Generate all doxygen documentation. +# doxygen-run: Run doxygen, which will generate some of the documentation +# (HTML, CHM, CHI, MAN, RTF, XML) but will not do the post +# processing required for the rest of it (PS, PDF, and some MAN). +# doxygen-man: Rename some doxygen generated man pages. +# doxygen-ps: Generate doxygen PostScript documentation. +# doxygen-pdf: Generate doxygen PDF documentation. +# +# Note that by default these are not integrated into the automake goals. If +# doxygen is used to generate man pages, you can achieve this integration by +# setting man3_MANS to the list of man pages generated and then adding the +# dependency: +# +# $(man3_MANS): doxygen-doc +# +# This will cause make to run doxygen and generate all the documentation. +# +# The following variable is intended for use in Makefile.am: +# +# DX_CLEANFILES = everything to clean. +# +# This is usually added to MOSTLYCLEANFILES. + +## --------------------------------- ## +## Format-independent Doxygen rules. ## +## --------------------------------- ## + +if DX_COND_doc + +## ------------------------------- ## +## Rules specific for HTML output. ## +## ------------------------------- ## + +if DX_COND_html + +DX_CLEAN_HTML = @DX_DOCDIR@/html + +endif DX_COND_html + +## ------------------------------ ## +## Rules specific for CHM output. ## +## ------------------------------ ## + +if DX_COND_chm + +DX_CLEAN_CHM = @DX_DOCDIR@/chm + +if DX_COND_chi + +DX_CLEAN_CHI = @DX_DOCDIR@/@PACKAGE@.chi + +endif DX_COND_chi + +endif DX_COND_chm + +## ------------------------------ ## +## Rules specific for MAN output. ## +## ------------------------------ ## + +if DX_COND_man + +DX_CLEAN_MAN = @DX_DOCDIR@/man + +endif DX_COND_man + +## ------------------------------ ## +## Rules specific for RTF output. ## +## ------------------------------ ## + +if DX_COND_rtf + +DX_CLEAN_RTF = @DX_DOCDIR@/rtf + +endif DX_COND_rtf + +## ------------------------------ ## +## Rules specific for XML output. ## +## ------------------------------ ## + +if DX_COND_xml + +DX_CLEAN_XML = @DX_DOCDIR@/xml + +endif DX_COND_xml + +## ----------------------------- ## +## Rules specific for PS output. ## +## ----------------------------- ## + +if DX_COND_ps + +DX_CLEAN_PS = @DX_DOCDIR@/@PACKAGE@.ps + +DX_PS_GOAL = doxygen-ps + +doxygen-ps: @DX_DOCDIR@/@PACKAGE@.ps + +@DX_DOCDIR@/@PACKAGE@.ps: @DX_DOCDIR@/@PACKAGE@.tag + cd @DX_DOCDIR@/latex; \ + rm -f *.aux *.toc *.idx *.ind *.ilg *.log *.out; \ + $(DX_LATEX) refman.tex; \ + $(MAKEINDEX_PATH) refman.idx; \ + $(DX_LATEX) refman.tex; \ + countdown=5; \ + while $(DX_EGREP) 'Rerun (LaTeX|to get cross-references right)' \ + refman.log > /dev/null 2>&1 \ + && test $$countdown -gt 0; do \ + $(DX_LATEX) refman.tex; \ + countdown=`expr $$countdown - 1`; \ + done; \ + $(DX_DVIPS) -o ../@PACKAGE@.ps refman.dvi + +endif DX_COND_ps + +## ------------------------------ ## +## Rules specific for PDF output. ## +## ------------------------------ ## + +if DX_COND_pdf + +DX_CLEAN_PDF = @DX_DOCDIR@/@PACKAGE@.pdf + +DX_PDF_GOAL = doxygen-pdf + +doxygen-pdf: @DX_DOCDIR@/@PACKAGE@.pdf + +@DX_DOCDIR@/@PACKAGE@.pdf: @DX_DOCDIR@/@PACKAGE@.tag + cd @DX_DOCDIR@/latex; \ + rm -f *.aux *.toc *.idx *.ind *.ilg *.log *.out; \ + $(DX_PDFLATEX) refman.tex; \ + $(DX_MAKEINDEX) refman.idx; \ + $(DX_PDFLATEX) refman.tex; \ + countdown=5; \ + while $(DX_EGREP) 'Rerun (LaTeX|to get cross-references right)' \ + refman.log > /dev/null 2>&1 \ + && test $$countdown -gt 0; do \ + $(DX_PDFLATEX) refman.tex; \ + countdown=`expr $$countdown - 1`; \ + done; \ + mv refman.pdf ../@PACKAGE@.pdf + +endif DX_COND_pdf + +## ------------------------------------------------- ## +## Rules specific for LaTeX (shared for PS and PDF). ## +## ------------------------------------------------- ## + +if DX_COND_latex + +DX_CLEAN_LATEX = @DX_DOCDIR@/latex + +endif DX_COND_latex + +.PHONY: doxygen-run doxygen-doc $(DX_PS_GOAL) $(DX_PDF_GOAL) + +.INTERMEDIATE: doxygen-run $(DX_PS_GOAL) $(DX_PDF_GOAL) + +doxygen-run: @DX_DOCDIR@/@PACKAGE@.tag + +doxygen-doc: doxygen-run $(DX_PS_GOAL) $(DX_PDF_GOAL) + +@DX_DOCDIR@/@PACKAGE@.tag: $(DX_CONFIG) $(pkginclude_HEADERS) + rm -rf @DX_DOCDIR@ + $(DX_ENV) $(DX_DOXYGEN) $(srcdir)/$(DX_CONFIG) + +DX_CLEANFILES = \ + @DX_DOCDIR@/@PACKAGE@.tag \ + -r \ + $(DX_CLEAN_HTML) \ + $(DX_CLEAN_CHM) \ + $(DX_CLEAN_CHI) \ + $(DX_CLEAN_MAN) \ + $(DX_CLEAN_RTF) \ + $(DX_CLEAN_XML) \ + $(DX_CLEAN_PS) \ + $(DX_CLEAN_PDF) \ + $(DX_CLEAN_LATEX) + +endif DX_COND_doc diff --git a/autogen.sh b/autogen.sh new file mode 100755 index 0000000..1b1776c --- /dev/null +++ b/autogen.sh @@ -0,0 +1,9 @@ +#!/bin/sh -e + +mkdir -p m4 + +test -n "$srcdir" || srcdir=`dirname "$0"` +test -n "$srcdir" || srcdir=. + +autoreconf --force --install --verbose "$srcdir" +test -n "$NOCONFIGURE" || "$srcdir/configure" --prefix=`pwd`/build "$@" diff --git a/compile b/compile new file mode 100755 index 0000000..531136b --- /dev/null +++ b/compile @@ -0,0 +1,347 @@ +#! /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: diff --git a/config.guess b/config.guess new file mode 100755 index 0000000..1f5c50c --- /dev/null +++ b/config.guess @@ -0,0 +1,1420 @@ +#! /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: diff --git a/config.h.in b/config.h.in new file mode 100644 index 0000000..30f3a3c --- /dev/null +++ b/config.h.in @@ -0,0 +1,74 @@ +/* config.h.in. Generated from configure.ac by autoheader. */ + +/* Define to 1 if you have the header file. */ +#undef HAVE_DLFCN_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_INTTYPES_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_MEMORY_H + +/* Define to 1 if stdbool.h conforms to C99. */ +#undef HAVE_STDBOOL_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_STDINT_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_STDLIB_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_STRINGS_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_STRING_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_SYS_STAT_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_SYS_TYPES_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_UNISTD_H + +/* Define to 1 if the system has the type `_Bool'. */ +#undef HAVE__BOOL + +/* Define to the sub-directory in which libtool stores uninstalled libraries. + */ +#undef LT_OBJDIR + +/* Name of package */ +#undef PACKAGE + +/* Define to the address where bug reports for this package should be sent. */ +#undef PACKAGE_BUGREPORT + +/* Define to the full name of this package. */ +#undef PACKAGE_NAME + +/* Define to the full name and version of this package. */ +#undef PACKAGE_STRING + +/* Define to the one symbol short name of this package. */ +#undef PACKAGE_TARNAME + +/* Define to the home page for this package. */ +#undef PACKAGE_URL + +/* Define to the version of this package. */ +#undef PACKAGE_VERSION + +/* Define to 1 if you have the ANSI C header files. */ +#undef STDC_HEADERS + +/* Version number of package */ +#undef VERSION + +/* Define to `__inline__' or `__inline' if that's what the C compiler + calls it, or to nothing if 'inline' is not supported under any name. */ +#ifndef __cplusplus +#undef inline +#endif diff --git a/config.sub b/config.sub new file mode 100755 index 0000000..bba4efb --- /dev/null +++ b/config.sub @@ -0,0 +1,1799 @@ +#! /bin/sh +# Configuration validation subroutine script. +# Copyright 1992-2014 Free Software Foundation, Inc. + +timestamp='2014-09-11' + +# 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 \ + | riscv32 | riscv64 \ + | 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 + ;; + moxiebox) + basic_machine=moxie-unknown + os=-moxiebox + ;; + 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* | -moxiebox* \ + | -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: diff --git a/configure b/configure new file mode 100755 index 0000000..4071f71 --- /dev/null +++ b/configure @@ -0,0 +1,20885 @@ +#! /bin/sh +# Guess values for system-dependent variables and create Makefiles. +# Generated by GNU Autoconf 2.69 for xplus-gno 1.0. +# +# 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 BUG-REPORT-ADDRESS +$0: about your system, including any error possibly output +$0: before this message. Then install a modern shell, or +$0: manually run the script under such a shell if you do +$0: have one." + fi + exit 1 +fi +fi +fi +SHELL=${CONFIG_SHELL-/bin/sh} +export SHELL +# Unset more variables known to interfere with behavior of common tools. +CLICOLOR_FORCE= GREP_OPTIONS= +unset CLICOLOR_FORCE GREP_OPTIONS + +## --------------------- ## +## M4sh Shell Functions. ## +## --------------------- ## +# as_fn_unset VAR +# --------------- +# Portably unset VAR. +as_fn_unset () +{ + { eval $1=; unset $1;} +} +as_unset=as_fn_unset + +# as_fn_set_status STATUS +# ----------------------- +# Set $? to STATUS, without forking. +as_fn_set_status () +{ + return $1 +} # as_fn_set_status + +# as_fn_exit STATUS +# ----------------- +# Exit the shell with STATUS, even in a "trap 0" or "set -e" context. +as_fn_exit () +{ + set +e + as_fn_set_status $1 + exit $1 +} # as_fn_exit + +# as_fn_mkdir_p +# ------------- +# Create "$as_dir" as a directory, including parents if necessary. +as_fn_mkdir_p () +{ + + case $as_dir in #( + -*) as_dir=./$as_dir;; + esac + test -d "$as_dir" || eval $as_mkdir_p || { + as_dirs= + while :; do + case $as_dir in #( + *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( + *) as_qdir=$as_dir;; + esac + as_dirs="'$as_qdir' $as_dirs" + as_dir=`$as_dirname -- "$as_dir" || +$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$as_dir" : 'X\(//\)[^/]' \| \ + X"$as_dir" : 'X\(//\)$' \| \ + X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$as_dir" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + test -d "$as_dir" && break + done + test -z "$as_dirs" || eval "mkdir $as_dirs" + } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" + + +} # as_fn_mkdir_p + +# as_fn_executable_p FILE +# ----------------------- +# Test if FILE is an executable regular file. +as_fn_executable_p () +{ + test -f "$1" && test -x "$1" +} # as_fn_executable_p +# as_fn_append VAR VALUE +# ---------------------- +# Append the text in VALUE to the end of the definition contained in VAR. Take +# advantage of any shell optimizations that allow amortized linear growth over +# repeated appends, instead of the typical quadratic growth present in naive +# implementations. +if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : + eval 'as_fn_append () + { + eval $1+=\$2 + }' +else + as_fn_append () + { + eval $1=\$$1\$2 + } +fi # as_fn_append + +# as_fn_arith ARG... +# ------------------ +# Perform arithmetic evaluation on the ARGs, and store the result in the +# global $as_val. Take advantage of shells that can avoid forks. The arguments +# must be portable across $(()) and expr. +if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : + eval 'as_fn_arith () + { + as_val=$(( $* )) + }' +else + as_fn_arith () + { + as_val=`expr "$@" || test $? -eq 1` + } +fi # as_fn_arith + + +# as_fn_error STATUS ERROR [LINENO LOG_FD] +# ---------------------------------------- +# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are +# provided, also output the error to LOG_FD, referencing LINENO. Then exit the +# script with STATUS, using 1 if that was 0. +as_fn_error () +{ + as_status=$1; test $as_status -eq 0 && as_status=1 + if test "$4"; then + as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 + fi + $as_echo "$as_me: error: $2" >&2 + as_fn_exit $as_status +} # as_fn_error + +if expr a : '\(a\)' >/dev/null 2>&1 && + test "X`expr 00001 : '.*\(...\)'`" = X001; then + as_expr=expr +else + as_expr=false +fi + +if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then + as_basename=basename +else + as_basename=false +fi + +if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then + as_dirname=dirname +else + as_dirname=false +fi + +as_me=`$as_basename -- "$0" || +$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ + X"$0" : 'X\(//\)$' \| \ + X"$0" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X/"$0" | + sed '/^.*\/\([^/][^/]*\)\/*$/{ + s//\1/ + q + } + /^X\/\(\/\/\)$/{ + s//\1/ + q + } + /^X\/\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + +# Avoid depending upon Character Ranges. +as_cr_letters='abcdefghijklmnopqrstuvwxyz' +as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' +as_cr_Letters=$as_cr_letters$as_cr_LETTERS +as_cr_digits='0123456789' +as_cr_alnum=$as_cr_Letters$as_cr_digits + + + as_lineno_1=$LINENO as_lineno_1a=$LINENO + as_lineno_2=$LINENO as_lineno_2a=$LINENO + eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && + test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { + # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) + sed -n ' + p + /[$]LINENO/= + ' <$as_myself | + sed ' + s/[$]LINENO.*/&-/ + t lineno + b + :lineno + N + :loop + s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ + t loop + s/-\n.*// + ' >$as_me.lineno && + chmod +x "$as_me.lineno" || + { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } + + # If we had to re-execute with $CONFIG_SHELL, we're ensured to have + # already done that, so ensure we don't try to do so again and fall + # in an infinite loop. This has already happened in practice. + _as_can_reexec=no; export _as_can_reexec + # Don't try to exec as it changes $[0], causing all sort of problems + # (the dirname of $[0] is not the place where we might find the + # original and so on. Autoconf is especially sensitive to this). + . "./$as_me.lineno" + # Exit status is that of the last command. + exit +} + +ECHO_C= ECHO_N= ECHO_T= +case `echo -n x` in #((((( +-n*) + case `echo 'xy\c'` in + *c*) ECHO_T=' ';; # ECHO_T is single tab character. + xy) ECHO_C='\c';; + *) echo `echo ksh88 bug on AIX 6.1` > /dev/null + ECHO_T=' ';; + esac;; +*) + ECHO_N='-n';; +esac + +rm -f conf$$ conf$$.exe conf$$.file +if test -d conf$$.dir; then + rm -f conf$$.dir/conf$$.file +else + rm -f conf$$.dir + mkdir conf$$.dir 2>/dev/null +fi +if (echo >conf$$.file) 2>/dev/null; then + if ln -s conf$$.file conf$$ 2>/dev/null; then + as_ln_s='ln -s' + # ... but there are two gotchas: + # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. + # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. + # In both cases, we have to default to `cp -pR'. + ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || + as_ln_s='cp -pR' + elif ln conf$$.file conf$$ 2>/dev/null; then + as_ln_s=ln + else + as_ln_s='cp -pR' + fi +else + as_ln_s='cp -pR' +fi +rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file +rmdir conf$$.dir 2>/dev/null + +if mkdir -p . 2>/dev/null; then + as_mkdir_p='mkdir -p "$as_dir"' +else + test -d ./-p && rmdir ./-p + as_mkdir_p=false +fi + +as_test_x='test -x' +as_executable_p=as_fn_executable_p + +# Sed expression to map a string onto a valid CPP name. +as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" + +# Sed expression to map a string onto a valid variable name. +as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" + +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='xplus-gno' +PACKAGE_TARNAME='xplus-gno' +PACKAGE_VERSION='1.0' +PACKAGE_STRING='xplus-gno 1.0' +PACKAGE_BUGREPORT='BUG-REPORT-ADDRESS' +PACKAGE_URL='' + +ac_unique_file="main.cpp" +# Factoring default headers for most tests. +ac_includes_default="\ +#include +#ifdef HAVE_SYS_TYPES_H +# include +#endif +#ifdef HAVE_SYS_STAT_H +# include +#endif +#ifdef STDC_HEADERS +# include +# include +#else +# ifdef HAVE_STDLIB_H +# include +# endif +#endif +#ifdef HAVE_STRING_H +# if !defined STDC_HEADERS && defined HAVE_MEMORY_H +# include +# endif +# include +#endif +#ifdef HAVE_STRINGS_H +# include +#endif +#ifdef HAVE_INTTYPES_H +# include +#endif +#ifdef HAVE_STDINT_H +# include +#endif +#ifdef HAVE_UNISTD_H +# include +#endif" + +ac_subst_vars='am__EXEEXT_FALSE +am__EXEEXT_TRUE +LTLIBOBJS +LIBOBJS +CXXCPP +am__fastdepCXX_FALSE +am__fastdepCXX_TRUE +CXXDEPMODE +ac_ct_CXX +CXXFLAGS +CXX +DOXYGEN_PAPER_SIZE +DX_COND_latex_FALSE +DX_COND_latex_TRUE +DX_COND_pdf_FALSE +DX_COND_pdf_TRUE +DX_PDFLATEX +DX_FLAG_pdf +DX_COND_ps_FALSE +DX_COND_ps_TRUE +DX_EGREP +DX_DVIPS +DX_MAKEINDEX +DX_LATEX +DX_FLAG_ps +DX_COND_html_FALSE +DX_COND_html_TRUE +DX_FLAG_html +DX_COND_chi_FALSE +DX_COND_chi_TRUE +DX_FLAG_chi +DX_COND_chm_FALSE +DX_COND_chm_TRUE +DX_HHC +DX_FLAG_chm +DX_COND_xml_FALSE +DX_COND_xml_TRUE +DX_FLAG_xml +DX_COND_rtf_FALSE +DX_COND_rtf_TRUE +DX_FLAG_rtf +DX_COND_man_FALSE +DX_COND_man_TRUE +DX_FLAG_man +DX_COND_dot_FALSE +DX_COND_dot_TRUE +DX_DOT +DX_FLAG_dot +DX_COND_doc_FALSE +DX_COND_doc_TRUE +DX_PERL +DX_FLAG_DX_CURRENT_FEATURE +DX_DOXYGEN +DX_FLAG_doc +DX_ENV +DX_DOCDIR +DX_CONFIG +DX_PROJECT +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 +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 +host_os +host_vendor +host_cpu +host +build_os +build_vendor +build_cpu +build +LIBTOOL +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_shared +enable_static +with_pic +enable_fast_install +enable_dependency_tracking +with_gnu_ld +with_sysroot +enable_libtool_lock +enable_doxygen_doc +enable_doxygen_dot +enable_doxygen_man +enable_doxygen_rtf +enable_doxygen_xml +enable_doxygen_chm +enable_doxygen_chi +enable_doxygen_html +enable_doxygen_ps +enable_doxygen_pdf +' + ac_precious_vars='build_alias +host_alias +target_alias +CC +CFLAGS +LDFLAGS +LIBS +CPPFLAGS +CPP +DOXYGEN_PAPER_SIZE +CXX +CXXFLAGS +CCC +CXXCPP' + + +# 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 xplus-gno 1.0 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/xplus-gno] + --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 xplus-gno 1.0:";; + 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-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] + --enable-dependency-tracking + do not reject slow dependency extractors + --disable-dependency-tracking + speeds up one-time build + --disable-libtool-lock avoid locking (might break parallel builds) + --disable-doxygen-doc don't generate any doxygen documentation + --disable-doxygen-dot don't generate graphics for doxygen documentation + --enable-doxygen-man generate doxygen manual pages + --enable-doxygen-rtf generate doxygen RTF documentation + --enable-doxygen-xml generate doxygen XML documentation + --enable-doxygen-chm generate doxygen compressed HTML help documentation + --enable-doxygen-chi generate doxygen seperate compressed HTML help index + file + --disable-doxygen-html don't generate doxygen plain HTML documentation + --enable-doxygen-ps generate doxygen PostScript documentation + --enable-doxygen-pdf generate doxygen PDF documentation + +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). + +Some influential environment variables: + CC C compiler command + CFLAGS C compiler flags + LDFLAGS linker flags, e.g. -L if you have libraries in a + nonstandard directory + LIBS libraries to pass to the linker, e.g. -l + CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I if + you have headers in a nonstandard directory + CPP C preprocessor + DOXYGEN_PAPER_SIZE + a4wide (default), a4, letter, legal or executive + CXX C++ compiler command + CXXFLAGS C++ compiler flags + CXXCPP C++ preprocessor + +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 +xplus-gno configure 1.0 +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_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_cxx_try_compile LINENO +# ---------------------------- +# Try to compile conftest.$ac_ext, and return whether this succeeded. +ac_fn_cxx_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_cxx_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_cxx_try_compile + +# ac_fn_cxx_try_cpp LINENO +# ------------------------ +# Try to preprocess conftest.$ac_ext, and return whether this succeeded. +ac_fn_cxx_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_cxx_preproc_warn_flag$ac_cxx_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_cxx_try_cpp + +# ac_fn_cxx_try_link LINENO +# ------------------------- +# Try to link conftest.$ac_ext, and return whether this succeeded. +ac_fn_cxx_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_cxx_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_cxx_try_link + +# ac_fn_c_check_type LINENO TYPE VAR INCLUDES +# ------------------------------------------- +# Tests whether TYPE exists after having included INCLUDES, setting cache +# variable VAR accordingly. +ac_fn_c_check_type () +{ + 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 + eval "$3=no" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$4 +int +main () +{ +if (sizeof ($2)) + return 0; + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$4 +int +main () +{ +if (sizeof (($2))) + return 0; + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + +else + eval "$3=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 +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_type +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 xplus-gno $as_me 1.0, 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_INIT_AUTOMAKE +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='xplus-gno' + VERSION='1.0' + + +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 + +ac_config_headers="$ac_config_headers config.h" + +#AC_PREFIX_DEFAULT(duck) +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 + + + + + + + + + + + + + + +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 + + +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 + + +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 + + +{ $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* + + +## 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... +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_config_commands="$ac_config_commands libtool" + + + + +# Only expand once: + + + + +###################################################################### +# DOXYGEN SUPPORT +###################################################################### + + + + + + + + + + +# Files: +DX_PROJECT=$PACKAGE_NAME + +DX_CONFIG=doxygen.cfg + +DX_DOCDIR=doc + + +# Environment variables used inside doxygen.cfg: +DX_ENV="$DX_ENV SRCDIR='$srcdir'" + +DX_ENV="$DX_ENV PROJECT='$DX_PROJECT'" + +DX_ENV="$DX_ENV DOCDIR='$DX_DOCDIR'" + +DX_ENV="$DX_ENV VERSION='$PACKAGE_VERSION'" + + +# Doxygen itself: + + + + + # Check whether --enable-doxygen-doc was given. +if test "${enable_doxygen_doc+set}" = set; then : + enableval=$enable_doxygen_doc; +case "$enableval" in +#( +y|Y|yes|Yes|YES) + DX_FLAG_doc=1 + + +;; #( +n|N|no|No|NO) + DX_FLAG_doc=0 + +;; #( +*) + as_fn_error $? "invalid value '$enableval' given to doxygen-doc" "$LINENO" 5 +;; +esac + +else + +DX_FLAG_doc=1 + + + +fi + +if test "$DX_FLAG_doc" = 1; then + +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}doxygen", so it can be a program name with args. +set dummy ${ac_tool_prefix}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_path_DX_DOXYGEN+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $DX_DOXYGEN in + [\\/]* | ?:[\\/]*) + ac_cv_path_DX_DOXYGEN="$DX_DOXYGEN" # 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_DX_DOXYGEN="$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 +DX_DOXYGEN=$ac_cv_path_DX_DOXYGEN +if test -n "$DX_DOXYGEN"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DX_DOXYGEN" >&5 +$as_echo "$DX_DOXYGEN" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_path_DX_DOXYGEN"; then + ac_pt_DX_DOXYGEN=$DX_DOXYGEN + # 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_path_ac_pt_DX_DOXYGEN+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $ac_pt_DX_DOXYGEN in + [\\/]* | ?:[\\/]*) + ac_cv_path_ac_pt_DX_DOXYGEN="$ac_pt_DX_DOXYGEN" # 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_DX_DOXYGEN="$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_DX_DOXYGEN=$ac_cv_path_ac_pt_DX_DOXYGEN +if test -n "$ac_pt_DX_DOXYGEN"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_DX_DOXYGEN" >&5 +$as_echo "$ac_pt_DX_DOXYGEN" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_pt_DX_DOXYGEN" = x; then + DX_DOXYGEN="" + 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 + DX_DOXYGEN=$ac_pt_DX_DOXYGEN + fi +else + DX_DOXYGEN="$ac_cv_path_DX_DOXYGEN" +fi + +if test "$DX_FLAG_doc$DX_DOXYGEN" = 1; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: doxygen not found - will not generate any doxygen documentation" >&5 +$as_echo "$as_me: WARNING: doxygen not found - will not generate any doxygen documentation" >&2;} + DX_FLAG_doc=0 + +fi + + +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}perl", so it can be a program name with args. +set dummy ${ac_tool_prefix}perl; 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_DX_PERL+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $DX_PERL in + [\\/]* | ?:[\\/]*) + ac_cv_path_DX_PERL="$DX_PERL" # 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_DX_PERL="$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 +DX_PERL=$ac_cv_path_DX_PERL +if test -n "$DX_PERL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DX_PERL" >&5 +$as_echo "$DX_PERL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_path_DX_PERL"; then + ac_pt_DX_PERL=$DX_PERL + # Extract the first word of "perl", so it can be a program name with args. +set dummy perl; 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_DX_PERL+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $ac_pt_DX_PERL in + [\\/]* | ?:[\\/]*) + ac_cv_path_ac_pt_DX_PERL="$ac_pt_DX_PERL" # 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_DX_PERL="$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_DX_PERL=$ac_cv_path_ac_pt_DX_PERL +if test -n "$ac_pt_DX_PERL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_DX_PERL" >&5 +$as_echo "$ac_pt_DX_PERL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_pt_DX_PERL" = x; then + DX_PERL="" + 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 + DX_PERL=$ac_pt_DX_PERL + fi +else + DX_PERL="$ac_cv_path_DX_PERL" +fi + +if test "$DX_FLAG_doc$DX_PERL" = 1; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: perl not found - will not generate any doxygen documentation" >&5 +$as_echo "$as_me: WARNING: perl not found - will not generate any doxygen documentation" >&2;} + DX_FLAG_doc=0 + +fi + + : +fi +if test "$DX_FLAG_doc" = 1; then + if :; then + DX_COND_doc_TRUE= + DX_COND_doc_FALSE='#' +else + DX_COND_doc_TRUE='#' + DX_COND_doc_FALSE= +fi + + DX_ENV="$DX_ENV PERL_PATH='$DX_PERL'" + + : +else + if false; then + DX_COND_doc_TRUE= + DX_COND_doc_FALSE='#' +else + DX_COND_doc_TRUE='#' + DX_COND_doc_FALSE= +fi + + + : +fi + + +# Dot for graphics: + + + + + # Check whether --enable-doxygen-dot was given. +if test "${enable_doxygen_dot+set}" = set; then : + enableval=$enable_doxygen_dot; +case "$enableval" in +#( +y|Y|yes|Yes|YES) + DX_FLAG_dot=1 + + +test "$DX_FLAG_doc" = "1" \ +|| as_fn_error $? "doxygen-dot requires doxygen-dot" "$LINENO" 5 + +;; #( +n|N|no|No|NO) + DX_FLAG_dot=0 + +;; #( +*) + as_fn_error $? "invalid value '$enableval' given to doxygen-dot" "$LINENO" 5 +;; +esac + +else + +DX_FLAG_dot=1 + + +test "$DX_FLAG_doc" = "1" || DX_FLAG_dot=0 + + + +fi + +if test "$DX_FLAG_dot" = 1; then + +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}dot", so it can be a program name with args. +set dummy ${ac_tool_prefix}dot; 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_DX_DOT+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $DX_DOT in + [\\/]* | ?:[\\/]*) + ac_cv_path_DX_DOT="$DX_DOT" # 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_DX_DOT="$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 +DX_DOT=$ac_cv_path_DX_DOT +if test -n "$DX_DOT"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DX_DOT" >&5 +$as_echo "$DX_DOT" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_path_DX_DOT"; then + ac_pt_DX_DOT=$DX_DOT + # Extract the first word of "dot", so it can be a program name with args. +set dummy dot; 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_DX_DOT+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $ac_pt_DX_DOT in + [\\/]* | ?:[\\/]*) + ac_cv_path_ac_pt_DX_DOT="$ac_pt_DX_DOT" # 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_DX_DOT="$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_DX_DOT=$ac_cv_path_ac_pt_DX_DOT +if test -n "$ac_pt_DX_DOT"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_DX_DOT" >&5 +$as_echo "$ac_pt_DX_DOT" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_pt_DX_DOT" = x; then + DX_DOT="" + 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 + DX_DOT=$ac_pt_DX_DOT + fi +else + DX_DOT="$ac_cv_path_DX_DOT" +fi + +if test "$DX_FLAG_dot$DX_DOT" = 1; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: dot not found - will not generate graphics for doxygen documentation" >&5 +$as_echo "$as_me: WARNING: dot not found - will not generate graphics for doxygen documentation" >&2;} + DX_FLAG_dot=0 + +fi + + : +fi +if test "$DX_FLAG_dot" = 1; then + if :; then + DX_COND_dot_TRUE= + DX_COND_dot_FALSE='#' +else + DX_COND_dot_TRUE='#' + DX_COND_dot_FALSE= +fi + + DX_ENV="$DX_ENV HAVE_DOT='YES'" + + DX_ENV="$DX_ENV DOT_PATH='`expr ".$DX_DOT" : '\(\.\)[^/]*$' \| "x$DX_DOT" : 'x\(.*\)/[^/]*$'`'" + + : +else + if false; then + DX_COND_dot_TRUE= + DX_COND_dot_FALSE='#' +else + DX_COND_dot_TRUE='#' + DX_COND_dot_FALSE= +fi + + DX_ENV="$DX_ENV HAVE_DOT='NO'" + + : +fi + + +# Man pages generation: + + + + + # Check whether --enable-doxygen-man was given. +if test "${enable_doxygen_man+set}" = set; then : + enableval=$enable_doxygen_man; +case "$enableval" in +#( +y|Y|yes|Yes|YES) + DX_FLAG_man=1 + + +test "$DX_FLAG_doc" = "1" \ +|| as_fn_error $? "doxygen-man requires doxygen-man" "$LINENO" 5 + +;; #( +n|N|no|No|NO) + DX_FLAG_man=0 + +;; #( +*) + as_fn_error $? "invalid value '$enableval' given to doxygen-man" "$LINENO" 5 +;; +esac + +else + +DX_FLAG_man=0 + + +test "$DX_FLAG_doc" = "1" || DX_FLAG_man=0 + + + +fi + +if test "$DX_FLAG_man" = 1; then + + : +fi +if test "$DX_FLAG_man" = 1; then + if :; then + DX_COND_man_TRUE= + DX_COND_man_FALSE='#' +else + DX_COND_man_TRUE='#' + DX_COND_man_FALSE= +fi + + DX_ENV="$DX_ENV GENERATE_MAN='YES'" + + : +else + if false; then + DX_COND_man_TRUE= + DX_COND_man_FALSE='#' +else + DX_COND_man_TRUE='#' + DX_COND_man_FALSE= +fi + + DX_ENV="$DX_ENV GENERATE_MAN='NO'" + + : +fi + + +# RTF file generation: + + + + + # Check whether --enable-doxygen-rtf was given. +if test "${enable_doxygen_rtf+set}" = set; then : + enableval=$enable_doxygen_rtf; +case "$enableval" in +#( +y|Y|yes|Yes|YES) + DX_FLAG_rtf=1 + + +test "$DX_FLAG_doc" = "1" \ +|| as_fn_error $? "doxygen-rtf requires doxygen-rtf" "$LINENO" 5 + +;; #( +n|N|no|No|NO) + DX_FLAG_rtf=0 + +;; #( +*) + as_fn_error $? "invalid value '$enableval' given to doxygen-rtf" "$LINENO" 5 +;; +esac + +else + +DX_FLAG_rtf=0 + + +test "$DX_FLAG_doc" = "1" || DX_FLAG_rtf=0 + + + +fi + +if test "$DX_FLAG_rtf" = 1; then + + : +fi +if test "$DX_FLAG_rtf" = 1; then + if :; then + DX_COND_rtf_TRUE= + DX_COND_rtf_FALSE='#' +else + DX_COND_rtf_TRUE='#' + DX_COND_rtf_FALSE= +fi + + DX_ENV="$DX_ENV GENERATE_RTF='YES'" + + : +else + if false; then + DX_COND_rtf_TRUE= + DX_COND_rtf_FALSE='#' +else + DX_COND_rtf_TRUE='#' + DX_COND_rtf_FALSE= +fi + + DX_ENV="$DX_ENV GENERATE_RTF='NO'" + + : +fi + + +# XML file generation: + + + + + # Check whether --enable-doxygen-xml was given. +if test "${enable_doxygen_xml+set}" = set; then : + enableval=$enable_doxygen_xml; +case "$enableval" in +#( +y|Y|yes|Yes|YES) + DX_FLAG_xml=1 + + +test "$DX_FLAG_doc" = "1" \ +|| as_fn_error $? "doxygen-xml requires doxygen-xml" "$LINENO" 5 + +;; #( +n|N|no|No|NO) + DX_FLAG_xml=0 + +;; #( +*) + as_fn_error $? "invalid value '$enableval' given to doxygen-xml" "$LINENO" 5 +;; +esac + +else + +DX_FLAG_xml=0 + + +test "$DX_FLAG_doc" = "1" || DX_FLAG_xml=0 + + + +fi + +if test "$DX_FLAG_xml" = 1; then + + : +fi +if test "$DX_FLAG_xml" = 1; then + if :; then + DX_COND_xml_TRUE= + DX_COND_xml_FALSE='#' +else + DX_COND_xml_TRUE='#' + DX_COND_xml_FALSE= +fi + + DX_ENV="$DX_ENV GENERATE_XML='YES'" + + : +else + if false; then + DX_COND_xml_TRUE= + DX_COND_xml_FALSE='#' +else + DX_COND_xml_TRUE='#' + DX_COND_xml_FALSE= +fi + + DX_ENV="$DX_ENV GENERATE_XML='NO'" + + : +fi + + +# (Compressed) HTML help generation: + + + + + # Check whether --enable-doxygen-chm was given. +if test "${enable_doxygen_chm+set}" = set; then : + enableval=$enable_doxygen_chm; +case "$enableval" in +#( +y|Y|yes|Yes|YES) + DX_FLAG_chm=1 + + +test "$DX_FLAG_doc" = "1" \ +|| as_fn_error $? "doxygen-chm requires doxygen-chm" "$LINENO" 5 + +;; #( +n|N|no|No|NO) + DX_FLAG_chm=0 + +;; #( +*) + as_fn_error $? "invalid value '$enableval' given to doxygen-chm" "$LINENO" 5 +;; +esac + +else + +DX_FLAG_chm=0 + + +test "$DX_FLAG_doc" = "1" || DX_FLAG_chm=0 + + + +fi + +if test "$DX_FLAG_chm" = 1; then + +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}hhc", so it can be a program name with args. +set dummy ${ac_tool_prefix}hhc; 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_DX_HHC+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $DX_HHC in + [\\/]* | ?:[\\/]*) + ac_cv_path_DX_HHC="$DX_HHC" # 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_DX_HHC="$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 +DX_HHC=$ac_cv_path_DX_HHC +if test -n "$DX_HHC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DX_HHC" >&5 +$as_echo "$DX_HHC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_path_DX_HHC"; then + ac_pt_DX_HHC=$DX_HHC + # Extract the first word of "hhc", so it can be a program name with args. +set dummy hhc; 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_DX_HHC+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $ac_pt_DX_HHC in + [\\/]* | ?:[\\/]*) + ac_cv_path_ac_pt_DX_HHC="$ac_pt_DX_HHC" # 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_DX_HHC="$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_DX_HHC=$ac_cv_path_ac_pt_DX_HHC +if test -n "$ac_pt_DX_HHC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_DX_HHC" >&5 +$as_echo "$ac_pt_DX_HHC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_pt_DX_HHC" = x; then + DX_HHC="" + 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 + DX_HHC=$ac_pt_DX_HHC + fi +else + DX_HHC="$ac_cv_path_DX_HHC" +fi + +if test "$DX_FLAG_chm$DX_HHC" = 1; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: hhc not found - will not generate doxygen compressed HTML help documentation" >&5 +$as_echo "$as_me: WARNING: hhc not found - will not generate doxygen compressed HTML help documentation" >&2;} + DX_FLAG_chm=0 + +fi + + : +fi +if test "$DX_FLAG_chm" = 1; then + if :; then + DX_COND_chm_TRUE= + DX_COND_chm_FALSE='#' +else + DX_COND_chm_TRUE='#' + DX_COND_chm_FALSE= +fi + + DX_ENV="$DX_ENV HHC_PATH='$DX_HHC'" + + DX_ENV="$DX_ENV GENERATE_HTML='YES'" + + DX_ENV="$DX_ENV GENERATE_HTMLHELP='YES'" + + : +else + if false; then + DX_COND_chm_TRUE= + DX_COND_chm_FALSE='#' +else + DX_COND_chm_TRUE='#' + DX_COND_chm_FALSE= +fi + + DX_ENV="$DX_ENV GENERATE_HTMLHELP='NO'" + + : +fi + + +# Seperate CHI file generation. + + + + + # Check whether --enable-doxygen-chi was given. +if test "${enable_doxygen_chi+set}" = set; then : + enableval=$enable_doxygen_chi; +case "$enableval" in +#( +y|Y|yes|Yes|YES) + DX_FLAG_chi=1 + + +test "$DX_FLAG_chm" = "1" \ +|| as_fn_error $? "doxygen-chi requires doxygen-chi" "$LINENO" 5 + +;; #( +n|N|no|No|NO) + DX_FLAG_chi=0 + +;; #( +*) + as_fn_error $? "invalid value '$enableval' given to doxygen-chi" "$LINENO" 5 +;; +esac + +else + +DX_FLAG_chi=0 + + +test "$DX_FLAG_chm" = "1" || DX_FLAG_chi=0 + + + +fi + +if test "$DX_FLAG_chi" = 1; then + + : +fi +if test "$DX_FLAG_chi" = 1; then + if :; then + DX_COND_chi_TRUE= + DX_COND_chi_FALSE='#' +else + DX_COND_chi_TRUE='#' + DX_COND_chi_FALSE= +fi + + DX_ENV="$DX_ENV GENERATE_CHI='YES'" + + : +else + if false; then + DX_COND_chi_TRUE= + DX_COND_chi_FALSE='#' +else + DX_COND_chi_TRUE='#' + DX_COND_chi_FALSE= +fi + + DX_ENV="$DX_ENV GENERATE_CHI='NO'" + + : +fi + + +# Plain HTML pages generation: + + + + + # Check whether --enable-doxygen-html was given. +if test "${enable_doxygen_html+set}" = set; then : + enableval=$enable_doxygen_html; +case "$enableval" in +#( +y|Y|yes|Yes|YES) + DX_FLAG_html=1 + + +test "$DX_FLAG_doc" = "1" \ +|| as_fn_error $? "doxygen-html requires doxygen-html" "$LINENO" 5 + +test "$DX_FLAG_chm" = "0" \ +|| as_fn_error $? "doxygen-html contradicts doxygen-html" "$LINENO" 5 + +;; #( +n|N|no|No|NO) + DX_FLAG_html=0 + +;; #( +*) + as_fn_error $? "invalid value '$enableval' given to doxygen-html" "$LINENO" 5 +;; +esac + +else + +DX_FLAG_html=1 + + +test "$DX_FLAG_doc" = "1" || DX_FLAG_html=0 + + +test "$DX_FLAG_chm" = "0" || DX_FLAG_html=0 + + + +fi + +if test "$DX_FLAG_html" = 1; then + + : +fi +if test "$DX_FLAG_html" = 1; then + if :; then + DX_COND_html_TRUE= + DX_COND_html_FALSE='#' +else + DX_COND_html_TRUE='#' + DX_COND_html_FALSE= +fi + + DX_ENV="$DX_ENV GENERATE_HTML='YES'" + + : +else + if false; then + DX_COND_html_TRUE= + DX_COND_html_FALSE='#' +else + DX_COND_html_TRUE='#' + DX_COND_html_FALSE= +fi + + test "$DX_FLAG_chm" = 1 || DX_ENV="$DX_ENV GENERATE_HTML='NO'" + + : +fi + + +# PostScript file generation: + + + + + # Check whether --enable-doxygen-ps was given. +if test "${enable_doxygen_ps+set}" = set; then : + enableval=$enable_doxygen_ps; +case "$enableval" in +#( +y|Y|yes|Yes|YES) + DX_FLAG_ps=1 + + +test "$DX_FLAG_doc" = "1" \ +|| as_fn_error $? "doxygen-ps requires doxygen-ps" "$LINENO" 5 + +;; #( +n|N|no|No|NO) + DX_FLAG_ps=0 + +;; #( +*) + as_fn_error $? "invalid value '$enableval' given to doxygen-ps" "$LINENO" 5 +;; +esac + +else + +DX_FLAG_ps=0 + + +test "$DX_FLAG_doc" = "1" || DX_FLAG_ps=0 + + + +fi + +if test "$DX_FLAG_ps" = 1; then + +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}latex", so it can be a program name with args. +set dummy ${ac_tool_prefix}latex; 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_DX_LATEX+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $DX_LATEX in + [\\/]* | ?:[\\/]*) + ac_cv_path_DX_LATEX="$DX_LATEX" # 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_DX_LATEX="$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 +DX_LATEX=$ac_cv_path_DX_LATEX +if test -n "$DX_LATEX"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DX_LATEX" >&5 +$as_echo "$DX_LATEX" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_path_DX_LATEX"; then + ac_pt_DX_LATEX=$DX_LATEX + # Extract the first word of "latex", so it can be a program name with args. +set dummy latex; 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_DX_LATEX+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $ac_pt_DX_LATEX in + [\\/]* | ?:[\\/]*) + ac_cv_path_ac_pt_DX_LATEX="$ac_pt_DX_LATEX" # 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_DX_LATEX="$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_DX_LATEX=$ac_cv_path_ac_pt_DX_LATEX +if test -n "$ac_pt_DX_LATEX"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_DX_LATEX" >&5 +$as_echo "$ac_pt_DX_LATEX" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_pt_DX_LATEX" = x; then + DX_LATEX="" + 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 + DX_LATEX=$ac_pt_DX_LATEX + fi +else + DX_LATEX="$ac_cv_path_DX_LATEX" +fi + +if test "$DX_FLAG_ps$DX_LATEX" = 1; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: latex not found - will not generate doxygen PostScript documentation" >&5 +$as_echo "$as_me: WARNING: latex not found - will not generate doxygen PostScript documentation" >&2;} + DX_FLAG_ps=0 + +fi + + +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}makeindex", so it can be a program name with args. +set dummy ${ac_tool_prefix}makeindex; 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_DX_MAKEINDEX+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $DX_MAKEINDEX in + [\\/]* | ?:[\\/]*) + ac_cv_path_DX_MAKEINDEX="$DX_MAKEINDEX" # 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_DX_MAKEINDEX="$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 +DX_MAKEINDEX=$ac_cv_path_DX_MAKEINDEX +if test -n "$DX_MAKEINDEX"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DX_MAKEINDEX" >&5 +$as_echo "$DX_MAKEINDEX" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_path_DX_MAKEINDEX"; then + ac_pt_DX_MAKEINDEX=$DX_MAKEINDEX + # Extract the first word of "makeindex", so it can be a program name with args. +set dummy makeindex; 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_DX_MAKEINDEX+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $ac_pt_DX_MAKEINDEX in + [\\/]* | ?:[\\/]*) + ac_cv_path_ac_pt_DX_MAKEINDEX="$ac_pt_DX_MAKEINDEX" # 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_DX_MAKEINDEX="$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_DX_MAKEINDEX=$ac_cv_path_ac_pt_DX_MAKEINDEX +if test -n "$ac_pt_DX_MAKEINDEX"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_DX_MAKEINDEX" >&5 +$as_echo "$ac_pt_DX_MAKEINDEX" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_pt_DX_MAKEINDEX" = x; then + DX_MAKEINDEX="" + 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 + DX_MAKEINDEX=$ac_pt_DX_MAKEINDEX + fi +else + DX_MAKEINDEX="$ac_cv_path_DX_MAKEINDEX" +fi + +if test "$DX_FLAG_ps$DX_MAKEINDEX" = 1; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: makeindex not found - will not generate doxygen PostScript documentation" >&5 +$as_echo "$as_me: WARNING: makeindex not found - will not generate doxygen PostScript documentation" >&2;} + DX_FLAG_ps=0 + +fi + + +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}dvips", so it can be a program name with args. +set dummy ${ac_tool_prefix}dvips; 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_DX_DVIPS+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $DX_DVIPS in + [\\/]* | ?:[\\/]*) + ac_cv_path_DX_DVIPS="$DX_DVIPS" # 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_DX_DVIPS="$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 +DX_DVIPS=$ac_cv_path_DX_DVIPS +if test -n "$DX_DVIPS"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DX_DVIPS" >&5 +$as_echo "$DX_DVIPS" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_path_DX_DVIPS"; then + ac_pt_DX_DVIPS=$DX_DVIPS + # Extract the first word of "dvips", so it can be a program name with args. +set dummy dvips; 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_DX_DVIPS+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $ac_pt_DX_DVIPS in + [\\/]* | ?:[\\/]*) + ac_cv_path_ac_pt_DX_DVIPS="$ac_pt_DX_DVIPS" # 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_DX_DVIPS="$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_DX_DVIPS=$ac_cv_path_ac_pt_DX_DVIPS +if test -n "$ac_pt_DX_DVIPS"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_DX_DVIPS" >&5 +$as_echo "$ac_pt_DX_DVIPS" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_pt_DX_DVIPS" = x; then + DX_DVIPS="" + 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 + DX_DVIPS=$ac_pt_DX_DVIPS + fi +else + DX_DVIPS="$ac_cv_path_DX_DVIPS" +fi + +if test "$DX_FLAG_ps$DX_DVIPS" = 1; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: dvips not found - will not generate doxygen PostScript documentation" >&5 +$as_echo "$as_me: WARNING: dvips not found - will not generate doxygen PostScript documentation" >&2;} + DX_FLAG_ps=0 + +fi + + +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}egrep", so it can be a program name with args. +set dummy ${ac_tool_prefix}egrep; 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_DX_EGREP+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $DX_EGREP in + [\\/]* | ?:[\\/]*) + ac_cv_path_DX_EGREP="$DX_EGREP" # 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_DX_EGREP="$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 +DX_EGREP=$ac_cv_path_DX_EGREP +if test -n "$DX_EGREP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DX_EGREP" >&5 +$as_echo "$DX_EGREP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_path_DX_EGREP"; then + ac_pt_DX_EGREP=$DX_EGREP + # Extract the first word of "egrep", so it can be a program name with args. +set dummy egrep; 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_DX_EGREP+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $ac_pt_DX_EGREP in + [\\/]* | ?:[\\/]*) + ac_cv_path_ac_pt_DX_EGREP="$ac_pt_DX_EGREP" # 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_DX_EGREP="$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_DX_EGREP=$ac_cv_path_ac_pt_DX_EGREP +if test -n "$ac_pt_DX_EGREP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_DX_EGREP" >&5 +$as_echo "$ac_pt_DX_EGREP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_pt_DX_EGREP" = x; then + DX_EGREP="" + 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 + DX_EGREP=$ac_pt_DX_EGREP + fi +else + DX_EGREP="$ac_cv_path_DX_EGREP" +fi + +if test "$DX_FLAG_ps$DX_EGREP" = 1; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: egrep not found - will not generate doxygen PostScript documentation" >&5 +$as_echo "$as_me: WARNING: egrep not found - will not generate doxygen PostScript documentation" >&2;} + DX_FLAG_ps=0 + +fi + + : +fi +if test "$DX_FLAG_ps" = 1; then + if :; then + DX_COND_ps_TRUE= + DX_COND_ps_FALSE='#' +else + DX_COND_ps_TRUE='#' + DX_COND_ps_FALSE= +fi + + + : +else + if false; then + DX_COND_ps_TRUE= + DX_COND_ps_FALSE='#' +else + DX_COND_ps_TRUE='#' + DX_COND_ps_FALSE= +fi + + + : +fi + + +# PDF file generation: + + + + + # Check whether --enable-doxygen-pdf was given. +if test "${enable_doxygen_pdf+set}" = set; then : + enableval=$enable_doxygen_pdf; +case "$enableval" in +#( +y|Y|yes|Yes|YES) + DX_FLAG_pdf=1 + + +test "$DX_FLAG_doc" = "1" \ +|| as_fn_error $? "doxygen-pdf requires doxygen-pdf" "$LINENO" 5 + +;; #( +n|N|no|No|NO) + DX_FLAG_pdf=0 + +;; #( +*) + as_fn_error $? "invalid value '$enableval' given to doxygen-pdf" "$LINENO" 5 +;; +esac + +else + +DX_FLAG_pdf=0 + + +test "$DX_FLAG_doc" = "1" || DX_FLAG_pdf=0 + + + +fi + +if test "$DX_FLAG_pdf" = 1; then + +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_DX_PDFLATEX+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $DX_PDFLATEX in + [\\/]* | ?:[\\/]*) + ac_cv_path_DX_PDFLATEX="$DX_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_DX_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 +DX_PDFLATEX=$ac_cv_path_DX_PDFLATEX +if test -n "$DX_PDFLATEX"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DX_PDFLATEX" >&5 +$as_echo "$DX_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_DX_PDFLATEX"; then + ac_pt_DX_PDFLATEX=$DX_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_DX_PDFLATEX+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $ac_pt_DX_PDFLATEX in + [\\/]* | ?:[\\/]*) + ac_cv_path_ac_pt_DX_PDFLATEX="$ac_pt_DX_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_DX_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_DX_PDFLATEX=$ac_cv_path_ac_pt_DX_PDFLATEX +if test -n "$ac_pt_DX_PDFLATEX"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_DX_PDFLATEX" >&5 +$as_echo "$ac_pt_DX_PDFLATEX" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_pt_DX_PDFLATEX" = x; then + DX_PDFLATEX="" + 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 + DX_PDFLATEX=$ac_pt_DX_PDFLATEX + fi +else + DX_PDFLATEX="$ac_cv_path_DX_PDFLATEX" +fi + +if test "$DX_FLAG_pdf$DX_PDFLATEX" = 1; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: pdflatex not found - will not generate doxygen PDF documentation" >&5 +$as_echo "$as_me: WARNING: pdflatex not found - will not generate doxygen PDF documentation" >&2;} + DX_FLAG_pdf=0 + +fi + + +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}makeindex", so it can be a program name with args. +set dummy ${ac_tool_prefix}makeindex; 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_DX_MAKEINDEX+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $DX_MAKEINDEX in + [\\/]* | ?:[\\/]*) + ac_cv_path_DX_MAKEINDEX="$DX_MAKEINDEX" # 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_DX_MAKEINDEX="$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 +DX_MAKEINDEX=$ac_cv_path_DX_MAKEINDEX +if test -n "$DX_MAKEINDEX"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DX_MAKEINDEX" >&5 +$as_echo "$DX_MAKEINDEX" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_path_DX_MAKEINDEX"; then + ac_pt_DX_MAKEINDEX=$DX_MAKEINDEX + # Extract the first word of "makeindex", so it can be a program name with args. +set dummy makeindex; 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_DX_MAKEINDEX+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $ac_pt_DX_MAKEINDEX in + [\\/]* | ?:[\\/]*) + ac_cv_path_ac_pt_DX_MAKEINDEX="$ac_pt_DX_MAKEINDEX" # 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_DX_MAKEINDEX="$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_DX_MAKEINDEX=$ac_cv_path_ac_pt_DX_MAKEINDEX +if test -n "$ac_pt_DX_MAKEINDEX"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_DX_MAKEINDEX" >&5 +$as_echo "$ac_pt_DX_MAKEINDEX" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_pt_DX_MAKEINDEX" = x; then + DX_MAKEINDEX="" + 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 + DX_MAKEINDEX=$ac_pt_DX_MAKEINDEX + fi +else + DX_MAKEINDEX="$ac_cv_path_DX_MAKEINDEX" +fi + +if test "$DX_FLAG_pdf$DX_MAKEINDEX" = 1; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: makeindex not found - will not generate doxygen PDF documentation" >&5 +$as_echo "$as_me: WARNING: makeindex not found - will not generate doxygen PDF documentation" >&2;} + DX_FLAG_pdf=0 + +fi + + +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}egrep", so it can be a program name with args. +set dummy ${ac_tool_prefix}egrep; 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_DX_EGREP+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $DX_EGREP in + [\\/]* | ?:[\\/]*) + ac_cv_path_DX_EGREP="$DX_EGREP" # 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_DX_EGREP="$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 +DX_EGREP=$ac_cv_path_DX_EGREP +if test -n "$DX_EGREP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DX_EGREP" >&5 +$as_echo "$DX_EGREP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_path_DX_EGREP"; then + ac_pt_DX_EGREP=$DX_EGREP + # Extract the first word of "egrep", so it can be a program name with args. +set dummy egrep; 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_DX_EGREP+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $ac_pt_DX_EGREP in + [\\/]* | ?:[\\/]*) + ac_cv_path_ac_pt_DX_EGREP="$ac_pt_DX_EGREP" # 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_DX_EGREP="$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_DX_EGREP=$ac_cv_path_ac_pt_DX_EGREP +if test -n "$ac_pt_DX_EGREP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_DX_EGREP" >&5 +$as_echo "$ac_pt_DX_EGREP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_pt_DX_EGREP" = x; then + DX_EGREP="" + 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 + DX_EGREP=$ac_pt_DX_EGREP + fi +else + DX_EGREP="$ac_cv_path_DX_EGREP" +fi + +if test "$DX_FLAG_pdf$DX_EGREP" = 1; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: egrep not found - will not generate doxygen PDF documentation" >&5 +$as_echo "$as_me: WARNING: egrep not found - will not generate doxygen PDF documentation" >&2;} + DX_FLAG_pdf=0 + +fi + + : +fi +if test "$DX_FLAG_pdf" = 1; then + if :; then + DX_COND_pdf_TRUE= + DX_COND_pdf_FALSE='#' +else + DX_COND_pdf_TRUE='#' + DX_COND_pdf_FALSE= +fi + + + : +else + if false; then + DX_COND_pdf_TRUE= + DX_COND_pdf_FALSE='#' +else + DX_COND_pdf_TRUE='#' + DX_COND_pdf_FALSE= +fi + + + : +fi + + +# LaTeX generation for PS and/or PDF: +if test "$DX_FLAG_ps" = 1 || test "$DX_FLAG_pdf" = 1; then + if :; then + DX_COND_latex_TRUE= + DX_COND_latex_FALSE='#' +else + DX_COND_latex_TRUE='#' + DX_COND_latex_FALSE= +fi + + DX_ENV="$DX_ENV GENERATE_LATEX='YES'" + +else + if false; then + DX_COND_latex_TRUE= + DX_COND_latex_FALSE='#' +else + DX_COND_latex_TRUE='#' + DX_COND_latex_FALSE= +fi + + DX_ENV="$DX_ENV GENERATE_LATEX='NO'" + +fi + +# Paper size for PS and/or PDF: + +case "$DOXYGEN_PAPER_SIZE" in +#( +"") + DOXYGEN_PAPER_SIZE="" + +;; #( +a4wide|a4|letter|legal|executive) + DX_ENV="$DX_ENV PAPER_SIZE='$DOXYGEN_PAPER_SIZE'" + +;; #( +*) + as_fn_error $? "unknown DOXYGEN_PAPER_SIZE='$DOXYGEN_PAPER_SIZE'" "$LINENO" 5 +;; +esac + +#For debugging: +#echo DX_FLAG_doc=$DX_FLAG_doc +#echo DX_FLAG_dot=$DX_FLAG_dot +#echo DX_FLAG_man=$DX_FLAG_man +#echo DX_FLAG_html=$DX_FLAG_html +#echo DX_FLAG_chm=$DX_FLAG_chm +#echo DX_FLAG_chi=$DX_FLAG_chi +#echo DX_FLAG_rtf=$DX_FLAG_rtf +#echo DX_FLAG_xml=$DX_FLAG_xml +#echo DX_FLAG_pdf=$DX_FLAG_pdf +#echo DX_FLAG_ps=$DX_FLAG_ps +#echo DX_ENV=$DX_ENV + +###################################################################### + +# Checks for programs. +ac_ext=cpp +ac_cpp='$CXXCPP $CPPFLAGS' +ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_cxx_compiler_gnu +if test -z "$CXX"; then + if test -n "$CCC"; then + CXX=$CCC + else + if test -n "$ac_tool_prefix"; then + for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC + 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_CXX+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$CXX"; then + ac_cv_prog_CXX="$CXX" # 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_CXX="$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 +CXX=$ac_cv_prog_CXX +if test -n "$CXX"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXX" >&5 +$as_echo "$CXX" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$CXX" && break + done +fi +if test -z "$CXX"; then + ac_ct_CXX=$CXX + for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC +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_CXX+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_CXX"; then + ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # 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_CXX="$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_CXX=$ac_cv_prog_ac_ct_CXX +if test -n "$ac_ct_CXX"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CXX" >&5 +$as_echo "$ac_ct_CXX" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$ac_ct_CXX" && break +done + + if test "x$ac_ct_CXX" = x; then + CXX="g++" + 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 + CXX=$ac_ct_CXX + fi +fi + + fi +fi +# 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 + +{ $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_cxx_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_cxx_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_cxx_compiler_gnu=$ac_compiler_gnu + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cxx_compiler_gnu" >&5 +$as_echo "$ac_cv_cxx_compiler_gnu" >&6; } +if test $ac_compiler_gnu = yes; then + GXX=yes +else + GXX= +fi +ac_test_CXXFLAGS=${CXXFLAGS+set} +ac_save_CXXFLAGS=$CXXFLAGS +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX accepts -g" >&5 +$as_echo_n "checking whether $CXX accepts -g... " >&6; } +if ${ac_cv_prog_cxx_g+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_save_cxx_werror_flag=$ac_cxx_werror_flag + ac_cxx_werror_flag=yes + ac_cv_prog_cxx_g=no + CXXFLAGS="-g" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_cxx_try_compile "$LINENO"; then : + ac_cv_prog_cxx_g=yes +else + CXXFLAGS="" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_cxx_try_compile "$LINENO"; then : + +else + ac_cxx_werror_flag=$ac_save_cxx_werror_flag + CXXFLAGS="-g" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_cxx_try_compile "$LINENO"; then : + ac_cv_prog_cxx_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_cxx_werror_flag=$ac_save_cxx_werror_flag +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cxx_g" >&5 +$as_echo "$ac_cv_prog_cxx_g" >&6; } +if test "$ac_test_CXXFLAGS" = set; then + CXXFLAGS=$ac_save_CXXFLAGS +elif test $ac_cv_prog_cxx_g = yes; then + if test "$GXX" = yes; then + CXXFLAGS="-g -O2" + else + CXXFLAGS="-g" + fi +else + if test "$GXX" = yes; then + CXXFLAGS="-O2" + else + CXXFLAGS= + fi +fi +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + +depcc="$CXX" 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_CXX_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_CXX_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_CXX_dependencies_compiler_type=$depmode + break + fi + fi + done + + cd .. + rm -rf conftest.dir +else + am_cv_CXX_dependencies_compiler_type=none +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CXX_dependencies_compiler_type" >&5 +$as_echo "$am_cv_CXX_dependencies_compiler_type" >&6; } +CXXDEPMODE=depmode=$am_cv_CXX_dependencies_compiler_type + + if + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_CXX_dependencies_compiler_type" = gcc3; then + am__fastdepCXX_TRUE= + am__fastdepCXX_FALSE='#' +else + am__fastdepCXX_TRUE='#' + am__fastdepCXX_FALSE= +fi + + + + +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 + + if test -n "$CXX" && ( test "X$CXX" != "Xno" && + ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || + (test "X$CXX" != "Xg++"))) ; then + ac_ext=cpp +ac_cpp='$CXXCPP $CPPFLAGS' +ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_cxx_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; } +if test -z "$CXXCPP"; then + if ${ac_cv_prog_CXXCPP+:} false; then : + $as_echo_n "(cached) " >&6 +else + # Double quotes because CXXCPP needs to be expanded + for CXXCPP in "$CXX -E" "/lib/cpp" + do + ac_preproc_ok=false +for ac_cxx_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_cxx_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_cxx_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_CXXCPP=$CXXCPP + +fi + CXXCPP=$ac_cv_prog_CXXCPP +else + ac_cv_prog_CXXCPP=$CXXCPP +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXXCPP" >&5 +$as_echo "$CXXCPP" >&6; } +ac_preproc_ok=false +for ac_cxx_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_cxx_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_cxx_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 \"$CXXCPP\" 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 + +else + _lt_caught_CXX_error=yes +fi + +ac_ext=cpp +ac_cpp='$CXXCPP $CPPFLAGS' +ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_cxx_compiler_gnu + +archive_cmds_need_lc_CXX=no +allow_undefined_flag_CXX= +always_export_symbols_CXX=no +archive_expsym_cmds_CXX= +compiler_needs_object_CXX=no +export_dynamic_flag_spec_CXX= +hardcode_direct_CXX=no +hardcode_direct_absolute_CXX=no +hardcode_libdir_flag_spec_CXX= +hardcode_libdir_separator_CXX= +hardcode_minus_L_CXX=no +hardcode_shlibpath_var_CXX=unsupported +hardcode_automatic_CXX=no +inherit_rpath_CXX=no +module_cmds_CXX= +module_expsym_cmds_CXX= +link_all_deplibs_CXX=unknown +old_archive_cmds_CXX=$old_archive_cmds +reload_flag_CXX=$reload_flag +reload_cmds_CXX=$reload_cmds +no_undefined_flag_CXX= +whole_archive_flag_spec_CXX= +enable_shared_with_static_runtimes_CXX=no + +# Source file extension for C++ test sources. +ac_ext=cpp + +# Object file extension for compiled C++ test sources. +objext=o +objext_CXX=$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. + + + + + + +# 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_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 + compiler_CXX=$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-%%"` + + + 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_prog_compiler_no_builtin_flag_CXX=' -fno-builtin' + else + lt_prog_compiler_no_builtin_flag_CXX= + fi + + if test "$GXX" = yes; then + # Set up default GNU C++ configuration + + + +# 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 + + + + + + + + # 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 + archive_cmds_CXX='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds_CXX='$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' + + hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' + export_dynamic_flag_spec_CXX='${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 + whole_archive_flag_spec_CXX="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + else + whole_archive_flag_spec_CXX= + 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. + archive_cmds_CXX='$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 + { $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; } + ld_shlibs_CXX=yes + case $host_os in + aix3*) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=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. + + archive_cmds_CXX='' + hardcode_direct_CXX=yes + hardcode_direct_absolute_CXX=yes + hardcode_libdir_separator_CXX=':' + link_all_deplibs_CXX=yes + file_list_spec_CXX='${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 + hardcode_direct_CXX=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_CXX=yes + hardcode_libdir_flag_spec_CXX='-L$libdir' + hardcode_libdir_separator_CXX= + 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 + + export_dynamic_flag_spec_CXX='${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_CXX=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_CXX='-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__CXX+:} 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_cxx_try_link "$LINENO"; then : + + lt_aix_libpath_sed=' + /Import File Strings/,/^$/ { + /^0/ { + s/^0 *\([^ ]*\) *$/\1/ + p + } + }' + lt_cv_aix_libpath__CXX=`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__CXX"; then + lt_cv_aix_libpath__CXX=`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__CXX"; then + lt_cv_aix_libpath__CXX="/usr/lib:/lib" + fi + +fi + + aix_libpath=$lt_cv_aix_libpath__CXX +fi + + hardcode_libdir_flag_spec_CXX='${wl}-blibpath:$libdir:'"$aix_libpath" + + archive_expsym_cmds_CXX='$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_CXX='${wl}-R $libdir:/usr/lib:/lib' + allow_undefined_flag_CXX="-z nodefs" + archive_expsym_cmds_CXX="\$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__CXX+:} 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_cxx_try_link "$LINENO"; then : + + lt_aix_libpath_sed=' + /Import File Strings/,/^$/ { + /^0/ { + s/^0 *\([^ ]*\) *$/\1/ + p + } + }' + lt_cv_aix_libpath__CXX=`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__CXX"; then + lt_cv_aix_libpath__CXX=`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__CXX"; then + lt_cv_aix_libpath__CXX="/usr/lib:/lib" + fi + +fi + + aix_libpath=$lt_cv_aix_libpath__CXX +fi + + hardcode_libdir_flag_spec_CXX='${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_CXX=' ${wl}-bernotok' + allow_undefined_flag_CXX=' ${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_CXX='${wl}--whole-archive$convenience ${wl}--no-whole-archive' + else + # Exported symbols can be pulled into shared objects from archives + whole_archive_flag_spec_CXX='$convenience' + fi + archive_cmds_need_lc_CXX=yes + # This is similar to how AIX traditionally builds its shared + # libraries. + archive_expsym_cmds_CXX="\$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 + allow_undefined_flag_CXX=unsupported + # Joseph Beckenbach says some releases of gcc + # support --undefined. This deserves some investigation. FIXME + archive_cmds_CXX='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + else + ld_shlibs_CXX=no + fi + ;; + + chorus*) + case $cc_basename in + *) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=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. + hardcode_libdir_flag_spec_CXX=' ' + allow_undefined_flag_CXX=unsupported + always_export_symbols_CXX=yes + file_list_spec_CXX='@' + # 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_CXX='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' + archive_expsym_cmds_CXX='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, CXX)='true' + enable_shared_with_static_runtimes_CXX=yes + # Don't use ranlib + old_postinstall_cmds_CXX='chmod 644 $oldlib' + postlink_cmds_CXX='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, CXX) is actually meaningless, + # as there is no search path for DLLs. + hardcode_libdir_flag_spec_CXX='-L$libdir' + export_dynamic_flag_spec_CXX='${wl}--export-all-symbols' + allow_undefined_flag_CXX=unsupported + always_export_symbols_CXX=no + enable_shared_with_static_runtimes_CXX=yes + + if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then + archive_cmds_CXX='$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... + archive_expsym_cmds_CXX='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 + ld_shlibs_CXX=no + fi + ;; + esac + ;; + darwin* | rhapsody*) + + + archive_cmds_need_lc_CXX=no + hardcode_direct_CXX=no + hardcode_automatic_CXX=yes + hardcode_shlibpath_var_CXX=unsupported + if test "$lt_cv_ld_force_load" = "yes"; then + whole_archive_flag_spec_CXX='`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_CXX='' + fi + link_all_deplibs_CXX=yes + allow_undefined_flag_CXX="$_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_CXX="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" + module_cmds_CXX="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" + archive_expsym_cmds_CXX="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_CXX="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}" + if test "$lt_cv_apple_cc_single_mod" != "yes"; then + archive_cmds_CXX="\$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}" + archive_expsym_cmds_CXX="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 + ld_shlibs_CXX=no + fi + + ;; + + dgux*) + case $cc_basename in + ec++*) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + ghcx*) + # Green Hills C++ Compiler + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + *) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + esac + ;; + + freebsd2.*) + # C++ shared libraries reported to be fairly broken before + # switch to ELF + ld_shlibs_CXX=no + ;; + + freebsd-elf*) + archive_cmds_need_lc_CXX=no + ;; + + freebsd* | dragonfly*) + # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF + # conventions + ld_shlibs_CXX=yes + ;; + + haiku*) + archive_cmds_CXX='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + link_all_deplibs_CXX=yes + ;; + + hpux9*) + hardcode_libdir_flag_spec_CXX='${wl}+b ${wl}$libdir' + hardcode_libdir_separator_CXX=: + export_dynamic_flag_spec_CXX='${wl}-E' + hardcode_direct_CXX=yes + hardcode_minus_L_CXX=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 + ld_shlibs_CXX=no + ;; + aCC*) + archive_cmds_CXX='$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 + archive_cmds_CXX='$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 + ld_shlibs_CXX=no + fi + ;; + esac + ;; + + hpux10*|hpux11*) + if test $with_gnu_ld = no; then + hardcode_libdir_flag_spec_CXX='${wl}+b ${wl}$libdir' + hardcode_libdir_separator_CXX=: + + case $host_cpu in + hppa*64*|ia64*) + ;; + *) + export_dynamic_flag_spec_CXX='${wl}-E' + ;; + esac + fi + case $host_cpu in + hppa*64*|ia64*) + hardcode_direct_CXX=no + hardcode_shlibpath_var_CXX=no + ;; + *) + hardcode_direct_CXX=yes + hardcode_direct_absolute_CXX=yes + hardcode_minus_L_CXX=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 + ld_shlibs_CXX=no + ;; + aCC*) + case $host_cpu in + hppa*64*) + archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + ia64*) + archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + *) + archive_cmds_CXX='$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*) + archive_cmds_CXX='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + ia64*) + archive_cmds_CXX='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + *) + archive_cmds_CXX='$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 + ld_shlibs_CXX=no + fi + ;; + esac + ;; + + interix[3-9]*) + hardcode_direct_CXX=no + hardcode_shlibpath_var_CXX=no + hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' + export_dynamic_flag_spec_CXX='${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_CXX='$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_CXX='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++ + archive_cmds_CXX='$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. + old_archive_cmds_CXX='$CC -ar -WR,-u -o $oldlib $oldobjs' + ;; + *) + if test "$GXX" = yes; then + if test "$with_gnu_ld" = no; then + archive_cmds_CXX='$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 + archive_cmds_CXX='$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 + link_all_deplibs_CXX=yes + ;; + esac + hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' + hardcode_libdir_separator_CXX=: + inherit_rpath_CXX=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. + archive_cmds_CXX='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' + archive_expsym_cmds_CXX='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"' + + hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' + export_dynamic_flag_spec_CXX='${wl}--export-dynamic' + + # Archives containing C++ object files must be created using + # "CC -Bstatic", where "CC" is the KAI C++ compiler. + old_archive_cmds_CXX='$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."*) + archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds_CXX='$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 + archive_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + ;; + esac + archive_cmds_need_lc_CXX=no + hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' + export_dynamic_flag_spec_CXX='${wl}--export-dynamic' + whole_archive_flag_spec_CXX='${wl}--whole-archive$convenience ${wl}--no-whole-archive' + ;; + pgCC* | pgcpp*) + # Portland Group C++ compiler + case `$CC -V` in + *pgCC\ [1-5].* | *pgcpp\ [1-5].*) + prelink_cmds_CXX='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`"' + old_archive_cmds_CXX='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' + archive_cmds_CXX='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' + archive_expsym_cmds_CXX='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 + archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' + archive_expsym_cmds_CXX='$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 + + hardcode_libdir_flag_spec_CXX='${wl}--rpath ${wl}$libdir' + export_dynamic_flag_spec_CXX='${wl}--export-dynamic' + whole_archive_flag_spec_CXX='${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++ + archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds_CXX='$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 + hardcode_libdir_flag_spec_CXX='-rpath $libdir' + hardcode_libdir_separator_CXX=: + + # 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 + hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' + export_dynamic_flag_spec_CXX='${wl}--export-dynamic' + archive_cmds_CXX='$CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + if test "x$supports_anon_versioning" = xyes; then + archive_expsym_cmds_CXX='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 + no_undefined_flag_CXX=' -zdefs' + archive_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + archive_expsym_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file ${wl}$export_symbols' + hardcode_libdir_flag_spec_CXX='-R$libdir' + whole_archive_flag_spec_CXX='${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_CXX=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. + old_archive_cmds_CXX='$CC -xar -o $oldlib $oldobjs' + ;; + esac + ;; + esac + ;; + + lynxos*) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + + m88k*) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + + mvs*) + case $cc_basename in + cxx*) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + *) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + esac + ;; + + netbsd*) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + archive_cmds_CXX='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' + wlarc= + hardcode_libdir_flag_spec_CXX='-R$libdir' + hardcode_direct_CXX=yes + hardcode_shlibpath_var_CXX=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*) + ld_shlibs_CXX=yes + ;; + + openbsd2*) + # C++ shared libraries are fairly broken + ld_shlibs_CXX=no + ;; + + openbsd*) + if test -f /usr/libexec/ld.so; then + hardcode_direct_CXX=yes + hardcode_shlibpath_var_CXX=no + hardcode_direct_absolute_CXX=yes + archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' + hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' + if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib' + export_dynamic_flag_spec_CXX='${wl}-E' + whole_archive_flag_spec_CXX="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + fi + output_verbose_link_cmd=func_echo_all + else + ld_shlibs_CXX=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. + archive_cmds_CXX='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' + + hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' + hardcode_libdir_separator_CXX=: + + # Archives containing C++ object files must be created using + # the KAI C++ compiler. + case $host in + osf3*) old_archive_cmds_CXX='$CC -Bstatic -o $oldlib $oldobjs' ;; + *) old_archive_cmds_CXX='$CC -o $oldlib $oldobjs' ;; + esac + ;; + RCC*) + # Rational C++ 2.4.1 + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + cxx*) + case $host in + osf3*) + allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*' + archive_cmds_CXX='$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' + hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' + ;; + *) + allow_undefined_flag_CXX=' -expect_unresolved \*' + archive_cmds_CXX='$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' + archive_expsym_cmds_CXX='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' + hardcode_libdir_flag_spec_CXX='-rpath $libdir' + ;; + esac + + hardcode_libdir_separator_CXX=: + + # 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 + allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*' + case $host in + osf3*) + archive_cmds_CXX='$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' + ;; + *) + archive_cmds_CXX='$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 + + hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' + hardcode_libdir_separator_CXX=: + + # 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 + ld_shlibs_CXX=no + fi + ;; + esac + ;; + + psos*) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + + sunos4*) + case $cc_basename in + CC*) + # Sun C++ 4.x + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + lcc*) + # Lucid + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + *) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + esac + ;; + + solaris*) + case $cc_basename in + CC* | sunCC*) + # Sun C++ 4.2, 5.x and Centerline C++ + archive_cmds_need_lc_CXX=yes + no_undefined_flag_CXX=' -zdefs' + archive_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + archive_expsym_cmds_CXX='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' + + hardcode_libdir_flag_spec_CXX='-R$libdir' + hardcode_shlibpath_var_CXX=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?) + whole_archive_flag_spec_CXX='-z allextract$convenience -z defaultextract' + ;; + esac + link_all_deplibs_CXX=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. + old_archive_cmds_CXX='$CC -xar -o $oldlib $oldobjs' + ;; + gcx*) + # Green Hills C++ Compiler + archive_cmds_CXX='$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. + old_archive_cmds_CXX='$CC $LDFLAGS -archive -o $oldlib $oldobjs' + ;; + *) + # GNU C++ compiler with Solaris linker + if test "$GXX" = yes && test "$with_gnu_ld" = no; then + no_undefined_flag_CXX=' ${wl}-z ${wl}defs' + if $CC --version | $GREP -v '^2\.7' > /dev/null; then + archive_cmds_CXX='$CC -shared $pic_flag -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + archive_expsym_cmds_CXX='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. + archive_cmds_CXX='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + archive_expsym_cmds_CXX='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 + + hardcode_libdir_flag_spec_CXX='${wl}-R $wl$libdir' + case $host_os in + solaris2.[0-5] | solaris2.[0-5].*) ;; + *) + whole_archive_flag_spec_CXX='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' + ;; + esac + fi + ;; + esac + ;; + + sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) + no_undefined_flag_CXX='${wl}-z,text' + archive_cmds_need_lc_CXX=no + hardcode_shlibpath_var_CXX=no + runpath_var='LD_RUN_PATH' + + case $cc_basename in + CC*) + archive_cmds_CXX='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds_CXX='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + *) + archive_cmds_CXX='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds_CXX='$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. + no_undefined_flag_CXX='${wl}-z,text' + allow_undefined_flag_CXX='${wl}-z,nodefs' + archive_cmds_need_lc_CXX=no + hardcode_shlibpath_var_CXX=no + hardcode_libdir_flag_spec_CXX='${wl}-R,$libdir' + hardcode_libdir_separator_CXX=':' + link_all_deplibs_CXX=yes + export_dynamic_flag_spec_CXX='${wl}-Bexport' + runpath_var='LD_RUN_PATH' + + case $cc_basename in + CC*) + archive_cmds_CXX='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds_CXX='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + old_archive_cmds_CXX='$CC -Tprelink_objects $oldobjs~ + '"$old_archive_cmds_CXX" + reload_cmds_CXX='$CC -Tprelink_objects $reload_objs~ + '"$reload_cmds_CXX" + ;; + *) + archive_cmds_CXX='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds_CXX='$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 + ld_shlibs_CXX=no + ;; + *) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + esac + ;; + + vxworks*) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + + *) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + esac + + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs_CXX" >&5 +$as_echo "$ld_shlibs_CXX" >&6; } + test "$ld_shlibs_CXX" = no && can_build_shared=no + + GCC_CXX="$GXX" + LD_CXX="$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... + # Dependencies to place before and after the object being linked: +predep_objects_CXX= +postdep_objects_CXX= +predeps_CXX= +postdeps_CXX= +compiler_lib_search_path_CXX= + +cat > conftest.$ac_ext <<_LT_EOF +class Foo +{ +public: + Foo (void) { a = 0; } +private: + int a; +}; +_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 + +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 + # 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 "$compiler_lib_search_path_CXX"; then + compiler_lib_search_path_CXX="${prev}${p}" + else + compiler_lib_search_path_CXX="${compiler_lib_search_path_CXX} ${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 "$postdeps_CXX"; then + postdeps_CXX="${prev}${p}" + else + postdeps_CXX="${postdeps_CXX} ${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 "$predep_objects_CXX"; then + predep_objects_CXX="$p" + else + predep_objects_CXX="$predep_objects_CXX $p" + fi + else + if test -z "$postdep_objects_CXX"; then + postdep_objects_CXX="$p" + else + postdep_objects_CXX="$postdep_objects_CXX $p" + fi + fi + ;; + + *) ;; # Ignore the rest. + + esac + done + + # Clean up. + rm -f a.out a.exe +else + echo "libtool.m4: error: problem compiling CXX test program" +fi + +$RM -f confest.$objext +CFLAGS=$_lt_libdeps_save_CFLAGS + +# PORTME: override above test on systems where it is broken +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. + predep_objects_CXX= + postdep_objects_CXX= + postdeps_CXX= + ;; + +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 + postdeps_CXX='-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 + postdeps_CXX='-library=Cstd -library=Crun' + fi + ;; + esac + ;; +esac + + +case " $postdeps_CXX " in +*" -lc "*) archive_cmds_need_lc_CXX=no ;; +esac + compiler_lib_search_dirs_CXX= +if test -n "${compiler_lib_search_path_CXX}"; then + compiler_lib_search_dirs_CXX=`echo " ${compiler_lib_search_path_CXX}" | ${SED} -e 's! -L! !g' -e 's!^ !!'` +fi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + lt_prog_compiler_wl_CXX= +lt_prog_compiler_pic_CXX= +lt_prog_compiler_static_CXX= + + + # C++ specific cases for pic, static, wl, etc. + if test "$GXX" = yes; then + lt_prog_compiler_wl_CXX='-Wl,' + lt_prog_compiler_static_CXX='-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_CXX='-Bstatic' + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + lt_prog_compiler_pic_CXX='-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_CXX='-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 + lt_prog_compiler_pic_CXX='-DDLL_EXPORT' + ;; + darwin* | rhapsody*) + # PIC is the default on this platform + # Common symbols not allowed in MH_DYLIB files + lt_prog_compiler_pic_CXX='-fno-common' + ;; + *djgpp*) + # DJGPP does not support shared libraries at all + lt_prog_compiler_pic_CXX= + ;; + haiku*) + # PIC is the default for Haiku. + # The "-static" flag exists, but is broken. + lt_prog_compiler_static_CXX= + ;; + 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_prog_compiler_pic_CXX=-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_prog_compiler_pic_CXX='-fPIC' + ;; + esac + ;; + *qnx* | *nto*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + lt_prog_compiler_pic_CXX='-fPIC -shared' + ;; + *) + lt_prog_compiler_pic_CXX='-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_prog_compiler_static_CXX='-Bstatic' + else + lt_prog_compiler_static_CXX='-bnso -bI:/lib/syscalls.exp' + fi + ;; + chorus*) + case $cc_basename in + cxch68*) + # Green Hills C++ Compiler + # _LT_TAGVAR(lt_prog_compiler_static, CXX)="--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). + lt_prog_compiler_pic_CXX='-DDLL_EXPORT' + ;; + dgux*) + case $cc_basename in + ec++*) + lt_prog_compiler_pic_CXX='-KPIC' + ;; + ghcx*) + # Green Hills C++ Compiler + lt_prog_compiler_pic_CXX='-pic' + ;; + *) + ;; + esac + ;; + freebsd* | dragonfly*) + # FreeBSD uses GNU C++ + ;; + hpux9* | hpux10* | hpux11*) + case $cc_basename in + CC*) + lt_prog_compiler_wl_CXX='-Wl,' + lt_prog_compiler_static_CXX='${wl}-a ${wl}archive' + if test "$host_cpu" != ia64; then + lt_prog_compiler_pic_CXX='+Z' + fi + ;; + aCC*) + lt_prog_compiler_wl_CXX='-Wl,' + lt_prog_compiler_static_CXX='${wl}-a ${wl}archive' + case $host_cpu in + hppa*64*|ia64*) + # +Z the default + ;; + *) + lt_prog_compiler_pic_CXX='+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_prog_compiler_wl_CXX='-Wl,' + lt_prog_compiler_static_CXX='-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_prog_compiler_wl_CXX='--backend -Wl,' + lt_prog_compiler_pic_CXX='-fPIC' + ;; + ecpc* ) + # old Intel C++ for x86_64 which still supported -KPIC. + lt_prog_compiler_wl_CXX='-Wl,' + lt_prog_compiler_pic_CXX='-KPIC' + lt_prog_compiler_static_CXX='-static' + ;; + icpc* ) + # Intel C++, used to be incompatible with GCC. + # ICC 10 doesn't accept -KPIC any more. + lt_prog_compiler_wl_CXX='-Wl,' + lt_prog_compiler_pic_CXX='-fPIC' + lt_prog_compiler_static_CXX='-static' + ;; + pgCC* | pgcpp*) + # Portland Group C++ compiler + lt_prog_compiler_wl_CXX='-Wl,' + lt_prog_compiler_pic_CXX='-fpic' + lt_prog_compiler_static_CXX='-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_prog_compiler_pic_CXX= + lt_prog_compiler_static_CXX='-non_shared' + ;; + xlc* | xlC* | bgxl[cC]* | mpixl[cC]*) + # IBM XL 8.0, 9.0 on PPC and BlueGene + lt_prog_compiler_wl_CXX='-Wl,' + lt_prog_compiler_pic_CXX='-qpic' + lt_prog_compiler_static_CXX='-qstaticlink' + ;; + *) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) + # Sun C++ 5.9 + lt_prog_compiler_pic_CXX='-KPIC' + lt_prog_compiler_static_CXX='-Bstatic' + lt_prog_compiler_wl_CXX='-Qoption ld ' + ;; + esac + ;; + esac + ;; + lynxos*) + ;; + m88k*) + ;; + mvs*) + case $cc_basename in + cxx*) + lt_prog_compiler_pic_CXX='-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_prog_compiler_pic_CXX='-fPIC -shared' + ;; + osf3* | osf4* | osf5*) + case $cc_basename in + KCC*) + lt_prog_compiler_wl_CXX='--backend -Wl,' + ;; + RCC*) + # Rational C++ 2.4.1 + lt_prog_compiler_pic_CXX='-pic' + ;; + cxx*) + # Digital/Compaq C++ + lt_prog_compiler_wl_CXX='-Wl,' + # Make sure the PIC flag is empty. It appears that all Alpha + # Linux and Compaq Tru64 Unix objects are PIC. + lt_prog_compiler_pic_CXX= + lt_prog_compiler_static_CXX='-non_shared' + ;; + *) + ;; + esac + ;; + psos*) + ;; + solaris*) + case $cc_basename in + CC* | sunCC*) + # Sun C++ 4.2, 5.x and Centerline C++ + lt_prog_compiler_pic_CXX='-KPIC' + lt_prog_compiler_static_CXX='-Bstatic' + lt_prog_compiler_wl_CXX='-Qoption ld ' + ;; + gcx*) + # Green Hills C++ Compiler + lt_prog_compiler_pic_CXX='-PIC' + ;; + *) + ;; + esac + ;; + sunos4*) + case $cc_basename in + CC*) + # Sun C++ 4.x + lt_prog_compiler_pic_CXX='-pic' + lt_prog_compiler_static_CXX='-Bstatic' + ;; + lcc*) + # Lucid + lt_prog_compiler_pic_CXX='-pic' + ;; + *) + ;; + esac + ;; + sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) + case $cc_basename in + CC*) + lt_prog_compiler_wl_CXX='-Wl,' + lt_prog_compiler_pic_CXX='-KPIC' + lt_prog_compiler_static_CXX='-Bstatic' + ;; + esac + ;; + tandem*) + case $cc_basename in + NCC*) + # NonStop-UX NCC 3.20 + lt_prog_compiler_pic_CXX='-KPIC' + ;; + *) + ;; + esac + ;; + vxworks*) + ;; + *) + lt_prog_compiler_can_build_shared_CXX=no + ;; + esac + fi + +case $host_os in + # For platforms which do not support PIC, -DPIC is meaningless: + *djgpp*) + lt_prog_compiler_pic_CXX= + ;; + *) + lt_prog_compiler_pic_CXX="$lt_prog_compiler_pic_CXX -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_CXX+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_pic_CXX=$lt_prog_compiler_pic_CXX +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_CXX" >&5 +$as_echo "$lt_cv_prog_compiler_pic_CXX" >&6; } +lt_prog_compiler_pic_CXX=$lt_cv_prog_compiler_pic_CXX + +# +# Check to make sure the PIC flag actually works. +# +if test -n "$lt_prog_compiler_pic_CXX"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works" >&5 +$as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works... " >&6; } +if ${lt_cv_prog_compiler_pic_works_CXX+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_pic_works_CXX=no + ac_outfile=conftest.$ac_objext + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + lt_compiler_flag="$lt_prog_compiler_pic_CXX -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_CXX=yes + fi + fi + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works_CXX" >&5 +$as_echo "$lt_cv_prog_compiler_pic_works_CXX" >&6; } + +if test x"$lt_cv_prog_compiler_pic_works_CXX" = xyes; then + case $lt_prog_compiler_pic_CXX in + "" | " "*) ;; + *) lt_prog_compiler_pic_CXX=" $lt_prog_compiler_pic_CXX" ;; + esac +else + lt_prog_compiler_pic_CXX= + lt_prog_compiler_can_build_shared_CXX=no +fi + +fi + + + + + +# +# Check to make sure the static flag actually works. +# +wl=$lt_prog_compiler_wl_CXX eval lt_tmp_static_flag=\"$lt_prog_compiler_static_CXX\" +{ $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_CXX+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_static_works_CXX=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_CXX=yes + fi + else + lt_cv_prog_compiler_static_works_CXX=yes + fi + fi + $RM -r conftest* + LDFLAGS="$save_LDFLAGS" + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works_CXX" >&5 +$as_echo "$lt_cv_prog_compiler_static_works_CXX" >&6; } + +if test x"$lt_cv_prog_compiler_static_works_CXX" = xyes; then + : +else + lt_prog_compiler_static_CXX= +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_CXX+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_c_o_CXX=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_CXX=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_CXX" >&5 +$as_echo "$lt_cv_prog_compiler_c_o_CXX" >&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_CXX+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_c_o_CXX=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_CXX=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_CXX" >&5 +$as_echo "$lt_cv_prog_compiler_c_o_CXX" >&6; } + + + + +hard_links="nottested" +if test "$lt_cv_prog_compiler_c_o_CXX" = 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; } + + export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + exclude_expsyms_CXX='_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 + export_symbols_cmds_CXX='$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_CXX='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + fi + ;; + pw32*) + export_symbols_cmds_CXX="$ltdll_cmds" + ;; + cygwin* | mingw* | cegcc*) + case $cc_basename in + cl*) + exclude_expsyms_CXX='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' + ;; + *) + export_symbols_cmds_CXX='$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_CXX='[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname' + ;; + esac + ;; + linux* | k*bsd*-gnu | gnu*) + link_all_deplibs_CXX=no + ;; + *) + export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + ;; + esac + +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs_CXX" >&5 +$as_echo "$ld_shlibs_CXX" >&6; } +test "$ld_shlibs_CXX" = no && can_build_shared=no + +with_gnu_ld_CXX=$with_gnu_ld + + + + + + +# +# Do we need to explicitly link libc? +# +case "x$archive_cmds_need_lc_CXX" in +x|xyes) + # Assume -lc should be added + archive_cmds_need_lc_CXX=yes + + if test "$enable_shared" = yes && test "$GCC" = yes; then + case $archive_cmds_CXX 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_CXX+:} 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_CXX + pic_flag=$lt_prog_compiler_pic_CXX + compiler_flags=-v + linker_flags=-v + verstring= + output_objdir=. + libname=conftest + lt_save_allow_undefined_flag=$allow_undefined_flag_CXX + allow_undefined_flag_CXX= + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$archive_cmds_CXX 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1\""; } >&5 + (eval $archive_cmds_CXX 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_CXX=no + else + lt_cv_archive_cmds_need_lc_CXX=yes + fi + allow_undefined_flag_CXX=$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_CXX" >&5 +$as_echo "$lt_cv_archive_cmds_need_lc_CXX" >&6; } + archive_cmds_need_lc_CXX=$lt_cv_archive_cmds_need_lc_CXX + ;; + 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_CXX\"; \ + LDFLAGS=\"\$LDFLAGS $hardcode_libdir_flag_spec_CXX\"" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_cxx_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_CXX= +if test -n "$hardcode_libdir_flag_spec_CXX" || + test -n "$runpath_var_CXX" || + test "X$hardcode_automatic_CXX" = "Xyes" ; then + + # We can hardcode non-existent directories. + if test "$hardcode_direct_CXX" != 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, CXX)" != no && + test "$hardcode_minus_L_CXX" != no; then + # Linking always hardcodes the temporary library directory. + hardcode_action_CXX=relink + else + # We can link without hardcoding, and we can hardcode nonexisting dirs. + hardcode_action_CXX=immediate + fi +else + # We cannot hardcode anything, or else we can only hardcode existing + # directories. + hardcode_action_CXX=unsupported +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action_CXX" >&5 +$as_echo "$hardcode_action_CXX" >&6; } + +if test "$hardcode_action_CXX" = relink || + test "$inherit_rpath_CXX" = 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" + + 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_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 +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 + +{ $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 + + +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=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 + + +# Checks for libraries. +ac_config_files="$ac_config_files src/Makefile include/Makefile Makefile" + + + +# Checks for header files. + +# Checks for typedefs, structures, and compiler characteristics. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for stdbool.h that conforms to C99" >&5 +$as_echo_n "checking for stdbool.h that conforms to C99... " >&6; } +if ${ac_cv_header_stdbool_h+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + + #include + #ifndef bool + "error: bool is not defined" + #endif + #ifndef false + "error: false is not defined" + #endif + #if false + "error: false is not 0" + #endif + #ifndef true + "error: true is not defined" + #endif + #if true != 1 + "error: true is not 1" + #endif + #ifndef __bool_true_false_are_defined + "error: __bool_true_false_are_defined is not defined" + #endif + + struct s { _Bool s: 1; _Bool t; } s; + + char a[true == 1 ? 1 : -1]; + char b[false == 0 ? 1 : -1]; + char c[__bool_true_false_are_defined == 1 ? 1 : -1]; + char d[(bool) 0.5 == true ? 1 : -1]; + /* See body of main program for 'e'. */ + char f[(_Bool) 0.0 == false ? 1 : -1]; + char g[true]; + char h[sizeof (_Bool)]; + char i[sizeof s.t]; + enum { j = false, k = true, l = false * true, m = true * 256 }; + /* The following fails for + HP aC++/ANSI C B3910B A.05.55 [Dec 04 2003]. */ + _Bool n[m]; + char o[sizeof n == m * sizeof n[0] ? 1 : -1]; + char p[-1 - (_Bool) 0 < 0 && -1 - (bool) 0 < 0 ? 1 : -1]; + /* Catch a bug in an HP-UX C compiler. See + http://gcc.gnu.org/ml/gcc-patches/2003-12/msg02303.html + http://lists.gnu.org/archive/html/bug-coreutils/2005-11/msg00161.html + */ + _Bool q = true; + _Bool *pq = &q; + +int +main () +{ + + bool e = &s; + *pq |= q; + *pq |= ! q; + /* Refer to every declared value, to avoid compiler optimizations. */ + return (!a + !b + !c + !d + !e + !f + !g + !h + !i + !!j + !k + !!l + + !m + !n + !o + !p + !q + !pq); + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_header_stdbool_h=yes +else + ac_cv_header_stdbool_h=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdbool_h" >&5 +$as_echo "$ac_cv_header_stdbool_h" >&6; } + ac_fn_c_check_type "$LINENO" "_Bool" "ac_cv_type__Bool" "$ac_includes_default" +if test "x$ac_cv_type__Bool" = xyes; then : + +cat >>confdefs.h <<_ACEOF +#define HAVE__BOOL 1 +_ACEOF + + +fi + + +if test $ac_cv_header_stdbool_h = yes; then + +$as_echo "#define HAVE_STDBOOL_H 1" >>confdefs.h + +fi + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for inline" >&5 +$as_echo_n "checking for inline... " >&6; } +if ${ac_cv_c_inline+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_cv_c_inline=no +for ac_kw in inline __inline__ __inline; do + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#ifndef __cplusplus +typedef int foo_t; +static $ac_kw foo_t static_foo () {return 0; } +$ac_kw foo_t foo () {return 0; } +#endif + +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_c_inline=$ac_kw +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + test "$ac_cv_c_inline" != no && break +done + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_inline" >&5 +$as_echo "$ac_cv_c_inline" >&6; } + +case $ac_cv_c_inline in + inline | yes) ;; + *) + case $ac_cv_c_inline in + no) ac_val=;; + *) ac_val=$ac_cv_c_inline;; + esac + cat >>confdefs.h <<_ACEOF +#ifndef __cplusplus +#define inline $ac_val +#endif +_ACEOF + ;; +esac + + +# Checks for library functions. + +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}' + +DEFS=-DHAVE_CONFIG_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 "${DX_COND_doc_TRUE}" && test -z "${DX_COND_doc_FALSE}"; then + as_fn_error $? "conditional \"DX_COND_doc\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${DX_COND_doc_TRUE}" && test -z "${DX_COND_doc_FALSE}"; then + as_fn_error $? "conditional \"DX_COND_doc\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${DX_COND_dot_TRUE}" && test -z "${DX_COND_dot_FALSE}"; then + as_fn_error $? "conditional \"DX_COND_dot\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${DX_COND_dot_TRUE}" && test -z "${DX_COND_dot_FALSE}"; then + as_fn_error $? "conditional \"DX_COND_dot\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${DX_COND_man_TRUE}" && test -z "${DX_COND_man_FALSE}"; then + as_fn_error $? "conditional \"DX_COND_man\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${DX_COND_man_TRUE}" && test -z "${DX_COND_man_FALSE}"; then + as_fn_error $? "conditional \"DX_COND_man\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${DX_COND_rtf_TRUE}" && test -z "${DX_COND_rtf_FALSE}"; then + as_fn_error $? "conditional \"DX_COND_rtf\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${DX_COND_rtf_TRUE}" && test -z "${DX_COND_rtf_FALSE}"; then + as_fn_error $? "conditional \"DX_COND_rtf\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${DX_COND_xml_TRUE}" && test -z "${DX_COND_xml_FALSE}"; then + as_fn_error $? "conditional \"DX_COND_xml\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${DX_COND_xml_TRUE}" && test -z "${DX_COND_xml_FALSE}"; then + as_fn_error $? "conditional \"DX_COND_xml\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${DX_COND_chm_TRUE}" && test -z "${DX_COND_chm_FALSE}"; then + as_fn_error $? "conditional \"DX_COND_chm\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${DX_COND_chm_TRUE}" && test -z "${DX_COND_chm_FALSE}"; then + as_fn_error $? "conditional \"DX_COND_chm\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${DX_COND_chi_TRUE}" && test -z "${DX_COND_chi_FALSE}"; then + as_fn_error $? "conditional \"DX_COND_chi\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${DX_COND_chi_TRUE}" && test -z "${DX_COND_chi_FALSE}"; then + as_fn_error $? "conditional \"DX_COND_chi\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${DX_COND_html_TRUE}" && test -z "${DX_COND_html_FALSE}"; then + as_fn_error $? "conditional \"DX_COND_html\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${DX_COND_html_TRUE}" && test -z "${DX_COND_html_FALSE}"; then + as_fn_error $? "conditional \"DX_COND_html\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${DX_COND_ps_TRUE}" && test -z "${DX_COND_ps_FALSE}"; then + as_fn_error $? "conditional \"DX_COND_ps\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${DX_COND_ps_TRUE}" && test -z "${DX_COND_ps_FALSE}"; then + as_fn_error $? "conditional \"DX_COND_ps\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${DX_COND_pdf_TRUE}" && test -z "${DX_COND_pdf_FALSE}"; then + as_fn_error $? "conditional \"DX_COND_pdf\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${DX_COND_pdf_TRUE}" && test -z "${DX_COND_pdf_FALSE}"; then + as_fn_error $? "conditional \"DX_COND_pdf\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${DX_COND_latex_TRUE}" && test -z "${DX_COND_latex_FALSE}"; then + as_fn_error $? "conditional \"DX_COND_latex\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${DX_COND_latex_TRUE}" && test -z "${DX_COND_latex_FALSE}"; then + as_fn_error $? "conditional \"DX_COND_latex\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${am__fastdepCXX_TRUE}" && test -z "${am__fastdepCXX_FALSE}"; then + as_fn_error $? "conditional \"am__fastdepCXX\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then + as_fn_error $? "conditional \"am__fastdepCC\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi + +: "${CONFIG_STATUS=./config.status}" +ac_write_fail=0 +ac_clean_files_save=$ac_clean_files +ac_clean_files="$ac_clean_files $CONFIG_STATUS" +{ $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 +$as_echo "$as_me: creating $CONFIG_STATUS" >&6;} +as_write_fail=0 +cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 +#! $SHELL +# Generated by $as_me. +# Run this file to recreate the current configuration. +# Compiler output produced by configure, useful for debugging +# configure, is in config.log if it exists. + +debug=false +ac_cs_recheck=false +ac_cs_silent=false + +SHELL=\${CONFIG_SHELL-$SHELL} +export SHELL +_ASEOF +cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1 +## -------------------- ## +## M4sh Initialization. ## +## -------------------- ## + +# Be more Bourne compatible +DUALCASE=1; export DUALCASE # for MKS sh +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : + emulate sh + NULLCMD=: + # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in #( + *posix*) : + set -o posix ;; #( + *) : + ;; +esac +fi + + +as_nl=' +' +export as_nl +# Printing a long string crashes Solaris 7 /usr/bin/printf. +as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo +# Prefer a ksh shell builtin over an external printf program on Solaris, +# but without wasting forks for bash or zsh. +if test -z "$BASH_VERSION$ZSH_VERSION" \ + && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='print -r --' + as_echo_n='print -rn --' +elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='printf %s\n' + as_echo_n='printf %s' +else + if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then + as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' + as_echo_n='/usr/ucb/echo -n' + else + as_echo_body='eval expr "X$1" : "X\\(.*\\)"' + as_echo_n_body='eval + arg=$1; + case $arg in #( + *"$as_nl"*) + expr "X$arg" : "X\\(.*\\)$as_nl"; + arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; + esac; + expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" + ' + export as_echo_n_body + as_echo_n='sh -c $as_echo_n_body as_echo' + fi + export as_echo_body + as_echo='sh -c $as_echo_body as_echo' +fi + +# The user is always right. +if test "${PATH_SEPARATOR+set}" != set; then + PATH_SEPARATOR=: + (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { + (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || + PATH_SEPARATOR=';' + } +fi + + +# IFS +# We need space, tab and new line, in precisely that order. Quoting is +# there to prevent editors from complaining about space-tab. +# (If _AS_PATH_WALK were called with IFS unset, it would disable word +# splitting by setting IFS to empty value.) +IFS=" "" $as_nl" + +# Find who we are. Look in the path if we contain no directory separator. +as_myself= +case $0 in #(( + *[\\/]* ) as_myself=$0 ;; + *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break + done +IFS=$as_save_IFS + + ;; +esac +# We did not find ourselves, most probably we were run as `sh COMMAND' +# in which case we are not to be found in the path. +if test "x$as_myself" = x; then + as_myself=$0 +fi +if test ! -f "$as_myself"; then + $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 + exit 1 +fi + +# Unset variables that we do not need and which cause bugs (e.g. in +# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" +# suppresses any "Segmentation fault" message there. '((' could +# trigger a bug in pdksh 5.2.14. +for as_var in BASH_ENV ENV MAIL MAILPATH +do eval test x\${$as_var+set} = xset \ + && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : +done +PS1='$ ' +PS2='> ' +PS4='+ ' + +# NLS nuisances. +LC_ALL=C +export LC_ALL +LANGUAGE=C +export LANGUAGE + +# CDPATH. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + + +# as_fn_error STATUS ERROR [LINENO LOG_FD] +# ---------------------------------------- +# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are +# provided, also output the error to LOG_FD, referencing LINENO. Then exit the +# script with STATUS, using 1 if that was 0. +as_fn_error () +{ + as_status=$1; test $as_status -eq 0 && as_status=1 + if test "$4"; then + as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 + fi + $as_echo "$as_me: error: $2" >&2 + as_fn_exit $as_status +} # as_fn_error + + +# as_fn_set_status STATUS +# ----------------------- +# Set $? to STATUS, without forking. +as_fn_set_status () +{ + return $1 +} # as_fn_set_status + +# as_fn_exit STATUS +# ----------------- +# Exit the shell with STATUS, even in a "trap 0" or "set -e" context. +as_fn_exit () +{ + set +e + as_fn_set_status $1 + exit $1 +} # as_fn_exit + +# as_fn_unset VAR +# --------------- +# Portably unset VAR. +as_fn_unset () +{ + { eval $1=; unset $1;} +} +as_unset=as_fn_unset +# as_fn_append VAR VALUE +# ---------------------- +# Append the text in VALUE to the end of the definition contained in VAR. Take +# advantage of any shell optimizations that allow amortized linear growth over +# repeated appends, instead of the typical quadratic growth present in naive +# implementations. +if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : + eval 'as_fn_append () + { + eval $1+=\$2 + }' +else + as_fn_append () + { + eval $1=\$$1\$2 + } +fi # as_fn_append + +# as_fn_arith ARG... +# ------------------ +# Perform arithmetic evaluation on the ARGs, and store the result in the +# global $as_val. Take advantage of shells that can avoid forks. The arguments +# must be portable across $(()) and expr. +if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : + eval 'as_fn_arith () + { + as_val=$(( $* )) + }' +else + as_fn_arith () + { + as_val=`expr "$@" || test $? -eq 1` + } +fi # as_fn_arith + + +if expr a : '\(a\)' >/dev/null 2>&1 && + test "X`expr 00001 : '.*\(...\)'`" = X001; then + as_expr=expr +else + as_expr=false +fi + +if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then + as_basename=basename +else + as_basename=false +fi + +if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then + as_dirname=dirname +else + as_dirname=false +fi + +as_me=`$as_basename -- "$0" || +$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ + X"$0" : 'X\(//\)$' \| \ + X"$0" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X/"$0" | + sed '/^.*\/\([^/][^/]*\)\/*$/{ + s//\1/ + q + } + /^X\/\(\/\/\)$/{ + s//\1/ + q + } + /^X\/\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + +# Avoid depending upon Character Ranges. +as_cr_letters='abcdefghijklmnopqrstuvwxyz' +as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' +as_cr_Letters=$as_cr_letters$as_cr_LETTERS +as_cr_digits='0123456789' +as_cr_alnum=$as_cr_Letters$as_cr_digits + +ECHO_C= ECHO_N= ECHO_T= +case `echo -n x` in #((((( +-n*) + case `echo 'xy\c'` in + *c*) ECHO_T=' ';; # ECHO_T is single tab character. + xy) ECHO_C='\c';; + *) echo `echo ksh88 bug on AIX 6.1` > /dev/null + ECHO_T=' ';; + esac;; +*) + ECHO_N='-n';; +esac + +rm -f conf$$ conf$$.exe conf$$.file +if test -d conf$$.dir; then + rm -f conf$$.dir/conf$$.file +else + rm -f conf$$.dir + mkdir conf$$.dir 2>/dev/null +fi +if (echo >conf$$.file) 2>/dev/null; then + if ln -s conf$$.file conf$$ 2>/dev/null; then + as_ln_s='ln -s' + # ... but there are two gotchas: + # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. + # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. + # In both cases, we have to default to `cp -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 xplus-gno $as_me 1.0, 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 + +case $ac_config_headers in *" +"*) set x $ac_config_headers; shift; ac_config_headers=$*;; +esac + + +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +# Files that config.status was made for. +config_files="$ac_config_files" +config_headers="$ac_config_headers" +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 + --header=FILE[:TEMPLATE] + instantiate the configuration header FILE + +Configuration files: +$config_files + +Configuration headers: +$config_headers + +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="\\ +xplus-gno config.status 1.0 +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;; + --header | --heade | --head | --hea ) + $ac_shift + case $ac_optarg in + *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; + esac + as_fn_append CONFIG_HEADERS " '$ac_optarg'" + ac_need_defaults=false;; + --he | --h) + # Conflict between --help and --header + as_fn_error $? "ambiguous option: \`$1' +Try \`$0 --help' for more information.";; + --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"`' +compiler_lib_search_dirs='`$ECHO "$compiler_lib_search_dirs" | $SED "$delay_single_quote_subst"`' +predep_objects='`$ECHO "$predep_objects" | $SED "$delay_single_quote_subst"`' +postdep_objects='`$ECHO "$postdep_objects" | $SED "$delay_single_quote_subst"`' +predeps='`$ECHO "$predeps" | $SED "$delay_single_quote_subst"`' +postdeps='`$ECHO "$postdeps" | $SED "$delay_single_quote_subst"`' +compiler_lib_search_path='`$ECHO "$compiler_lib_search_path" | $SED "$delay_single_quote_subst"`' +LD_CXX='`$ECHO "$LD_CXX" | $SED "$delay_single_quote_subst"`' +reload_flag_CXX='`$ECHO "$reload_flag_CXX" | $SED "$delay_single_quote_subst"`' +reload_cmds_CXX='`$ECHO "$reload_cmds_CXX" | $SED "$delay_single_quote_subst"`' +old_archive_cmds_CXX='`$ECHO "$old_archive_cmds_CXX" | $SED "$delay_single_quote_subst"`' +compiler_CXX='`$ECHO "$compiler_CXX" | $SED "$delay_single_quote_subst"`' +GCC_CXX='`$ECHO "$GCC_CXX" | $SED "$delay_single_quote_subst"`' +lt_prog_compiler_no_builtin_flag_CXX='`$ECHO "$lt_prog_compiler_no_builtin_flag_CXX" | $SED "$delay_single_quote_subst"`' +lt_prog_compiler_pic_CXX='`$ECHO "$lt_prog_compiler_pic_CXX" | $SED "$delay_single_quote_subst"`' +lt_prog_compiler_wl_CXX='`$ECHO "$lt_prog_compiler_wl_CXX" | $SED "$delay_single_quote_subst"`' +lt_prog_compiler_static_CXX='`$ECHO "$lt_prog_compiler_static_CXX" | $SED "$delay_single_quote_subst"`' +lt_cv_prog_compiler_c_o_CXX='`$ECHO "$lt_cv_prog_compiler_c_o_CXX" | $SED "$delay_single_quote_subst"`' +archive_cmds_need_lc_CXX='`$ECHO "$archive_cmds_need_lc_CXX" | $SED "$delay_single_quote_subst"`' +enable_shared_with_static_runtimes_CXX='`$ECHO "$enable_shared_with_static_runtimes_CXX" | $SED "$delay_single_quote_subst"`' +export_dynamic_flag_spec_CXX='`$ECHO "$export_dynamic_flag_spec_CXX" | $SED "$delay_single_quote_subst"`' +whole_archive_flag_spec_CXX='`$ECHO "$whole_archive_flag_spec_CXX" | $SED "$delay_single_quote_subst"`' +compiler_needs_object_CXX='`$ECHO "$compiler_needs_object_CXX" | $SED "$delay_single_quote_subst"`' +old_archive_from_new_cmds_CXX='`$ECHO "$old_archive_from_new_cmds_CXX" | $SED "$delay_single_quote_subst"`' +old_archive_from_expsyms_cmds_CXX='`$ECHO "$old_archive_from_expsyms_cmds_CXX" | $SED "$delay_single_quote_subst"`' +archive_cmds_CXX='`$ECHO "$archive_cmds_CXX" | $SED "$delay_single_quote_subst"`' +archive_expsym_cmds_CXX='`$ECHO "$archive_expsym_cmds_CXX" | $SED "$delay_single_quote_subst"`' +module_cmds_CXX='`$ECHO "$module_cmds_CXX" | $SED "$delay_single_quote_subst"`' +module_expsym_cmds_CXX='`$ECHO "$module_expsym_cmds_CXX" | $SED "$delay_single_quote_subst"`' +with_gnu_ld_CXX='`$ECHO "$with_gnu_ld_CXX" | $SED "$delay_single_quote_subst"`' +allow_undefined_flag_CXX='`$ECHO "$allow_undefined_flag_CXX" | $SED "$delay_single_quote_subst"`' +no_undefined_flag_CXX='`$ECHO "$no_undefined_flag_CXX" | $SED "$delay_single_quote_subst"`' +hardcode_libdir_flag_spec_CXX='`$ECHO "$hardcode_libdir_flag_spec_CXX" | $SED "$delay_single_quote_subst"`' +hardcode_libdir_separator_CXX='`$ECHO "$hardcode_libdir_separator_CXX" | $SED "$delay_single_quote_subst"`' +hardcode_direct_CXX='`$ECHO "$hardcode_direct_CXX" | $SED "$delay_single_quote_subst"`' +hardcode_direct_absolute_CXX='`$ECHO "$hardcode_direct_absolute_CXX" | $SED "$delay_single_quote_subst"`' +hardcode_minus_L_CXX='`$ECHO "$hardcode_minus_L_CXX" | $SED "$delay_single_quote_subst"`' +hardcode_shlibpath_var_CXX='`$ECHO "$hardcode_shlibpath_var_CXX" | $SED "$delay_single_quote_subst"`' +hardcode_automatic_CXX='`$ECHO "$hardcode_automatic_CXX" | $SED "$delay_single_quote_subst"`' +inherit_rpath_CXX='`$ECHO "$inherit_rpath_CXX" | $SED "$delay_single_quote_subst"`' +link_all_deplibs_CXX='`$ECHO "$link_all_deplibs_CXX" | $SED "$delay_single_quote_subst"`' +always_export_symbols_CXX='`$ECHO "$always_export_symbols_CXX" | $SED "$delay_single_quote_subst"`' +export_symbols_cmds_CXX='`$ECHO "$export_symbols_cmds_CXX" | $SED "$delay_single_quote_subst"`' +exclude_expsyms_CXX='`$ECHO "$exclude_expsyms_CXX" | $SED "$delay_single_quote_subst"`' +include_expsyms_CXX='`$ECHO "$include_expsyms_CXX" | $SED "$delay_single_quote_subst"`' +prelink_cmds_CXX='`$ECHO "$prelink_cmds_CXX" | $SED "$delay_single_quote_subst"`' +postlink_cmds_CXX='`$ECHO "$postlink_cmds_CXX" | $SED "$delay_single_quote_subst"`' +file_list_spec_CXX='`$ECHO "$file_list_spec_CXX" | $SED "$delay_single_quote_subst"`' +hardcode_action_CXX='`$ECHO "$hardcode_action_CXX" | $SED "$delay_single_quote_subst"`' +compiler_lib_search_dirs_CXX='`$ECHO "$compiler_lib_search_dirs_CXX" | $SED "$delay_single_quote_subst"`' +predep_objects_CXX='`$ECHO "$predep_objects_CXX" | $SED "$delay_single_quote_subst"`' +postdep_objects_CXX='`$ECHO "$postdep_objects_CXX" | $SED "$delay_single_quote_subst"`' +predeps_CXX='`$ECHO "$predeps_CXX" | $SED "$delay_single_quote_subst"`' +postdeps_CXX='`$ECHO "$postdeps_CXX" | $SED "$delay_single_quote_subst"`' +compiler_lib_search_path_CXX='`$ECHO "$compiler_lib_search_path_CXX" | $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 \ +compiler_lib_search_dirs \ +predep_objects \ +postdep_objects \ +predeps \ +postdeps \ +compiler_lib_search_path \ +LD_CXX \ +reload_flag_CXX \ +compiler_CXX \ +lt_prog_compiler_no_builtin_flag_CXX \ +lt_prog_compiler_pic_CXX \ +lt_prog_compiler_wl_CXX \ +lt_prog_compiler_static_CXX \ +lt_cv_prog_compiler_c_o_CXX \ +export_dynamic_flag_spec_CXX \ +whole_archive_flag_spec_CXX \ +compiler_needs_object_CXX \ +with_gnu_ld_CXX \ +allow_undefined_flag_CXX \ +no_undefined_flag_CXX \ +hardcode_libdir_flag_spec_CXX \ +hardcode_libdir_separator_CXX \ +exclude_expsyms_CXX \ +include_expsyms_CXX \ +file_list_spec_CXX \ +compiler_lib_search_dirs_CXX \ +predep_objects_CXX \ +postdep_objects_CXX \ +predeps_CXX \ +postdeps_CXX \ +compiler_lib_search_path_CXX; 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_CXX \ +old_archive_cmds_CXX \ +old_archive_from_new_cmds_CXX \ +old_archive_from_expsyms_cmds_CXX \ +archive_cmds_CXX \ +archive_expsym_cmds_CXX \ +module_cmds_CXX \ +module_expsym_cmds_CXX \ +export_symbols_cmds_CXX \ +prelink_cmds_CXX \ +postlink_cmds_CXX; 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 + "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;; + "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; + "libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;; + "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;; + "include/Makefile") CONFIG_FILES="$CONFIG_FILES include/Makefile" ;; + "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; + + *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; + esac +done + + +# If the user did not use the arguments to specify the items to instantiate, +# then the envvar interface is used. Set only those that are not. +# We use the long form for the default assignment because of an extremely +# bizarre bug on SunOS 4.1.3. +if $ac_need_defaults; then + test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files + test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers + 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" + +# Set up the scripts for CONFIG_HEADERS section. +# No need to generate them if there are no CONFIG_HEADERS. +# This happens for instance with `./config.status Makefile'. +if test -n "$CONFIG_HEADERS"; then +cat >"$ac_tmp/defines.awk" <<\_ACAWK || +BEGIN { +_ACEOF + +# Transform confdefs.h into an awk script `defines.awk', embedded as +# here-document in config.status, that substitutes the proper values into +# config.h.in to produce config.h. + +# Create a delimiter string that does not exist in confdefs.h, to ease +# handling of long lines. +ac_delim='%!_!# ' +for ac_last_try in false false :; do + ac_tt=`sed -n "/$ac_delim/p" confdefs.h` + if test -z "$ac_tt"; then + break + elif $ac_last_try; then + as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5 + else + ac_delim="$ac_delim!$ac_delim _$ac_delim!! " + fi +done + +# For the awk script, D is an array of macro values keyed by name, +# likewise P contains macro parameters if any. Preserve backslash +# newline sequences. + +ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* +sed -n ' +s/.\{148\}/&'"$ac_delim"'/g +t rset +:rset +s/^[ ]*#[ ]*define[ ][ ]*/ / +t def +d +:def +s/\\$// +t bsnl +s/["\\]/\\&/g +s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ +D["\1"]=" \3"/p +s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2"/p +d +:bsnl +s/["\\]/\\&/g +s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ +D["\1"]=" \3\\\\\\n"\\/p +t cont +s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p +t cont +d +:cont +n +s/.\{148\}/&'"$ac_delim"'/g +t clear +:clear +s/\\$// +t bsnlc +s/["\\]/\\&/g; s/^/"/; s/$/"/p +d +:bsnlc +s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p +b cont +' >$CONFIG_STATUS || ac_write_fail=1 + +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 + for (key in D) D_is_set[key] = 1 + FS = "" +} +/^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ { + line = \$ 0 + split(line, arg, " ") + if (arg[1] == "#") { + defundef = arg[2] + mac1 = arg[3] + } else { + defundef = substr(arg[1], 2) + mac1 = arg[2] + } + split(mac1, mac2, "(") #) + macro = mac2[1] + prefix = substr(line, 1, index(line, defundef) - 1) + if (D_is_set[macro]) { + # Preserve the white space surrounding the "#". + print prefix "define", macro P[macro] D[macro] + next + } else { + # Replace #undef with comments. This is necessary, for example, + # in the case of _POSIX_SOURCE, which is predefined and required + # on some systems where configure will not decide to define it. + if (defundef == "undef") { + print "/*", prefix defundef, macro, "*/" + next + } + } +} +{ print } +_ACAWK +_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 + as_fn_error $? "could not setup config headers machinery" "$LINENO" 5 +fi # test -n "$CONFIG_HEADERS" + + +eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :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 + ;; + :H) + # + # CONFIG_HEADER + # + if test x"$ac_file" != x-; then + { + $as_echo "/* $configure_input */" \ + && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" + } >"$ac_tmp/config.h" \ + || as_fn_error $? "could not create $ac_file" "$LINENO" 5 + if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then + { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 +$as_echo "$as_me: $ac_file is unchanged" >&6;} + else + rm -f "$ac_file" + mv "$ac_tmp/config.h" "$ac_file" \ + || as_fn_error $? "could not create $ac_file" "$LINENO" 5 + fi + else + $as_echo "/* $configure_input */" \ + && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \ + || as_fn_error $? "could not create -" "$LINENO" 5 + fi +# Compute "$ac_file"'s index in $config_headers. +_am_arg="$ac_file" +_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" || +$as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$_am_arg" : 'X\(//\)[^/]' \| \ + X"$_am_arg" : 'X\(//\)$' \| \ + X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$_am_arg" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'`/stamp-h$_am_stamp_count + ;; + + :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="CXX " + +# ### 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 + +# The directories searched by this compiler when creating a shared library. +compiler_lib_search_dirs=$lt_compiler_lib_search_dirs + +# Dependencies to place before and after the objects being linked to +# create a shared library. +predep_objects=$lt_predep_objects +postdep_objects=$lt_postdep_objects +predeps=$lt_predeps +postdeps=$lt_postdeps + +# The library search path used internally by the compiler when linking +# a shared library. +compiler_lib_search_path=$lt_compiler_lib_search_path + +# ### 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: CXX + +# The linker used to build libraries. +LD=$lt_LD_CXX + +# How to create reloadable object files. +reload_flag=$lt_reload_flag_CXX +reload_cmds=$lt_reload_cmds_CXX + +# Commands used to build an old-style archive. +old_archive_cmds=$lt_old_archive_cmds_CXX + +# A language specific compiler. +CC=$lt_compiler_CXX + +# Is the compiler the GNU compiler? +with_gcc=$GCC_CXX + +# Compiler flag to turn off builtin functions. +no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_CXX + +# Additional compiler flags for building library objects. +pic_flag=$lt_lt_prog_compiler_pic_CXX + +# How to pass a linker flag through the compiler. +wl=$lt_lt_prog_compiler_wl_CXX + +# Compiler flag to prevent dynamic linking. +link_static_flag=$lt_lt_prog_compiler_static_CXX + +# Does compiler simultaneously support -c and -o options? +compiler_c_o=$lt_lt_cv_prog_compiler_c_o_CXX + +# Whether or not to add -lc for building shared libraries. +build_libtool_need_lc=$archive_cmds_need_lc_CXX + +# Whether or not to disallow shared libs when runtime libs are static. +allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_CXX + +# Compiler flag to allow reflexive dlopens. +export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_CXX + +# Compiler flag to generate shared objects directly from archives. +whole_archive_flag_spec=$lt_whole_archive_flag_spec_CXX + +# Whether the compiler copes with passing no objects directly. +compiler_needs_object=$lt_compiler_needs_object_CXX + +# Create an old-style archive from a shared archive. +old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_CXX + +# Create a temporary old-style archive to link instead of a shared archive. +old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_CXX + +# Commands used to build a shared archive. +archive_cmds=$lt_archive_cmds_CXX +archive_expsym_cmds=$lt_archive_expsym_cmds_CXX + +# Commands used to build a loadable module if different from building +# a shared archive. +module_cmds=$lt_module_cmds_CXX +module_expsym_cmds=$lt_module_expsym_cmds_CXX + +# Whether we are building with GNU ld or not. +with_gnu_ld=$lt_with_gnu_ld_CXX + +# Flag that allows shared libraries with undefined symbols to be built. +allow_undefined_flag=$lt_allow_undefined_flag_CXX + +# Flag that enforces no undefined symbols. +no_undefined_flag=$lt_no_undefined_flag_CXX + +# 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_CXX + +# Whether we need a single "-rpath" flag with a separated argument. +hardcode_libdir_separator=$lt_hardcode_libdir_separator_CXX + +# Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes +# DIR into the resulting binary. +hardcode_direct=$hardcode_direct_CXX + +# 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_CXX + +# Set to "yes" if using the -LDIR flag during linking hardcodes DIR +# into the resulting binary. +hardcode_minus_L=$hardcode_minus_L_CXX + +# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR +# into the resulting binary. +hardcode_shlibpath_var=$hardcode_shlibpath_var_CXX + +# 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_CXX + +# Set to yes if linker adds runtime paths of dependent libraries +# to runtime path list. +inherit_rpath=$inherit_rpath_CXX + +# Whether libtool must link a program against all its dependency libraries. +link_all_deplibs=$link_all_deplibs_CXX + +# Set to "yes" if exported symbols are required. +always_export_symbols=$always_export_symbols_CXX + +# The commands to list exported symbols. +export_symbols_cmds=$lt_export_symbols_cmds_CXX + +# Symbols that should not be listed in the preloaded symbols. +exclude_expsyms=$lt_exclude_expsyms_CXX + +# Symbols that must always be exported. +include_expsyms=$lt_include_expsyms_CXX + +# Commands necessary for linking programs (against libraries) with templates. +prelink_cmds=$lt_prelink_cmds_CXX + +# Commands necessary for finishing linking programs. +postlink_cmds=$lt_postlink_cmds_CXX + +# Specify filename containing input files. +file_list_spec=$lt_file_list_spec_CXX + +# How to hardcode a shared library path into an executable. +hardcode_action=$hardcode_action_CXX + +# The directories searched by this compiler when creating a shared library. +compiler_lib_search_dirs=$lt_compiler_lib_search_dirs_CXX + +# Dependencies to place before and after the objects being linked to +# create a shared library. +predep_objects=$lt_predep_objects_CXX +postdep_objects=$lt_postdep_objects_CXX +predeps=$lt_predeps_CXX +postdeps=$lt_postdeps_CXX + +# The library search path used internally by the compiler when linking +# a shared library. +compiler_lib_search_path=$lt_compiler_lib_search_path_CXX + +# ### END LIBTOOL TAG CONFIG: CXX +_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 +if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 +$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} +fi + diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..d566bf5 --- /dev/null +++ b/configure.ac @@ -0,0 +1,45 @@ +# -*- Autoconf -*- +# Process this file with autoconf to produce a configure script. + +AC_PREREQ([2.63]) +AC_INIT([xplus-gno], [1.0], [BUG-REPORT-ADDRESS]) +AC_CONFIG_SRCDIR([main.cpp]) +#AM_INIT_AUTOMAKE +AM_INIT_AUTOMAKE([subdir-objects]) +AC_CONFIG_HEADERS([config.h]) +#AC_PREFIX_DEFAULT(duck) +AC_PROG_LIBTOOL +AC_CONFIG_MACRO_DIR([m4]) + +###################################################################### +# DOXYGEN SUPPORT +###################################################################### +DX_HTML_FEATURE(ON) +DX_CHM_FEATURE(OFF) +DX_CHI_FEATURE(OFF) +DX_MAN_FEATURE(OFF) +DX_RTF_FEATURE(OFF) +DX_XML_FEATURE(OFF) +DX_PDF_FEATURE(OFF) +DX_PS_FEATURE(OFF) +DX_INIT_DOXYGEN([$PACKAGE_NAME],[doxygen.cfg],[doc]) +###################################################################### + +# Checks for programs. +AC_PROG_CXX +AC_PROG_CC +AC_PROG_CPP + +# Checks for libraries. +AC_CONFIG_FILES([src/Makefile include/Makefile Makefile]) + + +# Checks for header files. + +# Checks for typedefs, structures, and compiler characteristics. +AC_HEADER_STDBOOL +AC_C_INLINE + +# Checks for library functions. + +AC_OUTPUT diff --git a/depcomp b/depcomp new file mode 100755 index 0000000..4ebd5b3 --- /dev/null +++ b/depcomp @@ -0,0 +1,791 @@ +#! /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: diff --git a/doc/doxygen_sqlite3.db b/doc/doxygen_sqlite3.db new file mode 100644 index 0000000000000000000000000000000000000000..8e5c702e006b8191e85968ecfd64e8f8976fa7be GIT binary patch literal 1112064 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 z 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

    `4SMPhCgkq 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 PFa}udWK7-I{=xVcW1*Ce literal 0 HcmV?d00001 diff --git a/doc/xplus-gno.tag b/doc/xplus-gno.tag new file mode 100644 index 0000000..667beec --- /dev/null +++ b/doc/xplus-gno.tag @@ -0,0 +1,19124 @@ + + + + config.h + /home/rafal/prj/dlugolecki/familia-build/build/ + config_8h + + #define + HAVE_DLFCN_H + config_8h.html + a0ee1617ff2f6885ef384a3dd46f9b9d7 + + + + #define + HAVE_INTTYPES_H + config_8h.html + ab90a030ff2790ebdc176660a6dd2a478 + + + + #define + HAVE_MEMORY_H + config_8h.html + ae93a78f9d076138897af441c9f86f285 + + + + #define + HAVE_STDBOOL_H + config_8h.html + a8c3fa1b2f1be8c6f6929548c548cf50a + + + + #define + HAVE_STDINT_H + config_8h.html + ab6cd6d1c63c1e26ea2d4537b77148354 + + + + #define + HAVE_STDLIB_H + config_8h.html + a9e0e434ec1a6ddbd97db12b5a32905e0 + + + + #define + HAVE_STRINGS_H + config_8h.html + a405d10d46190bcb0320524c54eafc850 + + + + #define + HAVE_STRING_H + config_8h.html + ad4c234dd1625255dc626a15886306e7d + + + + #define + HAVE_SYS_STAT_H + config_8h.html + ace156430ba007d19b4348a950d0c692b + + + + #define + HAVE_SYS_TYPES_H + config_8h.html + a69dc70bea5d1f8bd2be9740e974fa666 + + + + #define + HAVE_UNISTD_H + config_8h.html + a219b06937831d0da94d801ab13987639 + + + + #define + HAVE__BOOL + config_8h.html + a862ffdbac7ac8323712310a418b7d9a3 + + + + #define + LT_OBJDIR + config_8h.html + ac2d5925d76379847dd9fc4747b061659 + + + + #define + PACKAGE + config_8h.html + aca8570fb706c81df371b7f9bc454ae03 + + + + #define + PACKAGE_BUGREPORT + config_8h.html + a1d1d2d7f8d2f95b376954d649ab03233 + + + + #define + PACKAGE_NAME + config_8h.html + a1c0439e4355794c09b64274849eb0279 + + + + #define + PACKAGE_STRING + config_8h.html + ac73e6f903c16eca7710f92e36e1c6fbf + + + + #define + PACKAGE_TARNAME + config_8h.html + af415af6bfede0e8d5453708afe68651c + + + + #define + PACKAGE_URL + config_8h.html + a5c93853116d5a50307b6744f147840aa + + + + #define + PACKAGE_VERSION + config_8h.html + aa326a05d5e30f9e9a4bb0b4469d5d0c0 + + + + #define + STDC_HEADERS + config_8h.html + a550e5c272cc3cf3814651721167dcd23 + + + + #define + VERSION + config_8h.html + a1c6d5de492ac61ad29aec7aa9a436bbf + + + + + all-include.h + /home/rafal/prj/dlugolecki/familia-build/build/include/libgno/ + all-include_8h + libgno/Document.h + libgno/GenoPro.h + + + Document.h + /home/rafal/prj/dlugolecki/familia-build/build/include/libgno/ + Document_8h + libgno/GenoPro.h + libgno::Document + libgno + + + GenoPro.h + /home/rafal/prj/dlugolecki/familia-build/build/include/libgno/ + GenoPro_8h + libgno::GenoPro + libgno::GenoPro::sequence + libgno::GenoPro::Software + libgno::GenoPro::Software::sequence + libgno::GenoPro::Global + libgno::GenoPro::Global::sequence + libgno::GenoPro::Global::Name + libgno::GenoPro::Global::Name::sequence + libgno::GenoPro::Global::Name::Full + libgno::GenoPro::Global::Name::Display + libgno::GenoPro::Global::Display + libgno::GenoPro::Global::Display::sequence + libgno::GenoPro::Global::Display::Colors + libgno::GenoPro::Global::Display::Colors::sequence + libgno::GenoPro::Global::Display::Colors::Gender + libgno::GenoPro::Global::Display::Colors::Gender::sequence + libgno::GenoPro::Global::Display::Colors::Gender::Fill + libgno::GenoPro::Global::Display::Colors::Gender::Fill::sequence + libgno::GenoPro::Global::Display::Colors::Gender::Fill::Top + libgno::GenoPro::Global::Display::Colors::Gender::Fill::Bottom + libgno::GenoPro::Global::Display::Colors::Border + libgno::GenoPro::Global::Display::Colors::Border::sequence + libgno::GenoPro::Global::Display::Colors::Label + libgno::GenoPro::Global::Display::Colors::Label::sequence + libgno::GenoPro::Global::Display::Colors::Label::Fill + libgno::GenoPro::Global::Tags + libgno::GenoPro::Global::Tags::sequence + libgno::GenoPro::Global::Tags::TagData + libgno::GenoPro::Global::Tags::TagData::sequence + libgno::GenoPro::Global::Tags::DialogLayout + libgno::GenoPro::Global::Tags::DialogLayout::sequence + libgno::GenoPro::Global::Document + libgno::GenoPro::Global::Document::sequence + libgno::GenoPro::Global::Options + libgno::GenoPro::GenoMaps + libgno::GenoPro::GenoMaps::sequence + libgno::GenoPro::GenoMaps::GenoMap + libgno::GenoPro::GenoMaps::GenoMap::sequence + libgno::GenoPro::GenoMaps::GenoMap::Print + libgno::GenoPro::Individuals + libgno::GenoPro::Individuals::sequence + libgno::GenoPro::Individuals::Individual + libgno::GenoPro::Individuals::Individual::sequence + libgno::GenoPro::Individuals::Individual::Name + libgno::GenoPro::Individuals::Individual::Name::sequence + libgno::GenoPro::Individuals::Individual::Name::Display + libgno::GenoPro::Individuals::Individual::Position + libgno::GenoPro::Individuals::Individual::Death + libgno::GenoPro::Individuals::Individual::Death::sequence + libgno::GenoPro::Individuals::Individual::Death::Cause + libgno::GenoPro::Individuals::Individual::Death::Cause::sequence + libgno::GenoPro::Families + libgno::GenoPro::Families::sequence + libgno::GenoPro::Families::Family + libgno::GenoPro::Families::Family::sequence + libgno::GenoPro::Families::Family::Position + libgno::GenoPro::Families::Family::Position::sequence + libgno::GenoPro::Families::Family::Position::Top + libgno::GenoPro::Families::Family::Position::Top::sequence + libgno::GenoPro::Families::Family::Position::Bottom + libgno::GenoPro::Families::Family::Position::Bottom::sequence + libgno::GenoPro::Marriages + libgno::GenoPro::Marriages::sequence + libgno::GenoPro::Marriages::Marriage + libgno::GenoPro::Marriages::Marriage::sequence + libgno::GenoPro::PedigreeLinks + libgno::GenoPro::PedigreeLinks::sequence + libgno::GenoPro::PedigreeLinks::PedigreeLink + libgno::GenoPro::PedigreeLinks::PedigreeLink::sequence + libgno::GenoPro::PedigreeLinks::PedigreeLink::Position + libgno::GenoPro::Pictures + libgno::GenoPro::Pictures::sequence + libgno::GenoPro::Pictures::Picture + libgno::GenoPro::Pictures::Picture::sequence + libgno::GenoPro::Pictures::Picture::Path + libgno::GenoPro::Pictures::Picture::Cache + libgno::GenoPro::Places + libgno::GenoPro::Places::sequence + libgno::GenoPro::Places::Place + libgno::GenoPro::Places::Place::sequence + libgno::GenoPro::Places::Place::Pictures + libgno::GenoPro::Educations + libgno::GenoPro::Educations::sequence + libgno::GenoPro::Educations::Education + libgno::GenoPro::Educations::Education::sequence + libgno::GenoPro::Educations::Education::Level + libgno::GenoPro::Educations::Education::Level::sequence + libgno::GenoPro::Occupations + libgno::GenoPro::Occupations::sequence + libgno::GenoPro::Occupations::Occupation + libgno::GenoPro::Occupations::Occupation::sequence + libgno::GenoPro::Contacts + libgno::GenoPro::Contacts::sequence + libgno::GenoPro::Contacts::Contact + libgno::GenoPro::Contacts::Contact::sequence + libgno::GenoPro::SourcesAndCitations + libgno::GenoPro::SourcesAndCitations::sequence + libgno::GenoPro::SourcesAndCitations::SourceCitation + libgno::GenoPro::SourcesAndCitations::SourceCitation::sequence + libgno::GenoPro::Twins + libgno::GenoPro::Twins::sequence + libgno::GenoPro::Twins::Twin + libgno::GenoPro::Twins::Twin::sequence + libgno::GenoPro::Shapes + libgno::GenoPro::Shapes::sequence + libgno::GenoPro::Shapes::Shape + libgno::GenoPro::Shapes::Shape::sequence + libgno::GenoPro::Shapes::Shape::Position + libgno::GenoPro::Shapes::Shape::Position::sequence + libgno::GenoPro::Shapes::Shape::Display + libgno::GenoPro::Shapes::Shape::Display::sequence + libgno::GenoPro::Shapes::Shape::Display::Color + libgno::GenoPro::SocialRelationships + libgno::GenoPro::SocialRelationships::sequence + libgno::GenoPro::SocialRelationships::SocialRelationship + libgno::GenoPro::SocialRelationships::SocialRelationship::sequence + libgno::GenoPro::SocialRelationships::SocialRelationship::Display + libgno::GenoPro::SocialRelationships::SocialRelationship::Display::sequence + libgno::GenoPro::SocialRelationships::SocialRelationship::Display::Color + libgno::GenoPro::SocialRelationships::SocialRelationship::Display::Arrow + libgno + + #define + __GenoPro_Date_typedefs + GenoPro_8h.html + aa83973dc21bcf5ef181201a4c13b1552 + + + + #define + __GenoPro_Pictures_typedefs + GenoPro_8h.html + af8f6ecf85586c421ec410e48449a911e + + + + #define + __GenoPro_Date_member_public_fns + GenoPro_8h.html + a642055ecaff7427457b032ff84d4c004 + + + + #define + __GenoPro_Pictures_member_public_fns + GenoPro_8h.html + a1c2b5967ce1aa079045e75e815da96f0 + + + + #define + __GenoPro_Date_member_variables + GenoPro_8h.html + a325590117b6164382454c8a853e563a8 + + + + #define + __GenoPro_Pictures_member_variables + GenoPro_8h.html + a5f227df17afdf5a42e13205b6ba68a0a + + + + #define + __GenoPro_Date_private_fns + GenoPro_8h.html + afe09afe7920fc63df250241ad8c3f8b1 + + + + #define + __GenoPro_Pictures_private_fns + GenoPro_8h.html + ad6f208ffaef37356b2c0e86571ea651d + + + + #define + __Global_Name_typedefs + GenoPro_8h.html + a9dd116506ae89d7478872ad6589895e4 + + + + #define + __Global_Display_typedefs + GenoPro_8h.html + a5ca88b999520402e132f8982b6c74bb7 + + + + #define + __Global_Tags_typedefs + GenoPro_8h.html + a2cc39c6721e2ebf654b241603f0de4f9 + + + + #define + __Global_Name_member_public_fns + GenoPro_8h.html + a93c68689b2c097da485c6d00d75513e9 + + + + #define + __Global_Display_member_public_fns + GenoPro_8h.html + a864a0bf81a5d4a4c8bb9bbc40e69e88a + + + + #define + __Global_Tags_member_public_fns + GenoPro_8h.html + a3af364c9ab5012290af184c73c52cb37 + + + + #define + __Global_Name_member_variables + GenoPro_8h.html + af6bff2c6bcfca5f488966024f0812d87 + + + + #define + __Global_Display_member_variables + GenoPro_8h.html + a20bc0193eb8721aefe0d5cb6f2e9c782 + + + + #define + __Global_Tags_member_variables + GenoPro_8h.html + a0dd00437089e04111a8d3ce5bb3d48c4 + + + + #define + __Global_Name_private_fns + GenoPro_8h.html + a1a8319857928b591da462f0c58c28317 + + + + #define + __Global_Display_private_fns + GenoPro_8h.html + aa47e30363948cbd08deab40b60b27fe0 + + + + #define + __Global_Tags_private_fns + GenoPro_8h.html + a8b56939b8c5da91c84e23c0f49955fb6 + + + + #define + __Gender_Fill_typedefs + GenoPro_8h.html + af3efea52e24f890605eee0b07ed6ce04 + + + + #define + __Gender_attr_Fill_typedefs + GenoPro_8h.html + ae5772efadd4d8b4174a8ca1dcc364a75 + + + + #define + __Gender_Fill_member_public_fns + GenoPro_8h.html + a8aa059faee3e3bebbd8711302fd94379 + + + + #define + __Gender_attr_Fill_member_public_fns + GenoPro_8h.html + ae8ad89c572251d8443d03370319c4f4b + + + + #define + __Gender_Fill_member_variables + GenoPro_8h.html + a529fe9e03b2bf00e71f13973be059e35 + + + + #define + __Gender_attr_Fill_member_variables + GenoPro_8h.html + ade5fd6956996cd32f617950c71a4801c + + + + #define + __Gender_Fill_private_fns + GenoPro_8h.html + a8c2e52dc343f8d6a404aee2720d67f88 + + + + #define + __Gender_attr_Fill_private_fns + GenoPro_8h.html + a99ef2391fd6d1d5250000bfdbe5eeecc + + + + #define + __Label_attr_Top_typedefs + GenoPro_8h.html + a26f32c2aac9555c3b5a5a64b74682a2d + + + + #define + __Label_attr_Bottom_typedefs + GenoPro_8h.html + a9331a5117b481dc9087c1e5eaceda8e2 + + + + #define + __Label_attr_Top_member_public_fns + GenoPro_8h.html + adbead9c12d2c49062afebfa168ea24a8 + + + + #define + __Label_attr_Bottom_member_public_fns + GenoPro_8h.html + a756702c1275b52b8e1560be598e72f01 + + + + #define + __Label_attr_Top_member_variables + GenoPro_8h.html + ae179efdd1721c7b3972c9fd44f1193d1 + + + + #define + __Label_attr_Bottom_member_variables + GenoPro_8h.html + afa5cd22bc41108a3b58f12b350467e06 + + + + #define + __Label_attr_Top_private_fns + GenoPro_8h.html + a82f62db8ffbf146b3d5521625ad3a221 + + + + #define + __Label_attr_Bottom_private_fns + GenoPro_8h.html + aa4ca47871304f22e99b87a85a79d4bcb + + + + #define + __PedigreeLinks_PedigreeLink_typedefs + GenoPro_8h.html + a4ffc476a6ebd6345c445ab6e1fd5761a + + + + #define + __PedigreeLinks_PedigreeLink_member_public_fns + GenoPro_8h.html + a3112d3835e34e54510a18aaf6e50efaf + + + + #define + __PedigreeLinks_PedigreeLink_member_variables + GenoPro_8h.html + a3e14a00dcee0490ca22fcd8392461487 + + + + #define + __PedigreeLinks_PedigreeLink_private_fns + GenoPro_8h.html + acf32c33c993534c96e7623f55155181b + + + + AutoPtr< GenoPro > + GenoPro_ptr + namespacelibgno.html + a5b9f72970e6bfab3ddb1d9de25aed9c9 + + + + GenoPro * + GenoPro_p + namespacelibgno.html + a628afb501ca06bd6d6816b77117ca87f + + + + + main.cpp + /home/rafal/prj/dlugolecki/familia-build/build/ + main_8cpp + libgno/all-include.h + + void + populateDocument + main_8cpp.html + a8bd70d42b4d8af93e48333d90a1a4505 + (libgno::Document *xsdDoc) + + + void + updateOrConsumeDocument + main_8cpp.html + a64b9ca5974e3b85771a40a12c08838d9 + (libgno::Document *xsdDoc) + + + int + main + main_8cpp.html + a3c04138a5bfe5d72780bb7e82a18e627 + (int argc, char **argv) + + + + Document.cpp + /home/rafal/prj/dlugolecki/familia-build/build/src/libgno/ + Document_8cpp + libgno/Document.h + libgno + + + GenoPro.cpp + /home/rafal/prj/dlugolecki/familia-build/build/src/libgno/ + GenoPro_8cpp + libgno/GenoPro.h + libgno + + #define + __GenoPro_Date_member_elems_fns + GenoPro_8cpp.html + a726cd921af43dd5fe2f4f02704462343 + + + + #define + __GenoPro_Pictures_member_elems_fns + GenoPro_8cpp.html + a612fef2585512e084ff24424b11dee68 + + + + #define + __Global_Name_member_elems_fns + GenoPro_8cpp.html + aac719e1dbe0cd93ff3e31008f26b26eb + + + + #define + __Global_Display_member_elems_fns + GenoPro_8cpp.html + a510374cf5f2872d9ed053ea07847cd6f + + + + #define + __Global_Tags_member_elems_fns + GenoPro_8cpp.html + a18fcd92104577dc0a3341cdf6d79bdd2 + + + + #define + __Gender_Fill_member_elems_fns + GenoPro_8cpp.html + a401dab949836edacfa9b7aed48965307 + + + + #define + __Gender_attr_Fill_member_elems_fns + GenoPro_8cpp.html + afd18aa57aaa27f1db02c60c801afd38b + + + + #define + __Gender_attr_Fill_member_attrs_fns + GenoPro_8cpp.html + a026bb215f98133af1eba7aace530f980 + + + + #define + __Label_attr_Top_member_elems_fns + GenoPro_8cpp.html + a0fad0a31836e7689fc6818da26ec0053 + + + + #define + __Label_attr_Bottom_member_elems_fns + GenoPro_8cpp.html + ae30573ee73fbf2c26cd514f1f71c9741 + + + + #define + __Label_attr_Top_member_attrs_fns + GenoPro_8cpp.html + ae6f1e05ced9946c75e9e65c5817c790e + + + + #define + __Label_attr_Bottom_member_attrs_fns + GenoPro_8cpp.html + a22ea641a1f3567906edbda9cfa0babc3 + + + + #define + __PedigreeLinks_PedigreeLink_member_elems_fns + GenoPro_8cpp.html + a2c715b65de1eda5834a755c652dd4430 + + + + + libgno + namespacelibgno.html + libgno::Document + libgno::GenoPro + + AutoPtr< GenoPro > + GenoPro_ptr + namespacelibgno.html + a5b9f72970e6bfab3ddb1d9de25aed9c9 + + + + GenoPro * + GenoPro_p + namespacelibgno.html + a628afb501ca06bd6d6816b77117ca87f + + + + + libgno::Document + classlibgno_1_1Document.html + + + Document + classlibgno_1_1Document.html + a1e218453636584389e82d15654a60556 + (bool buildTree=true, bool createSample=false) + + + virtual + ~Document + classlibgno_1_1Document.html + a000dd2d03c3b3b1053808710089eab56 + () + + + GenoPro_p + element_GenoPro + classlibgno_1_1Document.html + aa026b677f7cb387912a1d89292b69c6e + () + + + GenoPro_ptr + create_GenoPro + classlibgno_1_1Document.html + a3289c51980c7510517c915d82f79b938 + (FsmCbOptions &options) + + + void + initFSM + classlibgno_1_1Document.html + a8399c31fb6c88a202f335ba74018b996 + () + + + GenoPro_ptr + _GenoPro + classlibgno_1_1Document.html + a00b81445e0a6c227920f5fba9c87a7ae + + + + AutoPtr< XsdFSM< GenoPro_ptr > > + _fsm_GenoPro + classlibgno_1_1Document.html + a2549f7216fa48a1bd3b236167fe1260e + + + + + libgno::GenoPro + classlibgno_1_1GenoPro.html + libgno::GenoPro::Contacts + libgno::GenoPro::Educations + libgno::GenoPro::Families + libgno::GenoPro::GenoMaps + libgno::GenoPro::Global + libgno::GenoPro::Individuals + libgno::GenoPro::Marriages + libgno::GenoPro::Occupations + libgno::GenoPro::PedigreeLinks + libgno::GenoPro::Pictures + libgno::GenoPro::Places + libgno::GenoPro::sequence + libgno::GenoPro::Shapes + libgno::GenoPro::SocialRelationships + libgno::GenoPro::Software + libgno::GenoPro::SourcesAndCitations + libgno::GenoPro::Twins + + AutoPtr< Software > + Software_ptr + classlibgno_1_1GenoPro.html + a5f68e5dc839c0f52ad23d278da0c4282 + + + + Software * + Software_p + classlibgno_1_1GenoPro.html + a4baa1edb071768194cd4d1b19cf30168 + + + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_string > > + Date_ptr + classlibgno_1_1GenoPro.html + aa8c09bdb47f44003e1f06833088ab96b + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_string > * + Date_p + classlibgno_1_1GenoPro.html + ad8831fa15d4001839c858d9fb40b773f + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_string > + Date + classlibgno_1_1GenoPro.html + a991bd2e22e347b7d9edabf8b2440a218 + + + + AutoPtr< Global > + Global_ptr + classlibgno_1_1GenoPro.html + a2f59c7679d05556a311bb92ef09aee93 + + + + Global * + Global_p + classlibgno_1_1GenoPro.html + aabbd92d5fe0d5daaf3209761473ac890 + + + + AutoPtr< GenoMaps > + GenoMaps_ptr + classlibgno_1_1GenoPro.html + a2fbcdf2e578474b34567998095ee1787 + + + + GenoMaps * + GenoMaps_p + classlibgno_1_1GenoPro.html + a7606c260085fa5c6b3819a004f850e3b + + + + AutoPtr< Individuals > + Individuals_ptr + classlibgno_1_1GenoPro.html + a0729dd6a1e165c41a2936b19b2999581 + + + + Individuals * + Individuals_p + classlibgno_1_1GenoPro.html + a428d8923170f53fa832339c82912bfc0 + + + + AutoPtr< Families > + Families_ptr + classlibgno_1_1GenoPro.html + a39fe238059d74a079909e98038244c3a + + + + Families * + Families_p + classlibgno_1_1GenoPro.html + adf16c71f1b039a1c061c666a18a3d374 + + + + AutoPtr< Marriages > + Marriages_ptr + classlibgno_1_1GenoPro.html + a7ed16cd01e9f38ab1d59b6b9ba63eb7a + + + + Marriages * + Marriages_p + classlibgno_1_1GenoPro.html + aeffe1cd54cf5ed796f875fed1ec28490 + + + + AutoPtr< PedigreeLinks > + PedigreeLinks_ptr + classlibgno_1_1GenoPro.html + ae0b0ddc5e455b1c60860e801a4e3ef56 + + + + PedigreeLinks * + PedigreeLinks_p + classlibgno_1_1GenoPro.html + a7a3b03ef5a895573e7bbd979fef8ec7f + + + + AutoPtr< Pictures > + Pictures_ptr + classlibgno_1_1GenoPro.html + a580195fff552f7cff17bb1c25f19d416 + + + + Pictures * + Pictures_p + classlibgno_1_1GenoPro.html + a0aff28005d4ff4542cac685d9a124243 + + + + AutoPtr< Places > + Places_ptr + classlibgno_1_1GenoPro.html + a9e85b1e5d30c3cf9865842511e40eb8b + + + + Places * + Places_p + classlibgno_1_1GenoPro.html + a9e95dd34a4cbade8478dbfb4441f6e75 + + + + AutoPtr< Educations > + Educations_ptr + classlibgno_1_1GenoPro.html + ac475092bc7a86dbbbcf744108548bf64 + + + + Educations * + Educations_p + classlibgno_1_1GenoPro.html + a6ebdd4c3c64e1e9ee0fd6d2ffbfbafe3 + + + + AutoPtr< Occupations > + Occupations_ptr + classlibgno_1_1GenoPro.html + a5314f52bc9b4a3b27c18226f2ad19c93 + + + + Occupations * + Occupations_p + classlibgno_1_1GenoPro.html + abb59eeca4b81702189352306d2df57ac + + + + AutoPtr< Contacts > + Contacts_ptr + classlibgno_1_1GenoPro.html + a8a257029c261257f379a35ee1cd09982 + + + + Contacts * + Contacts_p + classlibgno_1_1GenoPro.html + a9b79f59eb73607840ace58598f265816 + + + + AutoPtr< SourcesAndCitations > + SourcesAndCitations_ptr + classlibgno_1_1GenoPro.html + a2a75c754226586ffd90979ded9707d07 + + + + SourcesAndCitations * + SourcesAndCitations_p + classlibgno_1_1GenoPro.html + ae3a324b8824370d7d54673ed82efbe52 + + + + AutoPtr< Twins > + Twins_ptr + classlibgno_1_1GenoPro.html + ae70bca74f19f40529c4c8cefc135b7fe + + + + Twins * + Twins_p + classlibgno_1_1GenoPro.html + a3724a24ec6964b105f2185af640a54ff + + + + AutoPtr< Shapes > + Shapes_ptr + classlibgno_1_1GenoPro.html + a3e149b4e0ca770658e4c8d0f988b6b6c + + + + Shapes * + Shapes_p + classlibgno_1_1GenoPro.html + a43acab79a97454f5ad1bdbd8628460c3 + + + + AutoPtr< SocialRelationships > + SocialRelationships_ptr + classlibgno_1_1GenoPro.html + a79aee539106d1ca20545d306edc70284 + + + + SocialRelationships * + SocialRelationships_p + classlibgno_1_1GenoPro.html + a7725fa05049435af3e49cb2424bb38ff + + + + + GenoPro + classlibgno_1_1GenoPro.html + a5a1b4c1ceee963dad76fe7d72a5d58f0 + (ElementCreateArgs args) + + + Software_p + element_Software + classlibgno_1_1GenoPro.html + ac9068595917d6ed4f7271c11812b175a + () + + + void + mark_present_Software + classlibgno_1_1GenoPro.html + ab3f08608b2d53f0e6adb7ba883f252e4 + () + + + Date_p + element_Date + classlibgno_1_1GenoPro.html + ae5ac3b73efa3988e0be77085f17a15f5 + () + + + void + set_Date + classlibgno_1_1GenoPro.html + a7430ec16ab6b362b7cb1e6bcfa589f64 + (DOMString val) + + + DOMString + get_Date_string + classlibgno_1_1GenoPro.html + a8c407b69ed3435abb844b16e04417e74 + () + + + void + mark_present_Date + classlibgno_1_1GenoPro.html + a2c805ea7174de1f142f4f0c7a844f40a + () + + + Global_p + element_Global + classlibgno_1_1GenoPro.html + a2e87897b63f0ebe4fae3e2f86bc87803 + () + + + void + mark_present_Global + classlibgno_1_1GenoPro.html + af886770ea2314b197a31423cc290d5bc + () + + + GenoMaps_p + element_GenoMaps + classlibgno_1_1GenoPro.html + ae219a97a252cd48958edfa9e867e049b + () + + + void + mark_present_GenoMaps + classlibgno_1_1GenoPro.html + a52795f4f18915ccb506b410f243269ff + () + + + Individuals_p + element_Individuals + classlibgno_1_1GenoPro.html + acf69f780d6176ddf2c9bd68ddd399cc7 + () + + + void + mark_present_Individuals + classlibgno_1_1GenoPro.html + a1b407c2c4b40cd7667933050ca0dee4c + () + + + Families_p + element_Families + classlibgno_1_1GenoPro.html + a4aaed22391940ca9567621ce72ca29b9 + () + + + void + mark_present_Families + classlibgno_1_1GenoPro.html + a9ac5f0e2dc9f19f205b249090b7d764c + () + + + Marriages_p + element_Marriages + classlibgno_1_1GenoPro.html + a3120a7dd3d720c064c8a2f83b3e30b18 + () + + + void + mark_present_Marriages + classlibgno_1_1GenoPro.html + a9e3c93d64f372f1f3e644638079feba6 + () + + + PedigreeLinks_p + element_PedigreeLinks + classlibgno_1_1GenoPro.html + a8288d8b4705368cf9b3375d122bf4167 + () + + + void + mark_present_PedigreeLinks + classlibgno_1_1GenoPro.html + a1408cd6e58151a12d3c3963402623f4a + () + + + Pictures_p + element_Pictures + classlibgno_1_1GenoPro.html + aa345f1ed600ff61064f73204b6417675 + () + + + void + mark_present_Pictures + classlibgno_1_1GenoPro.html + a5d561f8c4c6db9f2b9b2c1fb90106c4c + () + + + Places_p + element_Places + classlibgno_1_1GenoPro.html + aca438d048103eed928653411d78202e6 + () + + + void + mark_present_Places + classlibgno_1_1GenoPro.html + a82e4a475e5dbecaac02772e76f7c7bfd + () + + + Educations_p + element_Educations + classlibgno_1_1GenoPro.html + a5fd00d3d71f0df8e8002c9eb376640c8 + () + + + void + mark_present_Educations + classlibgno_1_1GenoPro.html + a4098dda496d4ad5cc012c00df4d6ab2f + () + + + Occupations_p + element_Occupations + classlibgno_1_1GenoPro.html + a452194a7dad56c7a8821f9dcc74b7928 + () + + + void + mark_present_Occupations + classlibgno_1_1GenoPro.html + abe7b4e4a74898eb39579c0e5cd4f7436 + () + + + Contacts_p + element_Contacts + classlibgno_1_1GenoPro.html + aac513cec79e5153937db8483d9038b36 + () + + + void + mark_present_Contacts + classlibgno_1_1GenoPro.html + ae86903ba7b8d63cab0f9f4f7db020853 + () + + + SourcesAndCitations_p + element_SourcesAndCitations + classlibgno_1_1GenoPro.html + af85e95a75bb7f2f6efe8142add2016c1 + () + + + void + mark_present_SourcesAndCitations + classlibgno_1_1GenoPro.html + a72378251104c0f5915d2a6d1f12214a6 + () + + + Twins_p + element_Twins + classlibgno_1_1GenoPro.html + a42d3252ca883ff6990452b464548df3f + () + + + void + mark_present_Twins + classlibgno_1_1GenoPro.html + ac4c59d2d34e88bb9733ab9c3bb136288 + () + + + Shapes_p + element_Shapes + classlibgno_1_1GenoPro.html + a6719bef7092835df13ec0a399312b25a + () + + + void + mark_present_Shapes + classlibgno_1_1GenoPro.html + a6cb17bd905b31f6fca19b76d9dbb970f + () + + + SocialRelationships_p + element_SocialRelationships + classlibgno_1_1GenoPro.html + a7d0772c9342f0728853d65caafdd7dbb + () + + + void + mark_present_SocialRelationships + classlibgno_1_1GenoPro.html + aa758bb16c736383bc40c3941f43fccbe + () + + + sequence * + get_sequence + classlibgno_1_1GenoPro.html + a97e62eca503754bc3089f5f1053ce34a + () + + + void + initFSM + classlibgno_1_1GenoPro.html + af40643913b7f2b8cc42ae461b6c890fa + () + + + Software_ptr + create_Software + classlibgno_1_1GenoPro.html + acf7089205bbfa8aa90d05978541ffbdd + (FsmCbOptions &options) + + + Date_ptr + create_Date + classlibgno_1_1GenoPro.html + a0772d808e043f743ed1564ff0afcd1b2 + (FsmCbOptions &options) + + + Global_ptr + create_Global + classlibgno_1_1GenoPro.html + ac83aaa18c819c6dbd17b6cf33cd42ffc + (FsmCbOptions &options) + + + GenoMaps_ptr + create_GenoMaps + classlibgno_1_1GenoPro.html + aa3d9bf6c4f442b2662897cb749021057 + (FsmCbOptions &options) + + + Individuals_ptr + create_Individuals + classlibgno_1_1GenoPro.html + ae8b9d0914cd404db83596e28ac912101 + (FsmCbOptions &options) + + + Families_ptr + create_Families + classlibgno_1_1GenoPro.html + a2c714c454ef0614cefee760acabe1cf2 + (FsmCbOptions &options) + + + Marriages_ptr + create_Marriages + classlibgno_1_1GenoPro.html + aecb7d5ffe775fec574bbc762af0cc133 + (FsmCbOptions &options) + + + PedigreeLinks_ptr + create_PedigreeLinks + classlibgno_1_1GenoPro.html + a961d6124a3432e018810ecf0f05e682d + (FsmCbOptions &options) + + + Pictures_ptr + create_Pictures + classlibgno_1_1GenoPro.html + ac626ef884ed88a144b0a606d5be81ba0 + (FsmCbOptions &options) + + + Places_ptr + create_Places + classlibgno_1_1GenoPro.html + a73c0b5bebabba2ec846fbca7a1e8392e + (FsmCbOptions &options) + + + Educations_ptr + create_Educations + classlibgno_1_1GenoPro.html + ac0cad34a607f478768eea757fbe527d8 + (FsmCbOptions &options) + + + Occupations_ptr + create_Occupations + classlibgno_1_1GenoPro.html + a7fab8c48f4854278d8afa0c099957ee1 + (FsmCbOptions &options) + + + Contacts_ptr + create_Contacts + classlibgno_1_1GenoPro.html + ab8b5bf92ca6c35ce5042f0d3f9ebe3e4 + (FsmCbOptions &options) + + + SourcesAndCitations_ptr + create_SourcesAndCitations + classlibgno_1_1GenoPro.html + a9813d8464a8da25b205f4c5e7d0721aa + (FsmCbOptions &options) + + + Twins_ptr + create_Twins + classlibgno_1_1GenoPro.html + aad579167ad8a638407e30e3a75dadac1 + (FsmCbOptions &options) + + + Shapes_ptr + create_Shapes + classlibgno_1_1GenoPro.html + acb5faa6add0e8bd9e09fde4ad9a2f328 + (FsmCbOptions &options) + + + SocialRelationships_ptr + create_SocialRelationships + classlibgno_1_1GenoPro.html + a80f33a04e54b5f8582ea5b86a0237e83 + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro.html + af40a791241d7249cf352238500478a3b + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro.html + a35f95f553a8409a3f72ccde73fb915e3 + + + + AutoPtr< sequence > + _sequence + classlibgno_1_1GenoPro.html + a903dd6845792520ab0c6915c093b64ad + + + + Software_ptr + _Software + classlibgno_1_1GenoPro.html + a4af675e238c22f270ee7b7097f32331a + + + + Date_ptr + _Date + classlibgno_1_1GenoPro.html + a57201624d5f2d1b60583d4248c760da8 + + + + Global_ptr + _Global + classlibgno_1_1GenoPro.html + ac164cf63c4c759ff51293d4d961a335b + + + + GenoMaps_ptr + _GenoMaps + classlibgno_1_1GenoPro.html + ab828c095eac4fc97f6eba61adebe4166 + + + + Individuals_ptr + _Individuals + classlibgno_1_1GenoPro.html + aa83a9de83ffe6b0fec92c00b7fc12739 + + + + Families_ptr + _Families + classlibgno_1_1GenoPro.html + a0bc41afe0b37be4282c556ab275c0de2 + + + + Marriages_ptr + _Marriages + classlibgno_1_1GenoPro.html + a03c0aaa0227e4d2feabed5ab0f879ee0 + + + + PedigreeLinks_ptr + _PedigreeLinks + classlibgno_1_1GenoPro.html + a0ab95e639e7edb7a7069ed0c36b43d88 + + + + Pictures_ptr + _Pictures + classlibgno_1_1GenoPro.html + adba5c0f2989797743ba4393b651879a1 + + + + Places_ptr + _Places + classlibgno_1_1GenoPro.html + acb10bbc7e6f8011eda13561aeef61414 + + + + Educations_ptr + _Educations + classlibgno_1_1GenoPro.html + aa574a44e3d7c5b7597be1d4d270f7d9a + + + + Occupations_ptr + _Occupations + classlibgno_1_1GenoPro.html + a8d265137d1e0c740463472b15c5e18e3 + + + + Contacts_ptr + _Contacts + classlibgno_1_1GenoPro.html + abd7473f03a80229a0e2caf53f3e44b54 + + + + SourcesAndCitations_ptr + _SourcesAndCitations + classlibgno_1_1GenoPro.html + acff9ec59c09b35c84ded3a1a94eff095 + + + + Twins_ptr + _Twins + classlibgno_1_1GenoPro.html + ab649472b82bc82868134e22ef83233b8 + + + + Shapes_ptr + _Shapes + classlibgno_1_1GenoPro.html + a8a02fcd6ed13946f7070bc310a22e948 + + + + SocialRelationships_ptr + _SocialRelationships + classlibgno_1_1GenoPro.html + aaee1e47dfb6d767f1d5aacd5d35a0f55 + + + + + libgno::GenoPro::Contacts + classlibgno_1_1GenoPro_1_1Contacts.html + libgno::GenoPro::Contacts::Contact + libgno::GenoPro::Contacts::sequence + + AutoPtr< Contact > + Contact_ptr + classlibgno_1_1GenoPro_1_1Contacts.html + af7e90563b03e32cfb276264c411edcf7 + + + + Contact * + Contact_p + classlibgno_1_1GenoPro_1_1Contacts.html + aa8873babaa1eba989346f93ae0807070 + + + + + Contacts + classlibgno_1_1GenoPro_1_1Contacts.html + a12be90ed9c433f82d1f017c851124c8c + (ElementCreateArgs args) + + + List< Contact_ptr > + elements_Contact + classlibgno_1_1GenoPro_1_1Contacts.html + aab13dd16e4350413e3aebae6ae4d99a2 + () + + + Contact_p + element_Contact_at + classlibgno_1_1GenoPro_1_1Contacts.html + a55d27522b0bf302efbc732a0eb91a499 + (unsigned int idx) + + + Contact_p + add_node_Contact + classlibgno_1_1GenoPro_1_1Contacts.html + a0c24f43004ff27829747100ddfb1ca96 + () + + + List< Contact_ptr > + set_count_Contact + classlibgno_1_1GenoPro_1_1Contacts.html + a4eec61f026c12192462076f562c6b7f8 + (unsigned int size) + + + sequence * + get_sequence + classlibgno_1_1GenoPro_1_1Contacts.html + aa4631264a27454a02823560012ede411 + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1Contacts.html + a2730d61fc884dc667d9a14bc62c03152 + () + + + Contact_ptr + create_Contact + classlibgno_1_1GenoPro_1_1Contacts.html + a93ec30572afbfe313862cf15c9415bbd + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1Contacts.html + a6754a20b060c73278142ee72a1c8bf99 + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1Contacts.html + acaf908dd02cfbea09911bf1111db6926 + + + + AutoPtr< sequence > + _sequence + classlibgno_1_1GenoPro_1_1Contacts.html + a1d7ef2ef756cd5f9b0b57443d18270d6 + + + + List< Contact_ptr > + _list_Contact + classlibgno_1_1GenoPro_1_1Contacts.html + a15ec6301d07e917c00b71649005700b7 + + + + + libgno::GenoPro::Contacts::Contact + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + libgno::GenoPro::Contacts::Contact::sequence + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > > + Place_ptr + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + ac6f85cb66b862f9a80a994aa561b8cd2 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > * + Place_p + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + a51b9aaaa3d705aa17b41ef79661173a5 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > + Place + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + ac544267ceea6ac68100be604ae196484 + + + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > > + Source_ptr + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + ac14e2d3ef67c0d86428f83e74c9dcd27 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > * + Source_p + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + a8b524cf2c8af701a39af35c4e91fe9e8 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > + Source + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + a912eac10da439964941093d03ea746fd + + + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_string > > + Comment_ptr + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + a846cc4038712ae9e057124cefe834d8c + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_string > * + Comment_p + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + ad39ce34a60b8e11ba4e66551830c5459 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_string > + Comment + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + a3614b8b1592fa6673b613aa24f9e2950 + + + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > > + Type_ptr + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + ae1eb130af27602f264caaf1e8c4051fe + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > * + Type_p + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + ad94440a2e30ebae5721dd990da8cba82 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > + Type + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + a0369c4c50ced69cc6743357742d4a9cc + + + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_string > > + DateStart_ptr + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + a8754ce4faa41f27f03922cc61f45eb81 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_string > * + DateStart_p + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + a46293d451689f392ded6ef7fa9c36e44 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_string > + DateStart + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + a41532e064a628ff3cd45f961fbd1202d + + + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_string > > + DateEnd_ptr + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + ac3d3ac8ad42c8c5c4cf2f2cd73468d4f + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_string > * + DateEnd_p + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + a8da7e960bdedd08e03aa02f8514b983a + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_string > + DateEnd + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + a5664ca2aa5d1ca9f4d58a633ec2912e8 + + + + AutoPtr< XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > > + attr_ID_ptr + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + a554883b3e6d83e84b77bded5265585a7 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > * + attr_ID_p + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + a222234cca49e7e0374f908c4d995ba13 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > + attr_ID + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + af11dad26deba2c1f82eb1a3d9f2cf94c + + + + + Contact + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + a6f04d1ee97e752f71d9cd29857692984 + (ElementCreateArgs args) + + + Place_p + element_Place + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + a8e58c6d85dd4e375b927772bf12ecfd3 + () + + + void + set_Place + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + a4adecad12bd81a328260bd0e5849675c + (DOMString val) + + + DOMString + get_Place_string + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + a9e4606a7df3222bd16833a2868ad2315 + () + + + void + mark_present_Place + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + a87a31f38258166bc21ee74a0b44ca7d7 + () + + + Source_p + element_Source + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + a912f3f321cec6cd49f0da0b9e7b06bee + () + + + void + set_Source + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + a5c9f357c4094cf804af23137f2cb0e2f + (DOMString val) + + + DOMString + get_Source_string + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + a1aa0bf44dce3b92b8817cf4deb445e8c + () + + + void + mark_present_Source + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + ad384b4b19731926606e0ebcea987c310 + () + + + Comment_p + element_Comment + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + ad943fbcf482fb398fa752b1c220b60bd + () + + + void + set_Comment + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + aeb63276e1bca8e77df6eaaff50c80ba0 + (DOMString val) + + + DOMString + get_Comment_string + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + a8e4925886b2a22afe5dd6d9d07b45559 + () + + + void + mark_present_Comment + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + a90a04b1bafc85bd7ee14120d6737e8c1 + () + + + Type_p + element_Type + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + a6df22e12fe3a5a3f19f599739a369cd3 + () + + + void + set_Type + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + ac41588450e64d709e5c96dda9ec4f941 + (DOMString val) + + + DOMString + get_Type_string + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + a9386359025e12978182bb36fd06201dd + () + + + void + mark_present_Type + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + a097a9dc6ceb01401d141605de44c5154 + () + + + DateStart_p + element_DateStart + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + aa7447dac0bb4482d24eef7cbd2ecc926 + () + + + void + set_DateStart + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + a8132736ffe5c61ab43ecc4b2d3f8df7f + (DOMString val) + + + DOMString + get_DateStart_string + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + a17ff79f7dc2b50e9bd005436390a32e2 + () + + + void + mark_present_DateStart + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + a207be16a59eba54a9af0d5593ac51c8e + () + + + DateEnd_p + element_DateEnd + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + a2be633f6d467f457744e18f39d0bc714 + () + + + void + set_DateEnd + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + a79fa657b1ef135f956db2917f47105cd + (DOMString val) + + + DOMString + get_DateEnd_string + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + a99bc8efdfb39846b0f11e5a39cd28d02 + () + + + void + mark_present_DateEnd + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + a6158c06799b8c4cbe6eb21d996bc70dd + () + + + attr_ID_p + attribute_attr_ID + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + a39e6a88aaeb3c46e71c7cf61ff4e5ef4 + () + + + void + set_attr_ID + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + ae9ddd60f36eb09d7b877140fee2fed16 + (DOMString val) + + + DOMString + get_attr_ID_string + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + a0ab5a342cb2af07b1f169f758c5f5983 + () + + + sequence * + get_sequence + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + a6522cda37940b4c78c9555e7cfb9033a + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + ab30a9d90bc3b75228735f9199de5149e + () + + + Place_ptr + create_Place + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + a4ab74f97c05dfc71c8df3e8314495ab0 + (FsmCbOptions &options) + + + Source_ptr + create_Source + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + a2a113d6d44df70ab901e6cb7d8262b91 + (FsmCbOptions &options) + + + Comment_ptr + create_Comment + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + a59ebc5caac18ffe90310bb3d75185e29 + (FsmCbOptions &options) + + + Type_ptr + create_Type + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + a025b7889180bc964f64f945fdf183a76 + (FsmCbOptions &options) + + + DateStart_ptr + create_DateStart + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + af9c23a042a38cc2efef5a675dd71250f + (FsmCbOptions &options) + + + DateEnd_ptr + create_DateEnd + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + ae800ec8ecee2ec4c3d76a037dd70bacc + (FsmCbOptions &options) + + + attr_ID_ptr + create_attr_ID + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + a04060e4ab9ea5a553e2c6f44bb4f1b5e + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + a76e0d99f8f2cb15af1c50c1ac83401bd + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + a9cc7e7b86821128aa0d8ca29abd1be1a + + + + AutoPtr< sequence > + _sequence + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + a92544c82b3b8ee1668051af69fc6fc71 + + + + Place_ptr + _Place + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + a5c20b95554b3153d19e22734a5fdfcb7 + + + + Source_ptr + _Source + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + a30895a3c2a621182ae6d02ee5b16cb32 + + + + Comment_ptr + _Comment + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + abfe83b5fe52110a33246dcdcdd7130d7 + + + + Type_ptr + _Type + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + a228eee1b9f6827261b71e491e2f244bc + + + + DateStart_ptr + _DateStart + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + a7206b62771c0c1e5550d6e436cc2fb26 + + + + DateEnd_ptr + _DateEnd + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + a5970ed43c1b3e52a4e42dd97cb4576c0 + + + + attr_ID_ptr + _attr_ID + classlibgno_1_1GenoPro_1_1Contacts_1_1Contact.html + a285e2ba304baf22173029f23421f0440 + + + + + libgno::GenoPro::Contacts::Contact::sequence + structlibgno_1_1GenoPro_1_1Contacts_1_1Contact_1_1sequence.html + + + sequence + structlibgno_1_1GenoPro_1_1Contacts_1_1Contact_1_1sequence.html + ae2704bfadca6ac8b2ec1e9876625da4e + (Contact *that) + + + Place_p + element_Place + structlibgno_1_1GenoPro_1_1Contacts_1_1Contact_1_1sequence.html + a289b279205c1c54c911867d5e0f95a06 + () + + + void + set_Place + structlibgno_1_1GenoPro_1_1Contacts_1_1Contact_1_1sequence.html + ad7aea68a9767aabe28e46210f03d9815 + (DOMString val) + + + DOMString + get_Place_string + structlibgno_1_1GenoPro_1_1Contacts_1_1Contact_1_1sequence.html + a2c373f02ed46d4e75acf0282db586ed9 + () + + + void + mark_present_Place + structlibgno_1_1GenoPro_1_1Contacts_1_1Contact_1_1sequence.html + ad2c80ba873ed022925b66e83d6e5c89f + () + + + Source_p + element_Source + structlibgno_1_1GenoPro_1_1Contacts_1_1Contact_1_1sequence.html + a8ee455568c8bacae4d0cad790677d92c + () + + + void + set_Source + structlibgno_1_1GenoPro_1_1Contacts_1_1Contact_1_1sequence.html + ad35c90c299399058fa79592f1f1d35e6 + (DOMString val) + + + DOMString + get_Source_string + structlibgno_1_1GenoPro_1_1Contacts_1_1Contact_1_1sequence.html + af1dd8e06eaae3beef30ffa8cf2dc5a69 + () + + + void + mark_present_Source + structlibgno_1_1GenoPro_1_1Contacts_1_1Contact_1_1sequence.html + a0dd8ad4c949c77750beff2f4f235ff44 + () + + + Comment_p + element_Comment + structlibgno_1_1GenoPro_1_1Contacts_1_1Contact_1_1sequence.html + afa92bcced6965fdfb8c136c6b6ded3e2 + () + + + void + set_Comment + structlibgno_1_1GenoPro_1_1Contacts_1_1Contact_1_1sequence.html + a3f0e7b578d22945663ae227f1e413d46 + (DOMString val) + + + DOMString + get_Comment_string + structlibgno_1_1GenoPro_1_1Contacts_1_1Contact_1_1sequence.html + a0e86fcf02173bdf14ad2a26fa5cd4568 + () + + + void + mark_present_Comment + structlibgno_1_1GenoPro_1_1Contacts_1_1Contact_1_1sequence.html + ab2aaa387254e69a84736cf0168b02fa7 + () + + + Type_p + element_Type + structlibgno_1_1GenoPro_1_1Contacts_1_1Contact_1_1sequence.html + a0ca84b14defcf41b707820a5239fa38f + () + + + void + set_Type + structlibgno_1_1GenoPro_1_1Contacts_1_1Contact_1_1sequence.html + a7626c9a4adae5ed05f1f7d24962a5349 + (DOMString val) + + + DOMString + get_Type_string + structlibgno_1_1GenoPro_1_1Contacts_1_1Contact_1_1sequence.html + aa11f58a127d9a49a04838d14c526344f + () + + + void + mark_present_Type + structlibgno_1_1GenoPro_1_1Contacts_1_1Contact_1_1sequence.html + a824462162b439d1bb0eef46142db6d63 + () + + + DateStart_p + element_DateStart + structlibgno_1_1GenoPro_1_1Contacts_1_1Contact_1_1sequence.html + aca3d6415960a703c49b78c26d1e212aa + () + + + void + set_DateStart + structlibgno_1_1GenoPro_1_1Contacts_1_1Contact_1_1sequence.html + aa56534309d7aa1928a6ac5142c19b7e5 + (DOMString val) + + + DOMString + get_DateStart_string + structlibgno_1_1GenoPro_1_1Contacts_1_1Contact_1_1sequence.html + a7789323379a8b7a15f5d96b94d987a09 + () + + + void + mark_present_DateStart + structlibgno_1_1GenoPro_1_1Contacts_1_1Contact_1_1sequence.html + afa168cebcbcc440b1e2bb0045160bd42 + () + + + DateEnd_p + element_DateEnd + structlibgno_1_1GenoPro_1_1Contacts_1_1Contact_1_1sequence.html + a74b94f1e07720e02a354a6656108e321 + () + + + void + set_DateEnd + structlibgno_1_1GenoPro_1_1Contacts_1_1Contact_1_1sequence.html + aa30d014132bf6c299db54a137510bf1e + (DOMString val) + + + DOMString + get_DateEnd_string + structlibgno_1_1GenoPro_1_1Contacts_1_1Contact_1_1sequence.html + a3173f5cfcb7341878d6c831ab583d29e + () + + + void + mark_present_DateEnd + structlibgno_1_1GenoPro_1_1Contacts_1_1Contact_1_1sequence.html + aa6049956483941fbf7032f9d0fde78a5 + () + + + XsdFsmBase * + clone + structlibgno_1_1GenoPro_1_1Contacts_1_1Contact_1_1sequence.html + ad30c3b7bb6f93cc6c819d80b10794b2f + () const + + + Contact * + _that + structlibgno_1_1GenoPro_1_1Contacts_1_1Contact_1_1sequence.html + afc78c68aa1fed1f3af1a5c5d83d39060 + + + + + libgno::GenoPro::Contacts::sequence + structlibgno_1_1GenoPro_1_1Contacts_1_1sequence.html + + + sequence + structlibgno_1_1GenoPro_1_1Contacts_1_1sequence.html + a7ddc59e128e3bb21882ae98d7e2996f8 + (Contacts *that) + + + List< Contact_ptr > + elements_Contact + structlibgno_1_1GenoPro_1_1Contacts_1_1sequence.html + a711b25096d01b8e5e1912dc3dc31d84c + () + + + Contact_p + element_Contact_at + structlibgno_1_1GenoPro_1_1Contacts_1_1sequence.html + add4f608539719a30d64ea15e8d811942 + (unsigned int idx) + + + Contact_p + add_node_Contact + structlibgno_1_1GenoPro_1_1Contacts_1_1sequence.html + ae2c705aad698c7aadea36d28918f84f6 + () + + + List< Contact_ptr > + set_count_Contact + structlibgno_1_1GenoPro_1_1Contacts_1_1sequence.html + aa0eaeea3ce6b1033ae1de33dee253556 + (unsigned int size) + + + XsdFsmBase * + clone + structlibgno_1_1GenoPro_1_1Contacts_1_1sequence.html + aef77cbab96f4b74fc92c09179a96f304 + () const + + + Contacts * + _that + structlibgno_1_1GenoPro_1_1Contacts_1_1sequence.html + a6b3c25e9e79f51c83d544798d5cd0eac + + + + + libgno::GenoPro::Educations + classlibgno_1_1GenoPro_1_1Educations.html + libgno::GenoPro::Educations::Education + libgno::GenoPro::Educations::sequence + + AutoPtr< Education > + Education_ptr + classlibgno_1_1GenoPro_1_1Educations.html + a09dc780b90feca95973c0cd6ba2fb558 + + + + Education * + Education_p + classlibgno_1_1GenoPro_1_1Educations.html + a93889665d4b496d28f15bfd3d0b559d1 + + + + + Educations + classlibgno_1_1GenoPro_1_1Educations.html + a6eb35625b8b24e08d1b376d82de855b8 + (ElementCreateArgs args) + + + List< Education_ptr > + elements_Education + classlibgno_1_1GenoPro_1_1Educations.html + a64313c2a495c70ef6234154b08d91c14 + () + + + Education_p + element_Education_at + classlibgno_1_1GenoPro_1_1Educations.html + af37d9c29717452f5af55b30eec0f7514 + (unsigned int idx) + + + Education_p + add_node_Education + classlibgno_1_1GenoPro_1_1Educations.html + ac97543e5efa86fed0515f299a1b998d4 + () + + + List< Education_ptr > + set_count_Education + classlibgno_1_1GenoPro_1_1Educations.html + a438564f4169725c3701763c86910c38d + (unsigned int size) + + + sequence * + get_sequence + classlibgno_1_1GenoPro_1_1Educations.html + abd0b65dfc7d3fb6b06d57683817a8a5c + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1Educations.html + a23805d84af6e313d23cb6b22d96267d6 + () + + + Education_ptr + create_Education + classlibgno_1_1GenoPro_1_1Educations.html + a2acbbb1da79daaf640704b502a666701 + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1Educations.html + ad7e4651164935220b2dc5c3d0c734cde + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1Educations.html + a34faab6adc662934f2cbb236e4094323 + + + + AutoPtr< sequence > + _sequence + classlibgno_1_1GenoPro_1_1Educations.html + a52c10f98edf73fb2014f858c07e3c7a3 + + + + List< Education_ptr > + _list_Education + classlibgno_1_1GenoPro_1_1Educations.html + a8f2be2ca78b347bb84a43fb85cc722be + + + + + libgno::GenoPro::Educations::Education + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + libgno::GenoPro::Educations::Education::Level + libgno::GenoPro::Educations::Education::sequence + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_string > > + Institution_ptr + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + a954f9b0365855864de9de3e1b0ae92a3 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_string > * + Institution_p + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + a95140cc4c1756cb151e8849eb750854b + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_string > + Institution + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + ae52383f02367270fbce8743e69a3cffe + + + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > > + Place_ptr + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + aad3af4a58a7facb496c20941dabda75a + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > * + Place_p + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + a799f0a74e78c63ab1d4e23b6ed672901 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > + Place + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + a090c5cc00761441ecb44906c6aa80979 + + + + AutoPtr< Level > + Level_ptr + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + a853b0e7b9771461ec9d4aeeabbe86316 + + + + Level * + Level_p + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + a6179b1a1e33aec9f63e03b462ab348cb + + + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > > + Achievement_ptr + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + af474dbf7521fb13a688e824c3fc53d20 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > * + Achievement_p + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + a62b76a560150f3027d83a98215ad322b + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > + Achievement + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + ad06152125ef03e6246b102ebb0dfa79c + + + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > > + Termination_ptr + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + ad866f1c66df3491d0ee0842b618bfc2e + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > * + Termination_p + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + abc134a484374b4b488a3530c5467c5d4 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > + Termination + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + a539adfbaf33ba39a9adc865f8c3ded82 + + + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_string > > + DateStart_ptr + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + a96f5ab8c543035adb4eee2005bebb5d0 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_string > * + DateStart_p + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + ae42a5301e7baba05fd542f708a66b66d + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_string > + DateStart + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + a05632ab30a688e86b556978fe4e319f9 + + + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_string > > + DateEnd_ptr + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + ae6c8f3f09ea3bd4250eeedf876afebd5 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_string > * + DateEnd_p + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + a9e5f4c4259a4fd63ce7c706fd1a6afe9 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_string > + DateEnd + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + a6923e148802b389de0db8b941abfde60 + + + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > > + StudyType_ptr + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + afda0a34cb69a278d4d113c88fcf8a692 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > * + StudyType_p + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + adeaec6253b29041fca635ef480f6b6a2 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > + StudyType + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + a9de870a1b3cffcfee624827ee1c3b50d + + + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_string > > + Comment_ptr + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + a30a90070637967b983ba2fe4bf481fcd + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_string > * + Comment_p + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + a10b8f65741e49129d9e7c66a5e7f0242 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_string > + Comment + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + a2a9d410623316aceb371aa94f2078ffe + + + + AutoPtr< XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > > + attr_ID_ptr + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + a059711ddef906d63b3e4c300b63e15cc + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > * + attr_ID_p + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + a9c7338e533c58104d2b50eac91164cd4 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > + attr_ID + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + afc2220b63b149b61787d595b4f21149d + + + + + Education + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + a2498e17431a2d074f33fc6c6e2e5f14f + (ElementCreateArgs args) + + + Institution_p + element_Institution + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + ac1b74eed9840f9338e6697703a95c5b9 + () + + + void + set_Institution + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + a72935e3e971493b3c83f5cedd1d1f198 + (DOMString val) + + + DOMString + get_Institution_string + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + a09eeca82c357e11f7e2fd38be340ba88 + () + + + void + mark_present_Institution + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + a9f5029208773ae5df600096da308a362 + () + + + Place_p + element_Place + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + a32fca81c61379846688e19f63c75df75 + () + + + void + set_Place + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + abe6f1cd484a8b1ddcfcca5b91bef2c54 + (DOMString val) + + + DOMString + get_Place_string + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + a92148e50edd62c966d57728674c712b5 + () + + + void + mark_present_Place + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + a756c405457c8877ad59fdb8bd62fa4d6 + () + + + Level_p + element_Level + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + a3b66b7a1d42da9274165ee733a3c84c9 + () + + + void + mark_present_Level + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + a08b0faf425d20972a1e104d91e6cfc21 + () + + + Achievement_p + element_Achievement + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + a2b741149b328d5167b2895502619eb76 + () + + + void + set_Achievement + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + a23f065a2d67bb25683adf2b1cbd8b7d7 + (DOMString val) + + + DOMString + get_Achievement_string + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + afea92e1912259dd6cacbd0d241541d61 + () + + + void + mark_present_Achievement + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + a4a8d4d1a1d6c370d5a0a353e9fdc9474 + () + + + Termination_p + element_Termination + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + ae10f5b247deed1f94cbfd7a142ac3efb + () + + + void + set_Termination + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + aece29b42fb735c725050f0178d5dcae7 + (DOMString val) + + + DOMString + get_Termination_string + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + ad23ede52c07761822126695a0315bae6 + () + + + void + mark_present_Termination + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + aa23e4f2e87765da66318c1530b4a79a1 + () + + + DateStart_p + element_DateStart + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + a7afcdb016013f5ddcb1f5143ebe31f89 + () + + + void + set_DateStart + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + a45b03f0f9a8a52cfc4903f074f473a83 + (DOMString val) + + + DOMString + get_DateStart_string + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + ade37f6003989cd6256d5d479e8644da8 + () + + + void + mark_present_DateStart + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + aef62ab76781ec874cb17fab6c798aeff + () + + + DateEnd_p + element_DateEnd + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + a2f0e33464cedd5524689ac003eb64ba4 + () + + + void + set_DateEnd + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + a3726f6af1d765bfd8a3400dc5d7b3bca + (DOMString val) + + + DOMString + get_DateEnd_string + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + a0da5471a8f79b2a3c3e049b0a475e434 + () + + + void + mark_present_DateEnd + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + a45d029f8d566eae90dbb243f98eb5161 + () + + + StudyType_p + element_StudyType + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + a82b5879ac0019c1ef04a862189c632a1 + () + + + void + set_StudyType + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + a0dc815d5d9e2e29f987bd600e822d11a + (DOMString val) + + + DOMString + get_StudyType_string + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + af4e5101b2ceb2bca28fb11d5a6bed69e + () + + + void + mark_present_StudyType + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + af67f306fac4b24b7c28f8419e0cfe54c + () + + + Comment_p + element_Comment + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + a15c29e40764a9b1cf693c289add64c8c + () + + + void + set_Comment + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + a556be9433c61fd6b348cfb94de838e50 + (DOMString val) + + + DOMString + get_Comment_string + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + a13f556055955587607147c4167cdc9e8 + () + + + void + mark_present_Comment + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + a6f397cdc40f8edca01853c3327601d72 + () + + + attr_ID_p + attribute_attr_ID + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + a11d8cbb3b73cedc37ec411c342a46d57 + () + + + void + set_attr_ID + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + af7fb6b0f61fcf7b2a0a436def91a8f87 + (DOMString val) + + + DOMString + get_attr_ID_string + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + a2c4681ae4ed611ebc8003d09462a9692 + () + + + sequence * + get_sequence + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + a7a496bfefcdf0b190d3661c64a8cf864 + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + a93dbda96d7d5dcc269f4de011bda2c1d + () + + + Institution_ptr + create_Institution + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + ae74c9d3b54f03008d1cb491c2ba042d4 + (FsmCbOptions &options) + + + Place_ptr + create_Place + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + ac7c7e1d8406e28e39b81a33b47295a8e + (FsmCbOptions &options) + + + Level_ptr + create_Level + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + aa6c8ecdecd77285f773155527086e941 + (FsmCbOptions &options) + + + Achievement_ptr + create_Achievement + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + a683d44c89806d6fb859130a7ea49504d + (FsmCbOptions &options) + + + Termination_ptr + create_Termination + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + a34a0273ae00fb77d430a531e5171987c + (FsmCbOptions &options) + + + DateStart_ptr + create_DateStart + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + acb3f322b7f44296e93e29c3df80edbb2 + (FsmCbOptions &options) + + + DateEnd_ptr + create_DateEnd + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + aaed1fba7bb19bbeccf9f75b15051fe47 + (FsmCbOptions &options) + + + StudyType_ptr + create_StudyType + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + a280d9f718d7529f1e214d681addb5364 + (FsmCbOptions &options) + + + Comment_ptr + create_Comment + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + a70f46c5b838df6ab996a4de402d9a574 + (FsmCbOptions &options) + + + attr_ID_ptr + create_attr_ID + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + aca2d088f316a20a9c6fc852d686bcad3 + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + ab21144f05e87f484203bbc0fc217e5fc + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + a636b431d33e02344305f3dbe76ad986b + + + + AutoPtr< sequence > + _sequence + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + a1d4ceef0c38b52d2dc021c5a39c0ae2d + + + + Institution_ptr + _Institution + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + ad25b820f5f3bc3d9fe0dd19fd312228f + + + + Place_ptr + _Place + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + a5c6ed7fb97ebf046a50f9fa817646a32 + + + + Level_ptr + _Level + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + ae1f430bcee26d9052ff41099cc0102a7 + + + + Achievement_ptr + _Achievement + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + ac694d1257b0245398f608beb1168555a + + + + Termination_ptr + _Termination + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + a1e4f466a8268091b4d03d9e05b788082 + + + + DateStart_ptr + _DateStart + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + ad518f0024ee2fb86c99fd297b9d7c2d9 + + + + DateEnd_ptr + _DateEnd + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + ac9c4ae8f67b576f70600c669961afa22 + + + + StudyType_ptr + _StudyType + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + a0108a3ccda9707ac2b04164cbc79b274 + + + + Comment_ptr + _Comment + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + a57aa0f999a53c8cfe5ad165a9930206d + + + + attr_ID_ptr + _attr_ID + classlibgno_1_1GenoPro_1_1Educations_1_1Education.html + ab447042fe5892a99f7a5717fce3d6a75 + + + + + libgno::GenoPro::Educations::Education::Level + classlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1Level.html + libgno::GenoPro::Educations::Education::Level::sequence + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_int > > + Years_ptr + classlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1Level.html + a07e1abb2512fc4b2c2beae9fae30da71 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_int > * + Years_p + classlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1Level.html + a08c16d9b07e47daac38f0361dcc76ebd + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_int > + Years + classlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1Level.html + a30483c6e0a0ffcb11c92b0e82f6c09d9 + + + + + Level + classlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1Level.html + a4e01b37ef5145f9a93ce901f19fa4d12 + (ElementCreateArgs args) + + + Years_p + element_Years + classlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1Level.html + aa17620fb485418307687bb9c19b26e7d + () + + + void + set_Years + classlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1Level.html + a3181ad23407195d4f0dfcf02f6d6218f + (DOMString val) + + + DOMString + get_Years_string + classlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1Level.html + a81666ea3bf9f6b46fe8e5225906ba1d8 + () + + + void + set_Years + classlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1Level.html + a92735d646b7c6b4eaf107a2d61a00467 + (int val) + + + int + get_Years + classlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1Level.html + ac26ba5b25af5d2cf51bcaa6516895bea + () + + + void + mark_present_Years + classlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1Level.html + aadc7aca52d61c28d7dbf48198e9b17dc + () + + + sequence * + get_sequence + classlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1Level.html + adfd79c9a63eebbd22a2bd231c01a0210 + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1Level.html + af1d938d8ac8b3ad031818d58081cfbdf + () + + + Years_ptr + create_Years + classlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1Level.html + a17b26f74fc9393e78ebf49c9b92c41ba + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1Level.html + a20e262f19872d893d8fecfe66f5706f2 + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1Level.html + a72ae6398646b36d7240f4731115924d1 + + + + AutoPtr< sequence > + _sequence + classlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1Level.html + a771ed6f645409cc853518ab70e37b94f + + + + Years_ptr + _Years + classlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1Level.html + a1e276e4ad32cab1e3fa1cc394d53d8e2 + + + + + libgno::GenoPro::Educations::Education::Level::sequence + structlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1Level_1_1sequence.html + + + sequence + structlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1Level_1_1sequence.html + ab5f137eb8dab5685a3cb1d593f3b8cce + (Level *that) + + + Years_p + element_Years + structlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1Level_1_1sequence.html + adb0569b4d38e3ab545fc203063e31e64 + () + + + void + set_Years + structlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1Level_1_1sequence.html + a513322853a2b3370d4d4bc5bc7422b22 + (DOMString val) + + + DOMString + get_Years_string + structlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1Level_1_1sequence.html + a53157b86e7022d3ec94ab28b1b138e00 + () + + + void + set_Years + structlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1Level_1_1sequence.html + ad429984167284a3d852a01db5ccb88db + (int val) + + + int + get_Years + structlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1Level_1_1sequence.html + a9444de5948a45899c3b6503749b7c84e + () + + + void + mark_present_Years + structlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1Level_1_1sequence.html + a31104baff7b5b25a89f37115f834958d + () + + + XsdFsmBase * + clone + structlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1Level_1_1sequence.html + ae0496c8127e065970752f93c8b85fdff + () const + + + Level * + _that + structlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1Level_1_1sequence.html + a1cecc63608ad2745eda694113bb79a73 + + + + + libgno::GenoPro::Educations::Education::sequence + structlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1sequence.html + + + sequence + structlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1sequence.html + a33715bc61233535e7cd4a3c9e261f871 + (Education *that) + + + Institution_p + element_Institution + structlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1sequence.html + a73fc16c8cc613c98a5978d2bb12e0810 + () + + + void + set_Institution + structlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1sequence.html + aba1c84ede4b11016f420fb42eef7d064 + (DOMString val) + + + DOMString + get_Institution_string + structlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1sequence.html + aa4daee1babd831acdd8f529d85debf9d + () + + + void + mark_present_Institution + structlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1sequence.html + a4b9a71dedef548c2ae107e4af0ed75f9 + () + + + Place_p + element_Place + structlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1sequence.html + acc5579cedf64880a7526049b22e3407e + () + + + void + set_Place + structlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1sequence.html + ac197cb8c63fd0210764e4e2e0663fb7f + (DOMString val) + + + DOMString + get_Place_string + structlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1sequence.html + aa971651d5057e35bca6b05294394737c + () + + + void + mark_present_Place + structlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1sequence.html + a0095921e0eb88226929d0142fccc8861 + () + + + Level_p + element_Level + structlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1sequence.html + af87afc8b66ce288396a8d5e121e2c77a + () + + + void + mark_present_Level + structlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1sequence.html + aadb44fe50de32dc0c8286211b20ee977 + () + + + Achievement_p + element_Achievement + structlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1sequence.html + a43ef02cd2e334a92b459ae075f1e8d47 + () + + + void + set_Achievement + structlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1sequence.html + a7c17367a71f4944aeae59f24ee5a4f23 + (DOMString val) + + + DOMString + get_Achievement_string + structlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1sequence.html + a8a2488f78526942403b81a97476a7275 + () + + + void + mark_present_Achievement + structlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1sequence.html + a86477b7a4bf7a1d3f61506a8797165c4 + () + + + Termination_p + element_Termination + structlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1sequence.html + a556461a07b9c4976dc9775dc1445b572 + () + + + void + set_Termination + structlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1sequence.html + a00ee99f5f955f44e318b1d0d575471ab + (DOMString val) + + + DOMString + get_Termination_string + structlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1sequence.html + af70b6f515d34dd4999829a117209caa0 + () + + + void + mark_present_Termination + structlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1sequence.html + a919b6b2f3a5f5c76b9918c2754e9f369 + () + + + DateStart_p + element_DateStart + structlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1sequence.html + ac3e879c97f75b51bfdf471f0a8b45330 + () + + + void + set_DateStart + structlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1sequence.html + aac68122ef4126860303761c8e3073b8c + (DOMString val) + + + DOMString + get_DateStart_string + structlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1sequence.html + a7c688f365c448d3715530fc407010c6b + () + + + void + mark_present_DateStart + structlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1sequence.html + ac3038e8144b788ae615a0b7970096daa + () + + + DateEnd_p + element_DateEnd + structlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1sequence.html + a44c14ece1a3de4d6e9fff87f7b63b944 + () + + + void + set_DateEnd + structlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1sequence.html + a2fbd5ea37ef32590c78ee70a27aba1ac + (DOMString val) + + + DOMString + get_DateEnd_string + structlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1sequence.html + a8905f19735e717f58050d6dfe2568208 + () + + + void + mark_present_DateEnd + structlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1sequence.html + a404e957b974339db3dd98d70c97d49b1 + () + + + StudyType_p + element_StudyType + structlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1sequence.html + a97ab476ead0aac4d42945d5be18402a3 + () + + + void + set_StudyType + structlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1sequence.html + aca2097bad0ce900d2187e53cc707c962 + (DOMString val) + + + DOMString + get_StudyType_string + structlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1sequence.html + a902e57fc8b455f5627f77a89f9cb198b + () + + + void + mark_present_StudyType + structlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1sequence.html + ac2ceea34ce643410f9c2f5bb340c73c6 + () + + + Comment_p + element_Comment + structlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1sequence.html + ac89b59dc19ffe734985f7e5fb852c524 + () + + + void + set_Comment + structlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1sequence.html + a208c2c1747c0c64147824124b58c6ef4 + (DOMString val) + + + DOMString + get_Comment_string + structlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1sequence.html + a13ddb578dc883d1feeed4be770abac31 + () + + + void + mark_present_Comment + structlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1sequence.html + ac238ebbc8969746cd6ef9432eb0327a0 + () + + + XsdFsmBase * + clone + structlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1sequence.html + a17902c32af1d5077115220e0253a100a + () const + + + Education * + _that + structlibgno_1_1GenoPro_1_1Educations_1_1Education_1_1sequence.html + accdde726bd3a481900fa4c8431b46d53 + + + + + libgno::GenoPro::Educations::sequence + structlibgno_1_1GenoPro_1_1Educations_1_1sequence.html + + + sequence + structlibgno_1_1GenoPro_1_1Educations_1_1sequence.html + ab40b9a7c0f1b0261362c86b603871389 + (Educations *that) + + + List< Education_ptr > + elements_Education + structlibgno_1_1GenoPro_1_1Educations_1_1sequence.html + ac6b8afd34d9c96ae3d11a06b078a44c1 + () + + + Education_p + element_Education_at + structlibgno_1_1GenoPro_1_1Educations_1_1sequence.html + aaf42846441835aa7971058a1ecca313c + (unsigned int idx) + + + Education_p + add_node_Education + structlibgno_1_1GenoPro_1_1Educations_1_1sequence.html + ac7a4f940e14129090ff12c48b771fce1 + () + + + List< Education_ptr > + set_count_Education + structlibgno_1_1GenoPro_1_1Educations_1_1sequence.html + ac481142c0ff4eb25bbb5ef6a8864096e + (unsigned int size) + + + XsdFsmBase * + clone + structlibgno_1_1GenoPro_1_1Educations_1_1sequence.html + acc50a063cdb6cb20e6924f358d57c9fb + () const + + + Educations * + _that + structlibgno_1_1GenoPro_1_1Educations_1_1sequence.html + aaf8d842f59120941d9cffd2281d0cb59 + + + + + libgno::GenoPro::Families + classlibgno_1_1GenoPro_1_1Families.html + libgno::GenoPro::Families::Family + libgno::GenoPro::Families::sequence + + AutoPtr< Family > + Family_ptr + classlibgno_1_1GenoPro_1_1Families.html + a3e1982962798f623703d87673a7638e4 + + + + Family * + Family_p + classlibgno_1_1GenoPro_1_1Families.html + a036b55dfed619cc6197892d11b5764c7 + + + + + Families + classlibgno_1_1GenoPro_1_1Families.html + a28e6da25b3a806b8e9f7b3323758d6b9 + (ElementCreateArgs args) + + + List< Family_ptr > + elements_Family + classlibgno_1_1GenoPro_1_1Families.html + a953a9206129388e93355009c07f5f663 + () + + + Family_p + element_Family_at + classlibgno_1_1GenoPro_1_1Families.html + a3854407c70aa174845300ecabfb8c4b6 + (unsigned int idx) + + + Family_p + add_node_Family + classlibgno_1_1GenoPro_1_1Families.html + ac71d743d4bf052f91755848bd2791d31 + () + + + List< Family_ptr > + set_count_Family + classlibgno_1_1GenoPro_1_1Families.html + a063094e93480dd8b2d90f0ca20d9c799 + (unsigned int size) + + + sequence * + get_sequence + classlibgno_1_1GenoPro_1_1Families.html + a79e05f756bad83f5578671d79fe3cfb4 + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1Families.html + acce57bb0454312e5f2921eb0c5195bcb + () + + + Family_ptr + create_Family + classlibgno_1_1GenoPro_1_1Families.html + a38cb930d7d51f8a1f5b292905fed500e + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1Families.html + a226869a9c48290e933fb7a3ba6c2e015 + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1Families.html + a1ac0b511eefde448948ace2ef5da9e15 + + + + AutoPtr< sequence > + _sequence + classlibgno_1_1GenoPro_1_1Families.html + ae5316a71d7d013c777bdf94220c61bb3 + + + + List< Family_ptr > + _list_Family + classlibgno_1_1GenoPro_1_1Families.html + ab7fb1b6f391fc077e2c04185ee13bc55 + + + + + libgno::GenoPro::Families::Family + classlibgno_1_1GenoPro_1_1Families_1_1Family.html + libgno::GenoPro::Families::Family::Position + libgno::GenoPro::Families::Family::sequence + + AutoPtr< Position > + Position_ptr + classlibgno_1_1GenoPro_1_1Families_1_1Family.html + aecbd89d89c317bc8a1d01dad178b5f23 + + + + Position * + Position_p + classlibgno_1_1GenoPro_1_1Families_1_1Family.html + aca3aa581e1e9b0473a2b0b9c36c17840 + + + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > > + Relation_ptr + classlibgno_1_1GenoPro_1_1Families_1_1Family.html + aea52accc9d4892019bd1d96ebc0125cd + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > * + Relation_p + classlibgno_1_1GenoPro_1_1Families_1_1Family.html + ab5699bf6ec69352f3b3bf874a33e8b88 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > + Relation + classlibgno_1_1GenoPro_1_1Families_1_1Family.html + ae79a28a11912937370711cd12ee5fb16 + + + + AutoPtr< XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > > + attr_ID_ptr + classlibgno_1_1GenoPro_1_1Families_1_1Family.html + ae9a14d0430c8ff684c675995173435d7 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > * + attr_ID_p + classlibgno_1_1GenoPro_1_1Families_1_1Family.html + a81b62391da275fe80d2a0ea69253a7e3 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > + attr_ID + classlibgno_1_1GenoPro_1_1Families_1_1Family.html + aa549c42818f6e5ee4a5074743cca7314 + + + + + Family + classlibgno_1_1GenoPro_1_1Families_1_1Family.html + a5eda1bfaa05785d11d6debd234f9b3f6 + (ElementCreateArgs args) + + + Position_p + element_Position + classlibgno_1_1GenoPro_1_1Families_1_1Family.html + a8464a9ade4c5eec71b5b2c8eb310dcef + () + + + void + mark_present_Position + classlibgno_1_1GenoPro_1_1Families_1_1Family.html + ac14856c270733eacb967fd9ca6bbd7ce + () + + + Relation_p + element_Relation + classlibgno_1_1GenoPro_1_1Families_1_1Family.html + a27c2fb1403da479038866fb1f94d92a9 + () + + + void + set_Relation + classlibgno_1_1GenoPro_1_1Families_1_1Family.html + ae67071e72641f770c4e1827f0cd7434c + (DOMString val) + + + DOMString + get_Relation_string + classlibgno_1_1GenoPro_1_1Families_1_1Family.html + ad855aeeca35b9de2937947f1abca8a45 + () + + + void + mark_present_Relation + classlibgno_1_1GenoPro_1_1Families_1_1Family.html + a5fb3c1c7337fabdb5b3665c72efe0056 + () + + + attr_ID_p + attribute_attr_ID + classlibgno_1_1GenoPro_1_1Families_1_1Family.html + ae0dfec3878600fd7d192fbfd680a2d25 + () + + + void + set_attr_ID + classlibgno_1_1GenoPro_1_1Families_1_1Family.html + a87e266fd8a5ffe464be00bab6db655dc + (DOMString val) + + + DOMString + get_attr_ID_string + classlibgno_1_1GenoPro_1_1Families_1_1Family.html + a1f1ed36dcf0c8b4087c73119e3a68994 + () + + + sequence * + get_sequence + classlibgno_1_1GenoPro_1_1Families_1_1Family.html + ac6637c0e49a0ea227e0fb7d8041e1ef3 + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1Families_1_1Family.html + a28669cfc73b42b8bf93d3ba8d6894f68 + () + + + Position_ptr + create_Position + classlibgno_1_1GenoPro_1_1Families_1_1Family.html + ab3d26912944e51c67ceb1a84240e3ae1 + (FsmCbOptions &options) + + + Relation_ptr + create_Relation + classlibgno_1_1GenoPro_1_1Families_1_1Family.html + aa41585ee2dfec7082a9e35213847cae3 + (FsmCbOptions &options) + + + attr_ID_ptr + create_attr_ID + classlibgno_1_1GenoPro_1_1Families_1_1Family.html + a6a9ada68cc92cc6c73660d10ede7c69f + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1Families_1_1Family.html + a4b9f5e9ac47f8d629d3356a880014a81 + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1Families_1_1Family.html + a8e1b045c4518020104e104d5e4373854 + + + + AutoPtr< sequence > + _sequence + classlibgno_1_1GenoPro_1_1Families_1_1Family.html + a2c45b3002b91bcb1556d258810e773c5 + + + + Position_ptr + _Position + classlibgno_1_1GenoPro_1_1Families_1_1Family.html + a1e34ff2495a689c128086e30be080993 + + + + Relation_ptr + _Relation + classlibgno_1_1GenoPro_1_1Families_1_1Family.html + a98015a347c2480c2a87ae752e8bf0519 + + + + attr_ID_ptr + _attr_ID + classlibgno_1_1GenoPro_1_1Families_1_1Family.html + a0bc12c0ea099214373f7864c0fa0cdb7 + + + + + libgno::GenoPro::Families::Family::Position + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position.html + libgno::GenoPro::Families::Family::Position::Bottom + libgno::GenoPro::Families::Family::Position::sequence + libgno::GenoPro::Families::Family::Position::Top + + AutoPtr< Top > + Top_ptr + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position.html + af7454781e2d8ac938dab234fe5554d1d + + + + Top * + Top_p + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position.html + aa1a824fcd0ebfe8e79e65e681413989d + + + + AutoPtr< Bottom > + Bottom_ptr + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position.html + ad0fcde2f1dca57ff7034ffce8ab529c9 + + + + Bottom * + Bottom_p + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position.html + a41605ac86a844d0407684c213667413f + + + + + Position + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position.html + a6060277a78ed0847d6b2ed13ccfc1aec + (ElementCreateArgs args) + + + Top_p + element_Top + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position.html + a917c07bae4454caa9807582700de1415 + () + + + void + mark_present_Top + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position.html + ae837e00cd3fa618fefed6e3d2dece905 + () + + + Bottom_p + element_Bottom + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position.html + a5c054a330b0d92a8828501e4da95a0f7 + () + + + void + mark_present_Bottom + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position.html + a1e9fb523d5864b2226e2a784e751fa1c + () + + + sequence * + get_sequence + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position.html + a4a4ecd06b97ee26e59f96b290ef365f4 + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position.html + abef640638676893e31ea336fc395b6b7 + () + + + Top_ptr + create_Top + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position.html + a3a8f581b3cd168ffa4fdeac8f4110acc + (FsmCbOptions &options) + + + Bottom_ptr + create_Bottom + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position.html + ae62c5076dd2a1a3d0e070018da757767 + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position.html + a7c42131046675247ad3c1cdef3601845 + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position.html + adfb9a670a236f35fd4cdd068735cd088 + + + + AutoPtr< sequence > + _sequence + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position.html + aa21825928111e934ef3195e4c609e3f2 + + + + Top_ptr + _Top + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position.html + a6545717e112c46e318101a8725ca2f4c + + + + Bottom_ptr + _Bottom + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position.html + a36996fe7c9b6d75522406a4fa76b561b + + + + + libgno::GenoPro::Families::Family::Position::Bottom + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Bottom.html + libgno::GenoPro::Families::Family::Position::Bottom::sequence + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > > + Left_ptr + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Bottom.html + ab2ffcd708f9a058b9bdc732c802d53e8 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > * + Left_p + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Bottom.html + abebc3387f8cd13a31faf147dfde6ecad + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > + Left + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Bottom.html + acabe543799d88f8aecbbb6cc13393cd8 + + + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > > + Right_ptr + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Bottom.html + ad41f94a90ffbf5210a4109a5a3ce6319 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > * + Right_p + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Bottom.html + aee95728f0c8b2e46595fd1e1dde527a1 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > + Right + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Bottom.html + af898d2ff23b0dcceba4418bfb5354799 + + + + + Bottom + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Bottom.html + a6c1f5c706e9c2aafeb80da7a0591109f + (ElementCreateArgs args) + + + Left_p + element_Left + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Bottom.html + a02040d2e2f0a303351739057b3c3fc45 + () + + + void + set_Left + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Bottom.html + aba0982a0a0914faee8c40844c286c8d0 + (DOMString val) + + + DOMString + get_Left_string + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Bottom.html + a5d336ddd94189651b787d06c6b87cb69 + () + + + void + mark_present_Left + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Bottom.html + a72f05c97c32688845dd540fca0666551 + () + + + Right_p + element_Right + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Bottom.html + aab21795aa7910fcca5645f58a78e62fa + () + + + void + set_Right + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Bottom.html + a2bc2c9215e93b553a282a3c649d44aab + (DOMString val) + + + DOMString + get_Right_string + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Bottom.html + a4f17c2efedc06e86f7a9aa09a962ab35 + () + + + void + mark_present_Right + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Bottom.html + aa76fdd0d2747d43cf4648c1455c2a63d + () + + + sequence * + get_sequence + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Bottom.html + ae5a3076fc64965e84211aa003b709e27 + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Bottom.html + a58adf648ecf40247beedf83b592ca647 + () + + + Left_ptr + create_Left + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Bottom.html + a6f0cd7fec1025e402ce943f3efb2c98f + (FsmCbOptions &options) + + + Right_ptr + create_Right + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Bottom.html + abd65f820d0e5d691e88c1bce4acbb722 + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Bottom.html + a333287a97b069cf4335b94e7b45e4fc0 + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Bottom.html + a4e78eeb279f2e31d9b23194582f278b2 + + + + AutoPtr< sequence > + _sequence + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Bottom.html + a172d85d8dc875ce8d43f7befbfa61b51 + + + + Left_ptr + _Left + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Bottom.html + a6cc8eb27ccd121343d5f5dcb8a502e10 + + + + Right_ptr + _Right + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Bottom.html + a8d5f0b7e9a899a7a2049d104b7e12b89 + + + + + libgno::GenoPro::Families::Family::Position::Bottom::sequence + structlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Bottom_1_1sequence.html + + + sequence + structlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Bottom_1_1sequence.html + a2b609beb19592dc4612e494bc16d2acb + (Bottom *that) + + + Left_p + element_Left + structlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Bottom_1_1sequence.html + ad56e73c5ec0d85c997503b2598efbd1f + () + + + void + set_Left + structlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Bottom_1_1sequence.html + a1334e841f3008304af7ec9037be18652 + (DOMString val) + + + DOMString + get_Left_string + structlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Bottom_1_1sequence.html + a18911438f7b657d6297419735239eb06 + () + + + void + mark_present_Left + structlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Bottom_1_1sequence.html + aec09483a6c729dff9b9fb0cc943b44be + () + + + Right_p + element_Right + structlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Bottom_1_1sequence.html + af33213a5fb28477f7f180fd347e26e80 + () + + + void + set_Right + structlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Bottom_1_1sequence.html + acb060aea6bbb2341a07091504e3d4b47 + (DOMString val) + + + DOMString + get_Right_string + structlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Bottom_1_1sequence.html + aebe60852faf1562c17d052b7764865a2 + () + + + void + mark_present_Right + structlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Bottom_1_1sequence.html + a72c706e446a182506b3abe4beee400af + () + + + XsdFsmBase * + clone + structlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Bottom_1_1sequence.html + a2ee3fa87584e78c6f49ea16d0b6661d8 + () const + + + Bottom * + _that + structlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Bottom_1_1sequence.html + a9ffe80cab5f37e91cd87d62f5a2682da + + + + + libgno::GenoPro::Families::Family::Position::sequence + structlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1sequence.html + + + sequence + structlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1sequence.html + a8e815c6c3ea75af2aa102e1e2ba6fc84 + (Position *that) + + + Top_p + element_Top + structlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1sequence.html + aa948a331dc75b8e9705ab02cac2db390 + () + + + void + mark_present_Top + structlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1sequence.html + a3963553853bda9605e86a207a177a7d4 + () + + + Bottom_p + element_Bottom + structlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1sequence.html + a509d018b859d2ef37414324f61b2f866 + () + + + void + mark_present_Bottom + structlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1sequence.html + afc9fc270a68741b1502c21192e283fcb + () + + + XsdFsmBase * + clone + structlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1sequence.html + a124c4b51f9a22adc93da5d6f572044bd + () const + + + Position * + _that + structlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1sequence.html + ae304c8bd74464c81f7578ef39a356bc6 + + + + + libgno::GenoPro::Families::Family::Position::Top + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Top.html + libgno::GenoPro::Families::Family::Position::Top::sequence + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > > + Left_ptr + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Top.html + a9eaa36733d6f8a98c83543d0a792e9a5 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > * + Left_p + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Top.html + af1cbe766a012dbceaec6b1db0dced1de + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > + Left + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Top.html + ac53a6e2f039e315ef19c2ab50ae8acb0 + + + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > > + Right_ptr + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Top.html + af15b8aa6cf2018c25743d2b0321f111e + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > * + Right_p + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Top.html + a4210c423878bd4724fd5f583fcdc3086 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > + Right + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Top.html + a665d2e5e585d75355781bc098c9d59c3 + + + + + Top + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Top.html + aa9dd0dc0e34bbb94a13ab8a4789504d9 + (ElementCreateArgs args) + + + Left_p + element_Left + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Top.html + a74311f633c0cb7aaf8187cc42801c855 + () + + + void + set_Left + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Top.html + a6942e76301bd4c1b3e39bf590bfab9d1 + (DOMString val) + + + DOMString + get_Left_string + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Top.html + a60f697f84055de3bf5d71d70d8812b72 + () + + + void + mark_present_Left + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Top.html + a36abb431543b9a1b54e50e8fb8c166ea + () + + + Right_p + element_Right + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Top.html + a9c2e552389e3dc86bdf7dc1ce225b0cd + () + + + void + set_Right + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Top.html + a6f97cf7ba84fbe0c7bbca20576c84995 + (DOMString val) + + + DOMString + get_Right_string + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Top.html + a6d2ad295a5ee82ac9b36ebd092f590b9 + () + + + void + mark_present_Right + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Top.html + a9a59027f59db4a8de6a26847debebf74 + () + + + sequence * + get_sequence + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Top.html + a1d1efdc8682722a25ffe9732d35b5e2a + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Top.html + affa1f38be23e77b5ffd96b2d3ea897dd + () + + + Left_ptr + create_Left + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Top.html + a1e29a77b4ca82d28765199b35e0eb620 + (FsmCbOptions &options) + + + Right_ptr + create_Right + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Top.html + aab491f58061e933c79dc623cbb705576 + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Top.html + ae10a98369f3a1c7600dc426e8ae21c7d + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Top.html + a04b6249985b58b384c83a5c23e7214d2 + + + + AutoPtr< sequence > + _sequence + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Top.html + a2abb9cf5bde961c7c790922d01ae4b8e + + + + Left_ptr + _Left + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Top.html + a7895c7a8dabd0910d09fd52b1e1a3550 + + + + Right_ptr + _Right + classlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Top.html + ac71ce2abbd9ff5006b39800874a73cad + + + + + libgno::GenoPro::Families::Family::Position::Top::sequence + structlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Top_1_1sequence.html + + + sequence + structlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Top_1_1sequence.html + aecfffd3ba64690f5e264dc08d6e8705a + (Top *that) + + + Left_p + element_Left + structlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Top_1_1sequence.html + aee3b56f1f8f3af24994a2e7badfadc06 + () + + + void + set_Left + structlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Top_1_1sequence.html + aed018cb8ec6182c60443ec115fd324b2 + (DOMString val) + + + DOMString + get_Left_string + structlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Top_1_1sequence.html + a67ce60ae3b0787364804310e42778bc5 + () + + + void + mark_present_Left + structlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Top_1_1sequence.html + a2df88603dbbf45f5a1f1e4441e9a99c8 + () + + + Right_p + element_Right + structlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Top_1_1sequence.html + abcd1e6cce6d35068af3ca6ef891b81b7 + () + + + void + set_Right + structlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Top_1_1sequence.html + a4eb281eff4ef0abe417a6bc6844d0807 + (DOMString val) + + + DOMString + get_Right_string + structlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Top_1_1sequence.html + a45c7f649b66f34d0000df5f96c00ae35 + () + + + void + mark_present_Right + structlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Top_1_1sequence.html + ab26ec83ba780666faeb05e906b4a8d98 + () + + + XsdFsmBase * + clone + structlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Top_1_1sequence.html + a55b655999e252b2619f7b1548541bb0e + () const + + + Top * + _that + structlibgno_1_1GenoPro_1_1Families_1_1Family_1_1Position_1_1Top_1_1sequence.html + aaa3ef2d4f78678a71b6a150b66c63235 + + + + + libgno::GenoPro::Families::Family::sequence + structlibgno_1_1GenoPro_1_1Families_1_1Family_1_1sequence.html + + + sequence + structlibgno_1_1GenoPro_1_1Families_1_1Family_1_1sequence.html + a54bc4655774d196f9f2dbd8be802f711 + (Family *that) + + + Position_p + element_Position + structlibgno_1_1GenoPro_1_1Families_1_1Family_1_1sequence.html + a5960e0a88db7cc91ff234681dd29c488 + () + + + void + mark_present_Position + structlibgno_1_1GenoPro_1_1Families_1_1Family_1_1sequence.html + a19a50fe56338e37c795e64dbcdb5c01f + () + + + Relation_p + element_Relation + structlibgno_1_1GenoPro_1_1Families_1_1Family_1_1sequence.html + a210c1f73b593fbc8177e12fd2be45175 + () + + + void + set_Relation + structlibgno_1_1GenoPro_1_1Families_1_1Family_1_1sequence.html + ac1c27cfb848d506d58c03f1763601aac + (DOMString val) + + + DOMString + get_Relation_string + structlibgno_1_1GenoPro_1_1Families_1_1Family_1_1sequence.html + a0ecb0838d2b09da960004d09c62fc151 + () + + + void + mark_present_Relation + structlibgno_1_1GenoPro_1_1Families_1_1Family_1_1sequence.html + a4cbd278fc2e5ed7650a6fd3982509e96 + () + + + XsdFsmBase * + clone + structlibgno_1_1GenoPro_1_1Families_1_1Family_1_1sequence.html + a0e76c0704b101997a70e0b0a500559c5 + () const + + + Family * + _that + structlibgno_1_1GenoPro_1_1Families_1_1Family_1_1sequence.html + a7e20a3672888efaee693a4301844c423 + + + + + libgno::GenoPro::Families::sequence + structlibgno_1_1GenoPro_1_1Families_1_1sequence.html + + + sequence + structlibgno_1_1GenoPro_1_1Families_1_1sequence.html + aa9633dd81d9335e19c8dbff76e07ad65 + (Families *that) + + + List< Family_ptr > + elements_Family + structlibgno_1_1GenoPro_1_1Families_1_1sequence.html + a80780dec29674c9f8d2e1bcaa6a89c5d + () + + + Family_p + element_Family_at + structlibgno_1_1GenoPro_1_1Families_1_1sequence.html + a2463eef65a5679a98beda0ee6117f399 + (unsigned int idx) + + + Family_p + add_node_Family + structlibgno_1_1GenoPro_1_1Families_1_1sequence.html + ac8654378a271c7bd7b34c6572be30e1f + () + + + List< Family_ptr > + set_count_Family + structlibgno_1_1GenoPro_1_1Families_1_1sequence.html + a418a1b44ce85ba57569b210d362b3dbd + (unsigned int size) + + + XsdFsmBase * + clone + structlibgno_1_1GenoPro_1_1Families_1_1sequence.html + a5e9329eb2a29f6a0696a1bd4f837f7e4 + () const + + + Families * + _that + structlibgno_1_1GenoPro_1_1Families_1_1sequence.html + ad5c277589a4c471f40468f7cbb0d5882 + + + + + libgno::GenoPro::GenoMaps + classlibgno_1_1GenoPro_1_1GenoMaps.html + libgno::GenoPro::GenoMaps::GenoMap + libgno::GenoPro::GenoMaps::sequence + + AutoPtr< GenoMap > + GenoMap_ptr + classlibgno_1_1GenoPro_1_1GenoMaps.html + a6ab8c5edfeb29a48477308bf943503eb + + + + GenoMap * + GenoMap_p + classlibgno_1_1GenoPro_1_1GenoMaps.html + a95191d061b940e5a2239975e19ae22aa + + + + + GenoMaps + classlibgno_1_1GenoPro_1_1GenoMaps.html + af172a49aea37e98945b023bf57851ae4 + (ElementCreateArgs args) + + + List< GenoMap_ptr > + elements_GenoMap + classlibgno_1_1GenoPro_1_1GenoMaps.html + a03573532a92e00d847142410907214e5 + () + + + GenoMap_p + element_GenoMap_at + classlibgno_1_1GenoPro_1_1GenoMaps.html + ae1d6a9bc1f3a32d2e952b1985a63bd09 + (unsigned int idx) + + + GenoMap_p + add_node_GenoMap + classlibgno_1_1GenoPro_1_1GenoMaps.html + a6d5f300295e4446a483a193904a7c290 + () + + + List< GenoMap_ptr > + set_count_GenoMap + classlibgno_1_1GenoPro_1_1GenoMaps.html + a6dadc4c4bc19025e19df0896c87f732e + (unsigned int size) + + + sequence * + get_sequence + classlibgno_1_1GenoPro_1_1GenoMaps.html + a8be0241a057b20fa29cd6a4a819c9586 + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1GenoMaps.html + a6f2210d22805be8da31fdf801e116799 + () + + + GenoMap_ptr + create_GenoMap + classlibgno_1_1GenoPro_1_1GenoMaps.html + ab528b211487dce1a2e17cccf09a42fb6 + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1GenoMaps.html + a42c15ff83ea77374a3c44767cd654857 + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1GenoMaps.html + a88b08155bcae713af6d7534773eb82f3 + + + + AutoPtr< sequence > + _sequence + classlibgno_1_1GenoPro_1_1GenoMaps.html + a36aa4e4c5514c1813d0d656ca9e12922 + + + + List< GenoMap_ptr > + _list_GenoMap + classlibgno_1_1GenoPro_1_1GenoMaps.html + acb0a4ba8e336325ea883ca588ab5aa8b + + + + + libgno::GenoPro::GenoMaps::GenoMap + classlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap.html + libgno::GenoPro::GenoMaps::GenoMap::Print + libgno::GenoPro::GenoMaps::GenoMap::sequence + + AutoPtr< Print > + Print_ptr + classlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap.html + a4d97b7946c4b4850c6a25f23429dc467 + + + + Print * + Print_p + classlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap.html + a06651bfcf04c27fa5c64b303f54d1fee + + + + AutoPtr< XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > > + attr_Name_ptr + classlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap.html + af2ec482f17cc044a38f4229399a8760d + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > * + attr_Name_p + classlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap.html + a3a31301c0841f6f995e150a8dc228056 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > + attr_Name + classlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap.html + ae97b3eeb223af50e2bde388f8811fbc5 + + + + AutoPtr< XMLSchema::XmlAttribute< XMLSchema::Types::bt_int > > + attr_Zoom_ptr + classlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap.html + aaf8105a77c66ed0c44c484d687f7fa17 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_int > * + attr_Zoom_p + classlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap.html + a9981f73760029db9ad217e2396513599 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_int > + attr_Zoom + classlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap.html + a9ce0c4fd1343bc1db12137a3ba9ae02f + + + + AutoPtr< XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > > + attr_Position_ptr + classlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap.html + a7a204806e9a89585cb04a060bafa1c41 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > * + attr_Position_p + classlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap.html + a6a46d2823c39f0789421f021baa63b59 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > + attr_Position + classlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap.html + a07ff8328d664916cdb12a1e2dc1e66c3 + + + + AutoPtr< XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > > + attr_BoundaryRect_ptr + classlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap.html + a3a6b5f3cb1f50abe3c53c6925ed57387 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > * + attr_BoundaryRect_p + classlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap.html + aab525d3a41d92d736ae0267b151028e9 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > + attr_BoundaryRect + classlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap.html + a22fedc59ffa9a58d5c325664e155c666 + + + + + GenoMap + classlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap.html + ace79888477e9d5ba075fc92a20a0e0cc + (ElementCreateArgs args) + + + Print_p + element_Print + classlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap.html + ad8bb3b820e6a66416e52fc4b8cc9f9c6 + () + + + void + mark_present_Print + classlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap.html + a074d1b09a15c05467ff6e11301e3d682 + () + + + attr_Name_p + attribute_attr_Name + classlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap.html + abc4dbd90aeec31eb04728a01a6b639be + () + + + void + set_attr_Name + classlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap.html + a628c9653a2d0c22bc76a3b27c9452169 + (DOMString val) + + + DOMString + get_attr_Name_string + classlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap.html + ab8b55fcef2c75d91a11e5ce83f29cd23 + () + + + attr_Zoom_p + attribute_attr_Zoom + classlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap.html + a903dfccfaa936be178eba5a5450a3a0f + () + + + void + set_attr_Zoom + classlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap.html + a01bbaea181face5204a0055afc8522ec + (DOMString val) + + + DOMString + get_attr_Zoom_string + classlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap.html + a835e4fb733ab7ac32c1dcf940f9b211c + () + + + void + set_attr_Zoom + classlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap.html + a89add4f4d7275f2f53c76fdc9c030b1e + (int val) + + + int + get_attr_Zoom + classlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap.html + ab7a3edc2aaa9f21059e3ed3c81719807 + () + + + attr_Position_p + attribute_attr_Position + classlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap.html + a6fbf6ddf77a10563d3493fc14d171f20 + () + + + void + set_attr_Position + classlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap.html + a721fa45298dcdb3ab3b7f2b1854e7cb3 + (DOMString val) + + + DOMString + get_attr_Position_string + classlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap.html + a4a46a1e339094f7d21e96cf7675cf9a1 + () + + + attr_BoundaryRect_p + attribute_attr_BoundaryRect + classlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap.html + af5dbcce4b26772020ba03ad499874e69 + () + + + void + set_attr_BoundaryRect + classlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap.html + ad2fcc79b432fc4db8e4a88f17bef0742 + (DOMString val) + + + DOMString + get_attr_BoundaryRect_string + classlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap.html + adbb420a45aacc7c199a6ceb295871de9 + () + + + sequence * + get_sequence + classlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap.html + affbcb9716fca02a8b331f87575b53460 + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap.html + a04982d4b68983641b353cd8bd1caa71e + () + + + Print_ptr + create_Print + classlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap.html + aa276b7ca15af6245fc0097f0cb37c4ce + (FsmCbOptions &options) + + + attr_Name_ptr + create_attr_Name + classlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap.html + a03a5fef143599df2dbeb6cc87b5dc1aa + (FsmCbOptions &options) + + + attr_Zoom_ptr + create_attr_Zoom + classlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap.html + a3d6381f8778f2086bee437b36051a8c7 + (FsmCbOptions &options) + + + attr_Position_ptr + create_attr_Position + classlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap.html + a4196aeed2300fa90900caed4585168d2 + (FsmCbOptions &options) + + + attr_BoundaryRect_ptr + create_attr_BoundaryRect + classlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap.html + a5c32e773c7f4af5c7022883aadbb9d33 + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap.html + ae8a54e53a1e55eb0b0294cbad9976622 + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap.html + a0c4b6e42e554583929baa38fe9e375ed + + + + AutoPtr< sequence > + _sequence + classlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap.html + a54ed5d02769d07ca037c1b66f812ff0d + + + + Print_ptr + _Print + classlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap.html + ac86505d24f1ff2477d95a413ed70b627 + + + + attr_Name_ptr + _attr_Name + classlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap.html + ad6ace255026517d0bfdbb922a6e53713 + + + + attr_Zoom_ptr + _attr_Zoom + classlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap.html + a0c909d3a762666230ac95e61a70e61f4 + + + + attr_Position_ptr + _attr_Position + classlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap.html + a012f76fd9426b593b9abe98400e397e6 + + + + attr_BoundaryRect_ptr + _attr_BoundaryRect + classlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap.html + ad2835a694cd3cfb84642c851ab1012b8 + + + + + libgno::GenoPro::GenoMaps::GenoMap::Print + classlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap_1_1Print.html + + AutoPtr< XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > > + attr_Landscape_ptr + classlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap_1_1Print.html + abc731c20c652c0ae57a6bbaf470eabd3 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > * + attr_Landscape_p + classlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap_1_1Print.html + a4e6d297f096f64c4ae1795ae740db852 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > + attr_Landscape + classlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap_1_1Print.html + acb029113d17a2a3c9bfe73be9f5175a0 + + + + + Print + classlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap_1_1Print.html + a460b3b2dac13598026362b31e34df4b6 + (ElementCreateArgs args) + + + attr_Landscape_p + attribute_attr_Landscape + classlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap_1_1Print.html + ab689d569ab39da7e0e40e7c842c1f973 + () + + + void + set_attr_Landscape + classlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap_1_1Print.html + a9e90e7cf40ea221d919994d887c65c3d + (DOMString val) + + + DOMString + get_attr_Landscape_string + classlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap_1_1Print.html + a56418e8c1e027184dfb80577b8a0412b + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap_1_1Print.html + a5d78a86a2f96625318b643def14e5ee1 + () + + + attr_Landscape_ptr + create_attr_Landscape + classlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap_1_1Print.html + abc43455cd0905fcc9c4c795f202cfa74 + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap_1_1Print.html + aecbbe9720005e353092611ad4270fade + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap_1_1Print.html + a76af757bf1b7e3a8435381011d0387e5 + + + + attr_Landscape_ptr + _attr_Landscape + classlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap_1_1Print.html + a87ae4d89d4ee82cadc325bd70e3d90c4 + + + + + libgno::GenoPro::GenoMaps::GenoMap::sequence + structlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap_1_1sequence.html + + + sequence + structlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap_1_1sequence.html + a700bbee4881a24bca17e702882499aa4 + (GenoMap *that) + + + Print_p + element_Print + structlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap_1_1sequence.html + a156d5aa5f9347c299ce9264ab547dad0 + () + + + void + mark_present_Print + structlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap_1_1sequence.html + a3b59c591d9947e100287be5bdc7646fe + () + + + XsdFsmBase * + clone + structlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap_1_1sequence.html + ac583a2160a69651158f63b8a8980a835 + () const + + + GenoMap * + _that + structlibgno_1_1GenoPro_1_1GenoMaps_1_1GenoMap_1_1sequence.html + a91185a290267235e3846e376bc200b9b + + + + + libgno::GenoPro::GenoMaps::sequence + structlibgno_1_1GenoPro_1_1GenoMaps_1_1sequence.html + + + sequence + structlibgno_1_1GenoPro_1_1GenoMaps_1_1sequence.html + a0c5b86e61b7ab640deddfa0aa2c6d382 + (GenoMaps *that) + + + List< GenoMap_ptr > + elements_GenoMap + structlibgno_1_1GenoPro_1_1GenoMaps_1_1sequence.html + aace0465575e97f3858e954348c10ea39 + () + + + GenoMap_p + element_GenoMap_at + structlibgno_1_1GenoPro_1_1GenoMaps_1_1sequence.html + a5bea8a85c144bcdcc26159b6a5b2821b + (unsigned int idx) + + + GenoMap_p + add_node_GenoMap + structlibgno_1_1GenoPro_1_1GenoMaps_1_1sequence.html + a66f5e1fe447cc8c1705405533643aeef + () + + + List< GenoMap_ptr > + set_count_GenoMap + structlibgno_1_1GenoPro_1_1GenoMaps_1_1sequence.html + acec6a16aaaaf4ccef05171f0aed9a217 + (unsigned int size) + + + XsdFsmBase * + clone + structlibgno_1_1GenoPro_1_1GenoMaps_1_1sequence.html + a8ad55fbb83384d9503b32c9ce0da37f7 + () const + + + GenoMaps * + _that + structlibgno_1_1GenoPro_1_1GenoMaps_1_1sequence.html + af505335ad274718fc0c83221392a8e29 + + + + + libgno::GenoPro::Global + classlibgno_1_1GenoPro_1_1Global.html + libgno::GenoPro::Global::Display + libgno::GenoPro::Global::Document + libgno::GenoPro::Global::Name + libgno::GenoPro::Global::Options + libgno::GenoPro::Global::sequence + libgno::GenoPro::Global::Tags + + AutoPtr< Name > + Name_ptr + classlibgno_1_1GenoPro_1_1Global.html + a1c713ba05d80b26ea3487bd208752926 + + + + Name * + Name_p + classlibgno_1_1GenoPro_1_1Global.html + af2635fd120397a6dd13437fb7f36fda9 + + + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_string > > + Font_ptr + classlibgno_1_1GenoPro_1_1Global.html + a1ecef73bcb0d88c8300ae2c8a10bf514 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_string > * + Font_p + classlibgno_1_1GenoPro_1_1Global.html + a51d0ec3be6c9d0ea3fdc06e3a97400d3 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_string > + Font + classlibgno_1_1GenoPro_1_1Global.html + a366ae9a3d8c97b8ba248ed95ed3ccffd + + + + AutoPtr< Display > + Display_ptr + classlibgno_1_1GenoPro_1_1Global.html + ace08dd9574be0dde1d31ac579bf192c5 + + + + Display * + Display_p + classlibgno_1_1GenoPro_1_1Global.html + ad871787cbc7c62831c419f109e0aa116 + + + + AutoPtr< Tags > + Tags_ptr + classlibgno_1_1GenoPro_1_1Global.html + a5c5f0101c27415c6eda23303b41aaebd + + + + Tags * + Tags_p + classlibgno_1_1GenoPro_1_1Global.html + a21644f6ce0efdceea4e10507a1ca5194 + + + + AutoPtr< Document > + Document_ptr + classlibgno_1_1GenoPro_1_1Global.html + a0ae22a4e04bab93f11fc36296090fe22 + + + + Document * + Document_p + classlibgno_1_1GenoPro_1_1Global.html + ad4b492338474e03cfc5faeacee23af46 + + + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > > + ActiveGenoMap_ptr + classlibgno_1_1GenoPro_1_1Global.html + a08385afc3d8e30d3ac3c60150e08d243 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > * + ActiveGenoMap_p + classlibgno_1_1GenoPro_1_1Global.html + a98157c280304b116fb948cf311b57861 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > + ActiveGenoMap + classlibgno_1_1GenoPro_1_1Global.html + af81dc5cb5c2bae1e38edc71509d2c02b + + + + AutoPtr< Options > + Options_ptr + classlibgno_1_1GenoPro_1_1Global.html + aadf7a436adcc936916e0edd1bc91caa4 + + + + Options * + Options_p + classlibgno_1_1GenoPro_1_1Global.html + a1cb1e944485eb6681df8653d531bbe28 + + + + + Global + classlibgno_1_1GenoPro_1_1Global.html + a7444b7fd8cae6a382a35f267a5c4f2e1 + (ElementCreateArgs args) + + + Name_p + element_Name + classlibgno_1_1GenoPro_1_1Global.html + a70ad364e58a3620e9e5316a08f4fc58e + () + + + void + mark_present_Name + classlibgno_1_1GenoPro_1_1Global.html + a537f1d7e4a1bc13b302d4351d6edaa95 + () + + + Font_p + element_Font + classlibgno_1_1GenoPro_1_1Global.html + a665ba859f3c95aa96b36e828fd8b0edf + () + + + void + set_Font + classlibgno_1_1GenoPro_1_1Global.html + ad65f075af187af8ed7f29a302fe8e97f + (DOMString val) + + + DOMString + get_Font_string + classlibgno_1_1GenoPro_1_1Global.html + ae713a38596bde2e819d0adf52ea82a83 + () + + + void + mark_present_Font + classlibgno_1_1GenoPro_1_1Global.html + a214eac3554c0115cc76d5710c1865fe1 + () + + + Display_p + element_Display + classlibgno_1_1GenoPro_1_1Global.html + aff9280797adff6126d982b64d45b23eb + () + + + void + mark_present_Display + classlibgno_1_1GenoPro_1_1Global.html + a7bd199ef10168aed69b386190bb64af5 + () + + + List< Tags_ptr > + elements_Tags + classlibgno_1_1GenoPro_1_1Global.html + a0a8bed9e6c8b74eddb973d39468883a3 + () + + + Tags_p + element_Tags_at + classlibgno_1_1GenoPro_1_1Global.html + a8d9ab69f0e9e3cb0ad86957baf8844d2 + (unsigned int idx) + + + Tags_p + add_node_Tags + classlibgno_1_1GenoPro_1_1Global.html + a60c07fa629b5a7bd85709cc51b9d807f + () + + + List< Tags_ptr > + set_count_Tags + classlibgno_1_1GenoPro_1_1Global.html + a920d4d4be9c1a66841517720b4683581 + (unsigned int size) + + + Document_p + element_Document + classlibgno_1_1GenoPro_1_1Global.html + a4fed1859a6583f4cad9db918c7a28144 + () + + + void + mark_present_Document + classlibgno_1_1GenoPro_1_1Global.html + a659bc4557d746b9a2d4b0a9d59dc6e61 + () + + + ActiveGenoMap_p + element_ActiveGenoMap + classlibgno_1_1GenoPro_1_1Global.html + a3a939d1222ccf8a98716500b7b77f282 + () + + + void + set_ActiveGenoMap + classlibgno_1_1GenoPro_1_1Global.html + a23c040d1a1016c68f3c1c47e66653ee3 + (DOMString val) + + + DOMString + get_ActiveGenoMap_string + classlibgno_1_1GenoPro_1_1Global.html + acc5838183aba304fe23bf3dfba7e7c53 + () + + + void + mark_present_ActiveGenoMap + classlibgno_1_1GenoPro_1_1Global.html + a551425e8851c44bca53fe97378ed61bd + () + + + Options_p + element_Options + classlibgno_1_1GenoPro_1_1Global.html + a8fe5f0ed5622fe7fecc3b26a35b6c1df + () + + + void + mark_present_Options + classlibgno_1_1GenoPro_1_1Global.html + a93d53bf7be1bb19a5234603658e37003 + () + + + sequence * + get_sequence + classlibgno_1_1GenoPro_1_1Global.html + a5b231532ad9dcac8e3caee07cb8f97e5 + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1Global.html + a295f5b60d1f0d6c1f96834fa81b86c2f + () + + + Name_ptr + create_Name + classlibgno_1_1GenoPro_1_1Global.html + adb436b358b63662b4269f3b1e721c756 + (FsmCbOptions &options) + + + Font_ptr + create_Font + classlibgno_1_1GenoPro_1_1Global.html + a6974d9abc4b7fa8764a1a20e0fe66d20 + (FsmCbOptions &options) + + + Display_ptr + create_Display + classlibgno_1_1GenoPro_1_1Global.html + a5af206be897a3412da6e5becd94d6ad1 + (FsmCbOptions &options) + + + Tags_ptr + create_Tags + classlibgno_1_1GenoPro_1_1Global.html + a34a3424cc465c8edf5c0e7157a1ff7fe + (FsmCbOptions &options) + + + Document_ptr + create_Document + classlibgno_1_1GenoPro_1_1Global.html + ab500271c57c6e1965a6c0c7b2ab3d486 + (FsmCbOptions &options) + + + ActiveGenoMap_ptr + create_ActiveGenoMap + classlibgno_1_1GenoPro_1_1Global.html + a18780874a5075326be28d6e86610a591 + (FsmCbOptions &options) + + + Options_ptr + create_Options + classlibgno_1_1GenoPro_1_1Global.html + a9c466de21602138c5f2d8483245c8dd0 + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1Global.html + a7e4fcaeec079c723190b7b67833843ab + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1Global.html + add2ec106738f06e57074deff09439265 + + + + AutoPtr< sequence > + _sequence + classlibgno_1_1GenoPro_1_1Global.html + a20f18782742ba68627e5b0c20a53b35d + + + + Name_ptr + _Name + classlibgno_1_1GenoPro_1_1Global.html + a9a15ceb434ab9c8a6859211b618d3f89 + + + + Font_ptr + _Font + classlibgno_1_1GenoPro_1_1Global.html + a78f12c2eba867407ab7720afac5ffedd + + + + Display_ptr + _Display + classlibgno_1_1GenoPro_1_1Global.html + a76454bbfa6c46d11953a820840608c77 + + + + List< Tags_ptr > + _list_Tags + classlibgno_1_1GenoPro_1_1Global.html + a0664949bb707eec20345a34c9d2c152e + + + + Document_ptr + _Document + classlibgno_1_1GenoPro_1_1Global.html + a02c0840f9b49393e29551e549ceb2437 + + + + ActiveGenoMap_ptr + _ActiveGenoMap + classlibgno_1_1GenoPro_1_1Global.html + a102e2019e78febfd5005e4c9be035a19 + + + + Options_ptr + _Options + classlibgno_1_1GenoPro_1_1Global.html + ab691f5c89b71ea40485875f6f202fa7c + + + + + libgno::GenoPro::Global::Display + classlibgno_1_1GenoPro_1_1Global_1_1Display.html + libgno::GenoPro::Global::Display::Colors + libgno::GenoPro::Global::Display::sequence + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > > + Tag_ptr + classlibgno_1_1GenoPro_1_1Global_1_1Display.html + ae148831fb7f1762b56ef48badd84de9f + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > * + Tag_p + classlibgno_1_1GenoPro_1_1Global_1_1Display.html + a486de360795c7873d91f12ebbb651efe + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > + Tag + classlibgno_1_1GenoPro_1_1Global_1_1Display.html + ac3aa5bcb202790ffbdb6c1f1bcd7599c + + + + AutoPtr< Colors > + Colors_ptr + classlibgno_1_1GenoPro_1_1Global_1_1Display.html + a210efd78ef505c4d093251ddb2b9132b + + + + Colors * + Colors_p + classlibgno_1_1GenoPro_1_1Global_1_1Display.html + ae8b851432854bd452a5813eb827511cc + + + + + Display + classlibgno_1_1GenoPro_1_1Global_1_1Display.html + ae39276b613f9dec639f96d5dd0f3bf3e + (ElementCreateArgs args) + + + Tag_p + element_Tag + classlibgno_1_1GenoPro_1_1Global_1_1Display.html + af116828406ba6328784e250e22b4d191 + () + + + void + set_Tag + classlibgno_1_1GenoPro_1_1Global_1_1Display.html + a5f07fe2b6383bbadc2d55cbbc96e6c49 + (DOMString val) + + + DOMString + get_Tag_string + classlibgno_1_1GenoPro_1_1Global_1_1Display.html + afad93eeecae13c0ca687152922776ab3 + () + + + void + mark_present_Tag + classlibgno_1_1GenoPro_1_1Global_1_1Display.html + a25a76ada8099df242691b0bcaa92a452 + () + + + Colors_p + element_Colors + classlibgno_1_1GenoPro_1_1Global_1_1Display.html + a1e1bc9f3e2264c3d1fffa790fe353090 + () + + + void + mark_present_Colors + classlibgno_1_1GenoPro_1_1Global_1_1Display.html + ae7bc9602f2dae8dcf9ca25adbe68b94c + () + + + sequence * + get_sequence + classlibgno_1_1GenoPro_1_1Global_1_1Display.html + a8c035eab6398cab2023b21f00e2b2fb4 + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1Global_1_1Display.html + a1926e9278fc3cb8400fc47baad2a8144 + () + + + Tag_ptr + create_Tag + classlibgno_1_1GenoPro_1_1Global_1_1Display.html + a37e2f4220ab5e35bbd503904b379f9f5 + (FsmCbOptions &options) + + + Colors_ptr + create_Colors + classlibgno_1_1GenoPro_1_1Global_1_1Display.html + a8eecb7cfd2e8e640e3848781b66fbea4 + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1Global_1_1Display.html + af354571de9cd42ccec5bd4880c28cfd2 + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1Global_1_1Display.html + a229c900ca1c525a3c19a700cc4dac043 + + + + AutoPtr< sequence > + _sequence + classlibgno_1_1GenoPro_1_1Global_1_1Display.html + a3a17380272c522a624c0d74be3a8f9a8 + + + + Tag_ptr + _Tag + classlibgno_1_1GenoPro_1_1Global_1_1Display.html + a60aabb1bb14cd86391dfbe571df614ad + + + + Colors_ptr + _Colors + classlibgno_1_1GenoPro_1_1Global_1_1Display.html + a2de12faf6125b566b76b9cd3e54e9575 + + + + + libgno::GenoPro::Global::Display::Colors + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors.html + libgno::GenoPro::Global::Display::Colors::Border + libgno::GenoPro::Global::Display::Colors::Gender + libgno::GenoPro::Global::Display::Colors::Label + libgno::GenoPro::Global::Display::Colors::sequence + + AutoPtr< Gender > + Gender_ptr + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors.html + ac62a135ded56154f1d1caa1e70b2d5b0 + + + + Gender * + Gender_p + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors.html + ae1167e323206c256ccb028aea963e88d + + + + AutoPtr< Border > + Border_ptr + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors.html + abfc3c151fd6dad9950c89c9bbb1e050c + + + + Border * + Border_p + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors.html + aa47365fefc456c8014d1437315ff7600 + + + + AutoPtr< Label > + Label_ptr + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors.html + a2ef9c4a15264f0f53afc9b49f0dc2365 + + + + Label * + Label_p + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors.html + ad9c3013a9bdc349afb423f7c1f13fdc4 + + + + + Colors + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors.html + a2b5df1302eb5703d41e6100f188ba3b7 + (ElementCreateArgs args) + + + Gender_p + element_Gender + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors.html + a1480629a7f2d1291a4a3f1eba74427ef + () + + + void + mark_present_Gender + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors.html + a9f6d9ad4884c769d4661d2f709c6a01f + () + + + Border_p + element_Border + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors.html + a5f9e34aff04447369aeb7f7757513ca2 + () + + + void + mark_present_Border + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors.html + a5926a2334856694c9e62f652ed76a3f6 + () + + + Label_p + element_Label + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors.html + a542a4634d22edcfcc920675da063543a + () + + + void + mark_present_Label + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors.html + a50f07daec5a70e76d4398c6a205d0245 + () + + + sequence * + get_sequence + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors.html + ad87b73311e385de5c3e3a19cb072b087 + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors.html + a7568581f464d3bec42e7c48da3cac187 + () + + + Gender_ptr + create_Gender + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors.html + a0e0aed1daea524276fa7fcc54676031f + (FsmCbOptions &options) + + + Border_ptr + create_Border + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors.html + a5b1809734c8f6825e0a393faed77e18c + (FsmCbOptions &options) + + + Label_ptr + create_Label + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors.html + aa3ac6b7d8576513e476d9516c06f2422 + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors.html + abfe281394a446d16a1ad7593a70dfa58 + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors.html + a59407d7e12c87c42b7b2b556f884dedb + + + + AutoPtr< sequence > + _sequence + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors.html + a140b246e287dd83676ff2a4a076b91a5 + + + + Gender_ptr + _Gender + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors.html + a7773078cc73edf376cc8aeec83a9701f + + + + Border_ptr + _Border + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors.html + ae6781534529075308f4f128ee6eb4b2d + + + + Label_ptr + _Label + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors.html + ab5c0fad4fe30f821d04adf70bec217fa + + + + + libgno::GenoPro::Global::Display::Colors::Border + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Border.html + libgno::GenoPro::Global::Display::Colors::Border::sequence + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > > + Fill_ptr + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Border.html + accc4c14538d59e454f880bb288efadb1 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > * + Fill_p + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Border.html + a1b07298e21d152741c16feaf076b4174 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > + Fill + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Border.html + a3ae7e57c3a2993e7f9087377f55a5756 + + + + AutoPtr< XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > > + attr_Outline_ptr + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Border.html + a982c6ae565d1b6faf4991cdd444e3c46 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > * + attr_Outline_p + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Border.html + a4f957503ab0181ad1df70e10fa27fb04 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > + attr_Outline + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Border.html + a97bc3fbf8ef1008579a55a02dccbb0d9 + + + + + Border + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Border.html + a230df283e32826c02cca506621a4cf5b + (ElementCreateArgs args) + + + Fill_p + element_Fill + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Border.html + a414ae34a2d6111e4798eb3970112b1e0 + () + + + void + set_Fill + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Border.html + a1c6fba000b06520707aa87298f7ad844 + (DOMString val) + + + DOMString + get_Fill_string + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Border.html + a581e039cdd80d809f330aaffb36e5524 + () + + + void + mark_present_Fill + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Border.html + a3361600399fffe21c04123977699289e + () + + + attr_Outline_p + attribute_attr_Outline + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Border.html + a28d4fd2bc89eada27abcf93e18637d9e + () + + + void + set_attr_Outline + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Border.html + aa9e577e19b07d6979a93d1cfe0bd2eeb + (DOMString val) + + + DOMString + get_attr_Outline_string + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Border.html + a8f49d17375b37c7b3b926992f3313e94 + () + + + sequence * + get_sequence + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Border.html + a74c616798c3324e4d5e89fcd50454641 + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Border.html + a137775e24cbf6ae0f9bf57b480ab36ad + () + + + Fill_ptr + create_Fill + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Border.html + a75eb095d3204f12910a413ad0f68fd36 + (FsmCbOptions &options) + + + attr_Outline_ptr + create_attr_Outline + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Border.html + a2f164ba3b44c6dede651c86043cb1b1d + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Border.html + a86c274ee2a8720806e7641010aabaab7 + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Border.html + adcc7c289150f6a50a16414af5c74f692 + + + + AutoPtr< sequence > + _sequence + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Border.html + abbbea30d898721048575f862637800be + + + + Fill_ptr + _Fill + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Border.html + aee36e49a4d2b179fb713d32df1a08afc + + + + attr_Outline_ptr + _attr_Outline + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Border.html + aa63cc6ee68c2c7a61b7fede16a2559c2 + + + + + libgno::GenoPro::Global::Display::Colors::Border::sequence + structlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Border_1_1sequence.html + + + sequence + structlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Border_1_1sequence.html + a6c57ecd5f536f6d295e1b82c0bbdfa14 + (Border *that) + + + Fill_p + element_Fill + structlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Border_1_1sequence.html + ac451f604b56d5ee07b7e37a311c78e19 + () + + + void + set_Fill + structlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Border_1_1sequence.html + aac596d81c828227ee762555375130804 + (DOMString val) + + + DOMString + get_Fill_string + structlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Border_1_1sequence.html + ae48375f68e6bc16e96d2f62d4c0dc0b4 + () + + + void + mark_present_Fill + structlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Border_1_1sequence.html + ad53aece22185daf70f6a093fab868366 + () + + + XsdFsmBase * + clone + structlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Border_1_1sequence.html + ad73c14e19113adc0bdeaa0443f895017 + () const + + + Border * + _that + structlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Border_1_1sequence.html + ac9408def6ff87ec13fcf1344b972eb39 + + + + + libgno::GenoPro::Global::Display::Colors::Gender + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender.html + libgno::GenoPro::Global::Display::Colors::Gender::Fill + libgno::GenoPro::Global::Display::Colors::Gender::sequence + + AutoPtr< Fill > + Fill_ptr + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender.html + a25caf334b7347a9c24a1c2b1f86d24a3 + + + + Fill * + Fill_p + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender.html + add913d600e9f04e6888ace3bad350e16 + + + + AutoPtr< XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > > + attr_Symbol_ptr + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender.html + af7562d29a28ffb3f50680fb2ea24990a + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > * + attr_Symbol_p + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender.html + aa4389687eaa2177b09840fc5f52d947f + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > + attr_Symbol + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender.html + a18096fade36aa21c9c27b1ccecbd9c88 + + + + AutoPtr< XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > > + attr_Text_ptr + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender.html + a863e8ac8724bf910fb3629321c59a74c + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > * + attr_Text_p + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender.html + add46ba0fe83b53813124e36281dd0f12 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > + attr_Text + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender.html + a1ac644ccdf3510359467cc7d4697f7aa + + + + AutoPtr< XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > > + attr_Fill_ptr + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender.html + a3658788813f6457f7061d17752846901 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > * + attr_Fill_p + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender.html + af149519ed535a529f8c5861647936d7c + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > + attr_Fill + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender.html + ab967f5603b0ab1821c410e6d2eea2c6d + + + + + Gender + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender.html + a7c30af870f048cabc704368e04049d0a + (ElementCreateArgs args) + + + Fill_p + element_Fill + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender.html + a890b89ec68bc1d5b8df4de4067a17c6b + () + + + void + mark_present_Fill + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender.html + ab6a863f9d026144565426209eba0163e + () + + + attr_Symbol_p + attribute_attr_Symbol + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender.html + af293e51fe537bd9d3b26e1388b0bcbf3 + () + + + void + set_attr_Symbol + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender.html + ac4a78c07abcecb039ab1b0ab7b09e845 + (DOMString val) + + + DOMString + get_attr_Symbol_string + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender.html + aef87b1d3167164db75a7e26643a56d64 + () + + + attr_Text_p + attribute_attr_Text + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender.html + a74a8dda5eeb92de6fa0fef8760477680 + () + + + void + set_attr_Text + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender.html + a3d462efe9e3477e55d1da43b296f9081 + (DOMString val) + + + DOMString + get_attr_Text_string + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender.html + a5d0d28f8882c1cc7adfa0c6cc994ada8 + () + + + attr_Fill_p + attribute_attr_Fill + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender.html + a68e2c01a7e2e57f9d6c9d41b5c325cd2 + () + + + void + set_attr_Fill + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender.html + a693b62370f1d08b833929e727829f763 + (DOMString val) + + + DOMString + get_attr_Fill_string + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender.html + a3fbbf3c2e34c36c0da8e917a060a3a14 + () + + + sequence * + get_sequence + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender.html + a86b73b358fca6a9aa48c8cf6d545b939 + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender.html + a104b19a7f46bf644427de84d973321e5 + () + + + Fill_ptr + create_Fill + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender.html + a31a55ff8345ec34762824ec6bd2e5424 + (FsmCbOptions &options) + + + attr_Symbol_ptr + create_attr_Symbol + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender.html + a36f6597855b7665154524ad6fbf46c58 + (FsmCbOptions &options) + + + attr_Text_ptr + create_attr_Text + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender.html + a90d107e31fbba70bd476ef24b804135c + (FsmCbOptions &options) + + + attr_Fill_ptr + create_attr_Fill + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender.html + a4fc98efd5f225d4e0f2d6820cbcd3856 + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender.html + a03e26bf3a9aafc23cab07db766c031da + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender.html + af45998acb89ac27a953d3a7755f0c2ef + + + + AutoPtr< sequence > + _sequence + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender.html + aa237e7ffaccdcedf1c9392eee246b693 + + + + Fill_ptr + _Fill + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender.html + a49c1c97efc1578bf5ceb735119aa39ee + + + + attr_Symbol_ptr + _attr_Symbol + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender.html + ae978b6122c60627e975126115c8395b0 + + + + attr_Text_ptr + _attr_Text + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender.html + acc363def89b2b0eb2db640778a747dc9 + + + + attr_Fill_ptr + _attr_Fill + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender.html + a1922a5a266e3d89ed4cb40288131920e + + + + + libgno::GenoPro::Global::Display::Colors::Gender::Fill + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill.html + libgno::GenoPro::Global::Display::Colors::Gender::Fill::Bottom + libgno::GenoPro::Global::Display::Colors::Gender::Fill::sequence + libgno::GenoPro::Global::Display::Colors::Gender::Fill::Top + + AutoPtr< Top > + Top_ptr + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill.html + a9511fb2adbed58f41a6e3db5d9c48390 + + + + Top * + Top_p + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill.html + a8384ae238fd600e5ac96216bfe9da77a + + + + AutoPtr< Bottom > + Bottom_ptr + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill.html + a0d7bb88f8902213f95f88e535f4fb78f + + + + Bottom * + Bottom_p + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill.html + a7b1f9d106be5c2c427c699de749f0a12 + + + + + Fill + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill.html + a9a4f45bc6c7e93b5ca02fe89fccafc33 + (ElementCreateArgs args) + + + Top_p + element_Top + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill.html + a138c0cecb958541aaedbb16a36cb5005 + () + + + void + mark_present_Top + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill.html + a5890c26fea1f424d5777ab3c2b96320d + () + + + Bottom_p + element_Bottom + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill.html + accbca68aec3ef533e5442282f18f9c86 + () + + + void + mark_present_Bottom + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill.html + a57f77750f879dd179c5c68bd7f18a01d + () + + + sequence * + get_sequence + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill.html + a8308ee18df8939a51b9c9f4490f8ed51 + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill.html + abb980c9ad6e419dc0bcbccf96c6cf46d + () + + + Top_ptr + create_Top + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill.html + a4b1b8e5c42087dd5d27e39ebe4c60d76 + (FsmCbOptions &options) + + + Bottom_ptr + create_Bottom + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill.html + a8c6bded6877603c811a44c0d66b28b2f + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill.html + a55f1b575b4e2adcbcf97f54a2149028d + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill.html + a2e429b323e274e19387980f683cd37f5 + + + + AutoPtr< sequence > + _sequence + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill.html + a9053631b64aba61301161d41eda5164e + + + + Top_ptr + _Top + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill.html + a098d854ab9caaee8880ca295fa5ac641 + + + + Bottom_ptr + _Bottom + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill.html + a7c35897cc37104a1f156175d5d4b886b + + + + + libgno::GenoPro::Global::Display::Colors::Gender::Fill::Bottom + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill_1_1Bottom.html + + AutoPtr< XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > > + attr_Left_ptr + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill_1_1Bottom.html + a9291486e23fc62b37c85846ae0f1b3e3 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > * + attr_Left_p + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill_1_1Bottom.html + aae5cabad5c04381032383224d42a415b + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > + attr_Left + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill_1_1Bottom.html + a4ce6b650cf2c8e0e6df19bdbd8dbf379 + + + + AutoPtr< XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > > + attr_Right_ptr + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill_1_1Bottom.html + a26239670d387592cc66cc2dad83ce546 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > * + attr_Right_p + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill_1_1Bottom.html + a418623f99a000552b3e32722da40895d + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > + attr_Right + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill_1_1Bottom.html + a4035f8e0ab717c4e3860328ce482af84 + + + + + Bottom + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill_1_1Bottom.html + af6f00473aa6977bcb2bdc8e98e2ebad2 + (ElementCreateArgs args) + + + attr_Left_p + attribute_attr_Left + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill_1_1Bottom.html + a91cc924699770ace1e28ab3ce9826c70 + () + + + void + set_attr_Left + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill_1_1Bottom.html + a752d8dffb8f9a90793f86b30be52ba15 + (DOMString val) + + + DOMString + get_attr_Left_string + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill_1_1Bottom.html + ab15989deaa64382cccc198348d1578b5 + () + + + attr_Right_p + attribute_attr_Right + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill_1_1Bottom.html + a9d02e7ee56b71d3b149765f866dbb2ed + () + + + void + set_attr_Right + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill_1_1Bottom.html + afe4bd2898f348dc6fbf73df26f8af7ca + (DOMString val) + + + DOMString + get_attr_Right_string + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill_1_1Bottom.html + a2b753656445b046ea7626ca19fb5a6b8 + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill_1_1Bottom.html + ae49079e30718ec6770cbd4ec012fa102 + () + + + attr_Left_ptr + create_attr_Left + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill_1_1Bottom.html + af5fd177b44b750ed014f308f2c71db63 + (FsmCbOptions &options) + + + attr_Right_ptr + create_attr_Right + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill_1_1Bottom.html + a8e9d0843d6ff0dcb1ab4324cbf5bdd92 + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill_1_1Bottom.html + a749f913bbf066b93bd0bdccf225c82e9 + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill_1_1Bottom.html + a4fe1852ffd94547d60cdc3608d51c4f6 + + + + attr_Left_ptr + _attr_Left + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill_1_1Bottom.html + a32009284995b70647a605efcaf575556 + + + + attr_Right_ptr + _attr_Right + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill_1_1Bottom.html + aedbfa6d49247c61ee128c804af5d84df + + + + + libgno::GenoPro::Global::Display::Colors::Gender::Fill::sequence + structlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill_1_1sequence.html + + + sequence + structlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill_1_1sequence.html + a3bc706034f25e68a939a9d2ee6696b37 + (Fill *that) + + + Top_p + element_Top + structlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill_1_1sequence.html + aadc6ef2813a8f4890e98060b3f4ba1f3 + () + + + void + mark_present_Top + structlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill_1_1sequence.html + a255ccdcd2876d542e3b44f76e5980680 + () + + + Bottom_p + element_Bottom + structlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill_1_1sequence.html + a8748ba3c97d9c6090cb74f7c97dfab73 + () + + + void + mark_present_Bottom + structlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill_1_1sequence.html + a58a66a74f4ee613140343a159a352eb6 + () + + + XsdFsmBase * + clone + structlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill_1_1sequence.html + ae2e940d24f4e1f4aed4d8a6ff1528f52 + () const + + + Fill * + _that + structlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill_1_1sequence.html + a3e6b6ad0ff9280d13daf5b0ae09d8ef7 + + + + + libgno::GenoPro::Global::Display::Colors::Gender::Fill::Top + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill_1_1Top.html + + AutoPtr< XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > > + attr_Left_ptr + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill_1_1Top.html + ada16b2f8fa439672930cb9abdc3cec60 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > * + attr_Left_p + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill_1_1Top.html + ae747bd319976508891c11c6f9ffead4c + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > + attr_Left + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill_1_1Top.html + ac3a86689612c46f4e785cd5562bc3b36 + + + + AutoPtr< XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > > + attr_Right_ptr + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill_1_1Top.html + ad34b8aac3a2b236b6f089b41b6c35602 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > * + attr_Right_p + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill_1_1Top.html + aaec7152eb5291cbae6571b3d8d518ed8 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > + attr_Right + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill_1_1Top.html + aad12f0bc51b81bfa3b78997a43a0d3d0 + + + + + Top + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill_1_1Top.html + a959b9c0afb29ff0c0642f051382e03e9 + (ElementCreateArgs args) + + + attr_Left_p + attribute_attr_Left + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill_1_1Top.html + ab5200db0df064bcc939c149745d6c671 + () + + + void + set_attr_Left + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill_1_1Top.html + aa67e802b6197336ee76d5a73c75847ef + (DOMString val) + + + DOMString + get_attr_Left_string + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill_1_1Top.html + a2c965cc7b733e5e48c96f0e398a0ff1a + () + + + attr_Right_p + attribute_attr_Right + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill_1_1Top.html + a9f46c3d3c539f546966245b72428a725 + () + + + void + set_attr_Right + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill_1_1Top.html + a89914bf416448973f5563d0fd3e0d564 + (DOMString val) + + + DOMString + get_attr_Right_string + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill_1_1Top.html + ad65dadb43e1d60711aceb871bd303d25 + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill_1_1Top.html + a956f27317bbc6c8b68921ba94ea31347 + () + + + attr_Left_ptr + create_attr_Left + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill_1_1Top.html + a3fd4741be9d654041caf75e3c11c04f8 + (FsmCbOptions &options) + + + attr_Right_ptr + create_attr_Right + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill_1_1Top.html + a380d7fcd45edc2d432e00fb36f065174 + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill_1_1Top.html + a0b6373f67becf3761681e472b9e62d85 + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill_1_1Top.html + a254ac91739c3b95a7cc1b5cdb124d1ed + + + + attr_Left_ptr + _attr_Left + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill_1_1Top.html + a772048eef7f800af689998eaa98a0cfc + + + + attr_Right_ptr + _attr_Right + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1Fill_1_1Top.html + aed85d2e6c249e477a302239ca6d19379 + + + + + libgno::GenoPro::Global::Display::Colors::Gender::sequence + structlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1sequence.html + + + sequence + structlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1sequence.html + a4020b0eb221661cab91c9593f09dca96 + (Gender *that) + + + Fill_p + element_Fill + structlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1sequence.html + a2973774d6c23764e19a90c09052f668c + () + + + void + mark_present_Fill + structlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1sequence.html + aea242a5587bc69041d4ede277c850366 + () + + + XsdFsmBase * + clone + structlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1sequence.html + ae5080d436d716873ec137c32874b6c40 + () const + + + Gender * + _that + structlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Gender_1_1sequence.html + a29b49e348aad57bb01e3a1f9f7c2f996 + + + + + libgno::GenoPro::Global::Display::Colors::Label + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Label.html + libgno::GenoPro::Global::Display::Colors::Label::Fill + libgno::GenoPro::Global::Display::Colors::Label::sequence + + AutoPtr< Fill > + Fill_ptr + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Label.html + a64dc067a486cc52b94ed9be096300ae3 + + + + Fill * + Fill_p + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Label.html + a884a4e809ba001782e0c9aa041c7d8ac + + + + AutoPtr< XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > > + attr_Top_ptr + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Label.html + ab5645d1f12a0dbe4e628a8fc02716b51 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > * + attr_Top_p + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Label.html + a09708082b8bf7fb468d594df25d090e9 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > + attr_Top + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Label.html + a2484be7ecb1c636d12e90cd5c69a3a5b + + + + AutoPtr< XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > > + attr_Bottom_ptr + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Label.html + a80a0a922b1eca5df3953f615bc74fa6a + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > * + attr_Bottom_p + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Label.html + afa326f70078d3974d36db4c2df7449f9 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > + attr_Bottom + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Label.html + a81de5a6540ee5252541c3ae5fd2453cd + + + + + Label + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Label.html + a6dc064e30e1d8a56174a00197dc02c57 + (ElementCreateArgs args) + + + Fill_p + element_Fill + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Label.html + a083aaf4e328bb9ecda80d6ffad6383a6 + () + + + void + mark_present_Fill + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Label.html + a9218ff9475676d92cdcfb1d1ee536025 + () + + + attr_Top_p + attribute_attr_Top + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Label.html + a901af06f7b34d3730a16aeea546f021f + () + + + void + set_attr_Top + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Label.html + a1d336d4248a324bd090c3f82d8723f26 + (DOMString val) + + + DOMString + get_attr_Top_string + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Label.html + a5e609b394d7081531cf38d1f70f5964f + () + + + attr_Bottom_p + attribute_attr_Bottom + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Label.html + a648819ba4e53abf9fa8a61d5447a7f88 + () + + + void + set_attr_Bottom + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Label.html + a77254aca49b245f0f327983579f51881 + (DOMString val) + + + DOMString + get_attr_Bottom_string + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Label.html + a6baebb692870f54356f394ee345f8de0 + () + + + sequence * + get_sequence + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Label.html + a65d8c226d513b13b8f5ac531c6ff2b4e + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Label.html + aa70106c63a02743094191a100b90cfc4 + () + + + Fill_ptr + create_Fill + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Label.html + aff63e307f03a528a7ebce0712ad60b81 + (FsmCbOptions &options) + + + attr_Top_ptr + create_attr_Top + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Label.html + aa2a78e4bc7306bf4a44c20bcf8e50a6d + (FsmCbOptions &options) + + + attr_Bottom_ptr + create_attr_Bottom + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Label.html + acc95ddac09df9825d7cbd9de69f0947d + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Label.html + a80d1ade6cd32ed83b768a8b3ec9e6924 + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Label.html + a949adc19b0b2686bbba8250a91f6f1a8 + + + + AutoPtr< sequence > + _sequence + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Label.html + a00afc5ff05eab6a443276aaa63c1db44 + + + + Fill_ptr + _Fill + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Label.html + a9b2822d4f6936f4ef8b7c87e11cdc014 + + + + attr_Top_ptr + _attr_Top + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Label.html + a0c1a669a0b7a4b3e997a0e4987c01038 + + + + attr_Bottom_ptr + _attr_Bottom + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Label.html + acb9e466664ad78a8deba9f82095318ce + + + + + libgno::GenoPro::Global::Display::Colors::Label::Fill + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Label_1_1Fill.html + + AutoPtr< XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > > + attr_Top_ptr + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Label_1_1Fill.html + a4a81723caf15930b3e6e343f00b573ad + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > * + attr_Top_p + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Label_1_1Fill.html + a1e2d6b693efbf6ad1a5dc2c746520f17 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > + attr_Top + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Label_1_1Fill.html + a39f32afc01e772b85dc6bfe99ba62507 + + + + AutoPtr< XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > > + attr_Bottom_ptr + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Label_1_1Fill.html + a7a56223e2d53478c87cfb09626ec94a6 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > * + attr_Bottom_p + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Label_1_1Fill.html + a9573ba91d5f288312adf1a9ef9d584ec + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > + attr_Bottom + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Label_1_1Fill.html + a44e9a6079b3effb6f2fef195f21a6ffd + + + + + Fill + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Label_1_1Fill.html + adde3aa00cf27e8f275aa0cbee9541c84 + (ElementCreateArgs args) + + + attr_Top_p + attribute_attr_Top + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Label_1_1Fill.html + ad04eb60a1c1459bc14976a63848b3b5f + () + + + void + set_attr_Top + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Label_1_1Fill.html + a8a634826652649d8ff6cf1d54a4faff8 + (DOMString val) + + + DOMString + get_attr_Top_string + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Label_1_1Fill.html + a2019cb951f26465c7f321a1ca0bd740a + () + + + attr_Bottom_p + attribute_attr_Bottom + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Label_1_1Fill.html + a5cc23c2497ed4418ab9d90a82be2d85f + () + + + void + set_attr_Bottom + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Label_1_1Fill.html + aac1481609a0d9050ab94874279efa79d + (DOMString val) + + + DOMString + get_attr_Bottom_string + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Label_1_1Fill.html + aa0293bce5d18fa3ecc836eb6201aada7 + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Label_1_1Fill.html + aeaeea6bb39478813d5d7bc37811e053e + () + + + attr_Top_ptr + create_attr_Top + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Label_1_1Fill.html + a2812ab64fb8636cf4a4d10a616321698 + (FsmCbOptions &options) + + + attr_Bottom_ptr + create_attr_Bottom + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Label_1_1Fill.html + a75d7832c99a6b4e549d3f07b07436186 + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Label_1_1Fill.html + ae92d1829f676c88c3836aa4fdb301c8e + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Label_1_1Fill.html + a4f8a8ab1c42717446491a013639b0744 + + + + attr_Top_ptr + _attr_Top + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Label_1_1Fill.html + af91def557b6981c04e9f14bb7766ac54 + + + + attr_Bottom_ptr + _attr_Bottom + classlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Label_1_1Fill.html + a77889f10b2ee663f4c233bcacf6e45ae + + + + + libgno::GenoPro::Global::Display::Colors::Label::sequence + structlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Label_1_1sequence.html + + + sequence + structlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Label_1_1sequence.html + abf0d8c95f04faa47a8b262869bd98947 + (Label *that) + + + Fill_p + element_Fill + structlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Label_1_1sequence.html + a12a95e5efb833753d4467950168419b1 + () + + + void + mark_present_Fill + structlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Label_1_1sequence.html + aafa1f9070917bda942c00eb4324c1de9 + () + + + XsdFsmBase * + clone + structlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Label_1_1sequence.html + a6b1d8f46e9850e386cfb1c300a233b36 + () const + + + Label * + _that + structlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1Label_1_1sequence.html + aaaaaa52bd9801353742d212fa47489b7 + + + + + libgno::GenoPro::Global::Display::Colors::sequence + structlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1sequence.html + + + sequence + structlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1sequence.html + abd103a96010832433ed203ee76593d64 + (Colors *that) + + + Gender_p + element_Gender + structlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1sequence.html + a1a212e6c1b2c959d4d2147db538ccacc + () + + + void + mark_present_Gender + structlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1sequence.html + a8eda932ff9d3c6fe4db669b820578d1c + () + + + Border_p + element_Border + structlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1sequence.html + a670b1e07fee95ca6830fca57990d22c8 + () + + + void + mark_present_Border + structlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1sequence.html + a8a8064f4d08fbe0d009f40e1836a29e1 + () + + + Label_p + element_Label + structlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1sequence.html + a8caa3f96c40b751a5f1e23d9e11fdfbb + () + + + void + mark_present_Label + structlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1sequence.html + a027e47e935700eb9c204b6639c5b0495 + () + + + XsdFsmBase * + clone + structlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1sequence.html + a9fd154f7156600848793e52d23b5adfc + () const + + + Colors * + _that + structlibgno_1_1GenoPro_1_1Global_1_1Display_1_1Colors_1_1sequence.html + afd31e212eda5611ad919616ecfdbf51e + + + + + libgno::GenoPro::Global::Display::sequence + structlibgno_1_1GenoPro_1_1Global_1_1Display_1_1sequence.html + + + sequence + structlibgno_1_1GenoPro_1_1Global_1_1Display_1_1sequence.html + aa8cc935b25dd2b654d0af6ea6ccd56de + (Display *that) + + + Tag_p + element_Tag + structlibgno_1_1GenoPro_1_1Global_1_1Display_1_1sequence.html + a4e37cf62298feb7ce6e9b645ea27472a + () + + + void + set_Tag + structlibgno_1_1GenoPro_1_1Global_1_1Display_1_1sequence.html + a327b11b803e25312370b870e01c772e7 + (DOMString val) + + + DOMString + get_Tag_string + structlibgno_1_1GenoPro_1_1Global_1_1Display_1_1sequence.html + a29f7a0cb5fe15de8cb675231ed18e6d3 + () + + + void + mark_present_Tag + structlibgno_1_1GenoPro_1_1Global_1_1Display_1_1sequence.html + a93bc43efe8b17b6133b419f0488891ae + () + + + Colors_p + element_Colors + structlibgno_1_1GenoPro_1_1Global_1_1Display_1_1sequence.html + aabf268d60c63df303dfae5c7f14d631d + () + + + void + mark_present_Colors + structlibgno_1_1GenoPro_1_1Global_1_1Display_1_1sequence.html + ab9079a40e281cd7aa26717c6cd32b7f5 + () + + + XsdFsmBase * + clone + structlibgno_1_1GenoPro_1_1Global_1_1Display_1_1sequence.html + a139b902dd14fedfaa7cf508b8abfdcbd + () const + + + Display * + _that + structlibgno_1_1GenoPro_1_1Global_1_1Display_1_1sequence.html + a5fa10a573a1d61e5451d5435568d0e12 + + + + + libgno::GenoPro::Global::Document + classlibgno_1_1GenoPro_1_1Global_1_1Document.html + libgno::GenoPro::Global::Document::sequence + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_string > > + Title_ptr + classlibgno_1_1GenoPro_1_1Global_1_1Document.html + a0f36e2acfd5971e766e153b496435b31 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_string > * + Title_p + classlibgno_1_1GenoPro_1_1Global_1_1Document.html + ac419b9fb888e5245ea8f2e8e43645fc1 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_string > + Title + classlibgno_1_1GenoPro_1_1Global_1_1Document.html + ae78340288a80cba3496b682879534ad8 + + + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_string > > + Description_ptr + classlibgno_1_1GenoPro_1_1Global_1_1Document.html + a1c25e317f671e5aaf2494d268b4f9e93 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_string > * + Description_p + classlibgno_1_1GenoPro_1_1Global_1_1Document.html + aa7cc3d737c17db256eccd3dc796c77cc + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_string > + Description + classlibgno_1_1GenoPro_1_1Global_1_1Document.html + ab0760f955b14fbad19d9fc0e42db60c6 + + + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_string > > + Comment_ptr + classlibgno_1_1GenoPro_1_1Global_1_1Document.html + a709fe4d04271d9dec488a84d891cec3c + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_string > * + Comment_p + classlibgno_1_1GenoPro_1_1Global_1_1Document.html + a5bb69cefeec28a6b3d6c229649af8a83 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_string > + Comment + classlibgno_1_1GenoPro_1_1Global_1_1Document.html + ae7ebea99bb16b8dd2023e48f9ae45891 + + + + + Document + classlibgno_1_1GenoPro_1_1Global_1_1Document.html + aaf7bb7898dab769a982faa4e835ebdec + (ElementCreateArgs args) + + + Title_p + element_Title + classlibgno_1_1GenoPro_1_1Global_1_1Document.html + ac87aee94fc67077115ad34cbcadfe60c + () + + + void + set_Title + classlibgno_1_1GenoPro_1_1Global_1_1Document.html + ab329858b9c0f3a97bc553ac760bed12f + (DOMString val) + + + DOMString + get_Title_string + classlibgno_1_1GenoPro_1_1Global_1_1Document.html + a75fb2801171f7f51783b8d0887d047b7 + () + + + void + mark_present_Title + classlibgno_1_1GenoPro_1_1Global_1_1Document.html + a5bdab238dd6ff50000aaae6f477a7556 + () + + + Description_p + element_Description + classlibgno_1_1GenoPro_1_1Global_1_1Document.html + a2a5b7a642b42e314ed8842f67ddec6e1 + () + + + void + set_Description + classlibgno_1_1GenoPro_1_1Global_1_1Document.html + a6a6a4e5c8b745cdd0e0b4e960c004e30 + (DOMString val) + + + DOMString + get_Description_string + classlibgno_1_1GenoPro_1_1Global_1_1Document.html + a10ae150ac319c23e6cb0d07e7bd30b9c + () + + + void + mark_present_Description + classlibgno_1_1GenoPro_1_1Global_1_1Document.html + a684bc9eab86e85b993dbee0118d0e35e + () + + + Comment_p + element_Comment + classlibgno_1_1GenoPro_1_1Global_1_1Document.html + ac99e401349a25c449da7f52fb18cb909 + () + + + void + set_Comment + classlibgno_1_1GenoPro_1_1Global_1_1Document.html + a36a06dc79c2b5adc625b3ca2aecb38ff + (DOMString val) + + + DOMString + get_Comment_string + classlibgno_1_1GenoPro_1_1Global_1_1Document.html + a24e78314d9c7320fef099e694f2c5b10 + () + + + void + mark_present_Comment + classlibgno_1_1GenoPro_1_1Global_1_1Document.html + a66bc995d40f7d152de97c264e6208cf3 + () + + + sequence * + get_sequence + classlibgno_1_1GenoPro_1_1Global_1_1Document.html + ab26b41d8e036b07959aa578d12bd4f7c + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1Global_1_1Document.html + a254d1559634613610509bf17d68c77a3 + () + + + Title_ptr + create_Title + classlibgno_1_1GenoPro_1_1Global_1_1Document.html + ab36b40ad49e9aa052b2156adf3439750 + (FsmCbOptions &options) + + + Description_ptr + create_Description + classlibgno_1_1GenoPro_1_1Global_1_1Document.html + a306cdccc0619dc15df7a19af20557eff + (FsmCbOptions &options) + + + Comment_ptr + create_Comment + classlibgno_1_1GenoPro_1_1Global_1_1Document.html + a571f26d0ad47ac1c326f7bf89fd0d1f2 + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1Global_1_1Document.html + aa410fe3b56e242f04617b8075d18795b + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1Global_1_1Document.html + af5fdcac54fa2ed7db3eed3b0574ee8ee + + + + AutoPtr< sequence > + _sequence + classlibgno_1_1GenoPro_1_1Global_1_1Document.html + a2da21c34b471370b7001476a78bf97a2 + + + + Title_ptr + _Title + classlibgno_1_1GenoPro_1_1Global_1_1Document.html + a6f42c9f56260ea0a938c53bd3cf1dcf7 + + + + Description_ptr + _Description + classlibgno_1_1GenoPro_1_1Global_1_1Document.html + aed01546a02467d8882bb0ac8ac836717 + + + + Comment_ptr + _Comment + classlibgno_1_1GenoPro_1_1Global_1_1Document.html + ae9a2151a7a1b41b8ea441f6b67a853ae + + + + + libgno::GenoPro::Global::Document::sequence + structlibgno_1_1GenoPro_1_1Global_1_1Document_1_1sequence.html + + + sequence + structlibgno_1_1GenoPro_1_1Global_1_1Document_1_1sequence.html + a35dc0a56d1795b57b1a3d0053e2e2a7b + (Document *that) + + + Title_p + element_Title + structlibgno_1_1GenoPro_1_1Global_1_1Document_1_1sequence.html + a4f6cd2d6392901f6bd69ead2b61dae74 + () + + + void + set_Title + structlibgno_1_1GenoPro_1_1Global_1_1Document_1_1sequence.html + acb934dbdc78b8890795d912a7aad6c5c + (DOMString val) + + + DOMString + get_Title_string + structlibgno_1_1GenoPro_1_1Global_1_1Document_1_1sequence.html + a988167663776834e4b7658ea93c90862 + () + + + void + mark_present_Title + structlibgno_1_1GenoPro_1_1Global_1_1Document_1_1sequence.html + a9843eb4beb743499ee82967984e0cff2 + () + + + Description_p + element_Description + structlibgno_1_1GenoPro_1_1Global_1_1Document_1_1sequence.html + a470bd06f20be343f89baa1dca2ee5bab + () + + + void + set_Description + structlibgno_1_1GenoPro_1_1Global_1_1Document_1_1sequence.html + a04594b19c6148cf2b3c97d0668a313da + (DOMString val) + + + DOMString + get_Description_string + structlibgno_1_1GenoPro_1_1Global_1_1Document_1_1sequence.html + a764cf6d2a1d1bf2d429237db8f98b2b6 + () + + + void + mark_present_Description + structlibgno_1_1GenoPro_1_1Global_1_1Document_1_1sequence.html + a043f04871cf940cadc863a6eac41238f + () + + + Comment_p + element_Comment + structlibgno_1_1GenoPro_1_1Global_1_1Document_1_1sequence.html + a0daa8e7ff1e94a59d01bfbdf97cd3f1c + () + + + void + set_Comment + structlibgno_1_1GenoPro_1_1Global_1_1Document_1_1sequence.html + a29b15a57543f2518ba328c62908112de + (DOMString val) + + + DOMString + get_Comment_string + structlibgno_1_1GenoPro_1_1Global_1_1Document_1_1sequence.html + a38aca844f2be71fda61d5ec4cc745414 + () + + + void + mark_present_Comment + structlibgno_1_1GenoPro_1_1Global_1_1Document_1_1sequence.html + a3ff6aefc50058a01c792721b99d8b735 + () + + + XsdFsmBase * + clone + structlibgno_1_1GenoPro_1_1Global_1_1Document_1_1sequence.html + ac96a423cd2fcc510e1090c21742551fd + () const + + + Document * + _that + structlibgno_1_1GenoPro_1_1Global_1_1Document_1_1sequence.html + ac3237d0ffde40b078fd01da12afd9fd0 + + + + + libgno::GenoPro::Global::Name + classlibgno_1_1GenoPro_1_1Global_1_1Name.html + libgno::GenoPro::Global::Name::Display + libgno::GenoPro::Global::Name::Full + libgno::GenoPro::Global::Name::sequence + + AutoPtr< Full > + Full_ptr + classlibgno_1_1GenoPro_1_1Global_1_1Name.html + a42ee1afbc76b39364661be89f9006d62 + + + + Full * + Full_p + classlibgno_1_1GenoPro_1_1Global_1_1Name.html + ac53103ea2ae70f9fd70f1d7daa7b2a4b + + + + AutoPtr< Display > + Display_ptr + classlibgno_1_1GenoPro_1_1Global_1_1Name.html + a0e76c2e59e56823039ef5a7c6aa92765 + + + + Display * + Display_p + classlibgno_1_1GenoPro_1_1Global_1_1Name.html + aef7f6dff525fdbc3de5238239eb70542 + + + + + Name + classlibgno_1_1GenoPro_1_1Global_1_1Name.html + af6cb90b36685acd4f131d08881698039 + (ElementCreateArgs args) + + + Full_p + element_Full + classlibgno_1_1GenoPro_1_1Global_1_1Name.html + a8480641b4aa761dd8651b8144f250239 + () + + + void + mark_present_Full + classlibgno_1_1GenoPro_1_1Global_1_1Name.html + a9f9c9c6f11c84dacebdaa45d2a903206 + () + + + Display_p + element_Display + classlibgno_1_1GenoPro_1_1Global_1_1Name.html + a4addf96b1cfc841855a5c5a823e99a33 + () + + + void + mark_present_Display + classlibgno_1_1GenoPro_1_1Global_1_1Name.html + a254a98526720e27cfa0676fd6bbdd9e2 + () + + + sequence * + get_sequence + classlibgno_1_1GenoPro_1_1Global_1_1Name.html + a8b9f952f49b5eabcaf663988a8c3eae8 + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1Global_1_1Name.html + a9ad424f93e863fa21bbfd21868633456 + () + + + Full_ptr + create_Full + classlibgno_1_1GenoPro_1_1Global_1_1Name.html + adc886965c8e4072492363576267e02ef + (FsmCbOptions &options) + + + Display_ptr + create_Display + classlibgno_1_1GenoPro_1_1Global_1_1Name.html + ab97ebae1a3bfa47c426050bdf05a7dbd + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1Global_1_1Name.html + aed40b90dad491a83c1626381a1d580df + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1Global_1_1Name.html + ae60ef857527faa5b9e6de02af0bd2b0e + + + + AutoPtr< sequence > + _sequence + classlibgno_1_1GenoPro_1_1Global_1_1Name.html + afb5cb72f0576565cd13a374923c6db8a + + + + Full_ptr + _Full + classlibgno_1_1GenoPro_1_1Global_1_1Name.html + ab097607e2b94c6f7fa7a807a5dafbcd2 + + + + Display_ptr + _Display + classlibgno_1_1GenoPro_1_1Global_1_1Name.html + ae87f9062cdf47e7da64b909845894eab + + + + + libgno::GenoPro::Global::Name::Display + classlibgno_1_1GenoPro_1_1Global_1_1Name_1_1Display.html + + AutoPtr< XMLSchema::XmlAttribute< XMLSchema::Types::bt_string > > + attr_Format_ptr + classlibgno_1_1GenoPro_1_1Global_1_1Name_1_1Display.html + a8fd23bcb2fc580ff22cec3199b6475c7 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_string > * + attr_Format_p + classlibgno_1_1GenoPro_1_1Global_1_1Name_1_1Display.html + a4c84ae40a6a06150f0915976e4b59df6 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_string > + attr_Format + classlibgno_1_1GenoPro_1_1Global_1_1Name_1_1Display.html + ae24e66e0206914f5a8bb16ba76afa5fe + + + + AutoPtr< XMLSchema::XmlAttribute< XMLSchema::Types::bt_int > > + attr_Lines_ptr + classlibgno_1_1GenoPro_1_1Global_1_1Name_1_1Display.html + a6eadf30ae1920d55b7c11d184306db24 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_int > * + attr_Lines_p + classlibgno_1_1GenoPro_1_1Global_1_1Name_1_1Display.html + abe3d81e2abbcb01cfabe2423473e4fd4 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_int > + attr_Lines + classlibgno_1_1GenoPro_1_1Global_1_1Name_1_1Display.html + aad5c7cde5095f89acaecb7cd69fd9304 + + + + + Display + classlibgno_1_1GenoPro_1_1Global_1_1Name_1_1Display.html + a31ba9b11db8463b87adf0c0a59487f8e + (ElementCreateArgs args) + + + attr_Format_p + attribute_attr_Format + classlibgno_1_1GenoPro_1_1Global_1_1Name_1_1Display.html + a078647ed73458d7840deb2c336fe1d48 + () + + + void + set_attr_Format + classlibgno_1_1GenoPro_1_1Global_1_1Name_1_1Display.html + ae4206cad2d0c4aaacb872b41f8d08086 + (DOMString val) + + + DOMString + get_attr_Format_string + classlibgno_1_1GenoPro_1_1Global_1_1Name_1_1Display.html + aac7de8e598a8344f1aeda20f16e0dfb8 + () + + + attr_Lines_p + attribute_attr_Lines + classlibgno_1_1GenoPro_1_1Global_1_1Name_1_1Display.html + a39703cc229f82f3f9003e757e5320500 + () + + + void + set_attr_Lines + classlibgno_1_1GenoPro_1_1Global_1_1Name_1_1Display.html + a13a58b8eb9cd9dc6e60c4bc2993ae37b + (DOMString val) + + + DOMString + get_attr_Lines_string + classlibgno_1_1GenoPro_1_1Global_1_1Name_1_1Display.html + ab08879f04028c9fb68933fd7e3215715 + () + + + void + set_attr_Lines + classlibgno_1_1GenoPro_1_1Global_1_1Name_1_1Display.html + a17f835701680f38d730f964a3a103ff7 + (int val) + + + int + get_attr_Lines + classlibgno_1_1GenoPro_1_1Global_1_1Name_1_1Display.html + a0bc2956c0032c854300ee180221352c9 + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1Global_1_1Name_1_1Display.html + a11409f29626302485ff6457f38ce2382 + () + + + attr_Format_ptr + create_attr_Format + classlibgno_1_1GenoPro_1_1Global_1_1Name_1_1Display.html + a8a2c0316d67f564cd87cb96e2a4aa2d2 + (FsmCbOptions &options) + + + attr_Lines_ptr + create_attr_Lines + classlibgno_1_1GenoPro_1_1Global_1_1Name_1_1Display.html + afdb9a5f0861694711eec42c1c8d3b0eb + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1Global_1_1Name_1_1Display.html + a82903d08d746f63a04438b793f1b823d + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1Global_1_1Name_1_1Display.html + a93cc4fb48df47efdb2ceec7cb57649d7 + + + + attr_Format_ptr + _attr_Format + classlibgno_1_1GenoPro_1_1Global_1_1Name_1_1Display.html + a1c34229732e83bf46c1e74810e906c0b + + + + attr_Lines_ptr + _attr_Lines + classlibgno_1_1GenoPro_1_1Global_1_1Name_1_1Display.html + ab0cb6fa7f213dc28b8f5b0049db63b4c + + + + + libgno::GenoPro::Global::Name::Full + classlibgno_1_1GenoPro_1_1Global_1_1Name_1_1Full.html + + AutoPtr< XMLSchema::XmlAttribute< XMLSchema::Types::bt_string > > + attr_Format_ptr + classlibgno_1_1GenoPro_1_1Global_1_1Name_1_1Full.html + ac84d7492ffecc05f85ef0cce8dcc3485 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_string > * + attr_Format_p + classlibgno_1_1GenoPro_1_1Global_1_1Name_1_1Full.html + af914562b7e0ff174614e4e779a22fdda + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_string > + attr_Format + classlibgno_1_1GenoPro_1_1Global_1_1Name_1_1Full.html + a2226142cb535ccd8116098fb1986d7d6 + + + + + Full + classlibgno_1_1GenoPro_1_1Global_1_1Name_1_1Full.html + a40bf4b15d0da592b219a053939739eae + (ElementCreateArgs args) + + + attr_Format_p + attribute_attr_Format + classlibgno_1_1GenoPro_1_1Global_1_1Name_1_1Full.html + a68796f0257ddb83a71873935ac2ac870 + () + + + void + set_attr_Format + classlibgno_1_1GenoPro_1_1Global_1_1Name_1_1Full.html + a0fab73f5fcdb83675be98306700ad1ac + (DOMString val) + + + DOMString + get_attr_Format_string + classlibgno_1_1GenoPro_1_1Global_1_1Name_1_1Full.html + ad95af1f04ab6b83a792ee6e6a318754e + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1Global_1_1Name_1_1Full.html + a2cb18421dae9cd0f62aa68536e0a4749 + () + + + attr_Format_ptr + create_attr_Format + classlibgno_1_1GenoPro_1_1Global_1_1Name_1_1Full.html + a291a73471e450d7008ab63e555c92d3f + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1Global_1_1Name_1_1Full.html + a86ca29c9d07dcd1fabdceed5c923d9b5 + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1Global_1_1Name_1_1Full.html + a5752e728a2b6465a8f5089f589234b34 + + + + attr_Format_ptr + _attr_Format + classlibgno_1_1GenoPro_1_1Global_1_1Name_1_1Full.html + a5d1e3c6af419bd0c8cbe6710e9b5d5e6 + + + + + libgno::GenoPro::Global::Name::sequence + structlibgno_1_1GenoPro_1_1Global_1_1Name_1_1sequence.html + + + sequence + structlibgno_1_1GenoPro_1_1Global_1_1Name_1_1sequence.html + a7ea99a7ff21e2075d152fce1642094c4 + (Name *that) + + + Full_p + element_Full + structlibgno_1_1GenoPro_1_1Global_1_1Name_1_1sequence.html + aba4cf2826334936056379cf43c6268bc + () + + + void + mark_present_Full + structlibgno_1_1GenoPro_1_1Global_1_1Name_1_1sequence.html + ab44e884fe0d3d10522060baf08aecb04 + () + + + Display_p + element_Display + structlibgno_1_1GenoPro_1_1Global_1_1Name_1_1sequence.html + a20310e5da4d3340759315347aa85a972 + () + + + void + mark_present_Display + structlibgno_1_1GenoPro_1_1Global_1_1Name_1_1sequence.html + a66e7422fc40d5c900f77f5fe8362ea2f + () + + + XsdFsmBase * + clone + structlibgno_1_1GenoPro_1_1Global_1_1Name_1_1sequence.html + a1cc0c596c41ad7cbb4c25a14001de3a0 + () const + + + Name * + _that + structlibgno_1_1GenoPro_1_1Global_1_1Name_1_1sequence.html + ab0aa6c1fff5ca58f669a25456c4395c1 + + + + + libgno::GenoPro::Global::Options + classlibgno_1_1GenoPro_1_1Global_1_1Options.html + + AutoPtr< XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > > + attr_HideEmotionalRelationships_ptr + classlibgno_1_1GenoPro_1_1Global_1_1Options.html + a5b6fee48980025156df5ffa182c54d0b + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > * + attr_HideEmotionalRelationships_p + classlibgno_1_1GenoPro_1_1Global_1_1Options.html + adf58c4dc3ba46840396aeaa6e2ae90a0 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > + attr_HideEmotionalRelationships + classlibgno_1_1GenoPro_1_1Global_1_1Options.html + a2ff1e8bb0957f759f76cc39d81fb72ab + + + + + Options + classlibgno_1_1GenoPro_1_1Global_1_1Options.html + afeef0669b14661891652cd592f8948f6 + (ElementCreateArgs args) + + + attr_HideEmotionalRelationships_p + attribute_attr_HideEmotionalRelationships + classlibgno_1_1GenoPro_1_1Global_1_1Options.html + ad1555a825773dd89bda130b3d39e2222 + () + + + void + set_attr_HideEmotionalRelationships + classlibgno_1_1GenoPro_1_1Global_1_1Options.html + a8fc15fb516b26d4e330e4a9156ad4ee4 + (DOMString val) + + + DOMString + get_attr_HideEmotionalRelationships_string + classlibgno_1_1GenoPro_1_1Global_1_1Options.html + a80771ea4e8081d205eaeddc77afa429d + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1Global_1_1Options.html + af29d36beb2ee11a61a41bf40f7307c04 + () + + + attr_HideEmotionalRelationships_ptr + create_attr_HideEmotionalRelationships + classlibgno_1_1GenoPro_1_1Global_1_1Options.html + a05673b586ac95c297e1f4e9c45cd0214 + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1Global_1_1Options.html + a3db1269d852f88f0243c266b49bf8f1b + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1Global_1_1Options.html + ab1761e0c13d523269c9b86c01f34b660 + + + + attr_HideEmotionalRelationships_ptr + _attr_HideEmotionalRelationships + classlibgno_1_1GenoPro_1_1Global_1_1Options.html + a002d5be5f17bc2bac53b57fbc44ef098 + + + + + libgno::GenoPro::Global::sequence + structlibgno_1_1GenoPro_1_1Global_1_1sequence.html + + + sequence + structlibgno_1_1GenoPro_1_1Global_1_1sequence.html + a2e690e2efe6b1cf5b4c7d7e97ddb5c24 + (Global *that) + + + Name_p + element_Name + structlibgno_1_1GenoPro_1_1Global_1_1sequence.html + a217543d9d708bd5d1c35ff38a22152f0 + () + + + void + mark_present_Name + structlibgno_1_1GenoPro_1_1Global_1_1sequence.html + a3789f7a6705566ec34d5298fe3c85702 + () + + + Font_p + element_Font + structlibgno_1_1GenoPro_1_1Global_1_1sequence.html + ae506f42635600f8060a76246101f8c29 + () + + + void + set_Font + structlibgno_1_1GenoPro_1_1Global_1_1sequence.html + a3060ae1e9f11f1f2f2a590f9dd6b2dda + (DOMString val) + + + DOMString + get_Font_string + structlibgno_1_1GenoPro_1_1Global_1_1sequence.html + adcfa8d24cce1a3d61d77b82421d36b73 + () + + + void + mark_present_Font + structlibgno_1_1GenoPro_1_1Global_1_1sequence.html + a12a991c805f2118c7f47bc15d5bede7d + () + + + Display_p + element_Display + structlibgno_1_1GenoPro_1_1Global_1_1sequence.html + a163b0d91525e4d4776079485eab4d3e0 + () + + + void + mark_present_Display + structlibgno_1_1GenoPro_1_1Global_1_1sequence.html + a011be2cf9c527681fc54fe9091f7e2d2 + () + + + List< Tags_ptr > + elements_Tags + structlibgno_1_1GenoPro_1_1Global_1_1sequence.html + ae51064a8abc118f29423ba1f233713d6 + () + + + Tags_p + element_Tags_at + structlibgno_1_1GenoPro_1_1Global_1_1sequence.html + a90bd2f18c4d8bb55324dc0bebb68b258 + (unsigned int idx) + + + Tags_p + add_node_Tags + structlibgno_1_1GenoPro_1_1Global_1_1sequence.html + a1c7bec899a95e1bf99028adbd252ec1a + () + + + List< Tags_ptr > + set_count_Tags + structlibgno_1_1GenoPro_1_1Global_1_1sequence.html + a674eaaa1b1427dad30d60c5704dcced9 + (unsigned int size) + + + Document_p + element_Document + structlibgno_1_1GenoPro_1_1Global_1_1sequence.html + a08b8756f7a410b3bf876f7d90b7b9000 + () + + + void + mark_present_Document + structlibgno_1_1GenoPro_1_1Global_1_1sequence.html + a2d1af211eab14ce083e3b6d83d27b718 + () + + + ActiveGenoMap_p + element_ActiveGenoMap + structlibgno_1_1GenoPro_1_1Global_1_1sequence.html + a2353de392fe436918774fe47a06892a2 + () + + + void + set_ActiveGenoMap + structlibgno_1_1GenoPro_1_1Global_1_1sequence.html + a483e5d094bcb1c0a6a05f082befd085d + (DOMString val) + + + DOMString + get_ActiveGenoMap_string + structlibgno_1_1GenoPro_1_1Global_1_1sequence.html + a49a5a4f7e1f2f4866a4f8941741512a5 + () + + + void + mark_present_ActiveGenoMap + structlibgno_1_1GenoPro_1_1Global_1_1sequence.html + a699bd873a036e5f5e8dbf0f0d4436b46 + () + + + Options_p + element_Options + structlibgno_1_1GenoPro_1_1Global_1_1sequence.html + a979a682bc6a0e8ed9df10c11075e1069 + () + + + void + mark_present_Options + structlibgno_1_1GenoPro_1_1Global_1_1sequence.html + ab2c78493786db3d2c0c04b12d4517410 + () + + + XsdFsmBase * + clone + structlibgno_1_1GenoPro_1_1Global_1_1sequence.html + aca24134bca22a45e06933cc258d28645 + () const + + + Global * + _that + structlibgno_1_1GenoPro_1_1Global_1_1sequence.html + ae363a4aced9cef89ef8dbe93fa2bafe2 + + + + + libgno::GenoPro::Global::Tags + classlibgno_1_1GenoPro_1_1Global_1_1Tags.html + libgno::GenoPro::Global::Tags::DialogLayout + libgno::GenoPro::Global::Tags::sequence + libgno::GenoPro::Global::Tags::TagData + + AutoPtr< TagData > + TagData_ptr + classlibgno_1_1GenoPro_1_1Global_1_1Tags.html + a605a81b2a0810e1e6538ce2ecc5c8396 + + + + TagData * + TagData_p + classlibgno_1_1GenoPro_1_1Global_1_1Tags.html + a3558fbd5ca90f9f7b18dd6c8a89560ff + + + + AutoPtr< DialogLayout > + DialogLayout_ptr + classlibgno_1_1GenoPro_1_1Global_1_1Tags.html + ad8cf8495a49179e6387252fe7a053fa2 + + + + DialogLayout * + DialogLayout_p + classlibgno_1_1GenoPro_1_1Global_1_1Tags.html + a7bf070ae3c5eb034526819d26a613095 + + + + AutoPtr< XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > > + attr_ID_ptr + classlibgno_1_1GenoPro_1_1Global_1_1Tags.html + ae004b6d4a21ad6ad700d2a867233422d + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > * + attr_ID_p + classlibgno_1_1GenoPro_1_1Global_1_1Tags.html + a016a49575e29c81325b4d9b4bff9f06e + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > + attr_ID + classlibgno_1_1GenoPro_1_1Global_1_1Tags.html + a8b32a039ee9aca27ff333d0fa71e8204 + + + + + Tags + classlibgno_1_1GenoPro_1_1Global_1_1Tags.html + aadac067a5f3922876c776a504526e3a5 + (ElementCreateArgs args) + + + List< TagData_ptr > + elements_TagData + classlibgno_1_1GenoPro_1_1Global_1_1Tags.html + ac94a4b8ccd605e6b9e27eedfbb3da166 + () + + + TagData_p + element_TagData_at + classlibgno_1_1GenoPro_1_1Global_1_1Tags.html + a68c56f3b678fc1d87115b5ffe831fe11 + (unsigned int idx) + + + TagData_p + add_node_TagData + classlibgno_1_1GenoPro_1_1Global_1_1Tags.html + a6ae13c776bbe01d2d4948c22cba2892f + () + + + List< TagData_ptr > + set_count_TagData + classlibgno_1_1GenoPro_1_1Global_1_1Tags.html + a7d3b64239ddef89860724ef2a7d28467 + (unsigned int size) + + + DialogLayout_p + element_DialogLayout + classlibgno_1_1GenoPro_1_1Global_1_1Tags.html + a33ff20c2b6ed4479010192091ead43b4 + () + + + void + mark_present_DialogLayout + classlibgno_1_1GenoPro_1_1Global_1_1Tags.html + ac301c8e7e6bd29c0569fc4e12dc78257 + () + + + attr_ID_p + attribute_attr_ID + classlibgno_1_1GenoPro_1_1Global_1_1Tags.html + a7fc106b105f8c20562a818e8045c0234 + () + + + void + set_attr_ID + classlibgno_1_1GenoPro_1_1Global_1_1Tags.html + a58198a48c1e02f612c3060701e7abf20 + (DOMString val) + + + DOMString + get_attr_ID_string + classlibgno_1_1GenoPro_1_1Global_1_1Tags.html + a392d342e7dd32819960912696de87c5d + () + + + sequence * + get_sequence + classlibgno_1_1GenoPro_1_1Global_1_1Tags.html + a63c0e38c694bc8f12a7a6002ac88c2f5 + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1Global_1_1Tags.html + aa675e00e5044ed99a82d7c442f8ebc84 + () + + + TagData_ptr + create_TagData + classlibgno_1_1GenoPro_1_1Global_1_1Tags.html + aede3ddd97f1e21efea51550cbe53179c + (FsmCbOptions &options) + + + DialogLayout_ptr + create_DialogLayout + classlibgno_1_1GenoPro_1_1Global_1_1Tags.html + a7c451e04b460980cbb3dcd4e9c16886c + (FsmCbOptions &options) + + + attr_ID_ptr + create_attr_ID + classlibgno_1_1GenoPro_1_1Global_1_1Tags.html + a8a4bdd8ba8fac1c220849f983f61bb0f + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1Global_1_1Tags.html + acdde54a934009cf6b0b40a917c5d93d6 + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1Global_1_1Tags.html + aa636496627e71b3d581392ff48f867a5 + + + + AutoPtr< sequence > + _sequence + classlibgno_1_1GenoPro_1_1Global_1_1Tags.html + a83f50385516b26765159452e2e74271c + + + + List< TagData_ptr > + _list_TagData + classlibgno_1_1GenoPro_1_1Global_1_1Tags.html + a1d788a0c05d94cbf0b24dd23fb22b83c + + + + DialogLayout_ptr + _DialogLayout + classlibgno_1_1GenoPro_1_1Global_1_1Tags.html + ae80ca8898c8db01bdea6c8bdb97e792f + + + + attr_ID_ptr + _attr_ID + classlibgno_1_1GenoPro_1_1Global_1_1Tags.html + a1b4b6a35fc103341a535d5a4423737d4 + + + + + libgno::GenoPro::Global::Tags::DialogLayout + classlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1DialogLayout.html + libgno::GenoPro::Global::Tags::DialogLayout::sequence + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_string > > + Description_ptr + classlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1DialogLayout.html + abdecc0a75656f08a66cdc86f6b14f85e + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_string > * + Description_p + classlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1DialogLayout.html + ac74ae2a7fe1bc12b5f909be2de3fc1ce + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_string > + Description + classlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1DialogLayout.html + a78dc02523d26f2c487ad05c36881481b + + + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > > + Tags_ptr + classlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1DialogLayout.html + a830b13e8ed60e8a3d207de4c47548811 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > * + Tags_p + classlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1DialogLayout.html + a54bcfa2b2556fe999178111776a49895 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > + Tags + classlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1DialogLayout.html + a925819cefc11026b829a2b122ed39a3f + + + + AutoPtr< XMLSchema::XmlAttribute< XMLSchema::Types::bt_string > > + attr_Name_ptr + classlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1DialogLayout.html + a5cf14115b8341d877dc3fc01eaf455b2 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_string > * + attr_Name_p + classlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1DialogLayout.html + ae7aeca44f0279f8791f6bd8b08038e0a + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_string > + attr_Name + classlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1DialogLayout.html + aa9c43131b1386d2734cb6c61ff4fc1d6 + + + + + DialogLayout + classlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1DialogLayout.html + ad5613e06d0a74a90e33bd81d5302a842 + (ElementCreateArgs args) + + + Description_p + element_Description + classlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1DialogLayout.html + a45546ea68042dec5812f1bcde023eda0 + () + + + void + set_Description + classlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1DialogLayout.html + ab359a48819616d8d32aceb8901fdf265 + (DOMString val) + + + DOMString + get_Description_string + classlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1DialogLayout.html + aba09d8261ba6b85aa5956f7ce880dfb9 + () + + + void + mark_present_Description + classlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1DialogLayout.html + af1916b560245fa20ad0b213c79d216dc + () + + + Tags_p + element_Tags + classlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1DialogLayout.html + a46d21524c43afd1fefe35edd49a8d3c2 + () + + + void + set_Tags + classlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1DialogLayout.html + a328b739be01e0ec6344122c71b07d261 + (DOMString val) + + + DOMString + get_Tags_string + classlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1DialogLayout.html + abdc65b9f549c4d559c7f83e80827bc81 + () + + + void + mark_present_Tags + classlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1DialogLayout.html + a0656c0841c6a58ae082591f739394f8d + () + + + attr_Name_p + attribute_attr_Name + classlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1DialogLayout.html + ad9e1a6860763e8c819af22f6482733a9 + () + + + void + set_attr_Name + classlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1DialogLayout.html + a4b4d4a40ae8bd18503a5a003724d5f81 + (DOMString val) + + + DOMString + get_attr_Name_string + classlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1DialogLayout.html + acafd345a450044d05a78e4841975c13f + () + + + sequence * + get_sequence + classlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1DialogLayout.html + a94d64b1c05aceed2140f213a9ce711fc + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1DialogLayout.html + a2b6bcfa7580d50acd3c2c3e5a4a176ae + () + + + Description_ptr + create_Description + classlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1DialogLayout.html + a8893fdfca028561bd36f27c14c16e88a + (FsmCbOptions &options) + + + Tags_ptr + create_Tags + classlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1DialogLayout.html + a5ee80422d8c1f6d936139291e7fbfbb3 + (FsmCbOptions &options) + + + attr_Name_ptr + create_attr_Name + classlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1DialogLayout.html + aab9f52b170e376ccfd57ee70d58ff688 + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1DialogLayout.html + a823bb6cdee1351a1c74354560dd3e3a7 + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1DialogLayout.html + a1387bc441ef2764f84e6140374cda630 + + + + AutoPtr< sequence > + _sequence + classlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1DialogLayout.html + a6c1ad9b3bd490030b5ce3a6e30262e94 + + + + Description_ptr + _Description + classlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1DialogLayout.html + a04dd2e72f7028b44c5a5f4a3a6b9e980 + + + + Tags_ptr + _Tags + classlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1DialogLayout.html + a10139b58802d1b9491b983d7f992d05c + + + + attr_Name_ptr + _attr_Name + classlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1DialogLayout.html + a50e01fda062746f56fd464cd27cca39f + + + + + libgno::GenoPro::Global::Tags::DialogLayout::sequence + structlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1DialogLayout_1_1sequence.html + + + sequence + structlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1DialogLayout_1_1sequence.html + a7811d21203bd51e607dca16109d752ed + (DialogLayout *that) + + + Description_p + element_Description + structlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1DialogLayout_1_1sequence.html + a4abeae818e41d45d4c345d2d2189c662 + () + + + void + set_Description + structlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1DialogLayout_1_1sequence.html + a82e4e5bf4cc7e19891d237b1faddf586 + (DOMString val) + + + DOMString + get_Description_string + structlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1DialogLayout_1_1sequence.html + ac811958712398d0ce8ae9c833422e3ad + () + + + void + mark_present_Description + structlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1DialogLayout_1_1sequence.html + a971b5e06e013b672aa208b2b4efb0823 + () + + + Tags_p + element_Tags + structlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1DialogLayout_1_1sequence.html + a72ca5bb07037f2a1da206db0bc4797ec + () + + + void + set_Tags + structlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1DialogLayout_1_1sequence.html + ad3fd4b5f5fe0ca302977e5d1d2b42384 + (DOMString val) + + + DOMString + get_Tags_string + structlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1DialogLayout_1_1sequence.html + ae813e92dca4a0bcfbea67d6153513d46 + () + + + void + mark_present_Tags + structlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1DialogLayout_1_1sequence.html + a7d9af0f49f768eaa5eae7107e5aa66cc + () + + + XsdFsmBase * + clone + structlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1DialogLayout_1_1sequence.html + a0ae64abc985ea1ea0a6dcad0fd904e8c + () const + + + DialogLayout * + _that + structlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1DialogLayout_1_1sequence.html + aff3417bafe0ad711b6ac3e60b4aff2d0 + + + + + libgno::GenoPro::Global::Tags::sequence + structlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1sequence.html + + + sequence + structlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1sequence.html + ad0ac4b87aac92e996e71d5f51b3808e4 + (Tags *that) + + + List< TagData_ptr > + elements_TagData + structlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1sequence.html + ab2e27b75b3a630bdddcb59d8fd1a0c95 + () + + + TagData_p + element_TagData_at + structlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1sequence.html + ae5606627120f3b00a487d7ee7b29b550 + (unsigned int idx) + + + TagData_p + add_node_TagData + structlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1sequence.html + a030a82df8271c148edd03156d14f6374 + () + + + List< TagData_ptr > + set_count_TagData + structlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1sequence.html + a21bd60a844d710e9e6eab9cb388bb018 + (unsigned int size) + + + DialogLayout_p + element_DialogLayout + structlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1sequence.html + afc8efc1edf763cbf3d1e1d9e56b789ae + () + + + void + mark_present_DialogLayout + structlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1sequence.html + a0f74f61cbed589a7094f2c7818c7e9b9 + () + + + XsdFsmBase * + clone + structlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1sequence.html + a1605d56e1c70f7def2be245399165266 + () const + + + Tags * + _that + structlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1sequence.html + af338c5c3059a0604afa017652e44275d + + + + + libgno::GenoPro::Global::Tags::TagData + classlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1TagData.html + libgno::GenoPro::Global::Tags::TagData::sequence + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > > + DisplayName_ptr + classlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1TagData.html + a2206440d1682a79f8a19cd25ab8df24c + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > * + DisplayName_p + classlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1TagData.html + ab64835b08c967e2aaceb190b54a3f0ae + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > + DisplayName + classlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1TagData.html + a9e1eed3890eb41551f0868944c475377 + + + + AutoPtr< XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > > + attr_Name_ptr + classlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1TagData.html + a0aeda0523a04a92890fa3bb7798543ec + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > * + attr_Name_p + classlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1TagData.html + aaeb83ec9a0ff9a12fe21ec8bddfcc29b + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > + attr_Name + classlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1TagData.html + ad1019171499ea116797580aecdee2b56 + + + + + TagData + classlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1TagData.html + ab2931f05d933e70d1922a75df1fb05b3 + (ElementCreateArgs args) + + + DisplayName_p + element_DisplayName + classlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1TagData.html + aeb5f87bac5eda3885556086991a1828b + () + + + void + set_DisplayName + classlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1TagData.html + a7fa408d143aa95c2485d24f1db374330 + (DOMString val) + + + DOMString + get_DisplayName_string + classlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1TagData.html + a8d7f527a77a41bebe94a17450563305f + () + + + void + mark_present_DisplayName + classlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1TagData.html + a4cf68474c5958040e28ed692784962f7 + () + + + attr_Name_p + attribute_attr_Name + classlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1TagData.html + ab1cda581d8c52c6061d3ecae01957a1b + () + + + void + set_attr_Name + classlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1TagData.html + a2a582c468817901cb235f4ecdf2311fc + (DOMString val) + + + DOMString + get_attr_Name_string + classlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1TagData.html + a2cc379b3bd914221c735ebd55bc2cdc6 + () + + + sequence * + get_sequence + classlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1TagData.html + ae302b35a1fd8ac90aa1aa8450b029dc2 + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1TagData.html + ac01132159f02d3d90d6a9cb67438e3d2 + () + + + DisplayName_ptr + create_DisplayName + classlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1TagData.html + a924af315c9366e625078d45d16e895c0 + (FsmCbOptions &options) + + + attr_Name_ptr + create_attr_Name + classlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1TagData.html + af9667b3deca51143baef20bd06217faa + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1TagData.html + afefde35da200da3c2df55fd03935d6c3 + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1TagData.html + a215f68157e1b532491b3048451111d3b + + + + AutoPtr< sequence > + _sequence + classlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1TagData.html + a53717dd2b7e70c6adf7c70949eba617b + + + + DisplayName_ptr + _DisplayName + classlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1TagData.html + a23d0b11ce78ba4bdc0ce695ec3b9a94e + + + + attr_Name_ptr + _attr_Name + classlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1TagData.html + abfb0791293b9a061c0cffe4b9648f0ca + + + + + libgno::GenoPro::Global::Tags::TagData::sequence + structlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1TagData_1_1sequence.html + + + sequence + structlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1TagData_1_1sequence.html + af253ed9ebdd22d57dd73ff4a3422b217 + (TagData *that) + + + DisplayName_p + element_DisplayName + structlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1TagData_1_1sequence.html + a3fbc9f5f7e1a0959fd18faa0127ae5d8 + () + + + void + set_DisplayName + structlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1TagData_1_1sequence.html + af00674781b135b02f4e48995d20470c4 + (DOMString val) + + + DOMString + get_DisplayName_string + structlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1TagData_1_1sequence.html + a1767afe58f31fe988292872ebec7b2a5 + () + + + void + mark_present_DisplayName + structlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1TagData_1_1sequence.html + ab25794713cb8e4f51871ac1b6fceb016 + () + + + XsdFsmBase * + clone + structlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1TagData_1_1sequence.html + ad262f2834299052cc1aeb4a740d05353 + () const + + + TagData * + _that + structlibgno_1_1GenoPro_1_1Global_1_1Tags_1_1TagData_1_1sequence.html + a752c2bfc40911d5983fdf7e09697f41c + + + + + libgno::GenoPro::Individuals + classlibgno_1_1GenoPro_1_1Individuals.html + libgno::GenoPro::Individuals::Individual + libgno::GenoPro::Individuals::sequence + + AutoPtr< Individual > + Individual_ptr + classlibgno_1_1GenoPro_1_1Individuals.html + ac9575f0e7de61a10df6f430c2f226155 + + + + Individual * + Individual_p + classlibgno_1_1GenoPro_1_1Individuals.html + a0f458135f1f3aa8f1f3207e76f1f7d24 + + + + + Individuals + classlibgno_1_1GenoPro_1_1Individuals.html + a0276a9a96a7a1d8583dbaa189ded3d29 + (ElementCreateArgs args) + + + List< Individual_ptr > + elements_Individual + classlibgno_1_1GenoPro_1_1Individuals.html + ae6bdfd9e7e7ccaa61da1735d38a1f6df + () + + + Individual_p + element_Individual_at + classlibgno_1_1GenoPro_1_1Individuals.html + a21d015569b1e24d290b5457b81681b43 + (unsigned int idx) + + + Individual_p + add_node_Individual + classlibgno_1_1GenoPro_1_1Individuals.html + a6503011c7a9bfc95ccd5c7faed36b801 + () + + + List< Individual_ptr > + set_count_Individual + classlibgno_1_1GenoPro_1_1Individuals.html + afd4ffad54cbc000ca94e29f75af8ede9 + (unsigned int size) + + + sequence * + get_sequence + classlibgno_1_1GenoPro_1_1Individuals.html + aa7223dd346d30117b746ffc6b750a308 + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1Individuals.html + aa5b79d31a3c771e3c5f796202a0c0116 + () + + + Individual_ptr + create_Individual + classlibgno_1_1GenoPro_1_1Individuals.html + aefc5a09f6142da1d81ebc97cb51a03cf + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1Individuals.html + a0ddf8a104c37a883916b223d628ed074 + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1Individuals.html + a4fecb1689c9578b6ea9e3ba6726c405c + + + + AutoPtr< sequence > + _sequence + classlibgno_1_1GenoPro_1_1Individuals.html + ac65791cea905a833df581ca3fe5e6ad1 + + + + List< Individual_ptr > + _list_Individual + classlibgno_1_1GenoPro_1_1Individuals.html + a76154522050a7a4d8621d726ea30728d + + + + + libgno::GenoPro::Individuals::Individual + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + libgno::GenoPro::Individuals::Individual::Death + libgno::GenoPro::Individuals::Individual::Name + libgno::GenoPro::Individuals::Individual::Position + libgno::GenoPro::Individuals::Individual::sequence + + AutoPtr< Name > + Name_ptr + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + a0f59d39227e375f5e4161e2e2d11e5cb + + + + Name * + Name_p + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + a2c224b34cdbd5aa59191ff8382eece0b + + + + AutoPtr< Position > + Position_ptr + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + ad59692364a318848b7e6fba29480b424 + + + + Position * + Position_p + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + a9128b464ad92efe5f4e3b54e55e71941 + + + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > > + Gender_ptr + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + a53048d2665ca64855f3d335d01f97a72 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > * + Gender_p + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + ac80417d444066e1406bef07ee74d0a2a + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > + Gender + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + ac1dcd834ed8c378c057775e0b9f3c685 + + + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > > + IsDead_ptr + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + ad3e1d28d50dcc8706a368b056ee0fc75 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > * + IsDead_p + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + a22aa872e86131c2e16111c28b6fed8d0 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > + IsDead + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + ad307fae54e2b1321aacd3fef9a564fb8 + + + + AutoPtr< Death > + Death_ptr + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + a600e4309e773a4d96bca45239ac48b9d + + + + Death * + Death_p + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + a0e2cc8fd02a0387055b5e02d70387939 + + + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_int > > + child_no_ptr + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + a5b8db46dab058dce4708e2855a2f50af + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_int > * + child_no_p + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + a17602d9cee3343ca114ffa21814eedff + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_int > + child_no + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + aaa131ac42254ae61db715d2006c1684b + + + + AutoPtr< XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > > + attr_ID_ptr + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + a792b9bc18a680ab1db20c35c6536fe36 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > * + attr_ID_p + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + a7d253a3d6793994422a737423a13541d + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > + attr_ID + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + a49a7431d59c7bfbba2f4238de552f4e0 + + + + + Individual + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + a3cecc0759eed55e2eda758913eabf603 + (ElementCreateArgs args) + + + Name_p + element_Name + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + aa261e0f8bb2a817ee6cde539d45ac345 + () + + + void + mark_present_Name + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + a22e406a7a7b2f63002df35f92e935f8d + () + + + Position_p + element_Position + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + a00280f03fd25869998feecbf3daa2046 + () + + + void + mark_present_Position + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + a883fe7762f633453b014050a695b4f57 + () + + + Gender_p + element_Gender + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + a8d8b64450f794c3b6ad2650ed146e235 + () + + + void + set_Gender + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + a55de7d89426393488100b00cfeb8bd87 + (DOMString val) + + + DOMString + get_Gender_string + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + a6ad7118061115fb5a65a036c5ce322dc + () + + + void + mark_present_Gender + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + aae6422d8900121e352eef22e490cc9d4 + () + + + IsDead_p + element_IsDead + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + ab661ca05179e6e49554f64cf18d321fc + () + + + void + set_IsDead + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + aaab728cefb9fa528211dd54d8819edb3 + (DOMString val) + + + DOMString + get_IsDead_string + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + af0047a34a4f174fefb4a6dd99018da07 + () + + + void + mark_present_IsDead + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + ac6a2e7dd8182c5171dec7bfec53b37ca + () + + + Death_p + element_Death + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + a84231dc7c4daa3781dda52be50191112 + () + + + void + mark_present_Death + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + a0a2d02fb3b75bc8bd29e4e040dda6e5a + () + + + child_no_p + element_child_no + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + ac9e23a1cbc4027842ceb0ea6b9600d86 + () + + + void + set_child_no + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + a90cbd1bc97bf4ea1c87998bc98c3308e + (DOMString val) + + + DOMString + get_child_no_string + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + a15d2ea9b9a471fe09f4696bd9d947810 + () + + + void + set_child_no + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + ae4ecbfd359f1643c809474063d65b182 + (int val) + + + int + get_child_no + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + aeb48f2f59079adfc225bb44352c7e6f7 + () + + + void + mark_present_child_no + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + a3c9cd38449f5855eaaa72e9474501b31 + () + + + attr_ID_p + attribute_attr_ID + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + abd5706133fd5645dced13e0010e0799c + () + + + void + set_attr_ID + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + a367a4318ed56333c086c2280ef2c7ef1 + (DOMString val) + + + DOMString + get_attr_ID_string + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + a508c2a5ca37f9e6b3962131208b408e0 + () + + + sequence * + get_sequence + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + ae0155b8231bee1ba14c39ad42bbabe53 + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + a74a7fa75cf9f27b40fb95a78a6c1e435 + () + + + Name_ptr + create_Name + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + ad8d9ef93c5a597b9c4d1ac82192b1f4e + (FsmCbOptions &options) + + + Position_ptr + create_Position + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + aeb95c9ee96b68877ccd3bf3a08b1983a + (FsmCbOptions &options) + + + Gender_ptr + create_Gender + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + a0aa0907fbbd2a1ebd034fc5b0e56d1e6 + (FsmCbOptions &options) + + + IsDead_ptr + create_IsDead + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + af0005585a0eeb27f8d33e8a3402e3b2c + (FsmCbOptions &options) + + + Death_ptr + create_Death + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + a736f7b18a02d1ecc79818ddeefe075dc + (FsmCbOptions &options) + + + child_no_ptr + create_child_no + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + aefbc83c6537d9f25e0579a435ea444c4 + (FsmCbOptions &options) + + + attr_ID_ptr + create_attr_ID + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + a4930201d53b524c77d4f17586bdde591 + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + a5b2503f91d804dd4f556fe05b58b11ea + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + ad7d6a0b626681fd749979dd0ce33c65f + + + + AutoPtr< sequence > + _sequence + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + a0e55b88b82011e3cdcef1c6b184ce32b + + + + Name_ptr + _Name + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + aec0eb2020ee6293aacc7b07dd75cbfb9 + + + + Position_ptr + _Position + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + a26a7d1c1117f085634a567d3fc73224b + + + + Gender_ptr + _Gender + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + a1ed4ce54e7df40bfeaa03973dc62cc33 + + + + IsDead_ptr + _IsDead + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + a43a36b2a301cf3b3439df8d0ce0e4cfe + + + + Death_ptr + _Death + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + a0957f69dbde43c571cb632dc07fea939 + + + + child_no_ptr + _child_no + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + a12a2c29588bb6b18345f5c8276160060 + + + + attr_ID_ptr + _attr_ID + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual.html + af03acc9b8c44192c51e4676421d736bf + + + + + libgno::GenoPro::Individuals::Individual::Death + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Death.html + libgno::GenoPro::Individuals::Individual::Death::Cause + libgno::GenoPro::Individuals::Individual::Death::sequence + + AutoPtr< Cause > + Cause_ptr + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Death.html + a401bcc72be4807c000addcf0ceece4ea + + + + Cause * + Cause_p + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Death.html + a31eeccaff3e76e8bf71d603e078d75de + + + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_string > > + Comment_ptr + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Death.html + aa344cd3c0da254529a93c50bb2011157 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_string > * + Comment_p + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Death.html + a3048d45a6c25ca6ae9d8d0f0ba7f1789 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_string > + Comment + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Death.html + a34a861c24894da2872f0acc49efb2634 + + + + + Death + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Death.html + a956e8a201ee8ebea9080388d8860c2af + (ElementCreateArgs args) + + + Cause_p + element_Cause + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Death.html + a004635e45867b9e79258469a5508f890 + () + + + void + mark_present_Cause + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Death.html + a29a703afaa49bf4699ab6faced50c65e + () + + + Comment_p + element_Comment + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Death.html + ab50d86bcd4625e2ab84c0a74b9ee2dc6 + () + + + void + set_Comment + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Death.html + ab32a8d6ab120cc7ac018ff8f721c01de + (DOMString val) + + + DOMString + get_Comment_string + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Death.html + ac7604e33a569c1c104bd82d070b3047c + () + + + void + mark_present_Comment + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Death.html + aad3ab692222f7a4c89c0280013e0b640 + () + + + sequence * + get_sequence + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Death.html + a2cba7402aeaa427054c8fb45f6f4a31f + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Death.html + a7e6b889b936dfdf1eaace11b61690795 + () + + + Cause_ptr + create_Cause + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Death.html + a49a707d36561d6b95d95b5b600acc4a7 + (FsmCbOptions &options) + + + Comment_ptr + create_Comment + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Death.html + acffa55d03832808f05f56cdd7251034a + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Death.html + a5a4b7ffaab705b63d5c645b244995fb4 + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Death.html + af6d99a2cd1e872c868cfc9eda246f3bd + + + + AutoPtr< sequence > + _sequence + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Death.html + aefaeb86df555718e244dfd1357297577 + + + + Cause_ptr + _Cause + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Death.html + a561a65a996962520e282db01aa9c4380 + + + + Comment_ptr + _Comment + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Death.html + ae1fe4f40717f2d681aa63b409bf05e47 + + + + + libgno::GenoPro::Individuals::Individual::Death::Cause + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Death_1_1Cause.html + libgno::GenoPro::Individuals::Individual::Death::Cause::sequence + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_string > > + Description_ptr + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Death_1_1Cause.html + a1dc9fc53aad99189b824a6a92586af94 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_string > * + Description_p + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Death_1_1Cause.html + aeb42c2315c2fb3d9b8f5fb7e7c81c4c1 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_string > + Description + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Death_1_1Cause.html + ace11184a785589e618cdfd89e574c102 + + + + + Cause + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Death_1_1Cause.html + a0a1a47ea15ef7b9923197996d6f735fd + (ElementCreateArgs args) + + + Description_p + element_Description + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Death_1_1Cause.html + a106aca214bf8bb052c7257292562c18c + () + + + void + set_Description + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Death_1_1Cause.html + a8e44eb3b24a7b632398b9620fbee62c5 + (DOMString val) + + + DOMString + get_Description_string + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Death_1_1Cause.html + aeb687ec94bd9271cb116134afaffcc61 + () + + + void + mark_present_Description + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Death_1_1Cause.html + ab24eb889fde6e6f0d579a83ce0aa8331 + () + + + sequence * + get_sequence + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Death_1_1Cause.html + aefcb6534b5255634a21634f0b51aaba2 + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Death_1_1Cause.html + a3a44c59ba261017d7066cf40bd42a9d1 + () + + + Description_ptr + create_Description + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Death_1_1Cause.html + a5fde4d7e804bb5e523e0a295075697fe + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Death_1_1Cause.html + a09b56586e6dd52a39223b28f8946af48 + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Death_1_1Cause.html + afa9693f5460c9ff5eb4fd9e31c3f7df2 + + + + AutoPtr< sequence > + _sequence + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Death_1_1Cause.html + abbb1e138fb59655a1275a2b7e0f3581d + + + + Description_ptr + _Description + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Death_1_1Cause.html + a48867057ddb27da80922d2d73b3fb771 + + + + + libgno::GenoPro::Individuals::Individual::Death::Cause::sequence + structlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Death_1_1Cause_1_1sequence.html + + + sequence + structlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Death_1_1Cause_1_1sequence.html + a38baf7befff755b6d650dfde69135e52 + (Cause *that) + + + Description_p + element_Description + structlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Death_1_1Cause_1_1sequence.html + aac2b2db64a743d31254d1a442ce28bc3 + () + + + void + set_Description + structlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Death_1_1Cause_1_1sequence.html + ac9baa67c9c4a1344347e2316c11f8cd4 + (DOMString val) + + + DOMString + get_Description_string + structlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Death_1_1Cause_1_1sequence.html + a464f4cda89738d4fcc1a7e5a7027e4f5 + () + + + void + mark_present_Description + structlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Death_1_1Cause_1_1sequence.html + af672b764aee30dcf29b984f74ac5053a + () + + + XsdFsmBase * + clone + structlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Death_1_1Cause_1_1sequence.html + a8a85a4a0c963d108e71b50a527b8fb44 + () const + + + Cause * + _that + structlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Death_1_1Cause_1_1sequence.html + af917079d26829665bbee0dd2ee0326bb + + + + + libgno::GenoPro::Individuals::Individual::Death::sequence + structlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Death_1_1sequence.html + + + sequence + structlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Death_1_1sequence.html + a24ede8cb86ed1d72c0468fa2a433a4fd + (Death *that) + + + Cause_p + element_Cause + structlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Death_1_1sequence.html + aa3373035afcb4a155022410172f48505 + () + + + void + mark_present_Cause + structlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Death_1_1sequence.html + a012752b77c413ef72511c043198fd3d1 + () + + + Comment_p + element_Comment + structlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Death_1_1sequence.html + a921453bda64cf04d65896d300e9fe418 + () + + + void + set_Comment + structlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Death_1_1sequence.html + aac8b093a8ad4a6d68d8743aff6fc6809 + (DOMString val) + + + DOMString + get_Comment_string + structlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Death_1_1sequence.html + ab60a119e1da97eba86c1f5cf9e5cda0b + () + + + void + mark_present_Comment + structlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Death_1_1sequence.html + a961671826dcc6461aa622be61bd6c149 + () + + + XsdFsmBase * + clone + structlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Death_1_1sequence.html + ac9a8382d675786fc647b591f7b7ec6d2 + () const + + + Death * + _that + structlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Death_1_1sequence.html + af652d801574df89b86e25a6ca2cc4e87 + + + + + libgno::GenoPro::Individuals::Individual::Name + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Name.html + libgno::GenoPro::Individuals::Individual::Name::Display + libgno::GenoPro::Individuals::Individual::Name::sequence + + AutoPtr< Display > + Display_ptr + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Name.html + ae3945f3eafbcb433b66e263881391f58 + + + + Display * + Display_p + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Name.html + ade70ade06e066be921786ed1bfd79b89 + + + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > > + First_ptr + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Name.html + aff2078f8ee14da74999944112420dbaa + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > * + First_p + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Name.html + a15e9a0f18861adb139756dd246eed018 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > + First + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Name.html + a9fcb631ace1ab859b2e16511f36fa307 + + + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > > + Last_ptr + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Name.html + ac706b94925e6292830ab3a6e80b7f39f + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > * + Last_p + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Name.html + a7d396973fdf64352990fae2fb0f94d4b + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > + Last + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Name.html + a6052a339d969707984135c595a844b5b + + + + + Name + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Name.html + ab9e59989d3c04394ca910a72f2b6bfd0 + (ElementCreateArgs args) + + + Display_p + element_Display + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Name.html + a45379204a9fc2bffb90480bc55b0236e + () + + + void + mark_present_Display + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Name.html + a49a02a3119900ae670c2025198ed6f15 + () + + + First_p + element_First + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Name.html + aa4127cc3bd35e96811f4b823a481871d + () + + + void + set_First + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Name.html + ae580e6d8c83af361d439ca2864b556d4 + (DOMString val) + + + DOMString + get_First_string + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Name.html + aa5009f545315f387fab0436327a05f08 + () + + + void + mark_present_First + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Name.html + a960f433b3be6bafad2ec65d0c0eafa87 + () + + + Last_p + element_Last + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Name.html + a7c1d4a3386421441e32114332015044b + () + + + void + set_Last + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Name.html + a7743486e3868bdd4508155f9e6625244 + (DOMString val) + + + DOMString + get_Last_string + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Name.html + aea86702aa244a8c796102f1951702d59 + () + + + void + mark_present_Last + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Name.html + af24094cef3ad6a7ed9ff74c6082aa136 + () + + + sequence * + get_sequence + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Name.html + a8cc9003f974d8348e425d42d2f96c002 + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Name.html + a86aad42e4bd24081c40b617ebad3fbac + () + + + Display_ptr + create_Display + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Name.html + afe9dd24f35e5a28d193155c101bf061b + (FsmCbOptions &options) + + + First_ptr + create_First + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Name.html + a1966c672c5af60cbb90b5823e6e683f5 + (FsmCbOptions &options) + + + Last_ptr + create_Last + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Name.html + ae805ecf29aac810eaedad846d473f056 + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Name.html + a3f3078b217f83c4c6525ebaf26c4c840 + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Name.html + a05f1c701f5cabb550015f8838ff6730a + + + + AutoPtr< sequence > + _sequence + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Name.html + a2862e35bdfc9c327481b17511448cf1b + + + + Display_ptr + _Display + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Name.html + ad0b997082308cf0ae6c64fa9f1933c5b + + + + First_ptr + _First + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Name.html + ab427ed1549355354b7fbbefeafd99039 + + + + Last_ptr + _Last + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Name.html + aa5ddcc5f003c01c4248b89bc3ee0668c + + + + + libgno::GenoPro::Individuals::Individual::Name::Display + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Name_1_1Display.html + + AutoPtr< XMLSchema::XmlAttribute< XMLSchema::Types::bt_int > > + attr_Lines_ptr + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Name_1_1Display.html + a644d9c7aa31894b8ac6d18b81655dae3 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_int > * + attr_Lines_p + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Name_1_1Display.html + a2ca79d05847eb5875ce21668f0be5b20 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_int > + attr_Lines + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Name_1_1Display.html + a006ec76e7ec7edd327f3fdf14b6b8d57 + + + + + Display + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Name_1_1Display.html + a03f8326734be382a7d244ecec27351ed + (ElementCreateArgs args) + + + attr_Lines_p + attribute_attr_Lines + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Name_1_1Display.html + a858771f2822f95569e06bf85f7db1c67 + () + + + void + set_attr_Lines + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Name_1_1Display.html + aca2511379cd6f9bcab91e256e65b3a4a + (DOMString val) + + + DOMString + get_attr_Lines_string + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Name_1_1Display.html + a89caf3382f948c038252fb59a079bd6b + () + + + void + set_attr_Lines + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Name_1_1Display.html + a3c0df3da77efecd5e05fbe3f6dcca080 + (int val) + + + int + get_attr_Lines + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Name_1_1Display.html + a1ee7bf900fe92216984ab5b9e183d8d0 + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Name_1_1Display.html + a1bf673602e97465724bf3fc06a433a34 + () + + + attr_Lines_ptr + create_attr_Lines + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Name_1_1Display.html + ae3e17eb2d8149a1acc14c8030fccf0ba + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Name_1_1Display.html + a70ac44f33c067e62800fd6b2c978be5c + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Name_1_1Display.html + a3ec26104d25301b14a3638d57223daf0 + + + + attr_Lines_ptr + _attr_Lines + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Name_1_1Display.html + a801173db3e64884504fdec2ebcdcc8fc + + + + + libgno::GenoPro::Individuals::Individual::Name::sequence + structlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Name_1_1sequence.html + + + sequence + structlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Name_1_1sequence.html + a4eb9bc3debcdd9d7a1a890b758c3e708 + (Name *that) + + + Display_p + element_Display + structlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Name_1_1sequence.html + a34adbe11611264d542c58e5b221349b5 + () + + + void + mark_present_Display + structlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Name_1_1sequence.html + a118e7193a7cc791f848ec11431cb658f + () + + + First_p + element_First + structlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Name_1_1sequence.html + a621d0e8e69f2053f48b2d0e1759b0dd7 + () + + + void + set_First + structlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Name_1_1sequence.html + aa5287ff7490037cc8ff51d140b1c68f7 + (DOMString val) + + + DOMString + get_First_string + structlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Name_1_1sequence.html + a5623520c21bd76a06a9910f58ba61dd0 + () + + + void + mark_present_First + structlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Name_1_1sequence.html + abad0be13f3233d5b2c729d3bdcb91849 + () + + + Last_p + element_Last + structlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Name_1_1sequence.html + a0b4e47f2400226082fc0c4001c766fc9 + () + + + void + set_Last + structlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Name_1_1sequence.html + abe8c072d86ab0be6e3455c0c90bcbba3 + (DOMString val) + + + DOMString + get_Last_string + structlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Name_1_1sequence.html + a8c04e4f4c932aed93c5c2e5af158369a + () + + + void + mark_present_Last + structlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Name_1_1sequence.html + a910ae50ad6a3ca8a0b8d9b53b4e93aa2 + () + + + XsdFsmBase * + clone + structlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Name_1_1sequence.html + a33098d34437eabb0ad2cd88ffd1aa7ea + () const + + + Name * + _that + structlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Name_1_1sequence.html + a581bc4821ea2bddb35e20195b6d30580 + + + + + libgno::GenoPro::Individuals::Individual::Position + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Position.html + + AutoPtr< XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > > + attr_BoundaryRect_ptr + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Position.html + a1c933c281ecb0c61881252ad80370e7c + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > * + attr_BoundaryRect_p + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Position.html + a0e5095637ac70f85389dc4d211965135 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > + attr_BoundaryRect + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Position.html + a7f5c973b0f1d15744d7521f39848ca16 + + + + + Position + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Position.html + aa05e79233f1f13cc248f682ecdd43c1c + (ElementCreateArgs args) + + + attr_BoundaryRect_p + attribute_attr_BoundaryRect + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Position.html + af11602bd61a56b859fcca08e5c445fc5 + () + + + void + set_attr_BoundaryRect + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Position.html + acf15036c662fe8cd6629ded212470ced + (DOMString val) + + + DOMString + get_attr_BoundaryRect_string + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Position.html + a825af4f0b836e274a24907267960bc65 + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Position.html + a4330a496255ca72552a56a567c389148 + () + + + attr_BoundaryRect_ptr + create_attr_BoundaryRect + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Position.html + a5568ae2be13d845f7a8326a6b3a3ae00 + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Position.html + ad89fd0366d8910931f6f4d1435ffd2e5 + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Position.html + aaeeb1a1ec632efa2e5830e1174ffdc88 + + + + attr_BoundaryRect_ptr + _attr_BoundaryRect + classlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1Position.html + aef4d43d8a3f799fec7a07da47cfa61ed + + + + + libgno::GenoPro::Individuals::Individual::sequence + structlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1sequence.html + + + sequence + structlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1sequence.html + ae79a06e80c200465aa67112d4c95c0b6 + (Individual *that) + + + Name_p + element_Name + structlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1sequence.html + a12575349ae6842edfeac01131404a868 + () + + + void + mark_present_Name + structlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1sequence.html + a2555f3c3a639968d8543b94aff781ac2 + () + + + Position_p + element_Position + structlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1sequence.html + ad5d81a2228c4e6ab4817980d4caa1df5 + () + + + void + mark_present_Position + structlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1sequence.html + a216532fc971690e5388ec3d33f729b8e + () + + + Gender_p + element_Gender + structlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1sequence.html + a91afaa2ec8b6957e8588f699ed866c1b + () + + + void + set_Gender + structlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1sequence.html + a7a09ab55300879e15bb61bf8d4ca0c49 + (DOMString val) + + + DOMString + get_Gender_string + structlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1sequence.html + a114bd5715ce17eecdab78f7eaff064a6 + () + + + void + mark_present_Gender + structlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1sequence.html + a6f24b76867167373b038a598e6f04905 + () + + + IsDead_p + element_IsDead + structlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1sequence.html + abfa025bb9e0700320f4fd944b163d3ce + () + + + void + set_IsDead + structlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1sequence.html + ad5f530ade8b384368ec33193ac237020 + (DOMString val) + + + DOMString + get_IsDead_string + structlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1sequence.html + ad2fbfd78fbee8d1dfdfa2dd15cea339a + () + + + void + mark_present_IsDead + structlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1sequence.html + a7ee5f299e203c3391c4ce4b1ceedae46 + () + + + Death_p + element_Death + structlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1sequence.html + a70ed771346ca66e95b6fd2a7ab9e077f + () + + + void + mark_present_Death + structlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1sequence.html + ab3dec4dda207a737c8aec01bd274668f + () + + + child_no_p + element_child_no + structlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1sequence.html + aaa1c317c8474e4af7715d4cfa34c1904 + () + + + void + set_child_no + structlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1sequence.html + a5ea03021317309ec1e280d04daf1f900 + (DOMString val) + + + DOMString + get_child_no_string + structlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1sequence.html + a2f477f6a0515bf0f5f80b1cc2a7965ce + () + + + void + set_child_no + structlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1sequence.html + a271696b05226f4aa623c7d2135e102e4 + (int val) + + + int + get_child_no + structlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1sequence.html + ad2b3e4c7d7d10503e6ae997f345ad65c + () + + + void + mark_present_child_no + structlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1sequence.html + a383a1a0dfa2d3320c1d6981a292599cb + () + + + XsdFsmBase * + clone + structlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1sequence.html + a8917786fe62177f832245a95665e80be + () const + + + Individual * + _that + structlibgno_1_1GenoPro_1_1Individuals_1_1Individual_1_1sequence.html + a02bb8306f57ea8f0a0d9d5393bcb472f + + + + + libgno::GenoPro::Individuals::sequence + structlibgno_1_1GenoPro_1_1Individuals_1_1sequence.html + + + sequence + structlibgno_1_1GenoPro_1_1Individuals_1_1sequence.html + a69daab875a1a35eff48fa4054ddfa5df + (Individuals *that) + + + List< Individual_ptr > + elements_Individual + structlibgno_1_1GenoPro_1_1Individuals_1_1sequence.html + ac1d2cff2b29cf86b1331e945bea42668 + () + + + Individual_p + element_Individual_at + structlibgno_1_1GenoPro_1_1Individuals_1_1sequence.html + a9deb53f8699a60c45f30dadb8a999431 + (unsigned int idx) + + + Individual_p + add_node_Individual + structlibgno_1_1GenoPro_1_1Individuals_1_1sequence.html + a7f24769b2ca6f25cdf2512d4356e3317 + () + + + List< Individual_ptr > + set_count_Individual + structlibgno_1_1GenoPro_1_1Individuals_1_1sequence.html + a2296089d506a87146b8f639ddaa3a39c + (unsigned int size) + + + XsdFsmBase * + clone + structlibgno_1_1GenoPro_1_1Individuals_1_1sequence.html + ad326f1bbdcfd44aba51897d21270ca15 + () const + + + Individuals * + _that + structlibgno_1_1GenoPro_1_1Individuals_1_1sequence.html + a51b7de4a74a3bbcf82f6a8c7d10fce46 + + + + + libgno::GenoPro::Marriages + classlibgno_1_1GenoPro_1_1Marriages.html + libgno::GenoPro::Marriages::Marriage + libgno::GenoPro::Marriages::sequence + + AutoPtr< Marriage > + Marriage_ptr + classlibgno_1_1GenoPro_1_1Marriages.html + a9020634937c1a0e43d6c181257169032 + + + + Marriage * + Marriage_p + classlibgno_1_1GenoPro_1_1Marriages.html + a93e87b429322ceb2d331c2a1ba50523f + + + + + Marriages + classlibgno_1_1GenoPro_1_1Marriages.html + ab08db95da146c43975a46f1bcc36f985 + (ElementCreateArgs args) + + + List< Marriage_ptr > + elements_Marriage + classlibgno_1_1GenoPro_1_1Marriages.html + af234404f5acb0c004deda557d55679bf + () + + + Marriage_p + element_Marriage_at + classlibgno_1_1GenoPro_1_1Marriages.html + a5057d032ad8c368158bb85515405fdd3 + (unsigned int idx) + + + Marriage_p + add_node_Marriage + classlibgno_1_1GenoPro_1_1Marriages.html + a117a73de170147f47b03ff4b578ba9a5 + () + + + List< Marriage_ptr > + set_count_Marriage + classlibgno_1_1GenoPro_1_1Marriages.html + a7da38c772250588587f0909199877e80 + (unsigned int size) + + + sequence * + get_sequence + classlibgno_1_1GenoPro_1_1Marriages.html + ab3ddf723643fec77a00c245ec0f59380 + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1Marriages.html + afd89bf73384e9313a1fe4354843744b1 + () + + + Marriage_ptr + create_Marriage + classlibgno_1_1GenoPro_1_1Marriages.html + a6731242902866effb7980ad5f8a432ac + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1Marriages.html + a60af03d5f39a2e606a12e6364072e4c2 + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1Marriages.html + a9e287cf8c753db14e601dc88b11570eb + + + + AutoPtr< sequence > + _sequence + classlibgno_1_1GenoPro_1_1Marriages.html + a9b81fa64af11872316d43613b822539c + + + + List< Marriage_ptr > + _list_Marriage + classlibgno_1_1GenoPro_1_1Marriages.html + aaf7d7a19a524720fd8cd103e29c90380 + + + + + libgno::GenoPro::Marriages::Marriage + classlibgno_1_1GenoPro_1_1Marriages_1_1Marriage.html + libgno::GenoPro::Marriages::Marriage::sequence + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > > + Type_ptr + classlibgno_1_1GenoPro_1_1Marriages_1_1Marriage.html + ae0760dcc46b12bc694020ba0908c27ff + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > * + Type_p + classlibgno_1_1GenoPro_1_1Marriages_1_1Marriage.html + ae5399863b65cfad416b973c30474d828 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > + Type + classlibgno_1_1GenoPro_1_1Marriages_1_1Marriage.html + adc2c22afb524ad30294cc44fab22601f + + + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_string > > + Date_ptr + classlibgno_1_1GenoPro_1_1Marriages_1_1Marriage.html + a0fd46a5ced22833bbac413574774e54b + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_string > * + Date_p + classlibgno_1_1GenoPro_1_1Marriages_1_1Marriage.html + a6c7302da9c79f712fdcfa4d0c8c4e451 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_string > + Date + classlibgno_1_1GenoPro_1_1Marriages_1_1Marriage.html + a070f98de71e26e4d3a199048b3af18b8 + + + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > > + Place_ptr + classlibgno_1_1GenoPro_1_1Marriages_1_1Marriage.html + a094be59fc4d5d2763af7bfbcf5b8e130 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > * + Place_p + classlibgno_1_1GenoPro_1_1Marriages_1_1Marriage.html + a9ca27dcdb68a2f7fc7e72369dce2452a + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > + Place + classlibgno_1_1GenoPro_1_1Marriages_1_1Marriage.html + a30f4b86ecb0f6308a188a4e485043191 + + + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_string > > + Witnesses_ptr + classlibgno_1_1GenoPro_1_1Marriages_1_1Marriage.html + ababd8ffec2c35824f22b85f6e7f6cd29 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_string > * + Witnesses_p + classlibgno_1_1GenoPro_1_1Marriages_1_1Marriage.html + ac1643ce36053e7c2241832aadd8fa4b2 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_string > + Witnesses + classlibgno_1_1GenoPro_1_1Marriages_1_1Marriage.html + a932bc019c6599f0a80b6266f595f2270 + + + + AutoPtr< XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > > + attr_ID_ptr + classlibgno_1_1GenoPro_1_1Marriages_1_1Marriage.html + ab08305d9b89582d0495e3bcfd22c31f7 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > * + attr_ID_p + classlibgno_1_1GenoPro_1_1Marriages_1_1Marriage.html + aa463f66d7e03b5ee39d97feaa85b54d7 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > + attr_ID + classlibgno_1_1GenoPro_1_1Marriages_1_1Marriage.html + aa572e99c4e8056c19d2105b6578ee492 + + + + + Marriage + classlibgno_1_1GenoPro_1_1Marriages_1_1Marriage.html + ac0eec9b21e0a1fc26bbd302a4882954c + (ElementCreateArgs args) + + + Type_p + element_Type + classlibgno_1_1GenoPro_1_1Marriages_1_1Marriage.html + a75c11ea0cb124f0cd7c9c1131d5b4bec + () + + + void + set_Type + classlibgno_1_1GenoPro_1_1Marriages_1_1Marriage.html + a1b0cde56b16fe1c3084cf1f7ecdb86a5 + (DOMString val) + + + DOMString + get_Type_string + classlibgno_1_1GenoPro_1_1Marriages_1_1Marriage.html + a5076f918eadccaa041339cdd49a904e4 + () + + + void + mark_present_Type + classlibgno_1_1GenoPro_1_1Marriages_1_1Marriage.html + a877afcb63da71926a2d4e807bacfb2e5 + () + + + Date_p + element_Date + classlibgno_1_1GenoPro_1_1Marriages_1_1Marriage.html + adeb1bbd4c3bf43fe83c80469ccdbd1d7 + () + + + void + set_Date + classlibgno_1_1GenoPro_1_1Marriages_1_1Marriage.html + a69d9f45d1f400ecb91a04c01b3f7e5b4 + (DOMString val) + + + DOMString + get_Date_string + classlibgno_1_1GenoPro_1_1Marriages_1_1Marriage.html + abd10f49318e309107c07cbba7ed979ef + () + + + void + mark_present_Date + classlibgno_1_1GenoPro_1_1Marriages_1_1Marriage.html + ac0a2f3582c814dac1a8fdc807d3d1543 + () + + + Place_p + element_Place + classlibgno_1_1GenoPro_1_1Marriages_1_1Marriage.html + ae3d8d2c8d2746e3b2ecc540fc23ea2e9 + () + + + void + set_Place + classlibgno_1_1GenoPro_1_1Marriages_1_1Marriage.html + aff53a375151d944cd42c612fc33d70a7 + (DOMString val) + + + DOMString + get_Place_string + classlibgno_1_1GenoPro_1_1Marriages_1_1Marriage.html + a4236fd975b16f0714cdd30192694c072 + () + + + void + mark_present_Place + classlibgno_1_1GenoPro_1_1Marriages_1_1Marriage.html + aa69a367db0b7f1768490e16a2037f69c + () + + + Witnesses_p + element_Witnesses + classlibgno_1_1GenoPro_1_1Marriages_1_1Marriage.html + a841627e404de7caf3ea66f78dd41a3b5 + () + + + void + set_Witnesses + classlibgno_1_1GenoPro_1_1Marriages_1_1Marriage.html + a1575ccfaa733cbdd9a91645ec5d1b0b7 + (DOMString val) + + + DOMString + get_Witnesses_string + classlibgno_1_1GenoPro_1_1Marriages_1_1Marriage.html + a183366d9ab1690d9fe27b17a28c4be2d + () + + + void + mark_present_Witnesses + classlibgno_1_1GenoPro_1_1Marriages_1_1Marriage.html + a211f076da1b08de4bca7018b58c4daa1 + () + + + attr_ID_p + attribute_attr_ID + classlibgno_1_1GenoPro_1_1Marriages_1_1Marriage.html + a762148fff565924d808bc16798494a12 + () + + + void + set_attr_ID + classlibgno_1_1GenoPro_1_1Marriages_1_1Marriage.html + a412c9dea162f7f36af2dbcb4e67449c8 + (DOMString val) + + + DOMString + get_attr_ID_string + classlibgno_1_1GenoPro_1_1Marriages_1_1Marriage.html + a3ba928beb799e4ad1a330f5d1c8307fc + () + + + sequence * + get_sequence + classlibgno_1_1GenoPro_1_1Marriages_1_1Marriage.html + aaf99f64f4353961a24633968ce087865 + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1Marriages_1_1Marriage.html + a44fbc71c7718f44e7d5973751c3d7788 + () + + + Type_ptr + create_Type + classlibgno_1_1GenoPro_1_1Marriages_1_1Marriage.html + a2e0161c416e7fdf1be92f90caff2a060 + (FsmCbOptions &options) + + + Date_ptr + create_Date + classlibgno_1_1GenoPro_1_1Marriages_1_1Marriage.html + a976d12e82337397883578e34f9fbc754 + (FsmCbOptions &options) + + + Place_ptr + create_Place + classlibgno_1_1GenoPro_1_1Marriages_1_1Marriage.html + a01dad2f2b0a5ee8c17eca2f8276fdaeb + (FsmCbOptions &options) + + + Witnesses_ptr + create_Witnesses + classlibgno_1_1GenoPro_1_1Marriages_1_1Marriage.html + aa17c6f02f34993ee8b68dee12bc969fd + (FsmCbOptions &options) + + + attr_ID_ptr + create_attr_ID + classlibgno_1_1GenoPro_1_1Marriages_1_1Marriage.html + aadaa518624988578134c7354f59ed697 + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1Marriages_1_1Marriage.html + a78ccfefd4a6504881df18bef02784228 + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1Marriages_1_1Marriage.html + ab95ef09b7615c2fccce089fa32af64a8 + + + + AutoPtr< sequence > + _sequence + classlibgno_1_1GenoPro_1_1Marriages_1_1Marriage.html + a93159c208d165a82270c610007f43733 + + + + Type_ptr + _Type + classlibgno_1_1GenoPro_1_1Marriages_1_1Marriage.html + a149ce08d3f7eac873c8c801e461c3660 + + + + Date_ptr + _Date + classlibgno_1_1GenoPro_1_1Marriages_1_1Marriage.html + a0a442d0a8c509aa5b30e5c82dce7cec1 + + + + Place_ptr + _Place + classlibgno_1_1GenoPro_1_1Marriages_1_1Marriage.html + af64f722dad3db287c3b87ac62cf069ce + + + + Witnesses_ptr + _Witnesses + classlibgno_1_1GenoPro_1_1Marriages_1_1Marriage.html + a027eaeafdef3837c0061a1e5e1549784 + + + + attr_ID_ptr + _attr_ID + classlibgno_1_1GenoPro_1_1Marriages_1_1Marriage.html + a5941b9f6cfd5ba4e41bc946be51367ed + + + + + libgno::GenoPro::Marriages::Marriage::sequence + structlibgno_1_1GenoPro_1_1Marriages_1_1Marriage_1_1sequence.html + + + sequence + structlibgno_1_1GenoPro_1_1Marriages_1_1Marriage_1_1sequence.html + a7409bafaa9bf5f4b021fc77c48c84db3 + (Marriage *that) + + + Type_p + element_Type + structlibgno_1_1GenoPro_1_1Marriages_1_1Marriage_1_1sequence.html + a4aa9926316b45856fd02e4837facc3a3 + () + + + void + set_Type + structlibgno_1_1GenoPro_1_1Marriages_1_1Marriage_1_1sequence.html + a7c654e8ad2fc59fbd8d8aee779bb21af + (DOMString val) + + + DOMString + get_Type_string + structlibgno_1_1GenoPro_1_1Marriages_1_1Marriage_1_1sequence.html + a34be4fb6199c423805fa5d9cb4543013 + () + + + void + mark_present_Type + structlibgno_1_1GenoPro_1_1Marriages_1_1Marriage_1_1sequence.html + ab9c4f25998e36b92d6ea78e8ac6a82d0 + () + + + Date_p + element_Date + structlibgno_1_1GenoPro_1_1Marriages_1_1Marriage_1_1sequence.html + a34934a70e6cdcfaf85ca9e706b640612 + () + + + void + set_Date + structlibgno_1_1GenoPro_1_1Marriages_1_1Marriage_1_1sequence.html + a482dad4041cbbb8d4fdab875aa4afba2 + (DOMString val) + + + DOMString + get_Date_string + structlibgno_1_1GenoPro_1_1Marriages_1_1Marriage_1_1sequence.html + a34fcd6a939b800c1fd27c5697edafd5d + () + + + void + mark_present_Date + structlibgno_1_1GenoPro_1_1Marriages_1_1Marriage_1_1sequence.html + a7f5d9e4eb47165a83de8711dcf3a48ea + () + + + Place_p + element_Place + structlibgno_1_1GenoPro_1_1Marriages_1_1Marriage_1_1sequence.html + abff208131d31e72473bf2f68cc26248c + () + + + void + set_Place + structlibgno_1_1GenoPro_1_1Marriages_1_1Marriage_1_1sequence.html + a3a1ca0022adb635c8ad8158f92e351b4 + (DOMString val) + + + DOMString + get_Place_string + structlibgno_1_1GenoPro_1_1Marriages_1_1Marriage_1_1sequence.html + ae3a8423f421bc9e9a6efb0054e1b7097 + () + + + void + mark_present_Place + structlibgno_1_1GenoPro_1_1Marriages_1_1Marriage_1_1sequence.html + a48c1e29d18c31ba7c4405f195a76fd8e + () + + + Witnesses_p + element_Witnesses + structlibgno_1_1GenoPro_1_1Marriages_1_1Marriage_1_1sequence.html + ab2101ce02151d5a1a9117a2b2e2dbd1e + () + + + void + set_Witnesses + structlibgno_1_1GenoPro_1_1Marriages_1_1Marriage_1_1sequence.html + a33e9a5544325b269ba34b2fc0f0e29ba + (DOMString val) + + + DOMString + get_Witnesses_string + structlibgno_1_1GenoPro_1_1Marriages_1_1Marriage_1_1sequence.html + ab323d98d023d6846183c49c30a54d41b + () + + + void + mark_present_Witnesses + structlibgno_1_1GenoPro_1_1Marriages_1_1Marriage_1_1sequence.html + a75875838544f847a14ada34d3a635b86 + () + + + XsdFsmBase * + clone + structlibgno_1_1GenoPro_1_1Marriages_1_1Marriage_1_1sequence.html + a8d9c3632fabe9fdc765793f6669a02fe + () const + + + Marriage * + _that + structlibgno_1_1GenoPro_1_1Marriages_1_1Marriage_1_1sequence.html + abb73e673ccc16a2c961bc4dff27ebabb + + + + + libgno::GenoPro::Marriages::sequence + structlibgno_1_1GenoPro_1_1Marriages_1_1sequence.html + + + sequence + structlibgno_1_1GenoPro_1_1Marriages_1_1sequence.html + a1c07fe9dd633fa06afdaadfcf08c9058 + (Marriages *that) + + + List< Marriage_ptr > + elements_Marriage + structlibgno_1_1GenoPro_1_1Marriages_1_1sequence.html + ad2cb4881bb69f9a98c06bd1d04f41e79 + () + + + Marriage_p + element_Marriage_at + structlibgno_1_1GenoPro_1_1Marriages_1_1sequence.html + aaa5119ad6320000df532267ebb77378a + (unsigned int idx) + + + Marriage_p + add_node_Marriage + structlibgno_1_1GenoPro_1_1Marriages_1_1sequence.html + ad8e07f0c71324187d11b61409fd646c2 + () + + + List< Marriage_ptr > + set_count_Marriage + structlibgno_1_1GenoPro_1_1Marriages_1_1sequence.html + a3f4b45e56368645cfa4b44d0f2c5bf8f + (unsigned int size) + + + XsdFsmBase * + clone + structlibgno_1_1GenoPro_1_1Marriages_1_1sequence.html + a094a89997a3f73e830c5f29a9ee8217e + () const + + + Marriages * + _that + structlibgno_1_1GenoPro_1_1Marriages_1_1sequence.html + a42423ecb1750fc0a4a4ff07733e132c8 + + + + + libgno::GenoPro::Occupations + classlibgno_1_1GenoPro_1_1Occupations.html + libgno::GenoPro::Occupations::Occupation + libgno::GenoPro::Occupations::sequence + + AutoPtr< Occupation > + Occupation_ptr + classlibgno_1_1GenoPro_1_1Occupations.html + a9a650a6182c29ab12be2dd7f592a2faf + + + + Occupation * + Occupation_p + classlibgno_1_1GenoPro_1_1Occupations.html + a96c8480b488d4ce3455b1c5c04ed204c + + + + + Occupations + classlibgno_1_1GenoPro_1_1Occupations.html + a4b96a9b5feab63fda43ad97f82d90f57 + (ElementCreateArgs args) + + + List< Occupation_ptr > + elements_Occupation + classlibgno_1_1GenoPro_1_1Occupations.html + aa26b36cd4b96b7aa7eed8a01c39b34fe + () + + + Occupation_p + element_Occupation_at + classlibgno_1_1GenoPro_1_1Occupations.html + a628acac4f101f54baded08fced96ac34 + (unsigned int idx) + + + Occupation_p + add_node_Occupation + classlibgno_1_1GenoPro_1_1Occupations.html + ac67a66cb60a7592de9c1cc7099f995ca + () + + + List< Occupation_ptr > + set_count_Occupation + classlibgno_1_1GenoPro_1_1Occupations.html + a2223b3b7d17e359f4a49134f13be827c + (unsigned int size) + + + sequence * + get_sequence + classlibgno_1_1GenoPro_1_1Occupations.html + a50f0f3af2af5f1aaeaabcb0dc77cc290 + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1Occupations.html + a0e19df879244cd8dd0086752834a8677 + () + + + Occupation_ptr + create_Occupation + classlibgno_1_1GenoPro_1_1Occupations.html + abd1f92ce5f9a68a2bbf7e72eec7f0fc1 + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1Occupations.html + a046d04d22d3952e365538fc8cffe7b20 + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1Occupations.html + a0bc818a8f39cb607ccd9224126f4a2ff + + + + AutoPtr< sequence > + _sequence + classlibgno_1_1GenoPro_1_1Occupations.html + a5024b0fc87365d3362ddac7240e4d803 + + + + List< Occupation_ptr > + _list_Occupation + classlibgno_1_1GenoPro_1_1Occupations.html + a442b25faba908d7fda0404f5152b1f33 + + + + + libgno::GenoPro::Occupations::Occupation + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + libgno::GenoPro::Occupations::Occupation::sequence + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_string > > + Title_ptr + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + a1677884d3cb736aa3bea3f46a7aca4d8 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_string > * + Title_p + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + ae3b145c1b7f56a5a5315868bc924d44a + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_string > + Title + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + af33092dcc95b6c1af86aeb76307c7248 + + + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_string > > + Company_ptr + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + add346a0c44211b9a873c498dcd80f98b + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_string > * + Company_p + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + a5e5d8bee9ceeb160c7425f942761b1d8 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_string > + Company + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + a9dc7edfb65986e04064b9483889c3b82 + + + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > > + Industry_ptr + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + a13a97150610b75a09d0604a728a8b35a + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > * + Industry_p + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + a995a43f86a015ae8689cedca0316db42 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > + Industry + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + a9f310721185519c6c222c6547bf2d602 + + + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > > + Place_ptr + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + a0494b14d79d769fdbead653ceded7282 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > * + Place_p + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + ac3f47f8e97eca5cd6d400c72c97fe00a + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > + Place + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + a66653005d68849e74d6b085f5c41ae6b + + + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > > + Source_ptr + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + a23e0949b04419be5c23b4bd6732425e5 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > * + Source_p + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + a81b7ff359361804fa8cf98a1801a6676 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > + Source + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + ad0c6cbcabaa16a29732fb694e5a33629 + + + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_string > > + DateStart_ptr + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + a4eb69453d964a470c7e9301bcfefb552 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_string > * + DateStart_p + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + a2f304a7e0f532c3bccf6ea15c2c29205 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_string > + DateStart + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + a52980e1ada3016fca69bc5822898ee33 + + + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_string > > + DateEnd_ptr + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + afa11575404c4655fed98b8739f2c4cca + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_string > * + DateEnd_p + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + a89a0a419f8fa89447903351379e02207 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_string > + DateEnd + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + a61b6ed270af80bc4f8910d2d35a05e06 + + + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > > + WorkType_ptr + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + a09029e3bd7b521d789c3f7c1f0f8f256 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > * + WorkType_p + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + a5c3f85fdacfbf12b42450502d431c092 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > + WorkType + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + a39a418f15054ecb03457a0eda3b31d5c + + + + AutoPtr< XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > > + attr_ID_ptr + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + a5fc6136be599f414a38069155f4fd532 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > * + attr_ID_p + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + adb8faa558ca5ca32cb8c03cf079bbd92 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > + attr_ID + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + a26241b93bb406410c90067f5e044fb76 + + + + + Occupation + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + aecf4e11db83b1202741f8b637c0c6933 + (ElementCreateArgs args) + + + Title_p + element_Title + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + afd75987824411acc1e54f5317e1574f2 + () + + + void + set_Title + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + a0408a7050bce6d8f66c2ef4f1500c2aa + (DOMString val) + + + DOMString + get_Title_string + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + a68592d2313a5f44432b8516b8082a409 + () + + + void + mark_present_Title + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + ad63f2b16ea397224e04ff7852ec9b8e5 + () + + + Company_p + element_Company + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + a6c84cba290ed464b198b852551689fe3 + () + + + void + set_Company + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + a5835fc3cbe1822c76fb7189a9bbeaf14 + (DOMString val) + + + DOMString + get_Company_string + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + a24215d2cd5c2e73a1f275ed25a42a96a + () + + + void + mark_present_Company + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + a1e572f29acaaf732eddcd504f79cac38 + () + + + Industry_p + element_Industry + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + a784ff0c40e4921a33fa63ea02d3d4f2e + () + + + void + set_Industry + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + a07de61ebc35cd01a84e797bc2e4351cb + (DOMString val) + + + DOMString + get_Industry_string + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + ac7dce0a7c32d0433518a99cb507aef68 + () + + + void + mark_present_Industry + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + ab08ae2f5d481745119d0f3b9a590e6ee + () + + + Place_p + element_Place + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + a293e3f4746895eb3a56142a8a06db71c + () + + + void + set_Place + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + af5ad98226153d2623b61c24291544dde + (DOMString val) + + + DOMString + get_Place_string + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + a24f550c0dee5c4f0f7b3dd5c53be9180 + () + + + void + mark_present_Place + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + a2caf1f5d2dfbe2e5359052f7806b9e47 + () + + + Source_p + element_Source + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + ae91e837b69d2e5e2707225a85070c0d2 + () + + + void + set_Source + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + ad3b11871dd66079c05fe8d4365ed35b5 + (DOMString val) + + + DOMString + get_Source_string + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + ad2f83aa87418b48843a19721748a5289 + () + + + void + mark_present_Source + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + a1d8011f3ccca08bfde8695a47cedcf73 + () + + + DateStart_p + element_DateStart + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + af121ec1f2443a4576cdb982dc7119c9e + () + + + void + set_DateStart + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + abffccef51092569cdfd0bf8be7b5eba6 + (DOMString val) + + + DOMString + get_DateStart_string + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + ada08878331f09100165610bb764bb59e + () + + + void + mark_present_DateStart + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + a75a32e08a679c6c6eaa562fd2be43083 + () + + + DateEnd_p + element_DateEnd + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + a78df645b9c5dd7f40643be9a57c74486 + () + + + void + set_DateEnd + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + a4fc19ce76a6985d60e01f44a761f220a + (DOMString val) + + + DOMString + get_DateEnd_string + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + a5d75d0287810a446a81797f3cf8bb2b7 + () + + + void + mark_present_DateEnd + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + a6502e6ab0800ba769765bb3ad605c804 + () + + + WorkType_p + element_WorkType + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + a22694310878c92956e320c40b5b124a2 + () + + + void + set_WorkType + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + aed5278ff8194159f726d8a25790e214e + (DOMString val) + + + DOMString + get_WorkType_string + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + a5787372c1c67d70f7ecb9194a20c7d4a + () + + + void + mark_present_WorkType + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + ad5feb9f3491db00048850ce1d9069789 + () + + + attr_ID_p + attribute_attr_ID + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + a321eebb6697356261ded409665ff246c + () + + + void + set_attr_ID + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + a21ac5e501fff49d840c00c62dc5a234f + (DOMString val) + + + DOMString + get_attr_ID_string + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + a0642278fd65514f37562deae55066a5c + () + + + sequence * + get_sequence + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + ab87feed44548ecfb961248c415da3cde + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + af85942001d626e274bae455b5d64d655 + () + + + Title_ptr + create_Title + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + aa4bc110795878f29074d4eb715170e0b + (FsmCbOptions &options) + + + Company_ptr + create_Company + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + a149b640950a73a8bf95de9a23e59def9 + (FsmCbOptions &options) + + + Industry_ptr + create_Industry + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + a3eb98102850a8a6697cb0a50e92f0f42 + (FsmCbOptions &options) + + + Place_ptr + create_Place + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + aba44b05f040aa0f8669952723d56c2f5 + (FsmCbOptions &options) + + + Source_ptr + create_Source + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + a21f60739afe32d229f58489ff8086f66 + (FsmCbOptions &options) + + + DateStart_ptr + create_DateStart + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + a61b3c31f1db7a3a79e43f444a775e578 + (FsmCbOptions &options) + + + DateEnd_ptr + create_DateEnd + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + a6d0dcd77edd04b9ac473c150038fb3c5 + (FsmCbOptions &options) + + + WorkType_ptr + create_WorkType + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + a370f015a0cb6d6f7547d1ad5cc4591c3 + (FsmCbOptions &options) + + + attr_ID_ptr + create_attr_ID + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + ac3fafd4608a9910fba4a750f52da0d0f + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + a6f10e0c2526d4c6f22f5f88211e6dd8d + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + a79327c7c2ef39994694ca110fbb8f1a7 + + + + AutoPtr< sequence > + _sequence + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + a7b90f2315f0dcadfeb92dec45d6d458e + + + + Title_ptr + _Title + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + a8c584f2a57497611645d708a38539eab + + + + Company_ptr + _Company + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + ae2213b1f845136a99d2ce846ac779a9c + + + + Industry_ptr + _Industry + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + a4dcbeeb70450a931077f77c978b0db4b + + + + Place_ptr + _Place + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + a760ff8ff1b266eff2ab73c4bd246a8df + + + + Source_ptr + _Source + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + a2a6580b084c943dd0f5c47b18d9d913a + + + + DateStart_ptr + _DateStart + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + ab25b48b247a10eb59f91c9543927b60a + + + + DateEnd_ptr + _DateEnd + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + a649070a2886c036fff55aca12b8b9f4d + + + + WorkType_ptr + _WorkType + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + a3bed515e51d8857a3f0d9c27eb2c35c3 + + + + attr_ID_ptr + _attr_ID + classlibgno_1_1GenoPro_1_1Occupations_1_1Occupation.html + aaebcfb127942f332a1237c374a7004df + + + + + libgno::GenoPro::Occupations::Occupation::sequence + structlibgno_1_1GenoPro_1_1Occupations_1_1Occupation_1_1sequence.html + + + sequence + structlibgno_1_1GenoPro_1_1Occupations_1_1Occupation_1_1sequence.html + aeb4e3909badae60b07126ea18b9baf72 + (Occupation *that) + + + Title_p + element_Title + structlibgno_1_1GenoPro_1_1Occupations_1_1Occupation_1_1sequence.html + a4a7df4da57d4c6cce4d903cd68d13e8b + () + + + void + set_Title + structlibgno_1_1GenoPro_1_1Occupations_1_1Occupation_1_1sequence.html + a69978e1bfa6c060dfbb3aa2bc73768ef + (DOMString val) + + + DOMString + get_Title_string + structlibgno_1_1GenoPro_1_1Occupations_1_1Occupation_1_1sequence.html + ae3ea29bddfacbc1a66a0c027ee9ea732 + () + + + void + mark_present_Title + structlibgno_1_1GenoPro_1_1Occupations_1_1Occupation_1_1sequence.html + afdfb21f7953efdc18d1f19b70d6bec8e + () + + + Company_p + element_Company + structlibgno_1_1GenoPro_1_1Occupations_1_1Occupation_1_1sequence.html + a1b4f31a6402f41b59425851c2dcb65d5 + () + + + void + set_Company + structlibgno_1_1GenoPro_1_1Occupations_1_1Occupation_1_1sequence.html + a5a4ab075e15bb9b5a77b95f5ff2f89e7 + (DOMString val) + + + DOMString + get_Company_string + structlibgno_1_1GenoPro_1_1Occupations_1_1Occupation_1_1sequence.html + ad4e5c4ebd1258750b92ec303d761cb76 + () + + + void + mark_present_Company + structlibgno_1_1GenoPro_1_1Occupations_1_1Occupation_1_1sequence.html + ace1a0dbdec11b4ec66c1b8e6d177252b + () + + + Industry_p + element_Industry + structlibgno_1_1GenoPro_1_1Occupations_1_1Occupation_1_1sequence.html + a9d9f6a82eedb0f4ca9e179824f923174 + () + + + void + set_Industry + structlibgno_1_1GenoPro_1_1Occupations_1_1Occupation_1_1sequence.html + a675abf68942d1ef6ac2979a274fb7ee3 + (DOMString val) + + + DOMString + get_Industry_string + structlibgno_1_1GenoPro_1_1Occupations_1_1Occupation_1_1sequence.html + a6107c1fa6fac2f3cdf47d174b1ecba10 + () + + + void + mark_present_Industry + structlibgno_1_1GenoPro_1_1Occupations_1_1Occupation_1_1sequence.html + aeacf4d6d66e31c951dd89a328c3ce0f3 + () + + + Place_p + element_Place + structlibgno_1_1GenoPro_1_1Occupations_1_1Occupation_1_1sequence.html + a88b3b6e356be2aca2c80faa3040e5d87 + () + + + void + set_Place + structlibgno_1_1GenoPro_1_1Occupations_1_1Occupation_1_1sequence.html + aeaa43b39ef452c6d3434985681d8d690 + (DOMString val) + + + DOMString + get_Place_string + structlibgno_1_1GenoPro_1_1Occupations_1_1Occupation_1_1sequence.html + af3362b6a7264d3b2f4812b5b0b98b0b8 + () + + + void + mark_present_Place + structlibgno_1_1GenoPro_1_1Occupations_1_1Occupation_1_1sequence.html + a6808166b99dcc37b3fadf4359ffb1ac8 + () + + + Source_p + element_Source + structlibgno_1_1GenoPro_1_1Occupations_1_1Occupation_1_1sequence.html + a0690496d938dc188e348be206970eb38 + () + + + void + set_Source + structlibgno_1_1GenoPro_1_1Occupations_1_1Occupation_1_1sequence.html + a75df0e2ae5b3700e5dc948d0d8cd2334 + (DOMString val) + + + DOMString + get_Source_string + structlibgno_1_1GenoPro_1_1Occupations_1_1Occupation_1_1sequence.html + a21f4707810e8a875e9f4866d8d245473 + () + + + void + mark_present_Source + structlibgno_1_1GenoPro_1_1Occupations_1_1Occupation_1_1sequence.html + a0346ecf61439bf3be83e239a78dfa132 + () + + + DateStart_p + element_DateStart + structlibgno_1_1GenoPro_1_1Occupations_1_1Occupation_1_1sequence.html + a21714d56d820cfabb08ebd6a3f2258ca + () + + + void + set_DateStart + structlibgno_1_1GenoPro_1_1Occupations_1_1Occupation_1_1sequence.html + a042d8e97c5b2f2c1d8306063931cdc23 + (DOMString val) + + + DOMString + get_DateStart_string + structlibgno_1_1GenoPro_1_1Occupations_1_1Occupation_1_1sequence.html + a91951a42a6e7bcad21e96001d399a79e + () + + + void + mark_present_DateStart + structlibgno_1_1GenoPro_1_1Occupations_1_1Occupation_1_1sequence.html + af9431114d553453ff1f21cfa9f2ea81d + () + + + DateEnd_p + element_DateEnd + structlibgno_1_1GenoPro_1_1Occupations_1_1Occupation_1_1sequence.html + a9ba6e46822bb6a9f967747500140d4f1 + () + + + void + set_DateEnd + structlibgno_1_1GenoPro_1_1Occupations_1_1Occupation_1_1sequence.html + af27695234c8f3a3ec7f251cfdcdb6d86 + (DOMString val) + + + DOMString + get_DateEnd_string + structlibgno_1_1GenoPro_1_1Occupations_1_1Occupation_1_1sequence.html + ae73d0486f39fa1f1778a817505ec34a8 + () + + + void + mark_present_DateEnd + structlibgno_1_1GenoPro_1_1Occupations_1_1Occupation_1_1sequence.html + ab6d450fbcfa6f8622eeae08319ae2171 + () + + + WorkType_p + element_WorkType + structlibgno_1_1GenoPro_1_1Occupations_1_1Occupation_1_1sequence.html + a84a17bd86e7eea98925beacfeef2ef68 + () + + + void + set_WorkType + structlibgno_1_1GenoPro_1_1Occupations_1_1Occupation_1_1sequence.html + a961ac19ba9c49ba604da154295d5a097 + (DOMString val) + + + DOMString + get_WorkType_string + structlibgno_1_1GenoPro_1_1Occupations_1_1Occupation_1_1sequence.html + ad669b577ae8989b8487fde17948b9411 + () + + + void + mark_present_WorkType + structlibgno_1_1GenoPro_1_1Occupations_1_1Occupation_1_1sequence.html + a7dcbcce4569211f5a7f5371f8d6ce9dd + () + + + XsdFsmBase * + clone + structlibgno_1_1GenoPro_1_1Occupations_1_1Occupation_1_1sequence.html + aeec8def470a377878f225ad038176ce2 + () const + + + Occupation * + _that + structlibgno_1_1GenoPro_1_1Occupations_1_1Occupation_1_1sequence.html + a34a66443cfc18ed22bf83fec6e551a3e + + + + + libgno::GenoPro::Occupations::sequence + structlibgno_1_1GenoPro_1_1Occupations_1_1sequence.html + + + sequence + structlibgno_1_1GenoPro_1_1Occupations_1_1sequence.html + a2d9dd41144c4b2acb3159663cb759e07 + (Occupations *that) + + + List< Occupation_ptr > + elements_Occupation + structlibgno_1_1GenoPro_1_1Occupations_1_1sequence.html + a7d6dcf5fbeaf7c0efb2181a3ba8fd770 + () + + + Occupation_p + element_Occupation_at + structlibgno_1_1GenoPro_1_1Occupations_1_1sequence.html + ad710f811a4f41c441126782a8d03ec1c + (unsigned int idx) + + + Occupation_p + add_node_Occupation + structlibgno_1_1GenoPro_1_1Occupations_1_1sequence.html + a5bfe12c42bd69148ff076df8c2df868f + () + + + List< Occupation_ptr > + set_count_Occupation + structlibgno_1_1GenoPro_1_1Occupations_1_1sequence.html + a0697217aa96ed3376e37f414fd3ca397 + (unsigned int size) + + + XsdFsmBase * + clone + structlibgno_1_1GenoPro_1_1Occupations_1_1sequence.html + a82e3602b2db59c289b7c3dccf17fbf2b + () const + + + Occupations * + _that + structlibgno_1_1GenoPro_1_1Occupations_1_1sequence.html + a8479b76e57046756458a1bc19b37c31a + + + + + libgno::GenoPro::PedigreeLinks + classlibgno_1_1GenoPro_1_1PedigreeLinks.html + libgno::GenoPro::PedigreeLinks::PedigreeLink + libgno::GenoPro::PedigreeLinks::sequence + + AutoPtr< PedigreeLink > + PedigreeLink_ptr + classlibgno_1_1GenoPro_1_1PedigreeLinks.html + acdd0e9b297b5c55ba8508567dc542958 + + + + PedigreeLink * + PedigreeLink_p + classlibgno_1_1GenoPro_1_1PedigreeLinks.html + ad478342fefc08c1cd94dd8c1c44dd64d + + + + + PedigreeLinks + classlibgno_1_1GenoPro_1_1PedigreeLinks.html + ab5c035eccb6e6a62de40bae585ffdf4c + (ElementCreateArgs args) + + + List< PedigreeLink_ptr > + elements_PedigreeLink + classlibgno_1_1GenoPro_1_1PedigreeLinks.html + a4e04ded0ff7b4f615c92ed0dcec12714 + () + + + PedigreeLink_p + element_PedigreeLink_at + classlibgno_1_1GenoPro_1_1PedigreeLinks.html + ad2dd0dc0116493d1950fffc78bc8c8b9 + (unsigned int idx) + + + PedigreeLink_p + add_node_PedigreeLink + classlibgno_1_1GenoPro_1_1PedigreeLinks.html + a7a6728ab1dced7e814e261ddc118b38d + () + + + List< PedigreeLink_ptr > + set_count_PedigreeLink + classlibgno_1_1GenoPro_1_1PedigreeLinks.html + a8b87bd405eb5ed003b522e5175541095 + (unsigned int size) + + + sequence * + get_sequence + classlibgno_1_1GenoPro_1_1PedigreeLinks.html + a21339bd4146844af90fc0f1ef3255486 + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1PedigreeLinks.html + afa514e6c5baa381b192106249524de1f + () + + + PedigreeLink_ptr + create_PedigreeLink + classlibgno_1_1GenoPro_1_1PedigreeLinks.html + ab1606dc81e8fa0405b76864bcc75fe83 + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1PedigreeLinks.html + aef28b3de2a7f32f110e22bb974bafd32 + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1PedigreeLinks.html + acbd83e469df33eb42542b8ded7ed9c3c + + + + AutoPtr< sequence > + _sequence + classlibgno_1_1GenoPro_1_1PedigreeLinks.html + a703f8662c1a8df4ecdcf075a5650f570 + + + + List< PedigreeLink_ptr > + _list_PedigreeLink + classlibgno_1_1GenoPro_1_1PedigreeLinks.html + a27a018583a19a0f563b9a8b2a2230fbe + + + + + libgno::GenoPro::PedigreeLinks::PedigreeLink + classlibgno_1_1GenoPro_1_1PedigreeLinks_1_1PedigreeLink.html + libgno::GenoPro::PedigreeLinks::PedigreeLink::Position + libgno::GenoPro::PedigreeLinks::PedigreeLink::sequence + + AutoPtr< Position > + Position_ptr + classlibgno_1_1GenoPro_1_1PedigreeLinks_1_1PedigreeLink.html + a06a33d98da7cce59402b35c9adeadc95 + + + + Position * + Position_p + classlibgno_1_1GenoPro_1_1PedigreeLinks_1_1PedigreeLink.html + a8639dbfca75638f6379e7957f77506f6 + + + + AutoPtr< XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > > + attr_PedigreeLink_ptr + classlibgno_1_1GenoPro_1_1PedigreeLinks_1_1PedigreeLink.html + a603ec4ad1888342d82f7fd8a428930bb + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > * + attr_PedigreeLink_p + classlibgno_1_1GenoPro_1_1PedigreeLinks_1_1PedigreeLink.html + a1cb992004a0149176f278b8a2cfe1de1 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > + attr_PedigreeLink + classlibgno_1_1GenoPro_1_1PedigreeLinks_1_1PedigreeLink.html + a78ac2b6d55df1e3724c70c0e1b8052cc + + + + AutoPtr< XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > > + attr_Family_ptr + classlibgno_1_1GenoPro_1_1PedigreeLinks_1_1PedigreeLink.html + a0f0ce4cb636e0624f94370eb6889cebe + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > * + attr_Family_p + classlibgno_1_1GenoPro_1_1PedigreeLinks_1_1PedigreeLink.html + ab60518cdeeba5c0e22d16e83c907d2fc + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > + attr_Family + classlibgno_1_1GenoPro_1_1PedigreeLinks_1_1PedigreeLink.html + aa0cd2128300da1c7f279071202ad4894 + + + + AutoPtr< XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > > + attr_Individual_ptr + classlibgno_1_1GenoPro_1_1PedigreeLinks_1_1PedigreeLink.html + aa7110b3ec947e4d9898948a3b9d852e7 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > * + attr_Individual_p + classlibgno_1_1GenoPro_1_1PedigreeLinks_1_1PedigreeLink.html + a1526a36802a9c50469483645cb76e01a + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > + attr_Individual + classlibgno_1_1GenoPro_1_1PedigreeLinks_1_1PedigreeLink.html + abce251a1874f2dd3c5088593a57f36f3 + + + + + PedigreeLink + classlibgno_1_1GenoPro_1_1PedigreeLinks_1_1PedigreeLink.html + a86ac3c04424a140a7d2865f8df83886a + (ElementCreateArgs args) + + + Position_p + element_Position + classlibgno_1_1GenoPro_1_1PedigreeLinks_1_1PedigreeLink.html + a7957e357b4d2c566e69ed0050c97b7c1 + () + + + void + mark_present_Position + classlibgno_1_1GenoPro_1_1PedigreeLinks_1_1PedigreeLink.html + a2c456e6bad95e9e6d46bf3c740f678c6 + () + + + attr_PedigreeLink_p + attribute_attr_PedigreeLink + classlibgno_1_1GenoPro_1_1PedigreeLinks_1_1PedigreeLink.html + afc9c5d17176ba36127e8f6ce6bcb8d46 + () + + + void + set_attr_PedigreeLink + classlibgno_1_1GenoPro_1_1PedigreeLinks_1_1PedigreeLink.html + a1581640b32dff85f649e134edde8410f + (DOMString val) + + + DOMString + get_attr_PedigreeLink_string + classlibgno_1_1GenoPro_1_1PedigreeLinks_1_1PedigreeLink.html + aef3930a9804b1582b04cbb613e6e51ec + () + + + attr_Family_p + attribute_attr_Family + classlibgno_1_1GenoPro_1_1PedigreeLinks_1_1PedigreeLink.html + a56f15398a6a23aac65ee580809d4ce39 + () + + + void + set_attr_Family + classlibgno_1_1GenoPro_1_1PedigreeLinks_1_1PedigreeLink.html + a9e404ca572918169061005dd38edb420 + (DOMString val) + + + DOMString + get_attr_Family_string + classlibgno_1_1GenoPro_1_1PedigreeLinks_1_1PedigreeLink.html + adf16059317794100ebab1bc67e100475 + () + + + attr_Individual_p + attribute_attr_Individual + classlibgno_1_1GenoPro_1_1PedigreeLinks_1_1PedigreeLink.html + afa6c6e9ef484dec34b88ed6ad84d9777 + () + + + void + set_attr_Individual + classlibgno_1_1GenoPro_1_1PedigreeLinks_1_1PedigreeLink.html + a974ce7608bdf2ca2fe9f5def2d01d1be + (DOMString val) + + + DOMString + get_attr_Individual_string + classlibgno_1_1GenoPro_1_1PedigreeLinks_1_1PedigreeLink.html + a738a4ae870e53724cc1e041c32096522 + () + + + sequence * + get_sequence + classlibgno_1_1GenoPro_1_1PedigreeLinks_1_1PedigreeLink.html + ae34ac0be821a06c2f8abd5a5df3ddaa8 + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1PedigreeLinks_1_1PedigreeLink.html + a9701dfd6dc6a45ec40c3ce5684e879da + () + + + Position_ptr + create_Position + classlibgno_1_1GenoPro_1_1PedigreeLinks_1_1PedigreeLink.html + a5126e2f80646ccc5e96fef0ebf4cdfcf + (FsmCbOptions &options) + + + attr_PedigreeLink_ptr + create_attr_PedigreeLink + classlibgno_1_1GenoPro_1_1PedigreeLinks_1_1PedigreeLink.html + af1b3b1d96a507ae9a73a206a63e1dabe + (FsmCbOptions &options) + + + attr_Family_ptr + create_attr_Family + classlibgno_1_1GenoPro_1_1PedigreeLinks_1_1PedigreeLink.html + afeeae03be3000e27766f73188e00c536 + (FsmCbOptions &options) + + + attr_Individual_ptr + create_attr_Individual + classlibgno_1_1GenoPro_1_1PedigreeLinks_1_1PedigreeLink.html + aef8ba4330cbca1650be46d13fd166b3b + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1PedigreeLinks_1_1PedigreeLink.html + ad3ce7ebad67425cb3d990b01d875e978 + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1PedigreeLinks_1_1PedigreeLink.html + ae4aa4423463e2812d013e1f61882fcf4 + + + + AutoPtr< sequence > + _sequence + classlibgno_1_1GenoPro_1_1PedigreeLinks_1_1PedigreeLink.html + a538244b00f96e8de3b24e18c1014b964 + + + + Position_ptr + _Position + classlibgno_1_1GenoPro_1_1PedigreeLinks_1_1PedigreeLink.html + a96e959b29cfccb15340f8836a838b7c6 + + + + attr_PedigreeLink_ptr + _attr_PedigreeLink + classlibgno_1_1GenoPro_1_1PedigreeLinks_1_1PedigreeLink.html + aed4f86d228a9e8b3d150f735c18f89af + + + + attr_Family_ptr + _attr_Family + classlibgno_1_1GenoPro_1_1PedigreeLinks_1_1PedigreeLink.html + aa5ab1fe1613dd26663cb824c0c3073ca + + + + attr_Individual_ptr + _attr_Individual + classlibgno_1_1GenoPro_1_1PedigreeLinks_1_1PedigreeLink.html + a1c65e27e064a8b0c03bca9deebe27639 + + + + + libgno::GenoPro::PedigreeLinks::PedigreeLink::Position + classlibgno_1_1GenoPro_1_1PedigreeLinks_1_1PedigreeLink_1_1Position.html + + AutoPtr< XMLSchema::XmlAttribute< XMLSchema::Types::bt_int > > + attr_z_ptr + classlibgno_1_1GenoPro_1_1PedigreeLinks_1_1PedigreeLink_1_1Position.html + a8bcabb86de7d44ef6162f511da99fe99 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_int > * + attr_z_p + classlibgno_1_1GenoPro_1_1PedigreeLinks_1_1PedigreeLink_1_1Position.html + a97f0c8c218643e4d2ebd743d7812df63 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_int > + attr_z + classlibgno_1_1GenoPro_1_1PedigreeLinks_1_1PedigreeLink_1_1Position.html + ac6d20825eb834b0cc427d84c5fe93427 + + + + + Position + classlibgno_1_1GenoPro_1_1PedigreeLinks_1_1PedigreeLink_1_1Position.html + a6196163a0f95119672255215d9b8f436 + (ElementCreateArgs args) + + + attr_z_p + attribute_attr_z + classlibgno_1_1GenoPro_1_1PedigreeLinks_1_1PedigreeLink_1_1Position.html + a5c944ce8fe020c10e84cd0290bf15538 + () + + + void + set_attr_z + classlibgno_1_1GenoPro_1_1PedigreeLinks_1_1PedigreeLink_1_1Position.html + a2ac83976c1ddc550a5d4d6a70e0aca45 + (DOMString val) + + + DOMString + get_attr_z_string + classlibgno_1_1GenoPro_1_1PedigreeLinks_1_1PedigreeLink_1_1Position.html + a686c1e93fc03a6ec3f40b94aa15d1ec8 + () + + + void + set_attr_z + classlibgno_1_1GenoPro_1_1PedigreeLinks_1_1PedigreeLink_1_1Position.html + afbb6dfbfe787fa34e04a668a7ff62fef + (int val) + + + int + get_attr_z + classlibgno_1_1GenoPro_1_1PedigreeLinks_1_1PedigreeLink_1_1Position.html + a53843052537351ae6866711b0731d5b5 + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1PedigreeLinks_1_1PedigreeLink_1_1Position.html + aa0ee8b3413efaa6fed546b3633e551d7 + () + + + attr_z_ptr + create_attr_z + classlibgno_1_1GenoPro_1_1PedigreeLinks_1_1PedigreeLink_1_1Position.html + aadb08198376495da94dcb260106e69fc + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1PedigreeLinks_1_1PedigreeLink_1_1Position.html + a2849155430cae87e5d42efc0e81795b0 + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1PedigreeLinks_1_1PedigreeLink_1_1Position.html + a701a249e21eb9571fbae689b8528098f + + + + attr_z_ptr + _attr_z + classlibgno_1_1GenoPro_1_1PedigreeLinks_1_1PedigreeLink_1_1Position.html + a2fe66f0c21a7d90c44b4eb4c4fb6d3e8 + + + + + libgno::GenoPro::PedigreeLinks::PedigreeLink::sequence + structlibgno_1_1GenoPro_1_1PedigreeLinks_1_1PedigreeLink_1_1sequence.html + + + sequence + structlibgno_1_1GenoPro_1_1PedigreeLinks_1_1PedigreeLink_1_1sequence.html + aadfda9e9254a9838bbaa2c8df010ec44 + (PedigreeLink *that) + + + Position_p + element_Position + structlibgno_1_1GenoPro_1_1PedigreeLinks_1_1PedigreeLink_1_1sequence.html + a0601957a9eb36f9b289c90a479cc70b4 + () + + + void + mark_present_Position + structlibgno_1_1GenoPro_1_1PedigreeLinks_1_1PedigreeLink_1_1sequence.html + ad384f9603f92cb7cb62cb0177de12ac1 + () + + + XsdFsmBase * + clone + structlibgno_1_1GenoPro_1_1PedigreeLinks_1_1PedigreeLink_1_1sequence.html + af068adfa49e75c8da6d6e6f6a1b3b29d + () const + + + PedigreeLink * + _that + structlibgno_1_1GenoPro_1_1PedigreeLinks_1_1PedigreeLink_1_1sequence.html + a80064886f91e1338d89f76dd712d6b11 + + + + + libgno::GenoPro::PedigreeLinks::sequence + structlibgno_1_1GenoPro_1_1PedigreeLinks_1_1sequence.html + + + sequence + structlibgno_1_1GenoPro_1_1PedigreeLinks_1_1sequence.html + a784aca3eee7b00761387541946a26f3f + (PedigreeLinks *that) + + + List< PedigreeLink_ptr > + elements_PedigreeLink + structlibgno_1_1GenoPro_1_1PedigreeLinks_1_1sequence.html + a6a41708ff908640a57d4a51d4f5f9ed2 + () + + + PedigreeLink_p + element_PedigreeLink_at + structlibgno_1_1GenoPro_1_1PedigreeLinks_1_1sequence.html + a849303f5c06ff771762434a0a1724926 + (unsigned int idx) + + + PedigreeLink_p + add_node_PedigreeLink + structlibgno_1_1GenoPro_1_1PedigreeLinks_1_1sequence.html + a4996c40f48024349fc7ef33c7c42ccc7 + () + + + List< PedigreeLink_ptr > + set_count_PedigreeLink + structlibgno_1_1GenoPro_1_1PedigreeLinks_1_1sequence.html + aba388673cb995be60a851f01fe1b2593 + (unsigned int size) + + + XsdFsmBase * + clone + structlibgno_1_1GenoPro_1_1PedigreeLinks_1_1sequence.html + a2357120ad745008106c9f7f66b8e3929 + () const + + + PedigreeLinks * + _that + structlibgno_1_1GenoPro_1_1PedigreeLinks_1_1sequence.html + a1225503fb66ff50da1742a5a04f3a77b + + + + + libgno::GenoPro::Pictures + classlibgno_1_1GenoPro_1_1Pictures.html + libgno::GenoPro::Pictures::Picture + libgno::GenoPro::Pictures::sequence + + AutoPtr< Picture > + Picture_ptr + classlibgno_1_1GenoPro_1_1Pictures.html + ab0bf49c27a28010f7454e9cc41b4a6d7 + + + + Picture * + Picture_p + classlibgno_1_1GenoPro_1_1Pictures.html + aaed4cfb227cbba923249794b694d2526 + + + + + Pictures + classlibgno_1_1GenoPro_1_1Pictures.html + ad1167a2d2e6ba9946b9602ebf7144cec + (ElementCreateArgs args) + + + List< Picture_ptr > + elements_Picture + classlibgno_1_1GenoPro_1_1Pictures.html + a891813e2287308da3263bd9272556aaa + () + + + Picture_p + element_Picture_at + classlibgno_1_1GenoPro_1_1Pictures.html + ad7328de2010fb5c5e7041569b4b74604 + (unsigned int idx) + + + Picture_p + add_node_Picture + classlibgno_1_1GenoPro_1_1Pictures.html + ab52302a227490d1fa2bb6306dfdd4408 + () + + + List< Picture_ptr > + set_count_Picture + classlibgno_1_1GenoPro_1_1Pictures.html + ae3c294f717e4697bc0ece5031e952359 + (unsigned int size) + + + sequence * + get_sequence + classlibgno_1_1GenoPro_1_1Pictures.html + a3e495ae461c878a4dc96067f80bbdcf7 + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1Pictures.html + a32916a3d45b35539d826a39fa12d269b + () + + + Picture_ptr + create_Picture + classlibgno_1_1GenoPro_1_1Pictures.html + a8142eb8f22d1731cd9d7a63c030f5a79 + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1Pictures.html + ae26653e405af3693efa02b771178c039 + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1Pictures.html + a401e34afc5bc7401199d47f48fbcf547 + + + + AutoPtr< sequence > + _sequence + classlibgno_1_1GenoPro_1_1Pictures.html + a42479b159e07cccc1dd5e90aff843ce1 + + + + List< Picture_ptr > + _list_Picture + classlibgno_1_1GenoPro_1_1Pictures.html + a51c65a9d38d06e5729d3dbcf01375cf0 + + + + + libgno::GenoPro::Pictures::Picture + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture.html + libgno::GenoPro::Pictures::Picture::Cache + libgno::GenoPro::Pictures::Picture::Path + libgno::GenoPro::Pictures::Picture::sequence + + AutoPtr< Path > + Path_ptr + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture.html + a7fa93fa5eeb1979bfc2ca11b84691bdb + + + + Path * + Path_p + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture.html + a6baf6574c814780f5cfe814514e50a6e + + + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_string > > + Name_ptr + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture.html + af1c8095f8b9f161f79c1612bb6d57e56 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_string > * + Name_p + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture.html + a562438ce9356c77df7d5c06cfea62a27 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_string > + Name + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture.html + a0e01ef6f181e29409b17e44df59c9c6e + + + + AutoPtr< Cache > + Cache_ptr + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture.html + ac757ecd5751de0e985564c07a647d6aa + + + + Cache * + Cache_p + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture.html + ab75444be19eb6c34f9951881a9c2e002 + + + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_dateTime > > + Date_ptr + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture.html + a339ae776117895729790fcb660f649f7 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_dateTime > * + Date_p + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture.html + aae04f9aee094faface2c09284e8e5de9 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_dateTime > + Date + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture.html + a5b28d611052b548c5febe19eaf38d73c + + + + AutoPtr< XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > > + attr_ID_ptr + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture.html + aad0930fe9c7f67a312d86cefe1c2ff7b + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > * + attr_ID_p + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture.html + a6ac270641b60188c6612d4c421dfdb1f + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > + attr_ID + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture.html + aa1b51fd8e6e6585ce45f90544ffabd4c + + + + + Picture + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture.html + a851065d7c6cff6aafa29bf1a80f3ab17 + (ElementCreateArgs args) + + + Path_p + element_Path + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture.html + abc68b08966e28b376528335ea9ba9bc2 + () + + + void + mark_present_Path + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture.html + acb07e7d89088cf433a4b916f7c6fb779 + () + + + Name_p + element_Name + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture.html + a2a7baf66c80732a9fd01198ec5cc77c4 + () + + + void + set_Name + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture.html + aa854feffe5b85ab66730e5cb3cb3d3bb + (DOMString val) + + + DOMString + get_Name_string + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture.html + a85db4533b3c94a203e8bb28812b149ab + () + + + void + mark_present_Name + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture.html + a83ecfd0cd769838999d00515a6b97437 + () + + + Cache_p + element_Cache + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture.html + ac24ccb4d56c53a703be46e0326ca1cc7 + () + + + void + mark_present_Cache + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture.html + a3b3e5ff189ffc8befd318b091cc6c66b + () + + + Date_p + element_Date + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture.html + a87e291bbde46f8008c947474149d0dd0 + () + + + void + set_Date + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture.html + a7433f15295cf48a006067247b3d16262 + (DOMString val) + + + DOMString + get_Date_string + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture.html + abaf73438b23f8d4876362bffce7b854d + () + + + void + set_Date + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture.html + a001e17af20920320c698325a88c4904b + (XPlus::DateTime val) + + + XPlus::DateTime + get_Date + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture.html + a715d4f98c4d28fe2f1b799bc006be1b8 + () + + + void + mark_present_Date + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture.html + a65d13beedae6797f4f636cd1aa28fe89 + () + + + attr_ID_p + attribute_attr_ID + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture.html + a8333a0c8601ae858c75d92c100f21019 + () + + + void + set_attr_ID + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture.html + a792bcbe17f749000bd79410a2431a22f + (DOMString val) + + + DOMString + get_attr_ID_string + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture.html + a847c344d0c853eacf0e77294508a1eda + () + + + sequence * + get_sequence + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture.html + a16e623b92983363360e44f9e9e4d2d20 + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture.html + a85e26dac64b03678c324056d261bb5b5 + () + + + Path_ptr + create_Path + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture.html + a2257702528307aab2df8b354d160586c + (FsmCbOptions &options) + + + Name_ptr + create_Name + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture.html + a29e328fb25979c13cfbcdf38a6d63131 + (FsmCbOptions &options) + + + Cache_ptr + create_Cache + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture.html + af926584c0c6f43f8a7348c280fe67306 + (FsmCbOptions &options) + + + Date_ptr + create_Date + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture.html + ac706f7410b4f91c42c58b605de21215d + (FsmCbOptions &options) + + + attr_ID_ptr + create_attr_ID + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture.html + a3447bdf35214eac4fb390d56bdf27f70 + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture.html + a4e585b6cd56811d3e0050e6e95a270cb + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture.html + aadf9aa01481e12e009603bbbf55861df + + + + AutoPtr< sequence > + _sequence + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture.html + a974e6ce7eb401c322d426624c1414782 + + + + Path_ptr + _Path + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture.html + a15d366c3278eee4ee2ee3db8193b8932 + + + + Name_ptr + _Name + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture.html + af735e18f899b9396e949317d28e50f1c + + + + Cache_ptr + _Cache + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture.html + a6ccb22a912d6d364a11bf31eebe1f18f + + + + Date_ptr + _Date + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture.html + aafbbf6923dc1427ed7bd1b71348ff7eb + + + + attr_ID_ptr + _attr_ID + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture.html + a9385db50b959f05f13e5cb9b1b6cfd0d + + + + + libgno::GenoPro::Pictures::Picture::Cache + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Cache.html + + AutoPtr< XMLSchema::XmlAttribute< XMLSchema::Types::bt_int > > + attr_FileSize_ptr + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Cache.html + a5f2ffed17ba9bdf533716de8b7009f01 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_int > * + attr_FileSize_p + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Cache.html + ae85cbb85f73494bf29671025305ff576 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_int > + attr_FileSize + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Cache.html + a5b80cd5d702c5dd304ddb55d197e4dc8 + + + + AutoPtr< XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > > + attr_Dimension_ptr + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Cache.html + a83f860c33a8e200a20de33cc6ea21154 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > * + attr_Dimension_p + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Cache.html + ab5f26b575185398da3bfc965ddd24841 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > + attr_Dimension + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Cache.html + a63ae3126c24d34fddf50cc6f4ba589bd + + + + AutoPtr< XMLSchema::XmlAttribute< XMLSchema::Types::bt_decimal > > + attr_Megapixels_ptr + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Cache.html + addec555e3de12eac11d7462cdea4bfd7 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_decimal > * + attr_Megapixels_p + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Cache.html + ac274a9d0bda3dcb3a385be5e65693570 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_decimal > + attr_Megapixels + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Cache.html + a206734c5e9c46c9c2fe4ee563b901f0e + + + + AutoPtr< XMLSchema::XmlAttribute< XMLSchema::Types::bt_int > > + attr_BPP_ptr + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Cache.html + a2d27b992672c60c92dad98f4e69f53c4 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_int > * + attr_BPP_p + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Cache.html + ae179cfe3c86c333b78ca912a0c7bfd65 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_int > + attr_BPP + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Cache.html + aa3df8378403cf249fd18ca4a1e7de9a4 + + + + AutoPtr< XMLSchema::XmlAttribute< XMLSchema::Types::bt_int > > + attr_DPI_ptr + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Cache.html + a43957e35c0791266f69a5a88a53567d8 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_int > * + attr_DPI_p + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Cache.html + a95b0bd3afb25ab8e17fc9f1059fc54b0 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_int > + attr_DPI + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Cache.html + a6b2f67c9a9b93e60876b37c6bb152578 + + + + + Cache + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Cache.html + aa8ca4ba7e68b2a85a56790146971258f + (ElementCreateArgs args) + + + attr_FileSize_p + attribute_attr_FileSize + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Cache.html + ad322c21862e547fd95ddeb6a149eb712 + () + + + void + set_attr_FileSize + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Cache.html + a2ba2f8dcebba02259b490002caf45fe6 + (DOMString val) + + + DOMString + get_attr_FileSize_string + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Cache.html + aaf878db88f4a90917530b802c9c4de15 + () + + + void + set_attr_FileSize + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Cache.html + aa8892478c2807693acd1bb99701b2bbc + (int val) + + + int + get_attr_FileSize + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Cache.html + a3ae1fa13542727ac1f4b819f5591b8db + () + + + attr_Dimension_p + attribute_attr_Dimension + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Cache.html + af5921e45898e060d7fe07a8fbaa4bbb9 + () + + + void + set_attr_Dimension + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Cache.html + a0fa81e26c451592178d8c268c651be0f + (DOMString val) + + + DOMString + get_attr_Dimension_string + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Cache.html + af4a47f4f738a6f16898ff14d92f280f9 + () + + + attr_Megapixels_p + attribute_attr_Megapixels + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Cache.html + aa5f41f8d7b917d7ebf909e93f28306b1 + () + + + void + set_attr_Megapixels + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Cache.html + acdfc8ce299ed832f743be4d783374adb + (DOMString val) + + + DOMString + get_attr_Megapixels_string + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Cache.html + a8504f27732aca741ba5ca443b693eb37 + () + + + void + set_attr_Megapixels + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Cache.html + a9021448707d81286a053324327eddb00 + (double val) + + + double + get_attr_Megapixels + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Cache.html + a217eed5ffe1f4a39c75dfbbe0400dc58 + () + + + attr_BPP_p + attribute_attr_BPP + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Cache.html + a57eadfff03ae3aba627387e0053f2837 + () + + + void + set_attr_BPP + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Cache.html + a6d32de33d15ec9fe9f1c4f5960ad280d + (DOMString val) + + + DOMString + get_attr_BPP_string + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Cache.html + a73ab1256207ec6e58103417cf0dffd54 + () + + + void + set_attr_BPP + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Cache.html + a4023b0cd8fa215685c78584b7b88b621 + (int val) + + + int + get_attr_BPP + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Cache.html + a9632738d983771a5523153d46bf098b2 + () + + + attr_DPI_p + attribute_attr_DPI + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Cache.html + a12dfccc58368162b4310bbb52bf1e7d9 + () + + + void + set_attr_DPI + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Cache.html + afc11ca7eb0311f2062ba26f5804b97ea + (DOMString val) + + + DOMString + get_attr_DPI_string + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Cache.html + ad3f22c571b07ff1bd110532c1aaf3851 + () + + + void + set_attr_DPI + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Cache.html + a5765929f84ed3a49b44b99aa7ce6b45a + (int val) + + + int + get_attr_DPI + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Cache.html + a80e3402ea73d9f77ce6519c7d6f5c74d + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Cache.html + a8d7d47b6df9dbb6cb12c01092df0d5b0 + () + + + attr_FileSize_ptr + create_attr_FileSize + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Cache.html + a199c134ba4fd6c555044c403acf1ae0f + (FsmCbOptions &options) + + + attr_Dimension_ptr + create_attr_Dimension + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Cache.html + ad8225efa9cb0c015113dd93dbc779fbf + (FsmCbOptions &options) + + + attr_Megapixels_ptr + create_attr_Megapixels + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Cache.html + ac19c3f35824f0762cfb24340dc7a52b9 + (FsmCbOptions &options) + + + attr_BPP_ptr + create_attr_BPP + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Cache.html + a302363f57b0cc0d20e82b14e639ee7b2 + (FsmCbOptions &options) + + + attr_DPI_ptr + create_attr_DPI + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Cache.html + a2d9dbc7898480c54c32bf14c8a19ce32 + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Cache.html + a7429cf9ab6d960ed7c43301d6bcc9a5b + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Cache.html + a41f2199573861feee52126f0082a48a3 + + + + attr_FileSize_ptr + _attr_FileSize + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Cache.html + aecced7115d6f3bb16a13f59520bc39ab + + + + attr_Dimension_ptr + _attr_Dimension + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Cache.html + a1addfb765632a7aa7f228258bc982ade + + + + attr_Megapixels_ptr + _attr_Megapixels + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Cache.html + a069ead7adf1dfb6c69da09e3b6abe0b7 + + + + attr_BPP_ptr + _attr_BPP + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Cache.html + ac40f53742a3b6e4ad3f49715729288f4 + + + + attr_DPI_ptr + _attr_DPI + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Cache.html + a626301658e73097cdb82bf7ff8d5db55 + + + + + libgno::GenoPro::Pictures::Picture::Path + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Path.html + + AutoPtr< XMLSchema::XmlAttribute< XMLSchema::Types::bt_string > > + attr_Relative_ptr + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Path.html + aed58ac92b023f0eb52cc7b8e93c4ddb5 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_string > * + attr_Relative_p + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Path.html + a88e0eccc905a4e670234a3aa58658032 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_string > + attr_Relative + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Path.html + a5d26953f406635c2bc45e4d58147b30c + + + + AutoPtr< XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > > + attr_FileUnique_ptr + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Path.html + ae98b83e8f0c5f872a62897e11e617c44 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > * + attr_FileUnique_p + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Path.html + adc86ff4ac656082c446bb1a1bcde3fe8 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > + attr_FileUnique + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Path.html + ac615b02c1a854b9bfbdefce5a9f357a3 + + + + AutoPtr< XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > > + attr_Report_ptr + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Path.html + adaaadbc9831d9e1f208868f2978aafc4 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > * + attr_Report_p + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Path.html + a0c00d5c7b6f1e323dc895c0b0972ebf2 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > + attr_Report + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Path.html + a2bb5c83f1ea46e92c96e52f9a7447891 + + + + + Path + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Path.html + a7746b55a39139b3b191c7637312cc763 + (ElementCreateArgs args) + + + attr_Relative_p + attribute_attr_Relative + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Path.html + a6879d6804709f089eda7cfc6ce42731a + () + + + void + set_attr_Relative + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Path.html + a531e133178cab064765dcb7675b3ec7e + (DOMString val) + + + DOMString + get_attr_Relative_string + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Path.html + a4855d9885416fdcb2838eb24158cc71a + () + + + attr_FileUnique_p + attribute_attr_FileUnique + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Path.html + a4edc8b3cc7c055e314acac0d0b9f0887 + () + + + void + set_attr_FileUnique + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Path.html + adb0137a2c41510aab064cf103856c9e1 + (DOMString val) + + + DOMString + get_attr_FileUnique_string + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Path.html + af7621df8ab650da6068fcd6184b0772b + () + + + attr_Report_p + attribute_attr_Report + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Path.html + a4512144a36a517d31ccbd3f5691a7d5d + () + + + void + set_attr_Report + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Path.html + a4f0f1089659c3069dd2eb0b0b948cd66 + (DOMString val) + + + DOMString + get_attr_Report_string + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Path.html + a8c9689123a5e2e17be28688bcb307f59 + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Path.html + acddd8a0f1a9bd955e9c98b36310d672f + () + + + attr_Relative_ptr + create_attr_Relative + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Path.html + ac44e7049ee8184dfad205d1d8f675246 + (FsmCbOptions &options) + + + attr_FileUnique_ptr + create_attr_FileUnique + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Path.html + adfb2463713bef75052c35c6e61192774 + (FsmCbOptions &options) + + + attr_Report_ptr + create_attr_Report + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Path.html + a7faad14e442e10e657310b3b0f99b7b4 + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Path.html + a63032fe7debdf30a49e1780b70bf42ac + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Path.html + af68e86d2bc4a24796e38c36114d79042 + + + + attr_Relative_ptr + _attr_Relative + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Path.html + a5faf9d1c14bc14adfc8281b2ea12137a + + + + attr_FileUnique_ptr + _attr_FileUnique + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Path.html + a5b2313d273b716f2415ff20f03ebea34 + + + + attr_Report_ptr + _attr_Report + classlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1Path.html + ad003ec1be95d10225776d723cb63f50d + + + + + libgno::GenoPro::Pictures::Picture::sequence + structlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1sequence.html + + + sequence + structlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1sequence.html + ac89e5b62e14f5cb9240f377858e2bee2 + (Picture *that) + + + Path_p + element_Path + structlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1sequence.html + adf4a270cd51bfd4a70c70b512c9bc5d2 + () + + + void + mark_present_Path + structlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1sequence.html + a4aa3ac38fe473bf6a1fcd366496e5d0b + () + + + Name_p + element_Name + structlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1sequence.html + a64bf2cc0e6eb6db5e66e0053ef60d4a5 + () + + + void + set_Name + structlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1sequence.html + a2f638dc230661ab39ac3a61d56923ec6 + (DOMString val) + + + DOMString + get_Name_string + structlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1sequence.html + a5a662615a0f3ca3ff368573d362bf887 + () + + + void + mark_present_Name + structlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1sequence.html + abc12cd355a781ab96a26217ab4dfdb20 + () + + + Cache_p + element_Cache + structlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1sequence.html + ab5693118e3aedb1460e1e0e48bc2526d + () + + + void + mark_present_Cache + structlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1sequence.html + a322e7c6fd0d2b1d69833fb281534f504 + () + + + Date_p + element_Date + structlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1sequence.html + a734cb9f8d561de9cf202417f368d74cb + () + + + void + set_Date + structlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1sequence.html + a85692f9400839fb520e11d9e1862c6a5 + (DOMString val) + + + DOMString + get_Date_string + structlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1sequence.html + a33c19ab7683eacc67b03dafe6df5e105 + () + + + void + set_Date + structlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1sequence.html + a6314c2a918770f37a59c4b7c9ac9276c + (XPlus::DateTime val) + + + XPlus::DateTime + get_Date + structlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1sequence.html + a02e0101c7f21ce330939a858241cc6e1 + () + + + void + mark_present_Date + structlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1sequence.html + ae8cb8395651281b3c42830dbfd69d124 + () + + + XsdFsmBase * + clone + structlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1sequence.html + a5b11c9cc9a1f21b851fddd500254b518 + () const + + + Picture * + _that + structlibgno_1_1GenoPro_1_1Pictures_1_1Picture_1_1sequence.html + af11f9e2624b1a2df8c12568707d59e08 + + + + + libgno::GenoPro::Pictures::sequence + structlibgno_1_1GenoPro_1_1Pictures_1_1sequence.html + + + sequence + structlibgno_1_1GenoPro_1_1Pictures_1_1sequence.html + a17e5fa6c8185e02f5347b29b7fe5df1a + (Pictures *that) + + + List< Picture_ptr > + elements_Picture + structlibgno_1_1GenoPro_1_1Pictures_1_1sequence.html + a90850a33d2c76ddf6d074cd7c9e8ffee + () + + + Picture_p + element_Picture_at + structlibgno_1_1GenoPro_1_1Pictures_1_1sequence.html + a96265b066712a2cfa93dc93575a71f4d + (unsigned int idx) + + + Picture_p + add_node_Picture + structlibgno_1_1GenoPro_1_1Pictures_1_1sequence.html + a42a9e3f3bdf0907597101ea177eef827 + () + + + List< Picture_ptr > + set_count_Picture + structlibgno_1_1GenoPro_1_1Pictures_1_1sequence.html + adee1492762f6cea97f0a1f9929010ea5 + (unsigned int size) + + + XsdFsmBase * + clone + structlibgno_1_1GenoPro_1_1Pictures_1_1sequence.html + af0caede9af096effe11a4d33d33e9e12 + () const + + + Pictures * + _that + structlibgno_1_1GenoPro_1_1Pictures_1_1sequence.html + ac75a3ea35a3e2fe0b5fb1bfdecb13ae2 + + + + + libgno::GenoPro::Places + classlibgno_1_1GenoPro_1_1Places.html + libgno::GenoPro::Places::Place + libgno::GenoPro::Places::sequence + + AutoPtr< Place > + Place_ptr + classlibgno_1_1GenoPro_1_1Places.html + ac35dccd44d7193aea3b5c01fa2cbaeea + + + + Place * + Place_p + classlibgno_1_1GenoPro_1_1Places.html + a25e82b5ff3e89f54c32f885a17dd00fb + + + + + Places + classlibgno_1_1GenoPro_1_1Places.html + ac42a0cc9085c13fc2a506530429456e8 + (ElementCreateArgs args) + + + List< Place_ptr > + elements_Place + classlibgno_1_1GenoPro_1_1Places.html + a7853f4db032611b8dacfa590606a0219 + () + + + Place_p + element_Place_at + classlibgno_1_1GenoPro_1_1Places.html + a762d2bdf620307243c01fc3d9fae146a + (unsigned int idx) + + + Place_p + add_node_Place + classlibgno_1_1GenoPro_1_1Places.html + a7817320680882c20e3267693e236fda6 + () + + + List< Place_ptr > + set_count_Place + classlibgno_1_1GenoPro_1_1Places.html + a755b4eca4c4c252aad161e786eea5ed9 + (unsigned int size) + + + sequence * + get_sequence + classlibgno_1_1GenoPro_1_1Places.html + a829d91ea4fd2159db73d0e742f198244 + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1Places.html + a2fadb19391feaf51bf936ffc1cd6f8c6 + () + + + Place_ptr + create_Place + classlibgno_1_1GenoPro_1_1Places.html + a14bfd25ed626b989332d79eec4efb4ce + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1Places.html + a6b7eb92230a8c16b182872a051bb2d7b + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1Places.html + ae1d7474e87d020159f9957bc58b12170 + + + + AutoPtr< sequence > + _sequence + classlibgno_1_1GenoPro_1_1Places.html + a105410b1fdfaecf8e1f1998cdf84bc82 + + + + List< Place_ptr > + _list_Place + classlibgno_1_1GenoPro_1_1Places.html + a96dc51fd68bb4b2f7bcdb95d59a03e36 + + + + + libgno::GenoPro::Places::Place + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + libgno::GenoPro::Places::Place::Pictures + libgno::GenoPro::Places::Place::sequence + + AutoPtr< Pictures > + Pictures_ptr + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + a973a3f7fb0025dd99c2b8182d182369f + + + + Pictures * + Pictures_p + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + a3e08f5986da61eb812ff35565f93fa78 + + + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > > + Parent_ptr + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + a827e093e353174f2a8c321437a171ca2 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > * + Parent_p + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + ae8e0711f1354d6a7417b4e7c5e1c4adb + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > + Parent + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + a657ac682f70639c378d2f6e73dcaa2bc + + + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > > + Category_ptr + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + a92629d1f0d1e1964e0d44a4f962d9b8d + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > * + Category_p + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + a1455d053162907b5b61eb6368f69acd6 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > + Category + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + a8f702474637b4e44abca9f52ebb53dcb + + + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_string > > + Name_ptr + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + a6b60acba51cb178e8caa9f177d59c144 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_string > * + Name_p + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + a37bbeea6172e259f709fc579359c6434 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_string > + Name + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + af3e65a60cfe97aeccd1b7588a3febcfa + + + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_string > > + Street_ptr + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + af4655494ed8d5023b1ff06769860db5c + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_string > * + Street_p + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + aaa81c0c8344027e96b9e4ec1dd154785 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_string > + Street + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + a77c1a93fb6b76f62e9832dd5ef66602a + + + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > > + City_ptr + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + a49a6be4efac9bd1de48b857ffbfe6eff + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > * + City_p + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + ae7fe24e12d9fcf7a579af303421012a5 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > + City + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + aa68d5e0c4f56a2bc353a6cc77103aecd + + + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > > + Zip_ptr + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + a1fbb03f5e6c1a95b06857e0f1581d900 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > * + Zip_p + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + ad1dc470fb8b1a255cbc0747bba9c810e + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > + Zip + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + abfaf14be91a8118895d4df25ef309a7f + + + + AutoPtr< XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > > + attr_ID_ptr + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + ac35901c802241cb172486b13463bc79a + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > * + attr_ID_p + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + acc0c07b9ad72f02ff23c151448630c5e + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > + attr_ID + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + ac79eebed42d7b05112c1f130c321edbb + + + + + Place + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + ab9d42e93039dd1bb2b573cc62f208987 + (ElementCreateArgs args) + + + Pictures_p + element_Pictures + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + a649d76fdd111d663695754e953b1659d + () + + + void + mark_present_Pictures + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + a60530f8339b8e55e933797a3371c21f8 + () + + + Parent_p + element_Parent + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + a5e3ae1944585e3f604bc27fb7b3220cf + () + + + void + set_Parent + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + aa8d81a125b05d7e5f3e8c620b6e7624d + (DOMString val) + + + DOMString + get_Parent_string + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + af694270a9af4a15a190038277af311fb + () + + + void + mark_present_Parent + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + a4767ef662c654587e3c3ffce2771e6fd + () + + + Category_p + element_Category + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + a4cfa5bfb90a39d8eb76b50f93be71b6d + () + + + void + set_Category + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + ac16384689c65c42589f3e19b998a875e + (DOMString val) + + + DOMString + get_Category_string + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + acb4a614c782c8308e797330df4d02f87 + () + + + void + mark_present_Category + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + ab3422516e05ecb21eb18a68a613f9a8e + () + + + Name_p + element_Name + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + ac3a23238984c7588fae714436a96b7f6 + () + + + void + set_Name + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + a160120b5eb5e017c5b7edaa71b8fad03 + (DOMString val) + + + DOMString + get_Name_string + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + aa4afc16184e30c4c38918639f3376748 + () + + + void + mark_present_Name + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + a20e78aaef8e0dda51333cd8c51633226 + () + + + Street_p + element_Street + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + a2ac3c10002ba0a6163cbfa6a264b305d + () + + + void + set_Street + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + a5e3533f5360dd79b5f0ac9a2ca3317b1 + (DOMString val) + + + DOMString + get_Street_string + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + ab3de6f03365f4f014c991812f6859cbe + () + + + void + mark_present_Street + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + af6f4ebf101c97e7465ecd36f8db447e5 + () + + + City_p + element_City + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + a0fe34d2e99d40c5710c0574f32fbcd48 + () + + + void + set_City + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + a24efc00fedac06709eb8ac6ab5d427f8 + (DOMString val) + + + DOMString + get_City_string + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + af3ac27ff6f08b1974d0baccb79d845ac + () + + + void + mark_present_City + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + a1ffe1c70afd83ac613397b09f6500974 + () + + + Zip_p + element_Zip + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + afe60e87ac31610b204ff07f1d516068c + () + + + void + set_Zip + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + a6b716379dd82f36927fe7fadf2d81cd3 + (DOMString val) + + + DOMString + get_Zip_string + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + a6ba754573c223b3cbb946b5d3ac12207 + () + + + void + mark_present_Zip + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + ab822db12e1aad03f6884902639eae20c + () + + + attr_ID_p + attribute_attr_ID + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + a69054a901c1ac32ea0baa8510e79e2e3 + () + + + void + set_attr_ID + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + a8aab4d5afae3b326c9d0a03bafa26fd3 + (DOMString val) + + + DOMString + get_attr_ID_string + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + adba9b8cdf20f43e783e2297586be63c5 + () + + + sequence * + get_sequence + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + ab8c747dd6384c91dc7093b0a149706a5 + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + abf3204d99580e240e9ab736bff5852d8 + () + + + Pictures_ptr + create_Pictures + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + ac0bf41cbb3f430cd910461914e437736 + (FsmCbOptions &options) + + + Parent_ptr + create_Parent + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + a7cbca7de84bc73a97d44756dfb2e985c + (FsmCbOptions &options) + + + Category_ptr + create_Category + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + a90f56d37a1987995caef895807ee998b + (FsmCbOptions &options) + + + Name_ptr + create_Name + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + aadb87e2ded0a114df14a08fad3dac115 + (FsmCbOptions &options) + + + Street_ptr + create_Street + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + a0a0bc852cf7f97624be083fa43ffd75b + (FsmCbOptions &options) + + + City_ptr + create_City + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + a791119d1873b883f54450b7ca2502ce5 + (FsmCbOptions &options) + + + Zip_ptr + create_Zip + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + a6bd25a37424ebeaf1ec65068cc0d7f05 + (FsmCbOptions &options) + + + attr_ID_ptr + create_attr_ID + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + abbbd9740adba09655279a0b960bf94f8 + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + a74342b0f5eb3570a224f05a999d0c9f0 + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + add463a5ba2871b036b62e2b2a3e1e00e + + + + AutoPtr< sequence > + _sequence + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + aa3bcf10bfe2fd161971cf06d7ec59e1d + + + + Pictures_ptr + _Pictures + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + ab56a55652c7a0b581ee6548f2b41c02e + + + + Parent_ptr + _Parent + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + a08e85a053b3264d21e712eec4a488a23 + + + + Category_ptr + _Category + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + a2a4e3635a3d30d90983a34e7ae0cb3f3 + + + + Name_ptr + _Name + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + a74939f4e42d6e0907c4a86faca2f0e04 + + + + Street_ptr + _Street + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + a040801c69674d931b65040362d2ec26d + + + + City_ptr + _City + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + a6c0dd177a032059de9fabbe54f71e96f + + + + Zip_ptr + _Zip + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + ab552c4ce081549c4904d0487bf0cc4f3 + + + + attr_ID_ptr + _attr_ID + classlibgno_1_1GenoPro_1_1Places_1_1Place.html + ac4fb29e5a27513734b25cb61bc55dcd9 + + + + + libgno::GenoPro::Places::Place::Pictures + classlibgno_1_1GenoPro_1_1Places_1_1Place_1_1Pictures.html + + AutoPtr< XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > > + attr_Primary_ptr + classlibgno_1_1GenoPro_1_1Places_1_1Place_1_1Pictures.html + a5ba2ab2261bf1bd2c4820f107c08a7b8 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > * + attr_Primary_p + classlibgno_1_1GenoPro_1_1Places_1_1Place_1_1Pictures.html + ae80ad86c960562f0642db4d73f81863a + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > + attr_Primary + classlibgno_1_1GenoPro_1_1Places_1_1Place_1_1Pictures.html + a46aa922abc33d94ddd9d4bf762c55c0a + + + + + Pictures + classlibgno_1_1GenoPro_1_1Places_1_1Place_1_1Pictures.html + a0b12b7f0b41036a8973d51e17698bd64 + (ElementCreateArgs args) + + + attr_Primary_p + attribute_attr_Primary + classlibgno_1_1GenoPro_1_1Places_1_1Place_1_1Pictures.html + a2e9b0aff7eb65c67d2663679eda0b79d + () + + + void + set_attr_Primary + classlibgno_1_1GenoPro_1_1Places_1_1Place_1_1Pictures.html + a75940bbef5cf60a22060323cce7f8247 + (DOMString val) + + + DOMString + get_attr_Primary_string + classlibgno_1_1GenoPro_1_1Places_1_1Place_1_1Pictures.html + af6368709f12ea4a42bd3dfe0f1877bc7 + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1Places_1_1Place_1_1Pictures.html + a8b43388779447ab10dec81414727ab08 + () + + + attr_Primary_ptr + create_attr_Primary + classlibgno_1_1GenoPro_1_1Places_1_1Place_1_1Pictures.html + aefc69d319391b9a6692d6383007f199b + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1Places_1_1Place_1_1Pictures.html + a713db3f2a394a650b0734b4d9c037ebf + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1Places_1_1Place_1_1Pictures.html + a726971f13bd7f85b7ca5b29e9abe8ea7 + + + + attr_Primary_ptr + _attr_Primary + classlibgno_1_1GenoPro_1_1Places_1_1Place_1_1Pictures.html + a02efa532bc73b4ae8ec1fe465c0e78fe + + + + + libgno::GenoPro::Places::Place::sequence + structlibgno_1_1GenoPro_1_1Places_1_1Place_1_1sequence.html + + + sequence + structlibgno_1_1GenoPro_1_1Places_1_1Place_1_1sequence.html + ad33e0f00ec2e0b5faf07a36e8e8d95b1 + (Place *that) + + + Pictures_p + element_Pictures + structlibgno_1_1GenoPro_1_1Places_1_1Place_1_1sequence.html + aaf31f5602f69262820dfe9e04e61ba40 + () + + + void + mark_present_Pictures + structlibgno_1_1GenoPro_1_1Places_1_1Place_1_1sequence.html + add302afe14d5713b3640c36d31eee9b3 + () + + + Parent_p + element_Parent + structlibgno_1_1GenoPro_1_1Places_1_1Place_1_1sequence.html + a93042bdce0e1d2a408571849e4e325b6 + () + + + void + set_Parent + structlibgno_1_1GenoPro_1_1Places_1_1Place_1_1sequence.html + ad64fbd6576a4079cfeee7cb37f7ed476 + (DOMString val) + + + DOMString + get_Parent_string + structlibgno_1_1GenoPro_1_1Places_1_1Place_1_1sequence.html + aeac4c1ec82ddb1172bdd40bfa32c96f0 + () + + + void + mark_present_Parent + structlibgno_1_1GenoPro_1_1Places_1_1Place_1_1sequence.html + a018e5c97a84f0ccbd20709eb01ec9673 + () + + + Category_p + element_Category + structlibgno_1_1GenoPro_1_1Places_1_1Place_1_1sequence.html + aff7e62f618a36958aabdb4e6c307271f + () + + + void + set_Category + structlibgno_1_1GenoPro_1_1Places_1_1Place_1_1sequence.html + aeb5c2da3fef96cd76f2a34ef7f9bfefb + (DOMString val) + + + DOMString + get_Category_string + structlibgno_1_1GenoPro_1_1Places_1_1Place_1_1sequence.html + aab65922b81f2c716911a87c2400ef336 + () + + + void + mark_present_Category + structlibgno_1_1GenoPro_1_1Places_1_1Place_1_1sequence.html + af6ddd9361726d235900c87f2b878dd2b + () + + + Name_p + element_Name + structlibgno_1_1GenoPro_1_1Places_1_1Place_1_1sequence.html + adb7da11d169c7a14834902e890a02aa5 + () + + + void + set_Name + structlibgno_1_1GenoPro_1_1Places_1_1Place_1_1sequence.html + aaf28201b61feac0488ea723ea53b8504 + (DOMString val) + + + DOMString + get_Name_string + structlibgno_1_1GenoPro_1_1Places_1_1Place_1_1sequence.html + a6c6e4d183cb7c3957fcd8301d18e866e + () + + + void + mark_present_Name + structlibgno_1_1GenoPro_1_1Places_1_1Place_1_1sequence.html + a18f8a8473a0afa64d97e2a071e63de19 + () + + + Street_p + element_Street + structlibgno_1_1GenoPro_1_1Places_1_1Place_1_1sequence.html + a5f4f6d7ce094b64e81922f1da02218b4 + () + + + void + set_Street + structlibgno_1_1GenoPro_1_1Places_1_1Place_1_1sequence.html + afd346bce94bca816a94861f3156ab1fa + (DOMString val) + + + DOMString + get_Street_string + structlibgno_1_1GenoPro_1_1Places_1_1Place_1_1sequence.html + a7ebd107986d0fc1b65b30c186cd76fc2 + () + + + void + mark_present_Street + structlibgno_1_1GenoPro_1_1Places_1_1Place_1_1sequence.html + a63dea7d7545e70f13c357404c6bd0598 + () + + + City_p + element_City + structlibgno_1_1GenoPro_1_1Places_1_1Place_1_1sequence.html + ae26a1df47db4a28eff501ede1f9e3cbd + () + + + void + set_City + structlibgno_1_1GenoPro_1_1Places_1_1Place_1_1sequence.html + aaea0a00a9772a4d1f435415334cb09fd + (DOMString val) + + + DOMString + get_City_string + structlibgno_1_1GenoPro_1_1Places_1_1Place_1_1sequence.html + a7df61fae99f64545d930d8638df669b9 + () + + + void + mark_present_City + structlibgno_1_1GenoPro_1_1Places_1_1Place_1_1sequence.html + a298fbdf3df6e7542185f99c903d793ab + () + + + Zip_p + element_Zip + structlibgno_1_1GenoPro_1_1Places_1_1Place_1_1sequence.html + aec065bb0426a2ea11e2f2adee9eb7cee + () + + + void + set_Zip + structlibgno_1_1GenoPro_1_1Places_1_1Place_1_1sequence.html + af6f8684e6cb197e572426e65a53b78f7 + (DOMString val) + + + DOMString + get_Zip_string + structlibgno_1_1GenoPro_1_1Places_1_1Place_1_1sequence.html + a91dab543f106c84bf55281baa42a2923 + () + + + void + mark_present_Zip + structlibgno_1_1GenoPro_1_1Places_1_1Place_1_1sequence.html + ab2b725cc3a8c47ce94f623f419a3857a + () + + + XsdFsmBase * + clone + structlibgno_1_1GenoPro_1_1Places_1_1Place_1_1sequence.html + aa886d3cc86f6a3bc4666116615f14c1e + () const + + + Place * + _that + structlibgno_1_1GenoPro_1_1Places_1_1Place_1_1sequence.html + a91a66aa5cbf39e8469bba5d3874a2e14 + + + + + libgno::GenoPro::Places::sequence + structlibgno_1_1GenoPro_1_1Places_1_1sequence.html + + + sequence + structlibgno_1_1GenoPro_1_1Places_1_1sequence.html + a8b9120899244f3e2a6c497383db73950 + (Places *that) + + + List< Place_ptr > + elements_Place + structlibgno_1_1GenoPro_1_1Places_1_1sequence.html + a9d8e55307a2906fd804edb19d3e7c48b + () + + + Place_p + element_Place_at + structlibgno_1_1GenoPro_1_1Places_1_1sequence.html + ab4f6fdb0c6cc1f0a8056717e043b501b + (unsigned int idx) + + + Place_p + add_node_Place + structlibgno_1_1GenoPro_1_1Places_1_1sequence.html + a20e8acf2a4ac0577c93f4d819e2a7183 + () + + + List< Place_ptr > + set_count_Place + structlibgno_1_1GenoPro_1_1Places_1_1sequence.html + ad13d5cdbb72af17fcd6fe0c398d1e730 + (unsigned int size) + + + XsdFsmBase * + clone + structlibgno_1_1GenoPro_1_1Places_1_1sequence.html + a0232fda8fd5f7fe8d43a5c06b8fec820 + () const + + + Places * + _that + structlibgno_1_1GenoPro_1_1Places_1_1sequence.html + a4ef8a47ff11e5c7d702c366ec22c5259 + + + + + libgno::GenoPro::sequence + structlibgno_1_1GenoPro_1_1sequence.html + + + sequence + structlibgno_1_1GenoPro_1_1sequence.html + a0071bc620a9ce1add7e8c35c41660736 + (GenoPro *that) + + + Software_p + element_Software + structlibgno_1_1GenoPro_1_1sequence.html + a504c1eba566bc2369ae0177599e8b387 + () + + + void + mark_present_Software + structlibgno_1_1GenoPro_1_1sequence.html + a1d11b04910732146dae32ed3d6c0db4f + () + + + Date_p + element_Date + structlibgno_1_1GenoPro_1_1sequence.html + ad8e63b5f0d6dca64b42e4095cbb9e6ed + () + + + void + set_Date + structlibgno_1_1GenoPro_1_1sequence.html + a374717f901d368e9fe3aaf5d8feb7fb9 + (DOMString val) + + + DOMString + get_Date_string + structlibgno_1_1GenoPro_1_1sequence.html + a4fa592328d592504891e8d88c5e72dce + () + + + void + mark_present_Date + structlibgno_1_1GenoPro_1_1sequence.html + afa1df8bff807036de0192c19078b44d0 + () + + + Global_p + element_Global + structlibgno_1_1GenoPro_1_1sequence.html + a2f4e98f60e641cc9f20687bc55161ee0 + () + + + void + mark_present_Global + structlibgno_1_1GenoPro_1_1sequence.html + a1c8b21f46db4a27beee952fc5c89a025 + () + + + GenoMaps_p + element_GenoMaps + structlibgno_1_1GenoPro_1_1sequence.html + a77263d2bad14597d2329a131ae7337df + () + + + void + mark_present_GenoMaps + structlibgno_1_1GenoPro_1_1sequence.html + a66831020e20d951df65a1a95168ca0a4 + () + + + Individuals_p + element_Individuals + structlibgno_1_1GenoPro_1_1sequence.html + ae3f6521d19435d7a2978791429785d64 + () + + + void + mark_present_Individuals + structlibgno_1_1GenoPro_1_1sequence.html + af399bf9d38fafc3d665fde84b1985bf1 + () + + + Families_p + element_Families + structlibgno_1_1GenoPro_1_1sequence.html + aedff8646f48cd9e232af844125cb3dcf + () + + + void + mark_present_Families + structlibgno_1_1GenoPro_1_1sequence.html + abcb0f79d1fe884f0a7ce4e2abe2f2c48 + () + + + Marriages_p + element_Marriages + structlibgno_1_1GenoPro_1_1sequence.html + a9c465051de2733c9ed11ee4ed661f7ab + () + + + void + mark_present_Marriages + structlibgno_1_1GenoPro_1_1sequence.html + ae33eb988a12be29291a6f2674b5fc1fd + () + + + PedigreeLinks_p + element_PedigreeLinks + structlibgno_1_1GenoPro_1_1sequence.html + ad2cb572a4df95e9435141b6718f163e0 + () + + + void + mark_present_PedigreeLinks + structlibgno_1_1GenoPro_1_1sequence.html + a805661fb1e668af179346ad3bc14f086 + () + + + Pictures_p + element_Pictures + structlibgno_1_1GenoPro_1_1sequence.html + a00e86f650dc8a54cdf77a1807e6c4654 + () + + + void + mark_present_Pictures + structlibgno_1_1GenoPro_1_1sequence.html + a3292f7a71d7f6ec5f977bb26519e5def + () + + + Places_p + element_Places + structlibgno_1_1GenoPro_1_1sequence.html + a6f8ee6949488d1ecd82727d7f96dc057 + () + + + void + mark_present_Places + structlibgno_1_1GenoPro_1_1sequence.html + aa6645a0efc0d2e08a15ad9f4478352e7 + () + + + Educations_p + element_Educations + structlibgno_1_1GenoPro_1_1sequence.html + afefc4fe8597dc0a1e4f516fd16202c28 + () + + + void + mark_present_Educations + structlibgno_1_1GenoPro_1_1sequence.html + adfb653c2fb88711de9f720f0a7c443c1 + () + + + Occupations_p + element_Occupations + structlibgno_1_1GenoPro_1_1sequence.html + a30dfcaf2c642e5cfe7b9559e342b1da7 + () + + + void + mark_present_Occupations + structlibgno_1_1GenoPro_1_1sequence.html + a7cdef7760b76ec3cc0ead70fc3c79c63 + () + + + Contacts_p + element_Contacts + structlibgno_1_1GenoPro_1_1sequence.html + a8bfbffd918eddfae8c87d359b663a3c2 + () + + + void + mark_present_Contacts + structlibgno_1_1GenoPro_1_1sequence.html + a4e696c5556c446bcf67426e956011c24 + () + + + SourcesAndCitations_p + element_SourcesAndCitations + structlibgno_1_1GenoPro_1_1sequence.html + a4792d7e6675f23cd9717d984c1c16fa2 + () + + + void + mark_present_SourcesAndCitations + structlibgno_1_1GenoPro_1_1sequence.html + a3c763b7857bcf47f7a57196be13388d5 + () + + + Twins_p + element_Twins + structlibgno_1_1GenoPro_1_1sequence.html + a3f0525eca544df1f8bcc6349c5efb325 + () + + + void + mark_present_Twins + structlibgno_1_1GenoPro_1_1sequence.html + af5fac463322b35984162de9aa5d6c78a + () + + + Shapes_p + element_Shapes + structlibgno_1_1GenoPro_1_1sequence.html + a2d559291d8be7270cf3f0f9f90d78101 + () + + + void + mark_present_Shapes + structlibgno_1_1GenoPro_1_1sequence.html + a0704d969a3382913e4f7208b5cd2677c + () + + + SocialRelationships_p + element_SocialRelationships + structlibgno_1_1GenoPro_1_1sequence.html + a32080ad9b265d8bcec76b3c35dfc1168 + () + + + void + mark_present_SocialRelationships + structlibgno_1_1GenoPro_1_1sequence.html + a3733a0e508d2743b1e14278c803968f7 + () + + + XsdFsmBase * + clone + structlibgno_1_1GenoPro_1_1sequence.html + a3bbcdd963bb7f403c1104359dcf2194b + () const + + + GenoPro * + _that + structlibgno_1_1GenoPro_1_1sequence.html + a249ff0e3a93903fe230f2155f2d8354f + + + + + libgno::GenoPro::Shapes + classlibgno_1_1GenoPro_1_1Shapes.html + libgno::GenoPro::Shapes::sequence + libgno::GenoPro::Shapes::Shape + + AutoPtr< Shape > + Shape_ptr + classlibgno_1_1GenoPro_1_1Shapes.html + af3f13cb8bed32901dbb741a64013c608 + + + + Shape * + Shape_p + classlibgno_1_1GenoPro_1_1Shapes.html + ac22f9516b44c76b2df5c841c4718a788 + + + + + Shapes + classlibgno_1_1GenoPro_1_1Shapes.html + ae696af3ceeb164d128d44e0d031b9881 + (ElementCreateArgs args) + + + List< Shape_ptr > + elements_Shape + classlibgno_1_1GenoPro_1_1Shapes.html + a09c0b63588f5108f543a9ced732d537c + () + + + Shape_p + element_Shape_at + classlibgno_1_1GenoPro_1_1Shapes.html + a906bfe1036ee1a94a60724e1cc00afa2 + (unsigned int idx) + + + Shape_p + add_node_Shape + classlibgno_1_1GenoPro_1_1Shapes.html + a4af61df593d1a5be96f83433e5e772bf + () + + + List< Shape_ptr > + set_count_Shape + classlibgno_1_1GenoPro_1_1Shapes.html + a96001dc2b2181a700f5ca79adf877c11 + (unsigned int size) + + + sequence * + get_sequence + classlibgno_1_1GenoPro_1_1Shapes.html + ae0afa9c1ca3a4e3a7326dbfa317ca270 + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1Shapes.html + ad57ec30f335c5a5950920c269c5cba3b + () + + + Shape_ptr + create_Shape + classlibgno_1_1GenoPro_1_1Shapes.html + a297fe5fbc773ea2e8a52b68cda521e77 + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1Shapes.html + a99eeec8fbcedd60244a39a828f067486 + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1Shapes.html + aab114ba23d961a5527d6ec52d84ae27e + + + + AutoPtr< sequence > + _sequence + classlibgno_1_1GenoPro_1_1Shapes.html + acc06882bca040009f9ccae0371565764 + + + + List< Shape_ptr > + _list_Shape + classlibgno_1_1GenoPro_1_1Shapes.html + addec41101c91576c12c15b41472a3463 + + + + + libgno::GenoPro::Shapes::sequence + structlibgno_1_1GenoPro_1_1Shapes_1_1sequence.html + + + sequence + structlibgno_1_1GenoPro_1_1Shapes_1_1sequence.html + af21f00ac86ae4d33a255549a3ebb226c + (Shapes *that) + + + List< Shape_ptr > + elements_Shape + structlibgno_1_1GenoPro_1_1Shapes_1_1sequence.html + a13d2086d01b945818636572f8d61155c + () + + + Shape_p + element_Shape_at + structlibgno_1_1GenoPro_1_1Shapes_1_1sequence.html + ae1d9cc564faad93c80fed26dee774226 + (unsigned int idx) + + + Shape_p + add_node_Shape + structlibgno_1_1GenoPro_1_1Shapes_1_1sequence.html + af476820f90a16352da5885656e2a69f5 + () + + + List< Shape_ptr > + set_count_Shape + structlibgno_1_1GenoPro_1_1Shapes_1_1sequence.html + a0d789fdafdaa8db64731bcca8664e8e4 + (unsigned int size) + + + XsdFsmBase * + clone + structlibgno_1_1GenoPro_1_1Shapes_1_1sequence.html + ae666877704ce7e7508e9f5949cf20db5 + () const + + + Shapes * + _that + structlibgno_1_1GenoPro_1_1Shapes_1_1sequence.html + a29bbea4f2fde58a71aafeb14f7219ff9 + + + + + libgno::GenoPro::Shapes::Shape + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape.html + libgno::GenoPro::Shapes::Shape::Display + libgno::GenoPro::Shapes::Shape::Position + libgno::GenoPro::Shapes::Shape::sequence + + AutoPtr< Position > + Position_ptr + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape.html + a300e11838f424d228e0ef0013272d02c + + + + Position * + Position_p + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape.html + a908f340e74887080fb0aecdf1f51a233 + + + + AutoPtr< Display > + Display_ptr + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape.html + a365ada9c0916205cd706d7026e140f6d + + + + Display * + Display_p + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape.html + ac49a6d32092a6c973c78973b99db3ed2 + + + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_string > > + Comment_ptr + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape.html + a45b119b2167c21857f791f26c978ca1a + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_string > * + Comment_p + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape.html + a8eccda5a2ab79bcb0ac04f05d67ca169 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_string > + Comment + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape.html + a4134fbe2a99d37677711e968edd45669 + + + + + Shape + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape.html + a310c7de8d4391d08af722f294802c523 + (ElementCreateArgs args) + + + Position_p + element_Position + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape.html + a0d7185d84a5fe849427b4a77065c6e13 + () + + + void + mark_present_Position + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape.html + af7d620f65c52a58c79772837b7fe80c3 + () + + + Display_p + element_Display + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape.html + a36948821d6d5c02b90fbcc97030fb283 + () + + + void + mark_present_Display + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape.html + a6a1de5f880be7788be84d50727567514 + () + + + Comment_p + element_Comment + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape.html + aac03e808fa084dedf8ebcbe858101d6b + () + + + void + set_Comment + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape.html + a0192de88d0927e543aff1bb66da4592d + (DOMString val) + + + DOMString + get_Comment_string + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape.html + ad596e68ce72f007a85614681b7521c9d + () + + + void + mark_present_Comment + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape.html + a86650a58877db4da8fcf0c63900d7a66 + () + + + sequence * + get_sequence + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape.html + a2aaa57ce360fec3a8589b7f10620ed9e + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape.html + aaf57719b72f7d74c17d3189c9171b1a2 + () + + + Position_ptr + create_Position + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape.html + a8743be3ed3619327d73d03ac254743be + (FsmCbOptions &options) + + + Display_ptr + create_Display + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape.html + a7c209c59ee2cf5a5ef6c8d0efc5f97bf + (FsmCbOptions &options) + + + Comment_ptr + create_Comment + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape.html + a0b5b58cab6f896ffb375cff5e3a0bd38 + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape.html + a7fd4e2450d42bff919559417539f41cf + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape.html + a3c1d0831f398037e5d6176d1da085df1 + + + + AutoPtr< sequence > + _sequence + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape.html + aaba61c25fb77851781def88ececd78de + + + + Position_ptr + _Position + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape.html + a4f873b80522e5e2630bdb9337b7796d8 + + + + Display_ptr + _Display + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape.html + a87d6217fc213af15b85f3e4c57aa3400 + + + + Comment_ptr + _Comment + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape.html + ad2519d07679ab1e6f404cabf3608e627 + + + + + libgno::GenoPro::Shapes::Shape::Display + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Display.html + libgno::GenoPro::Shapes::Shape::Display::Color + libgno::GenoPro::Shapes::Shape::Display::sequence + + AutoPtr< Color > + Color_ptr + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Display.html + a4b4f16a37e0b4ff432b16662eb8c37a8 + + + + Color * + Color_p + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Display.html + a4562ceed4025b20beaee12c53787a630 + + + + + Display + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Display.html + a2388bec18fd5994af5a539de900f1f6d + (ElementCreateArgs args) + + + Color_p + element_Color + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Display.html + a1cd1dc6f9b7a80abfff42354e2dfb93d + () + + + void + mark_present_Color + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Display.html + afc112b455cbce0b1ba4e9cf750d0173c + () + + + sequence * + get_sequence + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Display.html + a3978b8464fff5621cdf9b22f3bf7e5e0 + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Display.html + a2c5bb703336de21b634de5572079a4c8 + () + + + Color_ptr + create_Color + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Display.html + a05509984d3238ef6b9493c76f401360a + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Display.html + a20ef429fc4487f0c6aecb5c7e96167a2 + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Display.html + a2c08299ea43b806b235edaebfb88bfd7 + + + + AutoPtr< sequence > + _sequence + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Display.html + a42b6a2a83dcbca19892e26e0363aff0d + + + + Color_ptr + _Color + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Display.html + a155c9d2fb71ad65bc8ad99db0481f697 + + + + + libgno::GenoPro::Shapes::Shape::Display::Color + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Display_1_1Color.html + + AutoPtr< XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > > + attr_Line_ptr + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Display_1_1Color.html + a8c1ab26291e838050890cd676939065b + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > * + attr_Line_p + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Display_1_1Color.html + ac22b8a9d16e6efeb5ddca1acd6345a83 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > + attr_Line + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Display_1_1Color.html + a4f790a2a3e6da04554f6d916bb948ee9 + + + + AutoPtr< XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > > + attr_Fill_ptr + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Display_1_1Color.html + a2a5ff0d8d592b2f274d030e4e873b5fb + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > * + attr_Fill_p + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Display_1_1Color.html + a3634a61abdecb70f3803d561dda01855 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > + attr_Fill + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Display_1_1Color.html + afa93283bf0bbfc620075bfd33d59f4bd + + + + + Color + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Display_1_1Color.html + af848fe515710624328c5e5f4208ba377 + (ElementCreateArgs args) + + + attr_Line_p + attribute_attr_Line + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Display_1_1Color.html + a67b7c41564e360dff1a1080f539ba794 + () + + + void + set_attr_Line + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Display_1_1Color.html + a82f9062b73214c41f2100b5746a2369e + (DOMString val) + + + DOMString + get_attr_Line_string + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Display_1_1Color.html + aef0bb10feb4ddfe72afee611f0e08ccf + () + + + attr_Fill_p + attribute_attr_Fill + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Display_1_1Color.html + ad1b0776a41ba72de64d7537958d79159 + () + + + void + set_attr_Fill + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Display_1_1Color.html + a7c98140b19b3710a31bfb06555872b7a + (DOMString val) + + + DOMString + get_attr_Fill_string + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Display_1_1Color.html + a67b774511e92cc7cd1c600778a9cb5b8 + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Display_1_1Color.html + a8d4cdb1368415b02e782f086c3685397 + () + + + attr_Line_ptr + create_attr_Line + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Display_1_1Color.html + aab0c7046357d441a33143e530ed8f86c + (FsmCbOptions &options) + + + attr_Fill_ptr + create_attr_Fill + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Display_1_1Color.html + ad8e004aef5bdc64fbca53c6e4dd70334 + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Display_1_1Color.html + a48a4e8f94b117c85c0c2965ac262b934 + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Display_1_1Color.html + a647f6274a13d70af1b7198d81df9954a + + + + attr_Line_ptr + _attr_Line + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Display_1_1Color.html + a3817152b47c3c941a280c4d915412f5d + + + + attr_Fill_ptr + _attr_Fill + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Display_1_1Color.html + acfe073b378e0962d4a98beefa67480e5 + + + + + libgno::GenoPro::Shapes::Shape::Display::sequence + structlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Display_1_1sequence.html + + + sequence + structlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Display_1_1sequence.html + a4d25557c18d8a3367237ad12a86654ec + (Display *that) + + + Color_p + element_Color + structlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Display_1_1sequence.html + a5ad6f034c2f30557d37e592cb2c76ee4 + () + + + void + mark_present_Color + structlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Display_1_1sequence.html + a0c7f85df3fcdaa932b1d836ab265a56e + () + + + XsdFsmBase * + clone + structlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Display_1_1sequence.html + af163a99148cd0858fe49d2b8eae2ef72 + () const + + + Display * + _that + structlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Display_1_1sequence.html + afea1d7ef1ac3fa7ad086cda24a60fa77 + + + + + libgno::GenoPro::Shapes::Shape::Position + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Position.html + libgno::GenoPro::Shapes::Shape::Position::sequence + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > > + Points_ptr + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Position.html + a3f8f684a1cc85962f72792a90f3f8f24 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > * + Points_p + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Position.html + ace4ee4bec6a9beb3adfd10786617081e + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > + Points + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Position.html + af718c8b634243dab2b632997ee994dbd + + + + AutoPtr< XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > > + attr_Size_ptr + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Position.html + a61d8085883234d808bfaf401340534a3 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > * + attr_Size_p + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Position.html + a2518752b41e2aea9eb44acde1374c6f0 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > + attr_Size + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Position.html + a8fb4b79fe1b70e34ddf5785fc7d5d406 + + + + AutoPtr< XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > > + attr_GenoMap_ptr + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Position.html + a6be81bfb249ca64a5b030ea48e2c8ad4 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > * + attr_GenoMap_p + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Position.html + ac372d6f6784f16ddab357717c160421a + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > + attr_GenoMap + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Position.html + a74a73f341f2a47750f46f8e91829c954 + + + + + Position + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Position.html + acde70ee8408c572b7f554868d02b83a6 + (ElementCreateArgs args) + + + Points_p + element_Points + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Position.html + a53458e3030b841a81e7440300ed780e4 + () + + + void + set_Points + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Position.html + afb0e49a6fcdcd3d70fa341cc9fcbc56c + (DOMString val) + + + DOMString + get_Points_string + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Position.html + a3866b0c20dbcfea595cafb1e6bf304de + () + + + void + mark_present_Points + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Position.html + a120f86f75b0f6ff9bbcb621fb24e4da5 + () + + + attr_Size_p + attribute_attr_Size + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Position.html + ae6fd5d2b26962f49fc9695f6cf2ababf + () + + + void + set_attr_Size + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Position.html + aaacbf092be9ec84c7277d2ebc722285a + (DOMString val) + + + DOMString + get_attr_Size_string + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Position.html + a17bad3c803c34b1f5a6a303a1d959c51 + () + + + attr_GenoMap_p + attribute_attr_GenoMap + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Position.html + a630a7bbbef7ca7e3a7484a84a3e4bce2 + () + + + void + set_attr_GenoMap + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Position.html + ab7ecfd54ecae2ea7e32b24ac8b2f1f62 + (DOMString val) + + + DOMString + get_attr_GenoMap_string + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Position.html + aa80b997afb05ada37720052800e7f113 + () + + + sequence * + get_sequence + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Position.html + a06c4288bcf646610f23917f06d602276 + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Position.html + a3c7ac778645082ea81003f7088c76604 + () + + + Points_ptr + create_Points + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Position.html + a263a4abaeb032486d1c496dcf641e7f2 + (FsmCbOptions &options) + + + attr_Size_ptr + create_attr_Size + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Position.html + a9a679a9edf054b3e366731e5ba1bfef4 + (FsmCbOptions &options) + + + attr_GenoMap_ptr + create_attr_GenoMap + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Position.html + af9f98e5f8bf2e8a2eb4621f659b127c4 + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Position.html + ad4c4a3412f39fe1fb4f53b76fdad66a8 + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Position.html + a83d2eeed34a0c3ee747331e509160250 + + + + AutoPtr< sequence > + _sequence + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Position.html + a3d8eb4602d57a65fc0b8854b248132b0 + + + + Points_ptr + _Points + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Position.html + a06035d72b9e51c9e6a009bed64da091a + + + + attr_Size_ptr + _attr_Size + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Position.html + a258764cc7ae512b87bae6e29290c31fe + + + + attr_GenoMap_ptr + _attr_GenoMap + classlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Position.html + a7e2e203f6aea050f6a599d49b3c649a9 + + + + + libgno::GenoPro::Shapes::Shape::Position::sequence + structlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Position_1_1sequence.html + + + sequence + structlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Position_1_1sequence.html + a0b3a57f8be3bd7d421a2c695ee5bace6 + (Position *that) + + + Points_p + element_Points + structlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Position_1_1sequence.html + a6f8e4a74916d17dd4ff3a7be0fcd9055 + () + + + void + set_Points + structlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Position_1_1sequence.html + a51f5d64804737a699cce30834ab87443 + (DOMString val) + + + DOMString + get_Points_string + structlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Position_1_1sequence.html + a53e047f367c6c32b3ad6b9963ac32d24 + () + + + void + mark_present_Points + structlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Position_1_1sequence.html + a5391ed52e6bd2bd9f3d1e6d48364c29d + () + + + XsdFsmBase * + clone + structlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Position_1_1sequence.html + a3c87df263740da1ea290877869eeb15a + () const + + + Position * + _that + structlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1Position_1_1sequence.html + a5f606e9412797fc2cae894d6679f741a + + + + + libgno::GenoPro::Shapes::Shape::sequence + structlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1sequence.html + + + sequence + structlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1sequence.html + aa26ba10c32134dbe3358ef7855001612 + (Shape *that) + + + Position_p + element_Position + structlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1sequence.html + ad5986e7afeacc352f9211977c6041da0 + () + + + void + mark_present_Position + structlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1sequence.html + ad061356f74a7f00bfcc7842178311f45 + () + + + Display_p + element_Display + structlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1sequence.html + ae3aa809ae29f27c13f866186cd714f3d + () + + + void + mark_present_Display + structlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1sequence.html + a2e39ec8587dcd95689c33e4a4915bb20 + () + + + Comment_p + element_Comment + structlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1sequence.html + ad2eb2fd9f33407351ccd61e0382cbc37 + () + + + void + set_Comment + structlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1sequence.html + a664e961b0843b360791ec9bb6f2d773b + (DOMString val) + + + DOMString + get_Comment_string + structlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1sequence.html + a2102306ff97efe52f3c96726983aa4b0 + () + + + void + mark_present_Comment + structlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1sequence.html + aedf5192a1fc955c9ffc25fe2df1b8fab + () + + + XsdFsmBase * + clone + structlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1sequence.html + ad9570d7be7030d345b6c716d384ec8f8 + () const + + + Shape * + _that + structlibgno_1_1GenoPro_1_1Shapes_1_1Shape_1_1sequence.html + a77f7ac6d470982c0caea133485891ee5 + + + + + libgno::GenoPro::SocialRelationships + classlibgno_1_1GenoPro_1_1SocialRelationships.html + libgno::GenoPro::SocialRelationships::sequence + libgno::GenoPro::SocialRelationships::SocialRelationship + + AutoPtr< SocialRelationship > + SocialRelationship_ptr + classlibgno_1_1GenoPro_1_1SocialRelationships.html + a64aec278a9fc022d0fbc733081786ceb + + + + SocialRelationship * + SocialRelationship_p + classlibgno_1_1GenoPro_1_1SocialRelationships.html + a5ce89825705b8cc47fec5058e664bb47 + + + + + SocialRelationships + classlibgno_1_1GenoPro_1_1SocialRelationships.html + afa95eb91bc06bd6c5e9aa1cd2fc6985e + (ElementCreateArgs args) + + + List< SocialRelationship_ptr > + elements_SocialRelationship + classlibgno_1_1GenoPro_1_1SocialRelationships.html + ad529701786e7d625eeeaf6bb098347c9 + () + + + SocialRelationship_p + element_SocialRelationship_at + classlibgno_1_1GenoPro_1_1SocialRelationships.html + a64478bffcd630dc16ec790aa8a789b09 + (unsigned int idx) + + + SocialRelationship_p + add_node_SocialRelationship + classlibgno_1_1GenoPro_1_1SocialRelationships.html + af2a6e1b1c3fcbbf2a9343aee01bf0852 + () + + + List< SocialRelationship_ptr > + set_count_SocialRelationship + classlibgno_1_1GenoPro_1_1SocialRelationships.html + aa2ce6d8b3fcb259be4399415a3fbdaae + (unsigned int size) + + + sequence * + get_sequence + classlibgno_1_1GenoPro_1_1SocialRelationships.html + a08a0f94a8e8dae89774a7fa42e1b8fe2 + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1SocialRelationships.html + ad3016ab0115c1e505c54bbd46051258e + () + + + SocialRelationship_ptr + create_SocialRelationship + classlibgno_1_1GenoPro_1_1SocialRelationships.html + a9e2551e070dbcc942324aa8b6b4375ed + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1SocialRelationships.html + adf1333c9e4344f8b12a131df5f197b03 + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1SocialRelationships.html + a3290b2e245ae8b32e352e7e57f1fd9bf + + + + AutoPtr< sequence > + _sequence + classlibgno_1_1GenoPro_1_1SocialRelationships.html + aa31160155a0b76fee5f7e752bcaedbf0 + + + + List< SocialRelationship_ptr > + _list_SocialRelationship + classlibgno_1_1GenoPro_1_1SocialRelationships.html + a6a81dac9336e2162572e17db06e87d08 + + + + + libgno::GenoPro::SocialRelationships::sequence + structlibgno_1_1GenoPro_1_1SocialRelationships_1_1sequence.html + + + sequence + structlibgno_1_1GenoPro_1_1SocialRelationships_1_1sequence.html + a06a917c8866aaeba3a9f48ba9a2659d9 + (SocialRelationships *that) + + + List< SocialRelationship_ptr > + elements_SocialRelationship + structlibgno_1_1GenoPro_1_1SocialRelationships_1_1sequence.html + ab50b13d43feff5f326fae8b9935edf1c + () + + + SocialRelationship_p + element_SocialRelationship_at + structlibgno_1_1GenoPro_1_1SocialRelationships_1_1sequence.html + ade97bc40ccff58ff942d9c6e7ca02e85 + (unsigned int idx) + + + SocialRelationship_p + add_node_SocialRelationship + structlibgno_1_1GenoPro_1_1SocialRelationships_1_1sequence.html + a0640db42d08f6de0994de86f474e9446 + () + + + List< SocialRelationship_ptr > + set_count_SocialRelationship + structlibgno_1_1GenoPro_1_1SocialRelationships_1_1sequence.html + a4bc6c2bc22f47dbbc20d6333937a5904 + (unsigned int size) + + + XsdFsmBase * + clone + structlibgno_1_1GenoPro_1_1SocialRelationships_1_1sequence.html + ac6a7c3ba653b4e41ccc6062bda9c4532 + () const + + + SocialRelationships * + _that + structlibgno_1_1GenoPro_1_1SocialRelationships_1_1sequence.html + a5360f333ad6b8564550a6406b1993289 + + + + + libgno::GenoPro::SocialRelationships::SocialRelationship + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship.html + libgno::GenoPro::SocialRelationships::SocialRelationship::Display + libgno::GenoPro::SocialRelationships::SocialRelationship::sequence + + AutoPtr< Display > + Display_ptr + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship.html + aaa5e435e18cdaa9a6472f37424a1540e + + + + Display * + Display_p + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship.html + af524d9131aa6d7a2473c4e47bbbe7645 + + + + AutoPtr< XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > > + attr_Connection_ptr + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship.html + a87481fbb15fa9a7d40bbbc697c4a4e6d + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > * + attr_Connection_p + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship.html + a4707ff92c1748bac9fd09881db6c2b6d + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > + attr_Connection + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship.html + a5379d9fd91bd388c3dd9f6a1904ec3dc + + + + AutoPtr< XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > > + attr_Entity1_ptr + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship.html + a1e52c8ee23890fd06a2f2d2cfa508a6f + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > * + attr_Entity1_p + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship.html + a2d347370ed9c9b165b17da0887623368 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > + attr_Entity1 + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship.html + a438c7f241b2b6e94811190e12964fe17 + + + + AutoPtr< XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > > + attr_Entity2_ptr + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship.html + a266988b9d69fabed522b98ecbccac64e + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > * + attr_Entity2_p + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship.html + afce659f0d677a58ef27520404b87d25d + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > + attr_Entity2 + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship.html + a7a315122cf3e81b05397028cbdd6d0c8 + + + + + SocialRelationship + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship.html + ac9e07e31763a1378956d354f673cfdfd + (ElementCreateArgs args) + + + Display_p + element_Display + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship.html + ad03ecbf9a1f1e69cc1d97efa4be37ce2 + () + + + void + mark_present_Display + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship.html + a3d9ada6c3c0bb34882fec97795d7dfb6 + () + + + attr_Connection_p + attribute_attr_Connection + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship.html + aa8a14fe30fd973e5cbc7eda4639f301f + () + + + void + set_attr_Connection + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship.html + a354ddf755337baa6a8a99fe50021c953 + (DOMString val) + + + DOMString + get_attr_Connection_string + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship.html + a4aafd5a2ad7d7c9ae5b0e5eb9ebc1e6d + () + + + attr_Entity1_p + attribute_attr_Entity1 + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship.html + ada74e77d0089942e69717919fefc04a0 + () + + + void + set_attr_Entity1 + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship.html + a3df8fb76a541051f8c0e09733a508e9e + (DOMString val) + + + DOMString + get_attr_Entity1_string + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship.html + a1ba1213f02784ef1c170e316a97b033b + () + + + attr_Entity2_p + attribute_attr_Entity2 + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship.html + a5f142fd6cbe0607357f974f8f079b8e8 + () + + + void + set_attr_Entity2 + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship.html + a84e75bdd2b327f6735c1e5abb361881c + (DOMString val) + + + DOMString + get_attr_Entity2_string + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship.html + ac68c8935c148b7848cfc8170cbd8d813 + () + + + sequence * + get_sequence + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship.html + ab73844946177e079e969dbb6943cf72a + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship.html + accdaca77ffbc5550a8d6a2812f085d97 + () + + + Display_ptr + create_Display + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship.html + ae5ef620b343fd58f06a8b683e6cd2e40 + (FsmCbOptions &options) + + + attr_Connection_ptr + create_attr_Connection + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship.html + a80d0c63a5ee4c7c088ae263aa331ba3d + (FsmCbOptions &options) + + + attr_Entity1_ptr + create_attr_Entity1 + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship.html + ad51a273d4c5eb6fac15e73d095c5e1d5 + (FsmCbOptions &options) + + + attr_Entity2_ptr + create_attr_Entity2 + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship.html + a056717c607468b9020885c9b61d0697d + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship.html + a79d714f533e932e4f40172414ffa6c70 + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship.html + a14f457fea5fc42f80fd1ce073d7a299f + + + + AutoPtr< sequence > + _sequence + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship.html + a04958bf8b4bc86b358c0e636916ce711 + + + + Display_ptr + _Display + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship.html + adab4aa8493510817394b30a96f1fe261 + + + + attr_Connection_ptr + _attr_Connection + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship.html + acafe6bf4e07746d4ef7795010e42ce6f + + + + attr_Entity1_ptr + _attr_Entity1 + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship.html + a86533156bb23a780e8fa43c60fe84fa3 + + + + attr_Entity2_ptr + _attr_Entity2 + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship.html + a8b7041cf1766c0d82625f194b0b79a7a + + + + + libgno::GenoPro::SocialRelationships::SocialRelationship::Display + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship_1_1Display.html + libgno::GenoPro::SocialRelationships::SocialRelationship::Display::Arrow + libgno::GenoPro::SocialRelationships::SocialRelationship::Display::Color + libgno::GenoPro::SocialRelationships::SocialRelationship::Display::sequence + + AutoPtr< Color > + Color_ptr + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship_1_1Display.html + a78b90eca55fe766a44b22487e3e3edce + + + + Color * + Color_p + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship_1_1Display.html + a7d3fb8bd653921f625d8a67eeed8f5a5 + + + + AutoPtr< Arrow > + Arrow_ptr + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship_1_1Display.html + ac78f0fa99fb8666409f56583be2ab0f0 + + + + Arrow * + Arrow_p + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship_1_1Display.html + a9e73b29c28726251fc8b34782cb03596 + + + + + Display + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship_1_1Display.html + ac3108b3883c3e3c8bbaf17684f1dcce6 + (ElementCreateArgs args) + + + Color_p + element_Color + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship_1_1Display.html + a342510fbdb4bee34af6b77b58b206d33 + () + + + void + mark_present_Color + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship_1_1Display.html + a9d1cb58972902c02a6602b18abf759b7 + () + + + Arrow_p + element_Arrow + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship_1_1Display.html + ad3ca93d9e7b5564300e2768bb56838f2 + () + + + void + mark_present_Arrow + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship_1_1Display.html + adf07c38844b67970f537d18d385b0e24 + () + + + sequence * + get_sequence + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship_1_1Display.html + a8f7da78d2c8152b74b554a737cdc8bb9 + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship_1_1Display.html + ab6f8bcc9669e7d33802a0008d7e3c478 + () + + + Color_ptr + create_Color + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship_1_1Display.html + a3800ce4e73ec6757b8852fb93e1c692f + (FsmCbOptions &options) + + + Arrow_ptr + create_Arrow + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship_1_1Display.html + a744a0c9e75efa8c7fbf619be2b0220dd + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship_1_1Display.html + a21fa15d764fc0a0f2ba81a82670f02ec + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship_1_1Display.html + ac148b4d035895610efa9f448a8b38414 + + + + AutoPtr< sequence > + _sequence + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship_1_1Display.html + acf773ef905761b7284d39ee1ee3e48d8 + + + + Color_ptr + _Color + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship_1_1Display.html + a804d0f9f94348d05cb92382d67ceec64 + + + + Arrow_ptr + _Arrow + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship_1_1Display.html + a5acbf64b81077f4a45c5bf9c1cf995e2 + + + + + libgno::GenoPro::SocialRelationships::SocialRelationship::Display::Arrow + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship_1_1Display_1_1Arrow.html + + AutoPtr< XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > > + attr_End_ptr + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship_1_1Display_1_1Arrow.html + ad56ecc6ece32ecb81a89706f09356e2a + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > * + attr_End_p + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship_1_1Display_1_1Arrow.html + ad3668c4d11b23a422d43a33b4c8add04 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > + attr_End + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship_1_1Display_1_1Arrow.html + ab5ae5f1845ab741d354edc3c8b7c157c + + + + + Arrow + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship_1_1Display_1_1Arrow.html + a89d181257f2dacebaa51412fe4fb1403 + (ElementCreateArgs args) + + + attr_End_p + attribute_attr_End + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship_1_1Display_1_1Arrow.html + af72766e16dc42b9309d34e03e492a302 + () + + + void + set_attr_End + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship_1_1Display_1_1Arrow.html + a8d94e8c9065627be376b5fa23ee1f706 + (DOMString val) + + + DOMString + get_attr_End_string + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship_1_1Display_1_1Arrow.html + afa9342e04f44214fc7fd8cb378226f18 + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship_1_1Display_1_1Arrow.html + a7b099cdb283af9c6c333910bcc9f65d4 + () + + + attr_End_ptr + create_attr_End + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship_1_1Display_1_1Arrow.html + acf6a8f2795704a22b67dc41b65fdd21e + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship_1_1Display_1_1Arrow.html + aabbf2d9f591df545a0c5daaf233cbba8 + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship_1_1Display_1_1Arrow.html + aac02afc4256b02d2431327809321968f + + + + attr_End_ptr + _attr_End + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship_1_1Display_1_1Arrow.html + adcd29202f54dbbbf91bed3bcb2bf1258 + + + + + libgno::GenoPro::SocialRelationships::SocialRelationship::Display::Color + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship_1_1Display_1_1Color.html + + AutoPtr< XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > > + attr_Line_ptr + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship_1_1Display_1_1Color.html + a81fc8a6e2b9467de9e3fdf698a80a6bb + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > * + attr_Line_p + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship_1_1Display_1_1Color.html + aa3b979eb1ab3961086bfad1919197768 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > + attr_Line + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship_1_1Display_1_1Color.html + ae66bbab64dc983edf2c3e06905a19eac + + + + + Color + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship_1_1Display_1_1Color.html + a76316eabac6be7404b29c2407c00503d + (ElementCreateArgs args) + + + attr_Line_p + attribute_attr_Line + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship_1_1Display_1_1Color.html + aded3762ee9a698c1409187d60827a5de + () + + + void + set_attr_Line + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship_1_1Display_1_1Color.html + ac5a981c60d788e2f03b296f81086c818 + (DOMString val) + + + DOMString + get_attr_Line_string + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship_1_1Display_1_1Color.html + a79b671c05106206512de4f9bd4439fef + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship_1_1Display_1_1Color.html + a95d4760b2d339f2345b30585fe4dba4d + () + + + attr_Line_ptr + create_attr_Line + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship_1_1Display_1_1Color.html + aaef1b12739d8141f7a5d38676cf594e3 + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship_1_1Display_1_1Color.html + abdf3deb91faebb29298355841d7e6401 + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship_1_1Display_1_1Color.html + a48b9133b1922bc5b40cdf30b0f5eb755 + + + + attr_Line_ptr + _attr_Line + classlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship_1_1Display_1_1Color.html + a40be34d7ed2d5a2525a91c364e088e45 + + + + + libgno::GenoPro::SocialRelationships::SocialRelationship::Display::sequence + structlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship_1_1Display_1_1sequence.html + + + sequence + structlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship_1_1Display_1_1sequence.html + a7f7cb247640c96eee8f3bb6cb93a92f2 + (Display *that) + + + Color_p + element_Color + structlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship_1_1Display_1_1sequence.html + ac521813862dd000780614da0c9b899da + () + + + void + mark_present_Color + structlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship_1_1Display_1_1sequence.html + a84991be47ae1e0e62614bc2d3b87e3a8 + () + + + Arrow_p + element_Arrow + structlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship_1_1Display_1_1sequence.html + a709560c807c6e10ae67839f932459fb4 + () + + + void + mark_present_Arrow + structlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship_1_1Display_1_1sequence.html + a648148cb66b92e31ec9e7bca5d362832 + () + + + XsdFsmBase * + clone + structlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship_1_1Display_1_1sequence.html + a16f8c7ef057e2e9f0c62ae4c5bf047c6 + () const + + + Display * + _that + structlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship_1_1Display_1_1sequence.html + ad482129899c1c3c90964b1e860db6eb2 + + + + + libgno::GenoPro::SocialRelationships::SocialRelationship::sequence + structlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship_1_1sequence.html + + + sequence + structlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship_1_1sequence.html + af90810568e38c7904098ad52777ab43b + (SocialRelationship *that) + + + Display_p + element_Display + structlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship_1_1sequence.html + af8c8ca5a6f5fb7584051b167ee58c97a + () + + + void + mark_present_Display + structlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship_1_1sequence.html + a9592f26d86d56af420b3a89f89969939 + () + + + XsdFsmBase * + clone + structlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship_1_1sequence.html + a53f3fb306daba3d040a7a2a5f3537e98 + () const + + + SocialRelationship * + _that + structlibgno_1_1GenoPro_1_1SocialRelationships_1_1SocialRelationship_1_1sequence.html + a34528812e7f60aed0d77b898773878dd + + + + + libgno::GenoPro::Software + classlibgno_1_1GenoPro_1_1Software.html + libgno::GenoPro::Software::sequence + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_string > > + Name_ptr + classlibgno_1_1GenoPro_1_1Software.html + ae28378faeb41adbb86821ea1165a93e9 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_string > * + Name_p + classlibgno_1_1GenoPro_1_1Software.html + ae70fdc2f0a15f6e1d7ded1404204fd47 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_string > + Name + classlibgno_1_1GenoPro_1_1Software.html + a57e0d32779777390d4fd8c94a89feedf + + + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > > + Version_ptr + classlibgno_1_1GenoPro_1_1Software.html + ad0fb181e58b3832afc948bf50fe8c653 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > * + Version_p + classlibgno_1_1GenoPro_1_1Software.html + aae44c7d73f6de697839183612e39e42f + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > + Version + classlibgno_1_1GenoPro_1_1Software.html + a1046aabd366b201e30e79cd534e611b8 + + + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_anyURI > > + Address_ptr + classlibgno_1_1GenoPro_1_1Software.html + a8643cb44a5bd748cc534b0700c5542fa + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_anyURI > * + Address_p + classlibgno_1_1GenoPro_1_1Software.html + a69219b8a8972616ef702230577fcd46c + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_anyURI > + Address + classlibgno_1_1GenoPro_1_1Software.html + a4261ef9c76c7b7fdedd2900917e6f478 + + + + + Software + classlibgno_1_1GenoPro_1_1Software.html + a30a5de1f6a56b3486ab319913088e3d1 + (ElementCreateArgs args) + + + Name_p + element_Name + classlibgno_1_1GenoPro_1_1Software.html + a5935ebcc6e444512b5d4c4fe0c14a41b + () + + + void + set_Name + classlibgno_1_1GenoPro_1_1Software.html + a8ca78261e3c60b4f41df834bfa4dfa61 + (DOMString val) + + + DOMString + get_Name_string + classlibgno_1_1GenoPro_1_1Software.html + aa861d0a50525d492728e736ac1afafd2 + () + + + void + mark_present_Name + classlibgno_1_1GenoPro_1_1Software.html + a3178369567945f304c3610af34ea0047 + () + + + Version_p + element_Version + classlibgno_1_1GenoPro_1_1Software.html + a1c54c9cb1345474efe1bf2630b388e67 + () + + + void + set_Version + classlibgno_1_1GenoPro_1_1Software.html + a7e624e579c78f3217bc4ea83ac51a8ec + (DOMString val) + + + DOMString + get_Version_string + classlibgno_1_1GenoPro_1_1Software.html + acc61680bab5ec5f3e2427dca89dae9a4 + () + + + void + mark_present_Version + classlibgno_1_1GenoPro_1_1Software.html + ae7a847b98d8b538b6fce8e8442f56902 + () + + + Address_p + element_Address + classlibgno_1_1GenoPro_1_1Software.html + a86ffbd0d191665a0548510e5f546388c + () + + + void + set_Address + classlibgno_1_1GenoPro_1_1Software.html + afd566672e771323e49c467e12819917e + (DOMString val) + + + DOMString + get_Address_string + classlibgno_1_1GenoPro_1_1Software.html + ac5fef73ef97b5803be58824e97821a21 + () + + + void + mark_present_Address + classlibgno_1_1GenoPro_1_1Software.html + a48e53fd73c2dd27485aabd243ac44ca2 + () + + + sequence * + get_sequence + classlibgno_1_1GenoPro_1_1Software.html + af0026bddf2065bb00658cc8547dc326a + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1Software.html + ab2e3d5937704829bf143ef4d94fc72be + () + + + Name_ptr + create_Name + classlibgno_1_1GenoPro_1_1Software.html + a3d6d0fb803039bbed2760ae230b547f7 + (FsmCbOptions &options) + + + Version_ptr + create_Version + classlibgno_1_1GenoPro_1_1Software.html + af01d857b7478d71b09aac9eb4029536d + (FsmCbOptions &options) + + + Address_ptr + create_Address + classlibgno_1_1GenoPro_1_1Software.html + afec6a26d167bd804ca27284609764e8e + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1Software.html + a85093781a5dc5bda2bcd503ed7d3db7a + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1Software.html + a4bf9f75a9c68a80ac84e1e756cf9389a + + + + AutoPtr< sequence > + _sequence + classlibgno_1_1GenoPro_1_1Software.html + a1b7f666635da3f3caa3c7334f02b75c0 + + + + Name_ptr + _Name + classlibgno_1_1GenoPro_1_1Software.html + aaea293bc3f6b2f843fd431c2a5c59b15 + + + + Version_ptr + _Version + classlibgno_1_1GenoPro_1_1Software.html + a72a77c0fdf53579b645ffd73c1165de3 + + + + Address_ptr + _Address + classlibgno_1_1GenoPro_1_1Software.html + acef4cd31b4691e3b12823324974097cd + + + + + libgno::GenoPro::Software::sequence + structlibgno_1_1GenoPro_1_1Software_1_1sequence.html + + + sequence + structlibgno_1_1GenoPro_1_1Software_1_1sequence.html + a26b450ea7c80212e31060d3516c94239 + (Software *that) + + + Name_p + element_Name + structlibgno_1_1GenoPro_1_1Software_1_1sequence.html + a8699cf2bf87fa86072f7d1fce3f98b0c + () + + + void + set_Name + structlibgno_1_1GenoPro_1_1Software_1_1sequence.html + a440f0be91a91bc6576bed6d4a061e67f + (DOMString val) + + + DOMString + get_Name_string + structlibgno_1_1GenoPro_1_1Software_1_1sequence.html + a7c293effee7149cdde5b59962c31cb6d + () + + + void + mark_present_Name + structlibgno_1_1GenoPro_1_1Software_1_1sequence.html + af7f5b6eab253ab9940db8e09c336e648 + () + + + Version_p + element_Version + structlibgno_1_1GenoPro_1_1Software_1_1sequence.html + a8b368843137d2285114d2f7a760a9455 + () + + + void + set_Version + structlibgno_1_1GenoPro_1_1Software_1_1sequence.html + a637afa91f882c0be282fd952a427b17f + (DOMString val) + + + DOMString + get_Version_string + structlibgno_1_1GenoPro_1_1Software_1_1sequence.html + a615768bab1d0b6a3ae9767075deedc0b + () + + + void + mark_present_Version + structlibgno_1_1GenoPro_1_1Software_1_1sequence.html + a2c5a6dfb0e8df32ab812a397e09df4a2 + () + + + Address_p + element_Address + structlibgno_1_1GenoPro_1_1Software_1_1sequence.html + a816ab47835cc7b3fac3d5a2996f6a870 + () + + + void + set_Address + structlibgno_1_1GenoPro_1_1Software_1_1sequence.html + ad4dc186ad0bba4cf1bf0c8659bfc35bd + (DOMString val) + + + DOMString + get_Address_string + structlibgno_1_1GenoPro_1_1Software_1_1sequence.html + a4fb89b3ead803ab1448bc118b9313178 + () + + + void + mark_present_Address + structlibgno_1_1GenoPro_1_1Software_1_1sequence.html + a7d5fbc8e11f4e8d5091329edf638d195 + () + + + XsdFsmBase * + clone + structlibgno_1_1GenoPro_1_1Software_1_1sequence.html + a42e0466229281b1ad5cdbe67925516ed + () const + + + Software * + _that + structlibgno_1_1GenoPro_1_1Software_1_1sequence.html + a27bf85b2fcd9243036a45ffe1406c929 + + + + + libgno::GenoPro::SourcesAndCitations + classlibgno_1_1GenoPro_1_1SourcesAndCitations.html + libgno::GenoPro::SourcesAndCitations::sequence + libgno::GenoPro::SourcesAndCitations::SourceCitation + + AutoPtr< SourceCitation > + SourceCitation_ptr + classlibgno_1_1GenoPro_1_1SourcesAndCitations.html + ac8d5ec5ddbcb53bb7506d47ce86d98a3 + + + + SourceCitation * + SourceCitation_p + classlibgno_1_1GenoPro_1_1SourcesAndCitations.html + af45d2ba8d56d097d5c052d0ea14e74df + + + + + SourcesAndCitations + classlibgno_1_1GenoPro_1_1SourcesAndCitations.html + aa536e275d38ef512a65ed103bad11f04 + (ElementCreateArgs args) + + + List< SourceCitation_ptr > + elements_SourceCitation + classlibgno_1_1GenoPro_1_1SourcesAndCitations.html + a3285ecaa20aa8583c800de58d57e4583 + () + + + SourceCitation_p + element_SourceCitation_at + classlibgno_1_1GenoPro_1_1SourcesAndCitations.html + a4f5528277c6ef8175d6d485bc49ba5c7 + (unsigned int idx) + + + SourceCitation_p + add_node_SourceCitation + classlibgno_1_1GenoPro_1_1SourcesAndCitations.html + a388a1c931b948748ac31f20ca3f04b35 + () + + + List< SourceCitation_ptr > + set_count_SourceCitation + classlibgno_1_1GenoPro_1_1SourcesAndCitations.html + ac56ad082ec125bb1c8632f8c1feeb74d + (unsigned int size) + + + sequence * + get_sequence + classlibgno_1_1GenoPro_1_1SourcesAndCitations.html + a91bd1777efa76ab65d50600c6fa338b6 + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1SourcesAndCitations.html + aa63e3dcb2c6b48b7e7b59b45fe36a68f + () + + + SourceCitation_ptr + create_SourceCitation + classlibgno_1_1GenoPro_1_1SourcesAndCitations.html + a66fa07779379a5d87b2de1a64a4b9eac + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1SourcesAndCitations.html + a34ca271e45b9f51793b02aebcd17d76a + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1SourcesAndCitations.html + a0c04d38b6e071cd7dc2064a76690b414 + + + + AutoPtr< sequence > + _sequence + classlibgno_1_1GenoPro_1_1SourcesAndCitations.html + a34351a0433ae7fb4f37defe8391e8254 + + + + List< SourceCitation_ptr > + _list_SourceCitation + classlibgno_1_1GenoPro_1_1SourcesAndCitations.html + aeee4f3a83d82b1089297d9c303ffd795 + + + + + libgno::GenoPro::SourcesAndCitations::sequence + structlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1sequence.html + + + sequence + structlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1sequence.html + a6b35a7d5143e92c65b3a7b94db99afc4 + (SourcesAndCitations *that) + + + List< SourceCitation_ptr > + elements_SourceCitation + structlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1sequence.html + afc0389147c9f4d848370499d935826df + () + + + SourceCitation_p + element_SourceCitation_at + structlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1sequence.html + a52c7df069256de6c8a25602adf62ddbc + (unsigned int idx) + + + SourceCitation_p + add_node_SourceCitation + structlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1sequence.html + ab7e0bec41a1e3630eaacfe30cfcc1f48 + () + + + List< SourceCitation_ptr > + set_count_SourceCitation + structlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1sequence.html + aab6d1cd7c4c0bd912fbe4465a677e985 + (unsigned int size) + + + XsdFsmBase * + clone + structlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1sequence.html + a81824734f18f938b8b942295fae5ddb9 + () const + + + SourcesAndCitations * + _that + structlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1sequence.html + a835fc291293bb4439709ec66d2f3ebd5 + + + + + libgno::GenoPro::SourcesAndCitations::SourceCitation + classlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation.html + libgno::GenoPro::SourcesAndCitations::SourceCitation::sequence + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_string > > + Title_ptr + classlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation.html + ab4c693bae97c5c099c02d106340f916c + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_string > * + Title_p + classlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation.html + ac24873b1acb1900a353a9ae011ebcb9c + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_string > + Title + classlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation.html + a57db0357b23a9ef2f4c6c5d473c287f5 + + + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_string > > + Subtitle_ptr + classlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation.html + a9905b2d1ba3053d05da5ac61afc1f570 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_string > * + Subtitle_p + classlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation.html + a01c9e55e8fd7c6795a091e19318e69f0 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_string > + Subtitle + classlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation.html + aa85f52609007cff68b5af9d696b648ff + + + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > > + MediaType_ptr + classlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation.html + a9053ad9db4f5ff86f1a4ddb405362aaa + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > * + MediaType_p + classlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation.html + a47d0738e85ae4ee2cd688cfe1ff08a88 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > + MediaType + classlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation.html + a631f2935839c78dc0dd1c10fcb481f89 + + + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > > + ConfidenceLevel_ptr + classlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation.html + ab625619cda6e75d66c37431924ae7169 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > * + ConfidenceLevel_p + classlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation.html + aa71504d9e77ecc3924cb9d6758a73564 + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_normalizedString > + ConfidenceLevel + classlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation.html + a4ea9212236e3e829b652d835346e8f01 + + + + AutoPtr< XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > > + attr_ID_ptr + classlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation.html + aff0ba29b609aeeb0467d391d11559edd + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > * + attr_ID_p + classlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation.html + a6498b843b6145a3ef787f4d1f1c89676 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > + attr_ID + classlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation.html + aa1c00b68874c67ae60804f5185e33c77 + + + + + SourceCitation + classlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation.html + aa0d478a3f54b9b5b0ced2ce2611df21a + (ElementCreateArgs args) + + + Title_p + element_Title + classlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation.html + a2ecc65859efc2c428f486fe639db7533 + () + + + void + set_Title + classlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation.html + a9d2cece33e492cb7d0f2685377622b55 + (DOMString val) + + + DOMString + get_Title_string + classlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation.html + a95552c910ce73e12a6e6600656caa78f + () + + + void + mark_present_Title + classlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation.html + ad06ae38d7b7f73853e37ff826af917f8 + () + + + Subtitle_p + element_Subtitle + classlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation.html + a1aa4ee668d2fe7dfe822a47dccf13ad7 + () + + + void + set_Subtitle + classlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation.html + a55b9d9586b4c2e761bf1527fec257b45 + (DOMString val) + + + DOMString + get_Subtitle_string + classlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation.html + aba58497e8b1891f821e9331a16a9b988 + () + + + void + mark_present_Subtitle + classlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation.html + a5b93db0fb9b818f51e5b9e24ff161eef + () + + + MediaType_p + element_MediaType + classlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation.html + a4ccbd97e3677b93d83ce1657ead76cdc + () + + + void + set_MediaType + classlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation.html + a8e5dc90a2e64076074d80e042e59d022 + (DOMString val) + + + DOMString + get_MediaType_string + classlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation.html + a36d3dabab5dd24e0e27496c1c5072f99 + () + + + void + mark_present_MediaType + classlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation.html + acd804d4705cb56da252654a44069a929 + () + + + ConfidenceLevel_p + element_ConfidenceLevel + classlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation.html + a85ae73cd85cde62085981321e8ea2efe + () + + + void + set_ConfidenceLevel + classlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation.html + aa81abc3897dfc39fa35a6bc50706ffb2 + (DOMString val) + + + DOMString + get_ConfidenceLevel_string + classlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation.html + af8a41970af63016b584767fd6539c814 + () + + + void + mark_present_ConfidenceLevel + classlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation.html + a77f1e9c8c63ce71e73b2c050285b34a5 + () + + + attr_ID_p + attribute_attr_ID + classlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation.html + a48a430a3ac045734e98ab8b6abc673c3 + () + + + void + set_attr_ID + classlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation.html + ac171f835ebd663aa27ae6ab7af818244 + (DOMString val) + + + DOMString + get_attr_ID_string + classlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation.html + a92fec94325b31ea544dfeff05b84b6a0 + () + + + sequence * + get_sequence + classlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation.html + a497ee229271cb40024fc3fc7dfb334ce + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation.html + a66e0e206b374b85ef181b3b60766312a + () + + + Title_ptr + create_Title + classlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation.html + a016bceaa7c0fece30bbc2fa9ffe18df8 + (FsmCbOptions &options) + + + Subtitle_ptr + create_Subtitle + classlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation.html + a55b305e9c7389ad4b2abfc5d2ce7c8a5 + (FsmCbOptions &options) + + + MediaType_ptr + create_MediaType + classlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation.html + afa5c49fd72a6deed4a4d5c351c8b0f79 + (FsmCbOptions &options) + + + ConfidenceLevel_ptr + create_ConfidenceLevel + classlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation.html + accaa02e75d22f7bce86b6e75f6997eff + (FsmCbOptions &options) + + + attr_ID_ptr + create_attr_ID + classlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation.html + a051adbaf6efa05b01e2a9472898c8703 + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation.html + aaad3638821f520ddff997623d8f4eab6 + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation.html + a5b542e01fb9ea0738273391933e93d17 + + + + AutoPtr< sequence > + _sequence + classlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation.html + a7a909ad2a7d14f9cff8a325c64389a1e + + + + Title_ptr + _Title + classlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation.html + a4089d1afa43da96558e3be9968f8b37b + + + + Subtitle_ptr + _Subtitle + classlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation.html + a01b8ed64f49d708477a837cacb46eba5 + + + + MediaType_ptr + _MediaType + classlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation.html + a2f7ff37f0bc9eaa7597fb0bb2ab03feb + + + + ConfidenceLevel_ptr + _ConfidenceLevel + classlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation.html + a2149516a6afa2c82a62113a157b26c1a + + + + attr_ID_ptr + _attr_ID + classlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation.html + ad7400c420b10a25645e4d860a0b3579c + + + + + libgno::GenoPro::SourcesAndCitations::SourceCitation::sequence + structlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation_1_1sequence.html + + + sequence + structlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation_1_1sequence.html + a09571fc234d32dd6d51dc5bb95bfb2d5 + (SourceCitation *that) + + + Title_p + element_Title + structlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation_1_1sequence.html + aab2ae71db566f4859a8c85020f46d950 + () + + + void + set_Title + structlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation_1_1sequence.html + ac81a6e583b9afb1bc40846101d890f39 + (DOMString val) + + + DOMString + get_Title_string + structlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation_1_1sequence.html + a7d944b686903c02ba78b957fb3dd852e + () + + + void + mark_present_Title + structlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation_1_1sequence.html + a0d8b37390192e5f410ba851824e313b3 + () + + + Subtitle_p + element_Subtitle + structlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation_1_1sequence.html + ae58e08adacbf3ef78a999c20e322e96b + () + + + void + set_Subtitle + structlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation_1_1sequence.html + ad22ebe82a799e6602771ce8b7362e8da + (DOMString val) + + + DOMString + get_Subtitle_string + structlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation_1_1sequence.html + a7f614126bb65398a5d76709aff8e1d22 + () + + + void + mark_present_Subtitle + structlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation_1_1sequence.html + a6055cdaebf35879c12fbccb5e3851823 + () + + + MediaType_p + element_MediaType + structlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation_1_1sequence.html + af78d862d886c72da85d0df8cafa4bf75 + () + + + void + set_MediaType + structlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation_1_1sequence.html + af0f2c15ba5ec2f0193f3248923b818bc + (DOMString val) + + + DOMString + get_MediaType_string + structlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation_1_1sequence.html + adad5b982608cea03f630b5f116453d6a + () + + + void + mark_present_MediaType + structlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation_1_1sequence.html + ab601faaf0c79ecd956da1ea3bc730d99 + () + + + ConfidenceLevel_p + element_ConfidenceLevel + structlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation_1_1sequence.html + ab376c1b8be851cf52c43cec16d698deb + () + + + void + set_ConfidenceLevel + structlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation_1_1sequence.html + a2f70c65f0be6dfcb2f5327dab07a5b53 + (DOMString val) + + + DOMString + get_ConfidenceLevel_string + structlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation_1_1sequence.html + aafc8ac7aa97ba77332e99f90da4ed35f + () + + + void + mark_present_ConfidenceLevel + structlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation_1_1sequence.html + aa119764549251ed5b38e3a9de5932047 + () + + + XsdFsmBase * + clone + structlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation_1_1sequence.html + aa65c0a610d1538f6a51b2c8e04f3156a + () const + + + SourceCitation * + _that + structlibgno_1_1GenoPro_1_1SourcesAndCitations_1_1SourceCitation_1_1sequence.html + a3951c90608db21d3631a6ca582cb9ac1 + + + + + libgno::GenoPro::Twins + classlibgno_1_1GenoPro_1_1Twins.html + libgno::GenoPro::Twins::sequence + libgno::GenoPro::Twins::Twin + + AutoPtr< Twin > + Twin_ptr + classlibgno_1_1GenoPro_1_1Twins.html + a522287dc195fb1a301c024f9bce90b69 + + + + Twin * + Twin_p + classlibgno_1_1GenoPro_1_1Twins.html + a4d42ed47b9b34cd3d5cf6128ce49506d + + + + + Twins + classlibgno_1_1GenoPro_1_1Twins.html + a0140c160e1e5e7c127cc7f6681b9e9d4 + (ElementCreateArgs args) + + + List< Twin_ptr > + elements_Twin + classlibgno_1_1GenoPro_1_1Twins.html + abc527f4f6ff2b1085f429c29c791a2e7 + () + + + Twin_p + element_Twin_at + classlibgno_1_1GenoPro_1_1Twins.html + aceaa81df1848f240c74afc88db5040f9 + (unsigned int idx) + + + Twin_p + add_node_Twin + classlibgno_1_1GenoPro_1_1Twins.html + afe18b930dd3f639bc652a0e22dc86525 + () + + + List< Twin_ptr > + set_count_Twin + classlibgno_1_1GenoPro_1_1Twins.html + a4be32e218f2c1bf8e601487eca33365b + (unsigned int size) + + + sequence * + get_sequence + classlibgno_1_1GenoPro_1_1Twins.html + a49595ec81cc29bdec35f0ef68a9c4ea4 + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1Twins.html + aa438659ccc7ac263dc82858060f3a569 + () + + + Twin_ptr + create_Twin + classlibgno_1_1GenoPro_1_1Twins.html + a6f7f0f94a39a6ae389f01b125e87fe4a + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1Twins.html + a0d2d81569725af6b4054df24f2752f5c + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1Twins.html + ae89b007277b7d1fa1ac471b268ee8c14 + + + + AutoPtr< sequence > + _sequence + classlibgno_1_1GenoPro_1_1Twins.html + ae66345f4c4f1ffa5ad1a6e3c2c5be3cf + + + + List< Twin_ptr > + _list_Twin + classlibgno_1_1GenoPro_1_1Twins.html + a2506ef2018ff0204ffad53a064ff51db + + + + + libgno::GenoPro::Twins::sequence + structlibgno_1_1GenoPro_1_1Twins_1_1sequence.html + + + sequence + structlibgno_1_1GenoPro_1_1Twins_1_1sequence.html + a914eb4dabed1334320b51c66378c6e45 + (Twins *that) + + + List< Twin_ptr > + elements_Twin + structlibgno_1_1GenoPro_1_1Twins_1_1sequence.html + a1463f85b1480ca335587b8fd5cff1c02 + () + + + Twin_p + element_Twin_at + structlibgno_1_1GenoPro_1_1Twins_1_1sequence.html + ad2f0b7a9730473d60de8b9816440203b + (unsigned int idx) + + + Twin_p + add_node_Twin + structlibgno_1_1GenoPro_1_1Twins_1_1sequence.html + a5449c60888e2613942349f193090019b + () + + + List< Twin_ptr > + set_count_Twin + structlibgno_1_1GenoPro_1_1Twins_1_1sequence.html + a6e711f3a86a02008819bffda48b24e2a + (unsigned int size) + + + XsdFsmBase * + clone + structlibgno_1_1GenoPro_1_1Twins_1_1sequence.html + a19f5b46902a0a6b232a97876ff945226 + () const + + + Twins * + _that + structlibgno_1_1GenoPro_1_1Twins_1_1sequence.html + aecf679a73f2e0f7978a1469ce80a3854 + + + + + libgno::GenoPro::Twins::Twin + classlibgno_1_1GenoPro_1_1Twins_1_1Twin.html + libgno::GenoPro::Twins::Twin::sequence + + AutoPtr< XMLSchema::XmlElement< XMLSchema::Types::bt_int > > + Position_ptr + classlibgno_1_1GenoPro_1_1Twins_1_1Twin.html + aa809721e9cb3a1ff32325fda58e2966e + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_int > * + Position_p + classlibgno_1_1GenoPro_1_1Twins_1_1Twin.html + a67e20f7194bb31217aebb480456c17ef + + + + XMLSchema::XmlElement< XMLSchema::Types::bt_int > + Position + classlibgno_1_1GenoPro_1_1Twins_1_1Twin.html + aff439f90c4f8ac1c4291f50debfe7e85 + + + + AutoPtr< XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > > + attr_ID_ptr + classlibgno_1_1GenoPro_1_1Twins_1_1Twin.html + a8729b0fd5d39533bc5dfd87cdd42394c + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > * + attr_ID_p + classlibgno_1_1GenoPro_1_1Twins_1_1Twin.html + a79d88229b8e3419a09fada53a394ee11 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > + attr_ID + classlibgno_1_1GenoPro_1_1Twins_1_1Twin.html + a51b6199106a2e057591c8aadd2330473 + + + + AutoPtr< XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > > + attr_TwinLink_ptr + classlibgno_1_1GenoPro_1_1Twins_1_1Twin.html + aa3bd619741507566ad3b6c349d7678bf + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > * + attr_TwinLink_p + classlibgno_1_1GenoPro_1_1Twins_1_1Twin.html + a475a3a903c394f1c3bfbd2269c666f0c + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > + attr_TwinLink + classlibgno_1_1GenoPro_1_1Twins_1_1Twin.html + a99f0fca2d37867913d097af6a4839bdf + + + + AutoPtr< XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > > + attr_Family_ptr + classlibgno_1_1GenoPro_1_1Twins_1_1Twin.html + afffef63bd9cd750d3852e04a2ad5b279 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > * + attr_Family_p + classlibgno_1_1GenoPro_1_1Twins_1_1Twin.html + a6f57ebf66ba034d678129569d6dccd13 + + + + XMLSchema::XmlAttribute< XMLSchema::Types::bt_normalizedString > + attr_Family + classlibgno_1_1GenoPro_1_1Twins_1_1Twin.html + a584052d93ba0c8089db4886705136b2b + + + + + Twin + classlibgno_1_1GenoPro_1_1Twins_1_1Twin.html + a51207fee791f246b84f12d3279ed5f03 + (ElementCreateArgs args) + + + Position_p + element_Position + classlibgno_1_1GenoPro_1_1Twins_1_1Twin.html + a70c2cae86ff04571dfe7ac3ab19c8c55 + () + + + void + set_Position + classlibgno_1_1GenoPro_1_1Twins_1_1Twin.html + ae84c0a5843ba6f4a65f182ac93ff84c0 + (DOMString val) + + + DOMString + get_Position_string + classlibgno_1_1GenoPro_1_1Twins_1_1Twin.html + a35c2926a92e29f8e4df59de5c789ef93 + () + + + void + set_Position + classlibgno_1_1GenoPro_1_1Twins_1_1Twin.html + aa6dc307cd1e9d7f6792ac581fc42740d + (int val) + + + int + get_Position + classlibgno_1_1GenoPro_1_1Twins_1_1Twin.html + a5c623acfee4c2e6609b88579d73aa6d9 + () + + + void + mark_present_Position + classlibgno_1_1GenoPro_1_1Twins_1_1Twin.html + aed61ddd3e395ae9f21a2c83aed3a0398 + () + + + attr_ID_p + attribute_attr_ID + classlibgno_1_1GenoPro_1_1Twins_1_1Twin.html + a630c2a847f09eb5de01d10d71c277b24 + () + + + void + set_attr_ID + classlibgno_1_1GenoPro_1_1Twins_1_1Twin.html + a068911600f192a86c4d03fa7eb17b615 + (DOMString val) + + + DOMString + get_attr_ID_string + classlibgno_1_1GenoPro_1_1Twins_1_1Twin.html + a6b8364f8d64c1d81c1f6f5a36dc35302 + () + + + attr_TwinLink_p + attribute_attr_TwinLink + classlibgno_1_1GenoPro_1_1Twins_1_1Twin.html + a5a35aebe5d11271221bd7a0694761480 + () + + + void + set_attr_TwinLink + classlibgno_1_1GenoPro_1_1Twins_1_1Twin.html + a32bfad242e1fd2ff3366c4a870e38a4c + (DOMString val) + + + DOMString + get_attr_TwinLink_string + classlibgno_1_1GenoPro_1_1Twins_1_1Twin.html + a6cc552b6052957e9c006a546a674eae9 + () + + + attr_Family_p + attribute_attr_Family + classlibgno_1_1GenoPro_1_1Twins_1_1Twin.html + a986f16dc916c087f090b4c76010b915b + () + + + void + set_attr_Family + classlibgno_1_1GenoPro_1_1Twins_1_1Twin.html + a212f764535d94bcb9f4bdbf71e0e0baf + (DOMString val) + + + DOMString + get_attr_Family_string + classlibgno_1_1GenoPro_1_1Twins_1_1Twin.html + a08953ae43d539ce7f03364ca1384f9a4 + () + + + sequence * + get_sequence + classlibgno_1_1GenoPro_1_1Twins_1_1Twin.html + abcfa91b8281c5117707da7b28f1e3529 + () + + + void + initFSM + classlibgno_1_1GenoPro_1_1Twins_1_1Twin.html + ac95a200902b7bf2695e01e3301e2e31f + () + + + Position_ptr + create_Position + classlibgno_1_1GenoPro_1_1Twins_1_1Twin.html + a0964e520aa269c8f091cc0061bc2fa71 + (FsmCbOptions &options) + + + attr_ID_ptr + create_attr_ID + classlibgno_1_1GenoPro_1_1Twins_1_1Twin.html + a5f12b0adeda7d5cb0b7b2f01cbe4e725 + (FsmCbOptions &options) + + + attr_TwinLink_ptr + create_attr_TwinLink + classlibgno_1_1GenoPro_1_1Twins_1_1Twin.html + ad9bc4c7cd14ed4deb43621986f5fee65 + (FsmCbOptions &options) + + + attr_Family_ptr + create_attr_Family + classlibgno_1_1GenoPro_1_1Twins_1_1Twin.html + a5e336c0e26a8ac81f79e8ea62cf7d357 + (FsmCbOptions &options) + + + XsdAllFsmOfFSMsPtr + _fsmAttrs + classlibgno_1_1GenoPro_1_1Twins_1_1Twin.html + a9fa786e4904efcd1201c413bf98e34fa + + + + XsdFsmBasePtr + _fsmElems + classlibgno_1_1GenoPro_1_1Twins_1_1Twin.html + afa4ab08dd21f726814ce9315062446e6 + + + + AutoPtr< sequence > + _sequence + classlibgno_1_1GenoPro_1_1Twins_1_1Twin.html + ad40f008c1e501bf4c7ac1e3fc5505d01 + + + + Position_ptr + _Position + classlibgno_1_1GenoPro_1_1Twins_1_1Twin.html + a8d5bbee391fa0b531274a92b5a8b8b58 + + + + attr_ID_ptr + _attr_ID + classlibgno_1_1GenoPro_1_1Twins_1_1Twin.html + a61ec4205a155bd948bbac51d6f5fb173 + + + + attr_TwinLink_ptr + _attr_TwinLink + classlibgno_1_1GenoPro_1_1Twins_1_1Twin.html + a3321f1f46b29f8a31fd54735d0916f30 + + + + attr_Family_ptr + _attr_Family + classlibgno_1_1GenoPro_1_1Twins_1_1Twin.html + a2e0a7ddaad873ce3b24d14b2ac0362a0 + + + + + libgno::GenoPro::Twins::Twin::sequence + structlibgno_1_1GenoPro_1_1Twins_1_1Twin_1_1sequence.html + + + sequence + structlibgno_1_1GenoPro_1_1Twins_1_1Twin_1_1sequence.html + aa9c678ed5eebf5698c3435cf1a8c40a3 + (Twin *that) + + + Position_p + element_Position + structlibgno_1_1GenoPro_1_1Twins_1_1Twin_1_1sequence.html + aa8b533f1138d07c7f80b3c4d96c6e39d + () + + + void + set_Position + structlibgno_1_1GenoPro_1_1Twins_1_1Twin_1_1sequence.html + a9f93d65596db9dcb720775db1aa3c6bf + (DOMString val) + + + DOMString + get_Position_string + structlibgno_1_1GenoPro_1_1Twins_1_1Twin_1_1sequence.html + a641f6fb5d41f970c82cfdef89a5c348a + () + + + void + set_Position + structlibgno_1_1GenoPro_1_1Twins_1_1Twin_1_1sequence.html + a7bd5e7cfd2079e6226295ee37dd8c830 + (int val) + + + int + get_Position + structlibgno_1_1GenoPro_1_1Twins_1_1Twin_1_1sequence.html + a824312b2e45c9008c570fb5e000c40bf + () + + + void + mark_present_Position + structlibgno_1_1GenoPro_1_1Twins_1_1Twin_1_1sequence.html + aa4582b49ae5dd646a6b1ffbc901b748a + () + + + XsdFsmBase * + clone + structlibgno_1_1GenoPro_1_1Twins_1_1Twin_1_1sequence.html + a143c358aa241ea3972f434a541786177 + () const + + + Twin * + _that + structlibgno_1_1GenoPro_1_1Twins_1_1Twin_1_1sequence.html + abb27172b2a2c09b15465b58571e7acdd + + + + + include + /home/rafal/prj/dlugolecki/familia-build/build/include/ + dir_d44c64559bbebec7f509842c48db8b23.html +

    include/libgno + + + src/libgno + /home/rafal/prj/dlugolecki/familia-build/build/src/libgno/ + dir_1d15fe25d57d0dbcadc22ee9bfb0d0e5.html + Document.cpp + GenoPro.cpp + + + include/libgno + /home/rafal/prj/dlugolecki/familia-build/build/include/libgno/ + dir_3cf423a6098a13ddf6cb4ea53fc37464.html + all-include.h + Document.h + GenoPro.h + + + src + /home/rafal/prj/dlugolecki/familia-build/build/src/ + dir_68267d1309a1af8e8297ef4c3efbcdba.html + src/libgno + + diff --git a/doxygen.cfg b/doxygen.cfg new file mode 100644 index 0000000..f12bddb --- /dev/null +++ b/doxygen.cfg @@ -0,0 +1,2354 @@ +# Doxyfile 1.8.8 + +# This file describes the settings to be used by the documentation system +# doxygen (www.doxygen.org) for a project. +# +# All text after a double hash (##) is considered a comment and is placed in +# front of the TAG it is preceding. +# +# All text after a single 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. +# The default value is: UTF-8. + +DOXYFILE_ENCODING = UTF-8 + +# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by +# double-quotes, unless you are using Doxywizard) that should identify the +# project for which the documentation is generated. This name is used in the +# title of most generated pages and in a few other places. +# The default value is: My Project. + +PROJECT_NAME = $(PROJECT)-$(VERSION) + +# 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 = + +# Using the PROJECT_BRIEF tag one can provide an optional one line description +# for a project that appears at the top of each page and should give viewer a +# quick idea about the purpose of the project. Keep the description short. + +PROJECT_BRIEF = + +# With the PROJECT_LOGO tag one can specify an logo or icon that is included in +# the documentation. The maximum height of the logo should not exceed 55 pixels +# and the maximum width should not exceed 200 pixels. Doxygen will copy the logo +# to the output directory. + +PROJECT_LOGO = + +# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path +# into which the generated documentation will be written. 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 = $(DOCDIR) + +# 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 causes +# performance problems for the file system. +# The default value is: NO. + +CREATE_SUBDIRS = NO + +# If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII +# characters to appear in the names of generated files. If set to NO, non-ASCII +# characters will be escaped, for example _xE3_x81_x84 will be used for Unicode +# U+3044. +# The default value is: NO. + +ALLOW_UNICODE_NAMES = 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. +# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese, +# Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States), +# Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian, +# Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages), +# Korean, Korean-en (Korean with English messages), Latvian, Lithuanian, +# Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian, +# Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish, +# Ukrainian and Vietnamese. +# The default value is: English. + +OUTPUT_LANGUAGE = English + +# If the BRIEF_MEMBER_DESC tag is set to YES 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. +# The default value is: YES. + +BRIEF_MEMBER_DESC = YES + +# If the REPEAT_BRIEF tag is set to YES 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. +# The default value is: YES. + +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 and 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. +# The default value is: NO. + +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. +# The default value is: NO. + +INLINE_INHERITED_MEMB = YES + +# If the FULL_PATH_NAMES tag is set to YES 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 +# The default value is: YES. + +FULL_PATH_NAMES = YES + +# 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. +# +# Note that you can specify absolute paths here, but also relative paths, which +# will be relative from the directory where doxygen is started. +# This tag requires that the tag FULL_PATH_NAMES is set to YES. + +STRIP_FROM_PATH = $(SRCDIR) + +# 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 list of 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. +# The default value is: NO. + +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-style will behave just like regular Qt- +# style comments (thus requiring an explicit @brief command for a brief +# description.) +# The default value is: NO. + +JAVADOC_AUTOBRIEF = YES + +# 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 Qt-style will behave just like regular Qt-style comments (thus +# requiring an explicit \brief command for a brief description.) +# The default value is: NO. + +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 behavior. 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 behavior instead. +# +# Note that setting this tag to YES also means that rational rose comments are +# not recognized any more. +# The default value is: NO. + +MULTILINE_CPP_IS_BRIEF = NO + +# If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the +# documentation from any documented member that it re-implements. +# The default value is: YES. + +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. +# The default value is: NO. + +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. +# Minimum value: 1, maximum value: 16, default value: 4. + +TAB_SIZE = 4 + +# This tag can be used to specify a number of aliases that act 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 = + +# This tag can be used to specify a number of word-keyword mappings (TCL only). +# A mapping has the form "name=value". For example adding "class=itcl::class" +# will allow you to use the command class in the itcl::class meaning. + +TCL_SUBST = + +# 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. +# The default value is: NO. + +OPTIMIZE_OUTPUT_FOR_C = YES + +# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or +# Python sources only. Doxygen will then generate output that is more tailored +# for that language. For instance, namespaces will be presented as packages, +# qualified scopes will look different, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_JAVA = NO + +# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran +# sources. Doxygen will then generate output that is tailored for Fortran. +# The default value is: NO. + +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. +# The default value is: NO. + +OPTIMIZE_OUTPUT_VHDL = NO + +# Doxygen selects the parser to use depending on the extension of the files it +# parses. With this tag you can assign which parser to use for a given +# extension. Doxygen has a built-in mapping, but you can override or extend it +# using this tag. The format is ext=language, where ext is a file extension, and +# language is one of the parsers supported by doxygen: IDL, Java, Javascript, +# C#, C, C++, D, PHP, Objective-C, Python, Fortran (fixed format Fortran: +# FortranFixed, free formatted Fortran: FortranFree, unknown formatted Fortran: +# Fortran. In the later case the parser tries to guess whether the code is fixed +# or free formatted code, this is the default for Fortran type files), VHDL. For +# instance to make doxygen treat .inc files as Fortran files (default is PHP), +# and .f files as C (default is Fortran), use: inc=Fortran f=C. +# +# Note For files without extension you can use no_extension as a placeholder. +# +# Note that for custom extensions you also need to set FILE_PATTERNS otherwise +# the files are not read by doxygen. + +EXTENSION_MAPPING = + +# If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments +# according to the Markdown format, which allows for more readable +# documentation. See http://daringfireball.net/projects/markdown/ for details. +# The output of markdown processing is further processed by doxygen, so you can +# mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in +# case of backward compatibilities issues. +# The default value is: YES. + +MARKDOWN_SUPPORT = YES + +# When enabled doxygen tries to link words that correspond to documented +# classes, or namespaces to their corresponding documentation. Such a link can +# be prevented in individual cases by by putting a % sign in front of the word +# or globally by setting AUTOLINK_SUPPORT to NO. +# The default value is: YES. + +AUTOLINK_SUPPORT = YES + +# 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); +# versus func(std::string) {}). This also make the inheritance and collaboration +# diagrams that involve STL classes more complete and accurate. +# The default value is: NO. + +BUILTIN_STL_SUPPORT = NO + +# If you use Microsoft's C++/CLI language, you should set this option to YES to +# enable parsing support. +# The default value is: NO. + +CPP_CLI_SUPPORT = NO + +# Set the SIP_SUPPORT tag to YES if your project consists of sip (see: +# http://www.riverbankcomputing.co.uk/software/sip/intro) 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. +# The default value is: NO. + +SIP_SUPPORT = NO + +# For Microsoft's IDL there are propget and propput attributes to indicate +# getter and setter methods for a property. Setting this option to YES will make +# doxygen to replace the get and set methods by a property in the documentation. +# This will only work if the methods are indeed getting or setting a simple +# type. If this is not the case, or you want to show the methods anyway, you +# should set this option to NO. +# The default value is: YES. + +IDL_PROPERTY_SUPPORT = YES + +# 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. +# The default value is: NO. + +DISTRIBUTE_GROUP_DOC = NO + +# Set the SUBGROUPING tag to YES 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. +# The default value is: YES. + +SUBGROUPING = YES + +# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions +# are shown inside the group in which they are included (e.g. using \ingroup) +# instead of on a separate page (for HTML and Man pages) or section (for LaTeX +# and RTF). +# +# Note that this feature does not work in combination with +# SEPARATE_MEMBER_PAGES. +# The default value is: NO. + +INLINE_GROUPED_CLASSES = NO + +# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions +# with only public data fields or simple typedef fields will be shown inline in +# the documentation of the scope in which they are defined (i.e. file, +# namespace, or group documentation), provided this scope is documented. If set +# to NO, structs, classes, and unions are shown on a separate page (for HTML and +# Man pages) or section (for LaTeX and RTF). +# The default value is: NO. + +INLINE_SIMPLE_STRUCTS = NO + +# When TYPEDEF_HIDES_STRUCT tag 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. +# The default value is: NO. + +TYPEDEF_HIDES_STRUCT = NO + +# The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This +# cache is used to resolve symbols given their name and scope. Since this can be +# an expensive process and often the same symbol appears multiple times in the +# code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small +# doxygen will become slower. If the cache is too large, memory is wasted. The +# cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range +# is 0..9, the default is 0, corresponding to a cache size of 2^16=65536 +# symbols. At the end of a run doxygen will report the cache usage and suggest +# the optimal cache size from a speed point of view. +# Minimum value: 0, maximum value: 9, default value: 0. + +LOOKUP_CACHE_SIZE = 0 + +#--------------------------------------------------------------------------- +# 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 respectively EXTRACT_STATIC tags are set to YES. +# Note: This will also disable the warnings about undocumented members that are +# normally produced when WARNINGS is set to YES. +# The default value is: NO. + +EXTRACT_ALL = YES + +# If the EXTRACT_PRIVATE tag is set to YES all private members of a class will +# be included in the documentation. +# The default value is: NO. + +EXTRACT_PRIVATE = YES + +# If the EXTRACT_PACKAGE tag is set to YES all members with package or internal +# scope will be included in the documentation. +# The default value is: NO. + +EXTRACT_PACKAGE = NO + +# If the EXTRACT_STATIC tag is set to YES all static members of a file will be +# included in the documentation. +# The default value is: NO. + +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. Does not have any effect +# for Java sources. +# The default value is: YES. + +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 only methods in the interface are +# included. +# The default value is: NO. + +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. +# The default value is: NO. + +EXTRACT_ANON_NSPACES = NO + +# If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all +# undocumented members inside documented classes or files. If set to NO 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. +# The default value is: NO. + +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 these classes will be included in the various overviews. This option has +# no effect if EXTRACT_ALL is enabled. +# The default value is: NO. + +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 these declarations will be +# included in the documentation. +# The default value is: NO. + +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 these +# blocks will be appended to the function's detailed documentation block. +# The default value is: NO. + +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 then the documentation +# will be excluded. Set it to YES to include the internal documentation. +# The default value is: NO. + +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. +# The default value is: system dependent. + +CASE_SENSE_NAMES = YES + +# If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with +# their full class and namespace scopes in the documentation. If set to YES the +# scope will be hidden. +# The default value is: NO. + +HIDE_SCOPE_NAMES = NO + +# If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of +# the files that are included by a file in the documentation of that file. +# The default value is: YES. + +SHOW_INCLUDE_FILES = YES + +# If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each +# grouped member an include statement to the documentation, telling the reader +# which file to include in order to use the member. +# The default value is: NO. + +SHOW_GROUPED_MEMB_INC = NO + +# If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include +# files with double quotes in the documentation rather than with sharp brackets. +# The default value is: NO. + +FORCE_LOCAL_INCLUDES = NO + +# If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the +# documentation for inline members. +# The default value is: YES. + +INLINE_INFO = YES + +# If the SORT_MEMBER_DOCS tag is set to YES 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. +# The default value is: YES. + +SORT_MEMBER_DOCS = YES + +# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief +# descriptions of file, namespace and class members alphabetically by member +# name. If set to NO the members will appear in declaration order. Note that +# this will also influence the order of the classes in the class list. +# The default value is: NO. + +SORT_BRIEF_DOCS = NO + +# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the +# (brief and detailed) documentation of class members so that constructors and +# destructors are listed first. If set to NO the constructors will appear in the +# respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS. +# Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief +# member documentation. +# Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting +# detailed member documentation. +# The default value is: NO. + +SORT_MEMBERS_CTORS_1ST = 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 group names will +# appear in their defined order. +# The default value is: NO. + +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 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. +# The default value is: NO. + +SORT_BY_SCOPE_NAME = NO + +# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper +# type resolution of all parameters of a function it will reject a match between +# the prototype and the implementation of a member function even if there is +# only one candidate or it is obvious which candidate to choose by doing a +# simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still +# accept a match between prototype and implementation in such cases. +# The default value is: NO. + +STRICT_PROTO_MATCHING = 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. +# The default value is: YES. + +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. +# The default value is: YES. + +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. +# The default value is: YES. + +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. +# The default value is: YES. + +GENERATE_DEPRECATEDLIST= YES + +# The ENABLED_SECTIONS tag can be used to enable conditional documentation +# sections, marked by \if ... \endif and \cond +# ... \endcond blocks. + +ENABLED_SECTIONS = + +# The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the +# initial value of a variable or macro / define can have 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 value of individual variables and macros / defines can be +# controlled using \showinitializer or \hideinitializer command in the +# documentation regardless of this setting. +# Minimum value: 0, maximum value: 10000, default value: 30. + +MAX_INITIALIZER_LINES = 0 + +# 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. +# The default value is: YES. + +SHOW_USED_FILES = YES + +# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This +# will remove the Files entry from the Quick Index and from the Folder Tree View +# (if specified). +# The default value is: YES. + +SHOW_FILES = YES + +# Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces +# page. This will remove the Namespaces entry from the Quick Index and from the +# Folder Tree View (if specified). +# The default value is: YES. + +SHOW_NAMESPACES = YES + +# 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 command input-file, where command is the value of the +# FILE_VERSION_FILTER tag, and input-file is the name of an input file provided +# by doxygen. Whatever the program writes to standard output is used as the file +# version. For an example see the documentation. + +FILE_VERSION_FILTER = + +# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed +# by doxygen. The layout file controls the global structure of the generated +# output files in an output format independent way. To create the layout file +# that represents doxygen's defaults, run doxygen with the -l option. You can +# optionally specify a file name after the option, if omitted DoxygenLayout.xml +# will be used as the name of the layout file. +# +# Note that if you run doxygen from a directory containing a file called +# DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE +# tag is left empty. + +LAYOUT_FILE = + +# The CITE_BIB_FILES tag can be used to specify one or more bib files containing +# the reference definitions. This must be a list of .bib files. The .bib +# extension is automatically appended if omitted. This requires the bibtex tool +# to be installed. See also http://en.wikipedia.org/wiki/BibTeX for more info. +# For LaTeX the style of the bibliography can be controlled using +# LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the +# search path. See also \cite for info how to create references. + +CITE_BIB_FILES = + +#--------------------------------------------------------------------------- +# Configuration options related to warning and progress messages +#--------------------------------------------------------------------------- + +# The QUIET tag can be used to turn on/off the messages that are generated to +# standard output by doxygen. If QUIET is set to YES this implies that the +# messages are off. +# The default value is: NO. + +QUIET = YES + +# The WARNINGS tag can be used to turn on/off the warning messages that are +# generated to standard error ( stderr) by doxygen. If WARNINGS is set to YES +# this implies that the warnings are on. +# +# Tip: Turn warnings on while writing the documentation. +# The default value is: YES. + +WARNINGS = YES + +# If the WARN_IF_UNDOCUMENTED tag 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. +# The default value is: YES. + +WARN_IF_UNDOCUMENTED = YES + +# If the WARN_IF_DOC_ERROR tag 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. +# The default value is: YES. + +WARN_IF_DOC_ERROR = YES + +# This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that +# are documented, but have no documentation for their parameters or return +# value. If set to NO doxygen will only warn about wrong or incomplete parameter +# documentation, but not about the absence of documentation. +# The default value is: NO. + +WARN_NO_PARAMDOC = NO + +# 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) +# The default value is: $file:$line: $text. + +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 standard +# error (stderr). + +WARN_LOGFILE = + +#--------------------------------------------------------------------------- +# Configuration options related to the input files +#--------------------------------------------------------------------------- + +# The INPUT tag is 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. +# Note: If this tag is empty the current directory is searched. + +INPUT = $(SRCDIR) + +# This tag can be used to specify the character encoding of the source files +# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses +# libiconv (or the iconv built into libc) for the transcoding. See the libiconv +# documentation (see: http://www.gnu.org/software/libiconv) for the list of +# possible encodings. +# The default value is: UTF-8. + +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 patterns (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, *.idl, *.ddl, *.odl, *.h, *.hh, *.hxx, *.hpp, +# *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, *.m, *.markdown, +# *.md, *.mm, *.dox, *.py, *.f90, *.f, *.for, *.tcl, *.vhd, *.vhdl, *.ucf, +# *.qsf, *.as and *.js. + +FILE_PATTERNS = + +# The RECURSIVE tag can be used to specify whether or not subdirectories should +# be searched for input files as well. +# The default value is: NO. + +RECURSIVE = YES + +# The EXCLUDE tag can be used to specify files and/or directories that should be +# 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. +# +# Note that relative paths are relative to the directory from which doxygen is +# run. + +EXCLUDE = + +# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or +# directories that are symbolic links (a Unix file system feature) are excluded +# from the input. +# The default value is: NO. + +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 +# +# Note that the wildcards are matched against the file with absolute path, so to +# exclude all test directories use the pattern */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. +# The default value is: NO. + +EXAMPLE_RECURSIVE = NO + +# The IMAGE_PATH tag can be used to specify one or more files or directories +# that contain images that are to be 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. +# +# Note that the filter must not add or remove lines; it is applied before the +# code is scanned, but not when the output code is generated. If lines are added +# or removed, the anchors will not be placed correctly. + +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 information on how +# filters are used. If the FILTER_PATTERNS tag is empty or if none of the +# patterns match the file name, INPUT_FILTER is applied. + +FILTER_PATTERNS = + +# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using +# INPUT_FILTER ) will also be used to filter the input files that are used for +# producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES). +# The default value is: NO. + +FILTER_SOURCE_FILES = NO + +# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file +# pattern. A pattern will override the setting for FILTER_PATTERN (if any) and +# it is also possible to disable source filtering for a specific pattern using +# *.ext= (so without naming a filter). +# This tag requires that the tag FILTER_SOURCE_FILES is set to YES. + +FILTER_SOURCE_PATTERNS = + +# If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that +# is part of the input, its contents will be placed on the main page +# (index.html). This can be useful if you have a project on for instance GitHub +# and want to reuse the introduction page also for the doxygen output. + +USE_MDFILE_AS_MAINPAGE = + +#--------------------------------------------------------------------------- +# 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 that +# also VERBATIM_HEADERS is set to NO. +# The default value is: NO. + +SOURCE_BROWSER = YES + +# Setting the INLINE_SOURCES tag to YES will include the body of functions, +# classes and enums directly into the documentation. +# The default value is: NO. + +INLINE_SOURCES = NO + +# Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any +# special comment blocks from generated source code fragments. Normal C, C++ and +# Fortran comments will always remain visible. +# The default value is: YES. + +STRIP_CODE_COMMENTS = YES + +# If the REFERENCED_BY_RELATION tag is set to YES then for each documented +# function all documented functions referencing it will be listed. +# The default value is: NO. + +REFERENCED_BY_RELATION = YES + +# If the REFERENCES_RELATION tag is set to YES then for each documented function +# all documented entities called/used by that function will be listed. +# The default value is: NO. + +REFERENCES_RELATION = YES + +# If the REFERENCES_LINK_SOURCE tag is set to YES 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 documentation. +# The default value is: YES. + +REFERENCES_LINK_SOURCE = YES + +# If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the +# source code will show a tooltip with additional information such as prototype, +# brief description and links to the definition and documentation. Since this +# will make the HTML file larger and loading of large files a bit slower, you +# can opt to disable this feature. +# The default value is: YES. +# This tag requires that the tag SOURCE_BROWSER is set to YES. + +SOURCE_TOOLTIPS = 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. +# +# To use it do the following: +# - Install the latest version of global +# - Enable SOURCE_BROWSER and USE_HTAGS in the config file +# - Make sure the INPUT points to the root of the source tree +# - Run doxygen as normal +# +# Doxygen will invoke htags (and that will in turn invoke gtags), so these +# tools must be available from the command line (i.e. in the search path). +# +# The result: instead of the source browser generated by doxygen, the links to +# source code will now point to the output of htags. +# The default value is: NO. +# This tag requires that the tag SOURCE_BROWSER is set to YES. + +USE_HTAGS = NO + +# If the VERBATIM_HEADERS tag is set the YES 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. +# See also: Section \class. +# The default value is: YES. + +VERBATIM_HEADERS = YES + +# If the CLANG_ASSISTED_PARSING tag is set to YES, then doxygen will use the +# clang parser (see: http://clang.llvm.org/) for more accurate parsing at the +# cost of reduced performance. This can be particularly helpful with template +# rich C++ code for which doxygen's built-in parser lacks the necessary type +# information. +# Note: The availability of this option depends on whether or not doxygen was +# compiled with the --with-libclang option. +# The default value is: NO. + +CLANG_ASSISTED_PARSING = NO + +# If clang assisted parsing is enabled you can provide the compiler with command +# line options that you would normally use when invoking the compiler. Note that +# the include paths will already be set by doxygen for the files and directories +# specified with INPUT and INCLUDE_PATH. +# This tag requires that the tag CLANG_ASSISTED_PARSING is set to YES. + +CLANG_OPTIONS = + +#--------------------------------------------------------------------------- +# 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. +# The default value is: YES. + +ALPHABETICAL_INDEX = YES + +# The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in +# which the alphabetical index list will be split. +# Minimum value: 1, maximum value: 20, default value: 5. +# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. + +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 a prefix (or a list of prefixes) that should be ignored +# while generating the index headers. +# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. + +IGNORE_PREFIX = + +#--------------------------------------------------------------------------- +# Configuration options related to the HTML output +#--------------------------------------------------------------------------- + +# If the GENERATE_HTML tag is set to YES doxygen will generate HTML output +# The default value is: YES. + +GENERATE_HTML = $(GENERATE_HTML) + +# 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. +# The default directory is: html. +# This tag requires that the tag GENERATE_HTML is set to YES. + +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). +# The default value is: .html. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FILE_EXTENSION = .html + +# The HTML_HEADER tag can be used to specify a user-defined HTML header file for +# each generated HTML page. If the tag is left blank doxygen will generate a +# standard header. +# +# To get valid HTML the header file that includes any scripts and style sheets +# that doxygen needs, which is dependent on the configuration options used (e.g. +# the setting GENERATE_TREEVIEW). It is highly recommended to start with a +# default header using +# doxygen -w html new_header.html new_footer.html new_stylesheet.css +# YourConfigFile +# and then modify the file new_header.html. See also section "Doxygen usage" +# for information on how to generate the default header that doxygen normally +# uses. +# Note: The header is subject to change so you typically have to regenerate the +# default header when upgrading to a newer version of doxygen. For a description +# of the possible markers and block names see the documentation. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_HEADER = + +# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each +# generated HTML page. If the tag is left blank doxygen will generate a standard +# footer. See HTML_HEADER for more information on how to generate a default +# footer and what special commands can be used inside the footer. See also +# section "Doxygen usage" for information on how to generate the default footer +# that doxygen normally uses. +# This tag requires that the tag GENERATE_HTML is set to YES. + +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 left blank doxygen will generate a default style sheet. +# See also section "Doxygen usage" for information on how to generate the style +# sheet that doxygen normally uses. +# Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as +# it is more robust and this tag (HTML_STYLESHEET) will in the future become +# obsolete. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_STYLESHEET = + +# The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined +# cascading style sheets that are included after the standard style sheets +# created by doxygen. Using this option one can overrule certain style aspects. +# This is preferred over using HTML_STYLESHEET since it does not replace the +# standard style sheet and is therefor more robust against future updates. +# Doxygen will copy the style sheet files to the output directory. +# Note: The order of the extra stylesheet files is of importance (e.g. the last +# stylesheet in the list overrules the setting of the previous ones in the +# list). For an example see the documentation. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_EXTRA_STYLESHEET = + +# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or +# other source files which should be copied to the HTML output directory. Note +# that these files will be copied to the base HTML output directory. Use the +# $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these +# files. In the HTML_STYLESHEET file, use the file name only. Also note that the +# files will be copied as-is; there are no commands or markers available. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_EXTRA_FILES = + +# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen +# will adjust the colors in the stylesheet and background images according to +# this color. Hue is specified as an angle on a colorwheel, see +# http://en.wikipedia.org/wiki/Hue for more information. For instance the value +# 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300 +# purple, and 360 is red again. +# Minimum value: 0, maximum value: 359, default value: 220. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_HUE = 220 + +# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors +# in the HTML output. For a value of 0 the output will use grayscales only. A +# value of 255 will produce the most vivid colors. +# Minimum value: 0, maximum value: 255, default value: 100. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_SAT = 100 + +# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the +# luminance component of the colors in the HTML output. Values below 100 +# gradually make the output lighter, whereas values above 100 make the output +# darker. The value divided by 100 is the actual gamma applied, so 80 represents +# a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not +# change the gamma. +# Minimum value: 40, maximum value: 240, default value: 80. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_GAMMA = 80 + +# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML +# page will contain the date and time when the page was generated. Setting this +# to NO can help when comparing the output of multiple runs. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_TIMESTAMP = YES + +# 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. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_DYNAMIC_SECTIONS = NO + +# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries +# shown in the various tree structured indices initially; the user can expand +# and collapse entries dynamically later on. Doxygen will expand the tree to +# such a level that at most the specified number of entries are visible (unless +# a fully collapsed tree already exceeds this amount). So setting the number of +# entries 1 will produce a full collapsed tree by default. 0 is a special value +# representing an infinite number of entries and will result in a full expanded +# tree by default. +# Minimum value: 0, maximum value: 9999, default value: 100. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_INDEX_NUM_ENTRIES = 100 + +# 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 (see: http://developer.apple.com/tools/xcode/), 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. See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html +# for more information. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_DOCSET = NO + +# This tag determines the name of the docset 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. +# The default value is: Doxygen generated docs. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_FEEDNAME = "Doxygen generated docs" + +# 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. +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_BUNDLE_ID = org.doxygen.Project + +# The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify +# the documentation publisher. This should be a reverse domain-name style +# string, e.g. com.mycompany.MyDocSet.documentation. +# The default value is: org.doxygen.Publisher. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_PUBLISHER_ID = org.doxygen.Publisher + +# The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher. +# The default value is: Publisher. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_PUBLISHER_NAME = Publisher + +# If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three +# additional HTML index files: index.hhp, index.hhc, and index.hhk. The +# index.hhp is a project file that can be read by Microsoft's HTML Help Workshop +# (see: http://www.microsoft.com/en-us/download/details.aspx?id=21138) on +# Windows. +# +# The HTML Help Workshop contains a compiler that can convert all HTML output +# generated by doxygen into a single compiled HTML file (.chm). Compiled HTML +# files are now used as the Windows 98 help format, and will replace the old +# Windows help format (.hlp) on all Windows platforms in the future. Compressed +# HTML files also contain an index, a table of contents, and you can search for +# words in the documentation. The HTML workshop also contains a viewer for +# compressed HTML files. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_HTMLHELP = $(GENERATE_HTMLHELP) + +# 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. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +CHM_FILE = ../$(PROJECT).chm + +# 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. +# The file has to be specified with full path. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +HHC_LOCATION = $(HHC_PATH) + +# 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). +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +GENERATE_CHI = $(GENERATE_CHI) + +# The CHM_INDEX_ENCODING is used to encode HtmlHelp index ( hhk), content ( hhc) +# and project file content. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +CHM_INDEX_ENCODING = + +# 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. Furthermore it +# enables the Previous and Next buttons. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +BINARY_TOC = NO + +# The TOC_EXPAND flag can be set to YES to add extra items for group members to +# the table of contents of the HTML help documentation and to the tree view. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +TOC_EXPAND = YES + +# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and +# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that +# can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help +# (.qch) of the generated HTML documentation. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_QHP = NO + +# If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify +# the file name of the resulting .qch file. The path specified is relative to +# the HTML output folder. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QCH_FILE = + +# The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help +# Project output. For more information please see Qt Help Project / Namespace +# (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#namespace). +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_NAMESPACE = org.doxygen.Project + +# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt +# Help Project output. For more information please see Qt Help Project / Virtual +# Folders (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#virtual- +# folders). +# The default value is: doc. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_VIRTUAL_FOLDER = doc + +# If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom +# filter to add. For more information please see Qt Help Project / Custom +# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- +# filters). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_CUST_FILTER_NAME = + +# The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the +# custom filter to add. For more information please see Qt Help Project / Custom +# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- +# filters). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_CUST_FILTER_ATTRS = + +# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this +# project's filter section matches. Qt Help Project / Filter Attributes (see: +# http://qt-project.org/doc/qt-4.8/qthelpproject.html#filter-attributes). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_SECT_FILTER_ATTRS = + +# The QHG_LOCATION tag can be used to specify the location of Qt's +# qhelpgenerator. If non-empty doxygen will try to run qhelpgenerator on the +# generated .qhp file. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHG_LOCATION = + +# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be +# generated, together with the HTML files, they form an Eclipse help plugin. To +# install this plugin and make it available under the help contents menu in +# Eclipse, the contents of the directory containing the HTML and XML files needs +# to be copied into the plugins directory of eclipse. The name of the directory +# within the plugins directory should be the same as the ECLIPSE_DOC_ID value. +# After copying Eclipse needs to be restarted before the help appears. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_ECLIPSEHELP = NO + +# A unique identifier for the Eclipse help plugin. When installing the plugin +# the directory name containing the HTML and XML files should also have this +# name. Each documentation set should have its own identifier. +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES. + +ECLIPSE_DOC_ID = org.doxygen.Project + +# If you want full control over the layout of the generated HTML pages it might +# be necessary to disable the index and replace it with your own. The +# DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top +# of each HTML page. A value of NO enables the index and the value YES disables +# it. Since the tabs in the index contain the same information as the navigation +# tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +DISABLE_INDEX = NO + +# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index +# structure should be generated to display hierarchical information. If the tag +# value 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 +# (i.e. any modern browser). Windows users are probably better off using the +# HTML help feature. Via custom stylesheets (see HTML_EXTRA_STYLESHEET) one can +# further fine-tune the look of the index. As an example, the default style +# sheet generated by doxygen has an example that shows how to put an image at +# the root of the tree instead of the PROJECT_NAME. Since the tree basically has +# the same information as the tab index, you could consider setting +# DISABLE_INDEX to YES when enabling this option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_TREEVIEW = YES + +# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that +# doxygen will group on one line in the generated HTML documentation. +# +# Note that a value of 0 will completely suppress the enum values from appearing +# in the overview section. +# Minimum value: 0, maximum value: 20, default value: 4. +# This tag requires that the tag GENERATE_HTML is set to YES. + +ENUM_VALUES_PER_LINE = 4 + +# 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. +# Minimum value: 0, maximum value: 1500, default value: 250. +# This tag requires that the tag GENERATE_HTML is set to YES. + +TREEVIEW_WIDTH = 250 + +# When the EXT_LINKS_IN_WINDOW option is set to YES doxygen will open links to +# external symbols imported via tag files in a separate window. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +EXT_LINKS_IN_WINDOW = NO + +# Use this tag to change the font size of LaTeX formulas included as images in +# the HTML documentation. When you change the font size after a successful +# doxygen run you need to manually remove any form_*.png images from the HTML +# output directory to force them to be regenerated. +# Minimum value: 8, maximum value: 50, default value: 10. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FORMULA_FONTSIZE = 10 + +# Use the FORMULA_TRANPARENT tag to determine whether or not the images +# generated for formulas are transparent PNGs. Transparent PNGs are not +# supported properly for IE 6.0, but are supported on all modern browsers. +# +# Note that when changing this option you need to delete any form_*.png files in +# the HTML output directory before the changes have effect. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FORMULA_TRANSPARENT = YES + +# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see +# http://www.mathjax.org) which uses client side Javascript for the rendering +# instead of using prerendered bitmaps. Use this if you do not have LaTeX +# installed or if you want to formulas look prettier in the HTML output. When +# enabled you may also need to install MathJax separately and configure the path +# to it using the MATHJAX_RELPATH option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +USE_MATHJAX = NO + +# When MathJax is enabled you can set the default output format to be used for +# the MathJax output. See the MathJax site (see: +# http://docs.mathjax.org/en/latest/output.html) for more details. +# Possible values are: HTML-CSS (which is slower, but has the best +# compatibility), NativeMML (i.e. MathML) and SVG. +# The default value is: HTML-CSS. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_FORMAT = HTML-CSS + +# When MathJax is enabled you need to specify the location relative to the HTML +# output directory using the MATHJAX_RELPATH option. The destination directory +# should contain the MathJax.js script. For instance, if the mathjax directory +# is located at the same level as the HTML output directory, then +# MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax +# Content Delivery Network so you can quickly see the result without installing +# MathJax. However, it is strongly recommended to install a local copy of +# MathJax from http://www.mathjax.org before deployment. +# The default value is: http://cdn.mathjax.org/mathjax/latest. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest + +# The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax +# extension names that should be enabled during MathJax rendering. For example +# MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_EXTENSIONS = + +# The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces +# of code that will be used on startup of the MathJax code. See the MathJax site +# (see: http://docs.mathjax.org/en/latest/output.html) for more details. For an +# example see the documentation. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_CODEFILE = + +# When the SEARCHENGINE tag is enabled doxygen will generate a search box for +# the HTML output. The underlying search engine uses javascript and DHTML and +# should work on any modern browser. Note that when using HTML help +# (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET) +# there is already a search function so this one should typically be disabled. +# For large projects the javascript based search engine can be slow, then +# enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to +# search using the keyboard; to jump to the search box use + S +# (what the is depends on the OS and browser, but it is typically +# , /