middle of porting; unstable, don't checkout, src compiles; refs #1
This commit is contained in:
		@@ -203,12 +203,12 @@ extern "C" void __cyg_profile_func_enter(void *this_fn, void*) {
 | 
			
		||||
      if (hierarchy=="") hierarchy = "global";
 | 
			
		||||
      std::string name("mrw.fn."+hierarchy);
 | 
			
		||||
      log4cxx::Logger* logger
 | 
			
		||||
        (log4cxx::Logger::getLogger(log4cxx::String(name.begin(), name.end())));
 | 
			
		||||
        (log4cxx::Logger::getLogger(log4cxx::LogString(name.begin(), name.end())));
 | 
			
		||||
      if (logger->isDebugEnabled()) {
 | 
			
		||||
        std::basic_ostringstream<log4cxx::String::value_type> ss;
 | 
			
		||||
        std::basic_ostringstream<log4cxx::LogString::value_type> ss;
 | 
			
		||||
        ss<<std::setw(2+mrw::info.level++)
 | 
			
		||||
          <<std::setfill(log4cxx::String::value_type(' '))
 | 
			
		||||
          <<"\\ "<<log4cxx::String(pos.function.begin(), pos.function.end());
 | 
			
		||||
          <<std::setfill(log4cxx::LogString::value_type(' '))
 | 
			
		||||
          <<"\\ "<<log4cxx::LogString(pos.function.begin(), pos.function.end());
 | 
			
		||||
        logger->forcedLog(MRW_LEVEL_DEBUG, ss.str(),
 | 
			
		||||
                          MRW_LOG4CXX_LOCATION);
 | 
			
		||||
      }
 | 
			
		||||
@@ -244,12 +244,12 @@ extern "C" void __cyg_profile_func_exit(void *this_fn, void*) {
 | 
			
		||||
      if (hierarchy=="") hierarchy = "global";
 | 
			
		||||
      std::string name("mrw.fn."+hierarchy);
 | 
			
		||||
      log4cxx::Logger* logger
 | 
			
		||||
        (log4cxx::Logger::getLogger(log4cxx::String(name.begin(), name.end())));
 | 
			
		||||
        (log4cxx::Logger::getLogger(log4cxx::LogString(name.begin(), name.end())));
 | 
			
		||||
      if (logger->isDebugEnabled()) {
 | 
			
		||||
        std::basic_ostringstream<log4cxx::String::value_type> ss;
 | 
			
		||||
        std::basic_ostringstream<log4cxx::LogString::value_type> ss;
 | 
			
		||||
        ss<<std::setw(2+--mrw::info.level)
 | 
			
		||||
          <<std::setfill(log4cxx::String::value_type(' '))
 | 
			
		||||
          <<"/ "<<log4cxx::String(pos.function.begin(), pos.function.end());
 | 
			
		||||
          <<std::setfill(log4cxx::LogString::value_type(' '))
 | 
			
		||||
          <<"/ "<<log4cxx::LogString(pos.function.begin(), pos.function.end());
 | 
			
		||||
        logger->forcedLog(MRW_LEVEL_DEBUG, ss.str(),
 | 
			
		||||
                          MRW_LOG4CXX_LOCATION);
 | 
			
		||||
      }
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										498
									
								
								src/makefile
									
									
									
									
									
								
							
							
						
						
									
										498
									
								
								src/makefile
									
									
									
									
									
								
							@@ -1,498 +0,0 @@
 | 
			
		||||
# makefile.in generated by automake 1.11.1 from makefile.am.
 | 
			
		||||
# src/makefile.  Generated from makefile.in by configure.
 | 
			
		||||
 | 
			
		||||
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
 | 
			
		||||
# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
 | 
			
		||||
# Inc.
 | 
			
		||||
# This Makefile.in is free software; the Free Software Foundation
 | 
			
		||||
# gives unlimited permission to copy and/or distribute it,
 | 
			
		||||
# with or without modifications, as long as this notice is preserved.
 | 
			
		||||
 | 
			
		||||
# This program is distributed in the hope that it will be useful,
 | 
			
		||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
 | 
			
		||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
 | 
			
		||||
# PARTICULAR PURPOSE.
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
pkgdatadir = $(datadir)/mrw-c++
 | 
			
		||||
pkgincludedir = $(includedir)/mrw-c++
 | 
			
		||||
pkglibdir = $(libdir)/mrw-c++
 | 
			
		||||
pkglibexecdir = $(libexecdir)/mrw-c++
 | 
			
		||||
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 = x86_64-unknown-linux-gnu
 | 
			
		||||
host_triplet = x86_64-unknown-linux-gnu
 | 
			
		||||
#am__append_1 = -I/opt/local/include
 | 
			
		||||
subdir = src
 | 
			
		||||
DIST_COMMON = $(include_HEADERS) $(srcdir)/${PACKAGENAME}.pc.in \
 | 
			
		||||
	$(srcdir)/makefile.am $(srcdir)/makefile.in \
 | 
			
		||||
	$(srcdir)/version.cxx.in
 | 
			
		||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 | 
			
		||||
am__aclocal_m4_deps = $(top_srcdir)/configure.in
 | 
			
		||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
 | 
			
		||||
	$(ACLOCAL_M4)
 | 
			
		||||
mkinstalldirs = $(install_sh) -d
 | 
			
		||||
CONFIG_CLEAN_FILES = version.cxx ${PACKAGENAME}.pc
 | 
			
		||||
CONFIG_CLEAN_VPATH_FILES =
 | 
			
		||||
SOURCES =
 | 
			
		||||
DIST_SOURCES =
 | 
			
		||||
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
 | 
			
		||||
am__vpath_adj = case $$p in \
 | 
			
		||||
    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
 | 
			
		||||
    *) f=$$p;; \
 | 
			
		||||
  esac;
 | 
			
		||||
am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
 | 
			
		||||
am__install_max = 40
 | 
			
		||||
am__nobase_strip_setup = \
 | 
			
		||||
  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
 | 
			
		||||
am__nobase_strip = \
 | 
			
		||||
  for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
 | 
			
		||||
am__nobase_list = $(am__nobase_strip_setup); \
 | 
			
		||||
  for p in $$list; do echo "$$p $$p"; done | \
 | 
			
		||||
  sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
 | 
			
		||||
  $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
 | 
			
		||||
    if (++n[$$2] == $(am__install_max)) \
 | 
			
		||||
      { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
 | 
			
		||||
    END { for (dir in files) print dir, files[dir] }'
 | 
			
		||||
am__base_list = \
 | 
			
		||||
  sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
 | 
			
		||||
  sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
 | 
			
		||||
am__installdirs = "$(DESTDIR)$(pkgconfigdir)" \
 | 
			
		||||
	"$(DESTDIR)$(pkgconfig2dir)" "$(DESTDIR)$(includedir)"
 | 
			
		||||
DATA = $(pkgconfig_DATA) $(pkgconfig2_DATA)
 | 
			
		||||
HEADERS = $(include_HEADERS)
 | 
			
		||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 | 
			
		||||
ACLOCAL = ${SHELL} /home/marc/svn/mrw-c++/missing --run aclocal-1.11
 | 
			
		||||
AMTAR = ${SHELL} /home/marc/svn/mrw-c++/missing --run tar
 | 
			
		||||
AM_CPPFLAGS = -DPACKAGEVERSION='"0.0.267"' -DPACKAGENAME='"mrw-c++"' $(am__append_1)
 | 
			
		||||
AM_CXXFLAGS = 
 | 
			
		||||
AR = ar
 | 
			
		||||
AUTOCONF = ${SHELL} /home/marc/svn/mrw-c++/missing --run autoconf
 | 
			
		||||
AUTOHEADER = ${SHELL} /home/marc/svn/mrw-c++/missing --run autoheader
 | 
			
		||||
AUTOMAKE = ${SHELL} /home/marc/svn/mrw-c++/missing --run automake-1.11
 | 
			
		||||
AWK = gawk
 | 
			
		||||
BUILDDATE = 10.12.2011/10.17
 | 
			
		||||
CC = gcc
 | 
			
		||||
CCDEPMODE = depmode=gcc3
 | 
			
		||||
CFLAGS = -g -O2
 | 
			
		||||
CPP = gcc -E
 | 
			
		||||
CPPFLAGS = 
 | 
			
		||||
CPPUNIT_CFLAGS = 
 | 
			
		||||
CPPUNIT_CONFIG = /usr/bin/cppunit-config
 | 
			
		||||
CPPUNIT_LIBS = -lcppunit -ldl
 | 
			
		||||
CXX = g++
 | 
			
		||||
CXXCPP = g++ -E
 | 
			
		||||
CXXDEPMODE = depmode=gcc3
 | 
			
		||||
CXXFLAGS = 
 | 
			
		||||
CYGPATH_W = echo
 | 
			
		||||
DATADIR = /usr/local/share
 | 
			
		||||
DEFS = -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DDATADIR=\"/usr/local/share\" -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\"
 | 
			
		||||
DEPDIR = .deps
 | 
			
		||||
DLLTOOL = false
 | 
			
		||||
DOC_DIR = doc
 | 
			
		||||
DSYMUTIL = 
 | 
			
		||||
DUMPBIN = 
 | 
			
		||||
ECHO_C = 
 | 
			
		||||
ECHO_N = -n
 | 
			
		||||
ECHO_T = 
 | 
			
		||||
EGREP = /bin/grep -E
 | 
			
		||||
EXEEXT = 
 | 
			
		||||
FGREP = /bin/grep -F
 | 
			
		||||
GREP = /bin/grep
 | 
			
		||||
HAVE_DOT = NO
 | 
			
		||||
HOME = /home/marc
 | 
			
		||||
INSTALL = /usr/bin/install -c
 | 
			
		||||
INSTALL_DATA = ${INSTALL} -m 644
 | 
			
		||||
INSTALL_PROGRAM = ${INSTALL}
 | 
			
		||||
INSTALL_SCRIPT = ${INSTALL}
 | 
			
		||||
INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
 | 
			
		||||
LD = /usr/bin/ld -m elf_x86_64
 | 
			
		||||
LDFLAGS = 
 | 
			
		||||
LEAST = 267
 | 
			
		||||
LIBOBJS = 
 | 
			
		||||
LIBS = 
 | 
			
		||||
LIBTOOL = $(SHELL) $(top_builddir)/libtool
 | 
			
		||||
LIB_VERSION = 0:267:0
 | 
			
		||||
LIPO = 
 | 
			
		||||
LN_S = ln -s
 | 
			
		||||
LTLIBOBJS = 
 | 
			
		||||
MAJOR = 0
 | 
			
		||||
MAKEINFO = ${SHELL} /home/marc/svn/mrw-c++/missing --run makeinfo
 | 
			
		||||
MANIFEST_TOOL = :
 | 
			
		||||
MINOR = 0
 | 
			
		||||
MKDIR_P = /bin/mkdir -p
 | 
			
		||||
NM = /usr/bin/nm -B
 | 
			
		||||
NMEDIT = 
 | 
			
		||||
OBJDUMP = objdump
 | 
			
		||||
OBJEXT = o
 | 
			
		||||
OTOOL = 
 | 
			
		||||
OTOOL64 = 
 | 
			
		||||
PACKAGE = mrw-c++
 | 
			
		||||
PACKAGENAME = mrw-c++
 | 
			
		||||
PACKAGE_BUGREPORT = 
 | 
			
		||||
PACKAGE_NAME = 
 | 
			
		||||
PACKAGE_STRING = 
 | 
			
		||||
PACKAGE_TARNAME = 
 | 
			
		||||
PACKAGE_URL = 
 | 
			
		||||
PACKAGE_VERSION = 
 | 
			
		||||
PATH_SEPARATOR = :
 | 
			
		||||
PKG_CONFIG = /usr/bin/pkg-config
 | 
			
		||||
PKG_CONFIG_LIBDIR = 
 | 
			
		||||
PKG_CONFIG_PATH = 
 | 
			
		||||
RANLIB = ranlib
 | 
			
		||||
SED = /bin/sed
 | 
			
		||||
SET_MAKE = 
 | 
			
		||||
SHELL = /bin/bash
 | 
			
		||||
SRCDIR = .
 | 
			
		||||
SRC_DIR = src
 | 
			
		||||
STRIP = strip
 | 
			
		||||
THREADS = 
 | 
			
		||||
TST_DIR = test
 | 
			
		||||
VERSION = 0.0.267
 | 
			
		||||
abs_builddir = /home/marc/svn/mrw-c++/src
 | 
			
		||||
abs_srcdir = /home/marc/svn/mrw-c++/src
 | 
			
		||||
abs_top_builddir = /home/marc/svn/mrw-c++
 | 
			
		||||
abs_top_srcdir = /home/marc/svn/mrw-c++
 | 
			
		||||
ac_ct_AR = ar
 | 
			
		||||
ac_ct_CC = gcc
 | 
			
		||||
ac_ct_CXX = g++
 | 
			
		||||
ac_ct_DUMPBIN = 
 | 
			
		||||
am__include = include
 | 
			
		||||
am__leading_dot = .
 | 
			
		||||
am__quote = 
 | 
			
		||||
am__tar = ${AMTAR} chof - "$$tardir"
 | 
			
		||||
am__untar = ${AMTAR} xf -
 | 
			
		||||
bindir = ${exec_prefix}/bin
 | 
			
		||||
build = x86_64-unknown-linux-gnu
 | 
			
		||||
build_alias = 
 | 
			
		||||
build_cpu = x86_64
 | 
			
		||||
build_os = linux-gnu
 | 
			
		||||
build_vendor = unknown
 | 
			
		||||
builddir = .
 | 
			
		||||
datadir = ${datarootdir}
 | 
			
		||||
datarootdir = ${prefix}/share
 | 
			
		||||
docdir = ${datarootdir}/doc/${PACKAGE}
 | 
			
		||||
dvidir = ${docdir}
 | 
			
		||||
exec_prefix = ${prefix}
 | 
			
		||||
have_dot = yes
 | 
			
		||||
have_doxygen = yes
 | 
			
		||||
host = x86_64-unknown-linux-gnu
 | 
			
		||||
host_alias = 
 | 
			
		||||
host_cpu = x86_64
 | 
			
		||||
host_os = linux-gnu
 | 
			
		||||
host_vendor = unknown
 | 
			
		||||
htmldir = ${docdir}
 | 
			
		||||
includedir = ${prefix}/include
 | 
			
		||||
infodir = ${datarootdir}/info
 | 
			
		||||
install_sh = ${SHELL} /home/marc/svn/mrw-c++/install-sh
 | 
			
		||||
libdir = ${exec_prefix}/lib
 | 
			
		||||
libexecdir = ${exec_prefix}/libexec
 | 
			
		||||
localedir = ${datarootdir}/locale
 | 
			
		||||
localstatedir = ${prefix}/var
 | 
			
		||||
mandir = ${datarootdir}/man
 | 
			
		||||
mkdir_p = /bin/mkdir -p
 | 
			
		||||
oldincludedir = /usr/include
 | 
			
		||||
pdfdir = ${docdir}
 | 
			
		||||
prefix = /usr/local
 | 
			
		||||
program_transform_name = s,x,x,
 | 
			
		||||
psdir = ${docdir}
 | 
			
		||||
sbindir = ${exec_prefix}/sbin
 | 
			
		||||
sharedstatedir = ${prefix}/com
 | 
			
		||||
srcdir = .
 | 
			
		||||
sysconfdir = ${prefix}/etc
 | 
			
		||||
target_alias = 
 | 
			
		||||
top_build_prefix = ../
 | 
			
		||||
top_builddir = ..
 | 
			
		||||
top_srcdir = ..
 | 
			
		||||
include_HEADERS = 
 | 
			
		||||
# -I/Library/OpenSC/include
 | 
			
		||||
#AM_LDFLAGS = -L/opt/local/lib
 | 
			
		||||
# -F/System/Library/Frameworks/PCSC.framework
 | 
			
		||||
# AM_CPPFLAGS += -I/usr/include/PCSC
 | 
			
		||||
pkgconfigdir = $(libdir)/pkgconfig
 | 
			
		||||
pkgconfig_DATA = mrw-c++.pc
 | 
			
		||||
pkgconfig2dir = $(datarootdir)/pkgconfig
 | 
			
		||||
pkgconfig2_DATA = $(pkgconfig_DATA)
 | 
			
		||||
EXTRA_DIST = $(pkgconfig_DATA).in $(shell ls -1 *.doc)
 | 
			
		||||
libmrw-c++_la_LIBADD = 
 | 
			
		||||
# libmrw-c++_la_LIBADD += -lpcsclite
 | 
			
		||||
libmrw-c++_LDFLAGS = -version-info ${LIB_VERSION}
 | 
			
		||||
CLEANFILES = 
 | 
			
		||||
DISTCLEANFILES = $(pkgconfig_DATA)
 | 
			
		||||
MAINTAINERCLEANFILES = makefile.in
 | 
			
		||||
all: all-am
 | 
			
		||||
 | 
			
		||||
.SUFFIXES:
 | 
			
		||||
$(srcdir)/makefile.in:  $(srcdir)/makefile.am  $(am__configure_deps)
 | 
			
		||||
	@for dep in $?; do \
 | 
			
		||||
	  case '$(am__configure_deps)' in \
 | 
			
		||||
	    *$$dep*) \
 | 
			
		||||
	      ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
 | 
			
		||||
	        && { if test -f $@; then exit 0; else break; fi; }; \
 | 
			
		||||
	      exit 1;; \
 | 
			
		||||
	  esac; \
 | 
			
		||||
	done; \
 | 
			
		||||
	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/makefile'; \
 | 
			
		||||
	$(am__cd) $(top_srcdir) && \
 | 
			
		||||
	  $(AUTOMAKE) --gnu src/makefile
 | 
			
		||||
.PRECIOUS: makefile
 | 
			
		||||
makefile: $(srcdir)/makefile.in $(top_builddir)/config.status
 | 
			
		||||
	@case '$?' in \
 | 
			
		||||
	  *config.status*) \
 | 
			
		||||
	    cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
 | 
			
		||||
	  *) \
 | 
			
		||||
	    echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
 | 
			
		||||
	    cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
 | 
			
		||||
	esac;
 | 
			
		||||
 | 
			
		||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
 | 
			
		||||
	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 | 
			
		||||
 | 
			
		||||
$(top_srcdir)/configure:  $(am__configure_deps)
 | 
			
		||||
	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 | 
			
		||||
$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 | 
			
		||||
	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 | 
			
		||||
$(am__aclocal_m4_deps):
 | 
			
		||||
version.cxx: $(top_builddir)/config.status $(srcdir)/version.cxx.in
 | 
			
		||||
	cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
 | 
			
		||||
${PACKAGENAME}.pc: $(top_builddir)/config.status $(srcdir)/${PACKAGENAME}.pc.in
 | 
			
		||||
	cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
 | 
			
		||||
 | 
			
		||||
mostlyclean-libtool:
 | 
			
		||||
	-rm -f *.lo
 | 
			
		||||
 | 
			
		||||
clean-libtool:
 | 
			
		||||
	-rm -rf .libs _libs
 | 
			
		||||
install-pkgconfigDATA: $(pkgconfig_DATA)
 | 
			
		||||
	@$(NORMAL_INSTALL)
 | 
			
		||||
	test -z "$(pkgconfigdir)" || $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)"
 | 
			
		||||
	@list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
 | 
			
		||||
	for p in $$list; do \
 | 
			
		||||
	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
 | 
			
		||||
	  echo "$$d$$p"; \
 | 
			
		||||
	done | $(am__base_list) | \
 | 
			
		||||
	while read files; do \
 | 
			
		||||
	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgconfigdir)'"; \
 | 
			
		||||
	  $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgconfigdir)" || exit $$?; \
 | 
			
		||||
	done
 | 
			
		||||
 | 
			
		||||
uninstall-pkgconfigDATA:
 | 
			
		||||
	@$(NORMAL_UNINSTALL)
 | 
			
		||||
	@list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
 | 
			
		||||
	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
 | 
			
		||||
	test -n "$$files" || exit 0; \
 | 
			
		||||
	echo " ( cd '$(DESTDIR)$(pkgconfigdir)' && rm -f" $$files ")"; \
 | 
			
		||||
	cd "$(DESTDIR)$(pkgconfigdir)" && rm -f $$files
 | 
			
		||||
install-pkgconfig2DATA: $(pkgconfig2_DATA)
 | 
			
		||||
	@$(NORMAL_INSTALL)
 | 
			
		||||
	test -z "$(pkgconfig2dir)" || $(MKDIR_P) "$(DESTDIR)$(pkgconfig2dir)"
 | 
			
		||||
	@list='$(pkgconfig2_DATA)'; test -n "$(pkgconfig2dir)" || list=; \
 | 
			
		||||
	for p in $$list; do \
 | 
			
		||||
	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
 | 
			
		||||
	  echo "$$d$$p"; \
 | 
			
		||||
	done | $(am__base_list) | \
 | 
			
		||||
	while read files; do \
 | 
			
		||||
	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgconfig2dir)'"; \
 | 
			
		||||
	  $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgconfig2dir)" || exit $$?; \
 | 
			
		||||
	done
 | 
			
		||||
 | 
			
		||||
uninstall-pkgconfig2DATA:
 | 
			
		||||
	@$(NORMAL_UNINSTALL)
 | 
			
		||||
	@list='$(pkgconfig2_DATA)'; test -n "$(pkgconfig2dir)" || list=; \
 | 
			
		||||
	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
 | 
			
		||||
	test -n "$$files" || exit 0; \
 | 
			
		||||
	echo " ( cd '$(DESTDIR)$(pkgconfig2dir)' && rm -f" $$files ")"; \
 | 
			
		||||
	cd "$(DESTDIR)$(pkgconfig2dir)" && rm -f $$files
 | 
			
		||||
install-includeHEADERS: $(include_HEADERS)
 | 
			
		||||
	@$(NORMAL_INSTALL)
 | 
			
		||||
	test -z "$(includedir)" || $(MKDIR_P) "$(DESTDIR)$(includedir)"
 | 
			
		||||
	@list='$(include_HEADERS)'; test -n "$(includedir)" || list=; \
 | 
			
		||||
	for p in $$list; do \
 | 
			
		||||
	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
 | 
			
		||||
	  echo "$$d$$p"; \
 | 
			
		||||
	done | $(am__base_list) | \
 | 
			
		||||
	while read files; do \
 | 
			
		||||
	  echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(includedir)'"; \
 | 
			
		||||
	  $(INSTALL_HEADER) $$files "$(DESTDIR)$(includedir)" || exit $$?; \
 | 
			
		||||
	done
 | 
			
		||||
 | 
			
		||||
uninstall-includeHEADERS:
 | 
			
		||||
	@$(NORMAL_UNINSTALL)
 | 
			
		||||
	@list='$(include_HEADERS)'; test -n "$(includedir)" || list=; \
 | 
			
		||||
	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
 | 
			
		||||
	test -n "$$files" || exit 0; \
 | 
			
		||||
	echo " ( cd '$(DESTDIR)$(includedir)' && rm -f" $$files ")"; \
 | 
			
		||||
	cd "$(DESTDIR)$(includedir)" && rm -f $$files
 | 
			
		||||
tags: TAGS
 | 
			
		||||
TAGS:
 | 
			
		||||
 | 
			
		||||
ctags: CTAGS
 | 
			
		||||
CTAGS:
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
distdir: $(DISTFILES)
 | 
			
		||||
	@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
 | 
			
		||||
	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
 | 
			
		||||
	list='$(DISTFILES)'; \
 | 
			
		||||
	  dist_files=`for file in $$list; do echo $$file; done | \
 | 
			
		||||
	  sed -e "s|^$$srcdirstrip/||;t" \
 | 
			
		||||
	      -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
 | 
			
		||||
	case $$dist_files in \
 | 
			
		||||
	  */*) $(MKDIR_P) `echo "$$dist_files" | \
 | 
			
		||||
			   sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
 | 
			
		||||
			   sort -u` ;; \
 | 
			
		||||
	esac; \
 | 
			
		||||
	for file in $$dist_files; do \
 | 
			
		||||
	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
 | 
			
		||||
	  if test -d $$d/$$file; then \
 | 
			
		||||
	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
 | 
			
		||||
	    if test -d "$(distdir)/$$file"; then \
 | 
			
		||||
	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
 | 
			
		||||
	    fi; \
 | 
			
		||||
	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
 | 
			
		||||
	      cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
 | 
			
		||||
	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
 | 
			
		||||
	    fi; \
 | 
			
		||||
	    cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
 | 
			
		||||
	  else \
 | 
			
		||||
	    test -f "$(distdir)/$$file" \
 | 
			
		||||
	    || cp -p $$d/$$file "$(distdir)/$$file" \
 | 
			
		||||
	    || exit 1; \
 | 
			
		||||
	  fi; \
 | 
			
		||||
	done
 | 
			
		||||
check-am: all-am
 | 
			
		||||
check: check-am
 | 
			
		||||
all-am: makefile $(DATA) $(HEADERS)
 | 
			
		||||
installdirs:
 | 
			
		||||
	for dir in "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(pkgconfig2dir)" "$(DESTDIR)$(includedir)"; do \
 | 
			
		||||
	  test -z "$$dir" || $(MKDIR_P) "$$dir"; \
 | 
			
		||||
	done
 | 
			
		||||
install: install-am
 | 
			
		||||
install-exec: install-exec-am
 | 
			
		||||
install-data: install-data-am
 | 
			
		||||
uninstall: uninstall-am
 | 
			
		||||
 | 
			
		||||
install-am: all-am
 | 
			
		||||
	@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
 | 
			
		||||
 | 
			
		||||
installcheck: installcheck-am
 | 
			
		||||
install-strip:
 | 
			
		||||
	$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 | 
			
		||||
	  install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 | 
			
		||||
	  `test -z '$(STRIP)' || \
 | 
			
		||||
	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
 | 
			
		||||
mostlyclean-generic:
 | 
			
		||||
 | 
			
		||||
clean-generic:
 | 
			
		||||
	-test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
 | 
			
		||||
 | 
			
		||||
distclean-generic:
 | 
			
		||||
	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
 | 
			
		||||
	-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
 | 
			
		||||
	-test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
 | 
			
		||||
 | 
			
		||||
maintainer-clean-generic:
 | 
			
		||||
	@echo "This command is intended for maintainers to use"
 | 
			
		||||
	@echo "it deletes files that may require special tools to rebuild."
 | 
			
		||||
	-test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
 | 
			
		||||
clean: clean-am
 | 
			
		||||
 | 
			
		||||
clean-am: clean-generic clean-libtool mostlyclean-am
 | 
			
		||||
 | 
			
		||||
distclean: distclean-am
 | 
			
		||||
	-rm -f makefile
 | 
			
		||||
distclean-am: clean-am distclean-generic
 | 
			
		||||
 | 
			
		||||
dvi: dvi-am
 | 
			
		||||
 | 
			
		||||
dvi-am:
 | 
			
		||||
 | 
			
		||||
html: html-am
 | 
			
		||||
 | 
			
		||||
html-am:
 | 
			
		||||
 | 
			
		||||
info: info-am
 | 
			
		||||
 | 
			
		||||
info-am:
 | 
			
		||||
 | 
			
		||||
install-data-am: install-includeHEADERS install-pkgconfig2DATA \
 | 
			
		||||
	install-pkgconfigDATA
 | 
			
		||||
 | 
			
		||||
install-dvi: install-dvi-am
 | 
			
		||||
 | 
			
		||||
install-dvi-am:
 | 
			
		||||
 | 
			
		||||
install-exec-am:
 | 
			
		||||
 | 
			
		||||
install-html: install-html-am
 | 
			
		||||
 | 
			
		||||
install-html-am:
 | 
			
		||||
 | 
			
		||||
install-info: install-info-am
 | 
			
		||||
 | 
			
		||||
install-info-am:
 | 
			
		||||
 | 
			
		||||
install-man:
 | 
			
		||||
 | 
			
		||||
install-pdf: install-pdf-am
 | 
			
		||||
 | 
			
		||||
install-pdf-am:
 | 
			
		||||
 | 
			
		||||
install-ps: install-ps-am
 | 
			
		||||
 | 
			
		||||
install-ps-am:
 | 
			
		||||
 | 
			
		||||
installcheck-am:
 | 
			
		||||
 | 
			
		||||
maintainer-clean: maintainer-clean-am
 | 
			
		||||
	-rm -f makefile
 | 
			
		||||
maintainer-clean-am: distclean-am maintainer-clean-generic
 | 
			
		||||
 | 
			
		||||
mostlyclean: mostlyclean-am
 | 
			
		||||
 | 
			
		||||
mostlyclean-am: mostlyclean-generic mostlyclean-libtool
 | 
			
		||||
 | 
			
		||||
pdf: pdf-am
 | 
			
		||||
 | 
			
		||||
pdf-am:
 | 
			
		||||
 | 
			
		||||
ps: ps-am
 | 
			
		||||
 | 
			
		||||
ps-am:
 | 
			
		||||
 | 
			
		||||
uninstall-am: uninstall-includeHEADERS uninstall-pkgconfig2DATA \
 | 
			
		||||
	uninstall-pkgconfigDATA
 | 
			
		||||
 | 
			
		||||
.MAKE: install-am install-strip
 | 
			
		||||
 | 
			
		||||
.PHONY: all all-am check check-am clean clean-generic clean-libtool \
 | 
			
		||||
	distclean distclean-generic distclean-libtool distdir dvi \
 | 
			
		||||
	dvi-am html html-am info info-am install install-am \
 | 
			
		||||
	install-data install-data-am install-dvi install-dvi-am \
 | 
			
		||||
	install-exec install-exec-am install-html install-html-am \
 | 
			
		||||
	install-includeHEADERS install-info install-info-am \
 | 
			
		||||
	install-man install-pdf install-pdf-am install-pkgconfig2DATA \
 | 
			
		||||
	install-pkgconfigDATA install-ps install-ps-am install-strip \
 | 
			
		||||
	installcheck installcheck-am installdirs maintainer-clean \
 | 
			
		||||
	maintainer-clean-generic mostlyclean mostlyclean-generic \
 | 
			
		||||
	mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \
 | 
			
		||||
	uninstall-includeHEADERS uninstall-pkgconfig2DATA \
 | 
			
		||||
	uninstall-pkgconfigDATA
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
 | 
			
		||||
# Otherwise a system limit (for SysV at least) may be exceeded.
 | 
			
		||||
.NOEXPORT:
 | 
			
		||||
							
								
								
									
										186
									
								
								src/makefile.am
									
									
									
									
									
								
							
							
						
						
									
										186
									
								
								src/makefile.am
									
									
									
									
									
								
							@@ -5,17 +5,19 @@
 | 
			
		||||
##       1         2         3         4         5         6         7         8
 | 
			
		||||
## 45678901234567890123456789012345678901234567890123456789012345678901234567890
 | 
			
		||||
 | 
			
		||||
include_HEADERS = 
 | 
			
		||||
nobase_include_HEADERS = mrw/arg.hxx mrw/auto.hxx mrw/configfile.hxx	\
 | 
			
		||||
                         mrw/deque.hxx mrw/dynamiclibrary.hxx		\
 | 
			
		||||
                         mrw/errno.hxx mrw/exception.hxx mrw/exec.hxx	\
 | 
			
		||||
                         mrw/file.hxx mrw/functiontrace.hxx		\
 | 
			
		||||
                         mrw/list.hxx mrw/map.hxx mrw/multimap.hxx	\
 | 
			
		||||
                         mrw/multiset.hxx mrw/regexp.hxx mrw/set.hxx	\
 | 
			
		||||
                         mrw/smartpointer.hxx mrw/stacktrace.hxx	\
 | 
			
		||||
                         mrw/stdext.hxx mrw/string.hxx			\
 | 
			
		||||
                         mrw/tokenizer.hxx mrw/unistd.hxx		\
 | 
			
		||||
                         mrw/vector.hxx
 | 
			
		||||
 | 
			
		||||
if !MINGW32
 | 
			
		||||
if MAC
 | 
			
		||||
AM_CPPFLAGS += -I/opt/local/include
 | 
			
		||||
# -I/Library/OpenSC/include
 | 
			
		||||
AM_LDFLAGS = -L/opt/local/lib
 | 
			
		||||
# -F/System/Library/Frameworks/PCSC.framework
 | 
			
		||||
else
 | 
			
		||||
# AM_CPPFLAGS += -I/usr/include/PCSC
 | 
			
		||||
endif
 | 
			
		||||
if HAVE_STACKTRACE
 | 
			
		||||
  AM_CPPFLAGS += -DHAVE_STACKTRACE
 | 
			
		||||
endif
 | 
			
		||||
 | 
			
		||||
pkgconfigdir = $(libdir)/pkgconfig
 | 
			
		||||
@@ -23,16 +25,168 @@ pkgconfig_DATA = @PACKAGENAME@.pc
 | 
			
		||||
pkgconfig2dir = $(datarootdir)/pkgconfig
 | 
			
		||||
pkgconfig2_DATA = $(pkgconfig_DATA)
 | 
			
		||||
 | 
			
		||||
EXTRA_DIST = $(pkgconfig_DATA).in $(shell ls -1 *.doc)
 | 
			
		||||
EXTRA_DIST = $(pkgconfig_DATA).in
 | 
			
		||||
 | 
			
		||||
lib@PACKAGENAME@_la_LIBADD =
 | 
			
		||||
if !MINGW32
 | 
			
		||||
if !MAC
 | 
			
		||||
# lib@PACKAGENAME@_la_LIBADD += -lpcsclite
 | 
			
		||||
LDFLAGS = -version-info ${LIB_VERSION}
 | 
			
		||||
 | 
			
		||||
lib_LTLIBRARIES = libmrw.la
 | 
			
		||||
if HAVE_BOOST_THREAD
 | 
			
		||||
  lib_LTLIBRARIES += libmrw-mt.la
 | 
			
		||||
endif
 | 
			
		||||
if HAVE_STACKTRACE
 | 
			
		||||
 lib_LTLIBRARIES += libmrwexcstderr.la
 | 
			
		||||
if HAVE_THREADS
 | 
			
		||||
if HAVE_BOOST_THREAD
 | 
			
		||||
    lib_LTLIBRARIES += libmrwexcstderr-mt.la
 | 
			
		||||
endif
 | 
			
		||||
endif
 | 
			
		||||
if AUTOFNTRACE
 | 
			
		||||
    lib_LTLIBRARIES += libmrwautofunctiontracestdlog.la
 | 
			
		||||
if HAVE_THREADS
 | 
			
		||||
if HAVE_BOOST_THREAD
 | 
			
		||||
      lib_LTLIBRARIES += libmrwautofunctiontracestdlog-mt.la
 | 
			
		||||
endif
 | 
			
		||||
endif
 | 
			
		||||
endif
 | 
			
		||||
if HAVE_LOG4CXX
 | 
			
		||||
    lib_LTLIBRARIES += libmrwexclog4cxx.la
 | 
			
		||||
if HAVE_BOOST_THREAD
 | 
			
		||||
    lib_LTLIBRARIES += libmrwexclog4cxx-mt.la
 | 
			
		||||
endif
 | 
			
		||||
if AUTOFNTRACE
 | 
			
		||||
    lib_LTLIBRARIES += libmrwautofunctiontracelog4cxx.la
 | 
			
		||||
if HAVE_THREADS
 | 
			
		||||
if HAVE_BOOST_THREAD
 | 
			
		||||
      lib_LTLIBRARIES += libmrwautofunctiontracelog4cxx-mt.la
 | 
			
		||||
endif
 | 
			
		||||
endif
 | 
			
		||||
endif
 | 
			
		||||
endif
 | 
			
		||||
endif
 | 
			
		||||
if HAVE_LOG4CXX
 | 
			
		||||
    lib_LTLIBRARIES += libmrwlog4cxxconfiguration.la
 | 
			
		||||
if HAVE_THREADS
 | 
			
		||||
    lib_LTLIBRARIES += libmrwlog4cxxconfiguration-mt.la
 | 
			
		||||
endif
 | 
			
		||||
endif
 | 
			
		||||
 | 
			
		||||
lib@PACKAGENAME@_LDFLAGS = -version-info ${LIB_VERSION}
 | 
			
		||||
libmrw_la_SOURCES = mrw/mrw.hxx version.cxx arg.cxx mrw/arg.hxx		\
 | 
			
		||||
                    mrw/auto.hxx mrw/deque.hxx exception.cxx		\
 | 
			
		||||
                    mrw/exception.hxx mrw/list.hxx mrw/map.hxx		\
 | 
			
		||||
                    mrw/multimap.hxx mrw/multiset.hxx mrw/set.hxx	\
 | 
			
		||||
                    mrw/smartpointer.hxx stdext.cxx mrw/stdext.hxx	\
 | 
			
		||||
                    mrw/string.hxx mrw/unistd.hxx mrw/vector.hxx	\
 | 
			
		||||
                    mrw/tokenizer.hxx mrw/errno.hxx errno.cxx
 | 
			
		||||
if HAVE_DIR
 | 
			
		||||
  libmrw_la_SOURCES += mrw/file.hxx mrw/configfile.hxx configfile.cxx
 | 
			
		||||
endif
 | 
			
		||||
if HAVE_REGEXP
 | 
			
		||||
  libmrw_la_SOURCES += mrw/regexp.hxx regexp.cxx
 | 
			
		||||
endif
 | 
			
		||||
if HAVE_EXEC
 | 
			
		||||
  libmrw_la_SOURCES += exec.cxx mrw/exec.hxx
 | 
			
		||||
endif
 | 
			
		||||
if HAVE_LTDL
 | 
			
		||||
  libmrw_la_SOURCES += mrw/dynamiclibrary.hxx
 | 
			
		||||
endif
 | 
			
		||||
if HAVE_LOG4CXX
 | 
			
		||||
  libmrw_la_SOURCES += functiontrace.cxx mrw/functiontrace.hxx
 | 
			
		||||
endif
 | 
			
		||||
if HAVE_STACKTRACE
 | 
			
		||||
libmrw_la_SOURCES += \
 | 
			
		||||
                     mrw/stacktrace.hxx stacktrace.cxx
 | 
			
		||||
endif
 | 
			
		||||
libmrw_la_LDFLAGS = -version-info @LIB_VERSION@
 | 
			
		||||
libmrw_la_LIBADD = 
 | 
			
		||||
if HAVE_STACKTRACE
 | 
			
		||||
libmrw_la_LIBADD += -lltdl
 | 
			
		||||
endif
 | 
			
		||||
 | 
			
		||||
if HAVE_THREADS
 | 
			
		||||
if HAVE_BOOST_THREAD
 | 
			
		||||
  libmrw_mt_la_SOURCES = $(libmrw_la_SOURCES)
 | 
			
		||||
  libmrw_mt_la_CXXFLAGS = @THREADS@
 | 
			
		||||
  libmrw_mt_la_LDFLAGS = $(libmrw_la_LDFLAGS) -version-info @LIB_VERSION@ \
 | 
			
		||||
                         @THREADS@
 | 
			
		||||
  libmrw_mt_la_LIBADD  = $(libmrw_la_LIBADD) @BOOST_THREAD_LIB@
 | 
			
		||||
endif
 | 
			
		||||
endif
 | 
			
		||||
 | 
			
		||||
if HAVE_STACKTRACE
 | 
			
		||||
  libmrwexcstderr_la_SOURCES = autostacktracestderr.cxx version.cxx
 | 
			
		||||
  libmrwexcstderr_la_LDFLAGS = -version-info @LIB_VERSION@
 | 
			
		||||
  libmrwexcstderr_la_LIBADD = libmrw.la
 | 
			
		||||
if HAVE_THREADS
 | 
			
		||||
if HAVE_BOOST_THREAD
 | 
			
		||||
    libmrwexcstderr_mt_la_SOURCES = autostacktracestderr.cxx version.cxx
 | 
			
		||||
    libmrwexcstderr_mt_la_CXXFLAGS = @THREADS@
 | 
			
		||||
    libmrwexcstderr_mt_la_LDFLAGS = -version-info @LIB_VERSION@ @THREADS@
 | 
			
		||||
    libmrwexcstderr_mt_la_LIBADD = libmrw-mt.la
 | 
			
		||||
endif
 | 
			
		||||
endif
 | 
			
		||||
if AUTOFNTRACE
 | 
			
		||||
    libmrwautofunctiontracestdlog_la_SOURCES = autofunctiontracestdlog.cxx \
 | 
			
		||||
                                               version.cxx
 | 
			
		||||
    libmrwautofunctiontracestdlog_la_CXXFLAGS = -w
 | 
			
		||||
    libmrwautofunctiontracestdlog_la_LDFLAGS = -version-info @LIB_VERSION@
 | 
			
		||||
    libmrwautofunctiontracestdlog_la_LIBADD  = libmrw.la
 | 
			
		||||
if HAVE_THREADS
 | 
			
		||||
if HAVE_BOOST_THREAD
 | 
			
		||||
      libmrwautofunctiontracestdlog_mt_la_SOURCES = \
 | 
			
		||||
        autofunctiontracelog4cxx.cxx  version.cxx
 | 
			
		||||
      libmrwautofunctiontracestdlog_mt_la_CXXFLAGS = @THREADS@ -w
 | 
			
		||||
      libmrwautofunctiontracestdlog_mt_la_LDFLAGS = \
 | 
			
		||||
        -version-info @LIB_VERSION@ @THREADS@
 | 
			
		||||
      libmrwautofunctiontracestdlog_mt_la_LIBADD  = \
 | 
			
		||||
        libmrw-mt.la
 | 
			
		||||
endif
 | 
			
		||||
endif
 | 
			
		||||
endif
 | 
			
		||||
if HAVE_LOG4CXX
 | 
			
		||||
    libmrwexclog4cxx_la_SOURCES = autostacktracelog4cxx.cxx version.cxx
 | 
			
		||||
    libmrwexclog4cxx_la_LDFLAGS = -version-info @LIB_VERSION@
 | 
			
		||||
    libmrwexclog4cxx_la_LIBADD = libmrw.la -llog4cxx
 | 
			
		||||
if HAVE_THREADS
 | 
			
		||||
if HAVE_BOOST_THREAD
 | 
			
		||||
      libmrwexclog4cxx_mt_la_SOURCES = autostacktracelog4cxx.cxx version.cxx
 | 
			
		||||
      libmrwexclog4cxx_mt_la_CXXFLAGS = @THREADS@
 | 
			
		||||
      libmrwexclog4cxx_mt_la_LDFLAGS = -version-info @LIB_VERSION@ @THREADS@
 | 
			
		||||
      libmrwexclog4cxx_mt_la_LIBADD = libmrw-mt.la -llog4cxx
 | 
			
		||||
endif
 | 
			
		||||
endif
 | 
			
		||||
if AUTOFNTRACE
 | 
			
		||||
    libmrwautofunctiontracelog4cxx_la_SOURCES = autofunctiontracelog4cxx.cxx \
 | 
			
		||||
                                                version.cxx
 | 
			
		||||
    libmrwautofunctiontracelog4cxx_la_CXXFLAGS = -w
 | 
			
		||||
    libmrwautofunctiontracelog4cxx_la_LDFLAGS = -version-info @LIB_VERSION@
 | 
			
		||||
    libmrwautofunctiontracelog4cxx_la_LIBADD  = libmrw.la -llog4cxx
 | 
			
		||||
if HAVE_THREADS
 | 
			
		||||
if HAVE_BOOST_THREAD
 | 
			
		||||
      libmrwautofunctiontracelog4cxx_mt_la_SOURCES = \
 | 
			
		||||
        autofunctiontracelog4cxx.cxx  version.cxx
 | 
			
		||||
      libmrwautofunctiontracelog4cxx_mt_la_CXXFLAGS = @THREADS@ -w
 | 
			
		||||
      libmrwautofunctiontracelog4cxx_mt_la_LDFLAGS = \
 | 
			
		||||
        -version-info @LIB_VERSION@ @THREADS@
 | 
			
		||||
      libmrwautofunctiontracelog4cxx_mt_la_LIBADD  = \
 | 
			
		||||
        libmrw-mt.la -llog4cxx
 | 
			
		||||
endif
 | 
			
		||||
endif
 | 
			
		||||
endif
 | 
			
		||||
endif
 | 
			
		||||
endif
 | 
			
		||||
if HAVE_LOG4CXX
 | 
			
		||||
  libmrwlog4cxxconfiguration_la_SOURCES = log4cxxconfiguration.cxx version.cxx
 | 
			
		||||
  libmrwlog4cxxconfiguration_la_LDFLAGS = -version-info @LIB_VERSION@
 | 
			
		||||
  libmrwlog4cxxconfiguration_la_LIBADD = -llog4cxx
 | 
			
		||||
if HAVE_THREADS
 | 
			
		||||
    libmrwlog4cxxconfiguration_mt_la_SOURCES = log4cxxconfiguration.cxx \
 | 
			
		||||
                                               version.cxx
 | 
			
		||||
    libmrwlog4cxxconfiguration_mt_la_CXXFLAGS = @THREADS@
 | 
			
		||||
    libmrwlog4cxxconfiguration_mt_la_LDFLAGS = -version-info @LIB_VERSION@ \
 | 
			
		||||
                                               @THREADS@
 | 
			
		||||
    libmrwlog4cxxconfiguration_mt_la_LIBADD = -llog4cxx
 | 
			
		||||
endif
 | 
			
		||||
endif
 | 
			
		||||
 | 
			
		||||
CLEANFILES =
 | 
			
		||||
DISTCLEANFILES = $(pkgconfig_DATA)
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										498
									
								
								src/makefile.in
									
									
									
									
									
								
							
							
						
						
									
										498
									
								
								src/makefile.in
									
									
									
									
									
								
							@@ -1,498 +0,0 @@
 | 
			
		||||
# makefile.in generated by automake 1.11.1 from makefile.am.
 | 
			
		||||
# @configure_input@
 | 
			
		||||
 | 
			
		||||
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
 | 
			
		||||
# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
 | 
			
		||||
# Inc.
 | 
			
		||||
# This Makefile.in is free software; the Free Software Foundation
 | 
			
		||||
# gives unlimited permission to copy and/or distribute it,
 | 
			
		||||
# with or without modifications, as long as this notice is preserved.
 | 
			
		||||
 | 
			
		||||
# This program is distributed in the hope that it will be useful,
 | 
			
		||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
 | 
			
		||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
 | 
			
		||||
# PARTICULAR PURPOSE.
 | 
			
		||||
 | 
			
		||||
@SET_MAKE@
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
VPATH = @srcdir@
 | 
			
		||||
pkgdatadir = $(datadir)/@PACKAGE@
 | 
			
		||||
pkgincludedir = $(includedir)/@PACKAGE@
 | 
			
		||||
pkglibdir = $(libdir)/@PACKAGE@
 | 
			
		||||
pkglibexecdir = $(libexecdir)/@PACKAGE@
 | 
			
		||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
 | 
			
		||||
install_sh_DATA = $(install_sh) -c -m 644
 | 
			
		||||
install_sh_PROGRAM = $(install_sh) -c
 | 
			
		||||
install_sh_SCRIPT = $(install_sh) -c
 | 
			
		||||
INSTALL_HEADER = $(INSTALL_DATA)
 | 
			
		||||
transform = $(program_transform_name)
 | 
			
		||||
NORMAL_INSTALL = :
 | 
			
		||||
PRE_INSTALL = :
 | 
			
		||||
POST_INSTALL = :
 | 
			
		||||
NORMAL_UNINSTALL = :
 | 
			
		||||
PRE_UNINSTALL = :
 | 
			
		||||
POST_UNINSTALL = :
 | 
			
		||||
build_triplet = @build@
 | 
			
		||||
host_triplet = @host@
 | 
			
		||||
@MAC_TRUE@@MINGW32_FALSE@am__append_1 = -I/opt/local/include
 | 
			
		||||
subdir = src
 | 
			
		||||
DIST_COMMON = $(include_HEADERS) $(srcdir)/${PACKAGENAME}.pc.in \
 | 
			
		||||
	$(srcdir)/makefile.am $(srcdir)/makefile.in \
 | 
			
		||||
	$(srcdir)/version.cxx.in
 | 
			
		||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 | 
			
		||||
am__aclocal_m4_deps = $(top_srcdir)/configure.in
 | 
			
		||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
 | 
			
		||||
	$(ACLOCAL_M4)
 | 
			
		||||
mkinstalldirs = $(install_sh) -d
 | 
			
		||||
CONFIG_CLEAN_FILES = version.cxx ${PACKAGENAME}.pc
 | 
			
		||||
CONFIG_CLEAN_VPATH_FILES =
 | 
			
		||||
SOURCES =
 | 
			
		||||
DIST_SOURCES =
 | 
			
		||||
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
 | 
			
		||||
am__vpath_adj = case $$p in \
 | 
			
		||||
    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
 | 
			
		||||
    *) f=$$p;; \
 | 
			
		||||
  esac;
 | 
			
		||||
am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
 | 
			
		||||
am__install_max = 40
 | 
			
		||||
am__nobase_strip_setup = \
 | 
			
		||||
  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
 | 
			
		||||
am__nobase_strip = \
 | 
			
		||||
  for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
 | 
			
		||||
am__nobase_list = $(am__nobase_strip_setup); \
 | 
			
		||||
  for p in $$list; do echo "$$p $$p"; done | \
 | 
			
		||||
  sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
 | 
			
		||||
  $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
 | 
			
		||||
    if (++n[$$2] == $(am__install_max)) \
 | 
			
		||||
      { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
 | 
			
		||||
    END { for (dir in files) print dir, files[dir] }'
 | 
			
		||||
am__base_list = \
 | 
			
		||||
  sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
 | 
			
		||||
  sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
 | 
			
		||||
am__installdirs = "$(DESTDIR)$(pkgconfigdir)" \
 | 
			
		||||
	"$(DESTDIR)$(pkgconfig2dir)" "$(DESTDIR)$(includedir)"
 | 
			
		||||
DATA = $(pkgconfig_DATA) $(pkgconfig2_DATA)
 | 
			
		||||
HEADERS = $(include_HEADERS)
 | 
			
		||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 | 
			
		||||
ACLOCAL = @ACLOCAL@
 | 
			
		||||
AMTAR = @AMTAR@
 | 
			
		||||
AM_CPPFLAGS = @AM_CPPFLAGS@ $(am__append_1)
 | 
			
		||||
AM_CXXFLAGS = @AM_CXXFLAGS@
 | 
			
		||||
AR = @AR@
 | 
			
		||||
AUTOCONF = @AUTOCONF@
 | 
			
		||||
AUTOHEADER = @AUTOHEADER@
 | 
			
		||||
AUTOMAKE = @AUTOMAKE@
 | 
			
		||||
AWK = @AWK@
 | 
			
		||||
BUILDDATE = @BUILDDATE@
 | 
			
		||||
CC = @CC@
 | 
			
		||||
CCDEPMODE = @CCDEPMODE@
 | 
			
		||||
CFLAGS = @CFLAGS@
 | 
			
		||||
CPP = @CPP@
 | 
			
		||||
CPPFLAGS = @CPPFLAGS@
 | 
			
		||||
CPPUNIT_CFLAGS = @CPPUNIT_CFLAGS@
 | 
			
		||||
CPPUNIT_CONFIG = @CPPUNIT_CONFIG@
 | 
			
		||||
CPPUNIT_LIBS = @CPPUNIT_LIBS@
 | 
			
		||||
CXX = @CXX@
 | 
			
		||||
CXXCPP = @CXXCPP@
 | 
			
		||||
CXXDEPMODE = @CXXDEPMODE@
 | 
			
		||||
CXXFLAGS = @CXXFLAGS@
 | 
			
		||||
CYGPATH_W = @CYGPATH_W@
 | 
			
		||||
DATADIR = @DATADIR@
 | 
			
		||||
DEFS = @DEFS@
 | 
			
		||||
DEPDIR = @DEPDIR@
 | 
			
		||||
DLLTOOL = @DLLTOOL@
 | 
			
		||||
DOC_DIR = @DOC_DIR@
 | 
			
		||||
DSYMUTIL = @DSYMUTIL@
 | 
			
		||||
DUMPBIN = @DUMPBIN@
 | 
			
		||||
ECHO_C = @ECHO_C@
 | 
			
		||||
ECHO_N = @ECHO_N@
 | 
			
		||||
ECHO_T = @ECHO_T@
 | 
			
		||||
EGREP = @EGREP@
 | 
			
		||||
EXEEXT = @EXEEXT@
 | 
			
		||||
FGREP = @FGREP@
 | 
			
		||||
GREP = @GREP@
 | 
			
		||||
HAVE_DOT = @HAVE_DOT@
 | 
			
		||||
HOME = @HOME@
 | 
			
		||||
INSTALL = @INSTALL@
 | 
			
		||||
INSTALL_DATA = @INSTALL_DATA@
 | 
			
		||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
 | 
			
		||||
INSTALL_SCRIPT = @INSTALL_SCRIPT@
 | 
			
		||||
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
 | 
			
		||||
LD = @LD@
 | 
			
		||||
LDFLAGS = @LDFLAGS@
 | 
			
		||||
LEAST = @LEAST@
 | 
			
		||||
LIBOBJS = @LIBOBJS@
 | 
			
		||||
LIBS = @LIBS@
 | 
			
		||||
LIBTOOL = @LIBTOOL@
 | 
			
		||||
LIB_VERSION = @LIB_VERSION@
 | 
			
		||||
LIPO = @LIPO@
 | 
			
		||||
LN_S = @LN_S@
 | 
			
		||||
LTLIBOBJS = @LTLIBOBJS@
 | 
			
		||||
MAJOR = @MAJOR@
 | 
			
		||||
MAKEINFO = @MAKEINFO@
 | 
			
		||||
MANIFEST_TOOL = @MANIFEST_TOOL@
 | 
			
		||||
MINOR = @MINOR@
 | 
			
		||||
MKDIR_P = @MKDIR_P@
 | 
			
		||||
NM = @NM@
 | 
			
		||||
NMEDIT = @NMEDIT@
 | 
			
		||||
OBJDUMP = @OBJDUMP@
 | 
			
		||||
OBJEXT = @OBJEXT@
 | 
			
		||||
OTOOL = @OTOOL@
 | 
			
		||||
OTOOL64 = @OTOOL64@
 | 
			
		||||
PACKAGE = @PACKAGE@
 | 
			
		||||
PACKAGENAME = @PACKAGENAME@
 | 
			
		||||
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
 | 
			
		||||
PACKAGE_NAME = @PACKAGE_NAME@
 | 
			
		||||
PACKAGE_STRING = @PACKAGE_STRING@
 | 
			
		||||
PACKAGE_TARNAME = @PACKAGE_TARNAME@
 | 
			
		||||
PACKAGE_URL = @PACKAGE_URL@
 | 
			
		||||
PACKAGE_VERSION = @PACKAGE_VERSION@
 | 
			
		||||
PATH_SEPARATOR = @PATH_SEPARATOR@
 | 
			
		||||
PKG_CONFIG = @PKG_CONFIG@
 | 
			
		||||
PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
 | 
			
		||||
PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
 | 
			
		||||
RANLIB = @RANLIB@
 | 
			
		||||
SED = @SED@
 | 
			
		||||
SET_MAKE = @SET_MAKE@
 | 
			
		||||
SHELL = @SHELL@
 | 
			
		||||
SRCDIR = @SRCDIR@
 | 
			
		||||
SRC_DIR = @SRC_DIR@
 | 
			
		||||
STRIP = @STRIP@
 | 
			
		||||
THREADS = @THREADS@
 | 
			
		||||
TST_DIR = @TST_DIR@
 | 
			
		||||
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@
 | 
			
		||||
have_dot = @have_dot@
 | 
			
		||||
have_doxygen = @have_doxygen@
 | 
			
		||||
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@
 | 
			
		||||
include_HEADERS = 
 | 
			
		||||
# -I/Library/OpenSC/include
 | 
			
		||||
@MAC_TRUE@@MINGW32_FALSE@AM_LDFLAGS = -L/opt/local/lib
 | 
			
		||||
# -F/System/Library/Frameworks/PCSC.framework
 | 
			
		||||
# AM_CPPFLAGS += -I/usr/include/PCSC
 | 
			
		||||
pkgconfigdir = $(libdir)/pkgconfig
 | 
			
		||||
pkgconfig_DATA = @PACKAGENAME@.pc
 | 
			
		||||
pkgconfig2dir = $(datarootdir)/pkgconfig
 | 
			
		||||
pkgconfig2_DATA = $(pkgconfig_DATA)
 | 
			
		||||
EXTRA_DIST = $(pkgconfig_DATA).in $(shell ls -1 *.doc)
 | 
			
		||||
lib@PACKAGENAME@_la_LIBADD = 
 | 
			
		||||
# lib@PACKAGENAME@_la_LIBADD += -lpcsclite
 | 
			
		||||
lib@PACKAGENAME@_LDFLAGS = -version-info ${LIB_VERSION}
 | 
			
		||||
CLEANFILES = 
 | 
			
		||||
DISTCLEANFILES = $(pkgconfig_DATA)
 | 
			
		||||
MAINTAINERCLEANFILES = makefile.in
 | 
			
		||||
all: all-am
 | 
			
		||||
 | 
			
		||||
.SUFFIXES:
 | 
			
		||||
$(srcdir)/makefile.in:  $(srcdir)/makefile.am  $(am__configure_deps)
 | 
			
		||||
	@for dep in $?; do \
 | 
			
		||||
	  case '$(am__configure_deps)' in \
 | 
			
		||||
	    *$$dep*) \
 | 
			
		||||
	      ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
 | 
			
		||||
	        && { if test -f $@; then exit 0; else break; fi; }; \
 | 
			
		||||
	      exit 1;; \
 | 
			
		||||
	  esac; \
 | 
			
		||||
	done; \
 | 
			
		||||
	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/makefile'; \
 | 
			
		||||
	$(am__cd) $(top_srcdir) && \
 | 
			
		||||
	  $(AUTOMAKE) --gnu src/makefile
 | 
			
		||||
.PRECIOUS: makefile
 | 
			
		||||
makefile: $(srcdir)/makefile.in $(top_builddir)/config.status
 | 
			
		||||
	@case '$?' in \
 | 
			
		||||
	  *config.status*) \
 | 
			
		||||
	    cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
 | 
			
		||||
	  *) \
 | 
			
		||||
	    echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
 | 
			
		||||
	    cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
 | 
			
		||||
	esac;
 | 
			
		||||
 | 
			
		||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
 | 
			
		||||
	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 | 
			
		||||
 | 
			
		||||
$(top_srcdir)/configure:  $(am__configure_deps)
 | 
			
		||||
	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 | 
			
		||||
$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 | 
			
		||||
	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 | 
			
		||||
$(am__aclocal_m4_deps):
 | 
			
		||||
version.cxx: $(top_builddir)/config.status $(srcdir)/version.cxx.in
 | 
			
		||||
	cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
 | 
			
		||||
${PACKAGENAME}.pc: $(top_builddir)/config.status $(srcdir)/${PACKAGENAME}.pc.in
 | 
			
		||||
	cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
 | 
			
		||||
 | 
			
		||||
mostlyclean-libtool:
 | 
			
		||||
	-rm -f *.lo
 | 
			
		||||
 | 
			
		||||
clean-libtool:
 | 
			
		||||
	-rm -rf .libs _libs
 | 
			
		||||
install-pkgconfigDATA: $(pkgconfig_DATA)
 | 
			
		||||
	@$(NORMAL_INSTALL)
 | 
			
		||||
	test -z "$(pkgconfigdir)" || $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)"
 | 
			
		||||
	@list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
 | 
			
		||||
	for p in $$list; do \
 | 
			
		||||
	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
 | 
			
		||||
	  echo "$$d$$p"; \
 | 
			
		||||
	done | $(am__base_list) | \
 | 
			
		||||
	while read files; do \
 | 
			
		||||
	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgconfigdir)'"; \
 | 
			
		||||
	  $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgconfigdir)" || exit $$?; \
 | 
			
		||||
	done
 | 
			
		||||
 | 
			
		||||
uninstall-pkgconfigDATA:
 | 
			
		||||
	@$(NORMAL_UNINSTALL)
 | 
			
		||||
	@list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
 | 
			
		||||
	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
 | 
			
		||||
	test -n "$$files" || exit 0; \
 | 
			
		||||
	echo " ( cd '$(DESTDIR)$(pkgconfigdir)' && rm -f" $$files ")"; \
 | 
			
		||||
	cd "$(DESTDIR)$(pkgconfigdir)" && rm -f $$files
 | 
			
		||||
install-pkgconfig2DATA: $(pkgconfig2_DATA)
 | 
			
		||||
	@$(NORMAL_INSTALL)
 | 
			
		||||
	test -z "$(pkgconfig2dir)" || $(MKDIR_P) "$(DESTDIR)$(pkgconfig2dir)"
 | 
			
		||||
	@list='$(pkgconfig2_DATA)'; test -n "$(pkgconfig2dir)" || list=; \
 | 
			
		||||
	for p in $$list; do \
 | 
			
		||||
	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
 | 
			
		||||
	  echo "$$d$$p"; \
 | 
			
		||||
	done | $(am__base_list) | \
 | 
			
		||||
	while read files; do \
 | 
			
		||||
	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgconfig2dir)'"; \
 | 
			
		||||
	  $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgconfig2dir)" || exit $$?; \
 | 
			
		||||
	done
 | 
			
		||||
 | 
			
		||||
uninstall-pkgconfig2DATA:
 | 
			
		||||
	@$(NORMAL_UNINSTALL)
 | 
			
		||||
	@list='$(pkgconfig2_DATA)'; test -n "$(pkgconfig2dir)" || list=; \
 | 
			
		||||
	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
 | 
			
		||||
	test -n "$$files" || exit 0; \
 | 
			
		||||
	echo " ( cd '$(DESTDIR)$(pkgconfig2dir)' && rm -f" $$files ")"; \
 | 
			
		||||
	cd "$(DESTDIR)$(pkgconfig2dir)" && rm -f $$files
 | 
			
		||||
install-includeHEADERS: $(include_HEADERS)
 | 
			
		||||
	@$(NORMAL_INSTALL)
 | 
			
		||||
	test -z "$(includedir)" || $(MKDIR_P) "$(DESTDIR)$(includedir)"
 | 
			
		||||
	@list='$(include_HEADERS)'; test -n "$(includedir)" || list=; \
 | 
			
		||||
	for p in $$list; do \
 | 
			
		||||
	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
 | 
			
		||||
	  echo "$$d$$p"; \
 | 
			
		||||
	done | $(am__base_list) | \
 | 
			
		||||
	while read files; do \
 | 
			
		||||
	  echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(includedir)'"; \
 | 
			
		||||
	  $(INSTALL_HEADER) $$files "$(DESTDIR)$(includedir)" || exit $$?; \
 | 
			
		||||
	done
 | 
			
		||||
 | 
			
		||||
uninstall-includeHEADERS:
 | 
			
		||||
	@$(NORMAL_UNINSTALL)
 | 
			
		||||
	@list='$(include_HEADERS)'; test -n "$(includedir)" || list=; \
 | 
			
		||||
	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
 | 
			
		||||
	test -n "$$files" || exit 0; \
 | 
			
		||||
	echo " ( cd '$(DESTDIR)$(includedir)' && rm -f" $$files ")"; \
 | 
			
		||||
	cd "$(DESTDIR)$(includedir)" && rm -f $$files
 | 
			
		||||
tags: TAGS
 | 
			
		||||
TAGS:
 | 
			
		||||
 | 
			
		||||
ctags: CTAGS
 | 
			
		||||
CTAGS:
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
distdir: $(DISTFILES)
 | 
			
		||||
	@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
 | 
			
		||||
	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
 | 
			
		||||
	list='$(DISTFILES)'; \
 | 
			
		||||
	  dist_files=`for file in $$list; do echo $$file; done | \
 | 
			
		||||
	  sed -e "s|^$$srcdirstrip/||;t" \
 | 
			
		||||
	      -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
 | 
			
		||||
	case $$dist_files in \
 | 
			
		||||
	  */*) $(MKDIR_P) `echo "$$dist_files" | \
 | 
			
		||||
			   sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
 | 
			
		||||
			   sort -u` ;; \
 | 
			
		||||
	esac; \
 | 
			
		||||
	for file in $$dist_files; do \
 | 
			
		||||
	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
 | 
			
		||||
	  if test -d $$d/$$file; then \
 | 
			
		||||
	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
 | 
			
		||||
	    if test -d "$(distdir)/$$file"; then \
 | 
			
		||||
	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
 | 
			
		||||
	    fi; \
 | 
			
		||||
	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
 | 
			
		||||
	      cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
 | 
			
		||||
	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
 | 
			
		||||
	    fi; \
 | 
			
		||||
	    cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
 | 
			
		||||
	  else \
 | 
			
		||||
	    test -f "$(distdir)/$$file" \
 | 
			
		||||
	    || cp -p $$d/$$file "$(distdir)/$$file" \
 | 
			
		||||
	    || exit 1; \
 | 
			
		||||
	  fi; \
 | 
			
		||||
	done
 | 
			
		||||
check-am: all-am
 | 
			
		||||
check: check-am
 | 
			
		||||
all-am: makefile $(DATA) $(HEADERS)
 | 
			
		||||
installdirs:
 | 
			
		||||
	for dir in "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(pkgconfig2dir)" "$(DESTDIR)$(includedir)"; do \
 | 
			
		||||
	  test -z "$$dir" || $(MKDIR_P) "$$dir"; \
 | 
			
		||||
	done
 | 
			
		||||
install: install-am
 | 
			
		||||
install-exec: install-exec-am
 | 
			
		||||
install-data: install-data-am
 | 
			
		||||
uninstall: uninstall-am
 | 
			
		||||
 | 
			
		||||
install-am: all-am
 | 
			
		||||
	@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
 | 
			
		||||
 | 
			
		||||
installcheck: installcheck-am
 | 
			
		||||
install-strip:
 | 
			
		||||
	$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 | 
			
		||||
	  install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 | 
			
		||||
	  `test -z '$(STRIP)' || \
 | 
			
		||||
	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
 | 
			
		||||
mostlyclean-generic:
 | 
			
		||||
 | 
			
		||||
clean-generic:
 | 
			
		||||
	-test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
 | 
			
		||||
 | 
			
		||||
distclean-generic:
 | 
			
		||||
	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
 | 
			
		||||
	-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
 | 
			
		||||
	-test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
 | 
			
		||||
 | 
			
		||||
maintainer-clean-generic:
 | 
			
		||||
	@echo "This command is intended for maintainers to use"
 | 
			
		||||
	@echo "it deletes files that may require special tools to rebuild."
 | 
			
		||||
	-test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
 | 
			
		||||
clean: clean-am
 | 
			
		||||
 | 
			
		||||
clean-am: clean-generic clean-libtool mostlyclean-am
 | 
			
		||||
 | 
			
		||||
distclean: distclean-am
 | 
			
		||||
	-rm -f makefile
 | 
			
		||||
distclean-am: clean-am distclean-generic
 | 
			
		||||
 | 
			
		||||
dvi: dvi-am
 | 
			
		||||
 | 
			
		||||
dvi-am:
 | 
			
		||||
 | 
			
		||||
html: html-am
 | 
			
		||||
 | 
			
		||||
html-am:
 | 
			
		||||
 | 
			
		||||
info: info-am
 | 
			
		||||
 | 
			
		||||
info-am:
 | 
			
		||||
 | 
			
		||||
install-data-am: install-includeHEADERS install-pkgconfig2DATA \
 | 
			
		||||
	install-pkgconfigDATA
 | 
			
		||||
 | 
			
		||||
install-dvi: install-dvi-am
 | 
			
		||||
 | 
			
		||||
install-dvi-am:
 | 
			
		||||
 | 
			
		||||
install-exec-am:
 | 
			
		||||
 | 
			
		||||
install-html: install-html-am
 | 
			
		||||
 | 
			
		||||
install-html-am:
 | 
			
		||||
 | 
			
		||||
install-info: install-info-am
 | 
			
		||||
 | 
			
		||||
install-info-am:
 | 
			
		||||
 | 
			
		||||
install-man:
 | 
			
		||||
 | 
			
		||||
install-pdf: install-pdf-am
 | 
			
		||||
 | 
			
		||||
install-pdf-am:
 | 
			
		||||
 | 
			
		||||
install-ps: install-ps-am
 | 
			
		||||
 | 
			
		||||
install-ps-am:
 | 
			
		||||
 | 
			
		||||
installcheck-am:
 | 
			
		||||
 | 
			
		||||
maintainer-clean: maintainer-clean-am
 | 
			
		||||
	-rm -f makefile
 | 
			
		||||
maintainer-clean-am: distclean-am maintainer-clean-generic
 | 
			
		||||
 | 
			
		||||
mostlyclean: mostlyclean-am
 | 
			
		||||
 | 
			
		||||
mostlyclean-am: mostlyclean-generic mostlyclean-libtool
 | 
			
		||||
 | 
			
		||||
pdf: pdf-am
 | 
			
		||||
 | 
			
		||||
pdf-am:
 | 
			
		||||
 | 
			
		||||
ps: ps-am
 | 
			
		||||
 | 
			
		||||
ps-am:
 | 
			
		||||
 | 
			
		||||
uninstall-am: uninstall-includeHEADERS uninstall-pkgconfig2DATA \
 | 
			
		||||
	uninstall-pkgconfigDATA
 | 
			
		||||
 | 
			
		||||
.MAKE: install-am install-strip
 | 
			
		||||
 | 
			
		||||
.PHONY: all all-am check check-am clean clean-generic clean-libtool \
 | 
			
		||||
	distclean distclean-generic distclean-libtool distdir dvi \
 | 
			
		||||
	dvi-am html html-am info info-am install install-am \
 | 
			
		||||
	install-data install-data-am install-dvi install-dvi-am \
 | 
			
		||||
	install-exec install-exec-am install-html install-html-am \
 | 
			
		||||
	install-includeHEADERS install-info install-info-am \
 | 
			
		||||
	install-man install-pdf install-pdf-am install-pkgconfig2DATA \
 | 
			
		||||
	install-pkgconfigDATA install-ps install-ps-am install-strip \
 | 
			
		||||
	installcheck installcheck-am installdirs maintainer-clean \
 | 
			
		||||
	maintainer-clean-generic mostlyclean mostlyclean-generic \
 | 
			
		||||
	mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \
 | 
			
		||||
	uninstall-includeHEADERS uninstall-pkgconfig2DATA \
 | 
			
		||||
	uninstall-pkgconfigDATA
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
 | 
			
		||||
# Otherwise a system limit (for SysV at least) may be exceeded.
 | 
			
		||||
.NOEXPORT:
 | 
			
		||||
@@ -1,11 +0,0 @@
 | 
			
		||||
prefix=mrw-c++
 | 
			
		||||
exec_prefix=${prefix}
 | 
			
		||||
libdir=${exec_prefix}/lib
 | 
			
		||||
includedir=${prefix}/include
 | 
			
		||||
 | 
			
		||||
Name: mrw-c++
 | 
			
		||||
Description: 
 | 
			
		||||
Version: 0.0.267
 | 
			
		||||
Libs: -L${libdir}
 | 
			
		||||
Libs.private: 
 | 
			
		||||
Cflags: -I${includedir} 
 | 
			
		||||
										
											Binary file not shown.
										
									
								
							| 
		 Before Width: | Height: | Size: 36 KiB  | 
@@ -26,7 +26,7 @@
 | 
			
		||||
#define _MT
 | 
			
		||||
#endif
 | 
			
		||||
#ifdef _MT
 | 
			
		||||
#include <boost/thread/recursive_mutex.hxx>
 | 
			
		||||
#include <boost/thread/recursive_mutex.hpp>
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
namespace mrw {
 | 
			
		||||
 
 | 
			
		||||
@@ -1,654 +0,0 @@
 | 
			
		||||
/* Doxygen */
 | 
			
		||||
body,h1,h2,h3,h4,h5,h6,p,center,td,th,ul,dl,div {
 | 
			
		||||
	font-family: Geneva, Arial, Helvetica, sans-serif;
 | 
			
		||||
}
 | 
			
		||||
caption { font-weight: bold }
 | 
			
		||||
@media screen {
 | 
			
		||||
  /** navigation in old doxygen */
 | 
			
		||||
  div.nav {
 | 
			
		||||
    width: 100%;
 | 
			
		||||
    background-color: #eeeeff;
 | 
			
		||||
    border: 1px solid #b0b0b0;
 | 
			
		||||
    text-align: center;
 | 
			
		||||
    margin: 2px;
 | 
			
		||||
    padding: 2px;
 | 
			
		||||
    line-height: 140%;
 | 
			
		||||
  }
 | 
			
		||||
  /** navigation in new doxygen (SuSE 10.0, 11.2005) */
 | 
			
		||||
  div.tabs {
 | 
			
		||||
    width: 100%;
 | 
			
		||||
    display: table;
 | 
			
		||||
    background-color: #eeeeff;
 | 
			
		||||
    border: 1px solid #b0b0b0;
 | 
			
		||||
    text-align: center;
 | 
			
		||||
    margin: 2px;
 | 
			
		||||
    padding: 2px;
 | 
			
		||||
  }
 | 
			
		||||
  div.tabs ul {
 | 
			
		||||
    display: table-row;
 | 
			
		||||
    /*width: 100%;*/
 | 
			
		||||
  }
 | 
			
		||||
  div.tabs ul li {
 | 
			
		||||
    display: table-cell;
 | 
			
		||||
    border: 1px solid #b0b0b0;
 | 
			
		||||
    text-align: center;
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
@media print {
 | 
			
		||||
  div.tabs, div.nav {
 | 
			
		||||
    display: none;
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
/*
 | 
			
		||||
a.el { text-decoration: none; font-weight: bold }
 | 
			
		||||
a.elRef { font-weight: bold }
 | 
			
		||||
a.code:link { text-decoration: none; font-weight: normal; color: #0000FF}
 | 
			
		||||
a.code:visited { text-decoration: none; font-weight: normal; color: #0000FF}
 | 
			
		||||
a.codeRef:link { font-weight: normal; color: #0000FF}
 | 
			
		||||
a.codeRef:visited { font-weight: normal; color: #0000FF}
 | 
			
		||||
a:hover { text-decoration: none; background-color: #f2f2ff }
 | 
			
		||||
*/
 | 
			
		||||
dl.el { margin-left: -1cm }
 | 
			
		||||
.fragment {
 | 
			
		||||
       font-family: monospace
 | 
			
		||||
}
 | 
			
		||||
pre.fragment {
 | 
			
		||||
	border: 1px solid #CCCCCC;
 | 
			
		||||
	background-color: #f5f5f5;
 | 
			
		||||
	margin-top: 4px;
 | 
			
		||||
	margin-bottom: 4px;
 | 
			
		||||
	margin-left: 2px;
 | 
			
		||||
	margin-right: 8px;
 | 
			
		||||
	padding-left: 6px;
 | 
			
		||||
	padding-right: 6px;
 | 
			
		||||
	padding-top: 4px;
 | 
			
		||||
	padding-bottom: 4px;
 | 
			
		||||
}
 | 
			
		||||
div.ah { background-color: black; font-weight: bold; color: #ffffff; margin-bottom: 3px; margin-top: 3px }
 | 
			
		||||
td.md { background-color: transparent; font-weight: bold; }
 | 
			
		||||
td.mdPrefix {
 | 
			
		||||
       background-color: transparent;
 | 
			
		||||
       color: #606060;
 | 
			
		||||
	font-size: 80%;
 | 
			
		||||
}
 | 
			
		||||
td.mdname1 { background-color: transparent; font-weight: bold; color: #602020; }
 | 
			
		||||
td.mdname { background-color: transparent; font-weight: bold; color: #602020; width: 600px; }
 | 
			
		||||
div.groupHeader {
 | 
			
		||||
       margin-left: 16px;
 | 
			
		||||
       margin-top: 12px;
 | 
			
		||||
       margin-bottom: 6px;
 | 
			
		||||
       font-weight: bold;
 | 
			
		||||
}
 | 
			
		||||
div.groupText { margin-left: 16px; font-style: italic; font-size: 90% }
 | 
			
		||||
td.indexkey {
 | 
			
		||||
	background-color: #eeeeff;
 | 
			
		||||
	font-weight: bold;
 | 
			
		||||
	padding-right  : 10px;
 | 
			
		||||
	padding-top    : 2px;
 | 
			
		||||
	padding-left   : 10px;
 | 
			
		||||
	padding-bottom : 2px;
 | 
			
		||||
	margin-left    : 0px;
 | 
			
		||||
	margin-right   : 0px;
 | 
			
		||||
	margin-top     : 2px;
 | 
			
		||||
	margin-bottom  : 2px;
 | 
			
		||||
	border: 1px solid #CCCCCC;
 | 
			
		||||
}
 | 
			
		||||
td.indexvalue {
 | 
			
		||||
	background-color: #eeeeff;
 | 
			
		||||
	font-style: italic;
 | 
			
		||||
	padding-right  : 10px;
 | 
			
		||||
	padding-top    : 2px;
 | 
			
		||||
	padding-left   : 10px;
 | 
			
		||||
	padding-bottom : 2px;
 | 
			
		||||
	margin-left    : 0px;
 | 
			
		||||
	margin-right   : 0px;
 | 
			
		||||
	margin-top     : 2px;
 | 
			
		||||
	margin-bottom  : 2px;
 | 
			
		||||
	border: 1px solid #CCCCCC;
 | 
			
		||||
}
 | 
			
		||||
tr.memlist {
 | 
			
		||||
   background-color: #f0f0f0; 
 | 
			
		||||
}
 | 
			
		||||
p.formulaDsp { text-align: center; }
 | 
			
		||||
img.formulaDsp { }
 | 
			
		||||
img.formulaInl { vertical-align: middle; }
 | 
			
		||||
span.keyword       { color: #008000 }
 | 
			
		||||
span.keywordtype   { color: #604020 }
 | 
			
		||||
span.keywordflow   { color: #e08000 }
 | 
			
		||||
span.comment       { color: #800000 }
 | 
			
		||||
span.preprocessor  { color: #806020 }
 | 
			
		||||
span.stringliteral { color: #002080 }
 | 
			
		||||
span.charliteral   { color: #008080 }
 | 
			
		||||
.mdTable {
 | 
			
		||||
	border: 1px solid #868686;
 | 
			
		||||
	background-color: transparent;
 | 
			
		||||
}
 | 
			
		||||
.mdRow {
 | 
			
		||||
	padding: 8px 10px;
 | 
			
		||||
}
 | 
			
		||||
.mdescLeft {
 | 
			
		||||
       padding: 0px 8px 4px 8px;
 | 
			
		||||
	font-size: 80%;
 | 
			
		||||
	font-style: italic;
 | 
			
		||||
	background-color: transparent;
 | 
			
		||||
	border-top: 1px none #E0E0E0;
 | 
			
		||||
	border-right: 1px none #E0E0E0;
 | 
			
		||||
	border-bottom: 1px none #E0E0E0;
 | 
			
		||||
	border-left: 1px none #E0E0E0;
 | 
			
		||||
	margin: 0px;
 | 
			
		||||
}
 | 
			
		||||
.mdescRight {
 | 
			
		||||
       padding: 0px 8px 4px 8px;
 | 
			
		||||
	font-size: 80%;
 | 
			
		||||
	font-style: italic;
 | 
			
		||||
	background-color: transparent;
 | 
			
		||||
	border-top: 1px none #E0E0E0;
 | 
			
		||||
	border-right: 1px none #E0E0E0;
 | 
			
		||||
	border-bottom: 1px none #E0E0E0;
 | 
			
		||||
	border-left: 1px none #E0E0E0;
 | 
			
		||||
	margin: 0px;
 | 
			
		||||
}
 | 
			
		||||
.memItemLeft {
 | 
			
		||||
	padding: 1px 0px 0px 8px;
 | 
			
		||||
	margin: 4px;
 | 
			
		||||
	border-top-width: 1px;
 | 
			
		||||
	border-right-width: 1px;
 | 
			
		||||
	border-bottom-width: 1px;
 | 
			
		||||
	border-left-width: 1px;
 | 
			
		||||
	border-top-color: #E0E0E0;
 | 
			
		||||
	border-right-color: #E0E0E0;
 | 
			
		||||
	border-bottom-color: #E0E0E0;
 | 
			
		||||
	border-left-color: #E0E0E0;
 | 
			
		||||
	border-top-style: solid;
 | 
			
		||||
	border-right-style: none;
 | 
			
		||||
	border-bottom-style: none;
 | 
			
		||||
	border-left-style: none;
 | 
			
		||||
	background-color: transparent;
 | 
			
		||||
	font-size: 80%;
 | 
			
		||||
}
 | 
			
		||||
.memItemRight {
 | 
			
		||||
	padding: 1px 8px 0px 8px;
 | 
			
		||||
	margin: 4px;
 | 
			
		||||
	border-top-width: 1px;
 | 
			
		||||
	border-right-width: 1px;
 | 
			
		||||
	border-bottom-width: 1px;
 | 
			
		||||
	border-left-width: 1px;
 | 
			
		||||
	border-top-color: #E0E0E0;
 | 
			
		||||
	border-right-color: #E0E0E0;
 | 
			
		||||
	border-bottom-color: #E0E0E0;
 | 
			
		||||
	border-left-color: #E0E0E0;
 | 
			
		||||
	border-top-style: solid;
 | 
			
		||||
	border-right-style: none;
 | 
			
		||||
	border-bottom-style: none;
 | 
			
		||||
	border-left-style: none;
 | 
			
		||||
	background-color: transparent;
 | 
			
		||||
	font-size: 80%;
 | 
			
		||||
}
 | 
			
		||||
.memTemplItemLeft {
 | 
			
		||||
	padding: 1px 0px 0px 8px;
 | 
			
		||||
	margin: 4px;
 | 
			
		||||
	border-top-width: 1px;
 | 
			
		||||
	border-right-width: 1px;
 | 
			
		||||
	border-bottom-width: 1px;
 | 
			
		||||
	border-left-width: 1px;
 | 
			
		||||
	border-top-color: #E0E0E0;
 | 
			
		||||
	border-right-color: #E0E0E0;
 | 
			
		||||
	border-bottom-color: #E0E0E0;
 | 
			
		||||
	border-left-color: #E0E0E0;
 | 
			
		||||
	border-top-style: none;
 | 
			
		||||
	border-right-style: none;
 | 
			
		||||
	border-bottom-style: none;
 | 
			
		||||
	border-left-style: none;
 | 
			
		||||
	background-color: transparent;
 | 
			
		||||
	font-size: 80%;
 | 
			
		||||
}
 | 
			
		||||
.memTemplItemRight {
 | 
			
		||||
	padding: 1px 8px 0px 8px;
 | 
			
		||||
	margin: 4px;
 | 
			
		||||
	border-top-width: 1px;
 | 
			
		||||
	border-right-width: 1px;
 | 
			
		||||
	border-bottom-width: 1px;
 | 
			
		||||
	border-left-width: 1px;
 | 
			
		||||
	border-top-color: #E0E0E0;
 | 
			
		||||
	border-right-color: #E0E0E0;
 | 
			
		||||
	border-bottom-color: #E0E0E0;
 | 
			
		||||
	border-left-color: #E0E0E0;
 | 
			
		||||
	border-top-style: none;
 | 
			
		||||
	border-right-style: none;
 | 
			
		||||
	border-bottom-style: none;
 | 
			
		||||
	border-left-style: none;
 | 
			
		||||
	background-color: transparent;
 | 
			
		||||
	font-size: 80%;
 | 
			
		||||
}
 | 
			
		||||
.memTemplParams {
 | 
			
		||||
	padding: 1px 0px 0px 8px;
 | 
			
		||||
	margin: 4px;
 | 
			
		||||
	border-top-width: 1px;
 | 
			
		||||
	border-right-width: 1px;
 | 
			
		||||
	border-bottom-width: 1px;
 | 
			
		||||
	border-left-width: 1px;
 | 
			
		||||
	border-top-color: #E0E0E0;
 | 
			
		||||
	border-right-color: #E0E0E0;
 | 
			
		||||
	border-bottom-color: #E0E0E0;
 | 
			
		||||
	border-left-color: #E0E0E0;
 | 
			
		||||
	border-top-style: solid;
 | 
			
		||||
	border-right-style: none;
 | 
			
		||||
	border-bottom-style: none;
 | 
			
		||||
	border-left-style: none;
 | 
			
		||||
       color: #606060;
 | 
			
		||||
	background-color: transparent;
 | 
			
		||||
	font-size: 80%;
 | 
			
		||||
}
 | 
			
		||||
.search     { color: #003399;
 | 
			
		||||
              font-weight: bold;
 | 
			
		||||
}
 | 
			
		||||
form.search {
 | 
			
		||||
              margin-bottom: 0px;
 | 
			
		||||
              margin-top: 0px;
 | 
			
		||||
}
 | 
			
		||||
input.search { font-size: 75%;
 | 
			
		||||
               color: #000080;
 | 
			
		||||
               font-weight: normal;
 | 
			
		||||
               background-color: transparent;
 | 
			
		||||
}
 | 
			
		||||
td.tiny      { font-size: 75%;
 | 
			
		||||
}
 | 
			
		||||
a {
 | 
			
		||||
	color: #252E78;
 | 
			
		||||
}
 | 
			
		||||
a:visited {
 | 
			
		||||
	color: #3D2185;
 | 
			
		||||
}
 | 
			
		||||
.dirtab { padding: 4px;
 | 
			
		||||
          border-collapse: collapse;
 | 
			
		||||
          border: 1px solid #b0b0b0;
 | 
			
		||||
}
 | 
			
		||||
th.dirtab { background: #eeeeff;
 | 
			
		||||
            font-weight: bold;
 | 
			
		||||
}
 | 
			
		||||
hr { height: 1px;
 | 
			
		||||
     border: none;
 | 
			
		||||
     border-top: 1px solid black;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/* MRW */
 | 
			
		||||
.hidden {
 | 
			
		||||
  display: none;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.boese {
 | 
			
		||||
  display: none;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@media screen {
 | 
			
		||||
  div.lang {
 | 
			
		||||
    position: fixed;
 | 
			
		||||
    top: 0;
 | 
			
		||||
    right: 0;
 | 
			
		||||
    z-index: 3;
 | 
			
		||||
    color: white;
 | 
			
		||||
    font-weight: bold;
 | 
			
		||||
    background-color: black;
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@media print {
 | 
			
		||||
  div.lang {
 | 
			
		||||
    display: none;
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
div.lang a {
 | 
			
		||||
  color: yellow;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
div.lang a:link {
 | 
			
		||||
  color: yellow;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
div.lang a:visited {
 | 
			
		||||
  color: yellow;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
div.lang a:active {
 | 
			
		||||
  color: white;
 | 
			
		||||
  background-color: blue;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
div.lang a:hover {
 | 
			
		||||
  color: black;
 | 
			
		||||
  background-color: yellow;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
div.feedback {
 | 
			
		||||
  border: .5em groove gold;
 | 
			
		||||
  margin-top: 1em;
 | 
			
		||||
  margin-bottom: 1em;
 | 
			
		||||
  background-color: #AAA;
 | 
			
		||||
}
 | 
			
		||||
div.feedback:lang(de):before {
 | 
			
		||||
  content: "Ideen, Anregungen, Kommentare? Für Rückmeldungen bin ich sehr dankbar! "
 | 
			
		||||
}
 | 
			
		||||
div.feedback:lang(en):before {
 | 
			
		||||
  content: "Ideas, suggestions, comments? I welcome your participation! "
 | 
			
		||||
}
 | 
			
		||||
div.feedback:lang(zh):before {
 | 
			
		||||
  content: "想法, 建议, 评论?我欢迎您提建议!"
 | 
			
		||||
}
 | 
			
		||||
div.feedback:lang(de):after {
 | 
			
		||||
  content: " (ePost Adresse siehe oben) Bitte beachte, dass ich keine Briefe an GMX Adressen zurückschreiben kann, wegen deren defekter Mailserver. Ebensowenig kann ich anderen Servern antworten, die fälschlicherweise schwarze Listen verwenden, die dynamische IP Adressen enthalten."
 | 
			
		||||
}
 | 
			
		||||
div.feedback:lang(en):after {
 | 
			
		||||
  content: " (email address see above) Please note that I cannot respond to GMX addresses, because of their buggy mailserver, nor can I respond to other locations that use blacklists containing dynamic IP addresses."
 | 
			
		||||
}
 | 
			
		||||
div.feedback:lang(zh):before {
 | 
			
		||||
  content: "(电脑地址在上边)注意:我不会给GMX地址写信。"
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@media screen {
 | 
			
		||||
  div.kontakt {
 | 
			
		||||
    position: fixed;
 | 
			
		||||
    left: 0;
 | 
			
		||||
    top: 0;
 | 
			
		||||
    z-index: 2;
 | 
			
		||||
    color: white;
 | 
			
		||||
    font-weight: bold;
 | 
			
		||||
    background-color: black;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  div.kontakt a {
 | 
			
		||||
    color: yellow;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  div.kontakt a:link {
 | 
			
		||||
    color: yellow;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  div.kontakt a:visited {
 | 
			
		||||
    color: yellow;
 | 
			
		||||
  }
 | 
			
		||||
  
 | 
			
		||||
  div.kontakt a:active {
 | 
			
		||||
    color: white;
 | 
			
		||||
    background-color: blue;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  div.kontakt a:hover {
 | 
			
		||||
    color: black;
 | 
			
		||||
    background-color: yellow;
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@media print {
 | 
			
		||||
  div.kontakt {
 | 
			
		||||
    position: fixed;
 | 
			
		||||
    bottom: 0;
 | 
			
		||||
    right: 0;
 | 
			
		||||
    color: black;
 | 
			
		||||
    font-weight: normal;
 | 
			
		||||
    background-color: white;
 | 
			
		||||
  }
 | 
			
		||||
  a, a:link, a:visited, a:active, a:hover
 | 
			
		||||
  div.kontakt a, div.kontakt a:link, div.kontakt a:visited, div.kontakt a:active, div.kontakt a:hover
 | 
			
		||||
  {
 | 
			
		||||
    color: black;
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@media screen {
 | 
			
		||||
  div.back {
 | 
			
		||||
    position: fixed;
 | 
			
		||||
    top: 0;
 | 
			
		||||
    right: 0;
 | 
			
		||||
    color: white;
 | 
			
		||||
    font-weight: bold;
 | 
			
		||||
    background-color: black;
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@media print {
 | 
			
		||||
  div.back {
 | 
			
		||||
    display: none;
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
div.back a {
 | 
			
		||||
  color: yellow;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
div.back a:link {
 | 
			
		||||
  color: yellow;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
div.back a:visited {
 | 
			
		||||
  color: yellow;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
div.back a:active {
 | 
			
		||||
  color: white;
 | 
			
		||||
  background-color: blue;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
div.back a:hover {
 | 
			
		||||
  color: black;
 | 
			
		||||
  background-color: yellow;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@media screen {
 | 
			
		||||
  a.target {
 | 
			
		||||
    position: relative;
 | 
			
		||||
    top: -5em;
 | 
			
		||||
  }
 | 
			
		||||
  body {
 | 
			
		||||
    padding-top: 1em;
 | 
			
		||||
    padding-bottom: 1em;
 | 
			
		||||
    color: black;
 | 
			
		||||
    background: #FECFD3 url(hintergrund.png) repeat;
 | 
			
		||||
  }
 | 
			
		||||
  h1.main {
 | 
			
		||||
    position: fixed;
 | 
			
		||||
    top: 0;
 | 
			
		||||
    left: 0;
 | 
			
		||||
    right: 0;
 | 
			
		||||
    text-align: center;
 | 
			
		||||
    margin-top: 0;
 | 
			
		||||
    padding-top: 0;
 | 
			
		||||
    font-weight: bold;
 | 
			
		||||
    background-color: black;
 | 
			
		||||
    color: white;
 | 
			
		||||
    font-size: 100%;
 | 
			
		||||
  }
 | 
			
		||||
  h1.main a, h1.main a:link {
 | 
			
		||||
    background: transparent;
 | 
			
		||||
    color: yellow;
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@media print {
 | 
			
		||||
  body {
 | 
			
		||||
    color: black;
 | 
			
		||||
    background: white;
 | 
			
		||||
    padding-bottom: 1em;
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@media screen {
 | 
			
		||||
  a, a:link {
 | 
			
		||||
    background: transparent;
 | 
			
		||||
    color: blue;
 | 
			
		||||
  }
 | 
			
		||||
  a:visited {
 | 
			
		||||
    background: transparent;
 | 
			
		||||
    color: #000088;
 | 
			
		||||
  }
 | 
			
		||||
  a:active {
 | 
			
		||||
    background: blue;
 | 
			
		||||
    color: white;
 | 
			
		||||
  }
 | 
			
		||||
  a:hover {
 | 
			
		||||
    background: black;
 | 
			
		||||
    color: white;
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
p {
 | 
			
		||||
  text-align: justify;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
p.picture {
 | 
			
		||||
  text-align: center;
 | 
			
		||||
  border: .2cm inset yellow;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@media print {
 | 
			
		||||
  p.header-top, p.header-bottom {
 | 
			
		||||
    display: none;
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
@media screen {
 | 
			
		||||
  p.header-top {
 | 
			
		||||
    text-align: center;
 | 
			
		||||
    margin-bottom: 0;
 | 
			
		||||
  }
 | 
			
		||||
  p.header-bottom {
 | 
			
		||||
    text-align: right;
 | 
			
		||||
    margin-top: 0;
 | 
			
		||||
    font-size: small;
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
dt {
 | 
			
		||||
  text-align: left;
 | 
			
		||||
  font-weight: bolder;
 | 
			
		||||
  margin-top: .5ex;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
dd {
 | 
			
		||||
  text-align: justify;
 | 
			
		||||
  margin-bottom: .5ex;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
img {
 | 
			
		||||
  border: .5em groove gold;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@media print {
 | 
			
		||||
  img.scale {
 | 
			
		||||
    width: 95%;
 | 
			
		||||
    height: auto;
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
div.mainimage {
 | 
			
		||||
  float: left;
 | 
			
		||||
  margin: 1em 2em 1em 0;
 | 
			
		||||
  padding: 0;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
div.mainimage img {
 | 
			
		||||
  width: 33%;
 | 
			
		||||
  height: auto;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
div.status {
 | 
			
		||||
  position: fixed;
 | 
			
		||||
  text-align: right;
 | 
			
		||||
  bottom: 0;
 | 
			
		||||
  right: 0;
 | 
			
		||||
  left: 0;
 | 
			
		||||
  background-color: black;
 | 
			
		||||
  color: lightgrey;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
div.author, div.author a {
 | 
			
		||||
  position: fixed;
 | 
			
		||||
  text-align: left;
 | 
			
		||||
  bottom: 0;
 | 
			
		||||
  left: 0;
 | 
			
		||||
  background-color: black;
 | 
			
		||||
  color: lightgrey;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
div.status a, div.author a {
 | 
			
		||||
  color: lightgrey;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
div.validation {
 | 
			
		||||
  text-align: right;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
div.validation img {
 | 
			
		||||
  border: 0;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
q:lang(de) {
 | 
			
		||||
  quotes: "\AB" "\BB";
 | 
			
		||||
  font-style: italic;
 | 
			
		||||
  /* font-family: cursive; */
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
q:lang(en), q:lang(zh) {
 | 
			
		||||
  quotes: "\201C" "\201D";
 | 
			
		||||
  font-style: italic;
 | 
			
		||||
  /* font-family: cursive; */
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
q q:lang(de) {
 | 
			
		||||
  quotes: "\2039" "\203A";
 | 
			
		||||
  font-style: italic;
 | 
			
		||||
  /* font-family: cursive; */
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
q q:lang(en), q q:lang(zh) {
 | 
			
		||||
  quotes: "\2018" "\2019";
 | 
			
		||||
  font-style: italic;
 | 
			
		||||
  /* font-family: cursive; */
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
pre, code {
 | 
			
		||||
  border: 1px solid #777
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@media screen {
 | 
			
		||||
  /* border and colour */
 | 
			
		||||
  div.qindex {
 | 
			
		||||
    background-color: black;
 | 
			
		||||
    color: black;
 | 
			
		||||
    font-weight: normal;
 | 
			
		||||
  }
 | 
			
		||||
  div.qindex:hover {
 | 
			
		||||
    background-color: yellow;
 | 
			
		||||
    color: black;
 | 
			
		||||
    font-weight: normal;
 | 
			
		||||
  }
 | 
			
		||||
  div.qindex a {
 | 
			
		||||
    background-color: black;
 | 
			
		||||
    color: yellow;
 | 
			
		||||
    font-weight: normal;
 | 
			
		||||
    border: 1px solid white;
 | 
			
		||||
  }
 | 
			
		||||
  div.qindex a.qindexHL {
 | 
			
		||||
    font-weight: bold;
 | 
			
		||||
  }
 | 
			
		||||
  div.qindex:hover a {
 | 
			
		||||
    background-color: yellow;
 | 
			
		||||
    color: black;
 | 
			
		||||
    font-weight: normal;
 | 
			
		||||
  }
 | 
			
		||||
  div.qindex:hover a:hover {
 | 
			
		||||
    background-color: black;
 | 
			
		||||
    color: yellow;
 | 
			
		||||
    font-weight: normal;
 | 
			
		||||
  }
 | 
			
		||||
  /* display and position */
 | 
			
		||||
  div.qindex {
 | 
			
		||||
    display: block;
 | 
			
		||||
    border: .25em groove gold;
 | 
			
		||||
    text-align: center;
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
@media print {
 | 
			
		||||
  div.qindex {
 | 
			
		||||
    display: none;
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
@@ -18,7 +18,7 @@
 | 
			
		||||
 | 
			
		||||
*/
 | 
			
		||||
 | 
			
		||||
#include <stdext.hxx>
 | 
			
		||||
#include <mrw/stdext.hxx>
 | 
			
		||||
 | 
			
		||||
std::string mrw::getline(std::istream& is, char d) {
 | 
			
		||||
  std::string s;
 | 
			
		||||
 
 | 
			
		||||
@@ -1,16 +0,0 @@
 | 
			
		||||
/*! @file
 | 
			
		||||
 | 
			
		||||
    @id $Id$
 | 
			
		||||
*/
 | 
			
		||||
//       1         2         3         4         5         6         7         8
 | 
			
		||||
// 45678901234567890123456789012345678901234567890123456789012345678901234567890
 | 
			
		||||
 | 
			
		||||
#include <string>
 | 
			
		||||
 | 
			
		||||
namespace xml {
 | 
			
		||||
  std::string version() {
 | 
			
		||||
    return "mrw-c++-0.0.267";
 | 
			
		||||
  }
 | 
			
		||||
  const std::string WHAT("#(@) mrw-c++-0.0.267");
 | 
			
		||||
  const std::string IDENT("$Id: mrw-c++-0.0.267 $");
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user