cpputest-3.4/0000755000175300017530000000000012143642714010242 500000000000000cpputest-3.4/build/0000755000175300017530000000000012143642713011340 500000000000000cpputest-3.4/build/ComponentMakefile0000644000175300017530000001524212023251674014606 00000000000000#--------- # # ComponentMakefile # # Include this file in your makefile # It makes # A static library # A test executable # # The necessary parameters are shown in # ComponentMakefileExampleParameters # # Inputs # SRC_FILES - Specific source files to build into library # SRC_DIRS - Directories od source file to built into the library # TEST_SRC - unit test code build into the unit test runner # MOCKS_SRC - mock objects build into the test runner # INCLUDES - List of -I files # CPPUTEST_CXXFLAGS - flags for the C++ compiler # CPPUTEST_CPPFLAGS - flags for the C++ AND C compiler # CPPUTEST_CFLAGS - C complier # CPPUTEST_LDFLAGS - Linker flags # LIB_DIR - the directory for the created library # COMPONENT_NAME - the name of the thing being created # OTHER_MAKEFILE_TO_INCLUDE - a hook to use this makefile to make # other targets. Like CSlim, which is part of fitnesse #---------- ifeq ("$(COMPONENT_NAME)", "") COMPONENT_NAME = name_this_in_the_makefile endif ifeq ("$(OBJS_DIR)", "") OBJS_DIR = objs endif ifeq ("$(LIB_DIR)", "") LIB_DIR = lib endif ifeq ("$CPPUTEST_USE_MALLOC_LEAK_DETECTION","") CPPUTEST_USE_MALLOC_LEAK_DETECTION = Y echo "leak on by default" endif #CPPUTEST_USE_OPERATOR_NEW_LEAK_DETECTION = Y #CXXFLAGS += -include $(CPPUTEST_HOME)/include/CppUTest/MemoryLeakDetectorNewMacros.h #CFLAGS += -include $(CPPUTEST_HOME)/include/CppUTest/MemoryLeakDetectorMallocMacros.h TARGET_LIB = \ $(LIB_DIR)/lib$(COMPONENT_NAME).a TEST_TARGET = \ $(COMPONENT_NAME)_tests #Helper Functions get_src_from_dir = $(wildcard $1/*.cpp) $(wildcard $1/*.c) get_dirs_from_dirspec = $(wildcard $1) get_src_from_dir_list = $(foreach dir, $1, $(call get_src_from_dir,$(dir))) src_to_o = $(subst .c,.o, $(subst .cpp,.o,$1)) src_to_d = $(subst .c,.d, $(subst .cpp,.d,$1)) change_o_file_location = $(patsubst %.o,$(OBJS_DIR)/%.o, $1) change_d_file_location = $(patsubst %.d,$(OBJS_DIR)/%.d, $1) src_to = $(subst .c,$1, $(subst .cpp,$1,$2)) #Derived STUFF_TO_CLEAN += $(TEST_TARGET) $(TEST_TARGET).exe $(TARGET_LIB) SRC += $(call get_src_from_dir_list, $(SRC_DIRS)) $(SRC_FILES) #OBJ = $(call src_to_o,$(SRC)) OBJ = $(call change_o_file_location, $(call src_to_o,$(SRC))) STUFF_TO_CLEAN += $(OBJ) TEST_SRC = $(call get_src_from_dir_list, $(TEST_SRC_DIRS)) #TEST_OBJS = $(call src_to_o,$(TEST_SRC)) TEST_OBJS = $(call change_o_file_location, $(call src_to_o,$(TEST_SRC))) STUFF_TO_CLEAN += $(TEST_OBJS) MOCKS_SRC = $(call get_src_from_dir_list, $(MOCKS_SRC_DIRS)) #MOCKS_OBJS = $(call src_to_o,$(MOCKS_SRC)) MOCKS_OBJS = $(call change_o_file_location, $(call src_to_o,$(MOCKS_SRC))) STUFF_TO_CLEAN += $(MOCKS_OBJS) ALL_SRC = $(SRC) $(TEST_SRC) $(MOCKS_SRC) #Test coverage with gcov GCOV_OUTPUT = gcov_output.txt GCOV_REPORT = gcov_report.txt GCOV_ERROR = gcov_error.txt GCOV_GCDA_FILES = $(call src_to,.gcda, $(ALL_SRC)) GCOV_GCNO_FILES = $(call src_to,.gcno, $(ALL_SRC)) TEST_OUTPUT = $(TEST_TARGET).txt STUFF_TO_CLEAN += \ $(GCOV_OUTPUT)\ $(GCOV_REPORT)\ $(GCOV_ERROR)\ $(GCOV_GCDA_FILES)\ $(GCOV_GCNO_FILES)\ $(TEST_OUTPUT) #Other stuff needed CPPUTEST_LIB = $(CPPUTEST_HOME)/lib/libCppUTest.a ifdef CPPUTEST_USE_EXTENSIONS CPPUTEST_LIB += $(CPPUTEST_HOME)/lib/libCppUTestExt.a endif CPPUTEST_CPPFLAGS += $(INCLUDES) $(GCOVFLAGS) #The gcda files for gcov need to be deleted before each run #To avoid annoying messages. GCOV_CLEAN = $(SILENCE)rm -f $(GCOV_GCDA_FILES) $(GCOV_OUTPUT) $(GCOV_REPORT) $(GCOV_ERROR) RUN_TEST_TARGET = $(SILENCE) $(GCOV_CLEAN) ; echo "Running $(TEST_TARGET)"; ./$(TEST_TARGET) $(CPPUTEST_EXE_FLAGS) ifneq "$(OTHER_MAKEFILE_TO_INCLUDE)" "" -include $(OTHER_MAKEFILE_TO_INCLUDE) endif ifneq "$(MAP_FILE)" "" CPPUTEST_LDFLAGS += -Wl,-map,$(MAP_FILE) endif INCLUDES_DIRS_EXPANDED = $(call get_dirs_from_dirspec, $(INCLUDE_DIRS)) INCLUDES += $(foreach dir, $(INCLUDES_DIRS_EXPANDED), -I$(dir)) MOCK_DIRS_EXPANDED = $(call get_dirs_from_dirspec, $(MOCKS_SRC_DIRS)) INCLUDES += $(foreach dir, $(MOCK_DIRS_EXPANDED), -I$(dir)) DEP_FILES = $(call src_to_d, $(ALL_SRC)) STUFF_TO_CLEAN += $(DEP_FILES) + $(PRODUCTION_CODE_START) + $(PRODUCTION_CODE_END) STUFF_TO_CLEAN += $(STDLIB_CODE_START) + $(MAP_FILE) + cpputest_*.xml junit_run_output # We'll use the CPPUTEST_CFLAGS etc so that you can override AND add to the CppUTest flags CFLAGS = $(CPPUTEST_CFLAGS) $(CPPUTEST_ADDITIONAL_CFLAGS) CPPFLAGS = $(CPPUTEST_CPPFLAGS) $(CPPUTEST_ADDITIONAL_CPPFLAGS) CXXFLAGS = $(CPPUTEST_CXXFLAGS) $(CPPUTEST_ADDITIONAL_CXXFLAGS) LDFLAGS = $(CPPUTEST_LDFLAGS) $(CPPUTEST_ADDITIONAL_LDFLAGS) # Targets .PHONY: all all: $(TEST_TARGET) $(RUN_TEST_TARGET) @echo "Component makefile is no longer supported, convert to MakefileInclude.mk" .PHONY: all_no_tests all_no_tests: $(TEST_TARGET) .PHONY: flags flags: $(SILENCE)echo Compile with these flags: $(SILENCE)for f in $(CPPFLAGS) ; do \ echo " C++ $$f" ; \ done $(SILENCE)for f in $(CFLAGS) ; do \ echo " C $$f" ; \ done $(SILENCE)for f in $(LDFLAGS) ; do \ echo " LD $$f" ; \ done $(SILENCE)for f in $(ARFLAGS) ; do \ echo " AR $$f" ; \ done $(TEST_TARGET): $(TEST_OBJS) $(MOCKS_OBJS) $(PRODUCTION_CODE_START) $(TARGET_LIB) $(USER_LIBS) $(PRODUCTION_CODE_END) $(CPPUTEST_LIB) $(STDLIB_CODE_START) $(SILENCE)echo Linking $@ $(SILENCE)$(LINK.o) -o $@ $^ $(LD_LIBRARIES) $(TARGET_LIB): $(OBJ) $(SILENCE)echo Building archive $@ $(SILENCE)mkdir -p lib $(SILENCE)$(AR) $(ARFLAGS) $@ $^ $(SILENCE)$(RANLIB) $@ test: $(TEST_TARGET) $(RUN_TEST_TARGET) | tee $(TEST_OUTPUT) vtest: $(TEST_TARGET) $(RUN_TEST_TARGET) -v | tee $(TEST_OUTPUT) $(OBJS_DIR)/%.o: %.cpp @echo compiling $(notdir $<) $(SILENCE)mkdir -p $(dir $@) $(SILENCE)$(COMPILE.cpp) -M -MF $(subst .o,.d,$@) -MT "$@ $(subst .o,.d,$@)" $< $(SILENCE)$(COMPILE.cpp) $(OUTPUT_OPTION) $< $(OBJS_DIR)/%.o: %.c @echo compiling $(notdir $<) $(SILENCE)mkdir -p $(dir $@) $(SILENCE)$(COMPILE.c) -M -MF $(subst .o,.d,$@) -MT "$@ $(subst .o,.d,$@)" $< $(SILENCE)$(COMPILE.c) $(OUTPUT_OPTION) $< ifneq "$(MAKECMDGOALS)" "clean" -include $(DEP_FILES) endif .PHONY: clean clean: $(SILENCE)echo Making clean $(SILENCE)$(RM) $(STUFF_TO_CLEAN) $(SILENCE)find . -name "*.gcov" | xargs rm -f $(SILENCE)find . -name "*.[do]" | xargs rm -f gcov: test $(SILENCE)for d in $(SRC_DIRS) ; do \ gcov -o $$d $$d/*.c $$d/*.cpp >> $(GCOV_OUTPUT) 2>>$(GCOV_ERROR) ; \ done $(CPPUTEST_HOME)/scripts/filterGcov.sh $(GCOV_OUTPUT) $(GCOV_ERROR) $(GCOV_REPORT) $(TEST_OUTPUT) cat $(GCOV_REPORT) .PHONEY: format format: $(CPPUTEST_HOME)/scripts/reformat.sh $(PROJECT_HOME_DIR) debug: echo Stuff to clean $(SILENCE)for f in $(STUFF_TO_CLEAN) ; do \ echo "$$f" ; \ done echo Includes $(SILENCE)for i in $(INCLUDES) ; do \ echo "$$i" ; \ done cpputest-3.4/build/ComponentMakefileExampleParameters0000644000175300017530000000226412023251674020146 00000000000000#Set this to @ to keep the makefile quiet SILENCE = @ #---- Outputs ----# COMPONENT_NAME = ProjectName TARGET_LIB = \ lib/lib$(COMPONENT_NAME).a TEST_TARGET = \ $(COMPONENT_NAME)_tests #--- Inputs ----# PROJECT_HOME_DIR = . CPPUTEST_HOME = ../CppUTest CPP_PLATFORM = Gcc #CFLAGS are set to override malloc and free to get memory leak detection in C programs CFLAGS = -Dmalloc=cpputest_malloc -Dfree=cpputest_free CPPFLAGS = GCOVFLAGS = -fprofile-arcs -ftest-coverage #SRC_DIRS is a list of source directories that make up the target library #If test files are in these directories, their IMPORT_TEST_GROUPs need #to be included in main to force them to be linked in. By convention #put them into an AllTests.h file in each directory SRC_DIRS = \ src #TEST_SRC_DIRS is a list of directories including # - A test main (AllTests.cpp by conventin) # - OBJ files in these directories are included in the TEST_TARGET # - Consequently - AllTests.h containing the IMPORT_TEST_GROUPS is not needed # - TEST_SRC_DIRS = \ tests #includes for all compiles INCLUDES =\ -I.\ -I$(CPPUTEST_HOME)/include\ #Flags to pass to ld LDFLAGS += USER_LIBS = include $(CPPUTEST_HOME)/build/ComponentMakefile cpputest-3.4/build/MakefileWorker.mk0000644000175300017530000004434212134163705014526 00000000000000#--------- # # MakefileWorker.mk # # Include this helper file in your makefile # It makes # A static library # A test executable # # See this example for parameter settings # examples/Makefile # #---------- # Inputs - these variables describe what to build # # INCLUDE_DIRS - Directories used to search for include files. # This generates a -I for each directory # SRC_DIRS - Directories containing source file to built into the library # SRC_FILES - Specific source files to build into library. Helpful when not all code # in a directory can be built for test (hopefully a temporary situation) # TEST_SRC_DIRS - Directories containing unit test code build into the unit test runner # These do not go in a library. They are explicitly included in the test runner # TEST_SRC_FILES - Specific source files to build into the unit test runner # These do not go in a library. They are explicitly included in the test runner # MOCKS_SRC_DIRS - Directories containing mock source files to build into the test runner # These do not go in a library. They are explicitly included in the test runner #---------- # You can adjust these variables to influence how to build the test target # and where to put and name outputs # See below to determine defaults # COMPONENT_NAME - the name of the thing being built # TEST_TARGET - name the test executable. By default it is # $(COMPONENT_NAME)_tests # Helpful if you want 1 > make files in the same directory with different # executables as output. # CPPUTEST_HOME - where CppUTest home dir found # TARGET_PLATFORM - Influences how the outputs are generated by modifying the # CPPUTEST_OBJS_DIR and CPPUTEST_LIB_DIR to use a sub-directory under the # normal objs and lib directories. Also modifies where to search for the # CPPUTEST_LIB to link against. # CPPUTEST_OBJS_DIR - a directory where o and d files go # CPPUTEST_LIB_DIR - a directory where libs go # CPPUTEST_ENABLE_DEBUG - build for debug # CPPUTEST_USE_MEM_LEAK_DETECTION - Links with overridden new and delete # CPPUTEST_USE_STD_CPP_LIB - Set to N to keep the standard C++ library out # of the test harness # CPPUTEST_USE_GCOV - Turn on coverage analysis # Clean then build with this flag set to Y, then 'make gcov' # CPPUTEST_USE_REAL_GTEST - Expect to link to gtest too. This enables the ability to # run Google Test tests as CppUTest tests using the GTestConvertor. # CPPUTEST_MAPFILE - generate a map file # CPPUTEST_WARNINGFLAGS - overly picky by default # OTHER_MAKEFILE_TO_INCLUDE - a hook to use this makefile to make # other targets. Like CSlim, which is part of fitnesse # CPPUTEST_USE_VPATH - Use Make's VPATH functionality to support user # specification of source files and directories that aren't below # the user's Makefile in the directory tree, like: # SRC_DIRS += ../../lib/foo # It defaults to N, and shouldn't be necessary except in the above case. #---------- # # Other flags users can initialize to sneak in their settings # CPPUTEST_CXXFLAGS - flags for the C++ compiler # CPPUTEST_CPPFLAGS - flags for the C++ AND C preprocessor # CPPUTEST_CFLAGS - flags for the C complier # CPPUTEST_LDFLAGS - Linker flags #---------- # Some behavior is weird on some platforms. Need to discover the platform. # Platforms UNAME_OUTPUT = "$(shell uname -a)" MACOSX_STR = Darwin MINGW_STR = MINGW CYGWIN_STR = CYGWIN LINUX_STR = Linux SUNOS_STR = SunOS UNKNWOWN_OS_STR = Unknown # Compilers CC_VERSION_OUTPUT ="$(shell $(CXX) -v 2>&1)" CLANG_STR = clang SUNSTUDIO_CXX_STR = SunStudio UNAME_OS = $(UNKNWOWN_OS_STR) ifeq ($(findstring $(MINGW_STR),$(UNAME_OUTPUT)),$(MINGW_STR)) UNAME_OS = $(MINGW_STR) endif ifeq ($(findstring $(CYGWIN_STR),$(UNAME_OUTPUT)),$(CYGWIN_STR)) UNAME_OS = $(CYGWIN_STR) endif ifeq ($(findstring $(LINUX_STR),$(UNAME_OUTPUT)),$(LINUX_STR)) UNAME_OS = $(LINUX_STR) endif ifeq ($(findstring $(MACOSX_STR),$(UNAME_OUTPUT)),$(MACOSX_STR)) UNAME_OS = $(MACOSX_STR) #lion has a problem with the 'v' part of -a UNAME_OUTPUT = "$(shell uname -pmnrs)" endif ifeq ($(findstring $(SUNOS_STR),$(UNAME_OUTPUT)),$(SUNOS_STR)) UNAME_OS = $(SUNOS_STR) SUNSTUDIO_CXX_ERR_STR = CC -flags ifeq ($(findstring $(SUNSTUDIO_CXX_ERR_STR),$(CC_VERSION_OUTPUT)),$(SUNSTUDIO_CXX_ERR_STR)) CC_VERSION_OUTPUT ="$(shell $(CXX) -V 2>&1)" COMPILER_NAME = $(SUNSTUDIO_CXX_STR) endif endif ifeq ($(findstring $(CLANG_STR),$(CC_VERSION_OUTPUT)),$(CLANG_STR)) COMPILER_NAME = $(CLANG_STR) endif #Kludge for mingw, it does not have cc.exe, but gcc.exe will do ifeq ($(UNAME_OS),$(MINGW_STR)) CC := gcc endif #And another kludge. Exception handling in gcc 4.6.2 is broken when linking the # Standard C++ library as a shared library. Unbelievable. ifeq ($(UNAME_OS),$(MINGW_STR)) CPPUTEST_LDFLAGS += -static endif ifeq ($(UNAME_OS),$(CYGWIN_STR)) CPPUTEST_LDFLAGS += -static endif #Kludge for MacOsX gcc compiler on Darwin9 who can't handle pendantic ifeq ($(UNAME_OS),$(MACOSX_STR)) ifeq ($(findstring Version 9,$(UNAME_OUTPUT)),Version 9) CPPUTEST_PEDANTIC_ERRORS = N endif endif ifndef COMPONENT_NAME COMPONENT_NAME = name_this_in_the_makefile endif # Debug on by default ifndef CPPUTEST_ENABLE_DEBUG CPPUTEST_ENABLE_DEBUG = Y endif # new and delete for memory leak detection on by default ifndef CPPUTEST_USE_MEM_LEAK_DETECTION CPPUTEST_USE_MEM_LEAK_DETECTION = Y endif # Use the standard C library ifndef CPPUTEST_USE_STD_C_LIB CPPUTEST_USE_STD_C_LIB = Y endif # Use the standard C++ library ifndef CPPUTEST_USE_STD_CPP_LIB CPPUTEST_USE_STD_CPP_LIB = Y endif # Use the real gtest or use the fake simulation ifdef CPPUTEST_USE_REAL_GTEST CPPUTEST_USE_REAL_GTEST = Y else CPPUTEST_USE_REAL_GTEST = N endif # Use gmock ifdef CPPUTEST_USE_REAL_GMOCK CPPUTEST_USE_REAL_GMOCK = Y else CPPUTEST_USE_REAL_GMOCK = N endif # Use gcov, off by default ifndef CPPUTEST_USE_GCOV CPPUTEST_USE_GCOV = N endif ifndef CPPUTEST_PEDANTIC_ERRORS CPPUTEST_PEDANTIC_ERRORS = Y endif # Default warnings ifndef CPPUTEST_WARNINGFLAGS ifeq ($(CPPUTEST_USE_REAL_GTEST), N) CPPUTEST_WARNINGFLAGS = -Wall -Wextra -Werror -Wshadow -Wswitch-default -Wswitch-enum -Wconversion ifeq ($(CPPUTEST_PEDANTIC_ERRORS), Y) CPPUTEST_WARNINGFLAGS += -pedantic-errors endif ifeq ($(UNAME_OS),$(LINUX_STR)) CPPUTEST_WARNINGFLAGS += -Wsign-conversion endif CPPUTEST_CXX_WARNINGFLAGS = -Woverloaded-virtual CPPUTEST_C_WARNINGFLAGS = -Wstrict-prototypes endif endif #Wonderful extra compiler warnings with clang ifeq ($(COMPILER_NAME),$(CLANG_STR)) # -Wno-disabled-macro-expansion -> Have to disable the macro expansion warning as the operator new overload warns on that. # -Wno-padded -> I sort-of like this warning but if there is a bool at the end of the class, it seems impossible to remove it! (except by making padding explicit) # -Wno-global-constructors Wno-exit-time-destructors -> Great warnings, but in CppUTest it is impossible to avoid as the automatic test registration depends on the global ctor and dtor # -Wno-weak-vtables -> The TEST_GROUP macro declares a class and will automatically inline its methods. Thats ok as they are only in one translation unit. Unfortunately, the warning can't detect that, so it must be disabled. CPPUTEST_CXX_WARNINGFLAGS += -Weverything -Wno-disabled-macro-expansion -Wno-padded -Wno-global-constructors -Wno-exit-time-destructors -Wno-weak-vtables CPPUTEST_C_WARNINGFLAGS += -Weverything -Wno-padded endif # Uhm. Maybe put some warning flags for SunStudio here? ifeq ($(COMPILER_NAME),$(SUNSTUDIO_CXX_STR)) CPPUTEST_CXX_WARNINGFLAGS = CPPUTEST_C_WARNINGFLAGS = endif # Default dir for temporary files (d, o) ifndef CPPUTEST_OBJS_DIR ifndef TARGET_PLATFORM CPPUTEST_OBJS_DIR = objs else CPPUTEST_OBJS_DIR = objs/$(TARGET_PLATFORM) endif endif # Default dir for the outout library ifndef CPPUTEST_LIB_DIR ifndef TARGET_PLATFORM CPPUTEST_LIB_DIR = lib else CPPUTEST_LIB_DIR = lib/$(TARGET_PLATFORM) endif endif # No map by default ifndef CPPUTEST_MAP_FILE CPPUTEST_MAP_FILE = N endif # No extentions is default ifndef CPPUTEST_USE_EXTENSIONS CPPUTEST_USE_EXTENSIONS = N endif # No VPATH is default ifndef CPPUTEST_USE_VPATH CPPUTEST_USE_VPATH := N endif # Make empty, instead of 'N', for usage in $(if ) conditionals ifneq ($(CPPUTEST_USE_VPATH), Y) CPPUTEST_USE_VPATH := endif ifndef TARGET_PLATFORM CPPUTEST_LIB_LINK_DIR = $(CPPUTEST_HOME)/lib else CPPUTEST_LIB_LINK_DIR = $(CPPUTEST_HOME)/lib/$(TARGET_PLATFORM) endif # -------------------------------------- # derived flags in the following area # -------------------------------------- # Without the C library, we'll need to disable the C++ library and ... ifeq ($(CPPUTEST_USE_STD_C_LIB), N) CPPUTEST_USE_STD_CPP_LIB = N CPPUTEST_USE_MEM_LEAK_DETECTION = N CPPUTEST_CPPFLAGS += -DCPPUTEST_STD_C_LIB_DISABLED CPPUTEST_CPPFLAGS += -nostdinc endif CPPUTEST_CPPFLAGS += -DCPPUTEST_COMPILATION ifeq ($(CPPUTEST_USE_MEM_LEAK_DETECTION), N) CPPUTEST_CPPFLAGS += -DCPPUTEST_MEM_LEAK_DETECTION_DISABLED else ifndef CPPUTEST_MEMLEAK_DETECTOR_NEW_MACRO_FILE CPPUTEST_MEMLEAK_DETECTOR_NEW_MACRO_FILE = -include $(CPPUTEST_HOME)/include/CppUTest/MemoryLeakDetectorNewMacros.h endif ifndef CPPUTEST_MEMLEAK_DETECTOR_MALLOC_MACRO_FILE CPPUTEST_MEMLEAK_DETECTOR_MALLOC_MACRO_FILE = -include $(CPPUTEST_HOME)/include/CppUTest/MemoryLeakDetectorMallocMacros.h endif endif ifeq ($(CPPUTEST_ENABLE_DEBUG), Y) CPPUTEST_CXXFLAGS += -g CPPUTEST_CFLAGS += -g CPPUTEST_LDFLAGS += -g endif ifeq ($(CPPUTEST_USE_STD_CPP_LIB), N) CPPUTEST_CPPFLAGS += -DCPPUTEST_STD_CPP_LIB_DISABLED ifeq ($(CPPUTEST_USE_STD_C_LIB), Y) CPPUTEST_CXXFLAGS += -nostdinc++ endif endif ifeq ($(CPPUTEST_USE_REAL_GMOCK), Y) ifndef GMOCK_HOME $(error CPPUTEST_USE_REAL_GMOCK defined, but GMOCK_HOME not, so can't use real gmock! Please define GMOCK_HOME to the gmock location) endif GTEST_HOME = $(GMOCK_HOME)/gtest CPPUTEST_USE_REAL_GTEST = Y CPPUTEST_CPPFLAGS += -I$(GMOCK_HOME)/include GMOCK_LIBRARY = $(GMOCK_HOME)/lib/.libs/libgmock.a LD_LIBRARIES += $(GMOCK_LIBRARY) CPPUTEST_CPPFLAGS += -DCPPUTEST_USE_REAL_GMOCK else CPPUTEST_CPPFLAGS += -Iinclude/CppUTestExt/CppUTestGMock endif ifeq ($(CPPUTEST_USE_REAL_GTEST), Y) ifndef GTEST_HOME $(error CPPUTEST_USE_REAL_GTEST defined, but GTEST_HOME not, so can't use real gtest! Please define GTEST_HOME to the gtest location) endif CPPUTEST_CPPFLAGS += -I$(GTEST_HOME)/include -I$(GTEST_HOME) GTEST_LIBRARY = $(GTEST_HOME)/lib/.libs/libgtest.a LD_LIBRARIES += $(GTEST_LIBRARY) CPPUTEST_CPPFLAGS += -DCPPUTEST_USE_REAL_GTEST else CPPUTEST_CPPFLAGS += -Iinclude/CppUTestExt/CppUTestGTest endif ifeq ($(CPPUTEST_USE_GCOV), Y) CPPUTEST_CXXFLAGS += -fprofile-arcs -ftest-coverage CPPUTEST_CFLAGS += -fprofile-arcs -ftest-coverage endif CPPUTEST_CXXFLAGS += $(CPPUTEST_WARNINGFLAGS) $(CPPUTEST_CXX_WARNINGFLAGS) CPPUTEST_CPPFLAGS += $(CPPUTEST_WARNINGFLAGS) CPPUTEST_CXXFLAGS += $(CPPUTEST_MEMLEAK_DETECTOR_NEW_MACRO_FILE) CPPUTEST_CPPFLAGS += $(CPPUTEST_MEMLEAK_DETECTOR_MALLOC_MACRO_FILE) CPPUTEST_CFLAGS += $(CPPUTEST_C_WARNINGFLAGS) TARGET_MAP = $(COMPONENT_NAME).map.txt ifeq ($(CPPUTEST_MAP_FILE), Y) CPPUTEST_LDFLAGS += -Wl,-map,$(TARGET_MAP) endif # Link with CppUTest lib CPPUTEST_LIB = $(CPPUTEST_LIB_LINK_DIR)/libCppUTest.a ifeq ($(CPPUTEST_USE_EXTENSIONS), Y) CPPUTEST_LIB += $(CPPUTEST_LIB_LINK_DIR)/libCppUTestExt.a endif LD_LIBRARIES += -lstdc++ TARGET_LIB = \ $(CPPUTEST_LIB_DIR)/lib$(COMPONENT_NAME).a ifndef TEST_TARGET ifndef TARGET_PLATFORM TEST_TARGET = $(COMPONENT_NAME)_tests else TEST_TARGET = $(COMPONENT_NAME)_$(TARGET_PLATFORM)_tests endif endif #Helper Functions get_src_from_dir = $(wildcard $1/*.cpp) $(wildcard $1/*.c) get_dirs_from_dirspec = $(wildcard $1) get_src_from_dir_list = $(foreach dir, $1, $(call get_src_from_dir,$(dir))) __src_to = $(subst .c,$1, $(subst .cpp,$1,$(if $(CPPUTEST_USE_VPATH),$(notdir $2),$2))) src_to = $(addprefix $(CPPUTEST_OBJS_DIR)/,$(call __src_to,$1,$2)) src_to_o = $(call src_to,.o,$1) src_to_d = $(call src_to,.d,$1) src_to_gcda = $(call src_to,.gcda,$1) src_to_gcno = $(call src_to,.gcno,$1) time = $(shell date +%s) delta_t = $(eval minus, $1, $2) debug_print_list = $(foreach word,$1,echo " $(word)";) echo; #Derived STUFF_TO_CLEAN += $(TEST_TARGET) $(TEST_TARGET).exe $(TARGET_LIB) $(TARGET_MAP) SRC += $(call get_src_from_dir_list, $(SRC_DIRS)) $(SRC_FILES) OBJ = $(call src_to_o,$(SRC)) STUFF_TO_CLEAN += $(OBJ) TEST_SRC += $(call get_src_from_dir_list, $(TEST_SRC_DIRS)) $(TEST_SRC_FILES) TEST_OBJS = $(call src_to_o,$(TEST_SRC)) STUFF_TO_CLEAN += $(TEST_OBJS) MOCKS_SRC += $(call get_src_from_dir_list, $(MOCKS_SRC_DIRS)) MOCKS_OBJS = $(call src_to_o,$(MOCKS_SRC)) STUFF_TO_CLEAN += $(MOCKS_OBJS) ALL_SRC = $(SRC) $(TEST_SRC) $(MOCKS_SRC) # If we're using VPATH ifeq ($(CPPUTEST_USE_VPATH), Y) # gather all the source directories and add them VPATH += $(sort $(dir $(ALL_SRC))) # Add the component name to the objs dir path, to differentiate between same-name objects CPPUTEST_OBJS_DIR := $(addsuffix /$(COMPONENT_NAME),$(CPPUTEST_OBJS_DIR)) endif #Test coverage with gcov GCOV_OUTPUT = gcov_output.txt GCOV_REPORT = gcov_report.txt GCOV_ERROR = gcov_error.txt GCOV_GCDA_FILES = $(call src_to_gcda, $(ALL_SRC)) GCOV_GCNO_FILES = $(call src_to_gcno, $(ALL_SRC)) TEST_OUTPUT = $(TEST_TARGET).txt STUFF_TO_CLEAN += \ $(GCOV_OUTPUT)\ $(GCOV_REPORT)\ $(GCOV_REPORT).html\ $(GCOV_ERROR)\ $(GCOV_GCDA_FILES)\ $(GCOV_GCNO_FILES)\ $(TEST_OUTPUT) #The gcda files for gcov need to be deleted before each run #To avoid annoying messages. GCOV_CLEAN = $(SILENCE)rm -f $(GCOV_GCDA_FILES) $(GCOV_OUTPUT) $(GCOV_REPORT) $(GCOV_ERROR) RUN_TEST_TARGET = $(SILENCE) $(GCOV_CLEAN) ; echo "Running $(TEST_TARGET)"; ./$(TEST_TARGET) $(CPPUTEST_EXE_FLAGS) ifeq ($(CPPUTEST_USE_GCOV), Y) ifeq ($(COMPILER_NAME),$(CLANG_STR)) LD_LIBRARIES += --coverage else LD_LIBRARIES += -lgcov endif endif INCLUDES_DIRS_EXPANDED = $(call get_dirs_from_dirspec, $(INCLUDE_DIRS)) INCLUDES += $(foreach dir, $(INCLUDES_DIRS_EXPANDED), -I$(dir)) MOCK_DIRS_EXPANDED = $(call get_dirs_from_dirspec, $(MOCKS_SRC_DIRS)) INCLUDES += $(foreach dir, $(MOCK_DIRS_EXPANDED), -I$(dir)) CPPUTEST_CPPFLAGS += $(INCLUDES) DEP_FILES = $(call src_to_d, $(ALL_SRC)) STUFF_TO_CLEAN += $(DEP_FILES) $(PRODUCTION_CODE_START) $(PRODUCTION_CODE_END) STUFF_TO_CLEAN += $(STDLIB_CODE_START) $(MAP_FILE) cpputest_*.xml junit_run_output # We'll use the CPPUTEST_CFLAGS etc so that you can override AND add to the CppUTest flags CFLAGS = $(CPPUTEST_CFLAGS) $(CPPUTEST_ADDITIONAL_CFLAGS) CPPFLAGS = $(CPPUTEST_CPPFLAGS) $(CPPUTEST_ADDITIONAL_CPPFLAGS) CXXFLAGS = $(CPPUTEST_CXXFLAGS) $(CPPUTEST_ADDITIONAL_CXXFLAGS) LDFLAGS = $(CPPUTEST_LDFLAGS) $(CPPUTEST_ADDITIONAL_LDFLAGS) # Don't consider creating the archive a warning condition that does STDERR output ARFLAGS := $(ARFLAGS)c DEP_FLAGS=-MMD -MP # Some macros for programs to be overridden. For some reason, these are not in Make defaults RANLIB = ranlib # Targets .PHONY: all all: start $(TEST_TARGET) $(RUN_TEST_TARGET) .PHONY: start start: $(TEST_TARGET) $(SILENCE)START_TIME=$(call time) .PHONY: all_no_tests all_no_tests: $(TEST_TARGET) .PHONY: flags flags: @echo @echo "OS ${UNAME_OS}" @echo "Compile C and C++ source with CPPFLAGS:" @$(call debug_print_list,$(CPPFLAGS)) @echo "Compile C++ source with CXXFLAGS:" @$(call debug_print_list,$(CXXFLAGS)) @echo "Compile C source with CFLAGS:" @$(call debug_print_list,$(CFLAGS)) @echo "Link with LDFLAGS:" @$(call debug_print_list,$(LDFLAGS)) @echo "Link with LD_LIBRARIES:" @$(call debug_print_list,$(LD_LIBRARIES)) @echo "Create libraries with ARFLAGS:" @$(call debug_print_list,$(ARFLAGS)) TEST_DEPS = $(TEST_OBJS) $(MOCKS_OBJS) $(PRODUCTION_CODE_START) $(TARGET_LIB) $(USER_LIBS) $(PRODUCTION_CODE_END) $(CPPUTEST_LIB) $(STDLIB_CODE_START) test-deps: $(TEST_DEPS) $(TEST_TARGET): $(TEST_DEPS) @echo Linking $@ $(SILENCE)$(LINK.o) -o $@ $^ $(LD_LIBRARIES) $(TARGET_LIB): $(OBJ) @echo Building archive $@ $(SILENCE)mkdir -p $(dir $@) $(SILENCE)$(AR) $(ARFLAGS) $@ $^ $(SILENCE)$(RANLIB) $@ test: $(TEST_TARGET) $(RUN_TEST_TARGET) | tee $(TEST_OUTPUT) vtest: $(TEST_TARGET) $(RUN_TEST_TARGET) -v | tee $(TEST_OUTPUT) $(CPPUTEST_OBJS_DIR)/%.o: %.cpp @echo compiling $(notdir $<) $(SILENCE)mkdir -p $(dir $@) $(SILENCE)$(COMPILE.cpp) $(DEP_FLAGS) $(OUTPUT_OPTION) $< $(CPPUTEST_OBJS_DIR)/%.o: %.c @echo compiling $(notdir $<) $(SILENCE)mkdir -p $(dir $@) $(SILENCE)$(COMPILE.c) $(DEP_FLAGS) $(OUTPUT_OPTION) $< ifneq "$(MAKECMDGOALS)" "clean" -include $(DEP_FILES) endif .PHONY: clean clean: @echo Making clean $(SILENCE)$(RM) $(STUFF_TO_CLEAN) $(SILENCE)rm -rf gcov $(CPPUTEST_OBJS_DIR) $(SILENCE)find . -name "*.gcno" | xargs rm -f $(SILENCE)find . -name "*.gcda" | xargs rm -f #realclean gets rid of all gcov, o and d files in the directory tree #not just the ones made by this makefile .PHONY: realclean realclean: clean $(SILENCE)rm -rf gcov $(SILENCE)find . -name "*.gdcno" | xargs rm -f $(SILENCE)find . -name "*.[do]" | xargs rm -f gcov: test ifeq ($(CPPUTEST_USE_VPATH), Y) $(SILENCE)gcov --object-directory $(CPPUTEST_OBJS_DIR) $(SRC) >> $(GCOV_OUTPUT) 2>> $(GCOV_ERROR) else $(SILENCE)for d in $(SRC_DIRS) ; do \ gcov --object-directory $(CPPUTEST_OBJS_DIR)/$$d $$d/*.c $$d/*.cpp >> $(GCOV_OUTPUT) 2>>$(GCOV_ERROR) ; \ done $(SILENCE)for f in $(SRC_FILES) ; do \ gcov --object-directory $(CPPUTEST_OBJS_DIR)/$$f $$f >> $(GCOV_OUTPUT) 2>>$(GCOV_ERROR) ; \ done endif $(CPPUTEST_HOME)/scripts/filterGcov.sh $(GCOV_OUTPUT) $(GCOV_ERROR) $(GCOV_REPORT) $(TEST_OUTPUT) $(SILENCE)cat $(GCOV_REPORT) $(SILENCE)mkdir -p gcov $(SILENCE)mv *.gcov gcov $(SILENCE)mv gcov_* gcov @echo "See gcov directory for details" .PHONEY: format format: $(CPPUTEST_HOME)/scripts/reformat.sh $(PROJECT_HOME_DIR) .PHONEY: debug debug: @echo @echo "Target Source files:" @$(call debug_print_list,$(SRC)) @echo "Target Object files:" @$(call debug_print_list,$(OBJ)) @echo "Test Source files:" @$(call debug_print_list,$(TEST_SRC)) @echo "Test Object files:" @$(call debug_print_list,$(TEST_OBJS)) @echo "Mock Source files:" @$(call debug_print_list,$(MOCKS_SRC)) @echo "Mock Object files:" @$(call debug_print_list,$(MOCKS_OBJS)) @echo "All Input Dependency files:" @$(call debug_print_list,$(DEP_FILES)) @echo Stuff to clean: @$(call debug_print_list,$(STUFF_TO_CLEAN)) @echo Includes: @$(call debug_print_list,$(INCLUDES)) -include $(OTHER_MAKEFILE_TO_INCLUDE) cpputest-3.4/build/StaticLibMakefile0000644000175300017530000000024012023251674014512 00000000000000 $(CPPUTEST_TARGET) : $(OBJS) ar -rc $@ $(OBJS) $(RANLIB) $@ if [ "$(LIBDIR)" != "." ]; then\ mv $@ $(LIBDIR) ; \ fi all: $(CPPUTEST_TARGET) cpputest-3.4/build/alltests.mmp0000644000175300017530000000456612023251674013640 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning, Bas Vodde and Timo Puronen * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ TARGET cpputest.exe TARGETTYPE exe UID 0x00000000 0x03A6305A USERINCLUDE ..\include ..\include\CppUTest ..\include\Platforms\Symbian ..\tests SYSTEMINCLUDE \epoc32\include \epoc32\include\stdapis STATICLIBRARY libcrt0.lib STATICLIBRARY cpputest.lib LIBRARY euser.lib libc.lib libm.lib libpthread.lib SOURCEPATH ..\tests SOURCE FailureTest.cpp MemoryLeakWarningTest.cpp NullTestTest.cpp SOURCE SimpleStringTest.cpp TestInstallerTest.cpp SOURCE TestOutputTest.cpp TestRegistryTest.cpp UtestTest.cpp CommandLineTestRunnerTest.cpp JUnitOutputTest.cpp SOURCE TestHarness_cTest.cpp SOURCEPATH ..\tests SOURCE AllTests.cpp TestResultTest.cpp PluginTest.cpp SetPluginTest.cpp MACRO UT_NEW_MACROS_DISABLED MACRO UT_NEW_OVERRIDES_DISABLED cpputest-3.4/build/bld.inf0000644000175300017530000000516212023251674012522 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning, Bas Vodde and Timo Puronen * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ PRJ_PLATFORMS DEFAULT PRJ_EXPORTS ..\include\CppUTest\TestHarness.h \epoc32\include\CppUTest\TestHarness.h ..\include\CppUTest\Utest.h \epoc32\include\CppUTest\Utest.h ..\include\CppUTest\UtestMacros.h \epoc32\include\CppUTest\UtestMacros.h ..\include\CppUTest\TestResult.h \epoc32\include\CppUTest\TestResult.h ..\include\CppUTest\Failure.h \epoc32\include\CppUTest\Failure.h ..\include\CppUTest\TestRegistry.h \epoc32\include\CppUTest\TestRegistry.h ..\include\CppUTest\SimpleString.h \epoc32\include\CppUTest\SimpleString.h ..\include\CppUTest\MemoryLeakWarning.h \epoc32\include\CppUTest\MemoryLeakWarning.h ..\include\CppUTest\CommandLineTestRunner.h \epoc32\include\CppuTest\CommandLineTestRunner.h ..\include\CppUTest\TestOutput.h \epoc32\include\CppuTest\TestOutput.h ..\include\CppUTest\TestPlugin.h \epoc32\include\CppUTest\TestPlugin.h ..\include\CppUTest\PlatformSpecificFunctions.h \epoc32\include\CppUTest\PlatformSpecificFunctions.h PRJ_MMPFILES cpputest.mmp PRJ_TESTMMPFILES alltests.mmp cpputest-3.4/build/cpputest.mmp0000644000175300017530000000435212023251674013645 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning, Bas Vodde and Timo Puronen * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ TARGET cpputest.lib TARGETTYPE LIB UID 0x00000000 0x03A6305A USERINCLUDE ..\include ..\include\CppUTest ..\include\Platforms\Symbian SYSTEMINCLUDE \epoc32\include \epoc32\include\stdapis SOURCEPATH ..\src\CppUTest SOURCE CommandLineTestRunner.cpp Failure.cpp MemoryLeakWarningPlugin.cpp SimpleString.cpp TestOutput.cpp TestPlugin.cpp TestRegistry.cpp TestResult.cpp Utest.cpp JUnitTestOutput.cpp TestHarness_c.cpp SOURCEPATH ..\src\Platforms\Symbian SOURCE SymbianMemoryLeakWarning.cpp UtestPlatform.cpp MACRO UT_NEW_MACROS_DISABLED MACRO UT_NEW_OVERRIDES_DISABLED SOURCEPATH ..\src\CppUTest SOURCE MemoryLeakDetector.cpp CommandLineArguments.cpp cpputest-3.4/cmake/0000755000175300017530000000000012143642712011320 500000000000000cpputest-3.4/cmake/Modules/0000755000175300017530000000000012143642713012731 500000000000000cpputest-3.4/cmake/Modules/CppUTestConfigurationOptions.cmake0000644000175300017530000000720212134163705021466 00000000000000if (MSVC) set(CPP_PLATFORM VisualCpp) include_directories(${CppUTestRootDirectory}/include/Platforms/${CPP_PLATFORM}) elseif (STD_C) set(CPP_PLATFORM Gcc) else (MSVC) set(STD_CPP False) set(MEMORY_LEAK_DETECTION False) set(CPPUTEST_CXX_FLAGS "${CPPUTEST_CXX_FLAGS} -nostdinc") set(CPPUTEST_LD_FLAGS "${CPPUTEST_LD_FLAGS} -nostdinc") set(CPPUTEST_STD_C_LIB_DISABLED 1) set(CPP_PLATFORM GccNoStdC) endif (MSVC) include("${CppUTestRootDirectory}/cmake/Modules/CppUTestWarningFlags.cmake") if (NOT STD_CPP) set(CPPUTEST_STD_CPP_LIB_DISABLED 1) if (STD_C AND NOT MSVC) set(CPPUTEST_CXX_FLAGS "${CPPUTEST_CXX_FLAGS} -nostdinc++") endif (STD_C AND NOT MSVC) endif (NOT STD_CPP) if (MEMORY_LEAK_DETECTION) if (MSVC) set(CPPUTEST_C_FLAGS "${CPPUTEST_C_FLAGS} /FI ${CppUTestRootDirectory}/include/CppUTest/MemoryLeakDetectorMallocMacros.h") set(CPPUTEST_CXX_FLAGS "${CPPUTEST_CXX_FLAGS} /FI ${CppUTestRootDirectory}/include/CppUTest/MemoryLeakDetectorMallocMacros.h") else (MSVC) set(CPPUTEST_C_FLAGS "${CPPUTEST_C_FLAGS} -include ${CppUTestRootDirectory}/include/CppUTest/MemoryLeakDetectorMallocMacros.h") set(CPPUTEST_CXX_FLAGS "${CPPUTEST_CXX_FLAGS} -include ${CppUTestRootDirectory}/include/CppUTest/MemoryLeakDetectorNewMacros.h") set(CPPUTEST_CXX_FLAGS "${CPPUTEST_CXX_FLAGS} -include ${CppUTestRootDirectory}/include/CppUTest/MemoryLeakDetectorMallocMacros.h") endif (MSVC) else (MEMORY_LEAK_DETECTION) set(CPPUTEST_MEM_LEAK_DETECTION_DISABLED 1) endif (MEMORY_LEAK_DETECTION) if (MAP_FILE AND NOT MSVC) set(CPPUTEST_LD_FLAGS "${CPPUTEST_LD_FLAGS} -Wl,-map,$<.map.txt") endif (MAP_FILE AND NOT MSVC) if (COVERAGE AND NOT MSVC) set(CPPUTEST_C_FLAGS "${CPPUTEST_C_FLAGS} --coverage") set(CPPUTEST_CXX_FLAGS "${CPPUTEST_CXX_FLAGS} --coverage") set(CMAKE_BUILD_TYPE "Debug") endif (COVERAGE AND NOT MSVC) if (GMOCK) set(GMOCK_HOME $ENV{GMOCK_HOME}) if (NOT GMOCK_HOME) message(FATAL_ERROR "Trying to compile with GMock support, but environment variable $GMOCK_HOME is not set") endif (NOT GMOCK_HOME) # GMock pulls in gtest. set(REAL_GTEST OFF) set(CPPUTEST_USE_REAL_GMOCK 1) set(CPPUTEST_USE_REAL_GTEST 1) include_directories(${GMOCK_HOME}/include ${GMOCK_HOME}/gtest ${GMOCK_HOME}/gtest/include) add_subdirectory(${GMOCK_HOME} "${CMAKE_CURRENT_BINARY_DIR}/gmock") set(CPPUNIT_EXTERNAL_LIBRARIES ${CPPUNIT_EXTERNAL_LIBARIES} gmock gtest) else (GMOCK) include_directories(${CppUTestRootDirectory}/include/CppUTestExt/CppUTestGMock) endif (GMOCK) if (REAL_GTEST AND NOT CPPUTEST_USE_REAL_GTEST) set(GTEST_HOME $ENV{GTEST_HOME}) if (NOT GTEST_HOME) message(FATAL_ERROR "Trying to compile with gtest support, but environment variable $GTEST_HOME is not set") endif (NOT GTEST_HOME) set(CPPUTEST_USE_REAL_GTEST 1) include_directories(${GTEST_HOME} ${GTEST_HOME}/include) add_subdirectory(${GTEST_HOME} "${CMAKE_CURRENT_BINARY_DIR}/gtest") set(CPPUNIT_EXTERNAL_LIBRARIES ${CPPUNIT_EXTERNAL_LIBARIES} gtest) elseif (NOT CPPUTEST_USE_REAL_GTEST) include_directories(${CppUTestRootDirectory}/include/CppUTestExt/CppUTestGTest) endif (REAL_GTEST AND NOT CPPUTEST_USE_REAL_GTEST) set(CPPUTEST_C_FLAGS "${CPPUTEST_C_FLAGS} ${CPPUTEST_C_WARNING_FLAGS}") set(CPPUTEST_CXX_FLAGS "${CPPUTEST_CXX_FLAGS} ${CPPUTEST_CXX_WARNING_FLAGS}") if (CPPUTEST_FLAGS) set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${CPPUTEST_C_FLAGS}") set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${CPPUTEST_CXX_FLAGS}") set(CMAKE_LD_FLAGS "${CMAKE_LD_FLAGS} ${CPPUTEST_LD_FLAGS}") endif (CPPUTEST_FLAGS) set(CPPUTEST_COMPILATION 1) cpputest-3.4/cmake/Modules/CppUTestWarningFlags.cmake0000644000175300017530000000333312137414545017672 00000000000000if (MSVC) set(CPPUTEST_C_WARNING_FLAGS "/WX") set(CPPUTEST_CXX_WARNING_FLAGS "/WX /wd4290") else (MSVC) include(CheckCCompilerFlag) include(CheckCXXCompilerFlag) macro(check_and_append_c_warning_flags) foreach (flag ${ARGN}) check_c_compiler_flag("-${flag}" WARNING_C_FLAG_${flag}) if (WARNING_C_FLAG_${flag}) set(CPPUTEST_C_WARNING_FLAGS "${CPPUTEST_C_WARNING_FLAGS} -${flag}") endif (WARNING_C_FLAG_${flag}) endforeach (flag) endmacro(check_and_append_c_warning_flags) macro(check_and_append_cxx_warning_flags) foreach (flag ${ARGN}) check_cxx_compiler_flag("-${flag}" WARNING_CXX_FLAG_${flag}) if (WARNING_CXX_FLAG_${flag}) set(CPPUTEST_CXX_WARNING_FLAGS "${CPPUTEST_CXX_WARNING_FLAGS} -${flag}") endif (WARNING_CXX_FLAG_${flag}) endforeach (flag) endmacro(check_and_append_cxx_warning_flags) set(WARNING_C_FLAGS Weverything Wall Wextra Wshadow Wswitch-default Wswitch-enum Wconversion Wsign-conversion Wno-padded Wno-disabled-macro-expansion ) if (NOT GMOCK AND NOT REAL_GTEST) list(APPEND WARNING_C_FLAGS Werror pedantic-errors) endif (NOT GMOCK AND NOT REAL_GTEST) set(WARNING_C_ONLY_FLAGS Wstrict-prototypes ) set(WARNING_CXX_FLAGS ${WARNING_C_FLAGS} Woverloaded-virtual Wno-global-constructors Wno-exit-time-destructors Wno-weak-vtables ) check_and_append_c_warning_flags(${WARNING_C_FLAGS}) check_and_append_c_warning_flags(${WARNING_C_ONLY_FLAGS}) check_and_append_cxx_warning_flags(${WARNING_CXX_FLAGS}) endif (MSVC) cpputest-3.4/docs/0000755000175300017530000000000012143642713011171 500000000000000cpputest-3.4/docs/WalkThrough_VS21010.docx0000664000175300017530000626752212066727207015257 00000000000000PK!g [Content_Types].xml (ĖMo0  ][0[eخM;¬HLIvu^2E\^ދ&c9$Y:'?_ҏ$d%!'{rr`-mN؂`6S[ _SS͊߬~@ %$5j*k0w;-k\uyps:aB /[Y>JLl߱[;ihpix 3 GN)ipNˌpx*ZwJŠ`\c΢DC91Jۋ8AA!c m.Nl8GҧBX7`_Ӎq{]UP{2]¦=,ncSgʓw~6$HJ8 = <C"f3\ȾTI SWY ig@X6_]7~ fˉao.b*lIrj),l0%b 6iD_, |uZ^t٢yǯ;!Y,}{C/h>PK!word/_rels/document.xml.rels (Yn0  MRv"J@.mvU$"Hߗ#iס-HݻwOǾңk)lMe֬ s6s4uY Վ]_wUwrvppq[{?|Ukݗ.6JcǾa9PVJs9/xzzq.x[ fw!<߇ۦi+V^3xۇq}z]~s fxD1G(B.hP(p~^h_g1BHA`*rG.iP(9"g:hw}wX-Τh8l!9ʇHx@ "%) PI%3B„(N*aFrN`'MZ f1ضgws؂eJ (2lƹ)$Il$t69P0IATm3ة7vyu/IrrbN64.qB#lO%x($"jWN_J ʉ|>#)PXI1ĩ{R#kQB!0l;leKXєY"O&'SIE>4 'O/JzQ:A$%'B<"j"' vEn|Vi[/f,}[g~ 4}={9ڏ֯oFWيX0z\ZN;$`z0E%Xȓz8/EN+IAhS5 v^-6Ug+^?@_PK!Edword/document.xml}{oH߁],Gg`#v`ZmvdQCRv܃~$wRUHQdibթSz3n0ۣq`/r>y9]y{Y0]xn9}{t˓7owF74 2>7oK꽹 ٛF^ca0[7:ݤG ߺ 7͍~Y-_c܏1v =Z1 +'|B0 w#77Et/7xhXu2ۼE̓u'(tS1/9h7X-F C)Lfr0 \0X-Yz,:;̬b'O^Z{v.#fzj3;aQ",ßYw']7;F y9uҿ޹'ӗ(R^ema7h'Ō_ n4sP2,Ǻ~/"w<7o^S;lQa^a\`ɺUD$ʐ&`Ưa=l|]`i,%}z{T[Jإwt<d=_\ q/!vOͥh :Υaݤ9dlLXB?wĆa5R|6v 1į%»i;?L(Ͻ%DKwGywԳyouTmY][a~fUl?yK7tcO5&<.`jn4 ~=$#BZ)5D8ڰL)cU}3x,4MG|aThe2~< /0$ty? ۲}An2@nISy74Xau07!:YgoueDL|oŽƾ)cbj՚̾=u &b2ZjP, ~GB o:#?"$JNv5*ӻG, pB;yy5$qRvP>&VT=Tm4D4!M=*՝y}~ u8 ZUǁ}ڭ(I`yOJQҍ,&#Z$NY& L%_hέx5<֙k* WV gsˤpp#s'cxĝwo[`WTU\ERB&o]ci|]l5Ugʑ3OROR8plص""jqIYPFVZQxڋIYl8wFN:\.9:EppжUj"!TkǕF >bK\QѶV[mڣv;qCS)yv?+ҶIhYT@rO@ iViHO~4sw*bj)ۋp{< ЏjW FvGoD_3OhzBbn5Ԥ e?E%]+jv!OqRH]+$(g,νH_4U5[\:P gǏǘXD̺;5uF`?{r-}[F 淈(AF"u}JcRCyOʫ!E6,TdR @"J2֟厢|7,yZwnyr+56=PD:г i3¬O%'Rt#k@B#nHIx›*ȷڃf="^BT(om'ӽv[)E: וM]E-:膌^pʨf+34?LʳX+ \XцST&٥RU<啷ZNqCu+*ȉ $+P9 WR966!ҏ_Pp ȾZ\7LIUZTބbHdՔ,x,7\>˫SET<7[AI ϛe- D/iVt̛UajX(w2ZqB EZB rK=&b۩ΉPm|{&^ >Jge:E)~76O Z"޺vo=}I9CMսYDv ǜ1rs+ĸݶA`a1xL}N_,v~ORɉjv#, C/2G&qiS]~-R8;xQd:rYyzop` NfC{+k~sO"$<Z„.A8 5!˅`ɍdsYkU8>&!Bm7$17V B`%ߝ3I~կoe bI\Ċbԣֆ(3xJǮu:k@3cZ]f:.Wdv-V79@ Wt mҨ]c|mɣrv& ퟁq_e{՞f}x jZ+x 2~)B r]4n02`BITvNA] )"Ko*ZQ]O3pf@5G{=4^(@a` P*ﴗ42cVH gеqsRK _gnIM IgBڔ7QU﷝aevc^h 6rz=vjHIR!%RF^>,I2uy̯Gr_ 7o]n{4js2ѻqsQ WSM"[)ߔɘF4 (󴭙~8(>OKm{`SZ-g0z he@cCrF"C6kXl0k#_| J"=/O?c/a'?%7iy{ms T \RyDu~E›Ɲˠ؅e;O~. =bi:7LѨph$Ӓ/OM^ﱲz!$ f*#]=\*V{dZړQ4©[.b\sԵO85b֔/KAS??w 2)1THםR@k)r"ւ`Z 8=;})6迂A&Dro~3%A{nV`;AԛL8dY@#^1 ⲰFK]Y^ܽѨr5y5ks]z(R4oWT0J紐a|҄|ݸ9hOBYǸ` PB'^WQ7%9’^-0x"5FTJߙsK0D bb3gLzغOۭ;)@Nv3֨6ssq!"#-f߯}k%>|_:O/dP^L&}'qi5IYEB533b݉_&@6#ޥ1 Im7a ɐpUxd4:F8%Z @9tx=GbŌhGQ|}X~Q^ѩ=bFvc< 45=f~L-9pA>Z 75E{F4l"%,c,Zb*pOjyd]=6cH| h891 ,O?߾#?CuOZ\LDKZooaG/^]\y}R0ak~UZȍ]kEo_C _'OL u-Cc+na#nF3Tr&!>!)/y` K[F2_$ & O u8CS!ŁFŵ1x=lֆZ{uگ۵q۩9>ozŝ~sEلFa¢6SOZ)^<x:  4#GDt pǁcmq[M06:6/ nG@n$1{ $`3||š#LkCOd9Si, C7`PF#ED$w1y\b\Q2Vh]UVۨO9V[>ZnjgZs[$&o-8m\q[oQ2?8:«7Ak-$|ᶍ0[ myCOuJKm2r[:^)̐,+#+Dp9K Y(^x6QLq7ϐǽ5u#8#1;-s8FG3 a>jjV8qV!pW󧊗B&;8>+ǰjFlD&e [dv)d4/?%i#fkOU\$SilVHdBkjpve+!׼_!u,%%ZI,gFMCnTDCm )<+qN2pЧl?,4ר$s!Q>ަpº9#s1\ʯ)#1* iTZ=C,}HAIl@wQ+ZG]wZswd5a{l@UwT:GsxuFu YȈ lZb߄rG ٓ_an,$IC®iǩ5c'֐aNb5y*@0,)f?md6F 9F]1ޯIkaI(ۃ9UY rX!Rwy% i6FjKh'dX72(r{o)GMB$9`1npU B4H̃hkd1iw #,mЈJ_s1"skeBk8*w03FeS fctQC{M*f*-Ev4dyxCHqPK;安ڲأ2Vm8.4HJ*1RN@7Fߚbd[SN,.Uk{ Y筇2 M~(3eXnUo!>d SA-z*e`e=8y<)Ԫ{3g%$ I0ͱ Am-$PA[KtڔņMfV2ALPo9( 9dvͫX&4wh% Ag\P(K91Ia(vֵQf$rMPTA3)TC3mgțYlܣ:[ϵ(7yqUsp\3'ΎOsYrXW6GI$]>"gԐkS 'Qq]-?e9M9!ΕkFUN%Jn{O]mƸAY т7q״[mwMp%YtaX>hc32EV.SfN9L,JeD/ fSajR.7?FyWR.xꆮmkMg_j}۞hvzni*mJPC0*eJG= *#`iNE7c6CXoP0dXLvU箹lMdƆ р8VgKUm$ULe2}|`t QMws /9%9;Aک&*gڹZiK)N1b"j)КZӿןxxf*B'X lK/DۆkSó75ᐍ/xtj SLA*efx| 8pJ [m"VkjJ*^y謆6zv31aG'KRމ~kE ܭ_Ϩ;y ё1zE-ŭ"#:bH5X<:/Jiܲ?Z4@ ıd4P#f0P MBRl@穌JT<}yO9ퟲ^=Az<[[)ϘiibKᓢ>\D7}v }`v :'CX|kEQ zM->3< m9G޼ֻ 4 q́ osg9G#wPG[wrR0$},W!~6#.×gzdK!Y'Y"G ̀,TeXnצ-0<-yK$fMe -2R˚0L}`SR&M0M$=f!/؃A{H¯Z\Nȿp呻5h)ЬQ%ٱD5T#PI=Yz9VW}  z0[E9uhx'(KnӸ"͞It?˝= .DiqJv~]z2sp%Qjdn͚,X1,QV%U)gjj# -@G54Y]{7ސܷG1}qCІC'6_YTN^zadzjĆ0Y-q*5L +5EC崮b-F{lj%Nà".1bK2| V[¤M[zlNstcѐXЬ|$PUS3RklnD,YiV{>͎t͒;?JžȧI.z+64hҪ7='tv;$"#h^1Hg7l85-WCt_f鞨JrT'zO"~U6Għiæ6N kUX?Ȳz9/[2'暝ڸ,j4QcUf ]m\=4iW*iƍ%O܏=ectd,,D*qIΩ;vf^2Krf5!ג;fko)R*3p ~uN܅_PbgrU. ز(ΨS7,xjX.rˑhHS澼k^e}7P`0$%\b$9|嚍YȔ7~?aٱS?/Nq⾩os7FTMWՏVtk}'Kvr3Rʌϴ%!NjB|@Ӱ5v SBy%̽rG|Nn.7Pڟ+mXڇ]+DI:J1_$4 3l ~GJꝃCy|_JsB0I*_ W,RmȏScvרWX̵p?2XlcJBGE(~ɻA2B89?N4JZe< Sڵ{8-?diw;.J 2JG=tJ %ebQhՠEq2FWQeD$}9&yS Fm3jm*IdD˒Ӕ,H436GHT<3/r4ٛK(S8XEXf#)vQU;LHT\1Ye*&Y," 6ꨎُ)\KZbV^zW, 'OeiT2Ľ]O'5]`4YhYɴnJ &h-ZR@-M/wÚ6>㚊(ha+VbK 41Ӂ%iNjaDA=Jp{}[V^Ei6~z:ܒsm_ijtBKW hCw6tڈ0N aZʖX@Cr5ߠ4'ia7%rnٹpufdgJ*0J ڢ8{.Jn[O|O??ߏ d򜸙"dԄ~iOb5lXҍNk3%}j}Ǚ'/;Qz0{T'UW@ y{[L$uWs̿y;M F^m@xpP?_j{B;Ӄ|?~O$-6eBBa٧lT#:B4}Ό ZJJSĒ=P4Lv?*!6ːMFo "yAGW\螺osپ~P Zc[x!PNTU T,+`i9NttDdNkwFzqk24;<\mΣwڝB9ٍajTЋQ=uQGk'̞ͷWֿD 4p*ra'T슇;q5ոknӦ;5DqWTq}T}rLvYE+&UډЗL}K%A\{XZ6W2sΰل-1-H6,O]1HCm k}6ٷe׆~u4ytPu2!4!/CɡU᎚2>t/;iV]N9V,Fڝ.Ͳ254>zѭq'HUPmva@/Q;0y=\i?ԛ݅"B/7nMT %x#j]q[rP][oqQ;NK7&sHarȓ`, M@qUd~ڣvT-K{`5ς/[yz++SC1Q H›:3"1RaI^4[TaVn5:tRn Zխ1cUj'UW*B+1QԊӼF6(V93tFR)j-,u6Se˭sEN Ap9Iۣh ,vØ/ ?>) xTˢzm .4ܤBWDd{!ν>^~/BhaxīB9W M/ UZMgŗf Ks``̕I@C 4$8P2?ű&2,I&edн 5®wuزm%Hآ %\M2ZKsy0-%W]`rڶ=l-{Ys d&mNS\: z{eBZsaN 3x9 j^ͽĤBŠwg{Sdiǒ}bןȑ ZTȶ3 SBF _l֝-Rf1lfe?8tܓ2g8k:T_F璔8|Qe5GSJlg_LaL Ycowx4#3+O?M 8ڀyrƋfƼώR_1' Y]XxWEr˱3.NA8.6Wr˃@j RI4Lz\/Isp0J*jLœiҟ${ivM|iV "Q=‡&){98lܴ@.}n^G&~V /K˂#@ F 'Nlg KqJ;[So4d(D)I[~-`d;aB,,Vj n6k9& bho&\7 =/"4!vgѕ! &.p"o;id`ɄCc Sbjg s;NԬکf1oכ4ά$D\wGy֖DZF~9 |She/tx0,’i@]^^dgJϙͭĮG GNEktɉtm7Jw>r-teoڔF;\bc] S3jZEab_m7|FLcڟ| pTdS؝vB2Ux~s=f>LSE*03[q l^˄OK;G+ŕcWPߴ]:{~p=<ڭl+zf3#EB5Yˠ?s?Pâ^!~B-qI}[;WzI^؟xfn>ZṣoKdͮYmSɍnJ"_P5Cis2M_ֿ>/Ǜ-N=jvڭzL(GxxP#3Wwr)w'Q,~Yoto6kN=~Gg|z0U'OkС;/ j vƋm4^ HKY'};Y)^4V}+k[ΘUAm yFv!utY*Y5}/8 7Az?DUGpcqG,+ wX0: S$zq@Ag:q "s8 CeTAWwQ QtzqVJna0pṖqjt}c`8cx<]ff?N]2oC^DI+/!_Bz:i$}pN[\-a[IS.<KQ#=4d7b&;JnOP{&?\io:+ϗy@xfbq4.F0Dl$Q ~s.)ْ'qi4˻at4z^:+ǒKţY0-djj{tUzKfg7d3gΡARPJ1vNɠZi1RKzF~AQnFǰRqT.vVʲ6u@osYg˘B/#WzJw&8r&^ْ3?˫US/[<Ϣ?EJ}h-Ya8U\2GĩM6fMl*DK< xwu.2q"9wJF\3TaF皲+ȫ },Ҏ(jx ̥h4: #qMC[ڊ0_%Y-9Kw}፥ivɉG1t"[|}JȽD Dk3(+Ej{Tkw7gD"M ]rvr- a܍f@oJrܽkʉ]'-˰FHu/% ']9v VuY8߈LMI`wIbeA &v!mIYYmNQ[NUz2 ~PkpD NbS{R(1t=IRN8ц jE"4 Uiɴ7$|Ipa" 7V ( %pd2 jj^V׮4[FVWc8S&B`)h0uPKMV%]K zS#Fzil(AHCNxKZA^Hr&9-h|ӝHTN6vgKO5oX*ߚY\Y31z,{š@ +/I d%1>@- 2s|,>,/ snEk'CJ o%峹>37ߌB?:F:8< Acn\wjX}ʑa"RK}ZT\JP<.9)Ba54d'@>ZFyY[] PcFh2A#;RuקsFXbn7Zz'gMpk|:l:&9]6Y!~SƥPٜ͟B7 Yu㭮ȥȿvИtϾ77vT931< A q_.2%ɩVmz$0Qsa$l a,I-t l~u`v@P4%Dm Sl4NnV L?*J  ?e2!Ě}r?6BkRR]{+oCs~A@Dnѿ> s0ygCZbe@^rGj w.-t j1 aGӖ/\cs [*m.wNT P;qsq zyvfJ9wM @z/oYO-LY1*t啹k ܽJӷ[/Wu:Zƙ zrdd#jlBrwy\ ZFl]ιZ!S&SpjKا'!Cp*jV39 botLK_vp&R1DFk|&6{OĤ=$X0w\"P @GR<:t^9,ъGG]Y8:aN,v'x<Q`NxOLkڥ@94p{M縠 4hn(b`P7ZPE5[-~JA Y?^0B YH1mi0]߷ ~9ʓ5_> צol!P- 6!\kWr#p.Bm~Ж)LӍq-緫ꏖ8 DT2SIC9taxCxɒ.m!+bTna}s2oTޕuYƉ(< VuxP'/tvӝ 9 ؚ|x^1I"{@(Tdz ݖJ$:G Jizᨔ>4-b^'AZ~Ve DBc-ɞp?O/*3Y%:}Wk}ɟ8*:`㙩E<ܼ/gχ,.L0l{PK!TI#word/footer1.xmlێ0+ 9l@KVզT{uIkC mp=?3,h6T Ds",8fS>ۀX$ Ĥ 8_ܶiiu༅I[3PY04"9XK#K;ǒ,)&a+u0ݟc\{$dǧ4pJ9f.1H?j YzړcHςf 'Y\{$9jœ)LE%\ y-UroL-=iԺV\ܕbg}|/]ג9w#F owA GTeq0|~вVE?G{#;u7y/S3LFB(F27l;6uK3&y%1n \#%ַx➼]G{b!2Ki?`pAڇRe\-֣uM)MdXyp~PK!R5word/endnotes.xmlUM W'QUV=4Jj,1Z q;Ihz{ofjN.H$C) ?_H<%k@#wϟ].t vygxAjMB1T[pP%BUI.lhF/c +'h`F b-SsknOta (h1 . h\EqwoоgLhPhWKs hb%^ ⤚hיl=B~M uX F2I5CB}/U1/3V$@L^#OΨD1':y,fc ܛfX3#Hx~`SlIvat?t01G.pjFhUU̻%c}n I6ҟn" :ZBH>1ΪwoоϘZ ЮZ{Ѱ:R:TI5ѯ3zo,5=[a+3bCjB]1/sH9Ÿ9#Ťa'T\oZ31chy ftO޴4&>(5X .['Ed[$]o02IYd_\GCA(=l i/*6~rwgǧwY72Z?mZ$m1|+>I0IMsZCxܐ7砽m1cڨReAqFnPK !word/media/image26.pngPNG  IHDRS]X pHYs+tIME  ͒tEXtAuthorH:tEXtDescription |hardcopy|2012/11/05 18:30:26 lim_j SGA250167? tEXtCopyright:tEXtCreation time5 tEXtSoftware]p: tEXtDisclaimertEXtWarningtEXtSourcetEXtComment̖tEXtTitle' IDATx |eUy/d ` RH2N0^?De +Am}ýVIέAܪMVlRw:ڴ$hs`!o&AP00"#Y{uZ{}9 gYYzZ{y{?wg[~S766 x̧oya/w_{]ׁ}O_">-t_/xϿ]t؛_׽F-O\&}KFHR۟_Kʋ Y?%/8YE$8#/ kNWTLW]<(kҤPg }Mz;??ON/  &u-[t}?<ɟ''p(BAύ<66D()KIЙ<ԟR?|9}*iu(=a}:{SwW?A@UFKq T"EyJjIO* :uI%" ?ʺC0,Qja8*7Us&YN%Gօ((TSºj WRMX"7)P&h;껢}!kaVbYǶi UćRIRh OX(vW*U-g(PXB#۵5G J\*UL*o"RmO(.b~'IUS6Ay&Ԙ>+˶k%z$c "ЁYVW&n6פ\;1NmAܿ뮻^r~}dohwcgƯ_Z')VDFsFASXߠ$9)! #EZ|G32|1DIV*$bH[`Ǵҥ@ YDx_PKr#G%K)ۇ2KectU Rp&jՅ #\%cu%ݧ*P̐ިO*DB]y=k@'T&Td鉓L)fO(g^eq{DjM ։u ))SҬ=-1YP(PX0(LKp\ |(M*&FO1WMg,Bf& a*wՉs'˴Mnof+"m[װmmMm4nhbuTܒb^}cQE{Wwz7=$}lJ??O1Ngz`k[׻T!In5P%W@[.Lg {ְv 16Z7ŴliYUV!%e#7,cub/Jƒ%NIcXŰWoozݯtBؘ9G#f i9RyD |5lVz/Ͳҭ5F:-#]&d6d|ӄKD %,&. .] lu'-ov$bZm l]5ȼT0Tc}L`jMíV)TGN>2UjJN.]ÇeE *YTAM~%LdS՚j+ ФDe;̹,ϓfJ 7HVUzӘ Nsmcщt]6VD+N}OlZA(f.-]Y ƪ NUBMt#͎V->}餐H]=5Hcd_lA)eSWOM ZW9^A篠obKY^;+H5}hҢ2mqfb^bφӄ?J+RAzh%΀f|:vy 7w]'A'xѼ9׵K~zXI}ܵ:.׼'h1WsǦ`@yO;>f)SFV)YEEu i[U~S˰EqNo~eMZ~d_sdrqޏgn]suyMciz}WJ[U,E=zW᪑GmZaڃ;xGJ5_/hI$veu?xp4 9 I㋏Lw];㌃M; y%} .P>ݣ Mz &sZSUB0Dq B&.`צ{Pj۟e#.q鞴w~TAXztZ_?h!Uؗn|iZ_f)e]~PJ[V&k\(WsiT϶4!4> .Zd-hQ@^IYfR%l} dJzꔢ[\5̛Bt3\Bz7L>'UfJIR $1$W"Ejtt3~Giwe0?IDaga>x ol^4~Dt]}QIC`|_y*x1: [!*bh즔U;Uatx;}7ЗVEWG|ѻ Wm(bA|): v+ңj[VG.>4hhLHI pJ*'PĉKG3i|8L^E.I<&eZtagWk\>u{2uG!j~f)΢7]7.gOS!봪/PXW{][< }jkϘܺjk T` j~駧Y?{.3153p&1?]}K.Oy%|ǖ>5_L$ jdV-8RPFZAXa ]0"{FR3E\NbkJ)cFHJ۰BW͓w~mH/Fk^dk_xYWМr40Fn}Vqƿ,~@I/5pyOEɹ*,l>Q,ɺ֛l66o_ ]r`OJIdfO6;uW$w\_͚SAחUŕ)4®Lct1^x᷿moneUSYRtu?^"77uY/]uݴBn{R8J](SeTj2fwo*Q) 5Du- D2@dTG/ҩ"M TVuEÕK)T'ğ^LkXҁͅRYvG}t52)57/1m%ru\0xf9A1frA'%7J1@3*Y%VlOz+-)'ޯ:KMa+J Z&Uk YKúL2tOY-'޽ҔJInfZWWWo>Sda\WLaMג$wo=C/}Kݖ?#q{.,)s,*Ci1/\]H  ldIqfgxu[6eՈYeؐF5R4ȸIaCW,MEL*iLp}y&~5UPuE*@&xx+dDgmmcLJ@ah۞Sx-Ui&fJ)1ђ*BeC":T.B M:h9A_Z+o !rl/vJ>ޗ9MwWl;'kD @fS"Pmik*β҉,?.t NNd4FB&;9|tB~Y2:yv:UTLjWjHqu$/J'?wJ/}eד LcmK@]z]NoݠW-PR%/'}(WC|V%UVFl#حsbf[VBOlI{p" pvZfZMSY.ɵT[yVufSVlIejAp*SRrkFho@-WuOTE6BA] $F8[Er\WRMY֓!97ٶ4Zu_$*ʛֹ5i"nWREX |,*er&r HpժKO6#&zĖQ̏&d|B̤hA1OJf)o4jM\*H[^&Jk"?Iu/aTprM7Ns=1b*0,`+T5$|NW9112eb})pf>/d ][t{Y#BcYsA$8>3QAV^NGgG皛ni¦ ;9Ѽ9_Z`ȕ&.xN5+){j롶2|>Y Kf*p CJ6Эi ։jox{~ +JPe] ɒ[oSk띛rM"=o=dCFO=دkjkm\yl x*nq)^؊774?nce]"n(1e\dnh1';~'=\ Lwј0m$<1Y4R+s UDpdi&caMDjSȏH* Lqע22[N>aeFFܛW+|f)Ӟ8e) )f5&[tN1YƀXӺxWܾDZ]!w .UV¨ܾkW#b~X?%OItw$PO1#MoْX/<-(hcuT!(]BMQMqJ>Z&RKuK.(5<>џbBQ@@_{Ӊ)TK~6O)̺_jMy.,RV^r &h%;CIʚϕ)iXֲ \b%hq>b~˿=bQߐ3% 0'"dE=*qVX s(I> r),^i??}8Y a2]u)I t!r21_?N72j)@ ^-3vu 9K]݅ou'>A;@ @}$g濩q0[}LV @#ѐZfAP&h @j$1M?0 @d Q6@P& Y  @vB `~3$N _@ ^0Kg4ÏwH @ h'_C9GXN _@ @hh.rm/z@ (G}DkC@ @#Vt`Gw @]! @ b'78-W]Egnז_@ߎگɚ_moܽrys<6%p e MCg8@~5 IDATj_gt̯6MK^v[yh #pgPso.6Vn:sء$h8oGQƩWe}0?JR ™gW v-Xɓ-h{iљKc ߎ.3V!龷&‚D m#V^u30?/,H@ @"׆ @ E6o!V)&YVūu?jߘ>jR2GOpypYB\qt55RJ-+"5/ ^8轠0⢯FgmAh I_}|kTbsALBzR=r(}9]>x-GwGDS*Q\V&Q?#)?|~l6zeswY{zk?z)'=4J(=Qj7xu#s,d4qO)S'=ʵk&ߝ]~e"'df)ÁVr5BVLtv=V_%/(3ר @  5v[[wIO Gb@E ^9QDxFTDmPfye*Vm86#Z;*>Gޞ{Ԙ,sļR#׽-puϫ$4WGgK$ӧN+摾tmsSS>a)C|*=&nZCW"_y S>2 i[ݩKMq:s={ t#P?N|͎?cۏ L*"Q㞒B*~^n%Jqc΋%UsY]%;~s_{9˜%TZ U۷ 7cU2obmAo (=,=] o"j~0夼wy8TL v8FAʁ>/rն&Μ@ P(szw$%5$ƒwZ+#ÌR%+4kSVRLnjo㔔t:zdFSb9@M45kWW,ͳoKw>'PďwDh͍meNrN: CrG06<9~=R9CcB3n &C?r*.Kw 0A+C7;L6#wQQMY+TYh-$6!/XvO⽮.';U(@JIcI?TtxMh&RY\[u)[cfXSWh}r*o|XƖBJGۅf2oMiYR#w̩ hAhy2w-l\Ag=#aL*o~~C,wQcmʙyw+9E4ON $~8cɓ'n ~:5ۘJV :sàFE@zZv$_&k5<ݜI|^.~r8_>g(#=6m_RlQ~g[dљA.oGQƘ*fp rAo}n?xC5_;rusel-/k-SZΜ(, vuYhؐ{hWgG#҉J{Cum }˒јUWWaf릠9@ k6Nb~ߖ-j" n98@ E{jq bi紏 @͛$; 淹Ӏ@ @[!F{/Ci@ @ 0n!NSp @ *R=c8ɥ~p,#ÔE¸NIyEjACVgiR:tF:#I\!=8+X4~wEv`۝zv疏Inst0dͲZ/0d5 m}f&se\V.ɂLաػ#^MtGps/V^}tEuOPJ:xJ|$ob=2ȃ˃;9J]QtNwwd@ڕ!Gm ~ _ASD<^' $ (E3(7x(Y qFm;;WV0АyyRZ"VNkzB"h4Wq{JopReU}/#qP^K0F='g% S[Wwg_}@C8=[#Gfd11mDڗe%4{a,P Ԝ60D<)`a:(v <҆tl_JlR%=@E7lD=E:<ӝYEohDadހb\rͭXb=LI7W8?8g0Hw`amdPe߱ZjCGJCa9yb~4p) ta}pLrPo\(wghZMI[d x m&vO8p'?̆${^-ڷwM6Oc2U+I6WMZӏ~|^lPLrn:&KFm'klƦZ4IkzsITCV;FK_1 (X&sssɏ|#ݽN߳*|q @'"@{Skw϶`bamMMlc|D)P̯ ~^])@@oƀ!I)US&@x0Vu4LKR"߳)ӊ3d"!@ׅw#&=2$4QLG˪!~}m<4oK. @|䦷|SyNm_hzG '@SkDdg_\Fac1 2X]a' R YۛDhQMPo˙33M[3ы X[Ym%ak}n =^AZձLE}yB"M@@mg!8CE*7zL_*еc@W;-ܔ!v?8+ޫ# =4K>䃉}%5鸩֎--{HnjнI, 1bû÷A?h!ɜ/~*b5fGrNp4""!Z(M3175AusbQf+J>CB S[ E]2ߪiESlܫS0@5yZi7m}_njNSԨ ѻ#~,-,O +'_c Y:$fPp4SbCag ?WȘYEHf}("쉷K:Y|`FCB{1@ )Pd)h90~$g\KignE$=@+^ǡ"WE: !:'F|("@w2z]}?}E@h'pQ u4vfKa!Ib*Jb~uP4$g׋=]t'#|yarō٪^͔N/*b~P DA -]][{tloi$ PWZi o B[FR13qyRR+B`` u.J9Q~u %inZIȰ~tLkW3v vMMyGW9dЂC|KͯNy$Z" |/Fy.918H}{U34#Е8pmkz۾}/7~W%#cǧ}5/,, %$nݺ5Y [4we#rִ'Nhk%`@%?7'''?lllh[hoE @"Au@ 6E@@ƃB t X @5Mv= ̯5[V*Vv @ !@ho L@ @U W|()hz1@U*-;@U!4dOJKBk{[`,V  @UhGF5--&rB MF=_AbrW@ h$`~~Rbiavtt/,"`~{싛ca^3#d _ZNj8K: =$d{''kF/S^Tk2uM)q> 2蝠Ee_@ Z̯h&yj&=ë*aQsϻS9.0[;IQpxz1,-A* k2 V*Fm)7M L22@ xB).Or,B4GjR1HhuXJxܹ:׶lִNRj>G_O_+Q/f(yώNwV @'"`:ܾqxF_Զ}A~ IDATg@ M̯UuR5N)Qo(@"_]r @d0 5L@ @]+P@ !旡ƀ)@ +XQWx8q2 .i@4`~1D uV1v @Nvz# [6}߳G/et Ulۛ(k(ե4v@ haځKS+7JԻ2A*Qǜ8 aMF/`]]m/NoG_ PMYDE$iE@ av`~wGnv!$uM-Q{WUFjA1 @40 Vh '_RϏR=FCqNDН<ٳFhYWd&S0aS 5[;3ht1xcDSA 1d/'EzUىR@ Pڂ –$P/} JwdqiO0 /r"=?uIG>aIJyN-Vmp4/M%gzYR7W :W[afULr˵@ P$ڱe4FAhwPMDCf9Q${@t6mtx^KQ+ˀ F9LKmS4/ڢɆ1%kVωŖsUkzrahT^ {9K+rfHJR`-^WްnR4l.Ԫ- )% Scx.a@ څ)7>8\11Jai6=]^4m}bV bE)f)`pue]JY$5RW$_͏Orwqwu,F/h؞~ ո5׭R H 4LQ{-&^]X[ʾ&\hbÜ@ Pچ(3.zr|SQ t_3;Vg\Q ſ"xfLDv4 )*6qh`hr}zOy~^ {@#W4rq|? NERmh6Ԗ-q8w &կ~$:rFFݘj uB!=lP2\2㑥tfD y5}kj(%vyLE@#n6MCV2'PsGGKmuEJ8PG.O$UͪMB@45C@ƃ)B%ns  ZNa45@*Vv Z@ HF{S@&0d \;Yk@;1?c1[0 >!0vCk{ۭEHD]Cǜ8]^$2@ d^?яR6=B;ۂמk&"@ hi2СCOh3o}[?ϯ&a_g/-STiXpem).=ejA?Wws`Ǫq'`8Ho#Ի'Ř$GV3?T<݃A,w@|4 A.^>>bMǾl;Ӑ-@֙Ay^}gO=]<gxwOP*NL,9z<[V\f Օ`暙zcFd !361:~rdܷдv)gZK/'t];2͙Ԃ'A'sG;; <9q LBP- $sdcӘR4$?_̩I$HdiQZ2!#زF*8* }]:BsT*ѐAkUSrHvvo+C\a> DY[뽔bLFr(4C ܆]盄흝jìW%Z P=Yg~_Wh߅^X`pV="eir~xEJ+D"[$H$95% O F֎-sNEd F3E&Z(9tV-fGy~;y>E(A᜝ )R IPώ#n['phku30COO&D@Ap.3 E_lEL3W^y%5@v@@Nu7&T0+TҠz̉ h}uǪh:u˔gR"ԓA(@gI-ϴ6ehD\N–f( 75Tl) 4**&"/=mia|X_Y( M L8 Q6=JAUFyCZb{N)!)FGI Zp3~&'-?}ul'a< .GC6~ jirO(B]9G ̯C`` ix*,D4 $r}+2V5ovOYzЄ %H|Y_rUj)Y |Շ$EI!Y-q=\Ɠ^bgM3Pa(ANyTm!1fۮpBzj m~ZgJ78pn ?ݻ7Y孟:pǒe ~|^ PLr֭[|ۿiPMVZ-;К'NTt@ESFܑmr7q@%?7'''w)mf:jc +۹S<@ PuK  (7߻gvC+Ӫh1rM@ZZ+^R-建 rm,F-b*BxG aM̰i-jv@AhyO@ Б\{g~3Ջgy ZzFb pd`h4\؍Ī Aa Jxmo+[@'"燹} $"s}(]h<ߡNkU]j7R=|w]ܳ?ZN@ @&hwxy{>T `~|eHp\W%/ _Y*@:[ }k jD s`fuxW)1!`Gi XZ쓸'Z{AZ{% -Ѩ<(pK#EptRդip'$W3̪%5Z)ОAh RZޱ`Ƴᇧ0t<][[Gno!E}.J1/}BD96fdƝҟH:Fk}+\-EE]#xQ( o5jUiRSZhRxِ:ùGL.,cK Q ,:/v0p<e~--|'\361Y, }Fx-Aõ>@B(,[(еڭtS,b[ ~Mԇam@%R+D[!_vqH[ g@#в\aT J jaAV5N\^k݅CRd/RilAD̏:['>aTE91[?jO0)EJadՎ)Z2+܎b~rr^y锤9~aT.S@ ;1?1J-$BNA+9ߎ1lBe%ehŭ2sպ)Ux"O+]DNk kZLWkFV<1?"4vSt(K;  Z|>nm}}]{ݽo߾{&ud ?7?3Mm˖-[n=묳hC#ǧ}55.,, %$rmD9$J($߱ CMQL~X)S'āhsssôS6N۬P~Ǐ=3rl@xx=|ԩSsW@`irp {,ׁ8}#: > >jm4{w57^o~ 8᚜([\soEY/ж'ظbJiJ&O]{@ Nd~Ԧ/=?oo_ʡ]-L&HJؿߡPN%xP=v=/yKsH=4{lTjg4ȩK &29G SQ-B3enV{ñ0[,g7kC;;zv瘆:>PKadM@D>_< ܱ@q Ђt"fW4szڂ]MV,pviOp0,TPRe4wNZ^.MyumqTr**_1ّ܎^ʪ[UHi,R )UD P3.˃ʨ @4eCMhle7o&y&UmҟddLcK[.kǖ9hG|pV/JMU1Q ٘盫JաECy`LdRQS @z3'&>!@8A۬"6 vY-wN49eA 1Bvv,cL p勋q!+7yO/,QPH}lKRV|ꊡ2 @Tީ{Ճ@d (!93OqW6jk`OxĠ!-Eh/PM!CZ$WxbA7f\uׂ6 EU)c @H >]YΗ5b媅<C3K䏞43 5 @+UöJmtBu8lX'rd_]EQjq2XV{<:@хC%)K7 && @ y^4@T @Z}"-zl40 @:::g퐛1Hr*<6oݼ/k&;@ 8:Q~iUanV*E( @! o'МNzm@1C ٪E:QnqqAA9 (Y`ubWw55F[XۢD ڇkѠ> <:zʐƋc~cޚڼ@Z#P䆱_VIW5୩q@4=u6k T@ he<̯ݩxkj!mkLzmӘ=%p8m8X5QRdQ] Ft?ȏ$5/Z#UIch"`:v +x`W1ࠖL!-G3e<@;wd nԁ?8,\ @|׾d(esd| 8q׎$#077ܜ$:jGt~~oQOr@Yl%K/_V) Тths&0%Ky4]'MTCRMؒE[&w⩧?Aqk P&t) 5@dg~<"k?ؖ/ݢWc-K.Sm+J ޻U^c@ Ef~gmӌ>1wU*@v&  A3ϯߎwri9FSs+  4P;FS=:ҫd{9]U\(xޮ@s\`QD[s\J0CO& il+|; K+ڤ+a{< 3EүszՄLPSF2K ޯuD1C7M?A"aȝ8UB 't4|sC;a͌{A9Ue!O&,- 4#}Uw_Tn )o3Jt~`mQUf^KzrS{nCk6p,[+$n0%$IׂH@ 2zKzv;hFc~Kr_^EB^P\o:@ Q:YHWjh£,]m$^58.wEVW`F\^_羹bU(@d !U`&`~!z4U2->c~hX_kiMGsB*sW:x9vnxMkYէ T|,aDcj)aB` Uct4e+SQͱ_Bͳ+TP%m% @ ;lM=!,2[ ]1]q9HD߻H\(L +,[ 7D|+(YF^uB3M߻hax9u/ Ko#ߑ!(!_R̽_'4⼏+ )#Y'_H_~I⛯r{eq'Ůš#ZRT_%F/OJ̹m.Iu4j`J hi`;a˅A ~U7#&)6 ϴ82P1SbcD(W2C_ xJƝ!6+*^򔪈 x^Rbhuk!C x^I.xa 2RR>Z᮰!״xېh3~}Tc CVBz9?GI1{DΊ$=Bܩ|G\B_ta"^>BK-XeG.+*N}\2#uvx y (Gަy%?_|F5=G<>\wVx#  О}Q-y"|r{:uPQrjY 2rHjc uocT5ɪ<."e/>**Kc&FJ5Ѷa|/,(,@U88'tnf Q: E%)VE v/=)GHi<$6}bZA"y"B)V_R?$^$sӤ+T9 X)G)4<Jew~! j^`Q6=>f"rxIMo 2F$JOo1>"#PHf ~VxWx% `Www~G WxDZ KH7J,gzX̽B|d<)X-`tP ̮~#~J#}<]4<ZhWpp*->d#5;@+81<׿3nbYx0ӳ<̏ibXj Uh(Jx~ijDZM'zrЄʼn!A14$YTLL4WHRQYG2j H@-U @(+`b|,'h//yeila2ޅBvq ~t.@pbρG/R['3=RB_̌VzvGCyiba&A" US<,<:!q9/,T.Hk +@r(HyfwWxQ2K{zW G}cn~|?z$!7PKe GsbJ"M4!̏L 3@N.,Y["rʡ \>@ V9KEOþD֎-lo8#::MͩYy=c ?TUP gĢШlM 6$lݺ Py{HͲ B#׽ fٝ`G|o\k J\͕ f%!@ |ӟ&G>h g[5ڋ4]USz&/jIG\\~EBw͏O*6?)Q=zb;+@vh*( ?&GM'Ν?tgRMa"+?4#?>gG871 $+Dn" f #DOqjxcG7(!WcɖTP$Y!rIL@p8bmŷ"*gI-Q$ЩszrE? X*d٠v~bסXǔe: l wtnj#v2%J\fuʁ@K#PV̏<5"F{[a|CrhUhP,ҦG[|9R%WJ G#GhPȣi^l3TPkCua8)Rtܮ.KXi9 0GMYQ7/ V0YR>gi{Z9Wяۡҿe@"`2d'>)b~A \ @0^TLjbn#rûÝ=[ZX6G5f8ؠv#E+&Wsid@; ;r!|nA(* aXWA GK(m> *6?4HХ,`Z41b~׸<$h/Ez OUdj4̷U^v=byw# SU[h^}ځ+R}Dg*3Sʄ{*?e&z"Sz%t@T_M ˾2zdNrG3{gݢhIܪٮVzKvfg# @"PY̏y~5Bs]{h:4Cκ4jM@٧ '>!i.;x;_y67hWjqN8| $>ԤUK@ Dy~l`~ ^EN7p YwNvu}4GغukF@{踪I0~}EƦnIqB%úr+W z魤u\+/YO7A" i^ \[bK7cBi^t{#0]nke;N0X?Do2_~?:#P^TaUfW)w%؁g:a   UCc~mI+,yg݆vmb^ffQQm*ޮvSHl^U5 8    P[g++G{ZMY.w=cj!P^c;*,WVFa| EI]oi›y<؋T,[WE6*XM*2HtQ @#u"x+sEw: v0fw[UOƌ2.κe~h0_/x"ia^Fq@+#Y+޼1c-y<Svjs^$ΰ?|WKklOihn̻Z*KӤkZj&@DX;AD6doP5b[Gtpn7C%-gp?A75/@qjĆ_l y(Qs~QhBZ[Ct鰖N6Z,.㡌̓nOZ5Mx^|4#o^ҜT-C06}Gl-hL^hen(gh]VDI@i*o h?PhcEhhRPc#GMBjfL_3vNyj YMiԲhܥ3]8*&dٷhRjq %Rz0j[2oQctiz\O0>*Im&vOc_dh (;:^K+7dUZ72ceKOv_]4S}S記^GnIEo5h$|i! GYqm#'Fe}TC m%F  PjbPDXe$>r9kF,Ē;$l80|W8GxɜPj?=>y 62CSNGۖfIoDxd7b W6^qOeKϵj'Oȸ /$(?3+ǙNkڟ|q*ى}_2V3SCyӓ 4M,018#l8dCP!KdIȄK8Ni5Dׇόyl;߭u^u{v3Bp3KtC{mQ׃ҷqZ0#/gA*JE Oה4TOǾT@9 4rݻw?lvD9۷wc7NwrressUner;o?p=;::ߵR;LaWK5x gPM+:"bjl8@  P!3x4SJ')˗sxSW2$+xjR2V+ԌU7E,/6PWφpoXo_@B+t@@@Jb7S Fįl{9da(G=g,S>j=)M@@@@}a?K~iD4ƧMys//|-1 <.MT_X:$ߝ:|ro[k{WՆƑ X/m!#d}fJ+RL0\ յW1bŠ>A`}W*7ӻ(g9i̶XᏌt_V)5#-ߔV@@@@Ec~ PZY[*3F:G̵ʾL}`@@@bI/N컱Xg^|n#>-usNJ@@@ rRloJem`e2rTve5F-(@+?k{U͘JF %ѣt{1ǏK$y R|Ym$7F@+?b WU1%Q IDATԂa6*O$3 U3#*r9ay<ޠmn'A0sBN㳡3ƵdKvu)9E1(MOg-q~9==:r<q$900N @ @PEt{v0pzлM=fXhm%k陁wA@@47VeQOp[׹̠1ߨ]&{xIOh<)J;F1cv_axA@@JOϜ*gna̢\Zs8_s J;9Bz,牶   P£';4çJI-30fl^̵NR qfxCT˯0J7^ib@z Ei,ؖ;tT;j ?\vn]JIJ+4nϦm}   u8aNJdrS0,/vmCyt>A`QV "N` @@6 Էz}?t'G)eqxc wŨOFq@@@ &5Ԁ_g65Zf|r?67P754AЮ#=Jb~bntQ6f]9s =ݩgV~>u$*^ <7tZvצ9aLTѣ߃C5k($@;pj@}g{kQb0    B/n@G@(@]UcV6`f4ԏƔ#DuhDW#Yb68Bp@@$JFbG:^gSGEp:h:E;ݿyD`k wufx`*rS[&9No;  e%WV0 hIMhА67a 0]|SqM_͡%@e @U7z[d٤g+cTzGC^BRfhPl(_0/Mv:&)YgIjټ>1C{' tXT:g,AYt:)dyp9ksȖ B.A@ b^ ZFi6R!Nd+n"-*sa3ρC "cS5t2"|i[1@ڂ$ܢ+[ %29MfH:f*[xAbA1T :W~3ݜcRyͽݪQ P*U㜮Ռ"V+9ztB3cޮ/䥆LƘGI;e=GKx݁O>Zr>'mF ߈ȸ;6 B/ A@Է/xw=lLPiI}.;Ib#ZA=_ 0iXϤ/ lvP{‹>}tRQUÌ|h:k_$R<053pPm#l;'NWcE1zM87^׊㈠Ȕ|"P @@@rtҥKf֋^ۇza_|kު^S0G@ld%.5z v62#D墱m ipiݻCW(8R4z+Zې1^ ߛc~sxzШip8&B*ͲE5g߻!n9}E ~  %PVUTz>9h *Dę53=($q;| Pʏf&k0M36߼H 5bB-~ kh= k 5JΕmGh}j־7/u>~,{sY ZT ZA3q=7c7'xGGGpB7wxˀj5kjf,T3gS1@g{ (JF?     (JF?&`%3N+"*(z{oL Oh28.(('3nXOϦ)*|X8ZZÃY7% ')lOdww@@@m(?3mON|&\ٚ%[0;LU[n>u؉q=LrBdWZF2$:802@`TK"7wtDZeL\f@#i ZnJi  uD6=Tj<9$yZ=|^|Y[ F_2#Z*]%`c4slJ3l|b)Rٖ&kztӾםs1AUQ:S   `Ξ=a%![Hfr9Ocݙ\oѺau @@"򛝝=xɓ' ?iMSC}!VU%u"keT@T-{9q,[0 Ey}R3ĖX_\%Ԙ#t,x{jlqhmOxhI@F[N;ǚ/JA@@=8q"#iH4='ZW{<)ٜcM5;JlᙪEid}͹*h*r0pQ`m#"kTr[ >r QZ @@jgݺu[ly' τxm}C4ٽ7OڬYdl맆V)=B_lS&Tl!#[;-l|![bY3tf n? rxV^g{W5a^CD7Kl| #72`u:괦h7ށ%衬]v۶m{9}t3lM^>S9BW~(bCu9UG5:U+@T;u޽{Q$-i83<)*̆T-"kQ-*) ZD=(@ܳsss[nk" 2)m}cji'lSt1?IDCy42t;s4!QT: 8 x   ]>|Q7p4/B ƙӴrd+{ݺ5>)mJi = Ǐ    @_SSƍW^e$gΜ"whhUJ /*85[n5kJbF@N]=q T :B>_Hĝ_ܟR+I؉'ۡ1eSl7- :_:M:B~Ք ރ_HNJIL-|jlEv7T Eg6zh:PmۯvIKi_4F93@@ - /2LҾvso Eѿ{>97vG"PϞ#YAϻI}YO&e+l}с-L8S?R[Yt1h%%MS|YY?O5U"8wD2[uj}MjCpD:ۮG5J@֬\nebi# m@>EOgމ&m@.?ъ|処I*\Ȧ:7!.h2` h4B=)ndF'>->h6^@O2|II! Ey :GAc>MɵЎFPuO&_G  PIqW~sssߺuk"1F'2Lek!98}r5#e"ZhG| L@՞M[2|"lÇi%|;rdVZ˝jsgD'ԙswMv<z P7ܿ*u3p @B ʯiƍW -   L /RV{ 9saj~wjbd ʹV~x\ P5kTA>C +.q1͹gaQOJe/^uHȤ9J@@@LqW~D`ڵ۶m۳gӧCYM"ξr=B*6U_ֶ~Zp)앜P49'Q&{}5fX#Ÿ5X1-Dvq{4ϏO栘0m1e 7A /F.,3GױV~MMM7n\zBF-zfц@@J.X+T*UV0   5O@?FkWO,-3gΔ @N HGcSAUc    dmP    & şA@@@j)Xjb    `}uM(?:t>G(]ZrgF%+5)da2,LgtVP*;.eaM+W{f;8jmdV?zq,/k7;;{'Ol޴]K~3:­j4o4-j$[3_zBmĬˌ3Yk#LFڳZ0̡\CmѪPd%wNLxf󂁣@)hY2_Z8qD{9m%:FֹYCͩ+L$(&ts~h]j6G50Ԗ hv"mo/uNTq#];Y\fVNHk")Ւ>2L&5RWj!U\7AɄlj((?NqW~֭۲e˾}yk=Z:v#.V3Ǧ4#FJ3t"f0N3Ij)]cf"GW{V+kYyAsQhZD>,(織L TٞP   PqW~4kn۶mϞ=O.龩!XaV\-M9 v F)-㉬nsR>o6QMxTt"j!PԩS{jllj.~umyL{Lf !dEOt.!N)q],"ȦIxh3Z~:'Sɬ=(xj@@@` 9߸+oݺ5Є43ҭͺ颔2!kdWZfN,ɓq9ʯ_%ėtB"/%f$ߤ}d(Y]Фk-6vj3k*ɭdxL(Xn@;޽0ܾ}{___<{z,.ex,YrmQw!vv xwwwpFGG;:v,$9wyx$ʕ+_SSƍW^g'ę}X+T Ao   UC@꿸p@@@bL@#k    PRP~% c    cP~1~8p @@@JJʯ8a @@@bL/@I Ԇx0+)01:VtixƯZ@/PP@@@ FjCP^IǧULmizYL'{ڳ~"4Vn"   &kG'˝={0~1\aJQ;{p)D&k7;;{'OFMg"JNJ5tۈ "gTKzO%adXO;@g\&a<>8&2kV72ul-b$QoyFZ'kG[[[8pĉvmbͨj=Lz:T[G:;ΚTJ;q™Cc&ܘEUbSf'I}tw1e'z%" Ai:ɯ3yL aEqm²/QqW~֭۲e˾}|C1 X RcSZC tn%ZR"-L¯SH?~܄neۭTYXyD$*g\pR֧ nMQ((={   P3ڵkm۶gϞӧOsoܙfT mz:o?WK̏jfjXx~Y1pwJYd'CR-:!PԩS{jll *rECO칁 =@¯YS"_$HaqXP4O;5>Dk+k.#۸   P߿uD"x yMFx1+Q;~9] H&"\'7 (gp}(֧;=c~ wc UA@@@휲{D8%o>͝)C}.F[f:7sV+JđPj"|C"PԩS{jll 7sh,jI ~-iEHEbη9iKmlpp,)j$k$yQEE   !w777[&/c6O9yb߸JJcm#znSU͜gdYe"m$? x5Vx C]> w@@@@TP>|Q7>ְ뷩H 6+7uoӌ2'k<F/dfMw(lNSE_SSƍW^-V~T @@@@T>ϯTs   PGac   uNʯ?>@򫣇9(:`   uD&qb]g!GseO뫪вdx.A@@@(?R~ڞZ\!qoK%"4 CSGqڵ 9|1ZiݎjT9X+\.wg3ɉ$]|}4OjSJxOR-ŋ>ÂE 򛝝=xɓ'C`˥;R3_[II*ljL2FN43ThVi-?'dzf*Pv7 s#t[t   L ʏ8pĉ! #%6AqO5dO¸ZS22(5HgKz zRBDEY+UƲgsM eu{Sf'] >4ht[{:"wnݺ-[۷/=tm[DK*ki:͙cS;lOFSC"~G7-չ_|9ϯe@tujO-gEE(z֎ۦN>;"!wGObڵ۶m۳gӧysg*;Tf5u,U7\.EW)Ø"4*P~NڻwoWWWcc3aŴ3,)g/xgkLPe**橇2냣um$gaceת"6fqnX`; 2@P @@@]߿֭U 'q&T!kz ?f%b£m4s虺kGur Cm#b!]Z;۶~ZNd']ۚ>H0渦hQ@.@@@HCn/>L('OuW#E8?6J {Ҋ#t̟=8,Yx}>MA{^@En9w ރ%X+7^.     %&kJJ<\#`&|c﹔jtl@ @l@Q(3(2y (< 8   e&`)?:2w    FN'ni ojhd{V1䌫S͊9@@@Ꝁ삯:_*5:vr0M ELhc#   Pg1X ?˝={6Kɤ6vhƪ<9MFUjtܮ6ufep<ك<=!dy8pĉS<-;.̡1X%jad[ͤp.3!39C2zM$2 5eu'pSjœ\&!x^!VX=6slʨۯ玩P3\{67הy~!MH%;j7Dc#XaFb[vms͛;iߤJ$P ];_6"VciaM\"@jե4{#,u *T {_)SNݻ1 ǒ3ӫi\%A9$o[y}A=^HZֱXYMՏ^#>?DT0ԷQ`єAo}S\޺:A @p/Vonnn[nM$X_M9ӝԆ 51Ѯ{:STk}Xx^inՔΊ>XyKhbHr)uܓEJ5eI}Rv   5B99eݏ>KT /xď<{z,.ex,YrmQw!vJӖNL-Mae׷ౌwww]I`ttċepppǎ/^4o-|C>| 555mܸqT7N E yCXq1_|6@yq=eoyߝuP~y     Zq(t7V*}ăMV#@@j # ^UcXnU gA@@`}Yɘg[A Q.Tcٮvuq !}h<+]_t@@@ah-#+9W]W|+_<Ҫ"C?=~گbFGhu5ˢܾ;_t   UG#?;ϏJs{)g⳰N;{lݙn}V7`*Աq!bcvv'O ̡\C ٦a]~)'&n虔y\&@o^ "m'FTˬbV79M|{ڰi Hr(;ѷ8pĉ!ZKrV6ʣNya&St/?4nJ\f@‰t[׹̠PKHڵ Y~66fNTV5 * &@P(?R5ulٲo߾|>Un:i%4̱)͈6MQk ع_|,[pc=:5'–s[eak   Pt'tXI]v۶m{9}4oLe=7tM9UW[`)].ZoFvkh#>qUxn}⸻_^{"W?5ۙu|StmF]=VG ( .G%V-bԩS{jllqdX۫i3M5ŵ;d2 93>(ȶItuk[e):Q{V,-n$8Et:  tiʏӽ<Ȓ`s{aw5ׄwǛ3o'yQjRYF&B_K,/W;!m/,ǎw]Uw޲58(o<{%wޟ&{CNs)wMF_}S\q=Ws$̞叞!%Kf쭑t|n0/W3ͦ]K).s'vV"8CqR穉Gg!q ^b.Q+%KtA@޻fc'߿i,YtfMMMwy'[tObޛ6^t c='GX}G{ӆkB-kvjC')!Hj/ѴD"wSWs#0zՄif?%˃v!+<!3j$oo T"7#/ t_q+0jThd)\FD̴lf&k:EXp@@ RΝohtwF?o]~.\gѯT*zEw,^YizW&>![5a >c̍l*]?Kj5yb {/6 IDAT. fCSzt;.#{S(&=QIΪ ДA]bUXr.Go څڛoZ?\ra])Hjz)l ߒ%=Ii;r+uo{<}E?R4}{h+4"ˤhB/ ާ%C^=o(;A7~&l;hi<5osns (JpƟkq>Rڽ5[>2Ndw2^ygf<"E*>EBBxrS!翞E#w_zq:G4P|~϶1-J#c./Qo  p痧ϙB;ܜC~w RձؒFT?Nj>M8bF*t$5 x]/FW&̉%#l%')z:ԅRR*0)H'5+"VH' \yestQ>T]ph{?n -G.Ν;װGWמG/w'6^GhP{ۿ\wAb||[RGC3 uM#?@xZG~eޓ@o}o!@`mnv]$-@\)-#ν}sN͙r޸<8:}k=ڇEM @@5w&u(ۻܛgΟg~y9;`+^XM3O;qXhޙM zmg3ǐ>i6 fta.Z;\x:7D[:\~uN' ܯΜ1.?^qE޲]Tp6zN>Kf^MSoFRKr`&'n^RE>`UoepzS]wsľޣdcS2dH۳F_IjS(YS͒r[#H8mt"`ese@@@s.?TO[·lo Aǵvm۶ٳӾҌfUdI^s\mr= )^Gd=Kym^H2VW W]U_s5EGi*r8\ odl EQhb=W{[r0J,uM>qWHxjHZtf%n:"h;oqeDu[ir& ˊEE"oRR~Hְ?R$.nO:wޮF=QBӵ 3b32)DY~:'c=ݥȣIxaEic-gAp~5MקtC?͕~^F/_Շ+(w^6Z>mp P? !X ^Av}| oKӝ^[/Yor8sd_^conVn*M(X9s{DT1_sssߺuk"!)*Y '4nG+6j-gh8ߨvtRQFXᡸkI ]r^8LP/(C}`5E6h O= m/}iwj?q,2+i;EΕ篋uWgCsFaoj.t FP*C18_y~\sMg_s]f X!?8߲Q\wn۬ZFFFuP5E6,lBeumC(4 xf:AmsMwi hȉ3=$sI%\U㴔Od٣qݬӱ:2-{|ݜk>>dZ.h \8צiA}h [XmBЩ"I$jq:1ȇ{ӠQxDVbhtLQp<4㍍6?lAy̚wڪ|z ci=nv_4ߓJIoO9^QxdrϧbzNO54}φJϼh'>L58[ .qNWW P8A:M͚tCر:z.u-{3o#ި 9^; ?ʳ武o$=iߡj~ysE2i[Kix;R6#ޢ[rK] B״y&~]>ȑH=GR?[ :w7e" #s_A>nحSMQ0>l?ݩ4sQwާx2fi=qMg^̷ewpKdZME 94OPE[MLQmG{!foҧrl AɄkz 24Űvl?.2`P9z⎞Umlb6"r^ڎEi~1o]GIV-^B ?ǂ I@=Egx8fYl\ JLݸ<5~Qusƍ[*)0ᡯgGM>}dMȗ'KX#]ͤQPsC3*"sbYA3qVvLmn9sKeݐȎYv_K!杷_0qC#m3kI^=ìy, l!BvH3<@%fګ6ny' G@j9C y͋RIŧV<}4G%nҧGM*B"yx9:|I.ׯ>tڹCՑ3%8wѤhzޓ Ќ>w9 m֯ÇoևU.}84 0|qxDY70czvmǭ9J~Í!֝oڐ@|iz9Өjr+WNx,+>>Ys'jm5nSbݏ]qC}w*䷾ rgϼI2zCsS T92pmW{?iݱc ? voZop"wO0o#~;u>쯴S+w7g?5.&yA]W_8T[^8㎎1Cw߶j@@bL>oU߹[ -Hx!<&`<ؗ^%a'A  '@aԮxDr4u)9N{A ,Q zK-Qn MA@*CI} fnTr.76re]d昖e +<&BglRU&z|m `}A@@@/'ϥ$WXbŲ5kV\N?U7B8     y d4o~VXhݸlVEU~@+W-r|+V .V\ sͪU]eS~2k_7/\kvL.ӧO]^[l\$qT+!II(Ok6D @Y X/ke/NB']j+6j嫢*?qM3I} Kj+F}R~K%VѪ!z-o+>HkɎH\ruZr^i#!Hr0C˗G c~gΜHҥK~F0b~ťK=}7VBzA|ʚeuA@@Lc}{ኣ?_bRu ZU׼2}K@B? \E5*&aqɕ[R령?ApI4 Mq@p.^qKϑtEP  &lrZ{j\,[ˤ)wTܶsJ/~?WI$}_Et&$ۿ];#W.^z.נmI}{$c\9oҕ+ҥ(fGv,_J8ãx\R^gggy U#z 7lڴwwEE-=;g~M|#],jl('|dj":+~H`֯_@u_5knݺ+]/޷fd=hȝ;w~ߠT/_,<y|j/a˓4V~R~EU"GߠΟ@ާ~ͳU_1?=px(MzⓓmmmP~JJ(~ۣRvWysCf~w*R)_ڵk/첀y~S5OrU=4}0\z7dUW]L&?od_g@@@`q ,=3%w^GʏUc2裏~_: ;NXUȕpW=q +FWZZCJ[B1?HC&凵p@@*O ^9`҂iżzрɘiG}{cU䶋&t~#ͻB-X\ri0+ݑ4OU~BCJ1)߼᷒cgqn0^`̏ߗ%!V   PBqW,DƋ)?2Do'?96//./ipQ=gΏ\)eE   +>Z+r.ʦКSN^q )UuO9+<{-:uXr⃣_ (XDB3nCA%KŴ    e!}̙BMhZL'-H <.)B'x!@@@MT}Mvvxs(   Ps!'Ѯ.ʭ ]A@@@棟%Pe7 yE Ww @@@fPXd}V~sg Orl!@%/KoTK0'ڦ~V~譾i9<˾P`@    P[eۦ^.OH;j:ڴ~V-~F-u}f*Z<`|   LD\f"=V~$g% c&  u'#|ƌ?2[408pؽ{/~wy6\ꫯ{SC|w.]nlV|X鳜g_AOR{zQ  P{/ꪫjcsss{q/)GTCџyR/W2³oOeM:Guy~P~^d(NB_W\[oƐʮA߽tV;wKuӟ+4nKgє>,PB!@}pIh,4"߃!b/fdi,4"HA}k*,4BSCS+qmf  1'*bᐋTM\o manU=P8  CTC.CQՕrIGe*:\0h_d듏fاRk~1LɻUu Y^Qhv8 rا T]?r齔s.D22~|e  H'_Ym/׋7]~;^<۪hMW9'~8a[vG.' A@@P4kduu=zYrn_{쏶[5J{o{|M1_nNB)̫چ}lLbwŎJ)l/b~RE;!Pj3kowg^F3_wq/ʃ)جwP|W~"ʨҶyz6gEwpܨ] yaukf9ܙ2B)j˜vieoa@@ŋ_rgyM(|fW??_ĽZ#XzupbPz'k;?#41?_R*Eǭ6?4f4ɂ{-K萃oTߡS(k?l~+Iԍϊre!_?fz3s ЮmhďA@@  [M]?&*ˇC|a#*J1=IDATEV JZ9J%'+H>k~VF \me GG\qզB챨B g1V1?b~zOYm܀]+D}ٟ7gL?}?߳M{02f wPm_c7kZ1F*;#W f~vtnN}ٙz?uoa6áȡn>FxC{oM5g :}(/{&JW%v۰^) uLL\Wa]Oqz[}q,;_mWx{Mۓ};\{ԏ?u1ُPcwq}h۶8*E@v|3.( hXmMx(Gȫz9z䭲>vWXOzpo Cq%;w6toi\SCFSd-l[dIDlJ%v8!vS^>/yUl{Oۆt,{3g7Ja6@@@ gu}W|9Fϗw޴k;Ud{P  5OX5s!q/Ghg;O5e*}i-p @@f P,4HV]N}k0?ZLְۗ]wR]+W͕ϮKH.UV[(ڵkoű 5p9sFDK4{KKu9K鶔s.DWI  @K_ң>:<<|…/~?_̓A[9E,Yr˦)%t1?d A@j@HQDRM>b)dW X3B&"    ؕZvHM jčBE    PP~%#    P!E( %W0   '_<vuqٻ馛K TG?QojOo#7hh.q)=؆H9 zS{5oo AH2T^\CDVnoٜ`\`nXB< @@ѕ /G79m:..&EX(u} f ujvo)f] @-GD. QY7ϙ7Ȼ_( *+ppw/)J^;R3#6]r u偣GU 8ZgKK<{AKOac!`"? Cb&yk|23A,~|ZqPXB;  ~B88/,6#)B <7Ф0QthO($2$EH&*(x2CB #&Dڦ[8=o~nziْ8*x%I8w(<؈&Cm5/uϖ QCs/ wjcdF"ʂT $xJYpr V1{kt '@_Q~?rO+$,_ERextoو\"fa# CGnd_ 2 3Bkʌy " "bv4_\KYRkp\fvd}Xf,nHƊh*oEq#1F!Pjlgp@I>"\ R1שuUUE׾h9N~e`]7F#`(d2ǏǣoUBIENDB`PK !k``word/media/image27.pngPNG  IHDRp pHYs+tIME ) tEXtAuthorH:tEXtDescription |hardcopy|2012/11/02 15:25:41 lim_j SGA2501671( tEXtCopyright:tEXtCreation time5 tEXtSoftware]p: tEXtDisclaimertEXtWarningtEXtSourcetEXtComment̖tEXtTitle' IDATx} TՕYT0Q"& D I #m\_ GŸGGHm$&DL\M'8Qu4`~ks{nZQ.{F^{KҋuA[o{jYV(}Y9|QG"SFd()8gt3tvv[R+QpGRX. VI(ʼn5HҍNaʦtG* d.TV4nŢtFӐ$5@V1H[V&ΌjJݖTۈQ+FcH,n<"Vi,kVN;v,nfu;l6gC4%~?A?h&0!#QPS$m#S ˤ&G;qYSq`-lVU!J~PxOsF'&1 .32M N^43$wQC|h0`geq8~pZXAgx=[©(|ӧziBL?|ӟ9CJw{~C?uOxG_hc?q;x,nwTgJD' T@9 sPq R'xG:fpp2bFEH8')?Br [JIE?Vb*HSh9jȤ3*{oLxE{HN9I+!>s bHLDeՉ eq;ś׬:po džETHސ(_Yd$cֳNJYVJT'#F⾉։$fj&ˊrh8hmԝ@Wj S_;7L^ n@O3WVffEpVDuqo*)uz3c73-UT!Q0!W>S3F#5fӏYOdz8~Jfƹ1+O$@wrv զہ.A0ׯ_9_ub2?M̌n[@(C^J;{2Mͨ>M~q̢gRp8VPџ2_PO&>H WtPN@fŤBb4ZRЦ0:,")\@b?+"2vSVzdj|.ʉ9˲VGM\kLHPU!zf+%<}M>H[T(rqPE'lqUEXt0}mDgGF"& z^Ww~ؚM_W+lGzX%kmStDA=} >M̰:qD>LW5ŭf)]]4!7& oo^ L1$mq@-…jt2SO_i84PBp܇%1swVY5?c6'@7k =;VW -&0RX%PN^eE|3r|A29;栯cc5\DE>rT pnfҝ>& `Fݬ4/ *pp)Aۢ013nZUª&HT ̋ŠUc\!@ YICnj*S\ij1 #L]\ٍM3'z.<>,є B¹[g'FCJ2iِd_-]ݿ5Lvb4sl6Yk+Zqv_!ŨZ i[lкgI[g ϥoђj{sY7$4; lfo JXe0ҧRᤏHW_pֳq!w]No]﹍ѿV (00qw9.j3"髶ϑݶjFdʭxq>0Y7Mf CXεE}%囥5~C? ߓno9ũeT2({윣)q?ܺlС=y)#3mJdǰ)AŠمr]HVѐ͗EW~wں.%LcRLY8IO,-{r͝nkpX~@F"񩙎Z0ڲ~HP: %ޱ [# _xk5cj'RM(_*v>vko\T %FQgpP >^]ǹVqѨǼĺt1".| JRJ.C7K%jI\NVNND(U;$#$AyQ^?q5Ƽ<'.tf.So)-Dg荇ʕ7EgV2i4L%ԩDKA,bu|ң_FS"忭.~ Ӈ^X8ږRP<|2y a-Xёr̕4ooYDnVbSUB]Z?\k6}ɓkꐔ[[hMkᷯWN|:D>+:7rzM|>9lU?B $U߿Z@Uo͙]m?\wtDy Li-4Hl]%0}4o[f z=kJ/A= jyy)|TثKJM%`blaf4k9_uH1/"/KAǐ5$|2MgǛpM%SX,X ?~ԛ$h4 0pNC4H'N6E J$@tĢ vmFyB3WT{B,M(Z^x_ dp^hȤl@8M EZTZjhyT{W23b&3?^)>C^0)?D,Ǎ&F":k?gZ;HspM$&waRTI`'=wZn.\4 wwz zgpjK5ěqtvv%U͚S 1cfCW2o ^̐={7M4ed2ٙL&;S.|/8x3+\/Y߼ydrݣ>^c:=p/zHxcͬ9v:S":ٙNi >Q-‡3zKԆgGd8=yHIb|t\AUߞdq-ڦfѶ5lr<䓻R' YB 0{aAj̀qU-pnٹgOǞ]؝KUv36HM)l_?eXS堃zW<hkZ{bf^.;(ew7>`O0]6‘ v:MJunxO rtv$;y W#]oS0f~>ru0tpR8.}^q9tzoGD?7zΚ)C;K?Ͳÿ܃~nPbC{!L2Etd(_=h_:or(B/:nd̘ǩҏ7b-˺_晋 :ȏ؏"shiq/fA[`mؔEh ;?_.Bustj}Ks"SrЯ0ڥYdd؞!$~z rhjX!U;0$9r+?iΝ!/Wr'V) Kh3?/1bf{n}ws@'uUW}*. O3ܡwèxi̫Z*8;y$J`-lWʹ)Q={Ds~F~x62l8 ;nUȷAs7M[)L*%$o&/\tX֞ݪOסFJ T honFVhX)7ڲwۂy5:q*RŠ?ٸqocJyKT=āQX_M8p z|`v0MF={vxOhO 癎TwM#^xɝ%rBJZ'7D%t WQJ*[VQiŢA [Ryv&(Z9R5[=wڪmrpэV 7;y%hNlF3z8"NL UKoԲUS&j7E_= B7{pGqe!AᦍA)8xyӔ'i9䙙&rh)^aٌ~Ԙ~P&PD;6*'6+b(@|>~"3D1LѯJ(|FZ}p"_9RU8)U s٪*CFMJH76MÉCD& sCR&5FkR yVFE [0a ,lWlVrA/X%n :TϥpM= | ^#--q/Z5 @b:ʼn $Q$B,b;1z8ByGQs\C@V-,Q(G<#FPBE<%_5GOQP\ x\no܎͆n׍s?WX$jX,]&Ʌ }\by@3$԰Z-qD&iF9ں']A?z\jF-$?D~7t)(jeÉu Z`PJJmӢȉh6. 1_( ~h @@!yu_ΨE p_ɮrpA͕$7E~A(My|ҡ۾<_F o.TuJ7+\7H"2HКUtJe~-R$#ߥzR_vyV}ELd'H_Q_hMpV#J%jmJ "Qe [vEWs7[]u'KHѺT6CJad|Mezšxý!I1[˷6#<_k504)ħ۪܇\YP,PNRyیV_ދ6ε0a?yq^:<7jb ySK  fbl(E҇tA/m <, a,=:@zdDv$QfQ"+xpb9 (p;pG  "fC<'27إ|{]T & ߥo3x$NEH3}AYt`Եk] ƁAY%(ی}ܴnPP_^.5@ !t!۷oU%ze@W,c1$ !%AK kux mLyu4< @!ܜ !!glj۱C oWإ('9D EZ(oń WE1R$ Tb`7ړO>ɟLv(O"K| wm.p=.FT&/b/HT&4ɎJC |և(A@}L')S/9嘟,C5qFsHz6p "ENLig"őr@/"Nw A?$Fdtm2tzV?JT1\?_Qs_/1};!`ʯ%V8񤧞z2=A z7}#z.͂ĮpW @X,؛Ebҹ\!\ e~ծM_(S`ҲdR/.!PJ wC!2LE.E(;"EOꋆ^(̅k4ՁS9+m9pvQTJ-xz9AM^tVL j&↗8/U ھ3ˮ]=֞^ YPg'} XA@<q 'cb-E opmC %ٙN%3>Hޕ{Nܓܓ:X`CD!@>h-oI4yZjd';;R];w=dRd2:g}'f!H$3߅+ C>Ne} 8t0Zb9<>FPp} ˤ}*|GW~/Lvs3 *:k8Xzlҡ@Mp37ꬾWT[|M038ҙ=Ѵr鵤)ׁ`T nl( AH$x3|`_ #,"03VDأ4 іDY2x]ԃUK@zA?X #k^TUM!Q +4_4:s9L?=>p'˝\6x~ \  P457Ǜ}W4#BX<ҧYuX俀O9O4̠ :fշ55Eب(͉S^ᢿ (h;6+ׇ9 OrhO~8A}ȏS]ǝw eS8ѤaAkS}>D^ˋ)I x"] ԇ ???C ' ;nQ ^G[d_Z@tvvXyhjjw::hȝ@<=dȐ"#$?rLqn1gk;ŗ.)"jg9Aw^mZxuI$Z@@ؔz^E칞?1 m_nkxc٦G鐾هyr-fR( FRLkOy b8#[>.XdD s8}zi[)֪m?.cY˧odJ7(K[+mJ8A.Ft?qц)Qhsӆ.p6d}|,8}y3$J@2 W°> ʆƎV)FMirkTu l;j!>F]~\Ͽ+u18Qߍ/=gy.E_Qc6R+ݨB2Mն@&PA}ڰQ2gV.V:}g4Էr}z`/^ѭlIyEfQmdFMZ4zq]pQI"A: te}2QVmtWm6z&G nWsKI|mÐFʼn5S9E`4)0D(E~6g=v ~/KUPAEYӬǓa@J6n8aZ^E)xOh: ,|%ѴJΉ|؛I>a"FKUCpԇ"Q١zx>nAL$dRt2B_u=tM:?h"1hʢ4SF]~@US v!=r۞)R EJd@u#wmp#F:t?^)]39Kß=mw>d^0 4*I@5,c4z^W~٣25^HL6Iž+N1MU?G9v< xoذwS5;}ho0~|#TkV$,pk?C|4r @ScDŽgD!4>~HK'ԵRIUǼ2Ѫ\ UӗY>xt*AlZA7}:m\xN}_,N@ ܻsW;u7olxODf^tһޅ vIeGYo4^3hpU%Kԥ I T _EqY`^k|_ױ]%mMV,nM-Vv(PףsjV{R\Vw7w׸_rQItD/:z4Ȇ`] Gƈ 8h%lޭ~Ew3{sN*2$ XÖ6 m (V̀|Z9X5z `'0 PAr@zLa۷Ȕ`A@jos~{׌  P+TxC:F`tZ*ku\b 8ç!6"\DWkX'@^JQyR zwOhth VL{QޖX P. :;a׷J1p-f @#frRM{ċฉ PoU\)Nˌ_m׫h/Uwe/eoI$VF@=L.z}$iDyA@.F"'=u|gXA@j8b1 ~XkQ[bK3D3FQ5Fc0~ȕ4 o͈q)g}s3?B/vis"Q@(@`a$k۷!C t'//'y5tİ}pX&=.'Mm}<ûG4ÐWZɞo(Xn}+_ׯСCćpadOfEJNA@JDO롗wgCgʼnuhFeͲ[bIrA@o$Mcf,!zs٣[v\?›ZBA@ ԓu,2=U]3$ϔ;%Ă T A,iXr䷙O$H#%!}%)>}Lڠ/@R  m|a){|uޫ(%|J =ݻ{FpTL܇/]:g9A@xzRҊ>m^k2+@~[n-Rtc:oߎ&zW^.PQ73hw}{^ ܗ]uRi,]&N8`YJMw#FZ E*D}\.=y*Ju3/f#D~xîH|~ᅬ^CVC5~_`J2]f3zEg)@\`M7c]'|ӆmt2}rY|;\k1О r گ}:}g3jP!2]p{8#f \!j()vi<~yq駷͹"4cZC:z[Ady ' {TrJdcTx>9ӧ*I ^w]|P:x)Wچ֯D ڵλ9ҭOwW\ xM(ʛCڏ3&t5g3_/Y[yQ7T0pbc/OlBcErE5*_T믿AE&x$jᄳR>ᶾ|#a5#=H&S$}H]ys5dKh}[“I zHx XbՓ'O]JFu4fg^ {"0K.G>}>f" ӗlEݘ RQmX _Bѣ:jȑGqD~دCJ8dɒ%_n}0gذaw]7@YZ'[ZKc~f0hڒ;>̏yaK/}gBJ~nHU8|pBL)ÏgTD A`1cD&S%Uz2׆uu0a/d;ɨ>|qP]ǰS3.~_5WRʛ={6V8O*VTCV_Г}\)$X/j*Aq@_ꨗXV9;9ʋ")d#f:{Cn}EP7vznC[)1RSϺAV0rԨQ;BIT#ԄV9P ^-鏙wRr9J23޵SJ=!u@W=~N$h'8dEA@F GtK}7޺b$ U@·ž]pƭt>{ŭU(#@NaV|bKMA~} We P~CٛK}- @#`?۬" @#i>`j$ðxA@eumNa/%  Гzۢ}ؓlA@zYK>xqڐRA`o!,Lap_AKlW^޽wԑRA@+ܗJZٴYѸi݋An0Qq\m*V.jEV$eeQ7u.*xp!WA 3_X&D-oOVAoVh.E%9f-p PA@jx|p؇%<@V[W/nيfX&Tx M"A }ܢ8Գ~x@9A@|Ҧӫl8g}}ԷX!! ؃KA>6D}4  A@<5`q IkD>bDdstv0ִXB @] H4>龋[jMe#*e'T)LE wx_i$ 5@kna}f7"MM G=#cѶP޶6+w9Z{xÝ%rݛ 5ɑMCrH,(3` Kt&xỲ^8VNX*p pMZG wSk_: MsMZ)M#y ʱ+HRv;qvkVΣ14$rN\_<%.2L @"@LT[vtr <wMj^pfuM/qݰik_ެps,qJ#sAl[%[)dđMh_d$ QٱL" P+޺VcSu,.%ܽ%T XYuL$'DZAs6;?.R$BN?:;tn#FvKfA3{qYwX5޵/pH\lk]ѣsz!sDwRV\(WAyTEaCMMъ|h-b#^fhEk40:[_{ة":\Ǻ}j~PrDyJtJ0hP @ \tzDwȀ跮kՅb 44 ,F._z*G 2lЭEY{eGj C@k ѓH,kE31lQkb h>ao4 ^A@{̮fI}>Kek\[!@"@~4-;2YG}֭b 4:qh5z1:iq C:@xgn-=ΑAؐ'555MߗD̕}wg5l \ }%=<0`,!؅)]dA ~kMMMxD',?q԰!> Q`+@#zʳ-U_ T>,qa=u극EA@z8!( @pK>z/=WE Մ p&s9j!@#J *E~rY+Ri+Yں .L|-ẲD@3b)ŀIr {d߭ފ|qZٍӹt*N zd)Y&n)oYIDAT1bСC_S~Yсi ͕]6zE P?=# W>z6l8ꨣJi#>VAw9-|H`}i~GI0JbA@$zU$zRalUUoÇks KrVeWDB sm ܋dRpSz9A@?m&<~ȏvnC:F@s-g}/ @# yOOܧǸJtA@C!Z2:p[DC _lgԃCC,zF@/tHz'+96A@P06.$@#`.MG"&TOPA@>TؠZa'u&@4g= oڬKZG W}ٴչl7;"Vr^/ u@< + x$c4A@h8xm 9jdp^k閦TR:~ 8`A^06Ʊ /dDpXfq Zۄ:i_&eNp b *u]zKD,::jfEoA@A;f<! A@jrEMMh,F3X<*YEqA@F At-}[L,c9A@;rGćO,a}M͑x]՝b  8^l}YY<藵_(3oW$O67rF@~/w4b %@#" ׈.6 pA@hDfA@6 j~F, @AڴapCA1ocշX+pA@hDGu;fAps_cY/ @" ר5/v p_c׿X/4*}Zb 5v@" ר5/v p_c׿X/4*}Zb 5v@" ר5/v }*[c7^h8}ny_ ⸴Qۀ-4"}€fA!v1Zhxdᛀ 4$>Yh6 F yfA@6 dۈ@l75b 4"}B[#ּ,46kFE@Qk^/^吷z=@U d|(XV-EyˆR2 @-^8LB o߾C 4h'\"W)"G@'/O~H$g8~8xlT)D X |_~C=P|Vy[[_*wǏ7R#ܧ ][a"G}9sջkƆ2><&T.Q EH;S1oLA@?||_! P&D YIM*ݻ+.3H|'6lapA@G?ђJJJ>m7vz$DEk-+Wڂ PTu{z\l=$ {}{l)KB >*Go%  У/W @"P}^G֒%Foy PuA@4}FT @- W $: @Om4"OUur Ct>o,bAGadgg7578#緞r }c.݇U$o>hlAIeKw\}}ݔ,n(jD޻W ߮{Qru/=Q|>>"A:ҩhbOG] x2,]}SW;dFzL^U*PO]3%lS  PJ>3nz?~G=^Jw6暶8[ 2PeȰ6VhGh%\JSLRpׯ>+UqJ=5~Om~]؊Vk-K/Q)MG\؎ǔ8ߛdM۴;$*Zу< S)(M^eG%y&F -u>qPy{MM8ldo P۷e-M_{ 8c܇> R߭AfȘe|! a|Nk^9^G>P\s(Qk F' RXXbފB|Ph뀠aU8y uAmk7im :b|rfC!W>Z PKB$xl=ݼd'-:+Q}~o =`?{ww|L+_NJֵW0+XK ״up k}C}0Z4.`"HhtQe\yXqi6˗>mlHz '[+gR(O+Z5 J_+Pb n>a8B ڮ5\j=n6RW\A5w:gvPV 6济=wo6AF.n4/(sc -WG[I;tӁ4K e+|u Һ+PE8c5B F G_#q;楷ύN>W8IrNRsn2x}ۼt p;t׬x @BpB)@ μ5ę?#*͋>!N!Ս[pw'<'UL@?a[q٧CpiE׌H,A:`˸\[àpaWEj4Ǣ;{K?qq#O=a)Ǎw]#ZNJTu"S*:14uu'/MSi:䄱/Sc.X~_w(I[b0* Y1_aETxζjKJ3T񁋆,dJ:$x(&^Wuz7f'=#{_urIa?dW_ԓUҏwu^CG$8㭇ο"+=rE-]|:]kf޼yf xMׁx:>u2Qw[p:g2WDJy!ʩlPn!\ӭ7֭j>Q~oXNY}o+@lNuٟ|ɦNT﬘"z]ا|7Dׯ7͸B)^?**T-(Lc_y57^;'/h7xfϞ䕵pj#  ]V@울Qf91_pӸsJmiQoW&bɓݴ >Ӛ'-Ge2buӚ'oD]ξFCZښW_M~<}`_I@ DDWwL1`r-=UzDDlrxU㬏F볧wqrigNw q ϟy)dU/?Dx._nq!7/mŠʕX[dau)^b`zquY 0YBN,>KK#s9%b_D) 37 lKkzWj;ʕλwtRA@i|AwJ)UƼQ\ ׳yݳMƼOr @m"`y99AذRêB<GQ!r@"O$o~j ?zuި p/ 0H @"0xW_1#avgK0E nj~_JJA:t];^Es׊W}&a>:MV}&š}M}\@ f!V7`-*@#6i dKSo#' @-#Dq3|p_-W.6y(.^9+G{pHOZ GV psߗńC~頋#AF_NeZ((DA@ 0x6cnq_&AuEOl&ؓ w#Q˴XMLZG/b*$J%qp7/շ%cZ7Z ۷m։1NÆ kmmhz(='4JvvܡQv!HBK3gΜה](;,[ ]<{ \Gd#}ɏ Rj}y {Z?H̙~ە 'nZ@/1NS]˒@ J@uF|v:WU4]DϐZG*NwM}C.EKAh4?ƍfoёN'UH4`TA^Bޯoɿ!P % PV%PeIޒbh,H4+SB% Ă@u#h\h>dRξhR *OA@o.-DS3}πDSBDcQCv?k-Gyi=V٠]U aT!MdJdo75455;&kR$jo0Kbswfӆh[NrkWkH=tM.cWLv3EU9R+Wat:y)٬K'&t(ԥ (uXէo>$Ν;+Es69xWznfp_~FiEcݼZ\?9mw:\=2󦓬ۧro7?4\eO/>OΟvǶ"csW BH o1+є? P6N7~ԡ4^_w>)}Apt`^\x};ԙ˯ןXn業L|*믽l;kȽugV`@}pR@XSpaO<5OpDGytݘKFQINv8oQ'ʱk}{7nyjuVHR8״ZPZ!uSF`{8*K@ PRu錇.l]}U=P'ް/ZHdr9h6)Z{;{mq#CkOZϳu4eCwr0D#S~!eUaʒdHbA8Wf̘1{_Yv᳖ݻi̤֚eѠ;Y|EkF͘45ˠW5iҘq3f Զ qO<5WPY{/ޫ(e.eWR^CrƀwNB]BOp3%v-{ʃJ^, 2 t]k8Yb"|H`!Y|^EY+eC?zyFʀ>ڙr +,I$Aqi:ٳ ==B_ UZUB$ 6Kgҩ=M )UF6%x&d2{h[rud2+I$Ac 'vPzjyC/a E42YBu`M#$ DbtoQO| ֹj4{˨86f _)CdA?6mڨQV2{asm4{ˀ.і-}̑(xeȖ,@ 0{%K,^ػmX"%\hnp.!X!^/4nN/OvD!]exA@j o- p[9{*A4j%9wiIA@m >>58A@/oKpe* 52 i8 KA&'>@0+3ׄe h5kV@}r P72CA7 !> %'E/ɘNV |/' $%\jR,E"0[ Ԍݢ  u3lNCUϟyU=-eEW}/8ߌpnm2yXV'ůiu NWwH⭣< o>ݴGnJ,:;؂qsObD;9QR?t.!ΎЅ ܹTq"j < ǚ"$C ,ĽK4*\A_]h'ˁ"*6cΦdS5P=g?s{U\ @V?G7KR*Aʔ*l!2CXBIFiiEVQ=XfW6/|&,"U/;%7ȏG{{iËUb1cMVt{M~/Xhc0oŸ% /G`=xY[\ѭ`/-֟WNèZBU,vᱯ_֖ڵC8ʲE[SѨ:0hΫnN]1X|i\l'^QX[ZhnӗQ\#޷rb 49Ct5e(@ LѤr y0.Yc?~"O>d[aFD/3HЖ;7ٓja_I$]ȏ>`ZJ9)M6U,zd iV'(3bҺ=RE9$L2]JU ^fP+WL}DVPԺ.,P!5Ϫe hNg0XAhά@S\^j٩3*t/Ȼް6Y=\P! U{/QY2 oxC+E w5t:_>K2FQ6a^f/@B)9"]H}KiILB1K&[ɖhU4+&ˑ% dOf)BR7CIy|`W$@/W̏8'|˴U${ޯ7 D =,7.P$XR)K,Nz"4DdE ?]ŁNaAi_*~٨„_W jqX vDgn)q#.ECCtE~g566ꂦ:7ZRl99Hr 1+~ٕu;HmJ_u~"2Z>|^x·1&@)>DluE< p,GcURdomeɰLdFT@sfRٙBq|xkpbtΊ#Ɏq{.¼˭_\8`RM{FL,L1|F:з"vJL}GS M47 *t-fWNeVY]WL=!` T0&c5 ( zs6)pt__I޿flV@E˅@5ME^H $v-rzDpY4 $,DTJ>$]#ڧb~H)Kx;KK4CjK$@tTo'I /n'cﬗ֪ :lӗ CDX>)C}VKc+ƹ8^kJ#JEgũ7LC%1*Ŷ0eH3'FWzAn p5x4~jYv!fki:D1.T|L QB:^id¤Y$aʚ.hk ݽm6%MI2 -1!BRb S봳.<[+!K# /8aR2nWP=f[k|K™4mkg¶ )ldۆe~MEkfҭ1o`k+m$~E1hK7w]2N(E qόwpa+Ѿ(172xR-&Q3iSv2 f^ơ}N9cmhN W*J>tNeyr@CWCea;7;[2zT#;K'|Ӿ7" Y&첌BUEA]M"Zn<V[QjVIE$SчG}fd +Ά4"xyi,{͐7/9&]&f2Gg)G2ѻSSے+VsSN\2|yķ.OohM]#m;,yHPu+zwD dzD?۞!H>w>E>zg{;.vFPȲw>EemxE"AcR3f,dzEʤ8_\-Ϲ&,_.ևlyHi&kT2R@ɢK:Qm>1B hz$E<˫lXtE0~n)Qo䎛htBRűoBe_&G䏶o#?Dp칛>T? KnlV$sC$f. .:3H\/s4h{dHm{H<;?~VϞGv9gp1|\2| DWTȉ=NŋiCXbqin>>餐H]> kV$&mtv'_-h<Դ9sE4"8 p&|H'vEzǻNˉjS.ͽ I54X@.1U15I96˓Uk{{g\yg/wUI]C&sҦTʉkz$_}ZF1?)W63Gh/MKϹ|g}Eܞ9JeҳEi4㶂\!lMW_;]D L-^Ji*/+Fk Z%u+晒(?ŕyYd]O}÷X&PJyɟKąqfKt?;NT&?yfWm iŷm-J&s̑01!tE:"d|䉪6LD+IP-𺌸~I JZȈ?/Uo?V))wū8ʝxھg|&?3NcO^}1rg~?wx18'*gr !m۶f@x Sѻmt?*'#!}*5QZCSXQQÈa6YT{FtZpzml*[IRlPuڼT6mY`(`QA;K`_Uh-5Rh6nW: eMZF|_3jI!jּB !K:﫲8KS[?FC 6GR?ӓ&ehQ{<$"7S"ACUMG;ti?_ۿ㝒\ؽ"w_5*ZGT(yL ~+ߺ{!ȕ0Ħw<էݫ8xֽh$䏮=>Ll'uoO3JWu̮kN?5⎯7P7_wjWN$H&1ͦ|#|LdI'҉'&۷4!OsuNFDnߝDJv;ee_/vk]$FX$Tjpz7JR+%3O*U{-k#O잘Q㐙W(N\JJ 䯦槮\&k_Ϲ6<3*M|&!R'|wM3N甂?ҏ(u`9BGNq*g“ԻA5i8pvQ0n'dfSh_=tqb*/]s>k~w\"H:zݸvNԳ:̔z MoM- }ZRP/A5"^;IG|n3݊ zݳOAPg]XH}dϦs^#ߍJMJ3gb"װU]7ޙyrd l}&gD-T|~J|]RYKa@DVms`os3o6)`t, 4* Z@ϗv3 r66f?WGՇ4,T߀@c2>+Vh7A2t-YJ.#65)'kJ^r"*ɒS^p홖T$E2(ؒO9Uz))t;Uʺ-ÊBl~k,o͖]?Kf{D$:55.y7 cUك3w4=#^+e (~?TE9-L״)1N<(ɇbÛoQG8"ݒ]Ȟ=]:y4fx9(c*G3zMc䍣clzTb-ؽZk[~A'˒vK"f B!`:ȳ@@3u@k/zWR &GۆBʥ\2Yb`}1vTΪri~;8[d& rC)ɮm}؎zFzaGns)b^Ct]~ibչW\.n|~v^~՛NfpU<2s.Nl}輤tN/=w})„4VFT3s_$W2)PLKU};/o80su[.>Gs>U#%F 4ZO(.bھ/IvEZ78OT\N0wk^w+mT!-DN??q-d6-`0Y9iZ' l*ﲑr]|zE(hHIDU[óڴ-jx`[󟚌5ڏ+nfQK< Yo^m.,^g)mpYmt0JOR|Yo $DeJ7jxlL9L_d8X%!ZaB 3ͮXQ_/)5Lvxȝ}{O?^:N%.޿_=d:%QaQ@3WvlwtFr0gқhj |"Y%K1Ps#!K{JT*)?6TD)Q{D'4F@Rm1W#hXk91ciHj&9_L)sh jW TGyJzh#c'5Zy_|MhV8!`7E3E7'> KRZC (RJeũęXy^LfqqcL)BjhN]&&٢s|\K6e٦63}g 7RH CڟMrKEGfmt~# P {̺ض" 38~e"N[911e$b6M~5t|NjMVNZd~H@y6)aYs#zG'63@>EU%{g5M #=N<0lseZ,>V~hb=eDφAofop~02 |I؆!6c>}} 5N-!pb2B-w2V*,DKRnM-/&wvJem,jJIvjb^N*QA-f0Β-R>r ,6O:]/P82΂H,#xY]U6kʶR_[b HeN[[vbg"f+3eMIM-&\Maxޯ5Ckd~ټJhf0ch\@b&5R#` IDATtMdaU _hzSa_WlOtnͥjĜc>8/Yq)NX[oMh6L8zM?_w<&`0\.pyqmr^h#2wDc-U:9S4=iz>S'i}x`NdcH,J`~m ׉-`S!+1 S[€Z,mS tN1o7zWV&%8-nK` 56-Qs *0_,Ɨ7ӯj",ϫ=[oPDM-ݬCt&c%ҚRX)LduR"ՙO׫҉IF9=@'N%y5WΆi&*<:ehQ*睴,`֕1( .Kӷ,6X)\=G!7f~^)W\5&Xf~,ə|2!m)ZO6|#%wjG:y @yx[re_kv7O*B?54"!V(G @ h$hc%ч/@ {}kBcg @4|/}k{ _@ 4 l@  (G:yYLO@ e~r?C<ē/>Nc߻ի$tsʕ@>ј!| P+4Vn ;$ǣ[/9ᕯ| - C/{w;k0s^ j^GQW;7KJѾRLiKyqK/53MG!o+jT⿎a@AtZ2?#d?8оґ M7.-H4B<XF⿎noSyORO/ @u&p/>w@ h@% @8(gy4I^*<תwx;6)eџ&@|^`m! oX>И{ e`~ӧ_i]N =n]yVp.Gq =7ravdhv d W 4j!z@M p/n/>~PeY*(Q>^}%)W&N/jRnWxnUGTǼ8vϤߚeWazw(VSt%ξ̨`ndtq8)c>32@Ug 6yz$H,Nu6my'tcYO9rYwf+Ț.!;1 t܉ > 4تXPlmbn/zת+'_uzj_10WC9[8?lv2lSHјŀ@yp*-5{eԓ;OǭSZ'F@sqիW>+}}{99):4z#54Y>c*M ڂ7xc@TOc#s?(W !\N.zۚ)bя?/t>Pdp%+7ј{ T */>'գX{u'S}༃۾J{'.;OYGDUsY(V{%*+R>]{nۂl/Y#j4(;{M݊uKL1?u't\,v[nN-ן$two[Nm:,ĜR}>@J<-fa~۝&y{:1"ڶ)}Ɲ;~_JJ߁=፠~\Ii~M43hNXo ;gИ+RT_GM|9k ?xy |ED:J )+AUڋs6lHPXmm{l$b3{NƐFG.gbNOP%;,fJyǩD6땇d~D/)3N c}OƒF[Ιb#Z;BRN=zM܎nxzU.GG+jȖBؾUs8@鯣(OOj[}ʬJ*hH 3HESXROYuL1iCQج.gx#wD.c2?*{E08N,n&*gY D;P苹Pܹl]Ԝ`P })N/17R/@Ȑޯ |qb)'D!1]q{WeuFCş*.K{'r 0A+{C;O)6ٯΊlQY-TYHlCaCl{]Z-)wW@|+גR ;RN}L$1Y+rwz va&GC7nTN |"R}@VSPN)YHMqM()/h9-KjXӒ)s w'mc :k['ʤ,~m_Ffx [LNI/vBz+G}՟C\mT)dJnj u9=e ^5=eYT%~#qMe1.P)9hTDY-f|饗jP=w}]rhU:G[NY!ucJvWӘ7}xx[nќ~2w4#2t"$be8JwӕX>Q3@ `! K>e]p% =*?/,҂hFb_hp @e/ ,XiuD^>L̏c~e=Q^j rJz|5bhUURבjMaG}x:ߥGUO"LK:vo̼nX?t6m/@  χ 5왍2ȝsݚ; JNS:O ]j{,UAGw:aSskv VdS$9٫:3bozBu+gdUdf%W0hl^$.]KDJw\a٩zg"g]7.%}(I]lr߫TzDjC^7,ߙjy{{x@Be͘e]CϑLGPE/ݒ9phwй3U×hߵ^7)[bqߜcPߺz'y,L:a#"c*m %fGGdSRSE>ߥ,av5Y"(IջWSg'Se҅&rV_##L8DOtRL7_4 j/n;oʯa!, YUpn []y*.W~ ABD):+}y8e.gojS( o~sL#b(5P=@F U/q-!mmSY}b˸fV͢h"\YL F9˚U- 49f/" b@&D`iiI{oxͬR Y6.퓅e@m!wr(ѡ:"2Y}Db%Ԇ'豌J䍰 )BsF:u3&zx/ğsO:&^Ι ١xvK(~BvS|.}Zt'.MXQ e1D,Xeim"DTdkќU@0yʡR V.g'xȑ#O>$^uUN1/k,fu򵌯Yˆ(0}#g(8}ʩĠrUL`2sYQgJNc@qď~D:|: {ò>? w.-G3piR4 041f~!~!EM"SWs\U2FEԸ^]wv$ ggR D IR,@D^@rnnN)HR۷og?kM&[lrщwݳe+gf$)Qk*ڍ#534 Els;Q @ݾuڿ;֍.VZTv@  W(O.HEyLwmRq4/StY` ̈́WEG߾8b4@ 1iDoO202׭R ኈe >& pgo!?EH+ijp={5B\_̰n!!7TO؂쯩};.Ao) 7@. `縻rpwRPp1zu z  fޯi7?l@?D3#@?~^@0tT:?ENim/tgta@:0"K'G~MPb@ssQ h'(6nr0Fm|hB4 #"Z)>Q\0qhxa5H< 0 }!kو/8?ECM ;x/J  `~B~LnoQ7S'J;&$RY%@S#:imT Mִ 3SA!.qE}FB"LÓdFHʛ;0UeR\ Qs\59؂NC zFA'zdǧ0wx5t&ϣٱY=*rL=7F]9Jkl\,Fo 0? (G$~ّٜaWStpZj*SDvʲ)a9HZU-^c^Fr|Һ8Cbƣ.M9ֳs!e·iȭ@2 T*}{iiIWL&l244]]l醁hBFh(zzzesO8hU>х<0!?˓65˽ob?% Jhׁ@@dhn+@ @$Eƒ̺BСCue/@ Pm8Vnh@ Pl@ @9hae IDAT 槗eHDeoDҦVy @T`~esn+m`jCK@ gwCx[r>mo.@nV(0@YPuY ȈTy9T[ #:nf ֨b9^F@[PͣYG |e~Wf+hGR:_7nnW3[FP9k R=T&Zo_tLTkfbW\Xo:ŀ-Lg6v*b#;h`e _Z> rʥ'_=El_(4P'*(ݔR,,vRoyjvmz%?B2?΍xL˺zh;b^^~onjnmM:]w}Gc׾VuiTo\m{݁To_=VZN ٥ i i kKrTaD۳;ˑw~}y_&y y8W*l#c"b|T!aO+uunVdGŋ/_/NLCi~G\4NuŚRQZݸuwx1?Wa5aY/y7搅}\#6np/Tȧ\^/Gxeaǵ/S^ pr*M-lj0۫$?852\[~mu<a(mH9\rFuD((^~QUU=Fپ1?P;dK# =Eh&R"uevllVT9[/oVmDhTDhk zaQ$\蔷6.zƖyYylR׮Tkǰ(T,gdPpC\xAϖwBZۊ:ᬑruܬ yOG@(RYkf62+ /F[iJ9FBDۗK_~9#%" Kx" rE `S1>(+:@xظy/+'r/Ύy94!'^cD]lkP-RC3C,1%,dr6U۔!kJX_UY7]4-9>Rfߔ/ŋ q%Zmp|1 SpɁ,v>d$8_[)DB$.OG'yCtwݳe [o.-=D9y~s< ͦW/ UEꫯ>W*}3JLt.OcZ 7lB>msKK fɏ:?Q5B@`Tzqax 2. d%ђLhmYڒliD2\!q1~uUo"`p ?db19kI 8@C G/Ǡ)U<F Xa>[[ˍm]!Z[űǫqC@ HH~"#|n&e" P_:t @ b~Խ+JfDȯwՕ@ @ 5C1?ǟ~JEsJc"c:G&Agk5iL#SKLc @'чB}hf\r~AOݽ=%[yDŽ5S]Y`ej]rmqE5ʸkҊ< @Pa+yHrJ!I&~}qe@٦Zʅ΍J* @4!z: &MG)]ͧ`X%[ɓyZeuEf .XF_Thז͙z筛;e̕ V%!ib3י[Ff1n5@Z@!~n"ꥋeX<5f"#3'{kxZlc%I$Ak8M },7!y\ uk4^Ilx:;CQ5BaFtF, P05pTm@, 2۵8~\!L5-$`b2VR;cS}s"5ޞ=2<4S/7sg{p3WͰ5u u::$ b3|_s.Jmۧf[@Um@2 dԏߌ-/〃Yot"zg]ݽEMBT!Rz i*<=W-*d]"(\sX3Y ^J[mϠYΑmyÕy6SgJv ўYXSut L DlvȠSd-t8qK1B+j}s&VDɛ@&&&HIUvێrʃ]nlK3E^+*=B@N: )[88uY@ P34N̯f !:rG( =^wZ1ҏ! E,yN-Wr@ PV/k-P췺=]crx(}ƌ)au[9:GD9Z@q:SaXY Џ, T*};N:7<4Gq[s=oaT ` pm^sU4$SSS===2ѹru‚D P-[,--i_ZZZ[w @<Gh@ @#e~dX @ F gGZP @ ߄u TSa6X^,/Tч&~pn_ũ%r1N.VMQW 6=@@@=чQwAD{"Њsކ\Qbh@ hp̏i?]vi_1X6m۞іYvb1@ QewvDnߣ^$~)&76O Kc@ Pk$cozѾ#>Z/1sM[bfx#~2?T] L8)2׍.[;(iE:Ot<N1A @3mFkiC[UŎJN==yÆ __l[9>評~ۼRabmrVHg2an#ZPBU235_jɗjz@$łKoI~-ejر}{߉'"6u>Q"ٹ\.D,D)ַam^4zje}t&18 =vnaN3t Er{I{\䬘 MF9j &(f8".k9 @n>.Gu @]"S Q/2KFVuy|/=d 5F1nk+>K(rdXz]2?BPr&ZgrCę@-kVqL.0N Z#YFu*r+UT;pICU ieէN^k3<906c\ @ ZdV vH&$9~K/q~E5&E@i#cA c3٥ *Ol*8c8~L>b6p)ՖRdǓs@ PvTTL9_EdȔW[WC @Sw?h~mguDJ^gE mu vf.׼R*U?N <0Pғ:*q%@|!e̪3fT]w` @ eӒFh5 }$X-gɣ44P!@٩6,ǻ|Wf5UV}`]"5zc` |sejV @G xh_mo~ Asשɨ-'zjr++ UNFT_˂7R_R9d@ PGy#?bL Ӵ°by|Ӽ;F9.PY5EoZ(@J!`~5#w׾Mo*Α!EUJ Kd_v-!W[c=﫚W r oOfrCv#lQ1e+"%CvmsDJBfDe@ kɃK#Ӵ*<RBt E)y!F8n#s~Cffx\>,r̐_rZ6=F@C ؃ 0$#c:{'fEi;C @Gefk (xY{@_%j*TOk6wdkzd_Ӌ)ìyHY/Ing Q=!$xmLғ̮d}.OQzM>x>'H@ѭ]O|bqx㍶~Jטpp?>!Y;Q'y5 ׌F@$#5Uд3ޝSS|KϛC; 19FiS+;_݃@ P2eA@N芲@ %@E g-#+@!kOb @ Ak"20VڝٸYtTQfyS1ju:0EG&UzTX};c~bsx_$[$p(z~EVzmUGF _sKLoW﯉Vml{@47#x1| Ǥι1|jpGt2[3w(V @B4=wRN{7_rG+>.өvllU @ GTq8scp1"viO d;۩>A_ZН--`@R#@Vhn[_17[vY k7} IDAT]# យ-YfO~;UA}>V3=. :@ P!rvokd' bn )54"f}U.ZɆe4?m6zsT @"1?uʆEԸ?ouҙy7;66eM%Mjecn?D&{Qtl{5}Vj/;sGΆݼY ȃru9] kθ3q=4g9@LSS9rVoOi䬄`5#  _5F]UF@2>'rF{9׭VʟM|}!_E m m`sKL3w0 MӇƻ}ԘN}3 Fwpa0}L[LJ;ךa茂@ Gdb%!'DD4^wmRa݅nE( Q9o"8GPIvX(is}Br)1Pj_9eֶH@B jlnGhhG/|@ɼ9^lFXVQ D# "  @QTUkFe@^,q?h[ۙvQkP!ϡ brxxRBRi;…Sa0*%pQ82l$ $ @5˝WSK/Uc=6}+_Y!P[,r.:'S?5|=1(%(5ENj:k^?*$ʃ$Ke uvSlL.CjIyL0pG`Sv'~RϔX",lǐE Jo~ws̏&ɛoyhh(~ 2{^xᤓN:昕S-ԟs~??,zj8&J1@ jou6Y!Wiu3询y|U`,$ T/0J&FN|`\O/GK?j+Cm?>w~ާ|ïB%>G<,Y` {y,vo|O]ЩS͹5wK`P= p`#(Mke7 x聫Ķ %ޖݟj,.❿sʈ>СweEP@2!~b^ k%Oߵ*1yJO{ ̜yU]D'TT{M/ @'_4- ]L\4Ƒ @8_5D{C'y> $>15Z%^캘~-OUivM8/Xk7=FXo€$#]e(T@WL%XwZ.v@ T4)]W~A<E^׭w.??n/~=~JvW>z7< jL,m7dc=q,,ŢdP Bh jnzOfd\fn?_E {,~_X3U 92eU6wFͅ@3_2 \.m[9>Q?њ:al̑rY8ݧYق:Xغ}YlbNMޠ@yh:J,bu1>ȐrUE3SəHr/ؚ;k>[3Sڢ<$̓J:|VlBL{ mbQջf}2ct{T A-߿1e=`G~)*pH[5o7'R4O]GȺz|73572͜Ib*)V9ŢSGqڹH@&CR't?tiBW+PP[0&S)dHEs_ݱ}}b\Dd/"ɀUFGpX %f37pۖE @4<M'-ks*qmguC]v|gH^FЉaѓ),ѭ9X@3~·,rf5ǨWV/3 ;8eM-b e/I[( 38@&A1&pXG6܎bu@*#Ot Ksҹ<&dYPS"v؎; hX} F ᲟnV4һʣ%]<]n$1e> A (TzjXiG%bo?CU+B @8fx4"5y~|q%l]318(蜊ąJ=1[C.l^OnOx02kcj.k[e[a8XN,'T -2m/ökR-6 _prnd2R=jY i^YjY#a:UB'vj84M1΁@LىĀ@ mp\~rgDo%{ocs8㊻Vv{U[ M2?;5LdFҾ"'{x85a`B|*\ͅ<@ Vvb~|F ݃w}VyB^^iäPaJB4(  @ϿʱVbu'}XmUpߨ擔pA0Q ĀZK\a%ۖaWYw!  f0n<(Pi`K;wh;eeSY]\;p&o~\%ȅ\mZb]u0 &` 3D=zt@ y5gH=4$Gqi8'5p Bn]#6S?'[W4p)tɗ#Ut.xR6[%(+UnX.-EW 6L+sٸZ#U  c^(M-I5Ӵ}q8&ٖ-'XS ֮(X@ lS yclFb P~(`4:%VUt,XZ2rI`͠b\N˥Z&U9r+J/b@ IrVr6㫃$Ep73\U1bk%dh>(yxX8,މY9_V-MzC| 8E3g)0sKж]2"(R@hΧOUJ `sPa!|筪uyX=1>"hqgǼܚE.8mJ.6>U蠤=#X&{' U(%|q9;׭~eDN+:Nw VERH@A@?o*ھ}0禛n{t@ r!pm^sU4SSS===2ѹ5<1.waQho Cj٩'ߛ[lYZZ~Oڏ(:уFS@]4W_JYgiQVC Q+ h 8 cTV5#s f`chZ:Ryj؀Z@N^O<ǣ5V)"Fsc˄9 ~_&4  Eۧ]Յcjl(ytڤ@&ipv-6as}Fb E o8@Tkt}ۓ`VHܭKc}mr aTV0{1"!p&І i9{xf&-RVj^I <; {k;y b{oWudp>POKd!ʴ.{(Dn>\9$H&ѽI㸈&O$#r0֜\jU:[SBs=A#0j#$%}ߵ޳g͌>w&z׻~kk>bud(W㏩N4iǷQ[(Ecж_t85o?M/Nv*}>a0  Hё3~R'<:˯ oǞ}VuI*"Tb5]\sޓOn6"(R T%36QouܓOnѡ m .ѡoX}-A\RB*#:OU8:I 60.,H<ܮT$ es&N @@@\E~tQ?\8-Gqj OB T u,\ϐUbņ/}yzLDmX"xU#`Uyw%ߖ'N {_Do    P=d{A@@`qTc'`h>5\XhQD0@`#5?R046ʯ`    P%^ōݩ*s @@@* nGkަ#4]#<8S     PnW@9&g*E~rP     tx£m]But5)P@geւL',|K le3c㔐 ŒZ75iܰR$2Pu^hL0Ē.yJ@QofUhyl&1*E5L 5EI#ؚLOeI ˼16>XX0v(?9 DDJhobw3JIe8,ebZ<{   %P/592=lccB ɹ#IDQHI^1<E lo5nP9ý/<-?AuA5(km m(:I4~}HO#V~GQԭJ^{;5rT܏|՝ua^'   E<{pne4F   U-n Udb(    I.@P@@@@'\ "WA'(?K~4뻹yB 0U/ŵ*7jT/W~9d"Gc,樶~s\V)&A@@@@#PʏH& N@ T"V~3Gҹzy~m:oA qx0)P MЈդ+r'nj&W؂)Ϭt2ʤjԞqJm1&EnG"M!+TFbe'b"©!˶z͉X5%Qt~ꂈMH dQ+IOu Y1l5d^:>ծY:A@@@@zgȼ aHBm93Bzh;IÎ _s>̻RݭB>*.P13=)d'D.[*%Pʏsq>7Kf:X|-a}&By1+    AZUB^' /}wSaSDJ%W@@@@Lʕ\j7!Z'8gzSK$@@@_L5    Puy[:(r"_9|[ =r"WN_A@@@`)BmA@@@@lWX *W~nil U8Z[ry^Wv!yOEZ 'Pʏf7dQۢn1y'wD+NVsgSNWxoHrW&g!.S)-JA4=͘ʀQψӹ>< s gjF@KS4_:/)<K)zDMIx\u"*'Kj[a1mV%3UtvZQ&`^!KOelMrDQnʵ<Ӷ4J   Io)ΊO?b2'YJ[#cf)Sq#(?G,ޅ#2b+NH$~PײnŴHK.,9 Xe"g+5}T/ |JlB_0(ett-VXT[uѣIF8ߔ11ʺ1'uNSlpCY:j? jٞ5v]':Z:TޒiuGZ EHCZTFPǜM2ru 9&1~ TbyBF3CϢl(   +Mem# - ~\߈ɄXXfzL#M!:᨞LQH.Ⱦ8nW@@@@dUXMj4~!Z.ѡe{Kd2ܮ((dζk* k]Ht(5>KP4WuW=aɳF˪C_7"Tlrn:XӀ!d    i    V2_4 XP~]/@b(U.@@@@|1 p@@@VAwy+ >gVz ]>J}]Q@@@`Tc]{Gh+:x;j'rނ2޽}]Dv- ʷ X592[UMn- (Ӭ)-3LF=ZڡM\V7<8]ĭ` X aU@@@*@u+?HSaVS!IL,T8K)z@萴T{\b,GVz%J%P/=cQ)h{LD:TONkZMz.QGqvJt<$CIz5 "P/I#m2IDV&%[Ҹ/_n'8FyAa+™ZRg03Ve^_ޘzܹ{Ţȱ [+TJ'PʏrCr%Ehkt( "e E{B]^1\GESWA-J+@:޿}H(+k׮^tGZw\"ww7.:     {x-c~p @@@*_e'F    T(ʚO@@@ @,P~5 sg+    PY*k>1p'P/;m[&n<8#K7wWTk]R2Pb @e(?T$2iٜ65N ҥTwk26վ9594N1IdL-` A@@@`% ZrsssE?cGTNH'c1Moi Y@@@@<Z>|Űl RZՙDon3\[UA%uU~&E:2m,=WYkc\ ZpZZZ:t"m%Ǖ92&:8okH S*%IFOu,LѦCc2cܘa1U/$SzLbUs,,d A@@@t~W~6mڶmہ2LE{jk>`8#Z6%њLOeD)T[^͂_T]`O_I‚P@@@J'wG#ڸq;FFFΞ=[`Z엒^sҩB2HNa?]Fש @@@@w@9sftt?Lz`%>+"!6 G*=T42Xe    D~W~N:xCo$f *2a5.9hgW`\4hʭ0y|kllܲeˆ 32'k:?7Q    P*(R>+(r9    +@+י    P*(R>+P~rw[idoXP~ d%[tO1@KsssMtLiP@@@ÇO>]LƓl13,zTSyP9tw1MR*_+?tKKˡCNQ#+('P]ѣGi%|=[Ejn;SFkyմykQ^   kCʯq˖-6lX6@@@*_$, *zUGV :&WӋnLFΡ*s1* jZ p@@@9K*C9~cf9hA>Fր,e    P*CE"MzS9o-&"a޲j&2*)7a l @@@ Z鹹"g(cGLQx2sxװFPaJ _:򛝝=|ӧ2nf2^aү#\V~СC'O,y=Gf6    ]mڴi۶md2,ڛPh_O+(*X@@@@,  _uwG7nܸcǎg@N[Z엒h|Bf@*   eJx_19sfttp5N!Rݡxx"[D,/ wّg1SN82q& n7߿߾}RvGZw\ oMMmF ߥA5'ww]]]up@@@@nozcɹ .#iG֯__g|[lٰao    gJ)}"axXw7cePO`M3ƥZ[%idPK;@&E:r6RZ5I\:S9r$ycs6T:_+?rС'OX|^9=4Tw(f)m%YX#'92&(FkscUMvb"DtdZfa|~Ny_.蒧5JAɋ}奴FkG'@۴iӶm8d<'Xԟ{!&LOXXz"2-L¯CJ?~܄.%[sKpsCY&ec#}g}ں\[2r5-GDý#/ @#7nܱcٳg suDܵ=d¯-JS] ~Z";,԰vbY&;ID0lT 2P~gΜlhh(<+Ҷ*-K*'_W? )8,('y ;5}(Fctom @Y;uo y?"gcyA&!~ۋ\K&X%CʧE_Q8~up'ګ95b~ {͒;*'T('zsGpvÏ:KJޚnKkN No7ǻ*"0<|%LZj< R s8w q Bq\D0[S`,TҚxHU6(/2񵴴:tɓ*Ebl;OpxX%- Œ)UKdaC'D\E(HMщX:>!:S)ir/5u (7~W~6mڶmہ2dί 3ӓDo+sh2ڮKlHT0ug2=ԍR}{9I0qE    |h7nܱcٳg <WڋMLR`of|dPDA 1vVte x(w̙Άk3Gґ}.)/֒X:H̹V35'm)j9gJz׭rDO8A;uo s?xNEkƅSWMhպDS5cEfLeP&!eARPL5%itkظe˖ 6,eh     $_$<,[qT9 AU=T(*l @@@ @U T(*l @@@ @U TJR~3r:g`9 ^Ejbթ0g ]JQ~BS}zjy #r+"'UD3*DF:ILK4Cm1bRLkjhi]   P|\g쐾E_*a19\T:Ҥ[C[~X   J|fgg>|0fcR3sI&E:ҳ SZ& *4mx2G"vixt+p[y糗֞@@@ ZC:aK١" mώۆLN> .@@@ߕƍw122rY uDKeVPâ΍.eWśN851e$3 C    @@9sftte>a IDATe8Eyô3,)/ZxgjLL"b cO:tqRKUՇԵ<-R\鶞5cG& jT+SNozGZw\ oMMmF ߥYT_ 2<=.:     ^cb200{K.0P~[lٰa}0_/$ }+zN"yake|uA|"l !׽Jˀ_f(X Z.8JtWV ZGT3FS~T|C̯&p?^Y gA@@`?W5i_I_gzƒ*@yU(c*gzK+Ky^zyΏe8bX" jFqї=m9EjdZgWY sk;+2&P*)z7/۫s.T}l6*138=t.*%ӝr~%+&:0\M޾&S(;{g:?*σܜՙ.}[8WU n5F+Xƥ>}tK"|$kqN85q;x(@_E@FښSZ#eT1L;OdsZ<8`б[!86F!@S~>}KKˡCN8Ett[Bʧ3_Oϖ}{?ε6jw?B<|FkZsU9TM h;]$?Y?9z({{[~I~qWchh(+K%0Zy9#fϕw9Y՗P6c{zA*+޲98]jŇ/vVϼyûu zٯ_}\qd35hYUVY0ɊSO:sMURu-xaF+_ȱ/Gpr)̓ⱛؽ\6g5@@` (7/!O}?/Q%kwq[sOZޭm-5^wI#H ugxc]s,/mf_vKn8uvXRYS:ߓ[1!9WE%_tg$C/UO/2:f]k nNڎ\s*2ȳ_sDl`f>p\XCJ]4.-u) G$ٰaÚ֎LjgBKm'Y]=7jl((S}Yz{m IOJ:uXjX)'"RB3ƻܹNzc}RBRf~fbrJ픯SȇVBkwsZ篕L9AnTb?mܻp)-=:on0NFdx\ߏpU| ro{0+W#{yKb\y5o~txU ~g{wz۽TU| K.   P<=Qڞo}k_Q4//o}o!@@@@Hё/6lΟ;w)}J"Ʉs    I@s~ix՜{ _p_a|.?OOk~Hr4fygZfy7}l/mԲoX6Ks:őes aόJQ@|D@ɹ_xBKte:"\,z]o'üYdNrIj DFACv/Z-ݴ-E&S.,B^w m w-A@@ֈi9:2>TRCJdaaa~aŋƇJX#?sݦ鹹b܈&#eUa1vĈObkt;FJXSxx"'C0@@@@&.>jh^?O NFVlvvçO.kgcUL%USo ⁽^O8wlХ_.%yd֚i `U#cX{|.22\7șDSnk~hId'(jd7b4wr켽9,`A@@V3Z^UW]%D!Ǩp폖C<{ ͧ`O_8-ym:_Mݬ*ϥDGoznT"M!YK&/m'Nǧy&bi-\mi8=nIL FsA;6w,4   MAq7@"/5>*9iӦm۶8p )..*bxW>RE.`׃>)ڱK{WۉįX i^rèAѳgЄpraqߝ&>QbgL36]:wh6bp b/XNUGwBpLnE4&VlӝIAt[2F>}{ k9^v` Do&U/l`d&җm\Y鰫*˙ݬ6|5Wl:q,T67:#7M؝=o7;{U!;rkk)/c^ѝ9p"c&Mߚuk,<?8۠>>8lذ'5"p{y!؟|y2?~)sBx[6ڇ+lk[F_:zX^b)w1"gmU!|s ;*T~LLYt<έtDosS)s8ٯG?ӧ;j(0;NfE%ug)Nj}oOxYO*'hȯzh| lL>_ArRJ>tr |w0 EK2L=a6/uwV^$o斥a6_ e!hjS]4baxjkyI`1b{['WqQ^OFXR{8>=‘g7_ ٵ$~\x[~/0Y6:莬Dm_ܝ<ƧH9Kn?OK;?>G>8 ӱЁvoH̻Y,|[۾cxKm8v5Q;(,HΡZ@4a:pN^*ɱԈZwß>fYh2&S?8uti''PR[UB|p5eG;uɍͬ:q,t$ ʑyCpt˷"Tz1dtbm:6.X M0Kh$9Q?/ʿS?pP%r'_~ѽ? ǻeO<=ݿk=upޝ(ov:So+TAV}L}¼be0=;lhYUߟuL3  *DLaLH@xi=W-}2J-=<*upW`WK[u ﴕ[ō   +Bu\d}|kjneAN;0     bHO>+;:PW{e]w:VXYX]qԍR~$zߺwFTRne݁u#@bwF:l}zw۸P~Ezr"kZu:Q`y~ WyB wù.++1EgϞl~:"20fJlhhyػ(f{C(.˻T/˝/rgvJ+6Nd7|9 _݈E3tRy[V(Xi$ :"G]V~ڭoh.PԂ֭+vE9oP$ia IDAT4QnI1Uwohǩ1 kV3U@@V=n}AZWߧH׽:G $(3??E*ըł%ȥi0EdS1 }[&%9544K.)gXeuu+6Gx~.w+}5o1~*/~G?])$I0>ѦO~_|o=\ToūkI}cG$1-@@ͯv\শ6^6lEɾ𤞥p_+?ү7pCss~dE-͝ sCy%X[#'"cPy\w`Hn?%͛7| L8\p?.|{F[d4U#e{W?noS]88=;sϯNGk =|χ=`%eP~[;8' 8sWBJesiͽE[Y6kq|P  kK`m#Y O8_ʣ.mLQbSoA,xyua+y    @/֭aWWcBMMTfEC @oݺ܇ /$ kR8@@@@ʜ@maWV~$Iq&_M )2.*&el/l}8Hqʯ @@@ qYM%4*z>]j /?Ty4l_ 㽈UۭTy1-㯬T5@xTc@   ߿_?|eQaW_}Ν;=Ő=%Y6X$H^ŌI!}W\~嫮jy,SNҸG_0dG,U=Fh<(V~FO;ѧoA@@` Μ>+Z5}{900FʽgY)?">ڇG+XP  P.^HDϝ;W1cЈh\n#ȔQyYc~ơ >>;'T:TĴBZp8rtYQ[GFH9W!H_%cu ُ>)?J˛ TȠj*e:?Sfn  CJ?7'@ƷW~!e@Y0j`SɕrE-5}GϬ1#X!?SpZ/oԾ~/m+=SN5ӧOl;bk/l3_͞4 =KEJ%,R'}u_ oNu_ _HG~T?K]ȾhtG6W^_wSn}g)}yz<%/+\_Wvh8H_1P@@&X㕟> I?|g^Oџ+5JNW5dDJxxe_4@:.r4~fRH KcXDeENI \'&yJg޺TK.׿^qϝP3JE43__5wQS_?u߯\̽Fa,f:W^MF9~R#mϼ7 پT}y}d'5??.+2d3?4g"puqȑ~J#އ#YC! t'#0U= >s̏B 0/?|,@@:-_ty̫o"?vb 4,f p0(U #C 7M#Wi'~59'^xF  Fo_ss4`$G]9k>wYw+C# #OǞI*(f:(Gj\ mJj A@@ h+Pwnio~Tc?|pt]?m}*lr(Şk2/f4MܨrrZ9grdl(?ISg`Em!yυ6摾ve5B›ˏz =#G֜jʯT  P7o {w~q׳Zgw}!?&.c{wpزТ‰i'f~~8uԭh57Eo}=z7q<G+'9cB ?фd-1"HcܫGiz1$%i/oebG#7Y5~n$ wF>־Yk; uޮx7\ܸc\mT禛Hvʦzk㵽O~=<7n~k7s5(} A4~7D;u^zar¼H^}," 4}|lnݨ~~ߪ X g}^sSwL{ys?)@9d!LˎQ8l+̳A5:dxA,|W6~.\RT|%J}ʥ%:Sds yA$ ñT_ϿTWpȖ {򫑎1{WS g@@@` ,;`er٘c/?~ C^l_9c/u,T^sO NQaK5ޚZ}$lvV@Y@@ xJ6\31.:#Gqf+B~p @@@ʑhQI=V~BBo@@@@I=sP~4 0MW8    P8Go&GV1(NuH)?bWZ:`    P8wI!7_& J"o~?CZC[~}hoS~vO:A~ XA'gF\]P'WڶRXsIzBEM[GKz5mLRGۓՓ+*MJG-|v͛6&vjH2?La/̔(ڃKmj"H|($}.IҾH9%+j"`.s}9snmeRf 6S%yc)K.#=j,Cw\eޓݙE]w6ݓ>UD<\m~AMM-7lb|,j([GY;cIeWc@\Qd[5+3ouiJ]/j' I r'S՝K7V\asz;!U) P5CNRTR̓.)=cIAQSKAmslcƤPi@0$2%mA:HIWI('@*y:~QvRǡaFeuAWs@=ԗ&B}G{ jji^\jIc *pI?&E yXiA?^PBL@݇گϥB1 o3n8QlшQgCs,%f%u=ܴ{N ;2|opdUVcBߘ*]ʪTEk$jiV>p6աW>VQRCq1'K -.tEm_^;]tSw#-.ФbE…fU nYWe n!*}IR+f}  ]м`D]=|$Ֆ#dM^ qZh\XqjR=U[v*(dfvI" )dL,֘6)G*f!JPEdVFg%DVj$")K:$Yc kbEj YyG1˓bruNڝbϰ~pqv?UIC+hsy+,~3MdYNTMU-W)L}0?Ԭ*OH>frա~F-D)b-LJC׺*O<،6.ҋ$]?b50smS{rUU&iշ$F Xw1ݸB:iiՑawZ Фk Eu*W?U+UBңW_{Gn#k޾yt?=-a;RƠb>1O1}0rL :]ve_#{{DfJѺ2Նy'$*M 'oC_ޚR LR2N ԖȪITQ ǝdˉnX._R_%>xn]n/"N_6$1_Ǒ7u#ǔ_oT~)9[_OIFMV*1C5 Rhkj)2ELV}̋u45Tg!PC(>1X!y^Y^B͒^j'2ȇn/*V:~zw2OO ?莨'NBn>j_M.ђb, i()LN!P=?+{Ꟗ1ip*U\;ݤcs{5G蛣M%׭& fƍa5[Fbjpy ٷwޏƯ~f_ 77Sc)=~RYnxhCZs]4_C8) YѰg +9ԐNUkq";.?ˈ:QA1Cz CefCSO]yh~Ȥf8'ɐsBL 4U+`_Z+?7@"!@ LΙ3gfgy^9$O?=}a{ݿEEA @2p 7E"N֑':YF*K&ƏI"\I F0^"Ψ) gfeI\֑%SVʕBp.H܊D>ؙ3$ڳp.V;ve$?_vH>ao /Btv 8q---|iXuƜYit gBPϢ 2}8>]/5MɅɕ@h1|29;tPh &%HtӺ/g}vqk .pvˆ[.ȅKDr|< H<"m2{<ȼ9Qvvr晍<·yn=~l}Q# תAkhhoqG}ʲ#((?N$QB^h0t 8?(HѣG]PT:?Y$HBL(s+ _]=3-gFNni7rʱ+%aoYvv~>Ć,?A.$rɍ9IH#KB״3̱ g9v ^FPz-,{ Bt.b/>NzU>4ti̯ߠ1?:v޵cg=xȎge[?S{푞1ٻnr{B[.| ڻ.c@kv鲰V-8^.c>c{۵k%e?tȆ&'p8&R*>;{e+fg%e?ȶ_6WHx=+[>u9K@G3CAV+~<cFS qu Bu 38xɝƉm}ח`ϊ)RhF{6_y͜}zU!7kF!`+;Kƌ++)OHJӤqMlݧ*ARAeeoQyB>nTcL'BpJJ!ָ|5V,"NpEJTE+ SpcH؞;q%rrq`̧OebV6{njJr_20fyƠAhyef(^Fl(11) rw3eEV ;2GYY$2H0e8v$< ]飇 ?g78lWA? pp'iEZfsc;1ug G`v{G'NiU>xM+_wEuu|wi֡cM?k: څc5S M齕eejѳJ~o_; =}4黰1Yi\ٷKLi}3zżwg5Ί6jۯ]`K+M/#V}^q{tu ߚܻa6=2 V[Jښ_ x"׽]0-csY.6,bة({ک'H|+QPxÄ~nA8d"A(cǎBW= Pt~0ǠӪ7.Dq PQZ@tl#G7m6PzQ \k:3jafobeY۾=w܏*tuŘjOZ:lyq[ +(f^qS7XBX%"|K)a x7nVW.@{#*'[[c}zV9G &F${-w3\r#36'N21U(sfSP_fU_?*CO$t5{~ ~QVkF|'z.kŷO*ʣpwx僥+&wE1hƉ`W+1n@+ ٳ'*&|f!xO 5g#[=lœƟ@ܻ~ެy# |o‚Z4sv"Z~KpQde7p)bH]Zze7GR69s_spΟ RC+9RK/+@G9>hb87+xg^sػ}CӴVV=a0;QZzG&S{]o0kWZZB*tF/~s~Ywq;FQOVM{{ljx^Ag_r3`gݭ]8/j`MؾuA /6R0 zbSε]pzǪ j0XB @ м<9*YFʱ k[8}_ء戉,r^ A<1srr֭[=zI9%t:5n۶mGYSN]hrqÆ Kƍa=Cƾ=ٜ?j47j*.&h+&375I3[eI<5iNY)W dcƛF7N8;]^nqpN߾};( nJ (0ׯ͵oonaoy~|ҸgN59_~" %J!E`SϚBzOxV{^1b|nϗZ]=lCf KeR\2,' (RjH&;>`(v>0]}I*(pp 1ǃQ$ :I8@K_QP6RI(Q h66X5NfUzBD; CNd )7 "S d[n} d&~9_`q]bp [+l'Z7C`Gސ0+/K4l!i1H@Ε7 P0G0ts፪TVVFve\^(u4S`H;5Exaݼ2 0g\,s08c3?v&.QAxsvBAUp#C^=0x@+yUVI;flk24~9ORu%eF']A^Z eNf*w9GUvH4VLUp`8}`"x$+^G>b/뭘?$0e'̳`2ezHߛւʓ\pD&68\tC\Šh%h.;g>u&#Q ?v({ z  1k}[e;{e @҇}f$>S#MO0x?''v}il`N~p;܌g ) ClrAi¢8Pǥ-e#6&z+sT9Z*;|Z2B ;vcTc"tމl5M2<=;K@npd++ۡ551'|7i&AW`%I8K](`a$"oiU|dISJy>nxv ^Yef$ֽ{MIYOVݍn^% /1@ TR.1@ xeʜWH R*s)a 2@e+cO )ƀYFX {h6g @Z0@e.- {?:TlP 1@ !l>]âQ٣58K* b E_xK&1@ 92?sJTw@1@ @e0FϜ[W0*fGT@s1[T4ʔZT ]Z^Ä)+'RJ G@x rl`kZngzJ)aۈŪy.7ymmu-'c1Φ(pɯ9V!YNb <)s *#`b) 0>e["HQ@ cGi]sZdu$%0NK3p9AO^f'.s3`!׮zQtHYlQ^(D|uf\_|qBC8ΉڂdE$"2Nlk<|#z}[㳹ܼ.ʡ>旯QOȍTbP2n\5 OM ʹ𜼴.lș^HH  PX3P+S\Yi5Jr0oW% ݁H`.b(pb 7o, :;)'2ysl{lj4.2B) 8cӺ҆&J R6,̥tWxbe {Ͼx6N6 ORx1Kz]һ˜Zٛcu1^LϿyoԈbM.c]+]ks)@k3@cb ZZ;CO Ā'؄YZzM1@ X@_1m\Nգxxq _{tI )?c.25mc\B%kTc<]2]!;fbHIJ΢url飹QND>aaO"H Zt y6(+rQjڴBZpyѵ(\?6n,Vy|6WWb .)c!p7n[jFVeRZ?x[`mmi@sI(Z5`ie6Idx$@385/w|W:Yٚug?Lܖ7qYYׯ!uˊ8I Rp\EGB{TjG̶-IDATf0v;œ v̳'yMb JH)s "s4ȴՆn%0a{w00&muQͨ+?~fM[k[qcl+ZdC&QDhS1@ $pL` YY5%a\b–)ea<g z!h<>6̨pѱP0 ux\2kE@Z0O p(GQ!sjW4!,Qr^q9Q%\sb\5j8%1 xMySbHdl.](<b 07cIh9|(цb(pCh6 6 Z-7C @"hڥs͑O_02tK0ݭsdu FXX6,*,._Eܚ7|$,j֢"EUbN)6LIܶ*P~~H CԴ/sYK$l*rs/[W1ӏw @ AuGHhhDH.+/+q%"Ԅ"H0wQ¡%|oQd2{CR2Ek.8d?7>aXS O Ca F![N(\?z5qgxIu5o)U J^Fɂ+0.GYN,:IWIm7 mY_lɏ-I+s Xi 9ӋT[ +Oc][MfGrdcͷh)7=j LTЏj%!*45 aMITREIK4Eᔹ޽.X>b-LXv{xQ}x(s;9~JVM΢gGtoz)+U$HLcDִjX_:pmu@v%BrI!Jn8$Be%& !u;GIcN;uT:rÀ,,5(ˈ\ehgUju9 #; [}e[v~r}}bmƖ_d-ZO]9яI.æ1:N,dJU&ņ+c֒BZ3CAr[INn^Lb} MKq Mi6ږ!O)uh߮O;[mxǎEZ"ΫE:8)jnq2sOndNICʖ$5W/CfKJyX/-u7DoQE> -ɏ-IS Jy0rQJ|T9ܓJP򡔹:%q cJ(7aaQ2$%rP7~nF|h %e:TEh6+kԩ/F9s2fa?_b߂'0/?ws[e/;2IN $9=ɡ>䓰d8;u4c ٖ|\"Mbhm`%S2GӴ3O ^܂ bh3̵  T  ڌ*smF5"ss;E%6cϝH)7ڌP D ~Om@ Ȯ]6%Lf;1 Pˈn$Lf\&>N dT2)Ib 2ɽOJe.r#2tT2|P@Z1YM*siǔ 1@ @ba@ 2)[b C'tT2)Mb ;01 l.c'2*sӔ'1! wZ\Ei:j>Yݍ'R=IvqW_r4锗ٳCoڻw)S߂2@2IVtõ>5຀xW~xMŋv~ .P* 50x*sA#e`uN# d6O;_w7ٕ|8;;)y; ?.--bХ9)$J>^x* r ̙3PNU3LZ9A^l. d (Y^R oc$2(S8J@VÈ RڄZY_1򅆘FƯ"1\ gE|Q)8S;v̐<hii 37y;:*+ %|l^9oav 5n:H̠g"+ #-ZsHaNװgނNN[,fV4E"S /td{ VtZߨ-?>p0s B!L(\KPa Ӣ+u: `3k]R+ {i͛$cO|wk*apQ逼o@<~=$]8&4%׊J@-j4vvP p2h6 $8{#GBCvT/=^;q@{O_f^ᰛC)8:{Qg?)f"1ذnCK|l~ހVh Q2g~}[O[9w3}pR9wOy^5[TrH)!|lT٦? ®[=9X ySv)6o#:;Һ2D7*/Ə>@ѐa12GXdވ<^c6J[AM騣!hvM!FZN)9L"$/G#缅vG? g`hV&q{>#ߚ3`$i.c9Q1e(`uWyˈC^B c᭼C3V} vТ5d Xk0ú%O]usHɺe :Չ;dO^^ԍaƶ|xHϽE&on0YhL4S3l[Vz>.1!E :^R8 Ondg\6׿je6Sbb53I t`#T8'97,N2cjpg`ʎ]FeΑ"RHUp#;Uѫp;Nm20e'5/F9%ws]{ݿ!xR$eNǎ:t饗~v:%ӧdy9U30~%?]ojqT]*={\bŤIrsstRK~a \@&=|@1<@R0@e.)@@ й%1\ PK 41I91@ $;T撽1@ d@LKKK&sb ڒk>1?P(sn[J^'5=̂`/bM(c6];sj~n`wd D2 +MvvrlR 1)Rј+tYJ*^WrHBخB$r-oB5075F F1k #٥s T%6yyRc%nv.qT<> 25Usdtۀ +bH`?j>AU%Cw?IENDB`PK !0MŇTTword/media/image23.pngPNG  IHDRMbt pHYs+tIME 0'TtEXtAuthorH:tEXtDescription |hardcopy|2012/11/05 15:48:31 lim_j SGA250167 tEXtCopyright:tEXtCreation time5 tEXtSoftware]p: tEXtDisclaimertEXtWarningtEXtSourcetEXtComment̖tEXtTitle' IDATx U.\<BbB &W"P :BLF#n/@2H\BD!"c$EQ \ WH^UԩywS_R]k﬽jWM̚~w{RS`߾2,*b+m<<KRc.XHྴp_:%gנG>V,ĥ%) k zć֖A|Nk^6L} u`E#,ȯ/%Yq,0>3l2z|=HMwu2°#8bޭw~w)'} Ϳz |?RJNg" :L'M;_ID{\Gh,H2Ҕ30mR2Jڠ&e(.iCZFk:ёΈ%.t:j \*@p ?[F-N[TN{%(|8{qz8>6Ob@L;DC̠F؍Ft;Nz R[{= &*zv_wriv3̯/Sq/]ax`Ŋ( 83ig}w>e`}=RA^/G"s2`\*X|W,-͔RHK8vj:^}shBjHIgN:?ֿƭjH /VUe(s*mEUFBC̘- M\fLNb@iX2-Bo2u5 '. k{)r9o?\ >@ @( 3?W3޷;tW,}"AIK*˰4enW>#( â z\ja,.-vWR/(5z Cᬽ㌵R,Ҩ:|t~3EMFZ{A~}1҂-/-܇)*j~ ;=("PGs+ZQ:U7ጠ?pOl v~ W,[u3E6DeBLY$ԁuh/H+ּe-#.g"ۣ- ;h~u^!٘*?&.ah[+hNA} >Kʰz '鯓FFn͕5▪ 8K hkV7i2jb?>mdCۊд8ukwԝ@;m\t,@kV \ؽ{7gͿ;o_k:h~nS1 ))gWUQR/dQ 3jpM @'9e3S ۮa=Fc%mEآ꾿[mofcR64S~?B5ow+agkMthbiX?Uס3.Ӎ :ob[Ȅ_2Vmj7@V8hmR;悴}Ըm%Z#y,7=1ۼ7-z5Q4 /]#\)G絊Vt=eԂ3{w@|K,FȂKpJ0O̱ozsN|l;a צs.֯EVל)M؁+c3s;֟I~?cs뎬kTyD.sxv 8Q@6I/JS{~Z}VerYed"O Ȕ?MDPf_qlyOW=Q?d 4<\DgIsF7}X߲̙} zJU#Υ)h'`:֙_9]}m*o[ZY٭|ͥ HVoatg]Qܾ-YO%5줾9a<Ày/ho5Tk_]40u?&"䧘jkt)y%hlUFySj02Yj=Pk1vtq .탫A}_DطJ4[EM]l7 ]zvr#OcQ?kwmŸ?wPx$dBPkW/dfڠbPXV`VYʠ'2daG* ,@ ڒ[\ kqs;z8H?8MO<$ZS3c|փXz>ķaڰ>vHiNm`lRQ;6ٕNw鏯!;6{ӍsGqrm*sLHqv lW:-g{rxM^¶Bؠb޸|nzxN s[?WAZMFwo|ĜzF3A:=܆nj )b:AYO"7-%mOEdI% H^@NFjCO8K5앂 fuvc5aE:VRE$D6LGNjݚv.]+vl*`ʤO\{Đ"CGhyL&HMx_8D3q.L;6?{(5rퟲ?fOߜ1C[v3}KwSp,^jlg͟+AN&Ir3y͹c29,;LX7Di&V}wܳc떛.Y#{Rle+K=t \qg:kppƳ-:<37p% Tpqj+W,j(ᾬۗlp0::ʼAJxWy44e(:İmLud2`'A5+o zӥ j)5)_\&LȓEnTFZI 1SE/KnңO}YaI0yAuR35<]H/)olRC‚]@T[J8߷=^1 sg푟ZCsT}R3msQi,Fִu{|g߱4VI&6ڦ[nj"15%ZhCҭtf{e*4[ߒ3M4:$3rAi+>^v˰a3bĈ@mXYo0 n!M"?7tU2iy;-`2|/+kooOGhח:Ra3yٳn\K;D!3?\n >Ǽ{}E3Ls5?~ϹɳJf3Yr,4_"l^\v{gqq{iΥ?}#6Ub3~w;ߝJ7Uy ΥSe8̹ԋ*֡u01ЂAWTUf c3<*z{8wƺ7w6wЏ1}dG6mV.e9?K,a~4%O't %Ξ?&Lԙ$儣@T>te?}#5sN]3>) f򋯭؁ƺw#>/huc~Ώهwmi]s?@z& _ĩ_p+g@ǰK9`|?ڏw^q-ID)f{cc:o:gιtj#|&Qc.,(\)P?kZn㝛,б]aKZ«喯ـU[zWaA!=ݓE66Z.c[Ԣ^dpz衏?C=ꫯ"pŽ< !CJ ֋nնfYXGV_?qĉJR;۾~ 폓TIhqFzL*3rKX:QLGe`M=;2fz{}]h'E.CߢOJWEʔsVZnDPSVpMYF8Aǵ@zdHdR,PD\,yateb{ KϼJ;tf:::RG;tj:mɸ"A4E\aгuVLsHclA Rɰ_ٰΚRgD|`v%.^`p hHB] ElnCМ@`pʒA6acN&r3 `( /PJ:m΢YA|@K4g+%4 !+H6LW$8<]Xی~G@۱[AmbFf(P&NP{s*S7w沝f\2SWdzI}O/(U#-3g"m+s~&$RcQo ,qvX8fcp_0HWLe&2O0}dq UZOGc>[KIUySn.!s+ ;P0W۵f7AXc#A5 31/2L~@F-SnyۀJ fz]L ,7B&ty#}J< d/Ź\_bB_ֲYOYZn-Ya|=b#T0ԓQC7<1faE"X(ʞJRFNZ%Qr`|= "|bcIˣzܧAiKN_l$oe5"G 򙖌isK[5ƉzsC6E? m[$xAȮ\&i4d3d'w0>Dk:kD+T۳2̜ү"@@"=ی ^%3Gy˃Oӭ{EPDc:sFP:.%[z~G?f@7_^w\2LdcyE)$Չ."PN /wuu'E߀?},w>z q~=LJ>F!n{gTwJ%wټ9!;g}۝]q;n{m>उo>BBZ.1{72v9lQ=|^l[|Ck:E W.> +0/Ȍ Ihѩ{o$-o3]\䱋@F$$!&cbdMQ;ŔUbǺ^r(P@8gL4@[ A@kW} 9YuٲK&ۖϿ_%r%e<0#:[U.sͷQ9n_\4ȹ8-t[<(ՌKGfX}݇.uOxyR%] Kl^|֤Ixz:yqbJ͎-4Ø$xbE(g2hEpsص2m{fܙ4k϶uw;g6`EG74ˤ.%u6bOTw_z9kQmշ#X4џ9>.TvqU-j ÄgQV݅VƘH`$N7Ӊ@M-[miW '"!(GOٰ+Q /|1 ɿD,j̓=N /lU}`CRmwIW$V~=HB@Fd1뮻Z)guW|[=֝lѲS#/؋C8YJa)` +>m_-HE8bZV€ Y*g/-4͊>i`Uē5#w׏7nĉǏ?[/[>=|:Ve?~ā IDAT2M`NM+Ë/2#$tt&c4f%R7 QL Jg-oPhuVcL !yT~oΣ:jʔ)pp„ >*ix'4 $rJq*8Y}D9']?ƿqq4^nEnXʀ*_ŭY80iFGDRL3t{꩷)Z ew㫼!!3Ϲ仰Y#y]ved-h"@Hx.í\~t9eIw *c]ѣݛ<&>NA@_V?fNw3Ief0k=6嗣әJhI::;~O5Ӄ`9_0LgALޗ)d:c%}QD82ॺ:}iH!M;3lD1#;e\L'D 8Dx&L$3 [%Du Jq-Wp=I5K9[OF# cә;`9+'{BO<"@@[ ] 0×)[* m[xM'H:iIC(0yW/U'D]GuB^Vm29wA@[ :AAl̈́V\ 퀀ff0A./S9)?!oڡ J|}tt51VLfυ"6> |^uv:"@@{ d[^yEsg93=@.DvA@}*%߮4gNrvrA"L*-($ Bh+)MT@yy<\2s[yLgH<JO. cZgə  Dvbv3̅"N\3.=Lj*ȅ"оܥXtb?}bo3"8[>wzB=L>t!}e9AU"@}m0:L"2vF@f 3]81oD$M^c"@}.D! Ǚ Wt$7#%%",}^_jd#P2GKvcD AJ/'.MPD ܧ3[ 6H>KK^D  }&D(ˠݫ""Pri?6 "@@3}$D D p/ L">o"}IeH@- W{m"6DV}jon*#D(Jk.)"@@(>vP$@'i/KfD MBG"@qCv{vDq_;*}"DA\*y"@F }CZOr_u8QB K{yGo @v.> "@%Ar_j"` 1"D"7'!g"0{ё0. m@8+§G@R(r/m~$"r/O@ב`4: IA@A_Rj~"!m$"@Kbg"@}lD9z6uG@$HXH@[!}mUt8GD "lGkڥDT?>ʫL"@PGqPAO@<U X+~7+"PFemxQ@ ˅Ct:ik5G`"H ˗*ߍ1bرcƌ9餓YHR MCCp]tw9jԨqa{G kVMS,"/>#G?~Sk}lfD ;`\Qi!m*N;pJ&ӦMcXǐh>М>( mTr_#1/ D @|P =fVr_3khHSlDmd^r_$,L$D`|?>F fDD"k׮S-ٳlx& &D 9޽O/r?7(4ue"0T0roS_uID`H  zD oIU倇|b "~DF6;X#%j/pZ ân؁q"Ђ.D75>s]w1kG@ 馛1ZĪOXt>" "@ZLww7c}J|/e0{`2k._^ZkذaaL!D]YU >\:&DGc}wԩ{36`)3<+ߨC"B@4YHπu}(L@___eSd"n,⳰뭏j- \:ꨁ`#a" (OԀE,lCK9" "@ QT}uDv԰M"p{K} M'f9T? K̼}WmLZAda)8^)% x"*y_˥_=j#0/ D}93ZhCcJDk"0T1V "@@#q_h=}W'G"@Zr_ -"Dp/M7%"@b~eaDA %,E ܵ r_؜[N-)<>')şTƪRG)S<h3*sYLvyQW;o6!D d?'A 1a-L׺=3.6 ɻhpszMM3iXY)ܲDT3yK%eL~cFJ.UmM=6{'5 6]va,,.[,Iܸhڽ?,;8KݡM[ԲnˠiIZ8 R.Ftt)A}s߸gbCC+$W Tƛ|VSsD Yjk?kkΖmo4&>mtlzlg3 gAWP]bu[\dKC3xTÒU( C Zz,6ԫ,3?{DwOܲtr*:sSNPwD s!ءRňR܇0U|+8qngQQ8 R~5'T{MN1]ئ'~t呂4":/DYOK4 @pĴ C"F>TsMqE1s:r,A:^G8ek 2@D E.|lJ03Fu*TwÌ. e  m@[bE>/~/n  F`ҥ_җqx_D8 G@^#67j"@?1Ċ`D 4\k-#Dԃ@q._=1 -b=<g<.xg߹w" F~'Nψ*}78l2>[ǍyKP"0oڮ p+a^xL&ՅkHVv=nZy+TO"(6bF@,.i+DB$wMzC(A}^6"@/NPA eYlnp8ta޽e˖a -}\D"ó]w[jU#gj'EmD4%믿~ܸq'N?~M۹u4p D4";󨣎3f ^D裏} h\qU`v"@@}:p^neRǸ \ߗD(%q͂ >oB*n"P@6CHS">"@/N "D}IuL>6"@@II\RtyH"$:}&D }m$ $L >"@/N "D}IuLm$"@Kbg"@}lD$r_k>"@c D WْX$;mJpKD Yqf-ĥɪyzK@x0ٍ!{ lJE:H"%qu$ g"HMdi"x}o$ ۛf@@r_D$>ЖȪD 0Kty"X}z:N@MtCD ay7a ">oB+n#@KxD Zt$r_' Eaoqp6My7a "PeЗV@@x_"8>"@@Mb+D y/yc"@/Np)"(m>ܗD ˑv@߉@x_j" pB?v{.H=$:}$D }D"}IeH@r_"\IlHEq IDܗZDp{lD$} hI@ >6"@/N "D}IuLm$"@Kbg"@}lD$r_k>"@c D d4}&DrsȧL9- ##D`![|yoo/ߍ1bرcƌ9餓 YHR MC\tEwqGggQƍGlVMS,";G9~O,$Fitq=DyvrM$>>oD4  WA1m4?5kQr_jzhphrԅ6Rf" >oo+5G]D4@$)662//&"0D>A|# BH"@"صkWdz$V}+Ƽ?N"@"𶷽&(K5]+xS]ם"E}?ZD7yy|jU@1"@@ "8}Ek IDԅ@!8f"D`3O0S(8Xs24ț-Qk4F8|#|4QAŹϸ=mi Dj{PFJe^"@#d3yC 4"D:bӡX2U"@&@uRާ@:^G@ ėr_eK hw}n\j%@OOώ;3`%@A j.{^L.+L{;'ܗ2[f -+W>/Ɨm[Ǫ-yW^ _JmЗ P}l.ۗ{l/Xzz귢J(Fs/=z@΄<[tiedپ7x-}{KZf -@__h͈޽~Zuyz}^ .7nX8o}>OTeoiG,]oSC77 尟틦>鰟r0|o7L!D itrE %ۋ0H¿OW_>R;rѣOHEEs<$ T+1ZkR+bXe+(6("_mUԋ 1@ׇa$!zzЄ &rϷ?O[~'F=uϨH6.ӳ`NWv#ҋ~a55ba#H 6c{tI;=t&!LGKN3MOC&##z,N?/%TZ(7ci ud2FaG5rLgWg&o^Fߘúg{{GKKtHttY˻hpszMM3iRL4br9NQaTmt˂+THڳH-13ĢDzaN a9AK^ܲo֔[GjX$\hA82(7b+$yf-zo>+NgSVl"uDLgg&9r5-#GkX$o뻜zooL8`㏝ػ7RKtcwbY`e7y鲥ʒč{"sԽ 6m9Rff.!fӜb˦/ḵY9CJͳy_\PByfY3/J%Z[ aXk0`>lJCmiuDe 씖&|!ycll@6%"kċ VCyUa#0kx#q υ |D%eU2z)Y|zwI}x< ?}c7<8?U_`.9TsViS?Y𼀈L}ԓ9N>шyo2iڪsNsVU78u}}ʗ `']XrW%6^">F<'bbxiŷ;()Z3 m@k+җկ~g1gWv߽zX\x8rt猓_#s*Yy9,șk6y+hiqx_~98KW|,.>p!H3M>O_YvH9)il#Ce<N|5Sxvӟڶy꤃OovN':{Ι1HZ953v~-7:s?' 3~ιEߴbqr^wfdc2]eo24m%!O\I ZV]󶂂qSC|&x̙qΝ;U3<m&K=~h̸jsgN,) r+'ڈ@\oj=,f3{ka693o|'笷(q3}@ɸ7F JC DVx#q^ewױH*cL51֚//sc=ySH *LXÜD\ m@ćeNh5<NJڸZ2(4ϋJ1_3Z|/oӃC`N>Ca& ̹nl)"@PGye/^V`Pw#a-d؇Ǟe,[wC@:;;_~eOWR'L]V㽎t /b2|^y!q@`!0f̘{gΜ9&M,W^y~ƕczY0_[uds4^5"0`,\pŊ˗/Sfd!Ä\pAyY@v]ZyC}yY/HBiKeƪϖ[Sࣻl#D $O&s }/4@IJ :2w)&.Пf%"@!ߗ1uJ;)*aD .!>7e"@`! ܇Ǜ6|;a,"Џȳ,@O2"0p`ok"0uI`#7X@!ӳcLU9PD9 …%0S}6A+G ~~mq_\z5;B_I:% =^Yxѻvz[Λ7oҥPB3M޽/~'kIuT+:@c!@1N6J}"Fy"@}PJ*t[侚F i\4kj}2m/&]&D d2m>TrHk I!`?} ]NY+hSg}Q|\pטKMߏL*kqiƩ`:i1s\ OcClwKA\!)lȦo@K/Y[>4杏]ͅXl2'ka+>PnWM" C7'aD{›v}(ygl.y> ?]2?s{ި8#A@0][(L85L'D dڤC4iڕ߼s<h 8YYU~ڕ>QN<|ݬq*cw? 1(:@k"{M6l ^'_qZ '( /rm[{oʊ4نxuH?s9۶n=Y,+!y|g7Li||[6~SY PS|Ϳpw]3WgKNƹf`JT;+x3z,SeKztudO{r橇 Odf;{ЉN~_:dSb˾2F3_!/R!||i!"P3z+'Oso{|`篾mszAV9G'͝4aڹW/?ّjBD2FN$F~I\>ar2}޸SNEp L>eÈKQv=FQ*/O5aoz OBSN[x}3f=3gΜI&W+/xp*ir}2x .\bß"\pA[m%d\BF@ Oد}FʥDD#&>y\?]N[4L%D`!I|r YJ^rP_K@ć>-[t\ܗJkk.(ID$-d&z8ZW|a)s~_D,|W\X::24ɲś巗-Cs~)%2CN#2z+lK/V[D|hq*f \(H!Ҩ*Qe@%>0 #2d( 't=lJx2 'B‚\CK;7sN7yiCx#"s?06OM'T]~ڰS{e?@6z衙:)Sn^r1s2e#P MDOtxCU<$).hYKOaen#/C6ڳ+|l:ɏ~{C6]HcTTh>=6% 2JQc*+ pnyűGfS7o޳gϯ~Gl>}L!@ri&D&hdi4i٪ͽBf5f$ԅABSZ3nǡo(F7tTMiȃ?ٝ^ފ9Imݺ=K_o="Ԅre 器M8aYܳ^RT$EQ-Y}ǔ#<wT2;?aIENDB`PK !0_6hnnword/media/image29.pngPNG  IHDRp pHYs+tIME  #%'tEXtAuthorH:tEXtDescription |hardcopy|2012/11/05 18:35:37 lim_j SGA250167K tEXtCopyright:tEXtCreation time5 tEXtSoftware]p: tEXtDisclaimertEXtWarningtEXtSourcetEXtComment̖tEXtTitle' IDATx VU?9 @%4Yh@)Occ3CdiQTpF~s,)Rc$~@"ѩ3o>ϳkyy}~ZzZkgvy3<ϮݰZVq+yÉes^6e3^ۃAD\8 /x/:+^^ ^9 ,W5t׿"ƙ3_ו#Ftvvf~_߿֭OPַ֪L 1SCSQ6@v >ie]C*6,#^6?2>1qL? 8KGė5|4ǀa' GU1k8U 1$I\`ţ$.j򓟼Mo˶~p}Ξ>O?=o]uo= Ghf#öJ,DkQW,EX4rG:r^\r|>w::=ym 0\H3MKX(r{ߒN;X*((kNNdDp2"<X֘sf>ww}7rw~U #fe)hq0^F.8ǵ7^)Yd)5\Qiv9]=/x_z%1 QpuNAնGB$$\8Q6#k yhkU [|_v ~Š!$?BmF0T~)V m¯Sŧmu:lVNh#$f[U.|^ݡmӟp3c5 4 ⣣I}7B! *E'"BIRlXK}?,P=".KL[&B Cݗ9I{y${v.K^g1GL?V5[w?t/!ڤokkt.\0RyuƢO7W+a{2:%{;A1sWV=!t巔ڱEb喲%4$ӄ{W%>,[EP<!MmUyULD_ҳ,DA"x0a=GC|lh ;xJ1$WNvU ½*y f(D$?Yfg3Դa"3X+i@"pY?=Zouw\0M" SI$y1Pkgu>25{᧵ܞFܘKIbUSI8OṘ *`[)Z3fmNڦ!fq(T1ٞU 1D 4NB<_AQR×z>w {7:ɚJӏs{>Oο뽛a~%,m"[CcgϷ..\{KN]'g˷z[rwlelޱFj 'Llٲ_ȶadwXB;$;;\^ "l!V;, Je.9/JU~f1"İH) ҖU7fD~LcѨV o}ǯPa<Mׇd+ ElD4*9gKp` Q- Ü((3Z Hbߜ5s_׆ ֿƔ" gc/jbB?8>"I.%罾σEfӷ.?y~ߕ7}kmuBug Le\x]HTvEi8lgA]e뗭ۍL/b2v6YD\O.?Mk3a?~J^5ft-mdA9zm[8i'񶜳8K8g:s/#ݺs9hXb$8ƔR@U BKܹ/zBN(>.\%jCfR]n$>!1_b58&Қu1cn 16ęs[*r\kޱx ;l8.%$_G\t_iҦ-Q-FVCN%2'q- žt};6WU;Zpbfwcmcs"-[%Ssu~Қ` 01GV.mFL1M{Laܱ9zQ-4 ʬhHB-Iȋۡd:.Bx-,@!ȑ#80jԨHi~貅lU{l0-^CEe_}U,W8%?grwoij|\۽˻[qS0[uIIBY?̚w&,6աf\`ͻ !c˦om.Q_Q4Gr{cމetgܱ1VnO#i'LZ3{l7G{#@Ѷ1@8~F{̿zh.iyCӻ LNHuK췸W1L͚- Bl(Ǒ$Q PF6X'1:<ь~yިct:6Dsx/N6N+S.<%  K9IǑExM٠ēNM`1+l\Dʍ l PJBky.T~&LX +n>vk,p]oN .>vdd`!^e&aO>cѫ[pO(iU5ƌ󯫙-xL љguu=Z*uf`$1-B(>~jZnDH r+\EJpkO;_?_|E·i ~Cf:I.ӷ[Pm`Z&Ϫգ?/~&N1`Fy?}a~YԂsAi-$u~*aUCnNMx|;QU3H}Hj~ZKyK7iI'ĄE:iN4c~—e 8H0~)"GHs-1YJk*/aSo<'{%v7JH嚪.-I8ND!VŇZQE' x;C$'5D#xfر㷿-V\%AU|qYl [1fvU1c&L0h}FtE|*~xE$(Ī9&GP MrC6E\.}DMudWFja ʚ+jOڊE ] Patg{k5a+(:O @X9#4- $#\bจ*hHFP9'8>g1uTUvCITIAdH&^QHsyxRn ,rpd"(pl"&#bALqέj`67u%Rє2q2HRV=H.ZSoϥȑM5ZhL\肔n$#\?H=64 K{ :WmZPfIJWM5.Jf`PRDd] &āɐ#YL]iDDӺHR^Hw|(h gKDcc 0i֩(-B]h2L2b^yUՙsBA4TQ0)nU\Uҋ1YX@iJb#iTrrn]| LcRE!1EL.IDk$X:d^:v8+xJ#fd}/?,Bͩ/Ą80]z,p'`V w)kMJ8pDڛ{iº-. ֖4 qpb;8a"I^4ipwliD燮n.!(gzg'c\d`;aƔȦ+SMBO(lH~J)(O7)H.H25#)=iib$S+2ĶI@ny6 WBD$VQ\h5ҙ"eJV$NJ<eT>FX"ʝΡQbm`[_X7ubÚ]{b Yq'f_J H Ƈ8~ #K>A˞3bɮw-q-`Dxqჸ{VSg]TQ\ﭟi<)M75SK<6&+*}gm񌇌e7SΰH$ 3 sU.*yCnw| gTR,Ab~?\5 Jc1%zc9L APŰɺ<ĭdpdضE.Y?0x#3VVJ3FIei%U8F3uٟ诇4 o 6z@? 0(BosLBarQhTIZ?)1 \D+VJ9) r?4CF/{Ԗ$-$l%<Ҁ0jn\ӗWd9lTy%E#ײd҅㾌JY%lJ9`m RkɵHẂ DpۊdbQ#rG9t';aGt| )v ?LDRټ%,Y̡=9oR4n1mRRWlQ'Zhtacbzy6'%hPKeh,9wJ.꫔fG3w&\MV12tQ9 2K|45&#&9:K|ozN–6kB-lHF[y5?e~s6УZ~W⧯&'1[oʅ8,RB 1JS可B.#s- SBZ6}w{4>0PK4#KT( (@K =`S:-;#O"j"(q i>#V :2CWE@PZ}\G79J<Όi&MHZE5XPn4 3 <=V"AsK?E"$|ŹDžC^-lk~erS} IDATUE @W^*V͔!i=[,L[D>@" v7^7Ll8.,m>^ކw?󻧟ٻvA}PvA`_;q1*;6Æ 0sh?Ë86qĘO;~ܱGW@*"p(s/Ҿ9WFgtX?ώr!3FP 0}_Ӡ;>,>~Q)p}W]߿ر5qeC'"E6 x/Y^ ;;z VWJL+F(8xf\ڈ;wU( ȃm  &wXIPAC@x]%edN_x^&;;W9Ktf46diBG8tFE)$62$8lrq\b9.2qJq9Z(3kay%+#䟦ylu˩E1[y޺˗+qq`\ 3jAoѼLR[k(;Hc2KX~A3I~t$gNqG0O^z„\|Ѥk~#yYX Xw 񂣝Y=T% Ŕu*;<d4"0Xo4};SOgEٹAo|> .>kӐI\c%57^cWQ~ŲGQRIuX_ر/~$\m n\A:JQR% ZSѨ&=WjD. kLh 5ezzʯ^ENj{ֺI][05Ki?v IL_FL IB~4ȥӉ[敨%Vo1%{sTuS#(IJ˱o,ae>t<᜔cUŘﳣ?t Κ,=@ݮM;WsM/FI(!&a,FimjX~MD R]N6 Va?ǎzT+&ϫX!ܶF$4"P3 ;|3C'LhGPk޼DzIm -1?WgXXX3BN~YZ¼M+>l_]%z{&K-qqG~UƕJWZL֫Iq`W>7nܸ'p >hc'](B>ϾشV!X-AK\ ET֎kiڭvc0[3<QV9rE.pZ^戒JT\ WKZ@{=3N:~x0 q_-89W9 _zFC}}O3_t;\u? 8o}&֯UՅeM*:u !y|޼/&Ĩ=)XWu*RBV1s9g )SuYn5*vr|64߻5y/qKn442o~>hDIy/7Τjx8:w63W0ճO|^KxG0\[d:us;5׳O>_V)t`M+\ИW@<:>6"}ף^CoV4~\<ޮ቟:Oa?x&$UB3y2HQb,E@PLOl|Wذ!(sg QjoW @&:.*!HРa_-EJi[񢥦no03tA=thP*EP! k>IN#b6{`E(D4_C6#Kvgj"(GLL^CO:}v3+" hYL~/|ÚV6( 2S3EXʓ,":tU" 乾bffAJE@PC^b+y"VlѮ xeӣU̚JP >Z_xy1-=,LsޯE@PZ8|HfxK܇~Cv#Rz( x|ÌyZόys}k:>)af>o .*ʇሔ(m%~3+"iK)E@nd|{lfI^.A 6 "BhR@ﯜyy| [G@vx$E@hrytzO>&)c{Ѡ(@ @Wy^]e}Bq4eF "0anyG&fȎV "(m1]&ᰚthRz;})qM"(m &{yO:|r@>~ " tp@kXa8^_cE@h]gfuc0Af= ~3w)V-WE@וb;X; #x#rXJ"( wL<W,x^`Tf#B_;>("P,{|PV<Ÿ)iQ@l>/ghKRxV5ga ޶(vuB`KC^+c̗iRLcK-"E@PZbtCgir.^E((ih[;lV10c^y_MPGr2&e;Gtț$gryBNPFqbf3;ca7b$ͺR_kZ(b{\q l9k:Rf)"\_.1YE@PZ&r^b=d1+یWyUp|Ѡ(@#@C[p_'MΦ'/uC^ApӠ(@; ⣯˼AO(VmI;8>(G@o%>bA=̫7k 4s  w%M}WOE`" }=\w5mPatѮП>t " ,E }.uRP ҫqcaRME`" ]?[sE` @=>딮p# (" 5~>Z/|NJ"4=t TW*d됨"J/P3_ u hˊ"|( ;Z@-Pj"ԍΚl[A"0Tq;셥>l7}X@oڥ( "Zs鏸-\Sk]M(CX}^П Tŧ&)@?p~UO|5" Yl<Jՠ(Dmdל@*" DB0zf;g^.%(!}€M7J2h:PPD >}ETCjM(@۷4&ȃHIap]ԕEPOR֥A#+A`xzyMz}"3ϸZzzx R*@-\o:CYRbPW?},5;E`h" LzD P]*~[E_͝UaxX*aU4"І$€1ާ?ZǼ/bx\T" ()?p~A/[. ^lAXK>Q-;ScA{02L|A\J3/)===cƌIbE@P X{oCJٕ,W:@܇нdg?Y-LPXshgA|LvxB~qXZkȑZŠ"TFwl2Xd?,]*r1S.KRD[U7*z|vrd(֝š3"N%8v%#i+pȍK.}W}2VzUP>~k_Z i Ѻ %Sd iǐ Cvi|E@$% _Bn5AV5z竊+4x*Q@ sW}bѺfo%K" k>o>X(XFW]u6:=uJr\}Ш"2PkBWE &"E@hK1>|A}mY"TA@ @zYP徶,VuJP P}g}&(!D`_;q1p281vcn,M(@ ^x} k}r$A|/Aք"P#G>|-sY'?np_t/`"(C<ⲧ御Z(@sPkEPZ ƸoVݰ_E >}9@Vɪ"B@&1XL8j3Njm|?B 1 /T(,néۻĉMs4}'d |E!p~N0IG)0eGinYfq>`ɣP7̦ E` ys9_8P&Q-c @48swXf-?EEV@vgqM?}a]#߇'x'{$ZI`>{}l&}JQkh|<^Lzf}%-Ipd4zzDny^o^gMNMG\%"p('{ _=.bP~ŗN8yeO5"T@ ƎUװLO'>0a0E@8ٳ穧zL woL4O׶6Wo}p^W$oƣ-3i/t((xT~>[4" @|xuccq\.T|wvE|4WtĹ*U)O"񺆬Rŏ1I4U+b(@ u1͕JRy߾< W/>=i_?b {b+=U+9M7`=Cxy]Aw6c2DD]JWjJE BXtĈΑ#GuG}Ԙ19fGDo: ,:mʬޮ DUKnYJŮjOݡ/8z]EV[*UKE RCGs;^5Ox#U`\}RYF6=P!@y~;Z<Bjh=pT@NK=Xikxj"&2lh3+th~}S+@15vs֡&E@.QG-QFթ#s{|rA} E`@c)~(@[" B.XVsC8(,7Yêu&E)߅= IDATL+݂-z#>Yc$K+W@OUxT3@̻\.::Fvuԑc}ܱ?n,fF=h5vìayȐD-,Z:u W-lZs{'E+/E@hR^G;߸q4,e }ғuSa)~ߌ]CG]*hT(>׾+g\j1BTYǥc¤EhtຼTҀE@tTI7k_=0n.ZD%"0pt#kbzT[]mNʵQC/ęΌ>WYjXWנ(@5ClUKnװ-:_n; [])~\RAE@,EtE:/m5נ(PE >MxEz E+F׋" `=7)3.H$GIU(" H}tͫ\P0kAn"KX"4a+†tg\MYbSїy,=0#'x(mÆAX/p4L14" '1/ y$U(` >zCɞnś+ #%$>Wap_Jq6bƑy(Ejfx+EjB(mo8WA}b9޵6Ƶfy=B+DP322&E=D޹=KS ܼL:Iq=!5. 2 K,4T(m"NKWh͑oਮ^C\Yjd| El3G$dMCעHي"Nz{{Ǎ7})SA,7Q" ^nfy8 6`P~ƥ8jzE@h-@s;Λ7OxPF<] E{y[@;!fWa=h}w!lhO(j9~;,4"( "!>d6iF"0 8TWH(uq%("oV'"08rĨ]n g E@ E@P] ApGYhԪFP/q O !E@Pнy# ֪UP +~_}e(!PX*"p2S4#E@PA_VAC@m45cE@D7k֊"0h轎A^3V|l\#Fxve qVՠ .+Wua^{-=47?WwW.ZTo;sueE`ps]dѣjc9K/7V:W/_h@o[1/xWO"k2(ǵZ2}hGPzGO)wk>*^Z|^:>x("0 7j}o1-ba W>גS<( TV1YVŰ>8*bQQ[}iltl_oZ<e_܇\'|l0aS7`߽?D kYV]9^KOr .l\۽fd` kɨ?8o-~ 8mzzW ^䕊~2;f7=ǽ:׿yN͚r`hqhmW*{"`=ly7+F<#Gt3樇%]3^~t/g|%H#]1 $,H)ŐTwzd Gn* tj jlؠ:^4dfja`gRA0'V2 :-pNkc)#A,.6 fF"&XdG@/ =a1co\uc\xDCC\[>ŢW,xވ v:0>O=+Əy8nZ}^5ݛ3֦=ުp]"]iZ>蚳Z0F4+=ϦΥS1Fؼl[mfA]!aC~˼(aMwof(/$zS %V65XƢh[{׀v-#)$,p )*!Pi}ϯFx ?rRA󲊀uHxq}/}=:}?;?#FeW3w͙mi~@+|b6СOջi.93SB\ks9duȷMnz2ь)^$!$6G&d%Ug7GԽ,Ixqm(8mʬ*1 F3tG}`'|bM&OڈH^xg2uy~<5>owo;tp_GGTnWt*8tS@c;7/!7,іTasLVT=9w GztA F'_u7&ҮU֫]ŅG/tS[.ٌ(k״4y't>18p-ItkO'oe_&<(^./ZkV0+ki`Κru &6kH,@iɓ?7l| 6vn1Hκ-<rٗ+ל:}rl=w=O_s¿'˳{_="o֡ߗce}'(m|ۮCX[F =t=-?| THw͙3Sތ gS.[IK4ٷlaɓI"]M(Nwj9 4'#ujhɪ}s<llZkE@s4v`M1/rizރE:^)K "2gYz j}Ӡ(-@1o {VW\uO0Oo"s]Ƌo9hPVG@ǼBk`6ّ/$Lr%ƍn,AP6@Ұ;L|W|iO(m౺ o06llx8a)>gV;oz/x'L/|_ "кtttו#n}sGuTrcK{zz".;=laRY֋Ȍ)? @#Lljm/2PM~_R"q4ivV],oNwwef@}M)U(C|LO a!ZTj!eH kn4lސM(>p<Ҭ7dKJ @ Q8F4;HҨuC7 ğyne";m>k}zت@ |;`zT +Ԟ1coh@$`gZ.ߚ `c.՜rD1V M箟P/ 1!h6'z7^{mnS?}]F}7^xϦ?zuPN fk;׋G]omlPSj2*x +c+awG]R"P#O+|`⢻nnGO{ĨQE{bU7n7aExgΖcx>v˗[z) 7;EϳxAI750s ߗ^PjB`ƛ9Tͼ7mh!} p3o .? 7͗^-zri>"C}ƥH!ƭKƣ%K&7w-ןo|h)\Svb$&mxqİz\^Ҏg` e) L7uK_*}IXNlX@VUYSLj^sU 3:wn|6OLq+gr ?~S h7xtudo/{rO~gAwu5ϛ]9uXd. mx^Rj@`-M'O ճNlvN۸2g46TI .͸aj3g Ψ`-g߲񆅜UHKzٌf0(曠AE1`>K_~ҷtO?2KK M71rT8\#:hMK'_h#+S}@.4e*WZDHA$C~2Ӂkm}z Ra?䊀"0tC/>1// cZ41`tL0QIi&05]?$}"ܧC4U$Gpـ $$ar:p$krE@Pnf̋EMm6 @X)q(lbRfgyڥf4(zuJxe]{!ChP No~UvN0~SmbMSX[4yY NǯW^jI=د]]]&Mr(}"Έb /]4; o{%5'J^zy6Q&G ">/X]%\eE@PZ>ZP\Cq8Ŗ^: sN[y_P' {=9e !ey yg]QA@=|z IDATв}!5tGLG\Kl@E@h,]vetwvI^FPP05ܱt5d YE_mߊ)@[4'd=<EXM"(@02sy28PVo@E@hc^a=k󠹾>o߫L|DB$E@h҈@>\P~BX,aW*97̼fƣHGELYrZ` ު+]62쵟W'V U%f)/^ KNĥdS"oy]OT[tSf _;>bbKyV7 C %rYGP'i "WNo1l%k4.^LdGڋX0m;/_)sip`@ )/j2d6Mnl[뗆,{irZ]&5RZi$͍pg/}Yb ߫ѿb\ 9oL&gMö8J)'@J @=7̗o9pNR˛ 5T$GZQGzR92G'G|%S)v<5Ƅݷ(Jɏ !4JX"Wb6U=]@qD+wPv4uBI "ɟcJjqub=CM?2j>i5DM&ӪT)*7B~159#9YYE?B?/[3۝dHr;t#P4,n| &`QzSavN(Sam?!YٻW0]\WI%9V=S{!JGG\/QA`)vr*"( ШzP)bjž@Hgo?藍P, 4: "'s%բpI (6fK+ .x\+RRaY@挈LG7bיFxIKp_c7M.1"W++Zr MXQ崈 \B0ߑIu4w]>t@Hm\ڍ""ig$m @3B-AO.-S'e)کVK 7#fk 8GܴPV:bw ajKfV:q*4Y0hgЁ|)#‚6҅j^Yj QQgDSZ8s0dMKO2N~c3ŕ`\HT#uBTQ}Ϊ٥%LȉrS~O94r▚A$wB_5dTPUjrK(aF='4jY.$[`K@5R#CZ(rdEDI&w: 99+ B"5!+nMJ8 fVtn'b*I&?nZfHMB#.%O%SGɠݯKR",'Wt%ӧ~~^ą~Nfkk'W@a1tŸ1M/#CS}ORKO@0wΔI!- l)U O͌/r'PA+(8p*6ʆ%J)8ו0^g`#܌k<+ +qn|Jp$_N#zxȕQ8*D\,1kScL?dPj)2ӑO|R%kЯ+6C<<6ID|t߾5g9#t}\&PdҤ2xZ] ɂ)4^5KV$d b_!̈^T Xtd0{q@ƩUk~vxkȏl1HSn\!, _iAM߃f]-{3gΜ| |~!uVRb "kDɯfduӻ ٟ;! @/藜NQ |jK˄eJY7w*(;Sfd)?W2JAOSH?W6.Ҿ(T)P]RLt,f"8Cۺu+_ESO=o[_: ?r!Dǒ>"A,ѳ Wն| y$e׈,4'kxRhGJO$?'u#Y(4ïGt@2K<ehA%}ҡۨ]Y<[~T}@y+P9eQ8_z^Q@೫Bt#Ũ$z!!I5DO FnWDsTwwbgH,)@A=ܩ^u\!ɄxM " Ǯ|{| U!oC'B8 9 "t(LɐbE2XmStYīJ7m+NaP:! 뾕1&?ԭU'f*|'5c;SQ9;%7>kkKb$§l4RR10C?ZG;:}&~=I%vt[GiL+U% .^C ?H: xxY7N|pш\ѧ P t[泡?Z^T_HTtӖ͔m6 vmj@wWO-RUiRbVچ./Ll0.U b{D #?R:U vxHN6}ȫ* dA ET)o+ %BPQa S!իũvx3ԡ^Nam;:h6]IE}St!LN꿠GynO4a{)qHuC?eUUĿً⦫RhZ SaPuK {M׾}`{bgf0>1;b.Etψ\_ c$[@h:a2뇆~9]Q^v' }KC 6  c~j.廤4ԉo];ܴ/n* JHjv"WЮ̪J @:I)SŮ-c(1Wt/7Q5⻤K0^}keR2GR/'~H@g&P@ꑱs2?tWj <=+)/Jlf5L B~IٝR?mḼ?)ٝf2w 'ӳ'C ̻ p_?e2w~&s5p5ٞ OOo.%ފWU12gg0mpI)jf%LKXTX[%z_R.cSqb#`Yp[%M;zeS%?ʫ,@EMPhϖDsUn7rgjD8%d`ܧ? |O<x"r߹~9ӁNrI3'd7G.O-^ݗiPᱶs'i[~S<1]m^]W\su }ˁBؕ~\p-'ve.vĒ:=-=˝|oܶ#+`掇7_IW%ZX[x8Kcfqym<2.E^F )Q)C={b>%&-L[tоzgJONaW7%O `_UHQv_%cTTzʟ gbbEL\^ m§H-m >t,#vrڧ}ĥw^.rރ?|AE|XH`_)g)Nx$gٰO~/ݞrԓLߵ{Lp@2OM=k3?xȪrs?,'~] Fg# +*&Co_8%[0Ss.y;kYɴ]=mdwƁ0p U4NJݕPf`d.hL6 `|ޚm(si$0u20D~w=m}Z9@;q^C`brv7:.1~x~q8J Ō˟'qW c0Ɔ9bn2bwG0mXV!Î;Io8d)|)9۹||fȰ[f(D@-"OvΙ7ZB)a>WȜ(,UMҙ99~] 2ڧTQR'&JO;vRPc_ϫTuRQw V~?}rfyJa}`CAAtj2kZ;, .y3-'z$c"5PLCH:ÃpneF>{v8||r?-q]]/8+_!l`FN"jKwû.}3ȃOz7Pw`)Ci| \pM7{Wn˿ =ԡw_rݟ!?򗯾mGhD(Am#mC# jYߚ́ -q}ۣм:}1PKnn( -;7?؋nM-[\-.ù 52{A~ ERՑLۖSw}pڱҥGVs#(JtvW?kZ_\Mg }{j\\S^BpM3Z`iN)%xqKu`(BǙd*ғqҎ%MN(Qt㜣Я'ഺzGS/?93w\1/F9oz]1˨OLT yw0%qzJݒeIrC q"Ekz_ūyr]-K'5^Jko~g<`]ʽ䚶rӟm |៏7r` ҮޏLǿ_g_p*=obv=?x$,y |k|3?~:`C.FFRF:_w>{qV@.@5,I ZoXppaO9&*(^#v&^~ݙ-}ːq_YtRߥ5z'ێB6ܱ?3CdW}Ogv]|&%;fh?mootλAv%9Kcu vJILjz,O@km#Y"Łh?^s1XϋOÆޫ/]/9)&Չg i|;N.b.wzBR%7Dα@#>rޣ!o G7A=؞: -c*UphYZ+NGJQ7CgINW׻;T.EOp6ny5jͶ \FmOEg+)ֶPTR=8cc{7y_|7e3"nEP$†ё;<yW-?LGK.ĹgONņ+vlzhͯ #/f4H_.*;g'!RNbo_=?5p ͫ*@1CGWl2 #^?8dh;P+mJ~dq8z8ކ1۶luClg@JKxv%Wg>& !8.I. 6{XAӲA Я)yl/d?˚d5@;zD)qbzC@U`&ا;NBqhʥ䀹z+rbTxu[%6'[2qҶLg.vMX&>Ɍ:s 獳l[6!i _9[ܴ@+ӗ=رޅv|3_|c{&vK_ѻ?{TFR"?s/D_ۻϝ^}mp?/k^/?+#.۷vK;m_ sz/ |S_f٘zCax/®KvIR$dH>~=c/NׇϞ9s .( ,Br~[ZZz[j ^xX $;o%%[톩LȐT)GD[VWrg!'b܁Kr*EIZ b/C 7 '#oNo#{THb J;@Ǩ0C/ _@Պܻ !LѢ`I|eƓyb6ȇ$Ǖ-iʳ*x&,^NNXLq B!GABN2CO}B_ߡJ4w='GMIG_rr7o  MY>EOx{.rY;ݾ7l"V]u(TFpPV9t3|+<];MT4dH|uR"qeV5U1ꃺ⪪P kBb :I*8!@”ȘRr I%nTTWK{x r>1J5D=_7D@Hj$tT73tJԹl܁Cz`ER!/,$0U ʠB)!#μIsUs;Zw ufݻbCOY1ЌO'hVJ NT7zF!B>W::U'#[?}Ӿ (170-HYO PĮQIzP" PgWfFIfԆ"J32'2iA=p\0*v#3088c;!T)l߼l~ )dKŠ?-0+>l:",>\"yR~5muaC! QV)ɉ4Lclm$ǑMD>kkSk@4T~ZHuH;ѿ)a|UHC@/NA.]6ݲא $0 KҲbIKm KdaȓvNAΈ~iEzHԦYqp4r!>eBQ@f>=,"ီi^vPe3Ab 0, iư_6*Wp][g8vTg8$̱E$KlIܮ 1}cBM.E>՟*rΨYo uY3v5=OG%=6tGR$';ءP]ψ/W3L!N'v)ZOw2t S'3uF=>4V UѳaPg7=_&"~AL=%ǥzD*~iW8uCcGc)BSc}`Jn%eF`F9Χ]Wp3\fuk2s)F`F`s9|\.in.yf0#0#Lds8V#9`zXTB. #0#0^za0O1#0#4:@e״eۀA6eeF`F(@^6]=b)Q`<F`F`5NӔ 0#0#ޞAwzS̏aF`Fh)wF84W 0#0!P3/kƕ`F`&Ctϑ"G̯aF`F8N'`S;Ke돟:}:UJEay{͕nS^۶eE!)_]L\Z{Ko^tUj?uyq*җ' '7mT|Q1?xo>!)!n VR+abLaK-r/u ?&Iކ1? }u%d4x Y]#i@ 5~ I.̕9!P'tAoʋAOB=nK矄u[qs'<>m ODΒ*?QlO>S:Ў&#P>=Ao&]w5b嫈>#?޺g|)8% 4څEA"CWӉ7Qߊp>pF@]nu~u0\Iھ):wu;5^|*!|#}QX|)!?g>U'թhUFJ\SRy/;H<;w=A<<6Jw"`r*d@xvJ֋\>v; &績YԪc-v`]$TnGBmYbΒBⓛv,BtU-(f 8@V]e"F#Z7;4-_osx 8!9u;_ɤ4+)MĄ\Fu*Ƃ~]g>!ĕ5u3GQq}{ ?wUl? zR@#9rJ}mRPbi!άhBibu\CH{tHh]]5Ĝ%E$xFV JiըL@>$YЅ/k,)x)rD)JKIY2O olrư?zC|{ o5h}Ko5d!|_JF9>4 ?JzQǦu^+J* $ Zd O,망BUP7Ty,@0ܓjӘT;fZ[U6ʀ9FLb>A0# ̲o 4E}Glj_ɋռ8W_.'m+[ x24>Q;2#0#X붚cD,&Hے;sF>hL9jޢ _A&\F`F2`_6S]2'%m_YEw4p>rk2@k5σ!/wƫ ƽW^umpe.l( FxBi8']o P*VVd}|[.n_Ƣ%lkk{ȷ+*/  +Nd#+r~$yC+7s5J7t~_! m3fd<W:@##qğsMSs}0C ee"}|P9cvJiV>@]eb"s1D.K;, O˶fm)#0@+ spގ Os/ö`|`F`Fhzs` 6hд+2}M.2#0#D=$qҾ,:\_x U9ģMwR<(=BuVSt0ܡ ?HCr==nqn>'B~_4v`HT"~;hQp5!$u] td\z'H'Ԃ7f8 \}[//:ަ7!@0;v} IкQU~)GKm;)Elgpa̓YU:~,(%?C<WB۪zcIy{>OFy޽qznԤث^ #Nf./wjYLa[}.,n\ AoVb#!d#renǥPt@`{+^qy sW'3!(F\)1=iu 1<9(f&1a]z4j8 6!Y.$ ZXy;5hcttkc\o 9ӺBmÜ]*s%wr-zիK- ?'T[{lJF{!y ]@Z>RJ9.o Р\U 3~߲vd|Wozӛl2>>^/Y/Q8[םH~^O[nD0H e/==v96jm]cE'V?o洎'8W_hQ*޶_6ٱ[8bxc8\lwYoĐSDהՅYoJ !m%J*o߾}W^ k'}V J+$Kcpv'[$v_6%-nT2kla]1}#d' 0-@e9_\‡PV^,C>&Ր>^J PRdŠX!YyUߕ{}]ַꪫ7rR/H! H"Ml6:`}4u f~Q:W84Uy;+;X-87zCHtZ߶NΞB^Nb={ &$--]6/CDI7&eUBmM?J3+(=5CF-Jy|gW~a6HOJBUD}hW8_τB:Dmior2d]z7"ƻҼ}pj#ߘ]K>]c6TcGΆp@j лqߌF@"~faڳgO4Dؽw>-ge}dӧO?303ހ W]qNZ~?8~˻o 333}}}2gkNXZ.60>spH<|g^r]a :P@#"qFjj!'].A|oe(3Y[Y#0#9n,eʌ3l՘:T+On}!} NQ7)-3'Զu؛FB`Z"7  _H@ oy|ֱ &n൰VSd2MC A[A3܂Sc7W2蜡ЗnpƆ*<l(əo͝缌#Pmb'o~j~heah~fFFln%y V!+PITv&K@0% ?  ^IutlI_T県@*@eU;) 7xoc=gDATg%#`"om樌# I_{l cwo ;zH4ث #|>}@}1122JQ>!t77{$ fv50v>i7m ^^Qyu@s]boo.B*FN_|_!R|'@A%=654?=Ư> P/POFQ>"}^ssd@<LuOuo֭!\FB9NrͱbKG(\mt][WM*e,}?@@o;g:Gu)1h3@u^F#n#o\@p>Yu']#6`a//*F|T 8 ^`8Zi"<>7%:(ɐ?r-L}"z F|?Lѐ^8Ȳo@ @!dID݆oc`AtS&hme5N2a^J$zD^ ݄ ~uuzYN>v!jiVt(ȑ [=*3`Lƭ%{K:EYpυ碬b-A2#T|0gK'gpB5&c| b޼goű=}  P]98,4:u?*.X@.25/!ZY_ ꝄIEL'gT=(7͝9$7aF 43$Ã_WÚxQh޼r~"S IDATo]X<KM{i.ۼQWLbpK^Vf;4+Loy>N\; A궕-]Pcxت[vx)P݋ǠklL] ks<,0#и(ڇ "C)[6sxMÒ  wr{v9={ƨSҳ!/;IR]4D5>zw  /@Ƕ~N3 ^X(*Ye k/}1h*(=?Y6oQ^ ]U^=8-+gS)Ľ/ #0MѾ,P= yN_5Js9|aX~J mǼlC5Z v$oIUqdXV+| zF Ƅacr4-OiVenc g6U6KC]]tzCe{z ja}^9(A<{JL{CɮbF(xgWHNIRgכz#[Er _w %xE\HZ0'5170!z}gzsCmz/?|ƺǦdWh:-I=6+g5ᅎz'ɓ_@1WЙU^-}"XgQ"IF`J#]9+VVċ/OOgoeU@bm]KͶcKۮ7lxեaBnh dkh% 7s< ~0-$a7uNKG^ "Aba)G7B]U1 dca룇E[(QgGF6Y |+řE8_Cv\jU_~U0DC]pꉐAt_|B́]_׽Q9÷?UFԼ6QB."l<7l~tRekW,ZYƩA`nrdD_wymSdƺc8[[ 2#Tjn5wt̙ܙgs@bJ:Nf%klvo]G?hG^1ͷUEmܣD6Z5Hk3e<{@{mf=6dFH;ؿ>wVg_|r{|;oMӧ瞛n ¥r{ɕ+r[=s ] |mׯoyP F ;:}wAeg9?ǖk/Xsɓu|4'\*F ߛwuvy|OR> RG6o9>0@{[;0̹ȢHD[V5~ɸ@ cvR[^d# 3#PO⼗N!0#0#4aT|@Y14Q5-#P'`|`7!= xj|C5W7:WH?e/qئ  >S*"K! AnA)%kQ{<=ȵ~ZiYse`U@iY#W+` F`Fz +,> ykh.L5KSE'ep0ogE&'ΥEְz2$r`C1ǒ[)3#0@} |ҊYx?kq霢|6cDpjC'qhmVF`F /A)d@2UG=P>kԂ03,2U:ښ FiS$j)ग P cM?(++ͿCZ!6ŶfhG,EӾqGXS#0U@ q{5M[=' kZtR~^B nϰk$8?+@ ׹u{(4osoz@|~Q!CbآF^~ ?/( r~P-,= xTvoآ1^]25ņ(ڱKLJZ_1)uI\ aMlR?͛/L< ~AW_z"dNJB> % Hn[Kȶ<0#T 9A3:؟&χeGNS>H5N6oVS(G NB\;8iKX;Ł[;=i M x)2&y Ut494cAA[㠠sE◄dr9/ؾD._Ffyv1@i;__٢ [SߐI_yxa귲$8m.*)҅Xh,#0@Exp|M04HQg_ h·.{wgbBB]<҉iaPpWOSnJJXLf"p z6JהqK-3{9#0@,NT-v_lo O%F9vcAB-s_;/SxOO\/Mf& B1$lHۮ_O!ۯjmv4y\fH|`FLVsy3r¯؊JX/gd [~oD 4d+[~إBmJa ; {bM֯N~qOnivЋ"Gef/O3#p;#);1fiM glRn{Nbf.;wkT Viuڲ]r4?0I+`A Ez,sön" 6Y?p7F`F`F`5NxBĝ:1812jm1Y`F`PrVnh'<Ss7#0#oy( "Ɍ#0#0A?y"z50 _pJ|qR,0&'O\+'`CPRჿUe~[;Gdq% mLnXȱ|!v-xcx׻EҟKɢ#PkR]8Pm,6Ifފriao XvqlJ%He_y z\0@2y|Q2m``+ɢVd|- P u QC]{qH0cA߾= 沰# 63O|]q8|ޜbE K?W?}(`u }!sb284$F` : |VG K YQko='?ONP1wfNmdgm_@YKr~D8/ *h4⡩F`Zl.uQ>}[^WqfSbnfqlOt 61+IKwzDCz*)|L}t ϗcaIf)@G!Wr"s>UlGUeL"Ewlqmؕ01|A¶4=@`\4F/Gsdr3ye"6m|ipt`. ͭ0U!i_m;1Tr6eKXm֫բHӶ AO Q Sƃ3}A /O 0@oRrgkZpՠ\kt լLFZA2UrvF(@)p_wegϞ}ǿ!o9"kib[|R_aQ@`mwM#ꕶyJw%9YYzJKGbGS +k=m #G0<;02*ׁ!Fne8pL_dǗ}io蘿Gkߌ13@,!lOjwQ+)Vt֕mʧcߍ1_ջ Gva蓷Ho/x3NbHt5;Be7׹{2` z1 ekz ו}ÆUϒ ֳ8-3L\p#"p)mٌ\y# /#2)Ԧ(# x<[\ [ cJ T1 U@M) @B!gX-,E#2ᆜ^[hk6SGccIkNG9G6b ÂZva.`讷ALϏ)YG ܈4Y R<K"žZbp B/#E{Xp诽[s='ҳcpf>2YDAY0ۀ/lrQx7x/2t,hMvcSĨ;SA]X/>IuRVg\Z!N i|!VYvh^V5]*d͂|v0k3E6g!4W1D4hAON qRa GH7AA1]tDyMPp/BgFxof18O~Re#Ps`BXȪ35hJOz|`'O/uDiJиP@"qv= թ#r$2# TlhN\`F` Gn#.[ׁ`F1^>5V7x}F`F`ZEp>ZOo7 ǧYY`ھ͕4 ɓ 50#T #_L֑yI憆`.:])kז ͢#` P'!^b8DZEwy|W=UR0#PduyY)F EDUUImqp97n0WKlh }iw5^8#0#nX( 7aqVKo-ťaq,fXHxI(C]MPi#0#pXJÕ!:rYo],X-UN"0ɼKo;z^{UsVS|aaRǗeF`Z?+|dZa ̷fԝp1`B*YnV| MqoB(eU#0"` <={H'+ؐ h[:@ k"*agzaF`*@KՂMqd! M`lNQЕ#ŀO*9W-yfη-cLŨMЈ.ObA_)352m ^R4`.U$Sy.;2 wqeFEZ[us- ~U)5Ρ%7UV(>wtnXNg 0i6ř89--w@Vl 셁;H< ď!ٴ ) !^ԳqF` O|&3T$찂>^7?XdFH RGn,` 92gilWΝ` ?_OA9bss o>,sL=8 `< !pl7*t虘z`n *F<*1[!Scݓ3f(:Io[]|Q`qᆃhy-@.0$}u_=峔¨maÀ X37n>1d? 6 '1 ^)͒P5gc PkYZj4&= @/noyH&% 6/…XE\96N5B_Y/q@K8\:'#{JnPM %.d#`_ {} ozC =Y]S+TB;dF`Fx G=\`F`"vF`F`QkCK :/WdB#0#Pc8}pR^Ξ+a>BShڪY2ǗW*!W]VZ8 ,dwrx88_M %'d%i ;iI&(]A[?f#PZb5`χK ѕ©ti[m\d/qJ6. g8o$V /wxRm*{ e4/Hlm%4I7@dF`F"0<3k$'`Bޅifa%" 7_RN; 3'tB J 8# apRa)+0rr*RMX)#0#48 cSgӮ/[c b| K9kRc{$ 1TƉ#0#в0瓋zkޮ]l:廄g-Ҍ8Pm~3Wa+ȯ2pDFj/;[{N~FH@ s>U7lE^ \>$_vP )py86?#>; OA-T7.Z#b|`#P<Χ1RJ3 i v|Ќp\$`| z~0 $3pˋ9%C]d#ccǘAaC|b#) cؼF],.CCi44;5uOL{\CGHÌ6]L@(h/k%rɃsAc4\ w0ۅ# 9L>fzF9_=_-uFQDApgڐa]tp*+ R )2^;6}.<`JDgbb}asFv^os-3Fssd09>띴gy)*ko縦Y(Fsc2@U09_Uׯ1~dו-ʧCw%evn(N0^sA>9iz@|ҫ F `+@`aVn#PdTtzږg'0A\<@ePf@5Uf~ՄmUL#aHغ֥^m IDATڣ}d15 s.Ft9!P:3 q:FN2MtȊC' \RRDEh_v uӝҌ;,:*oq,0竟k0#0#P) |̬`F`"q`r\2FMgF`F2\,ZIY7#0#0UAvIG̑}q('oɓ'q1|yFb:yC>crkVt;G }ͳӽABBX/l* ynjL(^vm~2>wr'@Eh][}9T!7Oˡojr=LgJ,jj.ҥ[JF`F8ju-*&^brhճ ѴnJ` lƚea-̷ 0#0By8_1?k9TXj6T50YF`FLǠc]>$u;/8][3.+N|"Sd<5w>OzG%؆ UTQp 2 i╳'|+-+f|kwŠ$%ٮNʷ':ơ_ gm7z 0uv)?A 0 ͙Ie-CI 璲ҮCB-i/Q{7%bG/w_"vH@:I4h>seIYDs}Ik.їT)枂u`-qKrĵ;Gӥ˒wMXKݛ;7s5,ZE!bFA8_^8v;[a A.nR1=apRQ>1.p?C-JfZ?t<#4Pq+^!(`u4h ΑJuf*@ϞE = rEt4`Z8Ja98&&>QFH|{2',%X}.2{#R̻"=5*g,B LIӣ"ȣ)`}~NGQrd"Pxyƨ^ 6sd5v4M&A[y9[%//bzPxk9[./GTgi{YZw`bLi,ӑ?%<'rQ5lH>1hsRwϞ=>{}8Z6O{n&0U'O]3g@lڟ^xk;X~?8~˻obff/Z&,OѳoOQآ,$|uKsS␾hU:iٮKe*ʮ* k($[!2#=}͎u`Nom)OR31xrF`F~0WΦ\ksY эД0 =6֥< $A<K9eݾc]##8_Gؒ7Ԍb0VGB :3#!'j 1.]kam2 ;  @< 8Z9ؼ%"g:)H4!_o!y`WsCЇ` z_y==e= #S1OI&֐ pE.,%R3k9g"D9na?SRYгD+D^  ~uNW])2WJ>GaPK$PC^*VV9xFY{x(sx2 `x<$}nPi׫R+-- {Q)d8 sPcL8~PK+ehΎB $OksK+s^4$*@ xE%b~e,.973\ yQV~$XjQ˫^bS4f[F>TثZS,ר`rlW`ڀNmj<"q8Z5+V3=.ʧ&JiܘJ;$:ӹ٫׋O8a炇Ӛ pu΁h RM(/贜=Qώ`K:i 0Dۨ"% #נ ,ABEˢ7hA{S"&Mȋ4t{pSuz;7 ́mΥo(|fAJ_jҀ*{'MA\Kl T(c Y0:9ћ`~ә̪afKSZ>8&:>tT7t\A8*z/r>8s@#>ЄQt~tft?L))wv^=.equbx)0樢x~EJϧQ1f1m1#J.P4/Y-q5i1Btk~RftZ1NRv+%,DS<ʎֲUDV܎cӏ5[SPU .bqc9ĄA^?pLZVp_ΔUʹH1zsg@TQsc2sXxmLZ4C14ºa39 .9h;+ut?pƩe zPEsH6ţwc&@9SCJ>cČ4XuR#S3Ax VJeYN5P7|㼜NXщISL]tAw?wy={"|;ofgӧOs=7tt X]ͭ¿?yrVϜ9bk#_۱}[}stgffeϮ]6Zt'@U,0Σ{LV ɓ'CX ¨2Е ([ds+԰"%2=55뮻MM8|l5A&}y00rʪA/2\FϜA<sHLԘ5r`p%'2l0pv ߒ]PȖ!Q}/L]+ބF6 Bg^oy077]gpV>@;R9`!N1<#iTt2Hhn3;C?%p9$ df^9dgf `i|JG d!0QۍF!FN'+[xZf]_\B{,0#0#0&לٔmX+isf:Ɵ~.`F`F@Ѿ|S\_=׿k&qBd_/ʳF`Fh18·+&gOLt Ģ W&&\B\O{_ 8Z.VH/"p'hYmP8 Wx.D+9]W4,SM .WQf#0@;-+Z$ݷYNrn>cK'NhA|~i2DO~أPͰPoX;!C%c uyby|xdۻLĒFH2#h^!WMi$ E.q,nx$H$5O^lITqlFc hH ^U 1n_"ɘ`lKs3g|i4:33ڿs$?i|ƹgE~EFyLNbvƻ^Ԣ ,NtpD_˧wOV^GNykMKg2u|)^<'NVTVC-u7  P*4|ӟ6ղڑKPxr_O-K϶OT{cY \~JPRI6HPIL ެU0u  fZP/= ͏ 匀qlڦEzչ|<PWΊO_9cS& B{B݅C!u2|˸=&2K\>і*>&o+Kwn,YuZ&;Uâpn $A@|f?0m6_cøyif:W;]N3?*d'sPKiҮAԴ'3(iW׉Р9k,+yj-T).PHVv]X* (e`pΝiݶm[GG=G߽+2K>LY(.ݞ+2e új2csRp*pvvv׮]wy'EoysϜ>#ܩSHl/<G֭Pwoxhh^ڵk9%nu[/sUǏ_\ z@ ݽc=))je|mT;q@`/yP0@8m2]'dڒ#jg, $~r+rR|_ntv+0eXm^ZҨNW5˻NTTkz'gPE)E[ui\0KE+X,Ry'6*/LN;ٶܟmu{Պ ے*ÁV_o]|oq__qS% NhT *Oih45   A \2#i+5mܔm{Ê_ImuGu؂! ~I/_O9V#@]t^_/*ub_4hk~mk\+KbUtS }=Rƨ<ɓw45($)[A`J˸\|A]&+e:уZX͡i-4[ZqMb0k21YUhc*㶽ZuzgpliXK]|F̶5312ٶTyJCŨ(ۥ5 r"AVՊiN}2f5:1r}FFd86C\gÒv 6@@P9gI(T]g]F;5@@D4    PA@@J|y&@IWҏ(JAc   %M}H[Zzzt~[7ct+k@@@`y GU`'%<Y&F=uF P>_+<-O{ uG3t(a/~`0lԟOihM'Xe,򖕵[(*#ECzlY8'|e]2Q[    'P>ax_x,J|3FL$d u~`T@c+MpEHwYGXuՎ䆇xvC )w4%(G!_g֡ZA@@ @ |"@hUʥXOHRHM E9:x@풜褕.ZφZ)B_Guh U    `F}>9Iiu6m"AqcpƠ|:Mo SVœ:榚X*H!Pq>    Ps(A@@J@v*B3]2@o@vBDb~~>f9?~,$(k>U^^~M׭['⋔< IDAT_)ݣlˆdS ﯫRVwy> |>>02~Gvy]}n0+A@@\ qv?xopַ4F WVr[ voP{ǃ=wz/g+@@@ WJ<뉍cE\Cku[i #Kg y]5rG}Xl^ܮ9Ԃϧ>φZ68g~\Q|5^Wacr6pp @@Fsg ;E؍b`umm|^5 %鶚JvxmRZ1TP&rR, 6)4Dt1k)[(pկQH;ny kx(qVH2OjI p qoE|l@."ݪLRh>º,'ECB& uG1dtN mҌס.FSpU\ڸ(inIcˎ扮[ooVCd@@@ J/R_sH'X/31Q|͝.oB17|ʰhlZ|=r'P/6pHq#r j^uHo=vnk6\~%]ɓ(qOihY{eGC._cG~h"Z$*oE+1Ԓ!Ʒrmx{59˩SfgO<9~w[ǎ93sO,\)Z, |+mQò CI, \>뱡qS 9~[xhnu1 (:E7;}aQQJ$@7gʄAk׮YJ @@@ J盙ywV\kG /̽vh(%K.Z1??\Qq{ֽ>,(-\y?ռĊdsX 3A@@Kp {V}O$R|'"o!+2B"PZq>z2tļ~}_ﺋ=-ɓ>"obrk=.3K jA@@(81#{7BMx#=jgA#D@@@@|EN1_8?Z/DwSj n$~!D O wUj=BUADO-*;MQ+%z@@@JO拏co]?Xfe{7[wÓ2?ןl~.sޭzTe/~d݋x_G?i=cboߥdD (p%,\KKo}__{owwl njغ{X~jx\xL^i1%ɳa/n[t" g/wW= `>[yښO"1o\Bx{Ԣݏ/e?}*=71[h¤Pj'ZL&۹#f=JBV-/40%Prq> _oh?]째 mG7)z䑡+^յC2<.'(ٵ|<ΛBƬGGE%@J)֟|?Ys?#?O$9p|'NtV l_q+QdxXMח \!|ԓTU=}#œQ&ZU*yෲ[ _Sr?2D&o^No(rBUupV)@@@L|>"E9BC(DUTTWQ̙3Z\`!"'h߽k֬ZOd-~Sa! w󘙞>lSb .6P   z  ^_K   c%WKA|`#,@ v/-ZpP@@@@ K%;vLag%_O\HY=xo]Y]JMoA@@J@ |6;LNyZ"Dl]y>m6   %۵dm Վ$Γ%-(d%5OyO)mJ/F)ԈROX(H"Uhҫ& P³Cq"   EF}>zyyXX@sƢ.O#pU\u4ԭ&3dw3T=`<*Sm1zQ[   EI}xTcLy;_~Akns؄" <9_O4jzwwn4ϮL"N < ;PmP6D0!Ksrb> @_   O}>hMNs PT_0Ge*#nLb޹;b,H:b!(jQFOSVhi^ ,kx]' rAlUseNcrXQ?(Z]{: Jr%צX7*hz)&٦'E_?c@@@'1F   @W#|x@@@@ iK;N; _O#(uxN(H'8_4=qD    =|Jފ޶2Qz㩪nYY[Wt,;oFuk&{}>T__G.X44ޘ2' yy6Hyc\*1º0:V/o/w4WpϷnݺ͛7ݻ7-:A66F[=*1 yE/˾| vv    .UUUՖ-[;;rQ|o')]o   M>̞={ZZZ*++s?: ?φZVS@@@@5\MMM۷S3& 5,b̓^.{Ų Kb   P\?i>wmhE/!g-yAkBaK?]Cq@@@ {}M6^0Fp5|>`W+@@@\M>ϗP   &ՏƁ@N F(W@@@@ '狴Tx06&Tj߲-[s jQ:D lP1@@@J@||r#ݡhvϔ1F@88PebAx 2_O_I46,|hĉ^[ē‘p0tDWcIT{ 盜v6QD]c=ZdM\H&S2bG,U$E6O +7mM6ՉV]Ȓ{}>H}}=`P`xHztgiLp44(ѤH$dEB6l)i\Ky_^IaHR6=Lp@@@$joݺu7o޻wo,8.GǽN11O+JxZt/|E66K ۱ĘGc[ +Zd/\UQz W&*3dI>j˖-ǎ04OC3Mꋈ>FX/|9R(Ǘz$Y5k:p|333{iiiDg@(5Xl<*dP7˵̳%h4TRϽ]a34k:X W|SSSkjjz-/eTDzu68/VVqAhnr"y\X@A9дF nBT,Q0_4=qDv#oDt 257xDxo:-#Li^eԮE[)D=Y    $pLC»jL /lVHwvDXK"3\=Ӯc5#O˿;T!*A@@@ \[n{bT|X/<r1:pt<Ƽ5γF1i rNU:Z)һtj(TUUmٲe``رcx{xHO)A%G}4gZ7,n筣,l( |333{iii(`Wj^gC- ?)9~ <vȅj44RfȨ5    zw0bt%g.~PHrg艹y"C,h%9#Zd#cG&ZP   y |sk|޵Kyy\pۅxJS7EOI41E(:zϽ>+:䕀t\+t   EG@aQv>    pPO½|@    P8 q}@n (RGW(mz8| q&{zo*tšU( H   D|>XẑPT<3~ZZzk.br8B)cX@@@@E'N8|Tl.R fj9Pzxa.{MNNOOO;YYVxoXOGcf8}6@>^^#QA5j?0ȚD*@@@J>ߺu6o޼wX,i;z>W)gelf<W|Dj˖-ǎr4/" 6t "   Ngٳ2kO{gmY DKs8r6ov$9/{ |}555yRS?_ ̢V_vh&Kz|Z=vs+ @@@%@Nl8i>wmKFh7>UXMU}v[$MmM(7mڴz KA@@@][|>w15    PܾWKaR    .4{ $0lˆdA@@@0 +A@@@ Y(LEGgﲲHCC9f)rZblJ)ݏ@(|7R]k]u:lPs3{i#*k)Y ) W>`b3=[Ρ@@@` F'NpNٕtvkkxRCd( hLb=Pz0;%K-m Վ*.c>IK9|ә1z[lDttj@D 14 OC򧺼qVTCqڵ(W$Ӱij^%,HI ̢yL = F~e)ZQ(6ͺD #Z?zhFr(Hs|A5FGknYߌ"m^ og, mx-b<] Z%]G4)W#LIGC:15`"֓+lV7i\l,P]`P    z֭[y{bE,XjM_pa*>1p(4'bl|b2ӐQSO~=6A!<\B5jbVQI1:-Ē# @pGPl200p1KQڶ94QҤf?-7WWaQŒ}H!m0]gCtow:(rH)snMl4U   A>̞={ZZZ*++-juiZ\&o(Zh^Ws ]+-S1?1/uyƧhՈBy2td!aCbLsp9W|SSSkjjzt5)S<N#_\eNv&ޱHw2GT(FC2a7zwp.G#LFau:$:^8 *( e{Ν;t^Jm۶~<{Wes7twmsH`vvv׮]wy'$sss<9gNeԩS$v{joPkk Hvtww;G(k*\ˮzӦMWv0 @@@ {}>By`' z>>( ALX|    P ȃ    MA@@@;`,ަT IDAT+/Ҧ^2@8Tv$Zq]oJLf#`0znK,ȃ@|! ~6Z޼>~Zo?H[ I$F̛9%RkKՍc{    :ZϽ>_4=qDv<j؄e-;eX    Ȅ{}Lݏ "c`mm|a?5 %EH&C$WI2,8 F %]LjZV&vRI(MfF &^߿ѣwx >*O${N1 dtҼ1w2w<º,'EC㍼`4a>Igs5AةɯC],v@YTqQ( &+BˎRS7@ipϷnݺ͛7ݻ7>m>_MWr)ALO`t=8)D\fq7[@rAoaشz:DN˦6piHqL z6%GCbݑyp@@@8#UUU[l8vXf➆fWoO._czD?kJI3K RR1t|333{iiiF놋Z7.W|SSSkjjz헿W>θe"&q%Rǝq/,?*Z (փL0G*V)~܆,bDx磼x4(    P0ʂΝ;Lm:::㻷}^f1w)[^^~M7Qzw1z6fggwuwK277?Gӟo?~QN:Ebkמ};I;f .$hCooO>-e U]]iӦիW/@@@ E|XP/p Ws $   N>_?@   s "    P    |>    N>_?@   ϧ!H9"mtpFY84 ұf!   H|>҉?c3tƓ᫚ 6{q˻FR7@@@@ E'Nd7`φZ66#y(    I&''x\pC-q5,Ndꈋ&2UX7zۄVB@EC^) S   %^FV__GfpHv)H7T;l0lҍ;{`x("T4 6w\H00]4V\l\T)W|֭ۼy޽{cj6dquĘCg"Qu"Cc!iwm>ZMUU.ϖlޞT3Oͦ*^HY#.@@@rE>_uuMV^B,|>d    " ӻϗB8|%`   %A>_I]'Sm Y4Us #Jޘ*5cR6igd(lP fQ:Uo]Dxh51[Zb=;@Hn}}= G>X7 %FL$dy0Uo,EC]ÁVqIP!,G*MF3Dɮ`8k䪅Og4{YGX6z]L׌   B s׭[y{b1;㶷uM5pқKcjԔzE̎m/ŵ1{2Ya=!BgA>PL4fkfX5Z9e &zQ   P"k8vUUU[l8v옹=f_xsS?kͰּZns?ԹӡХ^.! @i GxJUޞ4qfffϞ=---ODz(\(. TNj&S,K 0!O1fKRZPj-ҫKMՔV< XNvt6H |>훚ڷo_SS׫[5'RZYv) bJ”7B3" >BYӔxi\z̼Z5ʛXl0Qܮø&ȭzfDBmc@_8e (DH+_pè=]|DR)j y%t_˖Z]R4%-1:u bi1ќRn6rtjCOǂ   D@zwI*W]]iӦիWCXA@@@`Ip\DB}+tOgJ}>3AH[!=Y}D)Xt,i>9W-Ϸh    Lree:+stU#<@@@ P6Hu м=-pή  ,eڞNHӭ[p!.ua.q>i c@@@@@Jn,}OGgktly:o(aXZ2&Saړ%00U~mh´VnNT2+[^z#gX2DCQ\ßOq=֘.KNoVW@@@u;M|] %Y|E'N؏G[[ē‘p0~pC]K'F䲱 KRkLb^?kB6|m~'W/FSgԨ5K(Z|=~~]oS-M,>1R`_Q%e!'kbJ//1?6s}F% 5pN[kP.R꾨CrvQ\ƎTZWWW?3=V;   y%}Erl/PɎ> u" jo6n TdiKxv[AݰHfͬ`+W8&CALzmO} }=yO_M/~ZdoRQi}#qCmUDu, ÿ%tqcЌj )lZ.133gϞ 7q@(5XluM s1u'fiO3[LNH2yPؑt%Gt0 @@ 1JC~*/=#-dMM34һf7:Zze(ҺZ=U&ST؈B!]C2+k/۞_@L&+"MDSNџ*!1tҫ뿈RI&^Q ՘Pl_1c<`\K9KE꒼4ywz5V6i4XiF=@>ߜn\>YZn-×'32AэJn?Ęth>^k=K)`SS"*V=*RxӤz?Nh-){0u*=^lwgfXMzp@@tNGyg}Q}+il$b'8^h%DZ8?6|/3_-|%GuWmi੧l~={P4nHREB}2,C>TRեk{I7Aq#G&z1oԚwgfX}/RN4kw @MY*NfϰNrF(ƴ( &ӟG~Mf} EԙkȪ;Nf4NMβS'ٛ3 3{216 L-(d/Oϓ1? xeLnɚW?;&b{RՑ3 F)M35Е]5i=B&@}/ y3^l;D*ywafY-^n(h˽{7k(G=Ѫ>_տ{!>m_I[jw oQQQ|Of:LeC޽~CCC7x HzцƧ~<;|5{݋}q>   &@Wqݓ'ONOMiܮ#[›;9F+?ujԩS<}NV ojeǛ彨'iV[*M&F[+S 6V]t¸    P ;ڧ3T8M۷P^wqRƕ[cӬ>~0ƨ?a*@/GĉwOӧP] FO8q5T;GryO{{3 r.P&#ؘ@!@!P3rڣ%mLaetKF'OӮ)U,X]~X Ӊ%oL]52vH fEUo]DjM+n>    PdP3VfبrK}}M.36Itn.ESTM aͫYͩXHe⒮nCYTl$u4796u? ;iani@HwȽ+++/_}d c6o޼wX,fgOtNzs):cLz;R_OiF]s6+ԵC*yvCUZkZDd@@@twBr^sw-[ ;v"OC/133gϞJ :<4FYפ. TNj&X/=L^c+l:G„j>P-mHiA]b޳NL5t 2KNe V/y_љl?ۥ;tM   % 3sk9x K27S]Onը[(K*ѫx-KN3@"]7ޮMNX1;*S3t *)ID 'y:5MbnL"4Rzxв$UA?1^&QjGFjMmD.fЯPg`uצ}MJWNoheL8:0kOnE9P-7y(䅕sF2RU'X)|շvx<}GHPJ=խڤvr'_3|@$;2_RɫG^h v|}Khz bnʌyjENIF-*sh:o =U#.~zu}9Qvln&Nj_n麩κN#+ʤ[~X/0@`I oȗ,iΕ|իW;d Xb(gu.P}MUIʿ(n_ c\RG}^{jDRUxq()ۣHژǑ$JJɿޡZATE9WL߉ڈˠߢRmڗ${%]cC{9^p(|4iRr>𡭊 *+0(Rۨ(sxoQ@@` ;P[MxP{R.ٰawߝ\h&~Z.uqHc>ׁu9Y` LK's8z:a;'&_(φkoQcO$o^o  K%<:#Y q< ͍~,ͼ$WVX +~,!U+1Mɨ znn:u8Fr>Cߩ.Ѩ^;zwG> t)3Zb!m Վ$(нF@lo9sgqo\])?k%ל}T+ct>=̓uu6wj::[bޑYu P5o0RPS F~3ɄC]/KSIf(Wء̬اSVsݼYz;K    4Y+WYs]_nG?oZ]|=6ȽZh{1-&JYv-jA@@@ƽZkkk;vD^87bgyWPS}*=iw?ádˊ#ʱcǨ>'(e%CQ6Os}͚5 SV   $[[Y);%jsaRE7˷ʡY GG>rh fC|_]vͭ4&Q%wfk4- Z$J^8px8)(E[R[پ9=?<;~mO4U93T8kJZuZrUʕkמUWthzIrFŇӧOz!FcO:4#bޒ"]嶻k#gΐ|gE»0P(jKhgΜ>D+X^gsW OVBwJE_鳘"~>Lܜ0G]|w^yf&i1ܙ9;/8MgχuG   KsѐB󣣣6#q>\BS]]}]D7qdІ[4 kù98|NA@@ ,3S}4f3ssbFɜD6,w{+jIũS|)ڒr}NpIA',{/gk}V;IUfOb 'rl/٥"i,^f.AA0|O} Dri |>8v2ʂǢÁ߂!b}>lFH>9rțoi#[Xr%E()>2#dB@@@ *dmՅe/%C-hR2<9{>   D|sΫ(& %%Ozn%ܡ'my*#'O08޻:b    9$zr>u|Yua'@﮽dG h51e:e+A@gVn@PНQA&eur}K4   HZcI*)i|.h5rUHޫɏ_)A >Yg%ЅP겿0Xgժ䍊 \)bEU(2Jأp l es~.;[Gր@sz>hA7W l cQAGY!nf&@@g::.wy8vtww[ <7?զ?:眳OQ   PNv)!ă[:#-[h($B3[Kp||@J*!gV<X@@H#PZny찪jo2Tλ-bfYtpSq |9RG~x$ U^YP\4ϗ   F?RՖ_ơk>HϿtPK߾ڥ5Gv~ꚉ&5=8{.tI̚y_XFmϷ`th  PT(JroRGL~DR"2{<_St}[v:J.^`&*odƗ/^a[(9(. p2~΀?⇩ԗIN9y8Y5JU/ц֢|碎*;w*|آOLYdȋ. =zOdl/ü[J &yb >Z3gμ[ʉٹߓ~{뭋NfUwի퇳! J~|7zj1CKG;4<}E33qYLkRù q@2._Å$HN߁uk*S/ll/$wOzJ?D<Зī8ʖO+S˒   v٭p x%ZX˪"}W'8P 'dPRˡg(1ˋgn7|ٯ_98ʟs{yJS.p=!/FFq<7Km%Eu Ԕ5{6l|uB4OL}~()q>(n@Ï|g~qN Cuntb&g$Y8(id&71qY1FqR+{:syb]SSQMJ %Lu+={32Z"y)ϗ@@IrsOݽeg=h{fz`L|ve4d9 ڨM#<+wGȯUt} +<{7 NO!R:Jથ"%XGi\eIE6nPv bF/)f.ʪlP_6!    `A?p[¿0r.TӠ|_˭ꨮ'ȶ[o+lTe$Hlr{[DSʦr.4r.>ꢪ?mϷ87,~q?0>SjgLEHbI0OpI\J?ƴk?)d@o{3zu".tk :`z˥oiB+@A΂29%8 y\אrd{ ,0eʒK ]Fhn7O >ߒ?[t  ~s(fN yi`zVbZ)9{.@8묳;v%{q}/e52R}w9Y+,Uj*շ Z|wxEP?N#qYbŊW_g}$l|AA @@h |s{z{{O>]0^ee=c5G|zf?{湌Yo+hn_yyG>0瓁pI=*VD%8dQQ>s8   J 5rƸ@@@J@W 0p(bbh    χW@@@|!;   O|OkG@1vb>m?hoŔ@m[GC=qb&ƚ/|xFhSjůUҢ̢Wo"f,R.U%fѝ0ѻ_y˧6`_)E3 ,sZբo%0՛^얲7Oz%/UEƷҲk5/$L+kp!zWRy*ogawPRiCެR.gQzi@mp`/>/'`=[LN`x} /rCh8ȷbIGс||~ޑ'!'?>yܑ'!'r ?< 岨Hw " d?TTe%E(]J 'ۢbN}ZnO?*r"yBx-~;daWv[jY!IXF"]"*QЛuC_]'d&?C700u ̚C< y8X UЄ=CVmhdvh2#zePY0,tj1.7ЉTݽ4t!=e}MȄJV "NQƣ>D:\)\Rr%9$.4ک'K+ݞ<dv({)qm <5>?YS<_R/ !P -wp=Fq]a1\s3Z/t"浺r`PZ?u4 \5YAS΃1/;6FtX46f({9nQb~ԨWHPCf%\[Ja;XRc?ə:Y@\ ^x/ɤrR~c(O:P+Ar1gEl3` mPP1넆fZ_N>*_paaƉ*ժN4z}ÈM8@֪Ð6Pq*K],U`0,F"[ ^~ju%2VOpw:rjqL%_A`WcEQ՝1A(uy6(Ӌ1w뀡*.+?hFo*i٣Mcp?X>K{8B{{6}4z72fIv܂%p*)6P#MM71jLh`$.t{FL T9 W.'PK !\' word/media/image20.pngPNG  IHDROZx0 pHYs+tIME )W<tEXtAuthorH:tEXtDescription |hardcopy|2012/11/02 14:41:29 lim_j SGA250167(x tEXtCopyright:tEXtCreation time5 tEXtSoftware]p: tEXtDisclaimertEXtWarningtEXtSourcetEXtComment̖tEXtTitle' IDATx t&Gu.ZF?N̘i&{8kɒ9#&I@HGщ3Ɠ9D`K$,.cr*0<21?@͌$maK޵߻-]k?޽UxgV?Cc](:AC3< Oe6% )WRC BGdžB?@ HN1"^'>0QIFJTR Eف '*o+)4^v&k(&~|  H2#0@+!pWVVVg__@#CHz6ҡQ> 㾐S&!'=x*_J, ; ?Mk(˩RKzL%!Zhb$U.VpBT$β"jDC )Ɠ (,vΡZRz 'KEQd~pQs ("o ?_$!GIl*M>u+[Jx QNJ)Ͳ4 hf}Uj{AԨR]u333CCCqm2<*\. /~v>c~Wε8 1!p 8$0 Z{/?.ȑ;|@~Al 0FF A,Уn8jJ7]Q KjA?V|p$l BHAd>,b,b0@+0H Q^/ crBYړcZ#%BY:mUڼt׉f.˸A8ʔdVR Yq:׈yeUV'Bm"t['%`SI)&)=Y=m(ujXM/ \- e,Y2ɠm)ih,dP[,𲂬MW*2!v~/z覛~+߱&#aװAy ׹A!U.#DO*P<&BzROY/vHaq"V)鞐]uu7$p@Aۓ0{)#L)fJC*"=cNUlT1҃k~/8jIoU;mҲs,Ьo b{$>_ n\Don\j4-[G~iA~QvͲɳe mRFb[Bj`v5D6O}w7S?CiLJ K/x;Rp(NrJ*tA"Y!69Ov;ç19yA"$VQK1 JiJyb5Y&-Շ,PT媒H G֜HiȝcEPZ#/v>df.~dE J yWOke>=_:J$%I 3}}peqҹn3VK5BE4ɍ,uS*D N VxmnU% V$dq?ϯ~a-׼7Cc2߰ tdrJ³CIC.LoP#b8uyK(7}K0Y7*9&/r6s& ܔRl%'hUm.uW@[a=Kzt&|t{Љf&\ e&uD@WubV:e$CƓiԞsdX~ೕ* &ǫd$Wˇh^ΫmD>8NA~6`6xzK$H҃*X ch?6P^e5%5R,%i.uH7 JT&~'0fUN\Vbn@Jq/)t yԖꂀ{ruSѭWiIJb{.B}G³Lʺ"-!gz@ UWO"J\(\\X_'N?㊀^z]DkNJi'"q I[<d:7!!{3+Eo>8AhB4r8TCSV%lO&Wti3%&fAmBӹ TM 5Mm,6'yJ%x9yP>Ճr'7@˖pT"1gz +`rm!JZWZ:""ղ5!e"'83G鮒1TU7W[7߲.gR5F,]_^V%%KjfBtNSId[cR" m$(ջ=WPN )YBwQό5X_NClIu%x+=ΖzS 8C3^jTCIKPǔMW>'&=454:,D@:{YZ`e!znVsfk'ZI˲Tmb뮩E歚FJKKSz}鋟!W'+"G//Wx{ONʾfiH'(:cZrqx(I놬@I]&TdI&,XU`~\UJӔa8\GfUCQ[%n78ѿn3s&4Nl; .untb6f3pД-I t_$X+T IdAMf> 7;}U-e iz{+\v˧]q?gKy0,>{xHz<-ri,Ć{t)/><$Lۓ߸uSW_z|R%,6rx.$( ::^s#ꢬy/bRppI~|{K1ԣ?Y!%xkhϬWlqKn:;II]="Ҩ4)҉iSUKM *˜ghx&ff^z̐4rFo \=sD6nqj$\,O>H+RVzw|~ C.sݻSΞ pIj*2?>=1)x@.d^/饪ibE*nW\@\mWqs\?DLMFVXi*A њ^RYiR"IYVYn{^@\`Tugz*Cݷ%@J^_=+m@F`h>*'M޻AflpZ@8uqv-:Ξ@I4_!n?mW$JHIf־@19PDA8`5h$MG Zj1 ^? R#-kEqe-/% ) K t:s:KK on>3+:eClft+N-5˚<5Mi|΍|11,7ɽ̲6}e\m8v0\~R|٘S)ǟ}d}O=2@WG𚝣*Rto-?rMyr%!ѹg& l+xbǼݾWZ:{ɈD=|k.z.[FR2dp^>! ʓEDmq CoB'*pxaD(S%5TЍ>v?w|r<_dԏ\LR Y+䜠@BVns-0'~Ut4AAiH'S6f[.fml?ZCj WX9&f?묳{ǧ8^up@kd7,BOYߓ{ 3픩G~g}6#t)U{PtP4Aqc0uBN ]=E:o#&)Ȃ9'(م"=iOf!&Dy+8I& >J}3E(l!'Ws\:y{2uLÐrG@?3\RyMוKYdH<- pk'_-++v `R &i4#7N3aX,o,_er/{&[[ef{q:>WvǮDHi3dfU_bL t޷P"xG VIO3TNzQ{RŨGGBjX(ip^KMDAj8okS/zU_܁T? ,/5PXOEҹ*LlE,ʪM֊r뮛 NK׏{L3 RD_Z)ibFC@7`%:;N9to6əmYhnMCFIW7o֛-B| ~̍p* ;_n뿫|]%p{Ř# alߖH6S o* Fs = ?&#p(;'{3AË'pb` Cآg?MB+ 2-ǥkUujuL ۧ>Ƌ:@l\G≙THzIIMEL8Cqor 1>ά[)N:K?Mb+j&ZMR+&k Z[úM6tOXM'+I ޽ҔJ%\Ls/ oX^^/qM1}npK/עs?S͚*@OuϸA#R LpyqJ@.k$ 8#J64q`xu[6JȬitHC㪔' 44niRe)ruSlM1QLS=ܦhD'q.i=$Ů:6 3ɀR.RL4,Yh<+++#d 53GWz˂ 6N+Cp } H]L0>urMe˫^<`{fykrt?Da%iuqŔ릻wKS׹0:ff(la7E!e^,t&OJ$4J2M йn3V{5 eјܪd$(Mrl DŽz(8\ȅUz&N& >%X_?T}9 /A;M et?Js(ICY_j,} C3k3 `%5N/,H*72/HOmHyP"P6LZ{^ldB,%sn6,qfUf$[A29N6P f[jxzrQYUQřkNJw 4HC\*9fTR$sHM-Mo=%$ /nie:"6E+.-~ʂR&+mV :C p%:ZdE z{;'ЋN~%z\@-.<Ӱ5=Ee[0.ęQ8[{[e =]slSIIfVJ3IS< 4<1MY%K h "4 uJ\`YZY!}auHOY ,Jq)hl$VsI k0Pgzq~ޟR&gl1&vDڊX3ں%~oG-gJʔd^3̱xJ)ɼeN5:1'\Zd%jܔrZ"6'J5%48X߶W+A)/A.7=SjLkΙbq-ALoF5#eJ:vh րe`, "LY90$n^q%BSj)t++Nn&vOJbh=Sœ$ƩRK,=90C"Igtnѐh@Aa.R_wnEV.]ҡmM|VȭDg(RJDsZfTs)R8],.ϣ?r,'fȑJ;slzQ-=:1"4OD0M[ {N )ԿZ}JV|n!WGA+1 s3M(J.IFJIEk>+:s7]Yb]Ԑ sԣ6RJ/_jVϽ׷eT;aĮjTBY8U,(ք?tp@>t_:鍙>MKI$) )3=3#b2 rb'd|Ef#edG_'gz^mҥDJȊ+%NIfL(JwSOY*%Ux""4]& RSw@JL,5qYHM"C27HˠF")gg5DźR8Y,;x{b(89(ݔ,$4[BqB$A656aXfkzgoo ]YG ^Q>$#ڡ$0cD.Ymt$`K 7IB' z^LRhDbDH~)h\l>eF`F*o}߯>\]yzo^cGƪ"2#0#Tqi Bq*eD㪬 gF`F.)dH=d#0#0B{ripbEt0#0#P]0 <ߐfIua#0#09#`++rl/gx#0#0uF@h0 ԹRX<#0#0!.= ]f0#0@P=\q{0#0@^99|8'e>#0#ÍgF`F)'Oml:B\`F`F^p?[|'Or 2}!qgoi:S*̍9%PLVR a5寎|g+^_W3,^K/="Tv\Q/'seΌ@8 .>{{ZK/9sN8Q)/.wP_o7YƜ5. #S/,^~y粫W)MRɓPPMoyjrc./f@յŷj+yVbF` c}E oqfo\`F`fBf-֕`F`rۛ r=s8!M2*ԡoSF"L~ D4M5旾)[~rc,`\ۃ<ҿƴMhO#7vWIq.;;ȝ{[ IDAT35#[N!Yqĵsf9@C |:UieBAd|:y1*έXUS8Yզ푯oUydtqk̝yo~{c/~\E+櫯~KYMtͤ1o:̍hF3oQNb;E}r.߼?e傗xc2Ÿ<dWs乲iFXK/$mʊU=NOOӉElqpY7\ZmWJJsуסtzlew/ +Uߑ8o ہڡ5mgԟsF#Wa t/\wyzxiKW+Frm۶˥_o4:o,8'Lt:%B:@'F|Gv(MRkbKbJqJ/[V;_[OѻGdzޏ+wO|U,L'\s Bu ʡ%!GXdy- ɒ.i6Ӌ7oE?cMf2y»I\SiG0+{詫3<CtB ݃:U,  mۜJX}k̍9&lFA Qici}Q=w;}׃-#gaq, a[s6ɭ|D洺9NUm_92ЅFvn++"KGB9k)$6|tEw]B39*^cG>xZ5R7]ޯs_ J ?.Au^y W]=P ][ͩ Mq7jTGU|98D1͗}ۑcWH' 'R pNI(KY2n 䇡 c tb#z;G^[6 cGXk)j$m[忆1@ jOBvB!\+&r՞_:7_'dc 0a#mBVc0oMhR#wnܘSCDŽ@"#ц/{%qu 1,g۽_\:s0$o,)Qx'b?4^mőv_ fiVHT]{DC浔4 rП[xX|Yw;ꢐ%"p0)/|ĉFPusΟ߹j,sgq@|5ĭ4`fGK7n*[~VkEq='6i8O50#0Y%/a©4gΈu䝻Q>UO(ug)z"ŲF`F\FБex[ڹ&N=3ۓ_^>sNڹg5WذacO?^fpKs6/|*=C/5d4G!2&߉u[ߢ#={7| ,S6v\tQsh?CAr5һNXzhEvW2VD3Śn\{;#G?4ajz2NIՄ*3#0y ry<:7tsΑ+ Yӽs;V`F` ;ޱ?P-v%ofJ'wϕ4 .:gmL.¹#0#0Wo7Jn|;\=gU0#0#40Hl*NoOmXKF`F`:;8Kn\t`F`Fh`F`Fh : W\-5dxF`F`@]֨G`F`?}q*# pot" 0#BTL쓋S42wܶ'C).nudji2 #0#T+S8|0\a'O?ܸqclx&)p8qb˖-݇6FKaZ _i;TlK3![n\/첲\vBF`F O~YovJb꿅K8n1#0#0"K/axy!3i8?- 3#0#4,pV&wЈBaJca6;Pv! DcUK6F|X{FG6۹*q37כh3(}m.]b[颊«tJAߟ5`^H)g3#Po6]#3Miqx>E+7-O9V^מ#GtUϢY[x\f?/0tRS[BL]M]$w/_¿n Mb**;̐`"P#lJFfVfcG޹={yrѵg=h`6lt܂U!~(P\'|C_:tL0##5reo~RV, z;ww׼DMJLa;:luݻY(j3$Lnbi"u,U'Vc+෡V|iqi!^ktʮH%KSkU+ZE=7oD7Iuy9@5dQ3v62I/E!#ᚏIojk p #0@1ݑȸ*>C7t$z=1G_Z/!undj0,O|at !8'(pV;87s9### mW tł"{y\+~u첼]G7>:%Y$u_x doWN_Uz]>e8=WP1(89 u=8+QtXYj67a)X&dFAޫ|ͦK!KB)pnK.$]c"ԀobZgHy^xxLu&$+   $xCCC[n}+_yBw'H>2rٽ]nGM~w}2*1F {SgRs\4閆0Qf9?aF`mmM77Hpnfe3vlRi]=,/ IpY5fl_Vm,`B()t9}:WnTマ}c_//o|Ai+n9( l&&E_]sKR Ѥ^!Š`2q#cbjEn'Q=FO Y!_}\6W2K-pF`5loii d¯MNpЙctw{{48P֗{v@W)a ,OSlx. C K T ͙@/dF҉QdpsY=ڀ-43|["k[^# @g_:ve?< 롿sW :4ߍT0/=zZLE|qDķQ1?pn~,`AϩSZQ?|L#9Ja vFm9;,-_ 7Ꙉ ^b~|0#bnb6 'N>!;cdv}wܶ'sqvEaOE ɓ'wvvz+0>Ok ĉ[lɛ?|c;2.݇xg8l8E׭}c8`DTMr-O.J}r/2t/h=,vwZPF!Δ#0#0!tyf]zA[gw30d#0#0&yuzQ9uЀn@%T3|ulܳDa(t::!'𯁞FJ!\8k `'Oj|pLl0YF 26/ۘV@dnbznRI: yΆγaӎ*`rXu\vZruTQXKoO9|;vӧN'sOsbF`@7ldžB9gp Af\ed.ᶤ|5GrL*W&wwKωVaf9Y`2#0 5܍=s6uƍ::7lGZpY;'*^7 UY~̍L j%V|YsR!]wL&)_3.ќ$BB}4'05#P?6t}Y#OTᙅAv^>&U'kva,>0ԯ5xd]FŞizVA(HjgvRk&Hg?<0#Lo4*fybËs#G4EB8.}Vہ) (W$~29tN-SS0oZ( ?󁒹41/"e?8}}ڙ8 q9߹Sl8dF"XPޭʱEJc`* a@! ܃$ͅ@PAϏ re׵gԬr+7ϧFiy)M? Di8-f|mh0|sO&xs#g$dfsVBav0q8A<A_)᷄OY. '0%8n:DALQn4G~:S1^1FœCm@H&}19AOPoGs=)çC`Tzw7_jp*(e80ƿ,"`>N4TЃ| R~XhLɄ)Շ[0LTבc|BV~9V2q._jE6=pdW[)0/2:"zS;_ɖ/>[ ]{'fe4xZ 1@KCV+دSys#4)qSzalk&Jεyו@_ K!zܞlʗ(GCDQ(2 @6ATW뜀XQd x'' ,z9: b`8n3Ƴ|){O!13>>ӫX1 DžfiW/`Pd@b0'.i*hBbX/e62Ԗ'(8,`tH`#*dd o"#7R ҙyYw#Td ȵ gG%8`t`pCwojWOwh "Yam+.(:!_O.ouDB ?ʹJ~X9l33έăY?9`Μ}yg(sfxdPf0!l!<#L!A&L$?Ko8Sq9rw,UհQDε4Bi u.g#tQك&&FLTQ:0Гd>B45ʰO.{{M]|"&Rܦ(#`~̴=!:ffs-?b#Ж@l`7&i@K!,} ;ȴl #0@lH9h(Pʱ2#05@ ø=xqWa#0#@؞)=;uׁ`GoF ֍H@q{M)nhX9FmR}Y#PuxNn!f#4+\ t},PF f$F ' M_* $`F`F9`oϮ^1sU td$q*_`.c,9*[a0 KF yAde>@TSnMؐU_Bb%]SsF e֛F סUv6ݻ;:}/N jaXbfjI*X\"&O2ծ|eF`imwՐ]}Tӌ',.Wޣ$Dx*26j)>&xiUJ%VR-gBo\= oWUpޭ[LMaEaO:d/^\퀐| ^ )ϣ[9净?;_@TpB3k04mdnd@8X.Sߨ/܋|HR "a] I搿-KbEճl>#=E[K 9FŦ6i־lJvxuNU mtX=V)o=_oGe jkLu:ŭ;;Ө\OwĞ]>tULjvokk~G [NTBq^\!(!=Iƍat O us qBUt+) 4*1[_{Œ4CCnr/g<WxA z+_LxzM" _a/[{]בRw=s=AN ,^[>]Jr59CAiryr8{⺳OL pCoO? K2G%Nʼne,Ud7IN 颅D5ԫb{yp-]yťqO:>e/>%\3;Kۚxd%]Ʉ,;ӜJyYc+=U2[iӝEd귈 %l4{lM=$ч;uLˑ rn٪KB"eUC jY,Y§h0!)2L=U0O;'7Qpob1# 0{KV.(@$Sj=-nXj wY $94f6OnXQb&ɬ\%4g(>\n&|Jp y+8}7m k@#bP fph7D+ߛic{r&# ٫ #F%AW#`̥p_ p%1@k#@simٺ謨4fcڥΖBF"Zc>?SM-"c{-Rl#0#0^8煅 &ӘeF`j{{BTɭ!̛`FɅe@:\rFU*X+T"d1C .]RZ`F`D=\qiY3N!h~zPv%8f6LMMR,$0#0=N aX}kϞܦdvh'l##0#4+jroOn ܽz+~tI(Tdj練Y 2Xn2&C#hs]9e]NpLG0xYzIr/W9`Eɽ=.b:ww ->9tWN XcinDȮa1~j9aWUщޢUە߲D Gpy~rTS_r; Y_9V DTfSxi aFhS~N.{bʞzr4_Ut.Pba ޸&ẓ}C;cba0JG!efad[GRG3n3=:Tj5\;#{`GCn^|]1W]#d~o`F#Դ m68#@{{wo^̈izcotvhQ B܍o=bl) Mz(7R1X9ǩ(g;+|-T+(p- >@ 6{fKǎk98% (z>$"l'zGG"`2~< )7y3՗jai5oD52yU=$ xi̐*Ͱ^bSS Q'\s,Tɫ5|EiOj|Re [M Dc̭:^ gkk!ER"^ =\*TY F;S=+i>_@7Ʋ0jseMr8: evrt)fKjԬTr byB7[rxl Ћv1#0 @ x{r있{bgťS= $IB$u-'\:&JUՍtp8CDC0o/wh70Na&SceА\Љ lǤGMt}7M<3̱zmL9q{&;&FMV녽b{< *r['` Y`Fqh\VuFQ&f{ZIms\j0)zyTmFz̃~3e0,=ٵgzbDkEFnQ0tĠEM,Ɋ Fh>Z!|E +?}yYVYKvi0sXC9UXW8`vS$#0UG= ԿUj#Oi^~r1?ۗ \ǰ zrw0@޲pGdTX%5,.s5]VctM,YЋ #™3gŢqwL:}q('O>o>xStɭF-0OFseJl`F4};=7h#PS (\ LP/fjM- F` sii:ch oڑfOjb'j++6qnسLFTWwZv[+40%FWv>&R(&ez[|??;5^^J v ֖>؛$ {3WAϥ)&&"_qx'EtKHvA#RvwM4;唥m)k8N@On]'pCik4|CY7-#7dͅĀ i^J^m$-"u۫t홞t7sxJį dInZ Pu0zVE)+%NmǰJRQRƬ% ߖi?MSXc1FAqVFOspE₯ tB=pAd74=LȺDBVFy=51=eא!aC ͏@L]{ZKGNp@Aba%0>ONcZ&.@ рo]1j#j\5]˜$μNX)OLv8 ˹Zɉ4KC~Lz==<[`:\8u1n,x49k䬆\cF|zsloOOm>SJi⋛< KV1-?3(G]7N7jޤjt&6dVD`k+6YC'oaC)SgEX<#0#( g{{-jrhֺ1%EeҨ5]. >p]eܫt{lһ+kSc=pB2Z _xSVl}r08>aҦ#[5%JhnUh:S6k].hNP&>W Z,E Z쎻2qb+\QpQW%-#=-?]<-y\[.]7F1ϮdoIV~ݯ򕿘da#|t-ýiw Wbh'Te=#WDF݋c}lC\#`!`{{-jn~ /G# {'oSɷ~M;U.8O$:_ReM&-@s+9$(/[{Uoyiwt#Ց}AwC,eФug7J8!K}qXRbGK1tFTAMc#zr9h{ۓ3Əg{C0@x(?_"yk?d<@eM&8}ë*][{d8FaB,do~vj'cndj3 Y]O͝=;%Ti:HR>h(XY5S0!P~zImG{)J߿u!O'1@tF;atpjM2݃Ƞ=0<> H¡IN.V%Kir4h LgVKja$[&`Ef 5h~c&!U'ޓo8w@vi@ Bݣ5-]{ã>|xeϞ.;x$jGC{<>Z™3OGGǾ}ƒmg=4 l̐h(eRɓ'>~w>}] . ںkeh9`nBu ql#]{vt ˖WTM^8rF mi3^x-d#kѻbufD_Co\P)>̃hakd* PS0#X_xm iv?)6KnJq #0#0B9| ,N,SIchz姏㤧ݺ-8@3#w2EC΀ h+0<1=>6ʕ +,zf0h4"಺ <YrSy=n a) KɍPexѫ(oVYC1`U<'Ut=S1#0@+"Ю%TܰT 4,K:<-ϫ8~x:t敁d`#DJU"4?=DA'Z ,+ҷswkJ$jș@;#ЮޞM  10s9gx_ ґˆ?ܒ\rVIk|1{ɩ}귽8y^1K ?C h'R-z-H6CSYYqf V[ e29<3!l@-}ӽ% Q)v5eä#`!ޞ?^`91P. cN7nRt~B&6M 't0ԫb{TtSRݑG-k@w#?z'& WBFx)R!X)9p;K(lx{ŏ <I":H\N&'0@ 6' J1W<-~pJ>!^] 9h m9p*/'4Em5 v2NV]ى%L+st PNzvnU>֪aQ>PД+|jD憪ʒh֬z톚bV&lm}O8nM`|7zVHs'"-Oi-fkl YEFhoo5& =0i^(qR9'3aru,i\Y;K˃3?٣|-.Si1` Dt_kti]ɕF5 dF+$լR]dŭ@ïy!vR[0ҸFi6n0@ "5,n, :]P|b+Q"Z"S9Fe[T_8YMG+|X`Ǡ0mr4`$Cf[FG=;+e<' 8Slᶆp>dfH SLrq uX!g#ޡK1'Z2G@Ekb sB';Ӭh5b-,i>6p> }jM bHb2nWًUPUfXR3 y.5= -mpىz :0# 8^߳r|T0#0@EtBhgK }aͮC=`rOiD^nJߍ􍌨؞:Zq #0@i kkk a>>䢟}wfNLιɓ'8jF㻺Z{0`}D`zz:9>>ӧ טEKɉ# b2;Kӟۜpn#pɃp (Z[+E-zy:u 6m:ᑇw]k˖-w=yoL6}vvvpp0&9wӦM4EmhFߛ75WmhZfFlOr\`&F{j/&UgF  yLstl`F5Wb{\al#08p`6D\;rp:` ^#fpx0Yf`F`JP c<,ͿS!m`|~4TKc fL mxkk(E1;Sl # {nGqpAtU_Ù'5űES@ކ[fR P.o LuFLMvU3#TåpNnBn@]Ta@@@vi\]1.(5XWjw(-%ZŲZuz69s579.i6!x@ɪ=8Ůq:1m?dxQ2SRF댅R9^~0P?&ZQٮفXHMiKK[x:gi<;2ERۻwoWWO=s`:Ԇ멋{>$ "}]| "-?]~WvϮ{6mڴ[?=<<\   `sss{P   Ojo!   *P2Qw6W?X(e+廏?!@)+廏?!@)+廏?V{c-5'Vnz-+~Z]QhY5$PjUh/NCP ut]oԠ#w$;U{HxTXA:9E""Pj/12 7rkj MdSOFXȌR6#hƳl𩱚Lܥ"½P   :RU{ P Y=~1VDu@*Xg2`lYgnQ$)LFC-2@@@\s  NCC2K.K @@@kvG ~>Ï!P4)j+ ӱhz5 }Yb7ɽ;:;:|aÆ|y;   y!Ps{I>D=兪:"ctnh{(]9oHKɁgE"P  #PjODB D =ᇃ:a IDATAx@Fr w!: w6jhoPjAW=KZ̗kXƹjS #"+QN(:uN Q58L sVʾ0 G*mv/5DrMw   QXTq )(nln0qh~4)7bUlGY*᱀24ȐBsq^ R󡖸h>.ҋu7:XgoTS:F "lNugBSHM\jָ*YɋPmGFDשt]wرλ?뮿>ނ9RV{,8zR-M"SAq|x\Qu1 knr72qs]MFDc}Tic+hN>-hFkM'S$ѯ?nO7\s/ܹsݠ@@@` pZzxS&K<{MAkbdrPiSC܊Zhiuv??٥K!i#WΟ??7wܹ_g̙gf|ҍ% ؘicoPö'"k!Szlw\쩉$*Zqud. 4>ЏgxFR>> vN׫s{O{;'TXUe'S:(-2sss=}GEϞ0/ ]~WvϮ{=(ڜ@@@@lnnvۻ~]ܞ%@+a%=K,"!W$7KP{X    EBjHn$   , @@@^H @@@, #0N0R7G^X]R$7@@@pڣpg[8V{!EIܝǀA@@J@)=!|to(;!>>bI-j!#Ʀ уa   B՞*%MEIJP;;|:h8c2/+eՁ }-cT-=ʝG'   At՞.XePyCl^txL-%&BBʤ 9#&šV%11:jx\s)e(YiS; >:(Kh.x_cVX4IL!(UG@aeEM=TGޡzUx,P ;, r=rz7ȁ@={rNe%t˽ qMiQ#T^$R߬d"mNs{jVnզ1    `KҶ hEF tYR_ 0pZF׺9a̲EE}08"Ps{[A@@@`E @(^5&7݃[Q0   kLjoo%xa@@@֘t   +JwGZpjO(霍G3}2;灢J(aR?ͧrTFJ|,Iyroa9oA@@V@(~i>v@@@`^bd(n8+WR7Dw>BQ_ԫhaԬ&ըhү± =ZY6FQ@@@ڣ{[h8B u(9%]:{o ah+cvR*C , eޫ V{~&&m+E7V-M|)&*{! uEqfr)NR E,de   EAT՞%^m )b0XNXNSrϩ%Xc;lj9[ğosDOfm_w->c^/hߘzbܹ}EW%b,bJ   PJVQt@6O)MV ~Z `W"bmNs{.+*-V\-2<-[>1@@@@>E0udұ$aoߵ$z٨M1ԑᛱLViX3w9Z(r%    P ]E;D'f>Sb(EwN@@@ <:fggq@@@@IjorrرcӹOՊ2ýdJڣl2ܰ]@  =xӧO/Us9Ii4N&w!e4ĹVrTQe2zGSX{U{6mڹsÇR9H)J9Mh9X߱ңSb~1e_&R;E;=TSS{9s&bTi>50)OCVWWReRW6+-N` @@@Ajojjȑ#v8V vxː_ݠ>E bc-1(>ond"o )WQbZ0<>CCQ   'QW[[u֍7z O @@@@@xw^    iP{=p@@@Ijo@@@b8pdXjȐ1Y5B=oXJ&R}F`E5j)D\OQ^NTezI25dz(' NѤ}]BJT& A`c;%11&8" DTV36nfc¾)3)T\xW(jjjv}3gdEE8FҐ"},6yÆh7s$6=ky    !V{333jmmƌf;CQ\E OWmWR_|<XsODLYfZF,wԑ#Gv"K@8#P"m9jku(,BB"(kB?L#( Tb?~Q0ױC*nim@s#̈́~mm2[i{oI X45Lso@@@@ 7U{[nݸqcnAmtU{@aWYm3]    |P{g    ]P{޽7 @@@F@Rs1D+4y<@@@@`9HA- ڂG ͞\t qJE#-.Mܡ"@3ib xz^,uy땡\t8[tm)AxcǎMOO!Y]٫IDX_WsȽ,P    Py]G566=z.0L]bdHii[$(Yrn]6mڹsÇx꓋h^}\QΟ*@a#555w>x3g`,-ދ(n0K].)XfL@*   M:t:P'mu!ѤY_w xzԑ#Gv R47NB%&箈SO'y @@@r%@xwnn fzZe-dCH&bMi- A@@@@xTnݺuƍnxTC    P<'ye=ox   %_   "o@@@@ @@@@[u? @h }/+kf5ꉶZjgpJXcSS8 `@@@ @h}guyLn 0֓.բ[vaȶ߬FH%jQ}& ( U{Xlvv B:W:RsSr땡DBt8XL I܌tD[gIU*JppJw   'Q799yر}-Cm !e(s꺺Y?E~]٭e5r-5DS"8_ljzT5ÌӯFE52(1mLnL Ae)ZYUko0(6EƭDxTƣG>}:+3_Gw}Lʐ<6/GHii1ެ+D4&񾱐ii1T)Xg2p$T&.:FɸUtsP-8@ e)P>kM&56VGr7ԫHw5xwަMvyx<:h{H wen xGJL)pljy5Cp@]QHT “&hڎI;J0M)Wy$2YͥMj)iNѴ"@A#555w>x3gl֣ @WmЫREE2ikT+`=WyYYrސ' 36KɘY@]ڴF ghE>OCVWW۠7= f,.ogsQ\Ey>/}믿.MѾ3-ęul 7siӹZ|<&Ĭzm=@ xWMMM9rd׮]~\fQ1-H#- jS|zQO]\hc!l5vrb)-" %[8I6i/5.O&GEиԵTVx=,> PHuO)hwޮ.gߟzޯu8YN)Eoov .s=w}чdaaq_=;a^S/4u-p[[sHNO%9GeJoݺuƍB!Q pX(!    i]ilp@@@ ^(    K"$lh   Bj@n%[640>_j7 R 肯^]=[*YqC®t͡]\ٗU&WP@@@ ]@_wH&dU{|fZYh{(M&OUn:贕Ƶ?   9rzϣj/̷^jX>jl͇ylHyTMNN;vlzz: H[̤W{;ZTtCTfȨjuL&~5,&('Qb~mCBT Szu=@+Z:e_$}"¬V-Ms4d/=xӧOgϢSHjccu$;)zY>ÑaցJtx, |`bdHhVTHcH/9]cQ%8@W",">?u'G!]$T&.5k\,DEʾRXdQ{Zu|(U{6mڹsÇ6+ZĂĘn"1]@|ItbPQ$u5-SKABMkkNku [=2O9go%   E@j޽gΜcT% ]5f^ 5٥Kv"ȧa(zV{333jmm~'HL#xp=9'^[=BcýbfOM$HUhnװ][Y+>hpF @ڛ:rȮ]~筭ZؙD'}\AcS˽~O抺0@?m}mK krT'չ=򊁧=sfEBxJ IDAT,ܻwoWWO=s`:,~;scmH`nn瞻C@/Ϟ0/_{g캇_Vqvcxx͹JA@@$fyYҡnݺuƍk" Q`3B|0'u{k@+{=={6('W#{P{lP   Oj!F    ]ig_2Ε3~Q &XÜڲ=\(tG}q:!}4_L9W-5KI۪(ڋb շ^;$GcǦsQHG-siw95Od눫fuc-, ۅU0PDueE9,GѣO6>!(vg(E7eypd8*ki’, 8#V*$ƛh8Ut%^Wra w   fU{6mڹsÇoCnb}X+XYT l^txL4$ rҎf$6.ԌR}sd_̛D,:G䃀wfU|땱|M0c:5Za"躽cǎMOOg-qLN|ۣ(Ny5D90F)SbG>ʰjfN?9`s8ٖN;-N̞@@@8 T$ѣO^RW/O4 $GÊ`ݯr(VIe#6qIױ^SXGJxM4f*T"-xjP *=(|)FiA@@J:nڴiΝN MuHJǥLL); y:cS-M|)ͱZ}^] Pׁ.1==[T~b9ïs@," @@@4Y= ٽ{Ϝ9c폯%6ͳTf4e6ku.^71g9԰:])f,ͱD(M$xSs{yҹCVWW'kjliDY/95[+4՘Xq!#貭i-k-0=gXkkRvSUZWώ M" @@@nOJ=O #GڵWZmTS3\ aE hF!v@4?˜%:-Wrs+, Ģ@JmJKf$7y\.dGLu@8_K(D$J_y2#9~8ۣ`nvxa[Gf5R5S~rD C*cvײ4K)O>pҦZG@,,eeu]'gb{R"@NU{t婉ڭ[nܸn    'PIǥ+B[Зrr    i#q+I7` #;8   \f# bbsIڵ h    kL\Y٢EZ$2=zoQU$088+(rrzOR^ oC~{~#"-UiLs{έQ     PO bp@@@@)-E{t>F(BGŦow*}6Mԥu*:2 w)P6V@\%?rctTlSS3(yb_@,ڛ3dZ|:-c @@F'~Rƺr^,u^Z_ $RÑp8YVoM\Vڲ$E .,ۤ{}zWcǦtX]rJu5 iNMM e4 2UcK U2TsjNޒ 4 L#uԻ֍p;嬼vrSrcSc2,,,/pZ@y=rA@@VVSW566=z.jӼYdXjȐ*ђi44oy1M&E\kPQPK\S9jFc~'ed"ϲ l&}c!]Y vXQsNmfG2}S^^^QQ^YYQUUyщƗ]viuW\t+.@@@V7{?6mڹs? ~s`W_O/ދpNmvJT+ _rtAr˨ Zpg_Q:p3瘫obݞBJl8:d{f#MuHAݢkp.Ҍh$sczY;3i_[[lz&˜+I}cfP   z嶌W/ ݻw O}0WmעPR9jVhQ40"#A8D-0M}YqDK] |slc9/pS&іByXJƜ8T/RMfC("&{gx 3t   X.xnU ^՜:rȮ]qU(wsms{Ղ/+ڔmop `Y͒ɈC ˜躌W)D'Kʆ$GErF֎,N橗toM^կx?p{GϧZs5YXkxjM'{WQ=4n@,G7%)jo^.$\,fi5\)mP>1=()'eMcj'1~\c7mɎ3kc_l͂fQ E K:Jo=/kGp׸ݗF^Wn۔_|]֤폿{hE)="j0kR2vaqFci$NZ1hk1ܜ)%N)QRAC5r5!2˰lltvvƎRT{ "_mkv/Z析f7%nkjHLE/@v~AcaMf1YIy^AOCwǷE$Ty}_䄢\>,brj^ h}SҍuZUN:Zփz12"O}]H%8?ަX4 nYE|Y38A[RΝ/+ɼE¢B5O@걦n]Gԫ\qz5k2E xb라6:?M\qJتqǍ4#m_^JrvJx6koݲAf?"2s6ni׊ +Y]uB[B;h2\[ 3 ^.(B2SSVpY5"˛xR- UBvmoݧ7䉜kNBb}8\z]>HmG _P~k~}AYs3I5w.9w΢@`5 O/(+|2e[}Иy۝,ԝNNy[1e)\L\eӇ qU-%ӯH '"&~Zl*PAKW ]-!62#i9z&)_;˩)G>|w { X`fbs^z1E    i(rܹ)e";@@@@PshT~_de5]EO0|Ć]bOkff]aƮ+iб2 A@@s:{V?4 ,X?ǻգ'ʈJW~P/.|C^< WS6FÊjs@@@ 4;|/,.pA-|b 7mAatn6+cA@@@i9x$ӫ\qSd2t5NǎGbd(nwy;:mRf(:Z ֦D(YS85: ww𡺖>XM(jv'W/VQ,3ZD="! #hЃ3/gQk8ƣG>n t-M4 mk\GHM\u.‘RHeSAe(⪝̡@qHSwJYYyyjնsÇqw,64")f311hsn47(ʹr/ŵ9V۫i+u{vVfek   P\cuWQ/zo{,TSS{9s#_SK 2lgq2I8h(.W9.'@ze97vz˜I3cھ:LV42Ӻcnvr޾,\!ݬ{k+ C2dV9.vXpOgD▆W{QW[[{wӺ%9h|b2t,@F}M_]}\yan}'"{@-0rws&{"5)H_hU{0,xzLe_P X8m- y }_alJEF?dmt\U*dlʕV^<֩|Hw(ޙɲ5yU}S ?xRFr4|eL_.> F提V,64) OM!kҬ!tv̲ p۝ȉ[7)#/'_~QsϬ av?G]郔sv qS,55 vxy{## 7n3pÒ@EE:WDsϼ#RWokе?k n-1]Ǔ^{#~Jy4=سu \;|m{I( G*oz+aFsY/[ަVHyhF7nz<,R#z~Blę-ۑ7gk_ny\yemIH3`1fOGF?MTA/snUj7|ٺkCh]j݅(%gJ+?zw(^TN|LYӬ?hzINCMeLF?綥)ݫٝCE,>`7sWEި*ŘE22 c khhGUW]UWWy|0DZ\e, ԩN9{5NcL-('"lmH= f^X>aA<{n)އz]܂%w)/xLJ იlS;f3khR~]_oޡ|i؈.gnCsBr S eQdA8pg,ͨy^k,M|fm"+8Awئt";\04T-u}ȱkgǬ>]x2o}GBo4Wz)Жd|?xΥ&LgMfv[guFobJJsO#TS IDAT\I]66HQ:p>1|[l`<ݗVm2L.qk|>~kE1sdA{oHsͷx`;}T{#vYM9!X찊p_t+{^evAƷ$;j|b)vnyne}=c|޻hrDν~PX9lޥy-}pӵ,Yv6mܡni f'fE){v;99+jdudnq+. 4H㕍q}~:zޯu8Ai/)W镗åh4 u'ts9:e~p3[\Gl{luQ D ??Mw;s]퐟2(?=f__ zE /(E!y'ŜJ  +]@ @ z9C@xQ˺4 , o-F>A@@ t׭׺UZ1NNN;vlzz:'2jQu]:{ź#_S&RNӻPDܟK/5K A+:i~BSJ{SdXCZ;^Vn77W>twQ̏8G4G3ptNGO0sa1ՓD\;A}Xu|պu^r).#?Wݍ~n7q:;&Bpb"@OTu8_~ҟBOTTv\&q:whޑyƧ?= B7l   >h-\aCզ.}ur?HgΜ`Heejn_veK3V|xOzO#lyK3VxobXaػZv/^Amx[G-AЪAzzW\K\Enr2-Σ$Ó)Q֍: -who_L1gr㾘<~@4 |Sy|ԭWo95IZ9j) ހ Grʚ+/%wUpqnٳ4E奶3y1# :K.<=S:ϲfN.7q71lqbZ s۾Pukԁt̗քyLѹGO=@@D`ݺ.TuW\A_Guݪ=Rơ,4 y.\;jG/oMєg ]&^9tJUzP"9t(B3dF=??/<+7ODV%m{fYvmϾ%hұ$uh5lUl Ȓ4'OWR7pCCCCpjВqx/g0/n#__k#/ӄwl5y7n?ܪ»B7 +P*);0VU Eg]B9!KjiO&MDcӦMWTWg\\v{4GJ01qE wg,5(`<Vz3]TiGy{iۖnݷXʾh|:x^i˴cxOzq@@\E(/J7 &GSbAs{G"?9T[.Sw(tx_zMr qP,"th0ה36P}i_؎wY%_N[5XYm[Ùsywz3z[:(~+Ci9Eb ~z梋.rE{֤V~-/<0uڦY#䫮'?ɵzյo߽cyÉw?Pޟ$uWǽwY[^x'_@*i}#Ga LN=6lpjjOXycW_}%\qAU=Y-p8~٩(O#%{rkxAф{6:(Τ6GOo,(0<7'x/㽲K|ʟ韞R>R vʽsyei7|Z^?~ifW0[|+R;[9   OLO.. >s(vLxq}W1J YN[0R#@jWS{tC޹qMP*,7 033}ӌ 0;!'X4),JsNcӼn/I3UT:u߷%Xn=ƽ8ZS >$k%x&   F\N`SX)ɜ5"K#ZVUpK p%`A@J@%n:{ r:sE-TX3<~z_ >۫|og OO]Eȍ@eyyEպ*>`CA?'~P@@@@ Ξ==Z;s F4*ݷGMX>.,{.+TO˪(:$ uBڮB>^YZ@@@@ <66q)Ӯ=h   %O6hxj{4JC   Le"mDWz W<)iX Gon?$ E\q {W_}={SC~o[\\tR@Etچ37ZL+:Vz<۳Lb%E=#W]uUqqjjСC4r_vY6^|%˜1׭ 3;/圾1A1!@@DLOIWW\ǐ^o]ܹsvX +B#Om=,ҳLR!pGE#XhD4.[XC _|QXhDrӅݍ5{Y+f:rܻX   P@ʣKWKp.M5]i'i#9Es1JP fu{YA   CQg|m>~JnC>dU`ɬCSaY?1䓣 ˢli&[{̔PT(xXw@@ W8fnXQEbWj__o_^S#ظqp2dA|foW?_=b+KyZ{nS&8_+_?tԿ~f5\] CvT+"ɽ75ni{+I K"2<9|&1֖fZ%   ipQ;FjO__KY47d׳\ZR7`bPʉ>OR—+oC#=u}O{777M0j3n:ٽ?j\$ )5k)mքhnJis{jx%<~o.w ?K}[OpOm6&U׽+K9<(/'vbOcB 3*0J@ aRONM)O&RL1g>?\Ж1WIyv.&A@@H&s/=ЗZ{eO([b}ėwX JnICڬjԁ4S'x)ZujNq%C3㵛Nw!됗U R[UmM47e:Wg Vb಼X|OWF<78+{gf$خ:ɳ{U5S#O>9EW[v<f-3!P̷+d/cn'}xr˳37>O@c 4Uۊte4K0~o4[1gǘq7#,Xb_HqjWG]/Bޘ23mӀ-"eFYzY%.{5YCΝ⊵474 9̹=H0   ]K{VCekcZNN/=1ފ  DW0o ӻ)!g2j):+<  %K̙3\sͿۿ4"pJpeee~EmRXׯѸܸmuu@@@MM??s=>qAg҈h\vc)!WTT/zӧ~s4">]Xr%oru@@@<4v…" z!_9sZ5SE4W^^~[,zw絙?1''nhYC&@pFE90*1(~˼[,+#Gj'@@@@@%;R{<{$!b    @*y:X!Gʼ'PIY[T*¿HHQJ6Ņ ʂآ    P*}=iz!R{ss@zs9=%BH    A2H[ydraQm_|/O=MO{"!򲊊rzUVsI'^յ9Yh`"-I< POOKkQqkE6 $QYYNվ^QV=e)I 窊aCpdǔ#Ǫ}ip};?"WATO\h;*jjMd_jU~3) XQ]2,лzJ}w?*Rop%sXQIF^NJ B$ٛoOToS_ ZQ~%.PQRjHR_qUUPN%HH'%S 'RzREbb" @_ ^ZLTH!wJd\Wj,=9-)В.UbT#i鱪pdԀ*%F,-K;smZMj!R7d%x+@h%NB56텬Vo⻠,3WyR*Ue2wgh^#l;ΩL=0fKZcG_鳙.Lg:EF g$8u?+DL(`ʴo\cWm]>?_>πTV3Y4٢;NJ槾hѲ<}e^x7|-(BU|P,=Ey[|=4T$ϨPn}պuoP֭W6П[d# ?E}]2wa]!7Y%wc<#_,-~ǝsyfK5dU&EMe1"t wF a~>K*J! L&oL/US fMS}&([m^tlERzjGG4Z1X9^ANBPWkWS-IAUfJ0Umn FHP|-޲w4kWE_\[4'딪ʺ2Z*=:F|zjV ?i]^O|4"g|ORc7 3{7Aˎ<4^ dY71"ՋB׌Rc*}0wls_aP~_3?*\sfhɨ<$fӢu;҂IDATXPn~~{+.P6%K8I)Id]aS }H.V }P}y1略oJ=,I0|֐rV8I~0?$(|=!lV^oޕ @@?«Xf"NHUԤq2rh9Nxt 㔡 $0e Vn_ $>CSs߇5]t0i lde~r`.(.Y*[\[N`& 3eڈ?K>;J\<[[ 2.~ZU%aqn(?eR\ȳ&m14 mzl씉Z]Z3:G}& B`:O|}׿<`!8-<]%B&6liqf盕fW+Q5%+qĹRZu1A"n3gNkώ5E\jD:-K:IYyr ޕdcPP<6dńxwY͕Hkɽ7̴ kkk7{AMjԢ!&/vKys5'I%(+$낅8\Q|б"uD!w!~yG %q׭ާΘ `:OʒA{׮]k0 @sIyLx;?KyP6apE.S00dѓI$,1N#r/2w5TlM. Plj6#0]&hN$q4GoKfEvNElU_+;FD܍J-'e eQV 8J}ށϐk} SA~iVẬCOG5_v:Lbunp}N*KjͦjAI "+;&5VqLehQu\ӧOd0y T2j(u#v#ѲV0k9m+۷mYVdasCGnb&"sAWGnsIV+5 vx0VT}z'P}EtO?L@\8>;x4?Kpzcp=>ߌpop^{|3wwDGp@oR1OI;P?)XV矞m>gۅb61Hϙ $6j.&F긺 /U?qw ͎]ٚ05VHvvr~9|oGߪ3$݉$;S8iA۫O~^g4Y&*ϻp4wVnI VuU=0@],>,H=idgZ;!]xtׂHjcQ}k͞s|SGkځr+»ɑ(q>>@mq}@pO>;Î+WZ &=@*'NAv?kgO;nQ/-7߱F !ݪꡳq&,<`VgYmn;Ju@`^QeTЈYZyY?P|y͛a8W:E`۲e˻u |k4`Y'?sYS5wLE g:&9A'8OM/^4`^JwfToj:~kpp˒G v?Ojs^8H3繯_{-_^co)ܞe_6 4QmPaߺv#3䀋FPX lD'AhLV ݶx g46\ 4{1? 6ڣ[o_x(8"=[cP5J RG. `q", 1YyA^yĨ*x(J\ @=iNF|~pzϞ|9sou"!+7ZYEiKoʹ+]Nh0(%`6ca6LݼTgjz6iS".D RlXȧS7 -4b]MpԬ@4G)0: rQB5Ly 45KalXkHR K[5Ȝe8.\3/T6L(1%,Dfn9Ώ,^|`WuHd}VfW==MDs!ߩ={Nt_t옲ц=2Mwzp9B 7:=zպ"0}tn>3 "//!#^^Fo\6+ݠP 2N?}搹)g{:vƭ2+$G'EXj@R=z􀫙 i.MI94;z4b mNfpIc>Z-zۈ2<O7 t aa0ц{J=ڀ[fAD¯h x1 /?g¬8b%BFꤰl4xɕY"a5 ipPwHd\#OӅ-㷏8'9~{0۩f3,ߕ4}#|s¶k:oMC&5]9b3X$FL5S {u2l.03(S)6[POk:ssLVpT>-ekde+ 7Qpa?&[3)wۃUWY;966+ 45y'ُϋqRMռ; r*[,z/f2p|0MOljSv)9Ql90q3.%2%Adv YMSɋYE qfm2/|F9 w4:h.Vr!Ll:bGq>pJ56 /P! =nx6M./T`nh]DSbl rbqTɣB CE΁zJX4c]tMl1{)SibW&'CQFx&VgjjHaֈ"}r %jY%",&Mk:6r6t @t/Aw] @ `\i @\GҜI;A"\:bYݟqbCψ"t{p.BZh@(!4"t.JM%!"j3* Hsx8 @'G e/=ؘUN>"еjk7ftAcʈ@Bik7ftAܣ ƭhbO]YL@r\k2Ft9! ]9l⒚]RL@r WistU|٪qT6nE#Lt}Kl]M; @hΝy9غvck2`SgV7/&5l$WiJpnl"tF+1~Dl:|۶ojj)ի9l̇" #Uh\ƖJy,A6D+s&͈"$@@9w1OtZ_Ē"FX$S귰u8Z\fDp@&9p=vQN4v]aZmL@*-ْ^ Ds@S;bS#߉6j\?֑^ $x0 "X#`v-"d MZzDD@Ҝ"@AMsGntәW^(AWNl?lo?cJ~sRؠ PPA 쟲CS0ѻwa7_b\F`7al] I5TE[ M2$ERqb "p۲ԭWd2Ϣ!CwbP q&ow&OAh ɫ&x΁JJ*TFwhn=R -)6*VEwM'U6Ŗ}oGoY?tr9).!sPBRɄ@"Y&{J U[ f̛"X"S> #Qq.~撒@ "i0^sZaeM&p*ݶui[_Pd ,q$.{3jC#CI%7*#;4XIRqȽVF'WVILؑrƅMkKT%fD @iN7MkºQڲk YH.ꦼhgZ%jyQ6|\א,1Ȇڪ2ZvC(ݤA5D#g!Do!lGWHALFciJBZ3"$~ "N @ x?b"O2IOZ>}* #}xuTA2@AHN}'+qGMDH$*0! /;7d)ĉ]D8cPͥ[ez=m# +^Ӝ̖O /[έ-`{-'sŲ}ٽt(G|_%;WY GpC`Zz;쪫9TX.0ЪQp_X $4>!}nK|(/K"Еp?@~вWх#vC hAcP7krwaȳ5x",*W8սֿR rsnhJL\Rlzu_%ת љޥ,vjPtN`9ROOO?44 SPPrtGW`Py OL+&'MvAM˳!y\շW ;K(iF5΁_8pCW_dnCV B&"H=CvVr8_dt0rK;HcZϛK! @`8_ w""8'V1cR>}*ǧQG!y@ADk9'+tL%\~iݣwD Joړ֔b'D@@ksً=!"Hs)D @˟HD %R ;!@ 4?c"@J ͥvBA9v'5@`{Tz{]{lE΄@μJ^gDZ'u<"8G}ӹ~j\  n"4&h @r @Dͥs<$?9QCD@\G KJ,cTp8< (ARIDATD ;3ikݿf?^~dgIۊqVhnVP)XhR+˚$嘱cCsk¢xG|p̚J7Min[i*Y3iJ|e(tfwqJg2QrYv'_z=lj8&M;Xo 92QT`'LǙU?~l6)#1y)G!AT^r@;47k^߼goR[`ڽɪ~(кP~+7i@hk/2%aMx! -é"4A1Zֲ?u$fM̅񖄉NKQ"4cnoV!QM=f Uy!wNhpG/h.b@ +cմOYFEO痤7:_*cqWBHLcim8lO:@6e)a։>#!E}9$%E͙.ͥs0rޗus|}M\oIsO;g-p㚓A+1BrNI;O(at EmBmcIU\,^aG6Fr ¶q(وR¬%㏟>h 7kdpQITBa#6njr^|CTumman~+#O9E4ϒPS pɍܸiZi |I/]5teSiiA 4HwP}cnXh1m=@!Ɏe$:&a.WԪIjrlM*.*Jįć0k?ӰXFrHUBl|$2b:ZM74?d3+~>O/?NH^rHӃ^[P4M/?;߂/{` >gî]px.Qeee<.sP@@4eZ ="@Rs5) @6HOL& wiz|OG;u50_D#pm. CETHnm.@,"+ol ᡾$8,D 9NyHsDm#@F ^ #eq"d`49x%3ʃji.uD&!Buh.bzxI(lBL" P МFC=I84I6"dPH_Z8@D6G}!@#`9 @$F h@@8 #=$_k@(/D pjp|4 D Vz!D|>(s4Q@g"9<%5F^s492"d6 ?: @2Ww?0x]b m#">ݻ{~Oq>h@. @Oq ۠o4Zd9rE /g[~3|'ѾBʊ+{}+T*رc֭TV: ׍\c}v7 Z4=?9}xNRxoX'Ǐ?P]]PPpܹ0UW\qŽ[[[jTV izg {Whw>3c ;DZY(ێ*XҷOE=96 >5"xQjjGj6TQ)$%WV dY+Vs2J(<CxLA?U0 7U^g/}G%قs;_m ͠_*=6Ԭ1r8FpƼU4@3Ǻ6׶rIˢ;OnxnߕgSFiN,!df)m{,ٟ6z޹1JʁBW9G u֬E$JA\C]/~ȭ%*!k/}>u[тs5iX)藾!I+B*[Lːѩ|(2I:R5Vs)]P(t)b={1\EW,"> h/C]o| B nuN%e>Lhn}Gui󗿻@ԅLr_vOhẍ́xSΜ#ʸs.2ʠ q 95)Q9?),TY?h>ľpDl/̂</Ol'2 qfOco1+?<^e2ZMon~+7,4 ]Dqhb? %w &M:i̖1q?kWP!'qyaXu$ICC^d瑯nN'y8%$3~wҷu|tHB')sn&4/^aq/@DBP[ yl?0~Q':Ow ďc?MVK;.S.C@ Tnox ~0^3#cʇkd{%-u~uC':1 9}.fmYomٶ>JFc̐ [\0a?nm98SH5۴o|;}UOFլ`dJs59f]$QگVC2?\43 z<P eVڸm?޻QQJv~873c] airFF4x mW/!qȤE”Eӡ9-UXpo"ͥ=D,7O :a5YF@<n }VxJ/"uC@: p^8,BH9u#?‡ M c̢%w xvG(Hw=/ #DO&/&^Am:b#5ِIw=i$+O(Gr8P=,> q 9+"sI95YJب% U6% 0l\d rZ;ovS6 f4J4މ:`j0gاhoNT~% 'ɛhh ' tW`CdJitC:%tƏٹs'{|˯<-aWT@2lwb:O7{_mbJ8r}$IS2w2߼hb!}Ç{{[L/((_X2*V˭Y(cP MYv"gh:%Niv3rlGVVc%[qeVnʸI΃OȆ 8qF!ǽ`dСk'ˮ#nj.!=nl;<#.{6>1d/0]5}پܗ5%%g-U1Rq0c2:K_<13jJckyIKw24xXZ٫>/)+}.Ί @I8P|T v8&Pq(p<; c5a5 z^5k9shK +Pf+SJqrT VcerS/2>;9_lP8&ޅ%OZeG/VivGxT"){C0n(~I/Iݨ舫I;3b b `ߌdꫯ]4㊋iNV?7QcǎCGs'[ڰ3m0 ƆxN!ȇt<>ڣbxx0lD#\YXxcGa LM&2D`2YjNʔe}(S^I&~t'"D"K,M2"W#VC5XHNOYYg*6-m3s(%9]T&2BÖBS񶾶Z4\(02/S"~ʾZLmF-ܻn.=U=m]|9];aJ/;"Uܛq+%w-?/{F ϶O}i=Bux4CaCؐXPӂTI [KTGQjJF 6GݻwےQq^釠jSZ$Q "`"j#r!:tx~E9AEʢ#V64&VԿۺX ׭qGY, !5S|BfkI&ں`D{ 䌩HCrnCQyBrd/k7WYYA5^KsK*~aIRjcIHeBsk`iTUVm6:Zkh2 [zf nnGznTWL6[JEtzCj !yEU}ۛ6mǥ@myFJ2AdehEkk*WS/{qZ)KwT.kxBL8(Flj ל qY躨_[?(S I\+m"#l05Tx ;CoS[2wy۶`*ׂ%3FAPlY)GƤ7xS3ǝʓeʔ:R$/:DjdFBْ{{:Y3h~rlm&AEQ v#( M5dIU#2U !k>nMSNV^VD+wwðPdM8F:Np1FQfd:'I}.ɍ&ʙ8-Jŏi"miFqZ"e|gʣBn!:ba҈ Fu5Fnx!6XrqgH!ґ0dɩ*jV& C]+WۄD94BWNeW.}Z 50UҴ(*_4w$OwL|yfKtքDceҥXMp%dk~?9yNڧԩJ;I6e &koN ! *vs'HKhu @dk΍&:hieiO6";ԹcLY}PFt$⳴LДLW65V4[u8?VYZp˼qJff41G()ڽk "IDaH$A?QFA+~rq8nT(讂m)qEq }WYGYՒj02B&gw>vVVgl !CPtJ^jU_Ije3n5ΠtIub 'y))eK*YHmGy% YHT7{є&AF-ك&ΘxI'L}ўnQڌR6uoޚaH&l S>D s۠J&xBIRȏ&ՎwL4r1`qBS"5nsPƶuq7ӊnXUsI7%EMԉ24 h&'vqdu?6 Ehr?I-\_C= MWjO=-Ied@#&ت77VBQQkn풜jDH§[)SQ'\k>vE>E k껆zpcN] 'L׻$ORJ9$Q$ْ$dnDS"ȩSG-鹙g#ԺTTqB_* IޞjbekE_M~akݞ+}l[_J#u"x9R'=lQ2^yZ4q>|r ?? bߴ$#LJ;̛:@$TlI͟$4 t %D*i ne$ahh`Ww<;{)aDfV3LQ,1U|PY[BSXS,:AXBέOF*kyÆ>͸N>mbsuP;gD4ۚ'j!l Uҵ7WhK3~:˻.͵:u5V^뽩.'M5Ӊ#Ԥ{Gnlx ڇ 5^?3Zule3~ _Ȟ"ş} '>}W ?rCހӾ8↵ZV8ȭp˳XvY~9%-11 E3QeenbUI|7d5nYuY W [FӘ?kh69w,LJ('ݍ0ĭB@qaM $w_ SHB!*oj jX/tAu!ИQ1Tf)ijz5} aRCC.MЮIKٕkԍғQ4_$ 4DitWYɪ_eePeS%Z 1{8K;xmO4;aǺ?8)W_nXh.Lyx7ΥK}?N)IHoϡCRt{F_v9Q5!L9{>|OXvf<'tε z=ykNpQ>En[<Roxϓ埛LF$xևLuEէ?_nZ >zGّ*ϹY:g/H׏vDJ=喌 p(ee;xb^}9=h/?64< ߧ.^Y'|LLq$h-NI޷_&T;'Z?lUd It-;U"i(PRp/~Zqq:roe~!TVA*P GGpG]ºhTnC`b&kIBjMN%q_O޷O2 re{{}Sy铃Κ|^_]N>/wi筹;gz{RާϟrDT#&2frL<1TCŷ_^˞0‘=7?:gZ 8Q_sySppˊ_/xV4mYyc[ncX~0^Km_"+$i¸ٝFw}U\y33'5LҷWsxL>oY~毊C?;{qg8#9 BjQ0TM+)dCҒ*˅\+Uzڒ]+h[Q>yoNbB/0^eѩ*HA_-wU!O놑DO[PA[4 iq|j%sWM "W5"w̶ 5]ӏ"7.i+ۊFƞR>tovB[&2$:$~=eS%::#_t~g|m?ُѓ;@W?5 ykܞW7\mnX |f;W]t$}dm~zY?/r9kauaGFky:{n-wpq{%k~}ãK֣mOޚ:<8,ѵ_|_AǓwp3{ 7Qߚ2;5۟ztxwӾ<_1}zſ^/_y-m|gx0m2&f1? 1^Ro?^f.ν|row,.{dߴK~gM: oozїF?Ӄ0GUu8_ټZK⥔x :ovt{x}=.26w̸Ty 9oeuoOcŖUwᢌ"6C_{|q{|C0{RP92~Vy}2鲨imH+U֑ } 5ڪҸv)ƹشXC^v/ #A+Q&N]aԭHB:rUa]ո#=%[7an܌v U*H1Djq%j!3RUsv "܈!-oWdH3${vw7֋+]8>a_xs s lIԯ{;M=Mܮش}>jV a`џװOSHk۟撺6?J1_cWR'YN `zDƕH/￵[Skd|G,&XF^_vhyzP7jϡt}wQywa_y{}c?n~jZo{}нq2{diٽ߫uw|7[~9rT샳DTO4M;^%Zߴ~c0x\+m[罺nl}O3zռgן}1t>t%RuӣCRt釠rCfԕhD);+6GAh[z =Dort߬XEq+e6熝e>;HTZ?<~~cpg#'ԅ߼' ohJJ0ʸycs~{NPJ}/[.hJ(HS]rjɲL0L4c3h[n¬O 1E^62gw;D'pELDC aPEgBFFM$Xv[7V{}lm ([X WEzǤoC8`ose=l}v*YH;9 Iu SΔ!wZilup©#;ܦdwwjaNÛph(.7 !'{޵|Ѱk9Ws$wox9:=LFJX@)/+hP^};0Jwyz9&0LK,ݭ3+voozЍxd~q7nVեy117pyа_}K^;4=lGİa^8ra.}_vmLan3zرs +t·iC`;^*Z6dy17gWQQ(^7ҙ}~[,ZoBƀ^n%#Wij7ա0LqWCH.}Qr*!oRoSWVkmBmڴ[nSC>޹sgY֏0-c5cͅ4iu琏|{"Y%fGlX7hH#~r菼{Nue+ڣmS'|oJ$hh5!͵CN=d|:߳eT\vIйr,I7Xɔ%䕤^\}m?_qɛn2fx3L2auKF>vo~bWF\{oN? A; [[T󞺧IQL2NMiwj;( IDATWQ?QmG$0•hIm#7;1n|PʔvPUoNstf8,q'z?wԘ>u=JOѦX35qd,+lg_@=ܣO;w$sԧߧ{x{|ޫϜ9|udN<#:7S")W67M!esHQC#u ƛH*R.qs&JB2:z]ZNzW?*IE!Mu25YwdWMuBdԳRQr,FtVs-M_>jTTV,ZhСCJ7Vr::{prqa|ȶ2G8z_xoUUc^|QnXiZNu|{]&q4+q+g(A)m;Kg[eM/9R+i|d#&1ZPdh%?&d_AfM^8I&#krИ>5gpО_eM7QGGd5oy nq-!u=l:s @4;ص~7Ih9VO&#l:Ѩ\e!IT!HZ@t8D ZNV}-<[F9~PoVNW{*:K>f e3cuBh`|iT-jQA$z'ݶm>[|&mTXK2$YVĵԩkn'իW߰uݩW{Lр;>r%\ylGO4?O H Nt8:!:I w:=N61SYtT5326[2UVѱ?bc0ipb+ ȊĘm#C4]4Dj^ءk |*F熕/3萟,bo}EOwu_“<_a /AĬIo׃4*} NSB+Hur)v bU+vMG}!Z)ZK,qF}0fĊ^3 5`Կj\OwR;fls)j?g =uRr:ݸqO]tqsMƼ$+L[Φ|=\6l=HY5ӓ:Sj?k%)6 G(%PtQ->޵f ??{.?g[4= ~UdM3ɖuHd͌k1HǨ"!1wژ}H?Ph\x畅O>v؉zPq|>?uIoqTfRNh ~1gflIVi3M6!x/+'8+G"e]OVڿ&%LhV̢}=uaNa&娡m]bBRPpUY"s3UvO3uN-)=ĩMo"iPn5 aFQXI(樎yBQKD0Zu$nѪQ8yxtonnF4vN?͠kN'!+3Ft rNd6pmܼ}@F! 0Mbj.bAI iVJ5۽Dt2p"? +t$zf1)#FUwX&F ' G&w2K'ITC,;mͱm9I@LS|ыH$mm]hy7 }3淕T^_6BAQVmNBBv'u4$P$B0i]*a:?-jltSR\U!](!?QoB1UٔcۊTnQr2)=3wI:OE=$nROh?| 7u ρspj &@9lv5fg ۰}_ump0uϯ'lOǟY Vx IިDղzL5v4>݆B~e3V& =s rRnUHM܆)k>JtLqVdID9q9)`$! NPU5[.>ɳQ)d{qF^BW9ÀI? u(ѺN!ITн^I1 t Ip)9o2ՊD/ r}Uh(ېΕ1ൕP6ʳ,6{I{RΖdɾC;~VфIu ~@iN& ms 0VDc^ӻ)Z4F-Br@~k~zdىqPU#t{Ae=$,O]F"5VN&d),8$:o4Uҋ*CR躻#=ղdDfҾZ,B&iMSҴfl{D?nTM O[\?b%1u{4n]*K\(HRp&sH0|ez'vAbK I1sP6ABe$65q[6*+s#>ȏpQSzdj,a'P$=u@!{d( h+*1و5/,1Bಌ-*sFn!:|jR%ivnŵTE V[Zm4N6<M|E-9V1ɟeٲ<܋P`:b6Ƕ1ߨˤ?@&\NcvwMt$$hYѾ}j ţ]8HDB]˦#V:tPPJL!M˒0&nRO`r=2w2~ӘJXVnUMijzLRԏ8yl+F%nmDtPJ h߈4T)m:nNWDS2IҫB&5c#sbƒ%DʽӓIis&8663.5H鑜(W"5TՌJB}UUUEoI]r@@@&Bf[w#    Ў V6{Xv]hܹ\[7   Y=m(@&Y6}y9@<~hLyi2:   R    Uj]Ȗ 8eK z   @o篫O?>hhhȟKx*R:ts=?"aa07!/6-^R<\'=ӵKc޻s<&_ 蟭<#mJtM!6΅iT~Gv74u'kϝ;w`$yr?_K3F`nK@_P:?8rc ̒RL{!OW}t?=]1uD/dş I KN}~5 8|#Irh?JOjOϏАjK2@@@$i#W Q@(a*++S`V*r% 9dKn!:O`}SNo#$I_6 6HϦC)p_CQ[̭7)TI-ѧq&#{]ͻvJ~5Xx܄>Ԓvή[Ҥ(W)lI(f#jN}&'{ɻ 6rtbq˽GZәw؈y/p2FUwMoV3s+GN9cpF\=+hx/2TK)4yϞNOY)hJZ9v#84W[MGd W2\vΜ9R) w4j*},=+W6%JN85Y剀i!Bc=rBG/" ?I޿+$,{OpnzdKv_cǎ/:0ʖ;rE/s dş E1 I(q2rAmc8e,})@ wJNMi\P";fW[]..IbV9Ƙhg?|_m:ce7GMr?ݪsCKiTfnt^IEd?j'zf&^'E%8QyJ8v|ŬE;IT$3e|=f6{h= IDATy $̔Onim*oXIrWNq5#['^8<   (xX@!͓ohnم`BR݌ IWjmM(SNUA  mN)I pPyܬԆ+E fD4  G@& /aV%"( *aRa+@QS ͖(ژm]W#oiۺ9Yi6+k,}N8?[K㣝;@>WVcf +izw6T=~.L539j#u'mۺڙtzY'ѵt,۱~}T>\7o-ge]]X/}'ѫ8סcG?=O6?WUE̴!Y"k&ufHLM~vg7?w>K'ϻ;>, <@: R%k._9ovo+lee?luٻ+ ͺUC%SZ~-oZ4#]wow'E6D$dIvͅn1YZ2`[w'IoN)ȢXsʖM^ltHP9yr%(u;dF˦F:#qoڣ&}m(+ɋ}nWn:F.*4@~]g3Jκ'L%U]G_eղSNyӳvLL;ծRJQR$RфzxθV_3mV:vzآ2ZdʚeœyRj )c2"s ?4hH'&  WWhvZ4[TC$jh(~s}259bX?iŌ9&2kl T5 hG׬&]û̹v5'5sk']yR㱵5 + &Q&@A PFDy6aR%sHTpԁS̘[`qWMTmRSo\4/75ZCɺUZn7B8⌣xF̵W}4O?_^?T} @PrMldV"͖J4ݔBu+'k F ;͕]EFt,^ 0'sPa8"2 f-=^K77ӂ]V_.iv*IeT#~z^˓+@% &EfVgK2˪AdQⰋ`M3xybҤh'\5hlL'I&M t+PVy)S򼪙u3hYtsWӔeVKz3"vI%iRCV$ي?>fte$=s:hSWsXp5ީg+ q]Ð:]f+jQʯ c Et#_,h_Ydjx[S?x>Ϻ{_7akPC~=;{T#Ny!-N\/f)'qMNFyR6\Wb\)nKdTjV击6'ϟܵKmÍv)o>z -JOjOƿ<~O=r~_/=ħޞ#/֬g?,Q6Q/w  6 <﷏>$o~?}M ~$D%Ivgw.^u- x9Pʼ&t،G)ƤYĪ3[^[p|_ֵ"~^~?LT5tqs[8}&E $بəkyN,Չ4TTZ(*z*Sۓ2Odp6hxQ>Gq>SCO8OEGZo.uݭi;yֺIjxݵ eM$ Iuד^CeJ *ɶn<jh7g?o{Mv}4Bwr\}ӿ^ԀM\t_j k_t3)h1ek7F?3sj8ۼg6T;l۶mΝ {ٵk.]_nnѳS9c~t߼Y؏<5W.Qo?#8#Q+[RԿ1YDA]27Rq˖-~=>=< 8ڵ{- . ֆOfO;߰)~\}KY)Tt{bxPV+8LZ-4  %L 2Y]8C2*]+B:۶n=蠃i=@0Sk7xR%ؗ8`e dO 8o7RWru}ܵ{wv~h&zIu؁P'绂~\(T02@'Ӥ|*yJ)щ<2'ǚ_MNb#_kܝqWkTFW~~Ұ?r7]/}e'oDsbαk-U*fL%=#.Hn|K.֖Q';<+?qإ?;,_}r%_|'Llw?l}HtpozuhĥS~t]֦vmam^W @E 9\ӄtK?d斚|'nB M6AWH5_M<|Є+y78Ϗ>RlM&a ]O^:ģ"v b &B7ƦJr,5w//M%]w r1]2 VǾBIUP{ +_|κJKs#fKW0Գ%5#>д5gq ojCU~C&igeAԢ{֮t55%wGU(cHw@@{iߨ&WY%٫r%1tVS>঻b_JyW zq۶^#W!-5Į#OŋKX[p:"Xz]^sedf&|: P14pb1@{ ` N#N䁔R]*m:Gvp[/$~)n7FWM>g2BBg[sr06J'^WV1[?!+ W&0 iWԮ0;ћ^JjWL̘N9ĎD{}5%ygot٭[bu 8z -M@-ɬR`xa_mN*/ghZ) iNĜ S6'OMo#k{W߈oZXn~"w?[KUQ՜GdCƜք۵izF,ߋc-#k5սz}QZ$C} R#.~D3B>n)-7uHm}蚯z(ƪ »35uŶYF;G)=1 (Ϋ@@@ }R})+{7^;)Sxu^=%NkiZ,ݻhǯ꽨j-#"kSj,7kPyחs8|ᦚ+.4[X@ӷ_MM͏|o6 q~PxGlh+`_/kC 4A@@Z@\<,@~ OGc:u$I{?x;e?B]E596Ι: @@@6l[o,& ~iξ]Gn ~l[uv_l;e[Ck4V2΃/ `-ʒU޽;߲y3\GO8 µ   PLeKL.Tɔb81.H   M"Q,R'E&U6yRidKM"#' P--Vt;)䉀dK*&&su<7ca雭<ϴb@@HwwuWL R웕~lDg,ckD?G\܉:+7&'EV8 Ƣjܤ 6micY8y2%s_#迮h nQ2j 7R1^ mItj*T]Gxr0țf3id /8%afm7wVDTN c4 [C(U^i|y[LꤖV#D|t ^)O9SswKs2dΖZav]֋Cre @5:eZR^)-  PcfR)I5}-l,կYŘYL+f1{Nf/#ۊW܂ fɊ5i"=Ə5;έt(>fm>ثDˇTj$q\qV0w7aZ>u+Z{FoeFzYЛ|fԦe-=]zm:c@Zu[˧2D  4'EvcJ-wS4aǰAv$priEsSgT7dts k)ЌO*o9\Wb"~.OFv}F譪Ԇ(26^<|v_ıd>&i sOH:㇜A-c_'.d [3B%qeDIFD uS%Jvعs;viM<ӆ Xx+L4٬1f _k 'x pUV=C|_ۢ86He좥<fvl_9eu4eˤEfn1OLīE'5)ng;/Vr3Ƨ[ S+-Q*@ؽ{%ByZ9xsI&ثOSܚ)Gvh iuqi/k1DꈫX?Whcr|ͫkm!/M nQ£0d5M- d-N-ڡQ3n'z%:@hҴ$!&CvZjs˂EGΎ @@@ pB[ZaFn55)'Tg h1!H"tg˪R+&}@ ㇻ;fqY# M/>oD*!ȖWe =h7|b}DH &#(tZmm{7fX_3$ItXyܓR9窧-oB7KyS4# 74ݫJ1dk=C7ong¹!9r7e)ʚ[f$cfys2RW\fɴǍd:+ `rlP״y_Lʃu@S7]dU   V (#F<oJɲ*GX1FUHZ4zbeE &C*fgh6UKGuӑGPΛ5k׿/+,YcPHJr*MwKv[wSrk.vy2I7pNZrΜ9[0!W'shOR =r˖-w'q$<[2k(Koy f-3%]827stUfyU;\7;XljL.鯻L+}u3*"~ZP@Pґ+ؕVc {]8  zʜ"?2sG-*mڴisNyyю ލߋ&xcyj ykN;jf. xΦe,]ŬU]ExlªarhϬvŎ$VMyN 8L= IDAT^c;BNW]#R9l :ػ&;R-qI+I rb!TfC*{*\bY#;.i9V(;grt6NQMzb46J0'kj`-#3]pU}Ή7/(#@$PY>}viYI6}.!/(PV#'Ni c?l='#r u PT"OFpGy؅"S$9Au-$ gy^Ch^/ &@If]+xԲ]kT>֒M]gy:p$GNpEŌY_e<|!kTP"ͧJ%tij&:p3I ‡ ۑN +}'77ه[9@KjWJExRn(S^9U- %qߖ%C@wJI 8) z\(CXd:BkuC*-~ާ--ch"pkeQ<$SæZ^)@ n4HL-D?k!6{៭5+rfMi)`T_k'O FbY)Uu{$޹R@@Z, #Uj &s% I$z!`N+XV̘cVWDgX4QDsHkVx.haV9LIPUӺnG Z[U+?dg]Z8IƨsZAf\3*&bga"RBvA@2$nyc*}߬IE e;T5.I$n8y؇xrWћ" D0(itKVT8b s&gϞɐ%oយ. jJt>(5"1Ez 5?omHҺb@  Rۑ̞6h'+՝=@@@ GѭX!A@@Jj   9@#0\;"@ `V@@@߀n]F@@@@ [Y% `V)4 @@@ۺ6v]R^0 @$Tm^W @@@ /R%<+ /h@@@ ĥJ+@@@BJF K8hs}_ksh.,5 A@@0T KmJk   M U2.5$L@@@ p.@v+lH#-A -!UjhaM2eRtq-}q|P}'WGDF@@@@^% H$T) *@@@@$@    T c@@@ UJD TI    !UDHѠ@@@Ӻ   QU2@@@,J    HR"TR%H$T) *@@@@J 8| @@@Bf-a|K p    H *a%.*@@@p    HR"TR%H$T) *@@@G UjWcD -!U u   Rv>}4N    p%*al@"JhP   H0@@@@ Je@:*aD@" UR"$TWi @^    O p\ "T @@@ UJD @1   *%A UDHѠ@@@*a @"JhP   H0@@@@ RD4J    HR"TR%H$T) *@@@@$@    T c@@@ UJD @1   *%A UDHѠ@@@*a @"JhP   H0@@@@ RD4J    HR"TR%H$T) *@@@@$@    T c@@@ UJD @1   *%A UUNq#lWK#]6ՉC!J˖ڨEn *Ŝl$@ӱh6L1X.;V+`D#ksy{}ι}s?'Z}~y{{yKQRF @@ @DJQ @c *EiT @J @@T@QA*9 @]*98 @Bʔ*98 @QRF 0ى%'@KoiTh= 0lI4  @ Rj @`J・҇QKdIT t]K_H*4 @EYiYiq @c $_} oUQ @ɭJ-D^HZւ"@dRYTQ @)wF @`,Yp=.uVi,@  @ RrRkY` @@m=agjcHP ˖Uj !a|_gjHBR HPJ\iA @u{0CQMBl~ ,& @@nUjf7 Fy\k#3- : @m(T -. @@>[*Dԍh@vooqEDL@ $IU! @ 3kl h(ϖҡܫԐTw @R6 @q 'q'@Z.fKI˗Yx @@shTK+0 @T @ HZ#@ HhTK+0 @T @ HZ#@ HhTK+0 @T @ HZ#@ HhTK+0 @T @ tS @|J![09< @y @T)J PL\sL @2b @ *9 @QRF @@ @DJQ @c *EiT @J @@T@QA*9 @QRF @@ @DJQ @c *EiT @J @@T@QA*9 @QRF @@ @DJQ @c *EiT @J @@T@QA*9 @QRF @*β @(8 @DR%'H* @i8#x-ə`7 Pp(= @ *9 @QRF @@ @DJQ @c *EiT @J @@T@QAJ8 @ pVi(B @@W@8 @Dz.5  @`U: P% UROLTi_ @@TJH= 0R)^| @UR*! @ HxNT H @S, U: P% UROLTi_ @@TJH= 0R)^| @UR*! @ HxNT H @S, U: P% UROLTi_ @@TJH= 0R)^| @UR*! @ HxNT H @S,p.%{iMl @@#Ur, ?q뒘I @.9" @QRF @@ @DJQ @^4;;˂ @ 0wV)dK& @ /a`"@-P?U v9={=L^ /* WQn> @w`@GY DK\@ D@DO_ @R/ @&R&z @-*|G4HRَjQ_ @*ueEL@#('hL]{_|8snZKpE(<ȼT)\KZ6VB|?>"Gݽ{wmۆF$,˫r_l!~FԍYfK%!cǮG_WXj<׼57o?I1eT^Y,!aʲ%*-%6U,'N:/ʄ#" qFrLfWXUʢ*k.CPUXY8ɥŸn4[X Y <5HRL+%@7,ﴭr.y޽J;x:&"@T ob{Cgw7C(yeN d開jB!qr!CIwIkWb!™#uO'`  yŦw|X}{޴aǑŒM{cҎ$7#;6x3I:v''0#;:xX pCtoTJausiL 8qg 4n=0x0+x m߀7DB]ɓǏd?7y?Ǐo4s:^p<$N.>3=ۚ;zUI[ʮ/l䥝yhU-?`m /:. r~ w5uKyۛvH"31ߍz) u5|avmʐnhRgWk ]>.t]wP~_wOH+:̗W 1zHPi'o]ݮ{0\=nI׭\;H|o-+>rP盟5 kb@!g ӟd+߶q;LHLZw+LB K:?P)jmCJsugFE3rq}TݥW{hSV>؁ V~ɪkw?pWܖoR18գ8%mJxv׻>03awYconkdS1f}gu;,Hs3y8p+~3ٮ@H=4{w={{ե#6Jȅ6I_u!@ߪݸi>l~G_~ %bA]~T!{x0Lk?YiS8zᆆa _I~QV|Kmܛ[Uo۸S_SIDAT5]w_]{ C Ark<~.r}=, Ջl 3.~B%NmIh >Ws;7tw|יH]CI"k[d݉w+ߚ?\?tˁ-ޕ?z7dKYjM)HF `īQBn,pz~?OuLrw.TbpP% 0 Mk-C#!ObѺ'; -L_ɝgc1xn @ [ue8Ba}ǾuəW3zOeUOp!oމ 0gy~׾?яځrQ+c2˨r2hY:B +V<\s_v /B\pYF啫<4doC @mᄏĉ˱$4:묳nYF啫<4 p9t8 0%%YE[֕-k̵)%@F`߀JI`|ߠil @\`fye @ {X3 @EnnQxB!@4*5ӗh@ iI#(PGP>ыzV(t @. - R^0}k_[.ڰqC~uzT6˷JN?`MHR؇ge \7xr$SH:}QxڗMֽP{KUc5|"/tzڏIVIU:P%]U 8066\Qɘ%U%cU2`yiQ$vs>2X8Ke&0⢌2T6#N`fsXzuHBP3߻袋Nڮ0Я0*g(wIU> F޼ޮj>0i < v!xђn1ڡJ,98K%9޺[ac%3uJvUYUMphU]*1t)%39kKZBm~QL}"4@ڷ|%{~ߏ?޽~ WܲD5YޚO`C|4EO宗jeKAxc ̩g20lfR~IO>֣IA*'S.!qhlVŽ2yc,Xj3U2xo;?DլuBZ?Ν;NHgVe=d#@L@;vkeIENDB`PK !{x_5_5word/media/image19.pngPNG  IHDRvvv"H %`/BpC*30Ұyb& OvNXZ]f ` O5XOP:^Oʖ о{/|af[N. v˩X`V_iP@L^0ɢFh>+HBBqƁK񹨘 P̥˥%DࢤXyQ<e;I [䇒=Q;$qx&Dg;=ˇ਺A_SAGL.d6gwlذI|#QwR!\f'ǼvAB'rƓo-;$5 琈5@r 789zktJGl 7d T=ѪεΜm?{.vL{W|=;*oBH _CR̫L.ZQ ]>2S:DBMeg!*-ܹs Q3S߾o?] r‹aw_oϣk۷fJZ[3%mr[L {iBBXbwwdGUN ImԤƮ s[f'«*@BpvFqgO wAWlu5[b238xtKGmGO8+5b^WP./55RI7ɰ+6 Tk}\[) P;tsWHAϚF gAd<8sY s'ON|;{P;s@;wI'#*ӲzC0YolydHnUN+˗ xOh.].`q/,vJٙF 4«`gؒLYH۬? Mqe$r8xs8q}*։#EkЊ&,GwA/`vǎoGĮ\:]n9T3WgܓN+❷)OR- `S#}zB}F /#b~uui?p|cVAu|VF{L7A4=T/=LV%+[hj[<s93h=:??Gm)sS4-l *mA.fqH؂X[հWaQ^_ i"~S@L42Ǽ:T6AJ@B1VʡիU[@tM5I}@ye3N*=L+@aE#7;㋭[~h&vN̵bLlo6cW"eV0JCX^j-=t!g RPko,fU 7{D-Gё3{EvMGV]L dO>`a+}\bD+e]+U;U(ҁW_E,|كh̟_0kYiDPϟ_ILlөL㸅aZT]00\3;.TPMpsā懀>ȧ7 ʦSr"1f#13N&\`t@e_!JƐ KL̉$Q^@OWZDS`d`3OLfff7QRàq;v0adZaaҥK#&5z[amgm807e6B]Iɡew@y=[Bs_VȮv-f*dVx`Ѐvv XMMM E$qC ݫ=;"ٜP=vqtٳ+a6 rZdxH-n,r("XjwC/2p-1>b,,8l62*8t[n+Ʊ\d}=Nm3˸^ :S)^Z)~z8zc:8ǷkwG;$G Y‚!;݋A<[jDVdBDilz57S4?rՒ(PhC'Ov^h@*;Qo˓.YsT˔]& $v Tl2L0b'/=B(3.֊2w1\۞ݍry+ P^-;Fb' ]Ӣ5]H߲sZp,/knZ\**IPz1Hty Y/ @:l.cץvnUayl^fUԇ{1;=a=.]umtp^&:)˟}SʡLJ`zg9FK`aH+`I/QDpʷYn bJ0HBW@2gjpųd!dHhBt&]3h6ŢKoe [J {g%gaiԆ wͷֶV@R WFoRcPd+I9(^~dz3Κ޺g}}Wip²a[0QYpW{ + Db=/& @8QR#}@lMaPå̯F,Y-?Jr+ $ƭw$> @82gӟ* [w²9Г6O ͔!d}ղ?InxS}Aܰb}٣w֭0:-n]J{ @8V~_K갂 _ Ydųl%OqM= ڡ@ ϊVDA/h)_ƙeJ hno-|R=- 6Hq4!Id pҥiii,I,())qMo}7D2 f /\jխlΜ93sM2_F$> D~̙)d&MMTp}k90K[ 4ݑdc\^aܸrwym6o8;(hGd i $ko.c$jsD&MHZ@ 54^L#KY/i+;'\ze-ք~2ЍHJ:r[~^cî\󒢪Io" qۍ/W,U:t o6q+V6G)s =JsxW @;9]\Z 喒}2G[wEJ932npN10gs|IC4m227Q[QM&[m؎ e@x peNQǞ·L s n 8{Yc.iȘRdH^20lc uJu:Ž#uFɮiqE9INO ,d]&i 2D=yњD@7  ʜm؎ b "E.@ȏ Zek.H @>o~GK'_J#]vӣ'2  1p#_= ]·M{sqG7d@"CB@92 IbH:{J% +EdLI2fڴ5<5҈aѰTt'8Fb5X#ZeR!E;yPq]fEag)l}Vȹ4+Vbd< |å WQnCO׏ɚ͑r /L_;j ]4z;r6ѼTG sM)QUE-k z,8Q@ڶʥA5#+rb0jԨʸzF-o)}Bx5Y#\?>QVO^IyH.Bm:cѹ0@ϕ-u@5 i6fĆ55hkʊߝG.4yo̫ol! Vmr1GèAH]+AZY38R'_YMunGVX8J4ܰ -5ƘCMB0nbdOL"M.YWM-ƕf P+q` I u%1|S3%VQ"8Rtvwo%s4Zyh֨Z#nC֬j|wc@ړй\˫R9gN~h1dc T: <+\@ƍCG Nuhɴiy2z KXǛS4+^@M׌=tTol b~V'+!/;+*V\}nC Q/Cx[wU;LEk|1OnU)6cKz<|@&Ċ44K: l($%M1_Xx6pG2,wG/ QtQ zr;2Lo)Gw١ r<#k^$]F'Z\MP~`O0[s2l9@Q>(<8}A3aM|Tp|?$\ī\}mхoCa25c'a$.wJI|[)%/>Du|@ci>a s=w|:kwjTyh˴vEty_)[ Z')vsC^ ҝ́a/wtu>`c0 Svr̻r:-Ŀ W{Z8y?܎uʁMwƀټ }@UV'[>6v4nzx4̝`9E4Ĺ.j?Z<$7+'- yfWoYs58f'^/r5z@Pb’%POb, %l:GCBcJd(? l+ɀ1tfX e$ؔS_ÃO|F!2&Ũ[ã`Xrzq|G| Aq5×'F#tW$;X|khvRXaaa{{;+;{1Xu'Р+BI[' p_CJ:) \t2Yk xDfӧDZcނş*qLĖ$3,45': + -]6=Sv>`΀K;Sc:?εDֱX˖emH5 ( t-ڗG.ɀD%~KE!@0\dE+U76X{j9ݐd@ыu&]BJ׫Wz ɱ/2  O|ߴ&h;"21 u @Bg@8˓VIǀ2 _F!A2.Dznz @ (Uߛ 1Bd 0dNpŚ Cd \@kb4dxs5J:fDd y \2 :f٩bJd@2 X{s4 j_b2 5 @ 0B |cǏ1aVZ$;cXŠyIQi]]iN|q*Zsk^#Ű,jIkq}Z:ԚAɜRm[\G(N?8j$&zȗY81>-C}:fl9cY䇔8( YY1"H }ʶѥץSj~ شTyCĊ&y]0M9VfT(!joůۯ1*w%Nh}ow.Tώ3Μ>c >'U*dIUEk',;~t:#>RW=\1]\U/ŖkR{FOu97aLUVpTj4i:cgXgKqlH_Y~OX83LKњVM->dQ͏+y@2dMVxUTh%d*Hu&WGǰuJ$BV~4ʒjWhDP.yiO}r50KorYBב{&og ܹ/G!VpҞ;iKvB{ Cc[GTv`2۸ DG"zB|e-T$N$q3iD,Iq 3e4 HQAbBخ6>D~ȹsX%j\.r =ԮH؉U{sfGVz_uP^,{˟Z]״,/ tlו`'!+Rmo!= Vp9ɵj7k ɜ(x kA`BSK|o.ӧO~i[wi44-szhg*T[]miN1Bt.NV&Om}\~hD>~f5. Mc8ёUCz O 2$ת%O_3CAr,Ӣˆ-.4ySf ռDUa2F1_A{HoFQC;ka+s0թ,) d=qu9}W'tK5jKUNNR_92r}!Kf}<r8H$Ou%ʃ)MjrtOy*.kJ hlt8"Ѵe W#@+Y"3*BSFY7FxdiկGO>dII _A@tH4W^^Dd@YYOH.2%P4Z@|024 Qbe.JXd(s>H.2%P4Z@|024 Qbe.JXd(s>H.2%J4Z5!Vz2^)<G;r{=}O_Y0`ԩSbF H vOQ?<|MW/HQ j=z=?nd ?GK3:thŊP"'Iد0e#{17ۙ}{?si`Y&;,)ӧω'"6Z6p/{キ̦ݫ2~b`S_K ȇZ"n Ξ= pꔭ]ǔC-P!SrB] +\Jߥ. An;{7,ٕj\RQeNmB~]W _1f3v1\/8eaFfs׋漰>Qe=Lg^ Y?DQgѺ0u2B]uf=1bg>>ly4%TNKq3w1 [4 9^܌NyKAg&5hB Afܹs_|Eh(ne|Kdj?h9ߺ~y-;Ug?%6TaMv/~>(ՠƿFj7 9ۦ&R[g7]xRNЗeੜ6Z8KPtNqcFmQM?AC-v;ٓYcWNh~p'2Id36-?<Ԕl4Ʋ{pvձʨEwi\_!s@n vcV{n% X-I]eb]qvn2v 1hZ[)]rQ)՘X;~sSK'@T$e.7R ЩMȐG?Ӕ/ Nm|l`6J1^/Oj,µd/1Q漰>Qe&aTAQ~U#~[Fms\6ݰd0 J2d g߅8o Y/F/AډSP]9z:|Avm-"+ lbe oa3R 'OA]v\|ůjAAAffOG. ʜKmj6m>x_=-!)**z-Zw(Sda׷o߇z9a(1Pp_[gN @ !F@fe.!@B ~$(s q2=P7f@be.!@"tE!Dd;׃n(++ 2Y \򧪈̥]wuwvdЌ`ڕJcqb|d ~MA T*-=zD~QF1K2ʣE$IPJW:FPTPAF")ˀpٽevU.У')e ,~(ޟ0C/M] pHYs+tIME ./UV}tEXtAuthorH:tEXtDescription |hardcopy|2012/11/06 16:46:47 lim_j SGA250167s tEXtCopyright:tEXtCreation time5 tEXtSoftware]p: tEXtDisclaimertEXtWarningtEXtSourcetEXtComment̖tEXtTitle' IDATx |]Gy℄}S  W@ iP"~BTe)mY yiO myuBATS[I,J X; Md̜mΙgΙsҽK3|g9rN:!/      sG-< TE<&5"K     Zx~G׿ϳLh     kS7ƈ־~ً6:ˋkL$p 7#^t9K    @@'?yhA@@@@ 7!!4/Z+{cA@@@@`7KҗʟB@5a l~{e_/y W߹*|2'_*{      tu?y_Iڗ'}K ?ﻵw/]tI/mwuS-?Pyk~]%béEΦ߽r~8gq:};OxaM/qS{_lg;;SS|\/?wIWӉգ LLᎳ,@͍ ǝs <,_R!gP4q: d#Fq.m4>C_RS9@W^,@o]} Hޗ r!&Quɕ=ʛ^cSB~8 6N`sUz`!_ʞ/}u(^N*k~.︦ڏ{{[eϏǾ^5[b 9 KGALroZG[.&o-B-&?/,S(\@@H秫@-5گMpYChA#ԩS7W5.aCq迧>OxS'?O~Ӟ|3K_zҥ|e?g=?zduCv  U!`@oh{WUAHe~s'v5k|bxG39}zaԩO?yh+'N8~)|@7&egiy̒[>8_<~=;a-ow-/[xw䍻.]޾].n-ooo7_JIwd   `M뮅ky ^'=dq֒c?uS>wF=9y[=e3hd*5bҳ;CÒsfiA4DOá>-,8t[ysŦղ%¦;^֏-/u'_<`Y^}{ #/| ,Đ̙=iGd}bǿ{⯒?yoN/XE{S}g\sYOϪ=xpܘ'OK.@~s~q n| w9|yc'?pœG~t*6=_1A@V࡟\{{! z/Χgs^\=Ő341{iMKOvT(*Bác|U+$Ow=σνgN.uOM}S ߹ xٺ?E>_쐸9{JM7gE{N:sg@7@=8?ʫxۡ67o.J F/+%Ғw "7 2%FJ{o"Fi+{u@?𹏿rWmFw5OJKǥ747߿^??\ve_~9=$N=y!Lyxt\G˟yS߸:mP'?uj;ŇzbtG~{{jλr 抺;?[e/QksiqQCq-"@Xp62X~>(~)Nx_֏Ҏ }e: —]{6mr޽bgC]6;\ا2'H"&|Օl"qA`-;q2=[g>\{ySJ/looWҗs'R其CW?ŅS-/9u/|~$ݿOS '(36<=@+S:k7L]ݶ|{>q[X^zWn:}MƒKA׾|_?O-'鳸TN0Ke @@FlzC{?%o \?ǎiuussh-q ma36<{?]]^xιNuJˡ^I&6*{B7r`7~rfYd}+wyKQqO\/9(->޽}.-;Υo۝yj%9Z~:<|yz'>;o\xGO֒zg(˞xj"M/,/>~ol&^q̲ 9U@@X̨;6:ް"wopŋ;i~1OE~^ `gw߹W8Ο٤ey2I?7q/2J|W% СSVtq͔ h~S_oqz?Oc'W?t0vuWy/&v-n68ɘw罒|fݰDcl ][^IxWj/M/#7+rHK`.5U }5 ?]/\y+?|Χ dD,8gIsg ~v=@ʬ?K-?O_\xٳ>/-{6zq޿Xa8̟^/gܗs~1S@@` t^wC_筫[ST;w~s3T`rsd k@oa-7l!@v;ܧ Ş)d\sŗo/Ur PO>t[_۾S~*@ ?ԫ {VzpcXIZZrfx%ϥr&6$QM7p1g+9S']|W    ЌhҺ.ĿӓHC]h k9.`z!ͧFHlB@ - \@6H"`R9u^@P@@@@@d_ryU@@@@@M`nn^,5A=q@ @@@@@"?TBw$ bjD!!\jT!@za|"w S˗"T¬L60Sk(.G|IZWQ$ڒp1ξh\DhK ZΥ ”Ƙ+}䋕ڞ,=jͮqIk3Q SD#h۾*?; +5Ƚ84#trUTF—,&z쮱]dZ){'Z734՝ŋ.͵Qkme{i|k5;;| AzۭsqerW+m>ÔnogMaUS3C쾩bt􌵯ݰ"Hm{4TK-pU gYK akW[QWC"i6iRv'}Cʦr_p9BĔq8&Ex@)9]%V RԴ7EDW0.%9gu3ؠR4u3e))̄=,d-mleP Mc8x*Cѡbi84VAӄA|&MQDnE1pFFZy2$gyf=A)%8q2T bpάK 3SԴW0Z D.eɝ(C[,NO3a<]W''Cal,zepNVY&xY[d-mc#؂SЉބ}|:%9]HXۙ_^S  HN>k׮Ǐ*Gc6q#? kNŊ-e1'd|̰ViZ<^gB:9riE6 `ږFy @}`4BO_F=3fԶ}<PЎp#ʳb FHlJ>(KrBfU伭VoC2P"CMgm'-we V *Zyuu '4vԱwO4ٌ @@Y Z?G?ї3g$c?2NF׈^[LzAw gߊ,M@FʎeVj4m0GmbW$WGuxRw:O>]bHPbRE^1Im?k?c<"rΫJE~V)c1&Idꄋ6࢙$tA(ud@6$S/zTXΟ(H kɓ'o9^#P j{6X4'&uD_n=bR.8H='1:A $uyT]BrLN;+OsCvfF<lNբN  x6}ӡaQ>&d|h;1'qyl]N'y$OA)'F%x%s3j OjmShQ#' NH4TF8]Tϝ]N~MtCHDX-wp%\pN~Lu7ԏq_3 ZՉl'9muWgz>!ofqh?6=$w4A AfPȐQ\&UhkU1S=''1,?+BjqC*̔PP(3 wU;[Ă6^&E=I(5'Y%ͅ NAr5&ǓǾ$`*Kb̥'sq/+_Y)04 3&t]ZA@}ؿ>pȑ#:p2Џ]95hx4Ng3ix3 F@!5x<>uֵd鴑iqqn1Y q@pVΩq!O/HO6'kJ5  1X@&"&*l     KV?rF"J XC<ՅA@@@@ 8T_?Lt_se_8$5zDrXɴW1A@@@@. {lDGf,bLũ2wo9|IW՞;5"m ^FeR    +K *8L IDAToXhsw?u;7(w<`M CC,D}e$pn7L4tR*\#V*фl     P3o>3GAt6n.Lwvyƶm)䚄XwI bg]GVJfx'\i0Q *)z1'5\@)OouMcf7Ԉ@>ܳ<8ݴ$4ξ16CA8$Q9ֳ+'ؿwoHc92'oϮܘy%)Z1TS/Bqr 8|/kk.oh+F1:!~ Û~wDy|gs%s*FmbRV%Njq_Je:S **SȞᴋ-709 9ҁweCrPsSĶx[rIqRs0@&1@@@@@rYߖŒ@+bL׎䟁Nz|#5-J))uL e:]#+7oձ7J%cY&h@ϡ2!j3k;TerjIvl% \eE=@c[n]kk+M|iiiqqn1c!9]uJyCh*J WQ^cEϛUg.h     wB{X?RM     PjRA@@@@`-K6@m#W%$j!R*0H}M4!V$"˨     rHއ{xe쮱]>Q7a.K$>wB|_RB{%m7U,=c'(D…pqAY>qw5} j1r bEE]a|7Zn#Vf 1mY/v{|Bqr@@@@LFbˏxA'iXOɨH!<6Yiӱ1X y@>=BA@@@@T?Й;K C8ԟ &-ӳ6vL1^&]01- /4OD;'5 d#@@@@@!<*2PW(~eX}Pb8>.fl6J,P:=4o`w,)GNotE SL&:&V X |*6 C-|sؘ*AcK1l`cA@@@ܺuZ[[oKKKwKߍAɹ*%кf-[eUUVك=?سBLhv~'b@X2A@@@@`m?1^P &5k=Y5eԖb,)rtPQ@@@@@Akv7ч83Gr ?H1/zpuzP 9cfSgT VJ gfhJʔ!N.e }}bF1NOV(UI.TrmWndf\E?%1覡y d;c5kl9}Wph6vLN0cLwoHc/f']yjgK.-۶J LM(@@@@@&*][{'%7H, )xDCOi= XRv@@[:<"Ml4G8TD2ɋ=L4.v% ao}$x!lSCr.yTC$޶X aytq@BĐQ'#L0S. e#-UBWS EtBёl:m`J!fV0PR6trak:RW]ujӞt:G!mL',X'7LW@@@@@-$]Q͚~T^fA@@@ܺuZ[[o:KKKwKߍAɹ4U{CUX    BY iT#5     P/P/%=@@@@@ 2     P/?KI@?i;5Lmfnl{ڂT   ,tϢ,hT&iUՅ5G'~ɹhH3*]юB@ gއ^|S%Y1cu EIR^s-DzZ֟jÄ+ ݎd)?fzco/nW8}=x/R;ü̊ ,7䬙W\jHfȝ+bck{,v##,\Bvz[л{ګ:^b?6 &ÉV9(&O Of7 2E@RG<'۳Cfb$-;q <|I⫯5޶fJX\hu3ȝ-,fvˢqJ#NZ345K]VzL%3Q4Zs}K.P(.H,1wE_;kEd    PS6O3{{JӃ?6tW?hU!`!ibCrš8Xmvx?Sdٶ8ϝm5 p7PoƝFӾ6wp8Ψ7g۽a1]̂6kWpӓO׎N#rc# q?vWL 'K dXap#zJӶcrz֕?9.Q&-SȕH]2$grfF 2&[QRk7ɹrqEL\1!   'ǬѰlR$4/\,,ԩ`^P1 ['"6T{Ø9gǫD~$}{}1344܂Zr؂cv}ʠ8nl+ƤQu3|3 AVЎL&ci`?:tm흌lt#T1m5ILU+̾;jueuq4Pj9|:z{ rI~=qrk4<("Mr>jG"z7Ώ0hG>":3Hݗ(Xtqc@r[M9I{)iM&grF2Tbݛoh*]l7MSph$l궔~ u0iH%x1$ɔS-4U&!OCcH[QY{Apg6D)'8%*8M0x^#,]$Jzh\6E~yK{ Ŵ|lɅH{8Be8YZDIo2 )@@@r?g[ 3J/mxcŮ'OI@ᨕQbRm}nNxŢȑKF1 @9fpRNJ{Ǟ*tc]$E J,b]p.: eo *3!LVo193%-st"fҡzLr\Dk)2BnvQ"b S/4Ԇ@Ku7woM.@Ht;e원޿T-9YGqx:x̚d8d   8֭[J^ZZZ\\[n b&z' &h?iDu7:ԝN5@SS3iӛ9| i5    Mê_e?(U Ԓʸt!@@@ #2     kR@@@@jOC#X+?     P{9 j'rX}9fC3Yv2 ^}@¼gM moz%lXK:0|-6OXh*+.1She@@@@@` gp=iIN72T!XI_îcfCngbyO, /ZhHxyTN@8I]Dbz%c; @ f _#p굨TL 80eLp4*5E Úƀ` 1A@@@@ hA@@@@{V     NC    ?سc'Jͽ*&Ą=Q"oqgW1CVߦ.9N*o/4O!^4,OǒmRXh]bŒJLZz(oCI1@=r_XhڸF&j$uVq?.7k]%K#F^+ ]cbuYZHT.7MH_Uy6EbW @ rm,{<<m;vV";;#ނ9ѫ W/ʋ'דQH5dsgsr`5g)EUG\^pzЭ3=cۆ&Awɪ!MPk`jcnZ*s)^CX\[l[ǜN. 4RʳV&Ʒ $=쐗&bV}HrAr}SBk;&pFPSKQwk+3:Rg:uY"r ϊ0b$9N.9;c:|_̣䔺ݙ[i9(TRʳ? #a,Zvƫӑ zvр aRV彋=Nħ[P< J/ٸ횚ȩrc[=a 8%J0(Pd`F}]D7V.iY+jq|>"=C L|&]OWjvwf4O2@@@#y LW|q(Lꜗ(bg(^<1E(֩ !Rr "AZG ܅>x]%=ąCϪfej 䔋'J/v?O%7x^8yѿIϸ@I]IF׳>rEw.qSEHS/3;VH~v\L-]zJ[Z7H~)M325XVF,9o> xr < @ٌd1,O G Q̰~%y)ez5#f;۸lms&OŚh ?xÇN9rСCP]|ފt{tS,FmoNfĊC;ՠKҶcY@7;l$56ʋ}DQ(Yoһ o7wD<9Lnk&鷶B͊?JbjW^'/L-˕c=6DUMbȦg\p5l~9mbPrl&mД4^;"kGq" 䚌 q͔V`u۽V#vs>Ai2'd[- N[CԮr)ݰC $?i5t2B&7oJ!#V|HM|Uu>#p2s׷e;:;Fu9)/Ɂ(OlP*خtRwOMzS#'uzٮEπ,B ꕒ޵ MOgr<-e9Kj1UݘS<2s!Fp@I T?pHgkռҰkT{vx Ӕ4(%x4#l!'B}-"f@oB(Ţcc^\5$Cc拤৩4Y7Aĺlg lj:GC{u (\?BQ.l (".*Cdlgu5 )ŕ u"e[\4D2ܑ Xo*n;G<zf@H#Oŵ fi} _q|ރ`.6~OL#7wT(1PR҉`/:@#lE L`M Գ. jCr>ir%([=UI)sDYEp3Jz6jHIO]*P]sb!.@+r$:8)SbyˤIaOlT2맩fH tЄ/24 OO}H \hB-t"0{wG@_N_f4=@x3U N263luZ~ m]jh#+ RϟI=Dҁn ֭[J3_ZZZ\\[n bXHΥ4: 55 ̬*HTޝB5U^5,|S{T%`WԸZ-+qN{Zlr\%CV <5J(h    @`ͭ?T     K4~9ct%$C +piu'g9eBped     P9MCo>;֪XuN>Or͜H|E].%M!:C쾩b-=^ꢄ PRC>4,W<|aVXnX@@@@B zF{ @]"(u{;zv.5LPqj߬OB!v?QU B@@@@f IDAT@`At{tӒhn2w!޻K ]c]rO48|otɱ]Xv&z)uO x?۠Z[@J=QgؠHRgfۧ#2yکG'lUGkA@@@ry0OS(ub.E "r'#ol<'c/ؓCL:&y z7ױP @@@@@Rsss֭kmmɲ9sU5KÚ-Z    U'H!@@@@,khaT#@X?٢a     Pu93נ%     Prm,{5$@%rav67og\6H      P >c==qĺLa>D=8t F LMK‡p"AR[iֵ{``VwL,H.Ԋ :/.SU?KŞjv&;$j a˖-w)AܿgmFK<׿&\{C3{ (,!V0?ĉKKK0rcǎ-9sf\ sK(<&$80BXwШ @@@@yO76h     `IjL @@@@{@"C3V      @@@@@ hR     |ܐ @@@@@1:gl$h۾}-DGβ g9h9쾩b523C@?bn3S}`)@?t;ۣ1tc+SU#     $>c#lu3'\h0@@@@@kE6KŞjrWN"}wby$"4%;K_=܋/~Og?$wA(+ J0g)#@@@@cس>'AÈ&B+]6k9!@@@@@J^Ѻ@LQz( @@@@@-_2YcIA@@@@ _j0"P@@@@@D/]qw@ lsOB"4,V9 G3 8@֯ @V@K8Z,NKSS ^WΑI@1 4sofWѡkd 믿xUW]qe]x vTm`TQuڞv&]ْ%t5.^ͻ䬭ʳk֎BDwL TdQ\υ16RTW&*OKF&q @<-ןucO^|䑟>C8h"ж}ϲ͙ ¾<}>z-Ew)@GxS]ǘpF媄2MF32Thǜ\^Ns4{Gko7po|&^~G^NfvkSFZ9דUBb1ytt#A9c2 ShXtl$Uޡĕ&C`^yTaS , (@6)TTCXy7Or:%>f:vFcC`,ze+&qU zƣ~FA* O6XiɁ0Mz"@@@%GSylqojL%uX;=,Si;.r+Uq*SiU~ V/dوIď\pw#8DQ-k87I>/6@L+63=Lɲ+ViN hXk*ffd#vbպ[n+]PQH+ݜ6 H3o"lk.'ו=$~G[z7ZBMgÓFˎ_Q鈭㝅2C6'<"W %r8+urbY ah3rqffЎ"oiNq+ȓdv$3~$-b1GĨw6hNq5nt<=hݐT=UJ+*z.puxwU{;Cb}ltWȓȔ!1iD&<PU43'7\GCT8 #/]|[<20'}…pKBq՛Z[hdXku.;m8h#z(턳iZoE\6l ! ]O)nxr-<$"y As ɛ^Z%嵴ӑbY*ZXסJP-Ujw7rh35­4Gtĉ%N';x̙EKo~koF2}5@ e4PסJw5D9`$SMLWp+   bփ@Vx 4GR<:s9ܿ{ez D5yc"[r\IWQzij:KN$=5Pr.br6h9 zvτgm'     +Idu*v= :[%d+Y` @@@@V*_>Y.Ur1#hA|zFu@KK_9Y\hL`t{g‡p[Z|!][{'v͆2luK3Cըi      Tt)=3&$|eqG wA(ou,ń$cA~`P(\ @@@@@`Mȱ1     ?سBLhv~'b@5=k+gOX)VL˨ֿ(/אjIЕ҈ިJ!B> @3wl{O-Dy[DBލԤ i^t֊9JjQKZML=|^+ A]f(@W4Bke$y􆜤Z5Vq*(j"Pdp9[FC+hMrjLukd鮟j_QЅ>H7c6$?&Xf Sjճ.([_++"mb&/tb;HEDFM+,0CJ2E,"l&L^Wsm,{:QYR|#1\m`.}:K<34U7 _Qz5 J pMJԸv9ӂUq+o(';;*jpͦ6Pb.|[GoZ͡rkwؐSm8`YJy}jO={3:3TT@8`CDx1$`w,:37^c֘8@c`Ǐi.ŧ%(+v&=D`ڽ%tV\'UDO_[H^Q}D;|p)5Mm.Iu\R'уKŧR5e"䣗-dd˝C }S‚5hfbʻF}L΀ )(PڨeD1jYLr∛U@S򠆸7xiΊ@Wd kGll{GT:}7ۉFp7^fYt@ciڑmiqY:jn#DLr]e낚l:dq86ojFfpU)dB[?]x&d ,1 EN uAb<=fcAiw{^F$Ȼ{Dɳ"[rF%sP8vOޮDL@mٕ:]erCrySIW@8-&Z&'RJe;ކH65]fc}"=~h4P"$nvҌdH6F=>n[  ~2ȪZ)#e6ϿvEH?/V=41E5kuE"ng^>shؑ[68a5ߘHjG%Qt5~WNH?))'3>`Xk:22<I:!?2C=<r)\se1C.%xl fq6K5x?/?"R&azx6A&&s`EL1g  2mzR!=\~aG"dɖlX aU"|kZrA UtDT4f<"z<#4{q,Qx8Q@cT+Rr3LJ3[ČZ4-#5u +6t#W"0vȌt%Lj-&1H܆9Ra^lr=oj d b >Ðb[:D&su 2+e'Dǵ uv޹ sxzx2(NX::GL=Od@OdL WQըa uJwT0=$NiI{yEz!UE%C]E,Tk_oJY'ݿ>pȑ#:p2Џ0voV0ھ]^jI]&zbOBizdbV,%V=-|uIR$R|M_)Aޫ]Tȿ94IխZMs_stnnnݺu7ٸE fkrUJR4c-vw{qmS^wd#TRl=k!YQZ PN6iv|s+hnOzO;;XK] TdQZMszT?ZC&     TP5G$@@@@@"?B`K*O<(誼9O敦Y1W,J4GzGsseVR-a^SLt-6iV[Q@b9YO-c5 IDATٻo֊$JA_"j)yY됪|pkϢ'J*BPdWYs8JlD/3MКmrh,=!'VkU† JY+6\ΖhgTy Wjک*RԘLȄ]?վM-N546 }(nlHnQAdގ"Ja~VJ)Ȥƅ!HUs$hz(=Ĕ6_x>^u-|!U?(/ĝޜLPo(n>H/ݝp/˘F&HJ pE_Vl0P*;gwћ'Ey_hLkS Wm~5WP6gͦ6Pbg\E{#cb|zo4dT)IAzgpo Uѭ4FI%zz 0S^6L ێ!i}3-ξfq흞_|Vӱ-hnxw(^EڗT Osu=K%i5I r77jN2i;yI7xwdLᲿαXs'bI(^_XhWӆ۱m.̟U>tXJ==ξYz&k*:;=镜:|Ϣ|djO8%[pUR!:%PLä̗ )uz)X-ǫ'8:%dCz#[K)C;C)Iˈj|7[ l(-jS6 Χ2Bv)#UyunjYVM 4_fc9Fl_"~ Z)Sϙmq:j{qNOy݁O-:2+#Qd0#!MF0MAZOm)- n`l$wNғQ3S>mRcvAjg5lM›Z8Ha׵ch*vS6?ʩ&E W*@q''ǟɽ.b .ONfhnm? nbtRu%bojrcܜ5Jٸ0kx nmGp+?̲W^?Sӝ&Q zV[,:&ۅӋ&)o|%kvzu5VR_=6P$dQwܻ=\KFt#9b2bM3_L3p|r+̐íT*W ;@1dĶ#RMs#1w)v;b*Y}ۥcaM&4c[\:ebeuPcO5@q J#!YE0 BuTō)KbfJi `qƆˌ_*Ƕ|o\!{h##$'wd+- CF ~?褏h?UcXEsn{EC")ixr平4 T&قIU#X[H^Qеd;|p)5-$m.Iu'$ gRRu4FPG#YIVfբǗ;!*$2<knmH۷'w}L[AjS,84W5PQOˈb2Ն#n>WmDgMɃ.&Ɓ--jgEJzEV۰QvFhwDŸw*:PzmgiG^Met-D :3p H^qE]eTȌ S1IR+i'H>G2vmXl^|Fuleg3B(x>H sbXp}?XHB9of9ߠSCiۜS6.n{_u &r)gTRȄOyϠ&۴[Y%dU}T50NSwN~ݟ6V)W wl~DA6&(B}geކHw:@\U'mg2Je}tI흦ڽKMo{Zx'JqVNl"[64\W5]]崍vr5ji ,9R& Ԓ(JPܺmN}VV쿔3?Bl;@7p]ƒ7>uMh{TJhH7 1( c ˦gh;ݔۛ502-w?j]bLN8[McJ[xD < v}p'QMSOT#-9(`K3sVc 㪢`03Һs :,zpwQ܎ow'JD$-ZQ}:c{ԽK21{1C)ێY!l*bڰ3udd4xDwS.;]x|:7 v/rMҲʛYdF{L"t^wC _e^)4{2" 葽6tE#c=]JAmjzH_^]wKr3eT@ )T3XSFL(2#)1V$FY8iې"'T*̋MBXmBrLVl"aHN-љbJ"{I5ɏ 6;K6T\ Q])E^S[VF,v+YX'xȜ\F_k &kH@2<~vTЦJ  e!lוB ~SNiEsØ"#ˋnɳ15-dVF 2n Z7V`&1;gr4$1\B1zl2r{&Y.%p1ˡc1{ɥKhS𓂺4ZgrEłCb?Vf2vLE,xpJ֎싘U Ț@Wo}[$9>_fb!<@KL;q̎bTWGzb;&;]enE;&>Y-1Wۢݴ&WF$| E\ep_dJe @s_+2p~WK.I@p΋& LCڶqaLNgd'>yfƉ)t脁\L'$ 6fɼ0+%95a`H@h:Ȓ9t1]G/!jWEGT,DYZ;eg/dӵ:%08sZh~{{u?u`S<61$/QNɺч,1i J^f7*2UL*QR5f(6HT$ y8"! iDTxc#*lcE*ds"& ~ZԘJ ؿ>򙛛:9rB8 -#p/voNr5p w;9 ,"e4|.P,4rh5eq_j.P{ع| ڳBh^Xh޲    MHMX0@@@@V/w     HC#t!au#WhDtm     gZdEG"???_B*8]—]v*ꀬ@oj!9[l9&D|8~>74o6?ywĉf{A@@@ {L.2/8 TWoq|A &t|aZTfUG3lva I49u9cujF4h" }=$$pڵ_|!$a #ptA/D`֡,9ܩSE DŲ0 $h2e  )SN.ӇCH.hZf\Ѓ1CR #$&6y1c4 p>x"$ Anb5 ՕN4ô?\rS$ QiO DH`2/@HjxifpH&{޽?DGG(S* rT*X.#$<ȑ#8hd/t:-<|{H H/Y(:Ƈwю,񭭭J]Fwte"$aS$ o0@n"KnbAy?>ĻD@EHHHgg8XFAH 䔵ңG] iR?~l M{T&0w\!A4ECtEH x,O?v $4ؤ9]+"1 ~~3^Q!Vӑ@H $GN/8s_P?8Yf+ @H AF43f@,{ABj^ 0@Dž@H $||| &J ^_ b5A3@H $<؀|}<=$@H $< _`O@C]GO<0-b+H $<֯VO-cFO tWvchXvZZ5-5U|N U uDd5j$2$G0y~Df2g}pu9 $`(S'Ïoxuz-B zJ\z k&KVg4VihU/ohwH0hNCxCTZVke:x0f,ꡝ-t]?,?wGsÍ[|4|7V) F2RUUU_vP CH $즾`Kȥz*I淕*E9W7elͭ( e2-EYEK'edE1&VLrdI\Dіe-N8, p@a"\ӽeeG&}e{{.Ae,,yCJr:x'B,޿1$FHɑiMo%u|,<"`Ӱ3l R,nR#w%j~ZS%vI#S/Q.T?>?+,-*æs-~Ee;wmxR*28&2z찠fR[.1.M;=Z !<|6j ZH$T([./<.GkqZ ,]s^P/'N@MYJ)9&-Gmv٭p yb$)nS86MчޓQzaԨC#I3|E5&^tX $")U#W?9xq-=Twϴ7jDfxf.iRc?<3Gr]ZGS})/peClB2;aݢАB@OT &D~N!f(i\Q{zj4evѝ;b^ 6 L%mA9CȻյд %PPD&&zRO6/|V,1쇘77++juU_Rx5#RWHJ[PXWOVFX Y,9QV*!f'lv߬P,K(ݩVS- N"dYf'Nq)BscUEX L ̃4h Hs:*kFghl'.*!F*I\LocN_՘ fru,#huX $!RJ&B~ #.!ZO۽[ySr^?oW:%ޚ/9kb*B"+(ERɭ$L YUi^oMO`z yl뺠L3c-to mY 3sHMdKq3-^cbCwJm#XWjh IDAT_IYWKMMXKgJY@1V&{w连xXэ5<$J_cӐ,0E'Z B e$_]%4c$@$%Ew9)jbd^}Pq+̕#ckk /;>L$.Q[p2axWk;q!} ՑJ8DuRb@H Qs&`___5옉3-ӤʨrmI?>Eγt[2R`7OUހ|'S‚.ctUd"1&Gְ%d%Bs瞟_WvO"zz=lU~3J;^{1Ms̩u,]ܔǃcrP__xU?Hc ;k +nf!Dm5m,ecd($. >#UuCڀ{ jpb8ZrP.=J7^YCW.k7@H yvR`yAEtqw/9NW*5` :JӘٵ$s2{mK VDov8=q 8{jX`>lM[MsiBߜh!1iݖB S7IL^5=XZAef6@k>ż򳸨ףW/W[>e/?1#mjmI>΄=|%8d#Iщ?ߴ4ysº+27o}$nϛ5ʌ _]P]0M}w?-*:B`7718֋6ɥYT/d/bAe8ĒUJ{1B@frp#NԀtGķ s|,o8#((ܭFHK`LCH N@lXslῄ'2]űyd+G:p^vpyk%ٔ9Opj+/Z]^,`O X`3Ō,зV5iS/˸9$kCU|19G@܉^Lh ]!})?0ڣ~|>kcÞ`oJx[L7@nu5Z,b}t$@Rd W竺Lo#R[ʟ%ۦ5: .[ʲk?` .=5!4gg'Ŧ޹Vw`7e]]G Ѩwr`Bx2/Ɉi3Hy Q@H H$V[m.lxT9uo*cѢE+oY.$&HF"lZ8~+W}IKJ8YH $I}Sa).WSavHIqA?[>)h.J:kTƍM[ONL4 BH $1P؎~?+d`tKkwnB@H $lXvo ^L%w`'йۧ@H x+~K:7@H $@B9iAH $@H\ /yߴa@H $"`zy04V5.@H $p`yz(~IENDB`PK !݂gh;h;word/media/image38.pngPNG  IHDR1A pHYs+tIME  U0tEXtAuthorH:tEXtDescription |hardcopy|2012/11/06 16:27:12 lim_j SGA250167<$ tEXtCopyright:tEXtCreation time5 tEXtSoftware]p: tEXtDisclaimertEXtWarningtEXtSourcetEXtComment̖tEXtTitle' IDATx xUwCp@ A0@|sy 58v׃& ~oC|r<43`$kсC&& fx vU_Ne>^kvU^k8&l Z/nuCA@@ R&w! ۫|o k @@D]rtmSHz+'9nt ^ I{dv㡝Ԣ@4V@@@w.~轔֋_71G "}R/͔^) ).Žf@@ $hW܏   Ud}ҁ;Y^Xu?gm+oP)6߽5Uάus% @@;,Y`Rju. gݹo{9ӟ1pՒz}dRcY֘yW<'䩇W)Q/i*®޵.Se|M%PwyO@@]s?}urK{y|d2/ߧv)]\C?UX(Z}G{X~2&~^EaW$%Gn`  B`߮}}z3=6ryk(na۷<>La5Uvdg2F^K󯏗f~3gՕM4YY9'{DE]Y_^?02ѫIaqYs͞e.-Z9-Z?UBmHc9_jazOzݞ>߄ _OXn( $jeB |&WDR0NJ)ճRCH,eKRNIyAD9 ^}`yj摿1   D A@@ ݅ @H"݅@@@ \ICyX?)sX   Gq,7<|O"d 2n޼us;=1 @@xG6_D'3( Nu.%%VΝl0z'O )z̡)))ӳg;KIPn+,) x @ v4n;|Αg½7ξؑx%uw:r;Cx7y[_@wccN>)pt\X<n GxOj^h+<;M{rM3^'-^W b{^J}yu':u@OGKW[ix/ܼp;}ot|[k `ΣW ot sLR29;P- pN'51m}7 Ěƾ;FU%똢' pEhAxʖH8͆9[J#RJ J&ys3>4:K'rb'ُ44M4R8e>X0J#}%ɺ9}+V<=p>)6XϯϮ s떎Yfl/-П[a^>t/ v[(=_I3~Ut(@ Uv˚1M_G+gbgM9rd܈;:ܡRHxB>=ĐǸP^ bܙpXI'vmesꭟGl 2~t;{ :O|k'xRJ}HeZ~mQouQ>P/(>y eΕ{OJysa,?GkPwfV.=JTAY_7B?wbA8 +w^Eƿs_-rҊ ؤ>=SNeFGKJ>xĻ/}{ѹciq.g>_p~"Kɕ?Gh@sVL@yy_hux'y"?^c*/o+rk^{5tdUK\9h׼.(&{8szI?hZ\;goX)^u=MG](8 ЩCHC;3G?#mN)O^me75P/OO3gG*!!Tr8PΝNF)A6jfxUȘe%u^O[n ?v&Ə9N?֎7p╯eK]ƽR45bK/h xԬ_p)Z75XRH!JfY@+A@@r{xyΠrD~2J NQy/15-~ř9̎] ӓ֭67F/J=!hh>X䤱bz^}˗Tk~6c̕\^^T˜F0LFrcCjèI2jS}T!*g76|]_3rk7L1'rK=K+97?tnUO8\Ҟ7 H OYic!, 8^!*>0xG>IE{xW}|Uc--3Wxŏu.}'X(IpGҐin?"+7w>դZ HrGKЃ7lͅy O!~A>*ԙr623lr5LWj&vL6VafMlg_ y[eςDrQiȻgJ{O׻:%f(foH ycC>z ˓\!I|8)ȆDz Xy mYB򭘒{4ZĨ,9\&# uL_jH!g6+\9mX6Tkϒ[_$OtrT1' *ÉMcZZ*tΩ֖mjB#fuژ֚v!%ՃJ\M > _2\lYt}嶴Pӗ{ qR"1w)jUيi0wCe⍀x9| ,|ҳzew객]+YR^jqI N6 +,fԍETX?)}P}Rl0t'ZYG*>賄izoɩ޻ <3%^3d!/͹q~&Υ NK(Q1) ~ 1 ─;sM%OuBVgD-ݽcPWR{#9Jݹ',T-3"Ʋ"q#F8KKNNJiu_):|Ӳr0Ĕܒ2옉;l2h&ߵ<_>\jO>5% ʉ6")fVQQ؆mr%G'NTBbiy:96` \C%[1% L+)&f| I@..+D#&zόGΨyw!ޟ?q_Bv*dDeyWُv@!@ϻ{$!8~ϯ_k>+$=}8)BYٛւ >?%z@@()iYLQB}!1M*C B>ϚNS_]>N8)Qcdo @@@"c_}ǙOueսR͘fo @@@Mg>)~"@XVϞ=SRRuttӿpL @@@9. @Zsw\n;G$ OqFA@ 3Njݸ3ά{OJ  IIi/=?aг Nu  N^ʴCDc̕.5$l[J40s  A@Ā^E>),\(   CI1  aP|rmIxa2&8)փ@"8)У/  Μ9s7n]^222FY >)0k-l(3n[X@n.`5Ezj!@i̙}%o{6J[ŋ>>>Ivdx> CoNzyV)**\eJ, [:ݺزPգ!mقe~ETBБ˪]IG}=r-v_.ɳp4PV[B_@t PJOv+WϜo_>yTsI3R4i:yRߟ-:L~Qeb*'9>@uKmb}S+.1t6ױ^Ҷ>W)eN}KzG*HF}pD-H LgDJwNl,6Y甡6@=k'yuv;Y__\kRΣi3Hn.LT 0U_(c]UJƹ'ȃ̮P&F#f,e\1 ;#?CHv:M`Գg.^ƥxBGv@ k, '0dne`En+CY' _)' QN5$<h|>|5ƒ ?:g2SA ?ho櫼x 4jB E铤$o1]}gi5k6_n\bgJhiK&&" bB_'4͢\n"lSmEt:5yݭfRq0n;uR3tAй Yt̸Ddl_mrL{zWVԚfq]t&N@AŒ''aLKKS!}肯k\~7iY*_V噶`sn@ z{7o޼on?w%Fׯ{ڵ۷oom֜m?)q`nfӽJ0bv WʃD:swQ`'IDATTy>ԆyXY-f.G5<#ႝCqRcM"Պ2GYרbe4LrlLcӒd}@E>I]k@@ '%  .Ih/߰$@]!N@>e ݼu`UBD}p^sQ*WrQm @@#ZtzES3J1&^ţW8>\a:@PO^oAt',n63I ~D{ L@qhX5uv53;Ǚnw,5gk RH6Ċ }RK|Iow7g\N[*赢FހWg `V$:;ۉH)p0zwq]wv֋/BO!@g CKrg j"J͟?_r;JQ˗(QoN-*))J  =^3Eu$Oz?&) L9BKoаR[4bQN?iB1jȃϞ<&E靳|CR %@@3hݼyn :\Vϻ_c;6`HHhx4A9DBMnݺuMC曖Ϟ;s닗.)Sgc-]#̏ΘpOQ %  !u$WFر0i ,) f(   ]lf1xzzFw-xv  2uI!NA<"""(  %D> '@ $[@@ fbA@$&0b0 xpyw08@,'G6\83OpQ:sw1~PP@@ FT'j0'*J~p¤-?HQ@@@='1vlX8^wvy%  "V4@ jXzA@C@>iә&P:߸ޞ~zXP|K{i;vnϘ6(d6V@@ eaf4:  qC@CA@I>)4 @@3ԚL墎N+ > ~+ &]B@"%z  &BM5*yǼł~@\𴛳v@hTIkwx-%ZѠCopz BIWTݩ<;U%u*y&ESrRoڢb],J@P݄ ekm<[Hv]kpGltSuw6?g8u~t /(W;쳞}{wCjnf13n tяuI ;9kL+$`KiKT)qbh,Na)\;TcݼT"7E%izΏ{i3,>|HebUɓiGYq;3*"R 'iڶSS<˨8N:߸$ E(T}+1{;Ov;7n?VKNTU: w>wNHA Pp۷OD`؎uL; mq R>F*4aȉ)T%KK,.J" ZA_~0_œF+5!S hevK'?di6!d&V$/3I*y|֍EJ%T&csjIJ<-ϭ_mXH)Ekd%^xJA$}惊%ON+~iYCP|#FܿX<W8"͸)i?JtgW³n.ϴ1 H̙34E3Q_fz_5}P(5LrmQyi6W "]yqԦ["J*\$D v@PksMS,_[[TSr] +ip$~@) "9lјH8)朂5`,~Cɴ '3IWH8+ȡ hO6Q|RP@@ ' ivٍ.&5 _KG1vr,%A΁-uvu gNX6f*썵L(+ HpKCC&h.t@:㤴9b0(%āē0F@⚀:֍X7,zd \RXBĆ*}v]oa3.l=Oe.W#t`h#JG`jcDg`B{Qtڂp r>i`0 1mft݅A@*}c#~0]Kt7b^lZiZA@H6D߫ų  C@௒+zh@IBMO9b4  "A@ 'OB$>gӠE \)+ pE6 H4 y(oݜm( HJjI V;Zأ7A#%:]K% e+v.vLawz?˩}n\js{XCSƬ-ci:rk"^sS$)Ot$!hݸ&dHsK7.%:J#KSi;9ULɥTQ~kigA0U⁠aJ1sa![~ .LWVԚfW'Pju+ k0{xmqk5Sjmu/ 77LLG3JIurH2O"YaMyWf^_,ˋDvLpI<$K4VvkoEaHKv!cfyyyAA̎IIkMZhy{w"W;#@[9sgϞ)))o`:::zK_]^D_m-̵Vx:$rG R|RR7eTJXO(pM] zIΐFN7IuU4 IC $Z 4@HjA@ '%h  nI䓄_xGX ;d<)$?Qz( QHP7nIeS' tzYM7MxR]Q|BcdQ@:H\8%G+q'O=ƾg9d:y*'ucwkBO]sG#}D}=rH 39Eq{:YQEP "F4Tf?Ck=yړ^O=  EjIL7dK>JC&~(-Ek mjz@@B#ϻuwGvޱs71mJЕW\E~D)NvD- 3Ő$0Ubۺbư@I[vEZfv' @@+$Oן\/A*bJ/ h@@ 4\~(4(  6 0@@@|,A@|R7@G  d@  :%$Bn $,ļ?It1?15h~M}䴶^re̘1:gϞ4']  %@)Yf544 N'ڂ  IOP0`>)J(  2|R(P@@+'ue   P( @WO h@@ ^k^J2T tx 춾q?)ua gΜ.(nu}'$  j!  A}0l8Y |+*J\H ]A^|iGW6@@ 9޽; 䓸Z[ sY6[i}%n[,&^dY.85b}u1q*訪wIuIkh@G}TQQIڢ?edf .Eo?nge#K#}W[lO酆a@$wI`u|ׂ+/׎n’gk\Z\P b nj~7*UO^yQҡCl69o3T9tΉ' T,by8)bBEe [Q fBn<޹{oΜ{/+sڿxeƘPpeL˕b. nPV 8Di)U)v<eʺ -B B `|C.67|ܼ|W,d N:0H_A=?@CG e]Or&l*dRGכP~*-ɘ$rQll-{A,u-pJ7AvUK҆Vh&RZjXRhJ_8)~zƍAG7ͨǏ}YcC w}Z[[A.5לp팵XB§en˙ <YSwuj8Zlrp( 4,lHRgIRAgRFT9jԨb!`Ӆjߺ!l[ Y+Y Rɷ丏 'iR!] vutLD')'r nGQ-hjLŠ銰m1"tDd$^pn`;餓c~~aijll|}ҩ'8nO$V,f= ٠J, Βe7Lyh!Z]&Z@AaŘULQ1ik-tqKT^!&@..fU ވ)#!kl7? OE훓e)C:V!Iz `j : (VzB+$tavP]a'Zt_"'aq'ߺp46gggg{B$eW(t v 2 4v ,?%fٵBL;qeYDYR^WZmBiI8$IԭJcazj,~.A.٤籩:}l'ںN҄&H&ND4hCuA"O`O96FdQ*^hIʢdv720d0g-^_i\ޢ`WYUڃڑ!WjjZA_JY7 I<:k\x5Auj.yU***~jSLš$`UtGu:kKmm; ͂˶t|oͶ VsQr&Ua+BIGo1cQ2`ժiV($JAj4BtYZP]eAvt5~\ѸԈ VjѹY#6@jX (,~#UC\YeT/7eFjV_"cSV_<7db|㾑lQ܆ԣ4d+O)VgM~5}QzE)ǧ]ADz`fMg_ #GW#DdH55,CjvffmEj<˯E-OZ__AeT[Ŷ!{c΅%~7$+ G@ͪi`HYӝM[˩{~Ӌ>u &#a8hN 4,TJMuMKTHFc>*QVEpķX G'ϥN}~Ò.?b ߫H5ќ4AUc^W׻ ]5 W}gKͅ沕gWV2.Ukؚ -\Y.o?vBW\7gK szX=VsaG:\H?Ζ2 ^q)h5eڵ4YEn3xKc) ?N(ǔ]Ꝉ~ }yZ>վܑ1ԋ:qiZLԥ- @;ϴ |щ3f)췮x^|bE?/J}mfuظ?#؍Hu{bNqѫ[So+ʘ|}ntv3¹mG ȓTNOX<_w[֎?G'H^bH߁U[ut5SX5]8] DR"tYʡ"05tbGQ5Pc7QTO*rD5~x$]VqOНc6샯CǾcOOPbEKO-ݴ8qLLdr-}{֮ZsQ'+x]ZSmE=BԾGRsgzCpJvt= %IZ48M@.': e們Eubp}i6N"J/F`ɥ @Fɖ$q' )GJ'#9l+Emo><=)C ij$A@=L6]'Wla:& F&bt~֒>~'TBiP?Tv:NMzETD@%~%k$e)WⅆhvhQyrI,Km-t nM#apӁg]/Sos|C۴M=;NYưe/=|3^ |_gff/.D+Od4^26ϻha)u-!sYᵯaW{q6Ԯ[ ."w0TdA ہ-ddҏhiYcP^QbaxJTZʭn-cH6r4v@}R}%ǁoo^ud~g\o#0z,9aiD9ULLO uO}ǩH7D%ˉFtͪC>q=)хn;WPDEQ%"ढ़kAq+(M'd0$cr.-? We =_ݺw oɓ/x]]/8DQ@8D)X1?6bEW+\ZwK.]†0j Ee7 vBAHvCbU]k$o$>KZ+T?58ײIMtMErHyOu7ME*YO_nݐ@ .$n4b ;JZOUtf,{?'kZ %*!@,h Z+,b Zƶ6`ٻζzۚو$Nh (fHYA7&z΢pSOS'eurjשbpyvm+gP_LH&ȸޢ:k_OUQ94Uu}GMM~2# >u<0Ԕ5lҌ,&e6|; EZBB1yn3ѣ֣ٳgpcd'i}o3f-79SbpfèXΘ rqfܧrR04*q5|M' N:ٌU12׭[p;U<@Dn"*l5\?|^`^h8TK:eB#CҚ_yCiƼ>%`)TVͨq3g?J!b',;٦:}S)~ZzPcm;JMudEa֑ZwҔ~mzu:q)#K69Dl\741 ~.ߜz⛱/(t hu}Qj+{ ;S5 ָr@HOͥjzi0}'KulmNY4)"ϩ*r[U1aۄS:NFӸ5XVF?zu>xclR/k%IrvVqrI0fr\rMImOZhIWE[eKVre4LuTJSHՄSINĎzw`_(FJiE= mڜItoNɧzCۮQa;$l0u0^u#ѕjX)XwބLA3FDI݂Z=q*5 '/sˎdfx1sĊǜv"9'_p|LK9W( >,΢Ǩ{~[jkJ7s-i#:I&՝C"o^0d zAlvւU?DfIoZTϠ=t`Mɓ`X:JAB^ݩ\H *WAuY_ɍ0~4,u1ˍs_{~_ҕC" |Vl*2%r?IF-rs8Pp4}9 G!bji87)>Dq:3Pӊjzum)< c*ECܣNxiߨ͏3n8kވi#B B 6Y XR-] 4p(3ŘРGMZb;x&m@ffV:|Єf-K>j?ÝF-338rIPxGO?PO8!dr2YU -;d@t@7O_2`XȽ;bU۷/\pݚCjt:A}=[Km%X~6U*.{Q}{aZ}״G m@\yqCFdC9q3fJ`fOzW<}pZ -Ʋ#7vJÜ?Ek+ΕO>ty`nʜ/UN-|f |eggg޽;ͺ֕_x̖1@kCS(k |T4+`#O^Sy_n뷹ƾTp)hԿm4կU%5{ӪkI^#·%ҶE@U|!1]&g"pM{>xW?\kK>^{pZ;?X e?wY&E8h B pƬo'C)xuk%#ߒ2lQ,; ߂;蠽EF@ 0fl}fD$$D 9uO(l7-`:O(B%S.d)vp Ҳ,'t]"I.!Бx -"@5̌oԦ ^u+측Wעq%^ޟes§A]yoÏ-J_ccDﴱuϘB~ܛW˪BLg_vD̆_*fܓe/;=Sʷ090帀‚@Lx+EKd5;X;`W#8'\fɕwD΋8`Ƌkۺukݥ)ىoV?Q !@$mYcKL{?x³zc.3 ޮ;"O IDAT8ڿ^C{]'<8lY0ɰ7&U_zwΉl݋s'oNf*7%S[m٩'c9_n $AYJƒFͩ]a-<7KP@{5p; Csoa(.طNr(1fek/<{Kkt|KSEe#6 B L.yƧ[V (Fdw~>!d"c6Wv NIʠr{<7Eؚm9t -ja V'TYHeMmPwMOL.ew~MO,ې][Ab7<ۖ2[BFr//_Ɋޝ>wS>|1&Fooxc\U4u }a_(LɭzIᢿD1fztء>3-xPf.u[/6K:]1gh5tZ"eӰs]Ge7g̠nY^W>k*?7GC( PڵDUnkNNѨYښuZ>"n{Grz&-lh "tj~6^{ lAh &aAj"i] 4]pz`Wb|^s7`3۵o Eϰog]B 6Dߗu%ڢE`̙>Ѝ!эPC)n즦&pe\ Yj̞xlݶ kt%?cy̴֭}e}FJ,]nR)nk͚ ,su rnyߎgQƘkS&VVNM2 + r?v{Eҋ(=X0/!s)| ͦQ{{M++\|Ő3aϞ=l<>s{w](Q<ër(1a ;o_2p-JSi_4I3~:Ys4r<~5(s|#;u^#k/(|5x'/`gno9'nu&;b-m_ܼf*sCw&4߹9Eou;jߺc BR]vmmmGqBL:R1'> { l1VScgf ҅#Am۰4%FY?\e="9!x n;ǎ0pcos#W'kqh"xj|ډ~(]„¤;ڸd g# Rl~uR8q?)gQЖ(ZyoW7ox tfeXLdY}GfCva>=^g$ ^Co1Wb3J F-dhr-챷 cWܱjH/.~QYXuO!L-q0QEau-ډV2Ϙp4tv`GVYQiVvQ>CO1k_5~Jih:uT*px*m@Oo,&Zx)K`cxӎƕ;To/kb1ޕ@^Wos7\W$X  T&W/X+\;*l+MVht|h~wn/Ó{ܐw!Ё K=t .mNJ42hݣ_ s8xƍzO]4;V?~)7$W£/1afsCUOcp?0&?o%†M$"B":g|p2HAamEhcC.]:zlߛ¨D*ɎΝ;}_ j(ߝkklUl=ֽU9h?4ƴ65-޳%4[p!!S2t]wf) I$ryE$#gDe#n[zR@ZͭأFW{?;nJ !]^ U B Z1G#<$$NC$oxQw~b۟Dde##Eʄ@`vTUHH'1٤@ #02o0Rz"$ft֨ B BH51# B B :b7F!@!jcN3F!@!@t, fÆ5F!@!HZ+W*-98sg .] g"G8$8l(I B B A`.)#G B B :gefke%9 z[U#lW|xni8/|ސz#v]va[ BHW233{ٿt ec 60f0暅c+XN2oI)r^[ kX>)oK%WB /cMM_u{J GϘeb׋ $mǏq];#9C+Tjf;e 8]P9Dŵc4MՓD;찦&=3" }&BDG;tĠǾٳ}C*!c̸9GYY6ҍ|ܘLSS?o@DŽ!@Չw;-[5&ފC>On,a2ߖUT,F|MgΧ(vsaf3ugSS֭[m]۶:?> !r#\Kr.SŮwD^ Q.uuc<ekEXR@._;hoq"ׁ9IhDlBfkpI6oۚNr;$Kz:1'=(`! gY?І1|߼D.=g?hż^@Th F@7ELNi1jQkXS~b:/g8dLcimi- 5;!S'JG%l5e/:W]\9C0{CKl~RΦF恽_2k-:]q?DXjɔEd90%ß/EEBwEkp!Gcvl x"u(9aԚE22yD3~^#.D^'"1UZ ݙ :iQ)t7<[ޫ~V 8w^=(I5Nr?C{k^>WGF#ͩ}0zgzLB 9^q-?>k-]q?X׾t7,ADG!^cN3G.f?`C{gtto)z?jiiFgdNEtu t9xv9G41D"bDܼ߰^RSUT $!QՎŲqCQX*@bf1*!@LcX=%wA}9c i-47 Oԭ6(uEϴyNJѥo^Av"L7<0<}K02 BVȼBf&IE`9UUky/*.~]/5*5>K쯎?OAwjBD:vlBG"?,pIǞ>my{zO[%{):#Z,V,n >,Kgᦓ.%2.΀&GöBPDɲR7rbpO,)=ܸysmlx󕺢kxYf̝445B[ dF 0G@j!0ؔ7O:yS^ KGjס~_J.B,L!(Ҝ2Hs͘ h~epjvZh_: &XB,\Y|uvedط>=r Lg\W],!jɴ:5K 6o*AeͽPP %R7T4iV!0!&z+ZhѨi%9. ]=B +?5į_\}^7g_xl7ߌ9 ;@xHdK ҌAx@%Dqe΃qFXd\㐯|錅83HHcڽ|9$/Ycj?*Vgˡ7y8(U ^߿1<>ǘ7 oyh(a"ꘜQè@|tylewx;[ o8ێY.\Vj髈* N^ 2\?,>8ƯxBew;_tLY\gAB yb}e̗[c 380)0.D Z;0sLr N_Z94^;Nr;]{߻S!7LRY\=sTÔ?|!r;ᆆϏM6D)c`mKoLK"Hz1EE8 gg KfAivgv5F<F%GY,,)X1.bcC>E(ĚFX3BO!p1m"Cd0d /4 HkS+)x"M\)D|]m#2˄@z#Fw>QԻ$A ˅1\`.* aKess]8~3c.ġI' F 4h1#ƌ,@.0H^ͳ2460O]VH/6!@${f"@: 7n29pa-l ɶaeoISVIL$bu9Ę]2l4'Ӕŧ~6җE*D!WB Bd{7}gddBف>PS@fk)}ob2Er"Y?Ašo9&nͦ1!"Dt7{#Jet:;K vVհȒ,X g3 tx}y֦,+eu_!180@Lr ~ `r\<+PFO91}VB U{rQCyy +xόbR| 4a&^jm$YLR?y2X9SalN; V֩pʙ1#)S~9Ɉ" ƂOK>).N8U%BHݬ|˒^ďƈRи=Itd> {#3fĔCBFgAAM:z2r<D>_d 5Y X3m!@AhXTU[<&18q5ɟ/ ȘkKs uϥ@;QAaI;w|f _+;u%$Zꈹԏx$ B8#A-kn9V_RU3.c_7 Id1,p@xA[yXl07lVmqr6m= W3EV?H#R,qkSYr Dv5]C~! 4ex,WQ`^o&V1C+ ۦ9Nk"^;{ƕgJJS2tBZ0X L(-x]K)[S_6_&\aY,VڼFb\Kt0{!yE20a!ٴu0l! 3XLa"EBS7= m!@47&dsΘ҅56_05O + vL݃˅i9ӡ6d&hFUotلpeeTsn1"W ?v߇"tQ' ܒp)ftLXŲ-@ !#BȰVFCIZx/+E?/au"EVdrΪ/ z,7 }vhB4ÿx+o 3*g|P[ԾAK ra[A l,dʁpa! zp92)Ɉ޸g2G>!q3u }3&1x3/|S VK٠fY 6Wⰱ&&@|ފs\ pւִ^D٨8.. O`EV`g=INӥK%ɀ189V"&M)N WȌ3f͚8ݾ-3=[o)C{yzhۤѱ,xjG~<!@~N~׍k d,6-)$86]:s&&q7ɓ'de$)D-Ν͝"cr0`_gϞj!B УGn^8:u,jZb$]0fez0us'rȃaNd7֭[N.锐/!@ D}^`[Ҽ%&]2̬xs1{mKF{elPڲ~Mb'j B W6LjLjjcF Z~dΝ;?g]U-g >Ν/m!@!@@H lYV!`)7]* v42+\q"=~N5I!@!)sR.6oJK1o Qڢj!@!@]?cxEg*c 68hc=Oě!\q^sShR2F4j B @X+#@v~6 UHzBٝ>!\sz^{+K><-f 3K$3[|z=^#JM,D#cՀύʕc.x''B d@Y-l0fU\͝cޱ#0"$%)|cd|A u/~ܽk?Z6_6B B"HscRc] P7;9G!6>[XH|,!>*&B nj"tYliYVF)^X:ek@.j氃*^lq B $吮ԯ':njqjrFtDxى#8t\ #!@!zˁEihN.DŽ@Xy1N$nAA!̌跚 z}$LVN47 1FϦ(!G5q!6[YvtEqEG]cǛ-O@ƺX*Ι0{_5 e׮ #ge 02ewYI)Y& wk(PUT_Q\jBෂ5Hv ׮ӭYXY< +(^rzqzEWp,!@$cVtY1Mԯ+ x 9}}O0d>Ub.?ޜ_Oz?|ͣ+cnfo;OpO'}craQ+)W:1M }c JK9%%!& 2IA0:%iVIɘU?*bAGԗ^$h^سo|iX`OΧ&jk>RQ>kn+'݀ v*ͦT%gw[{bi@*!3H=lY]AF6 \dƜZchw +Y-bВ3UN!-+` u|eG?}'3=Zm1L | w׈ Un5s ~f3DZCAqR CP泪 :߫ŪDm; kDkKg0.U!yo>/!ham\KNr#EfH2B, 4Cj$w9e}+[UgaOv,"+/I34?C[۽1f ]1fL5+ßL,qlaMb4X5t˦RUdv m}qv\hdz2X sԨ8efU0aГL-_5vnimem|uZ&!!@ #Ƭҗ,L!6+(xi t\Jbe?bpZ>vBr̃ӉK(cqXȄGX1nҸr Hh E@Rt~>?LsYk7¹݂/i|u[[' !@c e05΅g; 3 kE~34h@. 7TH*8e.-,u J+~g#Cvz9tt0?iE"B30c..t*D2S|~3 ^*N7x\_YϏ'^}I$k?3:|`b3Yq3`q;J{ZKC"E Vʐr29mma+Rio-KY\sJ ϝ8ļG`E,Yd'#F?j| J‘ B &Ęy$.X/e+H\Fg0e!dÆL!ePaeBOoaf_oƳ3D~2,Қ͠Ƽ@$ >0!@S3gc6CCʸz;!@!@$Ta[vA0!ܖ^!@@#W#/‰5 ƅ!@!@Ɯ-fukRY B B HA\2hL@| d|)!cxA>ߙ8Bڡvy B 3f502][+±e%0Ḽ*2R5 ٥yղ#" >A}Y]"ʶN ҠʮL4dk!@!@crc/˯\h$17c>]XY ͯx1W(+,*Λ/pݰxRڐ*!B BH39i/dcò ᜒe^|6}wD`Ci6 ;!@!@ج 3 c{6z ڌH4(tCJoF lFJ1EfV% !@!@@!`@81C_0 \PQ=,ʘ'6d/ PW(Ex8J)\ȊmN)(wuϬU[E"B B D U`RP'_ߓSNYA˜R3j6!@!@1<Ɯii>u B B Hs#I CgzcexnUZ{u3UT B RLwH@RI}oSV7w^ =y.?G]qגߎA%B F1v{B [?ewl9 IDAT?r@` ;뼞o{/_H3g}H9TN!@nj_U GlV@:kԙ@#)y7GGn?Գg7U x4֛2siyL!@ɍu`c+(sÚ:V[Ƞ8ܰwɅhoM--ݏ7m߸yO{@AWhDYfyhHޑ7!@!wR1uk$GnXTWVV#V4sF:tpAf]aÖW5A.xq3R#KDh(?=þ0xMLx>kݾMy~V}5@n֛AI @01ELA1Csڼ!06 VT1#+vS}S.]r1_Te>W|_>|~ޤ-Qu;?n?]Zk)Y]VWzolf'TW  D$=yֈΈ+vae؂pUgWw>[OD >@]F-E3'o\ yL1s6n`V61ѻj#&3|HX)=?R"s[؁gzXE/ͳ2īe(攎Q35-.z|W()W:=!d-)ϛ@&޾ki^6D2!@D$* cfF*3nY"3Hn.?hVeEHAdHv!vc VWsM/,te5,~'\[FDҒO?p9l,H<$]B S(1rL~ glX˃Z$w0CbB Y]N[3zW>y/|׃kmTed23δ[濛M&Hyz6/,e} s0JZ <|ݲLnWnཀm斶~? ;|/"+#ڴ 0l~`*1:Dcm,x:VTH"5)eK}uP\Ȫxao}ITCiߋIJAcV+.L߼F.GeRdKd5yOƌ ]6W_F6̌A`xޖ4%&;ڻsӼq?(<ŕ@CŴ9V4'<,( ^d5=HlI]-;@&7Y<򧸬|bpۥ̸?u:OBٟP^Nsk"9!I2;j?_٨e_pӯ?3˞nwk ڄVb \=#&G_l!TTg' (hVFH//̘kZ SP>h: )!F0˷!̾9}z hw!3.^\":/DxdA1's+TB1 4i#<"ΐvpvmf͊,U%*g3BnzqsvԴ _7[P+33s̨uOk:""dW?Ϗt h^5j@"owNu'z#Sg2eJ 12/;罾nAn:ݏ?yO6GBiA7L9<*#ʌCN8ondܻ Dٿ\Fx؉">1 kQ B B  Ɯҧ|!+wmڳfvJK'_5q7y3ic!@b4bu9#y!@tio0IV0L% ~w/o/In_ɱH"5%$ ʠ"6B B:zxzVVIK4sn>e,x3ΐpZx3,JMKe8JbB B HuƜƧ($SMuK!@igj ]٩SD +h[f{Z:WՕ{S4-6 !@!@ VJc٪Ǫ`5~լv-((r^zݯn$&B BK W.fa]tΜi#B B H<朡ZԱQ ͘Pސf͏҆#T@!@!nĘ9CjKss5KkFSĪfϮbEc0'&B BH&8cNޝHQ݉ikA 1Vx0D(ɂh$xxkkfsFE#BO<` FAEDTcf^ꚪꙞ鮮o9կ3yj MF(24nڰ@2ǢYN5Yc߭nq Iǂ  @^2$ -}e2OtZi޹ yEو  Xϐ8(󘋪qM2qvQ&3@@` XAu?[/za÷9=*|diXh47,a|9e'L:t!#%Z[C}#ɪw9k?3\k~sr9Yp \ (^X?eRzyEԂzjIlhZ`͍ 6C\<ŜZfNi9cL^$=b'.HmX"k[T-.kwGr-Ȗ(#$ݛ0ׄ3ǮY1zc󦧞oLV1Go_*Μa~1;4@ Q  &#sF̎=Z 3~#LqjcdeykM̝Dg:+엍tȼ|Yn*nLYrzT];1 ~l'hk;9-[j]fEj>lB{hy9zTKXڥ > P@{evhY]7z \ռxѼxl\L4tD.R7i;΀yL.t.˝h59 GaL3{?x7OlG;PrN_jư 2Wdd&jC̷nM')-9f̜W⦛&9-I0Kx{iv]Kw5)x+;R@A!Wڹ?nhNi0v{NShP\kf˶=zV<])v.vJ=|~b2xСm#ҿwam?{:28piǞ2|衽{y^zޱ 2,_P ZvjУ(祫Eⅾ s_l0UkR]oƵU^᪋k]8kl+[bz<-?8j'f+qӭdP!)0gk3?חMfP?Ω3MKP1˟8 뛶j^_]g+ͯB[,HTy{wGMo#=LFR^!G0sW0S%>_0gq:YW4!>y>PL5ܘg s[[͹y2O37ϴAf&Y;y5=Ԝ+=wlA 8#X)9?dF*}wɗ>nٳ됃[:{;~ވTmr&}i͋--}M۷ҸrN´ ׿~32/f?u\c(;~R3(ɽ> RULY@dƌϷO_Kzn[o+CxWg|6_:Fowm=Ϟ>U/<oܲkU{7ƎM'xT[Mk5HҺ7ܕ.-e O5u#RT ȏNj@ p gώbVz7jP%^G^`?`3޵3ֺm '˥~}Gmǫ#Um^4񸋧Ngem{ƘK BSƏ>:#:H\yύb3 @E 1WiQ9 yֵyE۵v>oh'Uw?9?=S8aӷr֊ EP"t-SuS #<94ė 11ff7'F<ċ+>3֖M&׬YG[:/#Q @J`&mX@f5̜P2o1K}}1G|wݴsכ_?wc>}UyٟY͂ ! b }sI> %y+e8O4]N7Gs< @(@Ƴ6VqԹ{=x2K%R`N%W"j$ڒl3qtkt&a W9玚wF@"fFj#sg\2Ej2ufVc\ uA@ D>ԾPus9srzbqRi&]]6gbȺe@B&@Kl?Y$Vzf9SYfkšbeʬ^@'@s˭2m@@@0"¼;* IDATuSЛ@@@xIS  @v¨.  @ 108! L9`'" sS  @v¨.  @ 108! L9`'" sS  @v¨.  @  dJd2a~O%S^̊)Я '=1%:# @KO%+_<*<4TĬf#P+ZKLTl,~{>6ϔ =$ i&TۛW-"Q#Dru_nZ[;<{ @*@@H]l< 84*ȟ2,;d~R P8Eמ1@E*io_g*L≶x-kņ]SKK˶vns&q{ą p  N9p wI1'D-S>[cv߽֞D]: @vƨodR;?;N'ſ˞>؏vٵ{G;w=b{gR@@+4d"a>G{Nڶ5ȓ1M8Nn!7뺷s@ʿ<*T6{ؔŲ1=Z?XmdE\9 *sY- )\zyw,c2Y͆<ļaw" @ 0\'y$pqzXfe{bbޖ6c~왿g=Dz9Օyr{Gs?wgHt7d7)ԲgZ^O_nߕ73Lom-!@^"||]З:k<7_/? {b2|oä9y96#'n?fCz@(? K7Μ~uY3;m|[fd;Mʕ3 P$ƘI6e, =.mI{<c?jcOO<'Y;{MnVAw,!yu]`oh7RISeh2qlE*d^tkF~:nQVJao\IA 1ϒU )Ǝ{GVxcpIgO8]&d?-$3~}2!4(OEsϙ#gN>`!#jjri7ͻ1wr_`<)E~Q϶&wSdX㷠!\nᦛnٞnVSSo~1SjW@sVFM2'C|c?bLGd'Tf TsIڑ[ K jS IaȔ .)u3]γx@@ DA8KԱkr7d,ś'ԜXJ2,f E,XZ65YLYn^5՟b0,s}OxG# 1 *_@V"c*tV"Q^Knb2 ÌUԬm.O<^}$\6'fC\" P*}VKu:(S+WԳ)]8d@/ }U,.70o,aZW;p(Ltz՛@@:hV3 s)eG)RAC;j蠨_yz,Z$,K -wAh5ܲcmogӉz*sם@@D%>3hk%2N8y~.Ȓn2$n1f󂿔J4fW]oA)uD@X(>EwT&5  Pz|يʰT @@(>, b.ɹP@@2f~Dez  @zT'r@@W@zZ3s'j  fsϟJD@(k lQ9@@б=\҉{P  @ 8e.s3  108! I z4HէtY?L&N1d2a~O%S^̊)Я '=1]. @@$J֏%b.F+ Wxg"iYF"V x9XC.}m‰)ne @P41iJ( cܫe&U$jDO$g_3ϳ'@@2 -\WVHȨr!K0dXw\qɤꡥ@'`M_fƘwqWc̛}=D2'ֶxK[%vM---۹탏ϙpƝZW  Pz57CJ\狺_1 'D-S>[cv߽֞D?1 @XCˌ19"=+ ܉p>ܯ-_q~kϮ{>ڹ+; &ǘucKs:H&ѹwڶ5ȓ1M8Nn!7뺷s@]+*?2SSƦT,9׺ ʨoNn3'+4)}@@ dV0гI;) )\p:?YƘe* yyNa  43E=/PqbyMƘ{oE>cNu"d8wys7zTX錬T&[SP@  y=}C]y3;sиߛDT;=ƬJ:cs&`6dVFyC sk̓S.tp[s_篸ao[Lƒm?g73~ØcuXgVTglw'Oc/͍"_Ð|3P{RO c6.]ܬ,:ɓIS90[9O뮷 ϕʟ(s1ɣN2"_T"L%ⱄTޣ+ˍd92Ŝ,;?s&e9{e47&E,xߡ~eĉ dLؠ^Fym.˦-cO^FfcNBe~ʩP!jb 5:GYy3GHF *dnlht̺iw9gn!s8o,7H " 84kYo󞚜HI|_"Wʐ1f@2朇8ngUʿ v\1 6R8mU V7$L5&/td)]1˼mf##=99Wto+O|M=?9ʕY UȌ3ϟ/op+'o[7#PT'_x>?-$3~}2!4(OEsϙ#gN>`!#jjri7ͻ1wIA*U@~SRhWn[n_}\6=1rȽId]>zGw?섚vMڏ @wD,!3<ۭ65}^KR?y2%üKFJ݌w*4@(c"2>9THr7d,ś'ԝc) ܛ9!ɋ&PYhmj9\nj? "Քl@@P J̋w ճHy)&f,08ZEY2GesbsqO! "$Eʕ+cs]L!zIbevMf\-KX֫}rrp8 N9p wF#c9r5tPTb࿯yUVR5#*\Vw0o!  @CvC\ľ/yq?"|:lC@@>  @>"|:lC@@>  @V}e"f  $hD@@ 1a  D@@<D:$!  ` 1@@'@ĜOm  1@@'@ĜOm  1@@'@ĜOm  1@@'@ĜOm  1@@'@ĜOm  D5A @@0 {`ףhz   @T W* eMEy蔰^@@ dLЬSԬ Bw  ` e9xcN  H{shXh(  32  %  0geŀ}<#|y @@ 3sK @@S 1G̥; "o@@);As !F@Nfet.y# _ &o-@@@`{`dfedrm댂@@(Wn|%啾/d  @YQe-J Ȟ]@@GZS+Wkfo5G@@#0tJ44)co6We, @@B$ 1駔l*%{wbPJaA@@ T8VqՐ>N]>0j "  bvA5*Tkiiپ}4b}a  @$ $)}{{[ݻ7T:4@@%6nD%^V,GLA@e[ZH5'en Ak@@$q6sٹse* d  J@bබV{`Ch<&NPcg " T@ƱLf1K\,D2L&c$m YcCE@@&` W 8iQ 3\Ae)^@@ LǑWh$T6jsĈWxh9  @(t X*0DjE )9]F# arU:bV*>ǘ-*I G@ 3l2]nA#@@,ǘ G*gw @@P y3"}F#  bMŎ  {e~ BA@@,d1Ma  q4)[6GLA@ۅ?Èؾٌ CAh.  ]ӕS)~wzfA3=csg  @(dv\-S\I F@Cnѯ_SFTeC UЅ# J@S"_2YZ_ r~Y Ir4@@@W4{ey䟙R-W}m_F IdA@@ T!_"[<4ۈHle5N E@@@cY$H/JƗ&~3=@@-BeGΗ`!  Zc; G@@@E̲ǘ!  ff,v@@vrs S%   bΧ6@@)@u@@zvI*bAЅ&#  Pcv 3HA@|?if*2,K}ȹ]h!  %\qNS|lF:^ b PԭJr 8T1TĜ061朂l@@Pka!dҐmZF2RS7*Ԥܛ+.oreq`#'@@03V61HJ%IĜ؈rfIVhQXQ]$ |>DY'  tF R"huX@G?u 1@@P TWՑl*C:pn,:THX?H%m_%X]^/bnd\ RUUP~C@/P]-ѧ+#4hU {dRm,Ytq55syfx/ϊQ+@ mm^ V:#PQop3G#*V4d|&B\.t擂  R[ b "džL@q*%Q$Y!/˥{@:-Nq`($ V#c̑HZ?ƘCCh4  vPղ2%CduJh?  @쁱uNQwhV9欿tOO7w[6<:pMʐ;O>qܹs%}ƍ&k=e<;s9Ⱥdލ@rp)JR'F@1Ǖw_z{YǏիW;ynذA>Ye̙uuu"bE ,:$zkAq @p#gE%DD+CLb5ZSgƍtR+˗O6yr8  @.*  CQ#>9S1ſt!5d}چhN9D[t"%7rq"kh`֬YAٳgK?~z]V䥧5++z҅&;r1j( +C=Cb^Pu#@^G?y!* %bn3DϒR[eI|ǥ[d4ZRnkWIz]]sGu;/J *XOϰX̙3gɒ%"/ľV,3fLdZϾ8qn2Cd䒔<$e˖N+g@@P|I,_P cBk)A=(k8ٞx&yٓN'r.!%hf7ozMvZJ?f{,2,C˲;by)… 2Y^ukbe:i$Y[Iu аvBshI {.'Dh1RK-34 ]$c@ %bɧBKfJeXWb0pSS|LE_!c3+=mm- E{hJčxhi1ZیJ1t'?s-ط1ȱ"u/#e7d 1qeu2f\qܛ&p_ɿ=&?@(DH&VU$nn1$EN,^}m4=BW6Q~2I2Y_ͳC ׻o&Hٹ~2Y)yTWLYO ;CE@ D&_>ck'AftE_n*g8w?A6Gɓ'YQhݸtAڻ FB#ֶ^^hKCG~s-蛆dW_],H/L%U2Z=/\gh  VWU'=eD[A@@VUU#*OΖgrJ貪k(+SEΫV F%P\@1G1K@\ L%j) @7 TVG {1R:RXJ.0%FU 9p(xbiǮL@Q?{/|+;ڥ⶿D@@ *bz џH Ć?4@@HQ K1[dK6   e&G@@wݽD[HYouuv91PPjƲ|9a0LNXew9, (?w>pM+.>|g>nrqۗ,Y Թg=S" 0b#N:Wǰ+ @,CF6lݻ}R 0K/+lv_϶9W[K\G@B)ЫW;b2pYEkk  |7tD] , tZ#2wY&cDNƁT\ǂ (pl5= Ƙ bg@*\O0@Wǘ>q-;Ut΃$6gy!ǤgȊ6oܸQ޿M_|ܹs u u6nʸ~+}VU~(Us {$W$\2ȶreR:4a(bd:uD'N;KhhKʬY䦒|:zH6ɯ>Gu.HѣegYN>d}(/%'c΃]A09b񱎉e".~kaOTF qe}JYn2ϓU@7E#-2nv֌aY>Ooɴ yǰ'MdKj .eCiI'[=+kmɓ kngk\kt> @rSN9En{#KرSdU.AY~d#zKY?餓dK^y啃>x͚5"Q5\ʺ|Cd=3o<]}i&9_q֭TsDĜWU14W#<*ǵ}n"AJDzs؝NчwuWFs;bE^ګՕmtKi!xR۫ t@jkk38C>`x^BW$_}ȑ#ǎo蟥VzzEIDAT>:]^ʞi&O?t.%]RO?>DR"Xk6^,a̸_IXO82e=,xscvVfHkEr8ʺ,/Pvd#GSǸB<tlyՕ8}$y/"\Ȩ3;>2`\ʐEj8Lٌ=.0lذ+Vq]/Yd)Z+/a 廼^gdOYd|_le]'^̥h҉V4Q۞Uwuni_PCӇ~CHI$a_}fR&a[ʰJer[>ze{>kȽ}֭>9i^]1-!Xon;r?jiҲ>PFce]ܕ+öar(@-GZЍD݈K K@ V^[iu3! b.[Ee O%v k0婈Y!<+LVWl B> 2#|. <`ܳgC*`}~5T@[hB ǘ ΄g݉RtXAN߱kᇍ~ꩧ?|];#Pn`VFv5v 8nl2o֪EF%\!i/s8 @ 8|8$&5OF@4.)3J{@@+@\\OrC@4 }_d2^ӷeN31է=@}>P}c7`O>3f̟?ߑz75Գ2՝Sɤa}>@Tuu:zɹGr-$ꫫ; .1Xbd<{WUx@"q}>@>0d"T9gyN@@E$6"̋?ws+$ʎTG &8}>@T`R~:]X/s1/yF_QTm|Ω~}>@KV?6z+ Ow6?T5{3<ǘs+vOAdֵ 8}>>׫JC1Gm2e{wkoهk{VkorP佭->O*O*V}>@ S\veÇ^ȝ<#MYn}%K@BdK/6lݻ?,r,m0`kZylrPV=x`A1^9Ƽ ܃YQ} T}~8I-{4`];Uty9scq9M.߆R3 81f_b@@,1sl 1l5ѳAkw}&vk=3;+DuAav%; @s?{HSS|֯[;v we:f3 wnVVy>Y浧 +@@:F,)Cꮳ|=b<&SS:_d_r1y̑uTu:m}9twڵ: <?/5':P6UO~pFDs,}[zl9x69G_wz̭Φ:oz)&wpg 讋}>> gc̯/p*Yߝ}Wg+tvE:+i ܝcW)<ۛo[;Wr1?¼3w}>@Ey?v3C|}؉;{q 7suCsJDסu8p෿m5lcv79wƎ-Ҹ7|g}D;vB7YKy1}28}n]1%;ƒ?n(=oCbT#Wd!Ҹ_~W,qnz 3sI8{޼t,L IJd\j=qP3ϟ/7Pqy~ 7hcN?Rmbh@8w8 Çe+ 4kٕ5xï0~gn6nzVLWk/w<|;|[a&ˑ`o.ҨQs }jshk7])wyR&wpBe .As$"/'f}>@>H$Z/r)_ラSRtjCI_柾;$3\bb9~Ow]hlIt7oK^O3IÇ_qn]K[ȴ.1֬_/M/]r͗Mͧ5M~c_pY4Yf3޳SMӑH\}>@ar^?}ퟫ3ǞVJ-sQٛ/<3{g=c<=6rcMjwȦJdycӭ4}ŋ%r6'=߫$Js6h6#f+}>@*HlYv}zt<:k}H&G|j˷-+䦅?O2=]gz/w|=k.Q3ۢM /=lzҗ%j6C^qF~p>T}}J{XMNGӳv+/ϘE"ՆjRnc68} l}@&|[n>#ׯ[gO G?Ց^fݭ$}YcYz/D]C9䦛nnraeV>f,]drĝdpquh&p)㺜 f)/ҭ3}>@>sNrkpÿrOQ)\W{y&)ɵg==]MP,g{uñ>V$$bʴ}jW"Sql1Gͯe#qaԁ>@r?ٳg;Ƙ;v!Tϸ u9scnwW4Vw7 [ԉ*&a}5r=[%Jvކ}>@;S<++tz,:t2m*=\c1~jܤ9լC}>@Tz8gA7po[ƽz=u[oQ~Ƴ@?56~;93Kʺ`ā>@7oׯeX7ҧO?-. b?{ w7O2gcxJc6o4if=}>@>0bhY'yҿ ca}zGw.{r7w:bC6毤ɻ2{췹1G#Uj…\We]Ίuޡe" 8}>>+^XjzI^~hle Vun%n߻q=[văhhJ&L=N/ +!cy@s8K`}Io[x=/3f̟??*tVs31%1{  P~ǘSuL"}>@Z#Wcvz>ܡ1f/@@*^ | 8}>@O 2c,wzW\ycWM~" @?䋫ZȮ&MP$qIw^VpqNҳ@>_z@"* ?|r={Rw3KsmH-O7ܧ^7VEO?\1wu=Rew7v ?}h??}]jeOѕag.-/VdmrNackJegu5td:9ϴ^\gЭ'KUgu֢E[ݔmq}l~ww_:sU:|aS(R+s (*C [$W|Oϣ<s3qsk7G=;_y[u{R}sg[+V ;<}=IMY]8c0`d> ݔRJ[\sT:~Zc?+YE@vϓz"?Mo&۵Ube*GORȰO9yرUԧ;yuG\M:Xpon;[G{҉j;~9^)6Y?F:n|ZID?~wG?^o1wqn?Gǂ;ž)W "3nR?>Ajq=}g+1Ъ!!'ȫ?O=( eX%5z>Z ? =8*&9](O''7W)rHM]iT[r<8yClʕ#3,^X#r]]]MMMd۶mXlΝ۷o߲e #s   @IdQG%.+|qIENDB`PK !Q??word/media/image36.pngPNG  IHDRi&ei pHYs+tIME 25tEXtAuthorH:tEXtDescription |hardcopy|2012/11/06 16:14:50 lim_j SGA250167ʹ tEXtCopyright:tEXtCreation time5 tEXtSoftware]p: tEXtDisclaimertEXtWarningtEXtSourcetEXtComment̖tEXtTitle' IDATx|TյPP ZBD`H2h7!ODNx ܗP}V&sń0lx` * H2os̜923INSgsΚ>XXpۿ땖ڮJ@@@c{ sO_t{gL @@@@NˋNkvuM._:goT)^   r44yMM;{k1o.n11p%o{]ܻOoT- d*3's +9}Pr yn,-})x-o_2\A@@,_5Պ];_Sey$rly/q[\]$9v"6^#_!IՅJk@@ L}z?Ȑ{>}p^!#~MܥWX>tAXGWO_B;؜9m9^kc«bȯG60_u2qgubP&?\+‘k=j۵2ݨʵsݿmB5    g:!K犰PoN?tǎci?Q;{.?ePkCOF]VB 9|]bCE'E B#)  Z w'\٩^SU,TN?Wm5*jZ'~+WS5ٮ}%C~:BE6#ۅG>mx`5 UC) ('"I~)cwzܻs] qR8wd{_D'Oak@#Rvȼ *.CJ]4DVG|/QJ$j}  M`37JMY(`U)4iB yj)ih  >عO+g@oA}N7:YhV @Z@ܙ#@@|g7FW  iA3-Ft#μkt  )CiܐʵB#bw6e ._/~z*t^ؔJē?')}'mamO%+c_ݻ+Wq>Ӱ–T$ N88SqtsӰW^ѝE_n}Oo9 НēQѣ2N@ X.s";I78N@sXg9# _+_\9紥i δNYZN>q[o;mھSo>3(=B Y𚻳&t0/ݶx/ 6㽡Z}Bh۵DwlS}Xs+BW♺?7߬|z#.|u7\k^;Mm{*JGWza58=lf41juW;SH,W|V ђJz_pnxgp\tvMxs֖qt=fR_[BG- ^n.?A([r{ wѿc󗇾,_~߿u09j==Jfݛ]#8~7*V|I6 1J]81pz7i/V]:;JF']~]۞)@ oΜgX~:k5"Zfg#`mO{Zi7g֝B =utR5&qM WTNFyh61C: ѩ2!)JRzDdž < 2z|*{Wb`x56'1t=Nү[7κfO/k,:_`kP*ئSYQfEi$X_v'_5dl3oNdI1Zu:Jp?E&'q-~n's _}G_3P&h V%w62>' 3V1m Y}9V-_Hii/͏+5): Cq75܋G# f7D<*w'L;! #MzhRW_|疭w7d߯kP-ֶ߰@G  M~Nt?B\`xf}"Np7t2n~M|k"4'f]?Lk>X:~P5\/RU 1;2/Hc&+eK?;#= ϓs)r;ܼQKfi-g_KY~lt>nXpBB,nk G|Plt}< Fb!Ԣxh؂>W4¡|笙X|]yۯ?qDիWۯ\>7a6 Ma<άϖ U;I]Gn-Ab;-QJ^,V׸ rL џI,t~IQh^읝_Vȋ&ICբ/ђ60P6gpMiԌ|L9I(UDZq3gsu>)EbhNb? i6T(YN*yxsznb0qwT-p7 NF#5YށNqS؀iE ki,3_̆EsfE-? QjFw4 ',]UGc +ԔF^9S\Ùf,j?ehs§FRqVgSexgxO7,iTzKI%|LI>iukݏZ}pM0%@C:׭ wRzwICzF(_ImgA 's7q*mpM6f(5SO|zJ( %A y-TpMHQJIQ6BStM"2gK7}}\ Q@ 4 :p>&1D@tēQQWw6G^XLH r?xI 5dTTW΃#LTH. ߹{+ Ύ @Z|t z UƝ1AUHY?uWƼfP@@ }toMԅT;| +(DScj.tkogN]w?|sڔ}u 3mѨ}]f4a1irК2I8;7^_.EٶNi6{Ɯgs:'VSSW8˕34@^U\mQ'YY*7@cl.,c٣Eg^c޺'T\Z䎅ORK:|aD\Bm_ΆNvyϨ' Or.nI)LX{(VN DGKyſ~qv^Hsl=Gg}t.YfrʘY)Y4%_+A2$]W>s9*4;텅9jŽRHwc Ep<{'xo`vW0:pb-!i) .ebGBnrc|Xy>oϋ~.ESd֭]KuS[Œ)b5AwCM.7~bH,gۙN*3dseYpZSOB "? FVV (q1>h# 0sSG: D9}gZKYv 09,@[x5*(`7#$YBϡlfN-KIy?[ O\?^0y< B#~by:allT.!qK$O<]'o[%QKy7]Pnk9f$}k}uE-/~m$.b!FEn25(iMO.`V2G]U|G{j?7]. H-3/m)()6g6N?7|3Bym_5tgCa?U:iêm+b%ܨR}L;l,0zoPjb'|εhBe%zln)wE?/zr|Qb*ϙmQL|M:7HB/~j4Bm]JudP`S3 on$dc3TzrT:*Q?gaLH%Ө2)YC=af6|Yxr2!Uj-m9՗K^P7/ubdn[5Zz&xn!̃~!U?,l$O VpݶP_f,wt@  lʿCnwG"C_ȿӒ)ҏv3g@i4H~sd2B&t%c}*g^EO9iv4 }6#_.iwPvݎii|?|7gR9e&ygBx%d-uv;OpPtb_ECW<~ +ٲb`{xpG{t NO_ td\ȗK]f"5<ׄ*@MIwžS(SZ$rʈE {Cj:ꕡ)1DU$hkk`R[nOM5']7נ  `N)MvT=B$`/IDAT3x4ǯRnmbz6/yU&rykRg-$Y:Xezrx,WBKl7Vjm71.nnzXSXmXQ$ 9^᳏s$NЅDʼnjK g<_Wu΋8l DίN]~ b?-}c^쒝teD<ۚT } ciZ:c~m+L61WshmT 1 ;-tݾɟu\x… mtW :z~aԩցR胝w`? ։Iә yJ CkmZ,p=0 wI^#%1nNֻg's2"\'sJI lxm |HWsc d 3Zl,& N3m> )J98   c;{ =:HQ):pP@@w}z<3A@@@Mľӷك:@@zi}g/;'o `R߹s^$=x `(xӷg1zRnK }g˫__hmv}N#y@@2 }gy\Wy8γ9980@@L:iJVP @@8Ɲ1( @@LEqʀ$  `*&ϪFl\\\𗪁F@LHw-tt,>}zӧ/;i=|&d >}tMy~;3l[Xk%kQԽ{J,]`VbaQ׍U+wj*+WTHQkZŪjyTBĥ@+PFD"]ĘW_j>* ܭt͒S2&Ѓe# @ V}g0Fڎ@ٳDwrmgψQ|>RS>"=ҨlJٳGw2*YK?J_*YUnek36 !`Xrz2(g)a 'B)rI.N/|-\/G)I."KVVUz_(C*l=,\IbIn/)̒NXuߕ 71dq.yYIf8E&V(^C. Y$8/vyw%BO"2Sn#\a0C]Fh ,ѵtilDR)}g$),aKЕYlKG. t6d- ^Қ+ٲb3#U==*.*iu,l\IGYJSN޶t3<%-"I%Dwe^V] Ͻ&bsMT%|A[unQJ xr :JiRg@6QLe^}52eIdvUUz S.W]eZ ؽU k( faD!K'g'2,ƥ'7jSÂBG>f)uj.P)@FoaA5jzVU BNQUUtNMιZؔ!~C0jzSyqIJ(QΓƽKc$gck*4Em\K̉ LkiaT,^-Z!@ }g"*&܎*=?k D:2!*?Vf h bH$`_ }za0nira>bԨs.]DYY:մ:5?ڙ^rYOj3*C.uYT@bC]kc8PQ&=_gw0r4q&`UGXwAOKy Bu(T=k&PԖXQQ^Ll jYEM~ otttKshwN]2lXYx%PW13T6X^acYriuyT!mpZL2zP@@'3<6&NSbßi 9s΁}NۃNa@Z0g6Gܾu鑒I@V>X)$-  %sƝ-y1ظdwMG&jtt +@*  L;O}w냦̜8a ?+QA wrl珊NH'R8d=Sw{~W5]3z<] 19dZc5]=EC4%4?x뮻p|ng16F?-JXw:VṮXHVOImU@׳$p *}ҧ~ר^tonkkxkGX $\pxS=VHoyir_=z43*<Q ++=ϕ(#'>;O %f#z( deeѝT;Fم}ŋ{]oGk {1vmb$A @:&/_klOA@@ 3 oߟkz筭W2N PytFYy76F@S44JIENDB`PK !^aaword/media/image35.pngPNG  IHDRJu pHYs+tIME )vtEXtAuthorH:tEXtDescription |hardcopy|2012/10/17 11:31:41 LIM_J SGA250167f4 tEXtCopyright:tEXtCreation time5 tEXtSoftware]p: tEXtDisclaimertEXtWarningtEXtSourcetEXtComment̖tEXtTitle' IDATx]T{Q(ENĂ ؍pPT5J@,X"b,B%EDp* ?((`)"E@#nyޛce7_ߔH3.߷{gՋ.޷kǖ ME"`X,5V?PRjTEKYg/kwthڃMCN/@S,&8(p*j*il"hA,3Zj+ 1&@T-Ƅ.Ր-ͫc3&݆95 &Qga>zit56B*,XXÁ!%hPrJw^j˷G>]Yr.@Ou&ʶvY=a\Nt0s f C $꧓T/ArcCA@v>(dIC'څ޳`2\9_~iwoq٤fwUy7f̜0oCkkTooX,sg՚ ~X7?dE/89/ pbT>&Q4Qh~# E.HfKEQPfX !BbQPW褖 +1'̋r`3/KB߉S҄B# hHФ)<>UjIw[X {qPEtLTɻDz*1# 4I]"|ӈ. tǡ+JS|DfWq i+*(|An|R&C*3IfKkKZ{0c7i)d9ifz#ʄ`0QiD )Ģl[BA:+U]Y221ײ3VyS!XYf6|Sn 9i9dA_"u?)ײ釟oصKnrglϦ]eߞ_|߽wEednN8s >%Ar#еzy8\U4P"Z"r3fYEQ) `ͥ(QGR^c0CP)񋵱,MrIW-cWxlZш:+Ae5$cB2u/t (5wRSdAǸո -dcS٠ڊN^.] zΫ:;.*4eyk~c{%.ٵs[0ZUj_YC>V%J-}: Ơ9`Sج֛U ƩaX HP( !S't=j7aԀJFqH֊ 1J3Q\LrN D˱(Q'gP{1\AȣܬPf.Ȫ"Py n5uY_Yz쉹'tVw#i4IGG_HzpV / -yM ԑDy;63dӘ\/2Ө.dez?Q]%sUwR&+* N]JGB=w A4F$rRwo)ڔ? ؔNn ew}axp7`{Ƹ2zC䷴DЌ(Z?m.C9d!hVs:}&,7AāpYG)}ļ-w< *`u8Xe|rϸ TL2~hB ´wPT$;$ w|wnW" +(<c"%:bL=T 2#$HDɹhqq 6FxQOҦh\9Ri*stυi^uqUJ#!tWⶴGDS@KˎJkZ/l_z`I<:2J){bjBB"E/IyhMnDW|Y7:tIzUl&fU0sZ3ɇ;WS\uΌy4y&wT8⎫O<"Vx t 4t}̠ˁy,$!k ,TnYXQ3](yNPúȏ1DУ &1o;ݻAU/\ÆI(sq@C[^ݚP3쌅bcX]ƀ9#f"fr˚-%z)y¬c.ژQNue(Qv]V~wrhHT"1/j2%%}Ч \ΥPPa6D` -/UNȃYS-AC?Y A(ft;0@h; Wo̫Ń5@d4,!v5j5}Ύ2u`6*{zئ*UZΠSWDO3Q/04R_ia7f_n3I .w[ %иZp-nd!f  OruX^I4LzMa27o.vME #sz~5OQ$f5pU4p V, (X:C|d̥&IMϒRܸ3'k}]*J,d ,t2.ZtDπo#>oOj|A܌${u?T)H"̕S=Hfj'n&j;$ 4k왃'G CyI@ HaM\]W&sj84+>mXD: '> N.+V.qt-⃖!2הE3\n]:vTȶoz9?xk!3W;|CӦk_u_8G""z$z=>~p GFЎ쓰c?r`a}h re]~+Բ\" &z$rP*>@i6"(gW6=M_h! xE^98 Ⱦ9)f-HexeB 46=a/ML#+D eRB 4^Ivx5 K}<*S3oSӍԋ2wR7}8Rr _w4En0З|odQHO'!~M4.f6UY" %>ϝRG 5='w.W))Y#]@W}2p=7W#].:  p 1 CLjq 1S=q\a7,tbȫ8EzuRIR$Ҫttt9u3~+ѴrLC u̹i~ >oҍ^=S5<>~m:KmmrDL,Q| $hp炷N *`IDG,{6:wMAG΢P G(AQ ⳉެ󠆄w %1 I:Ppjqsf2,|OG)GݸU*8AsOSEJK<:*%^V<|+9j@yt^ %/efhd9 ( %pa-Ct@ } H^S!Ad˚>]˦\7ZoF21훙?V5D #m{<}Zt%e3_ϛj{='|Cn7r!k-ȄF?:sWMb%ۿy3oWրz|u-ˮRtok|(O۾~yΧ~Йց$f]7]vnظ⳵h_\[>P>4f3_#>ߵ$CS42xATjDaC I.gd'MNNnKfsԋ8?uWYoCu<]pyN+Z u"kygqϛm_])g;W=CZ:c/͙Y<j,yvmc}NχgVμjxG_K]0# +x[f&8W>$yI# jvEԁ!CS'yI7$|YDB~DdI-ؔk;|dzq}w#e XqINy`fۇ:γR+, mV}=UX_`VKrujQ>""f\ * 骒+CIV^`DǓX~!Ʃ<1\R)z\׋T6 lC vp@ث[|'(CjЕ5y LB@m ~eQRqՒ0rAH rEBM]@|}Op_)AE2 qx"E[^4y>ߕhQlʧ!\:Mz.`)\vWEEV nS;o„_?܈r5=/yU9:E<)lsOO|jC!=N8y{ |yyG~T—")^/ *kktRM>~բym?̚|>di۶~qBuS BAJQ0]u`VQ"Г0%hf8X+:h {쮛@TIPaqUDg N>8Q]Ux:AI9vBAI.*q4 O;#`WCg/xк>Vg^?Fs1U Ș(!Q<?w&?E,b.jtl ۆC ~{+A҈RDFqD PtoI^W8>2 9 Z9}`]/?Y nֹf 8VHݾIm䦵T$3 ۲ˋeIT2[ZTO.CQ5qwcbPYlxO P ex>ϱB% ho{8>ZD8Je/ 5 ~8yu4ǿ`fNƮ*iѲ`ԧWܞ[v{J(8AcY^A g 4D!Qmt }7Q@]EYɦh!B+ycƉľO<M[v2w@Wcw.^K(Vȋݞ`BnO]-_=Oow9iA#@`#B!5ob獵>q^=wS8WYـ{^q)Es@pkwVcM{BΟx 6uc,[CK}g˞xK ՁÁȸͧ> ߰ҎÆaEm7Of;`ݣ aAQ7 ̊Mc^Q;C@AKFiԕ,`|_5}"׷40 '̔,D]M,dVsrSߕV_ua&%Yk}7ŵuŗRD-%l_HMHm+W&ʊg J8I=_XEelpslŐ/KJmz27Ir$TmBc a'#ct.G*JO:"gɸchNH(0̶fԨ ZϪk0O\峘^Bc%"Kze%zPD_AOҢ$5i8sɰrm@n( Vdܬ=@NQ]4'Uv-|כ~i]JI{݌WL&HqU;aҹ㪵7m١n}5fBĥ\ t7_%/t(%0})䶬$? Ɛ}Mzd+ 34 % ˣWI'ڻ s A3& ƨ92XQ|RD5.,.FFPQ*' ~-fOU`F 4& &鼂 UxmB$JQ6ʚ w^D8&ʺve?pȈ]5Q[%q@i|:=kũ_\L̑`- J/b; ay>{h2u۳7,t#GW? zQ-0" ױUX ʐ:̵LnܐPm;Wx'ըq4sK5[*/4B#+6mx$9bI0buhVs[+4/FU Iz+DM#p ѻkZoQ/%BJph)KJ 8Oc :+.Uf2IjMR"PY5h$JSg)I+@ W E<_)UB>g4ز}&,[5D81z STG{6pbtY4>ajua2F0<9yw{U'AY`%(E" Z7C_,^*8;a_zF dAJ0 "y9iRb:R,>cqD墏B,8ͫTG3 jȢ(,KFK !^}gXrka1+'""Ƞqֵ:ű9UМ%Fgfװ!(,.3S&þ)GSz^怅8UXEd\Y/c ͔ߑ(pҢЅV8㮹in4V"OC[K^ G t&1IMYzȵtTI!Jl5̀}gAK#0]]-&O>:pCTuT.ч.9|]HeAyh,eW3 l\ M$=xr{y-ѝ7d ʷi[)ʸ Љ-ŽKrXc)`P餵dZsFt 8p QD/ mi>6f ֭]u?.-r21qHNq ^&TW'j9Θ̈ZְE8*䓚Zr(9hm(DY $qW%.0 04w9\1$b:J7S\qao(S*gUm$F6:Y6;Nk|p`;݈t ;(UVFӯ~T-+@ sp@ PQg !IT)[4q;]1g1QL\a)q0OF0ꪴf* ome45OȘrK#PaWT(3ZeF_jZT]NME^&!(w7IMq|nl|FS6iȵkwi qWELzs)YE/~W%-O˻rO1K0<}F0/)6ʎUoZa=7)uk&KS7c,%I0BTX;x7i୍UL9`U2 :OM˨ڢ;dU8+* |).$T:2 Q7pw#8߬wk8X2BkAk`)W"p/:(g߽ 4` ţ3%|uȾ+9$Zcqn $hJ04^F2^2n(qL&X!$z餓4P\TfIsbbL;Xܼw_Qb z:#yI8f7=Fzo4F:Hy[#)1SQ͌BIH!l߱9E #'a>hֻ3f-"`X,E"PY jYT>֬q0K*XzUPf^[A=n[,E"P!AnKX,E"`Tr` ٻݕ1\rb6Y,E"`X<0(vf 2.21x}"`X,E@ =K[fwecX,E"p`#@q $[{E"`X,g9!fטa?^;n.)(=K*7J:hȗەgV8oھ$HmT֩G7?eU~#ŗ_WnN9tVivsB,E Vkj޼y_3 ZB"xSN]x_^V=ʑM79NNN'Oxeʵk/+pgۤ97MZOI4Ͽz%]ڷf)L!pϐ~ReX GNJϮ E!wQt=N}.{#M4r죟C/l%y xcɄ q՘3~8l'W|r2oɫ X]5ڱcG%ځ\ڵk_~=>1٤> nڠno:c8uksÆg}m#pE %0b6ݕ?~Ďw.wF7޻?rL](\!u/}rCp,{Y ;=Z4ڸI ů`j,\#5VmURzgSN]?5g~6XB~{(qڳBPSNW;_"޸3R[)w/[6!hԋ Z)5J}qNjWr!^{\޽c͛7ǡc v%|[_Zjy6nܨgۼE"`++.`E[Tˍ]휆5 hN/n3l[+v;'Wb缺y3yNA|9Ϣ|8=vnI΀~8|>~^(}TF}YK.?3+Uq)(ԳFvedX,> \^m/\B>J6qFƣ7s ġ#νE)b=A_Eqxj-)t}sd-~uot>yXfJfaclwE@xM,sRr|p@Wk>wjsSR37:R.r%s/wfWdM^峽׵p )ڏGҧy2>q ōrh_)HrWqa#!0nZ67%Q8uy?[uɕ6xUe&lF5~wL=ѩ p#{Myg imn~2Ts>2u.eneӃ^eKWxDMLEyzk$*K٨هIHR ?_|rzª680AsS|c A+R4+z!>Gw>?o} ÃFxAU$ۚߓTq> =;3=-W }?v,?.lD^݇_5p VAgkvCEMe[vlc{< ]o?]N Ju9ЉzKH>ZanhSн GFUm E:*C1+V2cZ7m2hԓ ̙Xǰ>ෝZZP^Ltò%Ki݌8\NVq|]QB9y_DX>C9>._3=or([@&E`Ĉt(8}ؠ&:wK]vA /^cs<7l3: JV/\cֲk6>f,5iԈ7޽lWMk"5;=փp.רVk:@vSYkE>[&MȻY KmF?w7_9&^sUĆu+bF='_:saf={ºfI3H 6W=0+Dt6z48o$hRJ(]Rp/=F/.0ו^;>k-G y/Δ.X5~Lh79%%%3mO1-s0LNκ)Z:ά;zm2}G[:P|ƣW? hθG]zd\p +W^y%PTf͚a>>}q㏮?f(<t`0c|xU% ˪4(ԳoN<ۮ15w|mB!N9Oݽs::_݈/he7QQ !tUhȣCn BA_ܝ ⳁIC+!W8Q\7(= ^F+|B++CXؽo.ϳnUg1]̰-2|f'ǞTαo nƸ/utt ?!"4+QϞ5-jj]+Pַ'–i&=S[XX섞/~)JN9sJ}~qUє7u3: 3d3_ IDATxs߲݋/ty7dKvGu*\%Ǟ[lJD]^aI#Pzzn{衇 T&[]-0,\x->op]xy[t`F loa} W*NoENe'"P1wg쵍6w}!4ӁMddߏxzj;q ?SjNJQ&/0Q#cj1)}F7;e[gؿ]*j8W~G۪^D#[໕ jfQ w!QVJ_Zla~%<:5k4 ~1cgΝ+kFz \~}]XcֳTÅ,ݯɟLŲSFCܑ~rg$a {+1_ .aO}׽G5ݚ;w\qn eA3>[.{ ng,D2U e yΔO>#^LӪ0xdI͚jzfO_{Ӱ!~.hKV,z,;w:'>ͯ%Sn$53bN%rVK 걩Ъy;2^TF̀Wz'Eⓕgk̬wrE3ԫAzEK1~%X plܰ{%@d ԸMT 6ߝd=.Mk)t(]"}T@͛OӢ{{3' +_֯?m wӟ#ݮ&s`:'*<[:-< ,]CS'4}f5?{fMڶFo~/&Xc7&͜5/O>9Tm_|=C2˭ \*鬌L(K%U]pdGN:䓕~SO2 ^uiEa)ʃ{*i 8mʛ+&2 V laWFټ'Zlgomvh0Kg$fóIE"`(#i域d'0rx9Viskʌ*8oq_GgZu]jUݺuʌV7M6Uf> 6W9[x`ǐND"_4z5f]YYS;'OC"`Xxѧw>Υ@'a`8Ow@ıpNJZRF`ْE2&@%yfѣG#KXIYlG`˖- sujel@yH]kߴ!<6|?mfu%Y*xrEXp٭&f1 u"]ls\d˯?b]YoCV!\>FM[w^auC({oOwS>❯ma!M4UME"air1o2Uw`#кm{xX#nO]mdsg~EJJ`u垝NI2[REJU[*'ۧF*GkZX,.[ëWV2"$PgdHgt;۰E"`X,s1J+FE"`X, " ݈نD٪X,E"`Am\[:oX,E"qT,_,8VE"`X,@Ca ׌aDSYZ'X,rB`YfY"`X,E"5fXxgyZJ:tp++nX,fN<љ;\d +#_ P(nmnO8vy 4rZ1 Pէe/o+).^fͶmJJJۺgX*/ǟp¾}*om,arǜS9NpM0ӤS~z,O S 45ZE>a"`T@' u"P ^܈7f$y+Vu]\v&N-OM|- *Dn3TkRB`uAv*MzY,E 8;wtkEB*'fGzx@\PP diӫCf@3#3,w"l`:e& hSgنoHiE"`z켚Md,[gs)p+8Ca/2O^ocXa.+ólȟM#}y]N^J+JT=[E"`X!cĬ1O.)T\^D!wڲ.~ܳѳh>='RIF YnV<ڣN5 a0喞@NϖFQX2E%sx)/)ZharغdX,@Y 1D3&rϓ rC"gSoPxvflP#t>,G .d.駽v79;atvK@d|uﳔ%Q#f (.b}5;ڹkU;VmX }I,㳪e3ʩ3Y;iJdKAyuyǎPĐ9g! " _:΍vZ1p\Q^hNX#DzF q1l=+ÌVDk̰v5D%uĸ_w켾GV"`Zơ=W ܕfr*BTa%`W `v[3rK' `3w)t: )2lv^ڮs/\ CAR=h XU-OO}nW=Vz*U '-²\si'y׮Cȯ-E`?"`ڏWb XxV'BN%\N+@xKY|2(&Bi Yy#|`[Dv{֘{ڵgw6 ?mn{|?⛰E!`S!^Kqv`߁XX,(%B-3BCF7!=Pgy@v"O}7D{~JT\\hgJay ^';y|}Y,-s-˯oj,tt'gNa_U<|iO/Uչ&nMɞeBӼQ&ʕ+ypQn`qlJ;&:{697:{~kaKxjlȅ8FCw\nںcێn uZ,ڊ9KZGFÞLJE,KW:'e%x֘mlJ%F!$Wfͺu[+،{Hk3aݸ +&Ϛӥ ֊g7nԘ^ǯHY\9l wB_$0b|F30%W<|"Pw왅8dܱ^mFh˘oIR - B?J;D+yW U"yvv~ Qq0jռi;Q''W::cu֯+X.E0X J(+w?cıx?؍|*iRĜ]w9_%t;]-ħz?IY&@v#ХGE+b11fNo]XK{ce)E{/?,PH:YۈeW[-qXժ+~ꆻbW6[f̐n߶gO1ٰ\3Jai1\B7"\@sӻ[ hb-odf:cNYER"*"٭gM.OSnWn~kEKTv+b(kԨvtƏ6ܽ 7fĊq@HM煉|GatCxv4i/0 8 ЙtJ_IFbw3#R,z<ǂYjA~5pƋxPƅ3ͣ3$xQS1vRd;X2>?dgM?1'/ l(2ݫG+TЫ.G7ʀ`zZs4rPj7hXg_ 8ްTJ5|O6GC'ѤI|.x)`'`+o?}̢Ly["g3#OuVۋpYK퇏T (Z Ph$EN:T,ZnQA ]~ry8#g޴n8Zge~~X0[o-YUn 1M @ `_q} @ H@ɭ~pͪc|t<X!5js mi]{0h] S\O_*z i *V],((LZjI҅jCnew uM+"ur u^Y*20xcޟ{3v8ѽhFoӦ ZzsIktao2*2w@6!CV1'1{t7"PT1ú2xrX9xxW7|jA A3m1hX13p7^ &_YRƫQqvǟ[ie.c4=fq O;7oOV7=Ki@%'iV]L d]{;#~0|ս↢`f)Y2 ey\o )6Y8^GIEȸƬ2fE"|eʌ-عUXx(06cӶ ݙKLMY͚{Q-o(zܤEъu=W\}KGW׫vy7M$V@+b?ayyBl<!+#iۼ2 m̰ "ELais360VZ\M0n]H\X,X+S3 ,΀@"0˱ R浵.k^f'6ezחe+~1dX,@Ga4sl?dB/?q LY8WFLl$|/k̼\C9ڬt|k3L:>6Y,4&d”=? ?wӪkB&KMZVB2ךsld`"VgD;ay\T ' i8ܕANwLc)E"}@W~z,-3G o]L*s ̘j[_/ Q2 TZËOPq1cA?Si$1 |mʸ;V ?x!Q鋑4 IDAT<4-Nj XY,!lL_ 90EUmf.-kNvKIYgs+u3q3/N+ d f(+9܃/p ,E;&0!rX<KzBڍa>T]m#!xjMAYD:/u1$IޗV`@{B/ bTm@C G&1ؕ jjSԿW5fܩA[r)ˊ[nMfsשS'u!+unQ|r_eޣ2 1m]?z"c6Y,@+s[ &,ͦKɟMi s 鎻+#vcYȺBi8_]fi ;G.|T ^No/[]p>$B[XRy8xFeݍH{Tadn!Nk= )$!n*yx4HAGyY_?Dg2oUg pTƍCnw#E2"0g zlDqX y; v&lGO&T hvF2!Ҷ:b@TQN"j዗9>_6P,id\0 -ìq8**o)Z k4!2lw9(d P.*2=cje2comx+?^l_E"QRqsbOޭLtV'o:~b-ûpe ?@ttbbg<+l}c`O@A.E> ~$Z/8nFieRԀKHzz"I؍8iĵ8d4'Yl!sJZ@Nvc~߾XE μ uߓD:>G B˿K.j߉у ɿ?loۉG'q$Ko9dbߚV}+|R_`@%^+@>3%FD>Mu .g2Ff)3VY-Nx.Ѱ޹dGf5H'`ׄ+csOwwxŇumΊ2a ]8ԣu$b5jTZ5+NX,J@-w֭D Uyȡ1 +:O&MQJ`3LRE"`X,U,ve`bl qxeupZ9ΑqNf νID q;*Y,E"`22flb_Y#=ڞ *<_=,HݞgՅXL! < TzϢQ%-w.0%Fh|h;X,E]x=Yg6gV}e-#-O ARWg}^I(Ad\sJJ/!^aLכsYs׮_JE"`X,^h3ӵ:]6g mI@ic]E.HʉTD~.3XE"`X,s !Ԑ0sY35Q!P)&X^Ӗk.~-E"`X,;9r\cs"] ͱ:uȭey*/41'?mn3i{qd-E"`X,v[2TX,D`&~I/o[UeymNv1/9:1;k#TaE"`p ws2n g*)9о$Hh,׾qضcf~a2,E"`X,9r\1e:9֙+4A ZR"_ p0 _c#ZE"`TezUQ   G5uiB:H<+iQ ) tpd36Y,E"P;>,0U5f q.0[c-dkX>fX6 bue 7;{|A1tfU[,E"EL<1Nv%yfWZZ5u%SBqhb [f!D}Ϛ5T40y2]>HIR{&tb٘™dU"?d,E [j@pGPz~J-W$l+eXbƸX12/ S*\چ3 g@Uq`!GŅo,>⳾g#9^+whV]F/ i3t6M6-wr ',- -d;[4u​SAE#8L?&X,D@c &Cr93J/x>g"#Lߨ͝ ?o|7=;o0k%4NJqFtEF%˦Mv z%`:}({O 0iiT٧E\çc6C&Z^XDbګ+#ea1k6$@I qruyW M==!0he/c+Btu/ov=[(n>UU)uI.Ax1gI%X*mz06r  9xqDCXE" A\_sPz*J6y'#́5hOUgy+4ZL'``c؋NmrMnbNZcƝ3JJ uK7AGT406=зޝUՋYe)lRDH(@R@<>O>DjH|n&(d67HVY EB$;wnfL&̽31sg2箴봆N2,m< ;ZV_]w5VHTkYm5}=F[RX]>/"Xec a]j,S>r|0<>d^ %`G*Y%iHP$L8ɫ-緲Ux֕PSaY4'6G11cꓠ? a}͟c'H&aS~'mNOxT-4/CPВaG+"Qw6g8 :Z2=-g`A1X8 r|Z4EzIgO?5!ڶ&Ƕo%r:7Cg2G<+#q1`u㿼22ʼF?e! Y2eYbG'f Yf58]=|aHQC3zێ6/EnV#_2zhςD,ڍl>w |{x[Z;K@`b#/!1,t"fgey;pJ=JTz l2d9,tcLνI%4^ԇvVF9LEЌj^p97 ۚ]*᫄<|XcŒaZq:u$ȉb*`'hN1rfө(Ie l.T,3|*7Cm/1 cȉ+f)7BYQǬnJ"d,#jcZF3G,6t@ $1;As<+`蘀 e5L\ixOYV:P jm|tY/Q 2ۄ>"DvfҎM&,"\.I_K/W*oiff MΆQ4 @\']֧#fw xהLq%,%@ȫ@<\N ;[Viѻ+0ul77]{oBC@@ݱ}N`\i7Vҙ4ghhPౕ-]M {}8  P)pYfybR9HˍZu%pD  $B6s2.j\91G'aWTQ׮ -,K_1TĬXwBUh羶Z/[ժޅ=T kDKW , 79g ~v;:匮ȳ" \qUĬG`Y&l?[wu@{Cr;yp] Z5u ]Xm2\#XӺEm\ײfԊҗ@@ DtxV +թ[5j8~ȴ״źNF>KI  >cIp"bz٤hIM*f]oug{C e$Z]7G;wf6KJtjGk7.6ME@@ )AlHL6.jt9 LvfO^ij&H$*?,\nxSBb~)y"@@ )LHiKL|KܳD%_xfO\7@%oWJafgE*  @I Hp,+de\ '_ß7+c@g@@|.ecj =7C%+;Fh4EcDROOFшy;dQ ynOʀ =o$jYV$#IXh,fزm򁢧  `L¬#iFyj9cw1UTYQJ8]|.-[[/<' @+Bȣf%-C`bUC>(2,/8GzOnl p_WG̍@vF#0@XK,Iѷ޼~tC_=zJ1`@@[b֣rmF}eS{lɿ.Kc(@|'$bN#ezA$%'u3H(t:vi eXԊƬ !i?/ Z )fGF 8g?y'n;O9Y&Јpxw^p,mʦ͘1c篾շeTZ曓iG@(quy_eI>W7q^KxI:Vjꊏ 4wa;5RPPo""qW~qҞWLo#p9t?>_xOe*α'uܑ`EeN&NOM^z=OB=ʒO  M'dv9TI0g0\DZO ^yH-{[#DMSmKeݚJXbE59]F]2*d"d|ʐbʐ'jhb' O]Ԏfj 5-lFʛwMrYrD6jTْ՞Zئ_%['^VGw$&5&>T:ӼI cAY.x3+ IDAT@ X*d5:`}Oɫ2Ռ}j~9/XDiƘs ##5Y$1K+)Kr/B6'2b/'֭)mv|W=q͍[ݭ'>3lܧE&Y}.[VM&uj$SMGlm.LHT+r_P824zw~qí~Ȋ묌\2&@o=\U4,DKg|$|fg4MŲ:|KIMʘ|ɳ_n'|9!1gU-. N%2sef{z\ />IS]IW/4VeUf \LEr- n6ԟO'[/Uﻗ=$2 u佭Û ML6ufٲy˯o|6rĝ]_ Mz/s%鮺S euiPjFxx1Slpۘa)?3+_LfSXNJ%V4Tg:u>Iʃ\[NL@8=W]! 2dٗseL3^vU|7ߖFfUG"#H($sd8 CCm#F~L̑\0hfϘdf4xfdb;WNy,gċe_4tTwc5w,E0ǯK'|էwexn> 7G~{?͉ =|-O_ k@ {x`l!?\s}]N>>[Sg_,["0 >S)G+|;[9m{^xuK#CCòWUUU'y* # ECC#2,?K ˿Kl?u悫_WONFRŘ}}{s@r3ֲ'U@~f[ͤr psx}oد}_P5;+[#R>r3;^3X_Ǟ>=HXbb1ۆCpD_;bCҚ%9rQ}!a}c 5.=*)&h0MFVl TxT_r1ew%A/.s9w 1V d |۶{a%CMԿj WG7/'bYX"c~9D@ $Ì1Ѣ bs>lɏ'YR#2guKL/k-krHGO8p5QJ`Lj @(@1f5E` . aľG% Մz6 y0bQC#Yg0\̌1Q `=,ADƱO]B,}KBH,c [DGHXV]tV:A@@`Ƙݹr @^Y#(KGв KF@4;0D cʷ~s5@D e9q?5iTmRR&mV*1(kK%T,uy{*8I*B]6%$iL 5WXBm@JV`sLfAtJ&  0ZGf%{lX:`{UP*kY*t%*``Zeq| *#[fC@ 6pܴD,wSqs /V@ĸof5! @Y 3WĬǛmxD(̍.ha.ikmE[Xo;`u6koo[$~3r̛"R lА5YN9킝ߝ 7MkGoֻbyogclܻeIqc1  PvrȰ;04MҾP?%8k{/R3@@IcƣuV/^1Xc-ߝc@  y}m..mkpM|gk~3sC @j, J;ڭ ho4X %1ެuI}WW5'@@2 Kfwe|˪=rY̒a1;Ny2j3@  *<漢 v,oy-@@JM S#.%P7ήMFFi K`fHf@@ ?@@2(<29tKw<"7\cQ7J=?QE#u4:k?X /D\(cJ3 HdϞl;_JĬfK)O$,r4RQs}OlٶtY %"sRL\"nر{Y%UVTgG/=%غek@(Fr?uߨ-Kn@DFcdX7^pv8@%~[TXVV:?~&D:6[11w!i z{ O{Z|5Sy RID˕,1Qzٻ0A-2whl܄\wW^eu_L߾㿮ݲm˼#k@@ :ެL ehY/6?UU}@/Vۂr#&kj4n]D8ײz+r^ۺiӖ]v.3g]owu>TX̊@Iɰ.ׯ]Ϝ2wn,A@ЁqEajY*Yi`34|%-mW }kjQMQ[䛆I#wߵu}fyљQujeekwbֆhd$EcᑧoLq#ؓk_}9 PWX?L 2*dySd$KE.\(ya$,K9- y4uY}mRd/.) 8k;^r⥅N҉䖹:@Ix;GcY~$ GvwV3vON[yV2[o:\ke9fNHМc; @|/3*%DgY}ۣ] ޾XQBڶz'1䄬}m-•![ b;ÔVZn[.jYn UKmZ)Rgj]IKj:5J'#/[Fviܓ]z0|O=y\4Z+CMn۶t2Q1Ufr|3m $`ƒ$M9e5c YCVTxcuV<e5pC{Yv3uX$nl~[ϵ Kidl{Hןx;7U%Q䵼&R|s>m%kM %@6SbX3uď6O-#9X1u3eީ7e-n#7]*w6̙ʴA[9L{jQZY/}.lRoVU3&+ d%N#u-mcIN,IS#*t-`T]|EZN6xߍGE˵k蓟VLldǔc2esY'*AG=Sv{[G65y֬r˯="o?Q~U?տ;WO-)Cn;R.KuJ6/ӱ.D9on1ЉF(%פl "D#a&vWӆenu#ó^zei9 뇦Yox;MάPr8civ{'?V2Y]Dj:1jn+zS/6jTפ|S y:κ<&+ǔ ZCz*?϶/vJ\rR}V>KK6+2?s=յ+[2 91Y#CƬ/`q@Ύ찍j U}몪]6S%>ZyKWea}ɩr5S/-M;SwL[]Mi+JH~a}=>潡wyc˖=|)'VUus?0/ү}zCCi?[jL92&!7_:#P4qN+Tפȍ]i^[#`fRkkľA\4Fŝʎ [x#@NXPQZ:390;3%[rFzŰdNo|3?}]׿kw~z'{GqXl+Vշ=wxm^Ԝ-ʧ%!\73 d7_{|͡ *P l&P-Dʰ-%3ap KW;%Q]`͏ge_jr+%U#C/p21%/w8Ucy HU'fB 1g>V [^sǯ_ٔϻ|tc(;ߜ8%1 "58* $ŪXbtWCNrq~eYP4gN9h//1s׾-+{h6 yd{mgfVn_S/m|c:풖&^Dogn$ ȩVDO委I2 PHoBȿ@q^]>oWj:>\D|& ^[^`[exe8Y.;}prH(lUTȳ4ʽeZf7c>)ȭϩ]8;-=Fcj@ $ juu˿~)pOY!֗I~d;4V=eǪ]7^6m{q'eJ'N)-T"L?jR Pi9ٟDr*, `i2c ca泾W~YwᡡxX{ht;n5}kׄ#fd jld@@ UUΏ +*+eʩS:;=€f#Y@f5QY='c@}oovxÁO<țoic??考WOm, %*㪩S]?vot\L<(9HTݺOe }%/YĬYCڿa/Q`c.wB@ ! 1u h؊P,2$9Q?OtĊe?Hט LJI  PzO:eg8]CjxԝvY1miD̥GZ@"f=Qʲsa;B%pqe5,bU23 @1f.㍄ @ H t)YY t4*L|qI`uu̖ #h"  P81:0Ѳ|Yc*& JF@@&0ʶ)[Z1ey) y   PVˏ;0{e @@@T K+jܪt)sY;,  QcRBep@@@ sV!  3@@2 0Ɯ  e/@\o@@2 1ga%  @ T%;F1yDo,'z6Fhtч{d]yI[@ 1^(/>GUlE"I8%^B*jzn=cEo@(CX,D̩&,)e;vwJ*+3޳'.Kbxx*e " A;`"2<)ү񂳛q+xf[@j?c<:W1旿uH4 GFHh(;W kw;mIW_,yƉ~  <}:8<(Qp$DGFˆb5 IDAT!+oy8yp8W?Dt @ª6TIH"dIJNm~_ yrrG-,A@H1f +]2).@4q(3ӻl:']w#e2 ɵ17c  0apR`,reeG-`nZV@2u:P1{-ۆ 1d9y"AsڢY XU5,YDϔ)K5JQ@17}w,c̒ʬe5a%736" }B@-`Fc- Қ6-cj(I.lj%+C͉ ytЈ1S7Pmc̱̃s*ǜAZ0# +ݥ`H~[녽zOݞ\jO-!0a𴩖c船ʚ>-C{d>xlIVưójy8tqyg7"wV9geo5KգZY^^GCJK&8oMo]-UU5y rR1dUď,gИH싀/$`vO&] 1<[*%Xapm}.XV2ߢyv/(Ж&Okyo[;`.@+X"U ]`\Yb2cZ!;K|svY[-g#!K~ 'w|ꏺ=Psw嶕Thl=>58pw{ $N戟 Ap:T-MQɒ.Bv:FfI/e  4wBD~Iz3O$|"Rz9Jjq4SgG@b#Y.1+S8"sB* "hd$E$SyW$CM!1$c fq?Nvafafn: kسz 791m_b[ljX󾶥5@ն@D/jͼѻ˖=t+vBu_ۨ;>]6K {w$"{[tٽK=%% $2077s'³c};Ʀ]?7HB\֘&K>ޠRIɅ $UCZNz:"Pt2]c7&Z͛9ڣt+](XÚnyj,A uM<~^@Tnt#ÒlȜ{±$d<7k D6`G g[ ; {З;'cdW[b4q6\g/w[%_,o|6D25̦ 79ǧ֐:'btXMbo L1PB4Tֲ {=ѐH$,7G-}?=D̉J˴Lȅtf#^%; բlf~ڪTFLEEJiDg%IǷvQZUtCKcNj\9%|/=eM&1L+=?{VB@Ņ^xu S$9 ~+h@^}YS>(,7^2uڎ{~xOD"=5u?Q_u<ZFb'1@uP, ȯqօ \~W\qEuwS~_g9ǔg+ sbHJr2d;oEvD2g[+! @1ʑ"$fxW$lD%YaHJ%#&c}v9Y A bQ0gcrC1 , X,Xzu*Y_FW]aSp0,9Y'l(MB@@(&Jv0K3r,@@N촏٧f! K0Ou @@&V6iD=N @@`D̓@@4}}h  d X.KD̓y @@I4nj! Lc̓ Nu  Ape!MRi+DQ)&FhLWi(1ѹGzu@@%[dyLs~h_~$2gOpʌD-1يDԓpD= KTlzM+{JC@ D>"IHL,bxMK0 r۞z`ǂx+kZ[n9CH5u ]Wsg/?߸z֫/y /.iHHƒojj_s?.;_;xJ)x~-O) "|(Rd IF'H8L-*_Y& 59В1}k:m]c+m<m_ll1^Jy+[Ƀ]X3_W[Y"P9-$Q Kj9C *d_3 iKXyn6gs'"@ܹ̕Qhm/\'9לuKjSzJd$;7%9真E’'2bBƹ}Ik|73MsS#͠ڡݳuV_WmEY2Oa~sJxS2S M+a6"p +[7-ݙ,?c~TϦ "׶:+-&*S|) A,1f ZOWDdzp($~tU<{LTVƞ%dP]H$-eWjl@{C4H)}~ٳԺP!sϊ=V|"R?V&>|ٷ?;ԒY bΟ%%U *{GaI{6\pxd=S~B2O|| 9(mpM9]2TR3JڧuIKW+(pF+aL4#|25̦kO9ǧ֐:j4X#J@"]C@Ӎ1 #ީɑHX&oZnXX͕!cgleR-Hlm_RSZW5.jӊkӎ17v[r]Mʁ&JŠVBԺ, KzϬDdgS'|lbtٔQ&*Pq^wuwJ@wʉUǞu;胲/]͒qE+Sw9~'iK$bqcYSN?%n~z߯U۳(U;ߺ@A/_|\WG(sbHJr2d;oEvD2&G@_#$fx[kQIVygɈɘ1We,C@ 1д< lP1WfS31b*d9"ϣc,c֩ f9]v톍WOzd:hRA@? 1Ц J_ սH_})&:V4 GYK[?4^VO.N b4@ @D'(pOB!)gv"%BݚDe\%,V.畕ӷ.WVUK,l # @whp.| ˞;〚CY-1_W?&S%Q52 BQ桍o]UxǘT\g@smZ`ƌf۪)0cHRG.761%Yc2Ƭ/S0 ~ǡ2y  @Y 1.:+رLm-sV,QZP#y ,z ٙ sL!cO/3Dz,,oI:Vɘ*? sỹq%,s@#7]{EO@@E*@@sp-E@(s1ԩ@@ 8D9V@@DPN@@1XR@@b1C:@@#@cEK@@!@\ uD@sp-E@(s1ԩ@@ 8D9V@@DPN@@1XR@@b1C:@@#@cEK@@!@\ uD@sp-E@(s1ԩ@@ 8D9V@@DPN@@1XR@@b1C:@@#@cEK@@!@\ uD@sp-E@(s1ԩ@@ 8D9V@@DPN@@1XR@@b1C:@@#@cEK@@!@\ uD@sp-E@(s1ԩ@@ 8D9V@@DPN@@1XR@@b1C:@@#@cEK@@!@\ uD@sp-E@(s1ԩ@@ 8D9V@@DPN@@1XR@@b1C:@@#@cEK@@!@\ uD@sp-E@(s1ԩ@@ 8D9V@@DPN@@1XR@@b1C:@@#@cEK@@!@\ uD@sp-E@(s1ԩ@@ 8D9V@@DPN@@1XR@@b1C:@@#@cEK@@!@\ uD@sp-E@(s1ԩ@@ 8D9V@@DPN@@1XR@@b1C:@@#@cEK@@!@\ uD@sp-E@(s1ԩ@@ 8D9V@@DPN@@1XR@@b1C:@@#@cEK@@!@\ uD@sp-E@(s1ԩ@@ 8D9V@@DPN@@1XR@@b1C:@@#@cEK@@!@\ uD@sp-E@(s1ԩ@@ 8D9V@@DPN@@1XR@@b1C:@@#@cEK@@!@\ uD@sp-E@(s1ԩ@@ 8D9V@@DPN@@1XR@@b1C:@@#@cEK@@!@\ uD@@L?ܭkSi  Ep͌10P1  @ qh$  d$c*':@@"LcG;@@&O71O;5! _a1B@@IHf#fIm!  Pl''Ƙ }@@&0vQYC IDAT;8D4@@c̦U>:ԏ  PL'5,/yX@@ONxlQy~:R@@`&0P  LgcǏ! Z )%CSsRM\@  ~HG1;;@@@(jSGWTTzE@@KHH)?@@pY* h.p@@? 8'1 @@ H<"4'p  afDVF w!  PԨ8!.D#(@@? c66چ  @L@  l'hNDܻ$؇# [͌1ە@@.f~س9IY   wvJek@@JW`r$4g  c#{ǚ" "@Ĝ  skz  s.j  P>Ds)  @.D̹  @1ϱ  331>  e c&h.M@@H=@@ t-=C@ȇ1|H  [ )1`NZ  Ph"B S>  @}h=  @ -L   b  |@@` 0G@@ -_)@@ wb7h3  X@@@ 8Xt<@H  Ph't&b.45# UDA=~@@`r'ǙZ@@*@#G@@&Gyr@@ DA=r@@`r'ǙZ@@ cD8r4@@DEħj@@p$  0 ^Ƙ'@@&@Fs@@ 'd@@031س%iQ?K'u{lh٤1)T  )ӎ1bt[ qp] v,.W3nbC6A@ (i#flEpG4b>ټҼ/X E +T  O| ȴcC*4{Ģr/[/ wʩ;̜y/(ms۝L#>k]ꢌ TTL @(cG 8jy &J   !zYqd  @9aSݭ%r[nIXn 9<#ߎrã Vd@`\1f'ϭ{ǻg'N"~0!g92%e``@znЉ٘m@|/=6@|!CV qC|ѳhĊ+<)K@@ʐhp[z~֐ wچuw!TL>fHh$i\R2%J7N$u$,  @9!+0Iwr9Y./?~'c?y.!%hf_~y_R!]+R.0)f{IXc#] &Y(jjjZf]]]fXM]l ?6 8%[[?v.W^-qeV]XMkkk̿RWˎR"feY$bNj\ձ1 @1RGF yc?6W^=Py"ggd3w2yIn)`(̿Rf+ۘDeF}:M#êMy @ƘGBދ/Yd͐WHlBl%Y2L g4uIff咉,Yfe޼yav1cϲP6\d" *Pq^{Iݻ+~Rs u1}tAC{ DH#g}ŷʵq ﻧ!ŋ/8Yn;   {"f"  PT"]99m Io bΚFH4Z@  ,$ǑA se?%ֆ ߯r c>$1] 䊥% 1ihDϾS$  Y  @1ϱ  $d*aw&! +/Α{zzT\rժU555WVe,/E[ ;;; eښr4)(@ȘUJ;wޑe )^c>9,X@"FsYh"T]ބ\ljrŋKc%|okksug.-f}\$a&Te%s*Jf_?9U(1 0yiWt{a.7/l# ${x&<")?}C2`Me?H@^rR)DFR y"I fx,]R fmK{0&,d8RRNjkpZNRb@L_월Z K@B|6eɨ=)hvK_y /md2O̖L˓SO=ս{6@#fzjUp]iΞ&Y(??ζˮ4/FBE{Yl.Ru?]:^x I3^6VXllĔ&vR[ƌ/{6d ){^ZHo|n"-[v5טO&i!xR ̘1I'$'Mè^hpO\~w衇KwSY./eKy/JO|<eq=J(aݰ{{Yy>{O~x^]`M}"2@jpdKn.\vgMM Ÿ, q<SxM>z->q夃G֬YCg8gWNMx…5LЯ^~eᲲ7hQ p۾?v4(Qa%I- }I.%` F4~W+?s---K-??/YY*Gp5ïرx tVZZdFi׸=\]3  XEVSx@U@j`~Sϱ 7DI>Q9ɽA@@@GDS옆 i`0S#fBJ@7?LN+ AE}cdέMMM999===Hm&/p!qBk|3BıvQs[GǫҸ("  iNwt:P0a/^Ls^*svttУ9 'ޓꎠ %] kuҿXkAyp@`|/_S_ח&.S|oF 7@J&N1#fl'JF?)mD@| b/O    qWg?\uS3ݔ}e@hheږzGd^:kSӳnݺ ۷W󉢾+S}y0ZXhh@* CCV,;@4cڴi%%%B\WWg{3nʹH4 @4 @ЀlȾ5x2xۜ9s'a>|rc J \z2X?hh@B xpw-cms3!^}*ؓ >Ɣ]4 @4@o<ʲLט-um=]z4YiFiphtܼ`ֈ^QO@P=S g %˽}Ntk:–k?GpŨ8@4 @i#wϪU y#2=л/ OB;j.æވ^>g>fVccX>hhH Rʕ+sss/r/c(oω*Ypx IDATrY<aE h 40oz~BL!rȑ#7nXB.Gnx$;8@4 @Ѐ˴C}t>׏c:D7Ek.D3C~0ph 4SJiyӦMG?lv,'lY>~~3=X.]H4 @4 Xe!x\cV1{B Hk 8h@r ,wޮ.ʥ_ZTaYy:{GǞ?ij4+F?{ꩧj}̺&.;c'ZW]qCQp#rˊYd 08@4 h|]}ԮΛW6hhh^ޙڨmfqVY/5a˷@,[ 6(NӖk1cUUCH5o4 @c޳gOgg' /+SP{OL0ޓwOΘ E1l޼YV/0arK^#c^뭘 ^V]6Bp{ZdWQΫ$>h0웡zP(̞m߾]z)$-#Mp)h@z ,yݻ/]d_Y G֎WǕ6Z/WNRSv ƌutF?1Тf M {*灎'pi_-G6k0o]eEL1%Noac @4 ȧ%~G;KfZ,FM64?W>a0Ư'.UU.?i'k6қ yw_ |r𘆇DFPQn*.;NM#o-B紣rLN[G}ªj9TGᰩ0t,צ{3s} !1j| 1GƸcܡh=givkcT4ZVen[<ϖ]Xa h5fe7=S&\c1+;H-p`ph] fm۶EŒƼsΣMZI#>YPy4phh@2 tZSSӈ#hLǰaۯ^ ǫ"NS!$f_m֘}phVc{ŋuq@vttZzhl =rSs Z*nL;*Yc>kUvmEߜ 84 @4 @rk6k̦X`H;Q13BhhtӀp5活y    ^cN; t @4 @Hd:t޴     %3g.]Ty̔L6RRg;3 {kg@ @9R"2iYNXa/+ɸ#ń/@CϜU#fzٳ 8a$Un0=uV|[aCNm5dyXRI'F>@buym󷉟2`]6R)3o; ^C{h?Lx)^i>XT$QCB PL{ΝǷ%D"dj{js~"')w5'GazUO-U4br;Q  `u ;@jORFzt0?&3"γڢ` HHvFDb!@qԩST cX6AWB5rc; ̧Vޞ8V(k̀4ʍ􂄃B.dcW4r~g$c-7o}ʝ8ng{jT8>[qBy}>wܸqӦMHDМ & w~A&'jTk<-.-LjWd:ٚN)O>?TpBj bWGEX\_[hџ ׎8i%b㨟VZ~b9>3744<!O>{Ν;|#<2k֬SCv8kpO M&ĴAb!ى걹~Z"VbqJֲ7[1)bsʪ6ؓ'x EEEζf4'h'    7]2e .S {IENDB`PK !Bwword/media/image34.pngPNG  IHDRpj\ pHYs+tIME "#wtEXtAuthorH:tEXtDescription |hardcopy|2012/10/17 11:29:34 LIM_J SGA250167 tEXtCopyright:tEXtCreation time5 tEXtSoftware]p: tEXtDisclaimertEXtWarningtEXtSourcetEXtComment̖tEXtTitle' IDATx] `E͙֮H7!\* 6xï . FP9‘H {W]3$N6TWzիR?~ " C Qڈ" "@,hPQ D@Z#j!D" b調}vCL8+X=OhByG5mM4[X=sCoNffyjC>]@֪pEc.Q͌XKfgA$NAqqgXס r\yB҇2q*umG HtUuh]8r*m]1)7!αwsɃH!*j &ڬ&G"|l@yVUEYwgmCQ*@xJ;.Y8`'D|(cZօ/~6`qͤ&VSeԮƼ0m+k|91N_XKf[0 &%A%LHYM q@"Eɫ;5Z^rt|eєE;{K ^Zv\r2MsU\-,SOp*\In.yΤ{"jy#yq;Β(RjD|`Ě- Z;lH2=*)O8U_͹^\MSpZAƋ<9r!giT{O2S܄8^% P[Uգg?Xx=!HQv9O>!dqW0VX FGrWY$ђEiIs{/$-ďz +\;˹5_'_*{<3srwO/^6n]5% F#.bI,׽ d5@&V(L7|5LԅO&M,:rtx2K=zdVBR\5A1MZ8Jh$ X`8\o0hZbK<0vx]ZYŞ8_o_ x>mkABg'G-~ۊS-"+ C~*,ԣs KcH~FAbbdQa9ӛF#?4`i{ڥ_|Xm)xm\r/-X_nG40wDh\GGsjLr*Lb8`g")8n#dRR`$[wĘ~O pl?oIGϧ{T~X!^ڑ ɞ`!wKJ{m\@V+!i룞~<9on+b5Iv}B|QY, G A+{&̢\Ǵ`IRgzZF4Wbt~V|!C~p15` cHEҞye%$p ͢N#O{dRtdvD|DKE\7fZr[J+?^\ s&F0Im<)}S8iȦ#ńe¢Oz݁XH2*m?_!)!jH0pَpLATxOe֎%ƤcthD"} G? 9ON :a-7|xX'FweDt^s+": xvNĀ#p':w{گ>6;'*a& \$x)9vTL8)+ Fo8\ 7WҷU$buKC[#t@o yRS?0akPԖj~<}`6(wzP5-\QxY~Ty|y+(ҞVCnQ-.牊5A-Ӧbxxr ;mQ<:*p&pY':.˄/yjcI:4-xHEkFJȌsCd[R]6g/&H Kiĸ?W}=3;Hߑa[k>raFam;qw m2Ϯ4eJ Kuu/%?~@$Nڎc=ǚhMlN3}y1Jh:7u[6A>K0  +zM9vq;+ھ)}=ھmqlFk;Ձ:C;t\.20sK]N- >ߛ-;KGcPQ&8RL֚%ƛb~:EPɡ8$PVaPaqߨUUҽ"~ܼ7Tv}={l^Eͩ#?]k[& K}jNDb흷Rk|)I飑RLaϱ'Xx>_53<R"S_{*s=ό)1;dWp'CyZԷ䇌A3iaH_B{Eך1tPGp{HԔ =. y)8}sXxLڍh1xuХZbtjV©G0w >rBgyp$Yb%K)?-z5e3<4*F#.asbvHRzlݬ?jI2 $ Iࡡv}FrRQ#B%dCr%LdAoع% 4~G"폓7]l {X'=$A(eт{=&荴LM밫m 8/8oЍowbOC 6 5]!9(zذ:roFʎ79DA\:^K~1"zy9 @m**y b@D@06CD@P3 " @F RՀGD@y `gE7Ƀ7@Dh0X *XӘ*T& j>d@D@.X *`M FRVFKw;עU-Z;U+--7ޑfz7cB \+r܈&W]UOc4-. Mc'N *XǦ&5 9$V qSgzV,oѶcvm3VI]ZWYl D#)Z? @RGo*k XV/J[ ԉPL*mG7 h&{υk Filu3rFhFkU'OhuЖ6&KVUp~b~BrXk/w.]9:`LZ-5fTUU>.kQWDw EZ6n*p}}` ?b2QoEH`V-\Sۄ4d3l@? ,}&GzMF// H'i+-,,L<}z"P9&N1hRHTofnm Iօ4oyx6-Ng0Z 4A&cZm_+e`g8zg[zvh0;sѿ=0ZL HHH_eU0XN}:љ{?k%>NtB}6͎lղUq={3iglN\R2ǠS5ZZCBCCw nl85gTXBT6͛7 f󺰩Yh}x(i2<(pf!bz.?e 'D*t7mĤ|=N-U8w(F|ZЊBÓ&31 N'U~D\!TQ#4C )3%1bT6So" 6K\_~CC+a Ue~n* Zv9tF-оO\10 f?dM;>?V=0ci5sf*2eIvnx^̦”d|j5_vƌ[SW^9KvogO_\ctriҟ@~ I0Ih6!fSIH$WF?,͛mX{dP֔P :hPwiIBKԪ5`V[WUUY-=xJNPhAjB N?Mc69}e*?;_ e;ڬY3X?1=b)K& ȂMm6N\8_A(n5/mٲe*^yxbk7KEXd|JNς4ygHǘ^n)pE h` {ZR^ʻ4WbS~Nºv$xCE-hadKݢI"#^vO :qrC&˛ۊ;&?[&\gseN~jKjV%DkQg6Dj`n?6R4Oaxׂ[' o>(!3fpbI$\ 7OGq+WU#۷h n_>;Z9+3W~b59LpXMxsiWS}(0e>!ŏ&vpfJ=_|D=T IGNfMN-sۻo<)An_H}SfUK.QgS56=즠|[`X'N^ۙX7 *DImf7(21jYo0q * wY6٫$=ru *P:tR-&V9 W7{-miJuyAWnj8}n%pd? >pi7NI n2.\ 뫁ŋ=. Lf]! {d=nx\U? }%.XWXrE0}SWԜ5z J//^XSJMв0aJҵwX#U`*s/tݙSCë{\ -[rl *ՙH=|}n9/*eIhw$+tԉm'\ :Ꞗe:'CبndBORRy;:FkO˲Ѵ o oy@:rORB*o04*Ĥ7hM\)ta yr9cG潙urIP>tǑ:.aPPa>RqG%HIԉ1*bɕ)Ok)f&ʿQu9YJ6XӥVedRW&q߄.) '/jgPˬ6FrQ{T Vs }`_XڍӛhOZ]ZִYZhMzx-苇Zz2\*g.-f.4kv=So4'' ޅߛI-oU2R& O7ҫY0@X !ݡCk5xh8];@V -kpybH0?jJYU~Ú^OkҦMxXW̰'xnm]f5RV,7F4`]j3}٦jjM}Ak^ -h(9_E&obF.) xv: slrU~y>] NV%Yp0;Bí.CB gƧl[IaRvj5)~~~c¶[u ۵x~POzʉS)Ix;V\SA({Wzu'ɑ/cTM9T\yu+?@BZqs"B5IT|`E鿦S, R'E =qUfO1 )6|>rmP7S.ME4*w`Ҙ #-ujF_ڛ"; \O/3*PAp0AL *MFS5CZ5뫃d;t`0.gQoR49~JO=1 ܙ<ܢ*JykJs;;P*KC?!ΟFWYW.5 WE=z`@ ̠zɎ z*XSx`b IDATL``;|kTV׮p@Ye`P!BNmlƠT}MmRe9XV ̽\YTrko0c'Q2=We)_ثgz0x{=MNm6Y6`Gn*H }f~nt6:40cԆT-K7T=PR:[;XVME*ܮp;9FE j q,W]h:rMNf\Ġ1iZ5巙8=HP4FP.gff¬ڽ sY2sq!RFo :"d&g]CvUr 9ʵ9&`5Fl pz"97eu+wl*e *6&0uY&.]d7F"&M3 I*`U9} ck\P@eAYNrt% $ DYQ#jԂ{ߴn`sF"6* ,\k 4̖Ipkskn$Vr91bO0z-vmQ$J56y gڅgtLߑB_幛?ڊ$2m_WgN oN1/ >(iIf{bMP-!2꺏ξ 2lS=[3F@ZW a] [X`W$:P6򡉬ݟGvh;?vǤoZ۶=u͛J_Q])(pl_hЋNԢ9ւۭVXN$VVQ3іR^a誰}l? A iWb㊔y9'a GPEĂo Kvd,) \D Ü&'":tr'Y|E޴絇 AJx<4kwvԔ\]}>/9cPTU*Me*Vo)uz%1ߥ5":v)ρp#xy|_v@ɹjo[Z?x߇w *? ǸN2{` s\.t/= ,nH4oӽ@ 6RK`1Zd Kv_ 'l<C#?.}R֚zH!_9ҥ0cvO d@-Z-5d"#`}Lb?mI!" 2D4RtJU YDD@#!X+CD@D@V(b> hV]U8422222 (z16d-(oee422222 COfVvƴ 1H<< x"ZKŴaGLP6PPPP—ә],1 P (((((ʀbPӚ*M[b5i[Y&E@ƉϾcdl`q@ (ncB;g݆Plp@σYOX8 _/kǰg@n,{Rxob))q P⦙-WL  D XYEQUcXm>"/?f<θC&1]Kw)&$mwj"K_Y;{RR2s-kKey̛&f > 3PtvmsL$8W%3F3HˀD Xɖ'*jW]?:}˳ݦlx+:󡕸wNhή羰{<$\[\c'k4Xнmg!?!.9MC=qĐ@C=-GNzt&ڍW%HfoE dV5oZܶN>6nV@vr)`{[7~?Q4STExobZD>2::o=^rZܪYVB>E,ԋ*ݡ{ANJoˇj-}b٬Vl\8dEi@'X}ڮǞ o?~x@L1(8/Jr{&M>.0Ԛ ~JgtOEP m;_9﹦Qvǚ1spV8 /t H Wޞ, _bJsSsO}@A0/Ro-}ᅝBa?>Z:%~EΕAy{qh!o.[݌i xM1wЩK_W>6i;\C`}´T@GhEa?: 1AL)a^%{?߼6hY_˙d‘%`@I􈅏\ #T1PmYWttWJjdߙdÙ%I`ެNbjv].E3&2hDHysãiҹG>֫,6IߟXu5$xyǐˋ ֒$Y{عs}!s,T^xob8 >Q7-fv&} cku"gN2[Fn-NǼ+$ kv Սevzho=p̨As>N~V7 {LG!2u8~Vm4sýWם±YbA<6dC$71pCy-_$ xx˩T9RGMQb&9ˀji$ G@q#䍍/8À7L* ) C2 '@@qqh2 CEՅNlDz#*% tq ` zHl }g84_ *ˆ@Gc K"1ԪʒS8~'?G=:$ب{9%M4>Gac8 rOcY'|?B,$-#?g6YI[t$=TNf n#M:}Ǎ =|cx N1:]Awi>:k^w߁dpgmӠU6=E8 q@ xC 1ٱ3Y`΢ ADa:Nt㡂6<86vcoi'I3FPap0C xCUPcG~em= :zpQ;ԹrWڍyl6EϙĢҫ 䵲kE^Qˆ@cB} 6 g8z*%xg+=u]o3BUׁʬjF;G" gr&7>{<7%)c&"X*PAf7q8ǂ VI硂cc%{=^둲K_v38Nbd"8Ƅ q@5{/7TRPw<({U?ljE3ę`WM̪* ,f6b0 +I 8KdiC޺n]j3tA9yzQxBezoCo̜2ΤJY\#M{SxbZʀ"l6[gkWH6y1U(^rRwn2`]7+,V3br8*Fg0=3h+ gXhq@/| 5CoIPk$W5.BlB$𗳘 tA]Z) /bɚfFP&~˷l~yό.ǔE2 uSPGD@Q=#?LlA,CRE4GˀD F0C##@u~ɐ {<DCCe%˜ M|FFDf=#"#.#»t 뇂= X @ٜ|"MY| =TjI_槂_j;Ek @` B"7? aw_ba3&)G3ߞ5j~W/F¹e3C"Hhmc6, ]rC=,)Alla#q {.˧͉,Zu1q])սr˜Z^MU[ 6 My$qh(8^xBBBa !f!RqI#;k**hsqtw[ܓXlI-I+ijS{ISTwm1IrVNެJ$۶u|RV'ՅIpv3q0ݣg&6LὉiBLȀ1T7MISYCb{s$!v=/VmW-#gbv[A.=KpߜŬDr 1#qi#qR <:}jl#$> Tq mVj=}c"kPB4$WWZ'E󸉫2IʄB}i60oo$x CUwDC͹bΓ^TC]mOy20ksKӬ:{6L~C Rf9q0{HJ0$3!Q b"ONz}T{:ҌГ8!)>WqtvnC6 "3ɅqR:F>7kLw<@ַ&L'.Q$b:QMt4b#^geWwDrcbRay >_<5nK68X/v;4bNyU#mmmֽg<#po SLubX]t픙P/\(;]Q~❣pa! ]xk q UI"o4V'~ARKxyZ~Lug#"!gs684eo,6FծIH*{I_?  IDATwLRT(iʿ~yFPWPK1s K:  Ǒ7&+dzJ) /%u)` 3IHPUњH7K]oL#LgZ! {b} &>h >G 1Z) #g-ߛ<ʃd  "@ ДRw&@qPPϼHծ`tY4Em!Z௅hց*B@EއP}R=zuܽsDLLdLtٖ3_>tdVDu$}H(ҿàq?DpW MLbH `͘HCU,_͏\J3Qb0M8(q5B+b'k{Q42 O1Ee {i#?R} KJCXo I/;=[ _c_6ָd ?c"eOL&7˵qʏ?:{ 3;m6g%A>Ǟ,YL p޼›| ὉiBLȀ/MOOWarh2Z8qdJJvs&YO4iLpYJKRM#Sb}f\}r~Gޘ"?mQKmٲƒLF0X,½vQ 6Yrv}nv"lh`l:A;{P6_˦j%3%q)1̓fm یKubS|}7n,((AG/gsJ9cYXBiQ^DM^% " ut!tpbsf@ uV>OM?4^AB} 8Y||͓'OްaCvvWz * 0ob:Y_bձ!`8'.!l2tk3*2 -dh $h-@_D X Jbmwom\~}yyWmx+ƪ+~Z#t&37a jBucjI{l} m(]>(g*e/hcp7)ź 1ALn @ UN]Y[{=Š%v6sm5髎gn(,G2Mt;m[ie[ioM?dMwδ_Fw&d2m JVw8։^ZY@ ὉiBLȀ1Ԓqʔ)=zVkާ׮Vrqů?dp]w*Zr4u3)8)U(R텨Vf^C&Z=iu If[GRE%Ir!olA. 8ǗL=f}ݗ_mӦ͞=Ն'00xKE;"#Gm_~1~it#w߄&ـ!xo!s*F S5>D"~Cq@/P ҢE -'6k?y6>dK>SƊ@C@>!X cuf'o^(f ]"sddm`MD# gs84e%zU 640j_!ϘD q`2K h3("phw&CCAj]ll|kct* gQ[#*k!@ęe[XhGq@ ܘj^];w]̗=#-qI(/0hO Z"@"> q@,7 jP:Kh~<ꯦxT l %A[CP1 B)s .z<,;ufh˶lH}7K˓O(,Mʿ({ ;tAw^s`5l%Z2]MǸnrøft?TӮR)M:2:f55N&? c>2 ;n}AYڽ&5 3w.z2{㙛/o3 ˑL<{ϸaN0/24 R@3_KoW>!@@xobZD>2u СCF1##̘1[]1f3{b_Zåwѫjɕ$&^Al+]Ea$!U'cn|M$LDq@/|BP_ԁpAM6{+W6~/\"q} {@ }GNޛf: q@)=Բ8{qf.*?4W>xo!s*F Sִ ٜuD (YwCUێl߭u@aD!"*"lA2u ͋5iMy΄qh(8j-j4 }>cLawzE Ce&k ӈʀ Yq (`E!zU)cࡢ/F q@/72vXhyyc8 LL LȑZ6 pJʶƩ^h*yF!nQ[Cd1'Vls8xX^:1.pܝ)8 s#ubSL VX )gҀ5T& ^e2juFRYQ%l[SS0麌n+Dǥ~>No#5۶n陱ls&ƩP)G*A$6b:O u~u.9s񛻮#xXlN" ykFz } C9@È.\0?+,]qjKV/\KE54fpOU&3Ժrij_j4s*}m7iuzV6/C'cCVćaaW7b/ꢂ1$!.[]v3?gU1'N;Ziݭ)vuCLz_ DH}"Ep\p\2`bS7ZM)8:Š3jC`EꕦK}<\ Bځi!4*q]"+W\Or5eM1jSQr@+2P5]Z^H<3u3 ?vB+j*Fy{ ެ?It6%yKp "+AȰ ӳyvf]_eQOA9jItlG,lcELVaҳ0a8ݛb݅ &7T"F60ݏ~k@ f|{wWӗ,^X4ҳK VKߠu:J*o0V`qІ4fk]Ӆ&Έ Oh01T/ׂwuz`̽tl'd ;w7Y OZ4/s{駵zd"A4{b} &j|O|*mǯ}n;_l.ZqW &'gs68'ДeaP"Ů7i0j_!ϘN q`2`bMZb0Myqh(84j֨&|Cñ@p/ & :MZb4lʲ`b`JGֲYȫSW6NBӫݦP1 1ZvA n֒y ?\}r*a>k4˫{KX~S .y[W1пoV~OX-)<ƊTὉi6Ј O`6>/l9y;Wߠ!f¤&5W jY^)HfS3*>+?Gf";E@xobZD>2`bA9N )35 [T&ece0 'F+n6hL%F(iJ'/|}!|ۇ_Ʒ\5ePo@i1L \W)Q b"Oh0LfГZaQ+L*I۷if8*Q3J ƫw᭧= ;AD4KEwu73[GRm[KT$$=3vh]XZm`Ƅ'6. q@8_{fլ 0qqS-gYtU֬Xת9N (6df,x m/iuzV6Ͷ6 e>guO4ɊdHXݴu;d5MEจePMl fpOߔZSI[E,AW+*T)VgL-X, ' S¤Ԛš^jMuJjM5*AjTTzL#։]k!=Gt>ʤ][C)_qE/Zu,XU0OP &CEI8쾼3{>pc./`zQRkѣW=%%d==+&JKYDL')_"MeElˢz̍/xfE)?cߙ" E;7gH2T>+hʲҲrVV)Z[r\9@C gvobq@ (%>ת 7kiy aD *7)ɀAVoEj/K^ DM}iBL+ &Z'  !Cˀ,qO A@xobZD>2`CCN돀&'ДePA8_Y`" ?: 1AL) p䠐>vK{ xѹ7lo=Cxob8 ?֔[GFȑ&&3i|q,BdĴX_!&|djM͗d>-p-#8|u>K"rԒ!2>+YO:~åű;xy>#o8.(BN3NP{I4߭{{vi bgĠj/|׬Q/5zP` oĤn.X%_? ML3A2`C ;i!~2b]!bl3UKB5@S^3}gr84L >0SzA { 74&yFU4Jʝ6ܶi}RةP þ8Ji=Щq76!}[?9v_O|cu8(ejCW+,% )gҀ5mZNdꌤRzq.&qJvlO#a7mYFg-#{Ef ~gƮjfE 9xc.>Uw況[ dGa !e]WubSL  ybT5UUtqbtz!RҠu+23j=`k;zs:2kRS;6eeB&_> +7r~G#C)_AapFjMaM/:%Šk5Fx1JtՌ;=jqV ~,]9+f*6W±►OHHEC9.W)] s qq@¢$VWV]tv_ޙ=gf8}s^ٗ]v0_(Pk P?7!գzYs@f˂h+Y&"ҥ򞮨!ZnD՝tS/5b8 r%/k4*bUJV'VE%LAxyw$ yC AX2~dhqὉi6ʈ Oh0|N!5"*q 1AL) &Z@#F@q# 84UXWb7/"O_E,r-O*&7J_ kлc)q7k` վC136jd@ -e(ik ?ΡHjFY1XY,;tB 4Q O`Z_d6VVu 3lu{ 9ynSп K9ڝy/ץ)(DnPb e@1T X59^p&0nom'4Mq]!&(P섮zB}jl!p-|^JHyy#srV;g}(0erΗJFxNOpiqOyxV#Xa 1T'Cޘ*a84P-jRy} sN2Mh؀G6>4bʠɷVRf*K "8ƞŖo\_?92dQ*秺[j߬.9z:隟z@}y"8.8.bh23c>(ʈBwh-겱2X{vs6Tt3kkKLʛa13<7-R*x4mG6 g{ !s IDATЅ3ISzA { 74&yFU4J&=zp8d_yo# +СwJ̗ :{hZtXꦩd[_}ɹ>Eڄ)b?1AL) `?T`60OjDU5LؾM4éWZTVTQp&..˞Gp+;٥m3P]8t54`֜0m!{PN.g?MΦʸţ IpJV~#l*.诀F;-MBڄ Ǒ7Q2P6n40]MǸIgU{kیkt@}6g깳$e|9LKΦijaU=MȐ ̜[<§I餿1@ѥK3vrK蹘oK@oH\sluI|#Tn2yq7)ź 1ALn 4*3 ybT5UUtqbtz!R.s.>m+CIm6?Cv[luS\αDG"yc.s-%ӻݤxumє@?>8Ywπ2hAͬK:\̌]zۺyO]|TEw "- D@JiT:BQN"J5PTB*\r}{wyWswKco_޼"},K HRV$@T&%e1;NUU?싐KflY^V簀nLz>zg&[x|ba|xܨ5)p4^) Dm޷EI 5Sy #&xp~~l HהJEeŹ)eo 2@hD /,I%b']KA.Ϧ6䵤a2ygVhG ]8מao͘09ar.J*{6lk|% 0_ž#mT 0?$ SXād/_wm*,-_6fڤ98/ 7inJ JK˴ G.. BzرE# u@cq{@p*Vڦܼ&fH ͏s\Z* / RDVxBx yi7mE8jHk})wڔk4k%pU/wHg\`R&Ц$#ٸ6!-"a ["{1A4h-kRC%ڔkV$!^7  "``nΩW/\gq2}ZSiסf q9Z3N [8;F52ثV #r,kz 1F f6u҅ީq^?Cmg'jcS#PR׾{չsjyӘIbQ:F:5ڟP![;>bZ]]h \pB;0k>vn&-ꇾpģMݮb *}=*ȈyJt*ةR9| D cCOƈZ ެ+g4QA?%QW\ثGlZk?.͘8?9h&,`= A=zM3d_x^o'MNBuf 8n\ c;.#~u7,m<[FCn  5,sczxRR9uz\y^5# /6?zlJL'Wwa5w2viTK27X%*۷^77)UlqNg{K$L@U՘iC1 JA &efyC_4 jOv {wؼNL|R sxfث+h@ؗL3{܍fV%eUti 5~ýY׸kg'Owmq;UQ_/w2MPooWzܧlJkY'+:4"zVxO, y Sf+l9X)TPl]4~k,cpNsWF2v1[N[D +v&ZodU&vIO-v&|qٽY#?b>ULܿ2\Ik@ U6iۚc z"0ţ#(%꽃Œe,ݽJ"kgRA g븳̻ /S9)`e\8ˉ-41˴嶦M`р^` zOlJ̝d*C58x@#( CB$*A*KR$csx٫ /vW v㔙RocRQ+t+bݳt"o:))xw؀\\]v i%ZZF P)G_~4V.3mvɭ""`Knٟ=@q7q7{`;y"1 BL$o!-KK$쏄ɿ,΅~g}#a*z> JeC+Zϴ\=l$ryQ][}l xvM+]܈=}\=h^]jB)ՕkLX })~ 8H[4A3\UsRACc [7@sNp.a6xS^yu#+gct3@m} c'Pf;Dv8h(2 T DbZjHl je UU,J6?vTy\glCGW" -bjz a!"`YFqv^wOE zмOAγP "P` ZtZ䟟.0xV}F ꌾBJ]e9s(aFmˮ9'>z!X>r>p⭃go?ޓqG?|y;$؟dNXd{u.:xZg rKdvYg?o׫b4idK.Sf_'GMdF|ut4t'dE&̺=2(~edfErb~v~E78w {3ߞ!`9@A&-?!dF48gސ6b<2RH{6׸!؛"`X/="KO -;dFYqYёCi'n=:#fe\WG+W1 |+i-u b<-;  6qDJztLiBA%.jξ, q$gBC03ąo̎ b>R/Gqy*hS ,@Z\K, E2T(]JB"-$v/蔒 oֆ*)](^=xT~'ONFaT& a6$f0!,Z|!iHB{DA8و6(>w Q%2+;ޢ?93"*tj贏a_Vi3dzvZXVH.\~@ܼ`KWf=D&z,|[bViYfg Sm v:q 11y>HfGs,Hab]J=Z<0MмaQjʋK˄#Vn\ME8QR(jW򎍧G6>:w]@6Qp6;uRKNYv">c̗ pOnlLff fғP\UF-U>aY0Y;YEjpN {5o4&>ɍ+ U$$zJt*(NOD*+O`Go";I̸LN.QWPH_%3Ϥ”blrdё}R>HrVA,D\l>Ł+U֙QAQQLkIʤr(!7#]Z}c U.6} @ J=x}ς73IKw[;QI7I[*^P lДL% ZτHr&¨qI2Q6^\"tdpضc/y;ԙQKoڅJtJ-#d߈><6iau.Y9[H@NX7@۷^778 #H@6"禊I_3fPT7> _?'쇄3L0KĄ5M$#>:672eĹפGn>Ec-$?g%C flJY{?)z+:Vc!he/UbwA ToЏzw20$VӨx&@{Z+ mZ5X`y+VPH^ c2L?E1W\}f%,Uz/駀Q*BgFX>0 wԀi??KӬSP"?NˎhTk+ Kj&:F1?5sOf/.K#'FxBe= i]E0$ɗ"*'(ЩjǞUnTųܤ8 |[+/]u߄VWQd[ $MgOt9p֢vIs)1[Bn,>a',%@D_f+lXKCЋF؛dIݖbWP1+7ĥ!)"؛?7Kd <02l[rS@&+;I7fZzG$K2B !Q>NlX2b.OU VFeȄ#çD&(EYWraX nCiUb2U/20(JW³ʭk5Fu>.κfE2zP,!^ݽP%P5a3ZQ%p2ϊMW=uYӒ:sNdXU(pMZYa.Zܻ ߫[T,Ή i"LLP+U-, H\F@ IDATPT\ *#_3wyՈw xJT )N6J>\$-!?e._LSf9̧j)eƇfT`@XOR4Y US ̌Q]MX,1R̓U 5/lSN25~o&Ftz1TryMFH$f"PPq H*(\/.$|Ui;o>Ri^ 2Ve~N%Wgnџ*KBa@K@sn|ȝ?!PZBT,Q~anjQ_7aX;HR'~r6`TBgO5ﲒ33!k0|1T2M弗veB/э4ߕD`㶃}[x! <*)VGGKaءd1iKUdL5h3fJvӗ? ǫװMX {0(tWPI"  Coi4n6XJlɹJ$5j-^ru_4C';[D:$坭^atlI6ۦ9K)NEt;E/XC``@yX(`B UGqe``:I1TG(5FayU[a[B5-b!x m}J -HXx2s#WD*Ǟզzϳ1T]{M####PӃu"" &"1T1TmJp֡b QArD04P Xu|ڦc&sXIwbmWW⒲N @/]O{oi!ZvQ6DC)bxj5aj>xD@WhTϠLU6B1&k5Rr+ u]+Sz""P Xiiq7no ;[BfT{DƄ~"i"P~5ްARiaA!>vv[jV\eL )(߮cԍկ̊]}V 8Z0p]?{wfNۏfE-\V/eyeO}nKQ)VVr_(}i ?&t;r4ke%9#90 Yt9g+Áf)59v(癠ͱʒJ̽>^ wNԧz+,izjMsՁ_Cב3,wSҢiuKdu'˅jj0Nf:0 Րh2ǵ<[w)7vG_|oqJĬ%r@., $ER)KLA>- C# Cg$3;I?nwWHy;gӲ32uN2]s3!nP.ۄ ! NF}!`@v*@8aI~r88̰Q oBk9i÷}&-W.eDAKҲS$)+J\}m_/0CS9h5ʬ:5|fkBvVq&γhŰ !cc 9w*|-+!>FԦU< p[4T2WwP4E$Z'`N>Uf|㐰,01i˚Nq <"ׅsv/Sd)%R$dTɅ%RTbq@&* KD5arؼaw,=@4eNo _N !JH:Z7j(cc :\&02YZv!szl,^Z*)2ilX*$'aB#/뼇oX_E wo/_ z˗>J]<]1 ǶvIQ yk`em|eDw¢|<粒|Aa@ (JNd L@5#1*7uUP6jpԋy+|qQִ^R˗eyC D@{Az1T8|~/ (*NEg;~;.Psu.:xr*dF" S#@@1T Ճ] KK J[@M57"`QնՈtWw2CD@u5 @}dD 8규L"aܘRAO=mN4PTYk @DpDSj>htjqgM_wDmOI7@)H,Az3 k%% DЍJ*GU>ωS zLsUCq cjycȂ UV)ؘ1T#q94X %ŃZۑ{o 9"V@@psӍ~]EgIu+)vr.v. 7)l4 ߥ%d*WU>Oթ@BPH S,`| AxctVs2SX* Xq0>g֥†ǭ_ӬLV0oz ٴtXr!6ߕuwC~:ߖmmL2&6 API4c3늄eP{3F$y |ÅA1~*v_o{2m2c}L[/+ay&Mctjԅn(mݣ,8eWlU\  1TB)QW$( _ iqO[zjV/]2Do6PAWd' G a2N.v׺nF^>9cY3._+ ?'4H5WؤS#1T~X!/FFݮA-MbgdREgMyVԎuڣ`~9OY5{yE9DsLV]ec&'dмF[I_7vpd!`~tvLZGꅺzW_] Cdž6=UO@_ ߦ-g{Cf?E_\{vt(6֎*b8Xb$D,.;lSX!u.]P5ۣMt5#y*tEa@g쭊__ "+F-6c"۹{܉WT#><<)NMO ^y?(ֱ-2׽KSn|yN^}0%+զ-^m~sFsT݉ۚ~X$K$M[/ #XPi=U!J4hiqgM?ԦƏI%)b鐗kxeBq?$`\[RTRJNi~y#5&5^5`VN*jOo)K¨^%#fWR]' mIl6-Al/7( י7j|\y9O]ٟM%>h4@WQn!%oϰY϶16ئMN}O+ρm 4fƞc{NxGFQ&UwbN+~|emgp hbbhP2)몭tk#0W$|_?ǬH)Գ\.#ԓ' %i<쭎1 3 v(%,âØ-O%6+#ߙE==,ПJ;Q0(*Y0yi JyZȽd=wqT]Smzpߟ};;>ԲmK6Ud&o>(o7}@wqYGWf%IӞDYT -޾ OCCסU3lET$V *T.R9$44 ?nܐ;lok>o0eaȤKU1=ӁׂcB|>hyӃjLӳ04J] :AϝӫDL~ޞ=5xf亦(AMZ V߿ٱo'-n (bF]BWZPuASmVVUFaL&)Iܗ˄r)|7)R`Өt%Thjx㴿u~z 㥋~j`m@6]tN:U&]жKm&G雅gBfޭQLΎW&/k>~uVO`3#1T_>mk+=J|wاɅ 0BbgmXk+!cbcjdkdّoJ4'/tQ2 h33&ة!2ITPnHmC0}fw'9OElW{b=(,9 4-|[ Ni@OzwX,tU~g4զly8f^͟}ݭ`#`*/ɪ2.5 N %qlX5LNX 2jS:W#4 ÄT=.^5ܽaٌ/CbPGLpj08݅uujS,v* SU·4\q eG\PfDA@nZKcHΌF UWuvv_ 8ΠT⦎^ O (" "`4֡xӉƔ:T 2Ac@/H!uu"@5 qjT!`u|L{#~7͢*nCDPP㖚K^p/=}6\RRsZҋI...2,gkID@k˗‰rLEjKp&(򈹵٠ Uz-НYm$AH$ UT*\=:h_;d蹯b [ n.o#ByߕÍa nz6#2m ޠaZERw2^CbܮgH2N,;qB*A>iK su_l hSy$u}J@R ?!c>@n|Jfn[?#$[ .rib%D~m_T7ufO_?w3:5 &ɺ4qr{u[6jܭ-Κq>vy\ <]E@3Kӏ]6JVm5jy*Azzz$ iyF,KgYf!k1{)9ux^kle%ӴX)/-+ 6-Gٟ1g„0;  YI`Ywc4kHh;8\77!Ww݆Am:>r Mʖ68Sto-?-3#ٶ{ȤWU>JvgmSn 8tPAkkN3=wM$w572gQKmC 7xM)i ξnN^}~JiW\|KC49} Apiw~]Il(=#1TP|}ϻ jզڔ(jM0O!Np)7n܀o7n_y啽ӷ)lMRʉ3wƝ2"|eY+`r3e [P'0Xr[Tf~c|tZ~kOE|+h.e߸μQC?ʓvWiS1?<1dI#{0' 0cx kI Uej3HeR/lSgbb"ضuaq/yQak* ~0T=#0Iut;~U=9,ӫ6Ck0pf._2Mcw,&An>g,0=lCKjӓN}O+ρm 4fƞc{NxG7`Kwr&6?NٞJr5g9f[@Y\Z/>h-ϓB+sx`E|hC LF UԧjdΦ:>^Sff3 '-"&))RS%= IDAT2J^~fvGN]ۗ6R祗ƝZ0 okk;uF> TE.ʴkM3o'~GчZmЦ~Ԁ>%36N:"|ʅkְ~9^Iۛ|j֩ZC(;K՜"+cWztSns~(VŨh78*^bj(%ڠk;CT%-Bxz{6ʔIA8PS^^[@;djYH]Ùp+.YC!pwgdiRiS 1P)")Y1Z 7ʳ-Z?0@A}f;@>+, Zm$tJcG*)g-|9y^,\8-t1"瞂m(nuT;$} 9 Â'E*տN72z|7FUHز ƭE\  `*j8X7<]l>pF &],&AgޣM;i>c ?kwII0gK@@7C vC4V6SRERr&tjVGCVΔsœ="`P5]P6!U_v@.9 4-|[ NiV$QoǏ_G}ys9:@} !A ^Y`,x욯Y[}=ҮzYo(K7fCibWzL.It_`]妲C`QPoKBG.Szs)a}AF0#ͣ7lZCCA|S٩Il@Bt:)t0z_*zмO;)oݺfےR5k"G*w m2˅$ /J"PNIRCD,ѭg׎>r]b{=zt͚i*K..Afc]?HY@;x7fh"*lBu˸z2L$,ap(ϧ<08= tdBu+6J0cU\\]_VWXwswiBqǻl"o̮37fY Z@Akpe~=WRRfʀs+6PѢ%3G}nd}pT6 4n c͝5{[_~Y6mh7]ui&PSHLKιCNP8I\fTUKg<*B>{UԊeTZ 3U0PٿLUH,^j;w|0}/!LyOf̈́6˓}ĝao6rN0u*KAjtW($yC{X ]=Hrws>xRI n)Q߿)sxzXJi\&N7Uǃ_ˠmi??>wv} fAA\>?* CDk׮]ݦϜ) 7!} /-Ky֡.Z2{2S[ڣn3MgD 4/_1c Cɤ$zT-epTm7f v&_|Y {]\\\51}`qp{Jωsз^>=PQɀBnj^|5kjԗH$bS<אB!!G,PA{JD`}n`883 }BZ`XJnAy"`6g 0 )8{cf?d""\` cbXN ZEUP1J!G{q{hsU)6 vCE;L[_ &\L0jZVYW!C`KH` Ki8bl*ghH vz"aa>Ydc4.^_fy* D߭B~Wya-[CZn5a$e [=7h!|(<)[cFyD)E%Etک=;Pr Ҳ׿=PϏΊbF/[7 i'cnwf n=1T zϭG>9 ֹj?$]bf;#CEQ37_m.l U MdDO&33 sërT: o },p!΃P /hXˁ )P(g֞ɯA>.}}ؒaw*VPa=V\bKX$Eo4hqVnXHBUC;*S& !` 31T+LkP K|۾1Ԯ3ЖAInrvu2J]//ԮW dgF/]7(hsx* nAٙU?=J7C80H ACu`u[{3EE5;a}RLͼv8x VFg8+-M 4*LfE̒w`n,+GK,R2V2Cz?CE mP+rz2n^ >9$)Fэ=48&r?eT>*4r86-)`T)5', lӚ`z7eS6iLK'!'#9W({tu{wU>+ k?Kgĕ}mZmVm,uoN$naH >>`|ygW?|0LceBՏ ^|}}O nH#$#G;*,^7~z_$.X xhvjb ycPB #HgG_3P\ȥ?Ar$NG |#[&x l\&!U!'C↱9DGR}7Ӏ@8AAl'<YQgnb~Z"R'Cq9$uỈ|^ _^׷bi@#<Sc68?LJbx6܉:6ˣ[I/j_:WY_}9n؜ֲ7IE6LZ5iPC&%&D_<.b{B{|K2Ǹ02>/cd5m\T"saڿ<n=-D+,YݫW:\&%9x߱{` x,F)1Jɂ%v)xh{|7=g͏ڝduXb0HE員lM]x)V51g{؈-EU@CIMzT*KOZwܥRT*|UO$" LAvB&6(iKjҊۛ|(Q~R>36mkRvW8_"qCwr">*/sI)V?6L?#=" lSSfa $:W,ҙ+EbHBBebyPV&zwB G®Â NdJIν4[pe{bd8x XUea+'^CŅo0ZUÎ4yU0 #"Q:9,Rӯ;b7mO|X+!߶c>}d6pe:tXY)' hUPU%%jFfuB_ZRx Ё@RrrdLX6YeDnv@:T\Xw,.mNBN<bX"'i5REBՐʰ W[пq(\$FG3N% iSiFD@!-ouYU`>Z#gmaL')I<> [DtXRKg[^!N&U_x%$D_ EwzW)PrD[\mSFeڋ*H@M;OHLTbrݏ^gE;v7ߛ:aΚhph^lƱrN_LQ]V|>uďjZU]YFPrlPPP͚\\|=ߪN}Cn ls 05jh׮ѣGmA k 0}<0/H$% |yh8ldKRo^!KKK?;žu8JgLZLb΃7< ^3VPPgB*k׮Q}z+**g UAB^ (}ڵ̙3f# 3(dRAqΝ޽{ h/'_AAݴϽ(+N^jmvc~ez+bL">VZb` u*Ǐ>qf ]\J&%jsjOؖǷ6r2KKTjVQe'OIIGhȡ7NLL|͚5===ٻ]f_$r0,#D*XXr^ 0}67瞃D[?Vg{]_ON 8T"jE344m Ӿ}{0FAfQJ6k֬ 9{W˧ِv6`".g> g*X#(K}͛7Papff:U# 5k2r U s{zdee4kI2AXXZ6YVaYΆ)W 'H~}W^yhi5'8Cu"f"* ńɮnnVP;ʏN*0*$ |>tN YV_*( m?AJ"#)AUHOO_~˖-ᕂjܢ .B5frjCuܱŞ!C6nٲCH5j5jئB PA%$U *l:~ 7|1TP~>~ <=}5g0P@}OЯ 'hSBUVsΕ=DJAc? {G@*we)` TQ:@]r[GࣺB5}=ɁV<`6ꑑt6/(x5rsฺFСC@1TcD'DcVqC6KIIoxXmd,~X5g3FLfϲG4lаLXS7d K \VVA/kγL (e`A ܽް6lg} b>~ Tw5r}PV77G3 f {B̹^ЦpZ/ 2$\#EE2BcU7 a'xۭWk[C<pʷ~ԮON{0AFւrx*R^AN< +#kcbk ǏW~W.YhhhBB%[opbmڡSzhYR8+(+u~ڿAM_0-[jL)H1m ~NNN<̩j 7UM=TUݶGezժy0*+O ċ(gS%7HY#{Yw\\BGA0HϷ^`.d 7?3JTmjwnDB֮F!幸9J-^֦ QУmѢw?gIDATĀ׭M% 1Ԫ ^^^njPml>4O}Pi/<OP{1U||A_W/$mj McbM (X/8@eAyORo0Rd*ÂyU /`aC uc#1*N|Uiؘ}"{?V`A`}}r l7 hJdp)ګGMɦQ޵>~d''K}j@b+lByJ N\JkYKVN5]VՒa{*5kWyj{f0Uhd_}$ݬ%Sv]4 M]6&X‡{U(p "ی$b`VbkLUCB)DLtE3j@"8U#l p(ЇPÉqh zsvxPt'Cס:ـcwYڕOaϮԈ"1TZ#!>$GM싣"1TGY엃 1TH 1T'd=#1T{=ݹu5[;ENPjPuPngBDEPIENDB`PK !"sJJword/media/image33.pngPNG  IHDRp pHYs+tIME  7tEXtAuthorH:tEXtDescription |hardcopy|2012/11/05 18:55:07 lim_j SGA250167WJ9 tEXtCopyright:tEXtCreation time5 tEXtSoftware]p: tEXtDisclaimertEXtWarningtEXtSourcetEXtComment̖tEXtTitle' IDATx} UՕy dQR$eh+1(RB}(nPcRPTۈ&`"mRP1$X0ъ*jdR)D^{}Yg{}?1>=!o ]z j&]E444t}O>S4햩Ԗ*Ӻ%'UK9=R|c:ܾoxh79){2Xܦ9˕j)w5\͞mV|۽kƣmwNh'ð7@sAt.WKܧ])c}G>wSį:(@n]_z屧odoNF P=zO~rO><ޖ-M'u܏ׯ[~γDvEO~~idH!7$Tt0'0dK+P ىmnf`˔9ԑlv$di*PsR$c@V(E',,r-&X$ )E$Z]I+,:^rжO/1Jӎ~{G>wUD}L%W/:*[-n HהѣG=s};͵k~MϽ֏-~Pnu箏^z% յkWm?x؞9:|)ehUD"ty%z=MB׈^Pq10HJ,$J[++&j")ihW\SHe<n5:_RI|pP%VOɁ1aMV{pV%VfׂKg-D`gS&`IӖ^ R@A a3^ZL3N$NRSO=n7pߧ>MMҥ YOlmv^xI ڿMhI%ievklǒ3l:.;W^8"IM\كޖfg@bE$m! R"1tԧh=LvcOkǠ8hH>Dk#LN"31o@XghxSӻ6I*.m3/rYWVuD1W)sjx{O.tWlA]I)isȮW aC ڭhqIY4ŧUrt&+ceWؕ!9uiE.j`5ɟl򩫈(\.iJ"E&IP[ӟU22?֭Տݳc[;gPwǮ[xs͚k[nF 7pР_u ubrq`:2{c!/HK'^J57765£vc#5\tCo4l1:O 3Vl6%jG:Vn><BKe=5]j=yR-)aABOMvuԖJB]Vh&Ʊ h;k ^al\8ݥ aDT&~8'9-l4O%cӁͅӪ\KB'aDs.yg3̺﨣bٺЬYYR fVIW ֤i99%k"jY< I@S8eHj'YvFǒӸ CtQR%1&…|[Cʫvu.5YA cQ$6u-Ԕ#P<$5%OҤBr|.`@1Ѷ1?ֵģL' 3MHD1b-b4\s>ss)3e<= fVhS?tL.={11jۻwGUzK{Gpj}s`ˌTHT9Y\\}ye?3ldiTcYzaqEVOJ 2c9j ۝>CiCS#B\ˍMZY"Я'!> ::%1O,h7tyXsIΚ ' C%Ɋ%.q]vG‰-AJ񩸒`(cQ9Iv~Yoέ裏$gwp{$1;M;MPjE#eֺlr6k~?i.>#3Rɞ$y!g9M6ѭ] 7u9pY\8ּfťgIjTl%e.$D>Fޜ90Vdhnd:IV*Ѽ raCNN@ ٟblH^#5 9"w +"9Gde:[3BCV#@j.밇ȏ /BE beMڳ"TRAx`(G(DC-]ahkKN3ox'zrϲg.x4eAd?ԬE/׋epy0yšɡ95i6LYJ;"D|Y/mCf:!=UhL 嶗uOl~ĬBK JsPǎ0(hFftE\#} R1nrh}؝) ˑ rT]&0IN0,ڋbFs&XCx#:s MķuP] ϝuiػ_x|Ӿv.z7^:' eT/YEQ6';towntk nB@GKk\x4X('mf).sA `=$-mkl|k\s;Ԣ,k(' ,Ü\iKDILLfI$ }3ᔴQjWmuipK=p1fYg4_It^tPߍ5l$19a81\a vŸP@Ef+ow*e)ʚR6EY|03>?'pi}ޫaij/`Pؖ4鶯WxHpmB0]iۻy"S7{tw%t.rx1r/bG] z4 ́Yֵ Y#W( Oev1n'6ᔍ[9n;)*Uږ@Q3BwżP%bz/޲ ZR(ɍ$"iV$lCP h+V\h= :U!疓@)jօhrPR`KM8.+p~ GGjl馄0Yg tgB\HÎջ;樂KԶ}c F}DU05ھ&8{vЁ9m~·_cїtw[!+_'/~ZW+n4?U^Ҙvu]T+FcezO=eˋs_V6㶱/E^=!5jdXvIJgjF6KsOlOަrʀ=o[X៿ꜣz0|G`"3=I+ >3?;<6tPcg= EA`4ب- qqØ*6˧JoV<^^J FǞl = qp2/F7*mF KTd8Ce<s' {`OSm|XP#;;n"^@8-)ԙK'޽_K0=呄l$Q xly78hk)jˋ_8y#ww-X}+޹⫷_[}-+ w<"on+.۽z7 &^;o~@ߍ}#N&Hڿ4DZy ~[O]:| \,YνQcdx[l\N`ms[QZ~~sv0z'QB fFkjF]a[$VՌj$a:Ss]TJ,zc:dB&ڐJ8jCOAIv+4]6׹SK++)DBFN>ږe}봙ʕl%=zv".M={oouIK:7if7x-''o &|>y^/jB_8|_Inm^}Mge噔a; TWtWr &=$L],1T-a/*#nb0%`]]ϻIhqWrF6f@{g9ܜ %lD">2׸.;mTk7C]Cr%%Ti9`$q[0k a#;ofCݱcirԱHHE[ glaǯau+}V쌦 vioT6XOjn\h~f}+Χn4^\0VIq/:Ιҟnnl$]g.+ %+;*gB2툎AaIǟ0qI^0I)\^#gL cSaN[$!148i#΀{f+PzЉITBF8 ]2uvAOE^? ԥKk?wj̡*\.d&~A@E#+{3?C =hG94l^|Aǜ߰r/6hh *]3gN ǶM<*ݻwԴͺ|a,81Z56_ߺY7-)_w,K72h557f[)طGSܱh4-%67 :7oeApo$cH-=av9sO|a|I>x~ '_zx &h558i.[gYzT˛&g.7¯ٵЧkMQR {EyICqC \0! xW5*wj梒e=GR-*$vz) htnӧYN+!hQ[_4 E_*눭ޕ1d֯0+VMO< `e(3 f#ֈVqA(j2bοq݇\{1n]h%Kl߾w &#DwER!g^z>f0cZDs6u.*JC?9t .5MRV:H xqjrrC.KǮ/F?߹s'yCdٰy`dq6^XLe٦f޽{߾}8S9/x_}tH3?tVUz5փe] 'J1dx.-`m}|38CDzX+HLĂ($c>Cco?*j7ٺ}jv=#kѧAm^yL4ӕEdz8#$yQ)t }C}M}U^]޹џZ(=aG=7b=.\ukCv_Ug0^RHR_ RGR_2T٪U$+W9]A$(+)b*-˕]Zd< CjϙU.OY#L رCx{ 9qwv|3a1qjBo-8' y "[{Y3#HD t]+{c[#%/%cvn%ȣ .٥,g4% ods\ hKp`%lQF=\DP4|ciz LV:]L #- Ss!R}+6]/ud8e!}&MenD̀\5w%r4d*9Odg- YuE"IrgM jEϹX-+iXhT겷zYyjhZE=-ݩWW/Y'DN3WB,CM{6mrDf)ؼIU/ K'>'ۼaoS)mMv#3.'N^oXrT>5u;y)Чiӥ <ߪZ$ %UD 9[U0VMdԐr243 na1bMĜs]Q`?h yE֡%I̐cհ]26+N9/]''L|N&^YB9Y+8D1~yB8ڃMcԔ߱%t=åO&GN*b~^.SIϪ؉,\];"i۪ěZ?j+UUN;%<ɍZI:[s˻Iagx%r0NJ(7֢ .?ESH+!@`nC3$֕*CL阌1riO$:v9Gy~ܵS9iţ&Քir|)}<#w6 ;m2(;P`T?ZX5I8yj'l뙰+Lhm>,dD$#IN*iNcs䜉w Nri4% n-5τџ7?sܷck٩fcɭ09d%^ =pJ+Ì`TkȌGzcr򤦢D'q})K GAS!Y,^8!K9Yy[r(|ZSJ9Vpm{17N sv !p֘>X6?D:5u$j (Eʆ *.i GdI,Q;$ IDATDl u?+DN R93KzSZi$ZӳwhdƞMK}VQ,-2bW-ZMuUo^Q|h?c ygϊve,R~ojd%q(U~UNzPr- %p#.;"w@:ܡwn, r>ɶQwsۨC9 ӮYSR^qπ֧#y6%| uaE?=QlH׶[oD%VXiQNaCO?D<";w,ư I[:-$|Q,l8o謨>SmE g_ Z%aAЌ  fc+n-d:HrwBgy@e$ J[i3D/%A9Ptp5ee+q)5bN%C4$\aTdANjrÝ{\Hķ|Ǔڐ  .hʔ+-q.O>D|6]]"[ @ 0aBR~nr4 PU{:}%_*,񛦸} j@g}{nuJ@`՟@@ 2q_iOW n(Z@@3` IÎR軛[sџZoEOSp (+}O]0b֬ /Zf~ a'\zAH(Ϝ3}gQYgšm 1/Iog1<}G^=k:֩/:GƬȮ:O&Ol/ZBC V,RGI3Y'Bq֖ȜI@@9P[p!N-^TUOn8$Fk҅ y֚wK2Z29^x%4s$U44vk2z\SLp8, :&kРA{yݸ<}(X1.Z[plAtkbZ{Q_QZ_14h;t?ãF:~Aޭ 7у( uS}Rwj62"HҚ e_A% qtڕ.ֽ{wm$/9 ZKХ~ wꫯiCl"KF[7su)?G~F1's +<:(e0p7+o|S?|_D/5Ŏ% {fye>⚑mdZ=v!?<<sD : Әbﰢ %zj:M#Sf{u@Q/d ;31*A*GMNmu_ghhsfgFL Y F'"@ #@24񭍒0H( F| W@ʂ0^G߾jVLc@j=uQ#q -:Z!z  Ph3>yAW Zd2{AB @ "@ҿQ$ 03.u>)P>S}u:(9^GB`%)owbZr@*l̬(j !@jwչ培]rjF PJCV@T!.*+ "yg\^ j3.'%Z5@~o>=%^)JV]V" 41ɻK.=R@A@yv\}xȥf R`A @#wXU J@ mV8-Y P$}^GM+$dhsK*wD3^G@T.!Y)Rp!Df@%5_}FL?~è0@T$;缼 @DuDha@"@ћzos^CZ@ { دmBue՟.ywC*$(|^G(Y P$yYg~iCn@9; +p/;n0rADz@;mBts4d@YNlwv>[W A]~w)] 4zOTHH P7-#R4/lN{KV@T,nlM8Cb@-Y>{kQk *Clhm3  PsImZ}^HU_/&8}r!0"x~g*5]ҙzaw~sKsV€OҾ뾖F^2-(iMvҥ q*pص#zV/(( zDvMv8}D#*ᦦz5 P4563|I縏oS|ykt, P\WQ=遲@-#K?~Žˠ}T06 /܈}7+P1e wڂ&7~ٽ} Z?` CN{@m"NgiG?[p[@}# 0X#_#zfͧYϸ}kvأ" Pf'ongx9@-" 'r7>bx@7voIiR:F@Ӧɍ}tQ[u J@ b3ϱDϸgx 5U6@+>nGQ)X~R9-|. eW# Evh0>{ ^@gwڨNzkpQ[6 xvjp P+>srec3`W:Cʙ0[gG{kzy

&}K{}^w2,U Pɓ|}ea7<~sz6P/[^@3!P)fٍ~A@ Y3.2FOc /~$@r˅:BQ04R} j@,kh@#[l~~ PK$Ox:z_-Z)X:0W=4q;|xT%t@p ;5}lT@ѽ?,rBUy6$A@/bϸ`闃^K_.2@p %p{h *^չ>C@b X_[-Ճ@) JGQ'X p_2@|ʇ%< P=g)CW>, JEmԱB^@'D$WI#\hg 5vFH}9,H vF>Ѡ{ **")$hg"}6 Йhú3GHΖVvd*HD8p[qC}2B Pq*nHE{ ;dx@:U8!K ʋxՁ: Y P^ **p!F *p_ R@;@"`r6 @ }ɛ *@obq[HAܗ D@$7z59( b݇@="QG@0G}8 i0jX P$;t*l PY }@#zu  ׵kZ pf㨣f Poޖz5Bྺ(!5p_=J@ |/`ab>G 9/5qK(- ]Wu  @0gD-@,}Y@@-#Em@d!Br js}52(}52(|oB/5\Ը  DW PP@p  DW PP@p  DW PP@p R#oCjR]$Ū `4>);9@Zj9 @[= Pu7"z?W zP@WÉ( p_i FW( y9|_Q. h'ZZZλtҭ[yX<^)B("E}gϞ߿g>}zr! ?@ :39sݻr! ??',W9*WBڵ+W\ѫW0W.$"']ףUޅ^HÆ 2%s޶(܋nvF7=N:$M|_(!p_ vAhNb$޶$k z@xGoN +mA 6ܗ @tǢju#$ݻ7UvaCC}OPۿQ)e }YoܷeV!ԯudm@#PWPzhZ(yBuX"L~@DF+o; XSh ⥶h7664u@BuدgEed!=JgU P"U P"U P"U P"U P"U P"ˠD0@SXt͛KxffJ=zqSNmEnp_ AT/YT[yn۶mTݗf+WHPՆ>vM}ݻwo垗/ɓ,XTX@U!@M4o߾ʺd", u_pCT#959* j"u_[=XʵDے-T4ྜ9o8@fТ:G}͙ӳ7i;oLJ(bWʯeތ-87]u k}B~@!p ~+JtWco-p3))e&\B {fyݍ'3NiÒ{~?JgB K&hLYS,5X;o?Z2 ҨxZrݜsL1C} U@bԞ O+'ܰs?כ?Yq9RJUɊB/@_ X &,Yݖ K&}MMNEu>oQpAhllܵkW س餡b~Iv@9/OΆѫWԢJ7"6̥sީ'Oj |}lŸL?.ش fTsNy|< sɽ;y*6S"(Y#ĺ/txe۾IÇ褛si,kT~JE6_"8M{$gƝ39XܓLn*۴qMʼieG({ebY[g:O2!NZ^u#Ξ=t}Re!9Ս߲e˲je!9U@>Qa*]@*B|SLIU/+Yf *M|81BV@FXyE I|9缱ﴅg~ @H%>V"U FX)2ضmg1aELJ@S9z/qmA2)}K_կO;'$K J0NK Fm_VIٯwuCV"Yr*AJYU<$yÏ#ƣpf_fl߾=+O{ E6(,f\zSwi=9{~2s TkVZ­ 63Gx[om<`EDv~ӧO?#ۣ63vɶ`qqѢz=XʴO!紻"fd)!x֤jT묊nҊ@:$ ]J@IENDB`PK !- word/media/image32.pngPNG  IHDRQ\ pHYs+tIME  6tEXtAuthorH:tEXtDescription |hardcopy|2012/11/05 18:54:19 lim_j SGA250167? tEXtCopyright:tEXtCreation time5 tEXtSoftware]p: tEXtDisclaimertEXtWarningtEXtSourcetEXtComment̖tEXtTitle' IDATx |U? EEK(J $-@QVPZM[wMVHakkwEC]Z m EBMxZ4M-H=s̙s&7ܛPnf;̃`(ueVʏ)&}    0UdFrS+++;fڱrJcccҦE"J.8P;+1Z,^R[(϶Ӡ7Y˭n/`1/~#Q&F}vgy]4)"6Ͷpa7A \UIm5ܧ)Kt{ۀ[q@O@"*,7̫%[jc'hE3Vʕ @10Hrgeyk7@ϛaÆw,[/$`ff1Ӧ=^zp8K@xV!qv{WioofޣG^&/+;>O/>H߶'V485/ʺx[#e2R2 2s+Ux>"Qge2U]cbKFeW)##i[!Ӊ vk)Rgs.?Ec]=mrR;M@þI6ݍy60&} ?t-͔`UgW,6 Mw=$bYP.'/+VbRщ3KS/\o:=dfu+Wla&RF :r.Jѣb]O,8+buV-A&*,Օfh~*8]z6ڕZ 9zwqA‰jPg}!!MzX̞bBnimv +7{8Z|<M+WdT~fAnnr6]Dv=x΃EWqOy̙'{v߳АufL#ژOݑQG;\Qo:}W ͷ~Ï˅O5'Z&V>zCZ57TUXey b,n'tR>=)0;޹rhnzҬæ^Vs36nn%8Y8BȒ7|7k+V5Ѻ)hSmgݬkniyMz}C)/PО8>Cm`cF݊O~v߾c=V(>-xCJ?! 5ղ 1ԃձ̂f9m&$q<RK>!dƖZ\Wi'bxSGWɿbK*Q*rLWV運"N.Gђ.UrdC+ɵPmn Ȑy cQk,!{MnfB䈂 [֝t@wInTx]"XQUЀtkr{f*BGDJƕr <%O:q D&@I薚zVz5vN&iFLGƴIOk>+Poщ:<|.VVJ|ͧv{G1w'=!IA?V}<[k澉nh\ҎjpD)bb7To*+`nFΉ. 2-dp[5 IV%|_2CZ-ukqu ӒwD>yH+?H+#SVFF'cU{&RhuޥmXV)"f=K[w+0+t[tQߩ"E D{(Y<7fCKg+VgcwmÕXSĦ<݈3{jUk>D' %3ڳY6ڡth/;p>- f=I=},M H/X+0G$}ӦؓzO5G(A?]Nu,kJKr:ڤJL}zcRvt~)ыD!-Petȭy:ubve]+)r+u2f<Fјޑ#G ^N'ũpK(%EŽ65ru b'jW mt;ౙux;ۘ]eYᰔ>3FZ)f76}#ic,^:xN c~nMN`[/Gs6 8`W"d٘!X)YV{t )ܜY.B)<+(U~fY-,XcGj-xz׎ld@"l06 I4"xYD3wRD/𮝋\#6QEt/H!_R͉X@[+)ʙ4Ӌf­Y\^'WĄ._'jh|/#OӨWh$vuY5_cb8]57g-K:I~ʨwGMrfv mlgue@N1`*AFoM]u3{2O2t:$m)(Ϻ^zMb:0:кl9W1w>ڻwSO'ϊPRINew:%>ZitrΦr#4a=5G{&ou 3]Bf߯}纏]xXMD I\؛~B]fN"WSƹl{ur~]뮙wpXDU-ˆ,t &_ vr9}IeHu4 _WeGմ>ѧ|*E9mtOz//aY' { < \1rѧ>q1'n5C>E-F |._{/*?D6?wOw}W6zlŠgwm9aM\~?'_\񾏽yM߶Vs|zۆ7-Vٷ7 -#ѩzjϘ7~SˢZ%Ȗ!$_@,&5ErJIÏҕsgKډK iU+ǿY]7ӟdn:ZDhrޖ(ڔr{ ?QSDA7m|ɏk4麯p֧6[Zd3;^?[nYE2 #`CFQ>6rck1fڕv̥,?>/mfzu]JP$*Mv#,{_:\J),>Bٽ7ʅȄnVzo%](N*6^]#ԳWsr{ ^FwY(3ia{L(ǜ,فܖ/v&?Qמw;|ww:W?ǝ+8Uڋ!$8?q2WrBO/:<΅>J:Kp~}e'.Uߵ`y5̋^&JM[V] QЅ%:).bلmdګa_sUg8C/,Q쟑r#!TP(xY\"D_o*+8YVp{("]Lz"3(^:py&.L[޸t _C"D!A?:EqgD96v˟FoJuH:\}#'ߟ}'7̟ło͟$G I=^ܖ٣5+➞LQ so(EyOvsDɳW,<{n\y;So9U%H0DᚆĦ'ks_|b6J9kɩsHZ~W8;Yyr ;sk?GコբpTr_[n\e4L%UjNK_}w;ץ^#rNsȋ| b :y%'1/ G_<|d&$*}Ϸ=r瞻I;p7(ilz蛛2oMoZV~9T~'dҙK7L??y}r*el_K_]Kppw׮W5Ry/=;ΛZ ?[ zwŻoLО7ӯx%8/E*cKl. /k5\of[1;@`pC&@C"tWcCAfbDE܍`ՉVH[JSح]#J'Q]i NUzr90%]DvɵKY$R{6}J&#7]Sa(ğ\^כּ%w~)(4 ^}w9rymm7;W}o+XƉ♽|%)eϊQZL뼡UY65[N }/7D5Gm׿3ʜ!el~=Ul?']WE$묺Cs2C6=|ڇ9MW8~{罿oj}⾽umz:iG}Kfd~ԁF=So*__u ?P-&Ȟ3>g[A/6> ;ImёŦY~ȯ^|wE)?IgD cY񾴮b paon#+KPv v?pzS^}Co)LTd2 u%ӢSfAcC86DXiLMn ,w ƲƩ 8CWLɳz{$LC{J3.?y$,f_1rZ Ajf֫Y]sPcUaYݺ[I32g9'.˻R);ӗS?籇x!|W_^qf]ly$g{-{s+zSW1*3hܵ@q]2*]>:=@ղeys*YyO˄x"ogN;}YyS;ɇ2Y: 3絗8]zEKȑ*?ӍOɐ.^p "sΟR&ѸCRq3|y9O?q[/G2祋κc8-o7${9_-zh;(7`#"x숢`Y A31W8}]dZEA AU]soNa3sj[*ae*)\uVh?%׌_'+f`S,9AǗqxhJӟ ӊ=J7ЌC-3y֣n`гXO:}!4$(gs*ݺY޺5B ŊI[,&{rtGJp/\p,2Wn⢷yOv/_8SϡoguGRZfqM` <:li:7H/TغK{f_2;OЏn}/ )y TV]jiRfAf̃ hSc//K)K>ty6z%v˲1݉8izի>Kp"?EؖV< i :%fq55GdvJsP8 /s'_PIjqgheŁyy,xAȒg953FN8lgS{XyO>v'ORH#{UΎ[Y'~<3\3&TR^5 7,w2'>s? hoG>|7c (wnK{t"&!Ȥ~5 sس¹ s (|*+Y?{Y~}n{L@[. l̪Y w "D(PW@/=;z+[wY7% ]IU\#s)'QOW?y'?ܵYov~}ۣ*zpW_7?>NR}GE b6:N ע7u2OrkUaSϭ{4$,h>(qHisء@i(8(:q#am+`f 5RS`y\}Pr$hStEf 'C ?iI?駿a|6+8)˧Ɔ MS.7|YfY~8li$ORΌsy7|`O!4Ų0=#&,>"9$g$Rx' M9a>䋷,Mi O)$oc\r˙s~>u[GsO3PFr7w^3#ěW:߬lxu;c O! U~]|᷾e`߿IHOo.,xKwV}wYV2O/{I9Nd{UﹴG?W|w ##l|ɻ>㎎W}mνlz;?p һ̜wmyiǥ# IDATwҙiFL!!"#H<+wt*1sKm퇿 +1_q\>W >{ڑ#N+ E>]C6a WO&s:dP#r*tL؞JBEVi3];掶 5t0 G I#NcLardD[`~t7D!ITAV)ӞsE0?^i:}rCMrpTwww͹[}CrY][*asg{Eܪh֢bbTUKsVcV$VlmM/yDu_gp}i>+f$sz׿ ʕWi]zr s) u=D˫_G8x,=ĉD&F<72I$3UŚ tK<כ4EGr*gqqWϩ kUA;أuzr]BC{S9-EZw/')b~RL%VSƯ9k "xMn=4bH _boq$ i&FC#$eiz.eXt.!I (`DoxU0yDEcbNʼnQy4'w+}A_qSӿ%Ô ۣHc(9U"̴1W %§P|$/PUzNXS-)&UR=OkϪ~8:$T&҃vX"՞&T9g|uHGq m Fk԰7"Ƣq"b,Lle"ۢ&VlEO>q- ̖|4{Sw{ΥMNq+EwA{RLo.47^V3MẀXMvTM:_ rĜYV.Mґ[5ZS|~z\V {Cؓ벀)ȴWGW_qRg6UX@*OJ> 7h7ɶ1j1K\'?>ź7'X }1,3w6^h5m*@I| +u vnEa&! YЭ\i%wěVt"SMqyOIB<NJSbUs:XPβ6eЦ7k,)Fx46p-t.k>!|.ٴDb`\͗ec7׹NxqfΣDs-]Wq2 (S4ZM.3cZ \ypʏ6Q=6pmucΣ 2P]:Jd{Ju3ͬtm jgVQ`u tKXfK&=#<ȘWjcN/ޡs,y Mem7Kf:$}A? tZ Ͳ,C7QO0sIQeZG{"hiPFl`=Ri 8UV\J`صWIN;d=s{9jhkUڒs-o:q+f | Gp 1'jjJѽV̶X!'ZL쥡ULLQK;;FnJRYRw$6j}22if{/0Mq(f kJ,WoX~ܩ^3׃\̂M mi)9*bVcеXqٌ,"Ѣ&~N:)8PgA8 ]/ë،tʹKҥ۸LK?rֆR?춰:63`t¼EtiJu(P?@964& k+*/֗@uh۫lP\=e/Z7mDXl):SLѓ;餓H~77Z3~&B!@@@|%ZyEX# @@@@H sg]@    1("#Wd; (@@+pA@@@`F E@@@@@C    0 |"    PdY ~/$&"2^ˏ?K/zxU0~љ'{~KGqA.hx"~{׼&7Ϙ>=@C}v_R )ZT:\i}h##oZt 'K/\$N}/IvyP &@~M:VBKTS)n .iwWVXљKl9M ?J'& @IsKUS1~|eXuR6)    P,QIٗ)f]    0 a 46E@@5+5yأf(xBިsT__ '3 ]|̙> @,8O=̮gYr .;|0;25oG~nICfe3(E@" `(KQWߘd-xo+RzBѤnY{24VltNzN.U89$'my,PϿꚬ*n_ç^uE*M[Kzcl}!3>Xiu~2}C\[cr0y+V֏ѥ|:|0C0|Ov=V5r~<~A`Rp;AN1>'B~Նz4p>B?ݴE$?:)o_>s=7\]uQ;Kg;zrWuKf-ĝ nz9ʋ7Q4 G#zzWi>[w$3BG1WPAyWPcisZF'c D{s]r_ߺ~ ֓)43W?3]UB'o|9muXo̶Й'f(r14DJ/ta.e4w%RJ|r))+s/K܅n0ܬ2q U^B ;қf;ƥ!U52 mpH Or.ffQd=+4]'dSQ{U ]g (B,`m0O|R*x5m_gSbf ѾO゚}/a;EpB`쇣ή\8W }EMH bhqTIuM*;i^YuL3;}1lo=}z茢-kA8 $%:GfVENo w*'ސn ag0ۛW͆9HbnmcL￟t.*t΅ QP}(Lgϝ+i'凇xY\evSwNm7(Ƭ:hRu*䛑+[=5f}tBҧ=L4^MutbhR"sW}7=[qE n|%͞'qe>56B,)cwZX}Sbs;):slt0"$@W5A׾Ʊ[3ha(|_k$CCfkpW[lT\ ?Ruخ 1 m)GNP&q)++?f}/ui/n?&1,]5QcIrݽ^z) p+/_<uMp Ձ <%-n>->-?/58##y;<1t8>ؾGd+i|l?ܮT|^@fzz>7$r_rAS}7Gڜ[|[󾑣ԋKb>t '/<&qG3%,\pEGEit$61SRBcC\x$ GhwNO\d&@~M.j"ʜrz8 wo.ޖz]~P%W6&o_|IVb@g.潇ا#+_sY)5+x/ŸcJU@c$𰖒ƀd籸d|tǮ׼c2bC    $ e|-9n($gI&H͗O棿-so 󺞨%''Ĕ.O %KZ>朕>s[qn?'sD]Z8p=_k]v#^&Ep{vRFvzn̙YH(7tSm bѲOi>󶎘.` !@?ʍ8/`)8j E_r|q=͒9@ :t(ӧ1 xj1   DzzV l$N -vCY6,=MSD'xLT]ɢ]h>W{qY0/_mt>2Nl z8HďިKZ&>o׺toXZDxNKIRΫl6WNLJ)osYa68oRMQU*4RӝiuV67BUR ?kӛ'l@+7yz' ;%D4@@\]e+0ǻ_bV7CE1ۤFHXDm⎏4p2ee>mj 7ޔ&\z>=K\!غ'R.1?̘\1˹3T?;'&UR锸"e".;v'68nsѳb%7j;!@@ F-yvݼnnTꪐ잦*1'־:-NJn+knYNGdw_pe5ض#rrMUS4@'M 妕r8SG6Ñޘ'(ҳ7uWzW5J >6vD I]"¼|<,$ВoNآshtb"}tB?ߍ7xy2rrJ5JvjI!)%v)Hk`ϕ\ ]eC K&y*2THUuÓ!Ex,''lg ;}9cԹIO8w;yPf,5g*_K~iw> 組xs+OA@G20` "JѹyM7qΞQ+o<0R1ly֋@@ N਱l+eo~$~tع(7'79?l9"߆\m } G,-ofOa/.d@ " & s[W|Gv?Tӯ{ds rŽe3>sۍ.3tuuGd˝yIxn68v^_} 9A n޷{9V]]M۽ ϛo~K_eOԄ~N0(Uv#$= 38_)ʃ|"4) m,*]8(P@@@ r?nTk|eh3"BG C;tү&/Rx_)O@h%ze5y|.ǝw{SsSE)݄A`,>[}Y a 1A;܀1 p)]N`  0nOb $AhEԟXe.7 b2]T_$d$?'$]&_i>J"'>KU.aQ̩MYϏ`YILx&G^t6fe ZNr@A"L*4F>rLj[v T~ -c:6l?B C@쾚J%t0!do4$dU]}1ưr:1Eq1?G7hț424R7w}Ա\-S/}*9!+Ҍ$h8:Uy:" @WŻr3i|d]DnuY7T@(a<ɯ< `(+AL 8CWN޲̓BjAMsC8j,2ҙzeM'cop0׺} H|uf͆)]5,1j(gDJTá P,8h5=ƽCMʈrEp #@`\'Vm#*J*[8 *1#=4~ql6rjVYԏ2ם5VfI]#UghH?_?tj-҂fy{kۻHZ[MVƺ:k¿!lNAIZ UW&'toK<&)C 獙̿p<DZjrPDCATcLW eN9)?|B1 3(lbבdEN ǩ-q!@!i\)@4d=R4V~ѕ!@@`txBQTX@&Ū{p|({Dƅ@` 8(y]3 KZRfΜY@ @@@ q1%G=x#|!@@@@ }w|=rrW?M[ K;?5J`   NO>w xSzIo]b"De'5S|qԫTDOWGcX_U>řNt8o3뾻Cf @#,Z8I$B5ݲEZ&{sNkrm}cG훜K3xsnHi\Ҟ^7 H[ Fm@@A% B+|))A9TGjzkt&rR>5gYu]C`mIǵJ#ūחӒjoJ7ƃ\ϢƵBt&h^58Vl2˄/HA{]ukMKY5.zzLt+qkO*FOd.к&y|| }f|$6 US/λ4,P^E),Z2.rJa{߶ΡZ!bi>#6VJhlxWWB4lmK`)4ˁcoIڗj qO, `M=Iݰoө~?'Zӻ`}YWtQ$]SbgьZdKj5%ļHմԵug?R IOS=ziu^p^lU,jX:4Z>Es!zuy=Ї~phHqI ??P$[< SO5|rW%"}{kQ+NMma{wS,(jQzU~Yo_Bk Վ1]@@f:mAsbPuc`S[qH? MOp&v3x6\r ]jaNg2GQBAEW$^ۼ8';j1[жTN~n诳Fkie]ۚ,Sy6Q VA`RR2I[#OYSLb&Asq Iv=onwj@KF:Oǻf ;& Tmv9'mkoinY92A 8arT%ʓ|x T %1AҁuYÉilUKGX@ H ^kr} @`vwyOL9h0"x)ĊJhL!xrnW.,XM!h*(qJ*VY    0NaVwjuRl-6N 0F<ڧ4#V5S   k_C]Yd >gAgpW!̫tԠXUK_m-=DPTV.%(#u"A1YaJV6.Pt"AbjAHXLfVEE_M] _1f9ja5u_l YEBʿͻ0eN\@@@|tEQtwrRע%]Ge4g>m>S٥\CN麋ϗbv(iCl[y炞 ?<R I   S:1$oКOL(]2'S*kpzF UlҙB,čk-'yOxT!3=^* cxvHf;.݉A@@L$`A+޻hsE@Lq6U&F1IBfCl)^F!U|ZmBBE#ꎔfu4@@@J)?}c%l4@@@-h%tn { mQ=]kBQB@1(M0_iw @@@`*N>;8YT@I5{nIp Ը.CR"q_16tmbgCo0_ͬA@@@ =j{{UkIʥZ_׺F",-@q0޽F;qn:>x` ƃm -5 p+KoR4Q L@@@@x $]Ϸ{m۶߿?\Ruz-Bq^& slHu9{2sbt%KlݺuϞ=9IUW[oQOg5 /T(,n!X|͛ó{KdP3uGUKNGŁ<H"})?)qA jΜ9VڰaÁV.]nVK+v6^1=КjS|G}#G&y'z#!FEhW^y^d+c(    0H='|4K/>|?$m`b+(`X@8rI;ϗp+^1Jp(   Pj>ML#K <   A@>% {8v޽m۶Eʕ&Ҷ'+喕5b:(7%@@@@ 1Hh;9|Diɒ%[nݳg[E-륾T^ӝɴky{6v֩k}՝=Q@@@A@i>K0SQQ|͛7 Vu :ǩotvzlj*O=Zw9*9WבR+VRdKVt3gΜUVmذ-8)W۱FSR @@@@` MexxxƍW5kVXVvv;u 5N;[J @@@C mٲeŊUUUܙِ5mXJAmY!@@@x eĭt17Ҟ;v|4Om;j᳨lz+##@@@V~y-Z4cƌI@4_ZJ"%`߷{hK a ؚ|@@@@J4_S@@@lBvbgb@@@@$+F    >.A@@@@ؚ[Dl"l[[9GP/csK/.-<7'rga   0U ]JYYߒoWq6WR%DI5A@@@`$WlxMigpY:!E   %\ͷ{m۶߿?5kkZֻmZdsmrכ;p-U$ 6=rH^Q<410@@@@`MK,ٺu={bEMʥbV-dkNldOjNVN4UmZ)g3ݎ(L54+ZϘ6rIܢ}u|^hb.O< $ZUTT,_|9U/l0O/jj]#UiEo1-lsw1?uTk>˜Uc=+浍™H     'Dk>j˜9sVZaÆhZҕtQ_5hΑCs>²j   G /NR>4:unǎt=MFZֶg5Trݞ-iTkxY GhP (Rh'\͗N<s8#u=]a/{rS]``   EE o۶mۿkִw`ۺ59 V.] їA@@J@r5^d֭[vm};j7}r    @***/_y恁{vM+_GլrJUW崁=Dk>;gΜUVmذ9`\-]#uks؊lL,p` T0(vހ7^z֬YBl^[SVBr=MU-5ݙ80WH8Ж-[VXQUo wSy]z>_]ni -rYW=iNǓe($zoǎt=MF6nzoMjdt,C#E&jy-Zhƌ@B $WR2CX    Pl}=_D    P| 1 @@@ H0 @@@J/;a@ @&\@B @%t ,( |=M3-[Vcr)k1,.D>NdR4A  miYnm]_kg3n7[l=[6mzgoF.* MDjJjJ3?0dakk:+ht:}8.-Hoۭq6mcԘ7Re9 J~%3]ƛܰ65,I]GMڰ)K55\h7խ10BDH%KnݺgϞT*֤5otH9+oNw=MU4&|ZXfU#-N1]QW Wi=ɹ;9szì 8r٪)U]%cv' 7뫦E5T\(nˊ! L,    0l͗˗o޼y` i=MuNcMK}Eir"f}[ZF;sR igu1?y;Fwd Nέیm4TLg@' D$`I'h744e˖+VTUj!(s'WŔkHB_ݹT}wz@{xh6U>E.Rvqrˉ}pNd: UfU5I F12 MH\eeǴnq|_g>駢#O6Gی%s˯*t]FWWWCCC rA@@@ggg}}H?sG?FXv[hь3!b!\͗JᖁbE@@@ }=_!>(|E&4( YE0țF    Ptn!`ț oIބ7Q7ʊ f+ϡEd+oe7,؃$@8_StZ2bF vvP5:*z:3lbtuxxU;$@KHtSەu-?gNUg}Qp!#\ͷ{m۶߿?^CUOWGZ9&hUӰ4Àed&R=keH$If9F)uN RzQT6S!Dnŵ쐅CTYrh RK7h0C@iH8!3gΪU6lp+LeWefyBOH?J>GtD;1#4cK"T!T 4_b7nܸzYfҁ&čj"[c~R5#Wz_~9ʧ~P,}J7wP"ҬC򗾸3kw?Tt#}^hQ|nyyUW]Eӻ("!nutuu544D @@@ tvvGИ7}s{_Uu'z|hQ"3uz&LZUkOz}Xp~hfAOQMԛ?Sc"ۖK53B2R ؖQKgdJ1wc)T8_g}~C]~wgRH=UYY9o޼)So7h@_Ww&ܪ/C@@(vN  %.@WH@@|Ȃ 1_O G@"E@"   P]z|9@@B _RYixҞZs@2H371r͹u8R @(v71RzZƛ2;tS7`՜Jl xV^Vmp@@zOmq<9Tͮ ]  @<ook׮$%v'[V)纚omVvk;LSYӫveV IDR#$!UYy@@`رK_CSr4h=m.nQ]OV*j]ޒ5rY԰YV۷}m{U=-}mk{uIӷ{k&G_]@@_w̧o|sχ>!߮;鲹}zU |cF+ J 8}{:J%wzn"}>$! cQk(OCU VD;e1osU}P?2[IdYY|I";  *P1_>spj$iV'Arχv (.Qy5ek$im5.@GM|hHB@Q(ҘW^y XdIحԥuXk5M[u=ff/}=gdQ~@f^Np'=rG~ȕf:6N" #$U[/F^Qakx@?)wHy:ӒdjKfV[ښIZ 9w  3 A=  @<to7، @'t'WSh@@`t|a}MsFWQIt țGRkyE}.Yb lgHyX{"$f&@Bc>s+r6og,% @J]5jl cUGV{Mi{vܰ*Uvx[V^o? &@̧;W%M ]jMoG[o_FlK_Zz5h=\=PS{j1mN,ouҞg=ܾGF@0c>#(F0'} 7D!ٷw@b\uy-Z>kxs $1z>2~&oTu" @ 'cئtGW% 墥'ㆊݩּ IG\T cXRor~A@{_5Z2- ՙDSsOMk7ר}]9F?>풄  u!.Ev\=Ն۴SS ɚF-Q#Mɮ0pL+@( ו{{e}^fz^fdNPtc?xV%zyCH[WM.E@ BU}^?2>헿̞  PR>1_I?rg%K".ewO5CG('+f  P|:@I@|o}ȑwy'Ì>N;s9쳣!' IW63sСcǎM>\*S5|rĉs=wۢ~@+;|E5O:9.EIg.! P(w̧ɓ&N8yTbQOj "0@({8rԩS޻&O>u_ #YzkxFRۺ71r肛fn -|G|)Ү?;zſH~xӯAS:7»~|lǝJ%RD͛ر>zDwcNiy %`o7U[ Rᕹizwԅw~F] UyLͪPomDo)xZu ~2 ^kͱ3o[Iwo~]<֒gso]v,9%E꾽c?4]gϵdu/uJU&eRҝ[_b[ync5%;{{zɗoPu7IؒƷeY{yٿ.SO?t @ XFؗr]дTH|ΥeI.?W[`~~K^~m0pΕ^~GAբ:G%5+Vm3`S:MrȤ2*?sŃt;..ԬE)u_Z;}_>d:w쐌tW}6UG@dv-ơֻR(9ʋ.ѺHO|]י+[za{%)hrW)'fV_kRNm2sZWzLoZO?u?X%Tbzђ\* IDATFW=-YT&o )^1j﹚iu{d:>:I~[~}-\W+?6c/X5_Sfm*{jV}QgvըݺlwfWyƌ^W鳮_%PO͛sn|  @O&Q~q~W?7Gؓ^JJ |8vwEԱ"g_ZE*lV%uvww777, ]]]!3g^$, |?)ҌX  $`xj_2H4i|&M|d:U=#@q  @\zÇ2w@ `-va_lv;keDQ9YzZ/ ^/1]wXMr@Q@bcA|vR*޻xX*եm 2`寐0UNn܌A170wZa'dD@Rþu>;w=lnIVڟ#/|5ZB-6K_i>cQ# ֭[?# @w{E;g}7C{,K>֪%AXW_.ӢjwiuRmR_*K $*mgY吭c>It]椻siZd)h@ 53 Y@KϽg(3ftM[lOӎst4Q~Z/j]bWdMK4-/S|sWܜ<i:Ѯ/U}2k=wn۱f猁K ^1_ {-ڸq᠇T-hJ$=knc.Z35Tեqh֪Z:|b.]꫗թ@P@ky:thӦM/6mZl,uM(;٩B@Yӳ/QX{NxaŎt.14QBUˮz;kݶt[H/v6r! @\:;p3կ/Ykrk\&zݣf^Hh?0QWe%OIB@0߽&l H~|cjӶ՝Mb:3*G~™EDO%r- lQS'>6::SsFjsnn{n~F@k}FRD~͛2eJL E@FK - A+6՛H$e$  @w̗%;K@]ݥ  0E}&@@r +Yf  P| `  P|0ˌ@]ܿ@A 1nY쬭Z6fS)q5jCc1B@A'H^9ۻh&61 ϺN ֈfZ $P1___ѣG#EMy`:sowڈu^6yMֿk@@@|[n=x` ۾mzѬ:;Ww7۫*۩b=TMCVF+1Uζ/&T}4j*TNwgaR[H=z9@W߈}7|3Bd -m}6kVhSX{p_Fc =zV\] Idjzuٜ]k#V=T"{FKԺz#0~ab_.|vz2{nO># @lwOg̘qM7mٲe`` ԷwfZY+nDG4~+~+WUrsX5+kH|etWo#a깉#SZjmNa-Jג1 W@@Q|=}EmܸYܫ4E}-dAW$ #b6UA^~r.3(5gVRպ[&6j`"1 @E**4UǡC6mڴxiӦe,մ5ej޾j)f]c$jɌ}Y{+K'aC`mUKƚ,Z ~ri zzj[ )  Gub83,\ZlMdnnJI քd_k֚ jQ7og6TĺD. 7gU~ uvyTtk~w%KSc^wc.C  0Tޒa]6y#ZPc@zmZpԧ;is( L  =a;jzEjmPnTͮb草@@7޺un9-ॽؐڪXL5%ݔM;ٲ\_Uom,OVK/|9jC@o'uuu>o;17p役$e0]'1cjڜUZiI6T4s_Z>Ѡ 馻H|{:2! @:1cM7ݴe˖izQzn"2ׯYU[J]]}\Q״@}?{wo9#xt]Ug|{6  @:ӧ/ZhƍMdg- ?ҚZ_8rR84rdD@(СC6mZxiƨd5}`g eM ;Gaqv#^S7^X`窤5]p%K >dbrF|{6  @:;p3| }o7ѧ=@@**&L|zۿl|<C=eyFrVs'L0|I=wk:cIx7p@ ʙ֬YWy&S͛2ev@@-D%  @ |ņE@@ +щ  @|9`@(Qb8  @̗Y@@ +щ  @ɫ5j;![?/H<=Y[a,!fCcX}mG*i'13zD)@(@|޲&oR/U#_UJڶ>T#1;Z#:uJ{v! {hB^_gE3n<.^P@IxcGFo0;jj@ --fk7`Hv!elnIQx_Ť! 7޺uissmm /W577T jX~jHj}h,fuT6ms_Kc_ _cZ_T~ٖ.b斱_dSU+vqn9;-,=uf  0K]]ݳ>of5j]^ӧukN/i뛵 ФO=Nifͬ"1ZO%ゾޥofCmw[-klsR)ph,1۶ }vɾ}C$ @Q|3f̸馛l20ޥ ZKM[s{lnlR,!g Zwh(=X&e%aFjdk: [: iW%.n_⾉~! @u'LӧO_hƍ>&_Gͺ*;rQ_ýX] 3[3[eN6p٪5F)i-5l!4G @|ڴiŋM0EͺrYl_Тv}51pl`oާ@O_jVyr&̄laj^ּEobP # @quwgyf…p>fzP|<ھL>-Vg %Us8#r{ku>9nKmh fk(icG@8 png! e@@, /3@@@@ FgNyfd  P{찏 @,:_g! " pVI  RCFn,A! E>`/DtuuKW /`VTThJJc1Ӧ_X A  0 $Y-Qȃ D{j|:@oM/ĊSc'׻_h @zMg '<6b3 dQ귯瓫xVK1  &KWjG@@h /@@>b= d0޷+/U`xVoZ~h\Ѹѱv:w<$]lrN.=/n =A#ړm_`׃_ȫ7k$ e*ע?g7F?д?z[ :׭}}xmu"G@=egR7ѴşsM0}#Pmި~Wn|AkGx FqcshŮڱe1n@mfǜz+!@ۻ|(YuJ{';W\瑄㊺'jګ{_{G~î!8̖-j7ܬb "XKvPOo}1ڴ]b^/>r/V\gDyTL@/#ಜA`l^̼mcI_eݍiJs*N]V-Ys2;X y864l}V9i;{7J?36)_@F"X \IƠaYD.mEZcxWeҨ(ݳ=V@ xVK8.#Nٜuxz3 /gפ fqXPڞztcr#O2L:CKr@\|vs)N^F[`֭Ϩk6.1mҠ f e?T.E2ޑtf֭wޫ+9aT\ƧXrY~OFErی{8<P# @bw]ٟ^lٲ7=䆇 Twk:cI(\[COH9!@h,fQ{u5FY W4j/|pS*] 'oo4d/^deY~U;FRIKRFЃ2:{_>]*7e6fx)\F]>&/̒֨3TKV4M΂o=>yzBoքy6Ooi9@[˥+J}D{]܂- ڷU (&>2f/.ŷ\԰s)zCR5/46*ծ#zo_[b]Pha<.*kʁzҭK{nmQ%8תetk5MzuzZz=sa gLQNWÅ]nNص{n&SWok,Qqy5sB2ޯ7) 0n|FOf0k$?򏥦lҟ:(Kwjl ioh/nRFTڔY՗+Im%^yxU|qڽU!Bv:=T5Qg >}ze#]lTwJ\5o)>|\d}r}ȘO {"S]O7:뙅}M *{XO Px+)5X`f˷VNmVG%d9v҅ Fmɭ~yG=E+"Lǫi(Gʄ\]g]w{6TθPnO]~[+dGs{j x#?F|X[qr6}m+uš}Y[`?"냳ڍv{dYTJ]F0F-Ͼ=}z뜥3&nL.7{_k237[{zE$%"oY@`**&Lw{v竖-[6cyï{=e~gHC C`{X}u7 zx^e< 0|1ʙ9,)v FgJV@{:Mm"L]pނ   4.O8Qkfԩ"ת?? mb !+رcR  /b|GգSʟa/"fgJ>:u3okLž(0=ߜm*G@|vވ$DŞ'O{%]&R.9)Y2d 0C'LΉ2.ɬyy^9+?qyHA@`F/~;|F NPAD?O]GG_:?p mwD|'Uؚ;)}~&  @1>3|#MMM#L_|^|ŵge 8g9G[~iUć$ %,PO{dC,}͞=;F6p͈f̘1u4ׇ9hCp2GT8q , "PO`ܨ{]w޽;dH:DE%ISYYyYg>mRC3` %o!7Y@@Cԇk:sOfB~B@sǒ4LY@@9Sc!3 Y@1H([0\c` S !0<(@@ +g  P&|e2 @Z# @1_.a. I\q`,  @[@@1K}ee@b+Lf+7Cذa[ouq߳%8y?ɒ%!=/!=?~ԩ:5a„&OE3E6@ 3|MJ.c~5WE<1_% Y_ho:uc1s=wk׮ NS駟;Vl x$HM( $cɸ ,qپȈߏR~~IħMk^s#gp@CpVe!"yў3I򡼊d."u  x~~}rz˻_=󽥋4eOO|7u/iOG[^9s|Cǥb"@װ'u.i:s㫴{*O/JsH{v;o|VљKڟsο1_Cisj;Ό]{oeC@d2Šf]+upҍw~SXey29WU 4I)3)5lT}fFwq+wNe#ˣ|U[ ǣn}IV]2/@JOĉov!}*/RIze;, jzSL N>C+_!w--bI>]J:nk ۶`ԋw-36v-c|)x|\9$Y=[pdo+T8s\ 纶\y=7QϽs7PU%? {mjFg2K7j Q1 E-r ʖJIn/}; E(,QgPF-;H_(ǫ?'گ^x? +m:&&ʐG\SU/wrW@T8w뛨_5{kƒ^b8# u@(> 6\G/~ꫭPX*7}gpJCpע/o՚|3Ql|tN,C 67Gw۹źtCz&V]Um/:WBu19u>ku/. -  ߱heֶWk_2'y+hh,e7=!mІ 2¡_^zZ\3W_qp/e8B![$u4מg.6yK3\M4_KՁ#U.||lG^@~W_|aQW= zlLo NȠh ֨.{}nϵK-4p%WKػX/j%S*s#@jOzu}|sVo5sڍct)ެd%0y<狶@0Ow+]a[Oh"9F,γ nޛUZI1>"zE%ʼnecxVϽ¼|C7DwlI2"Y̥YWppȹr^lcu1ݬߏQz@M Eqo.!@mU> ~~.| #)!wҽch^3/Y@$- dD2%9vw~ǃXJ+}2葛|,֤[@ L>?>*189"#q k@@ * b> @[8P9e=  PDg<8_OFYUSէ rYJe ;T,\ExK[žvNG7nKB{;GJ=L6 H:o࿴Ϳ}];s-ռk0YI?TG_B/GHJ2LdY.*/9;:)uwY -zEWw]g%(=6"!e=_sڙ 7fv$g8Ɵ!9uD QSvuпo\7ܼa:4Po]lЩ:%VgF̂ 3)r~d2);'O:1aIENDB`PK !9i1ffword/media/image30.pngPNG  IHDRR pHYs+tIME  -4/[tEXtAuthorH:tEXtDescription |hardcopy|2012/11/05 18:45:52 lim_j SGA250167ؑD tEXtCopyright:tEXtCreation time5 tEXtSoftware]p: tEXtDisclaimertEXtWarningtEXtSourcetEXtComment̖tEXtTitle' IDATx@G5ig+ID,X^FQc c%HIT 4`GAn{{3o޼ !x $@H TNM98So5s0a:(2\VpC?4:<{`e 66 b"@6!p ?#6цJ% m Q+UH H'^4Zz!ae}6Gv*;Z$ʏc5!$Pܟ\{!qCm? ֥fmR$4A-hC@(ImF%1 3e0:^]CK%(M@17=W=J^ֈ#( QZ0tsk[Cc1O"&)X\C$*1m1 H&`tk޲Gj׮ة (:s|s%d(heۯF78]\mLe[фepOCu?(ݧ &j;D!ajCa0u?`Jʮmy"is(zazu0>у9-mv-K(3z 5OS\k!"51d˶qӏLtl^tуUGkյG(׊5̙>ELO ؉(X-؛+y}#BJzX˯ZǸ_Û#DNJ&%dA`{ *FHIFRL_3>94lCpl#(kf˖3a=n]rȴXwU_CmхohyoUv!%ZvbdZ&b@@kVǷϜIG]BƈeR);9 K@TLx߀na"F:~_pwĭgcKȵ'PdU1=MWMnJUu|c<!6]Q8M#wsj`&^gl0n{%$ FҔem*/Z\3ɿ= uhx@\H57g`FӐE)~RYZ߭+nMś[+/>!lnGOڹu`_P^'d%GW %`rŗ٬[dnވ4mҒ=$fq@0F-Zf_aR)? =b  An!#6ifnoQѿVf1@V0}BpezT`&&rk„Q׈F)#}D:QN#B 83+z Z4Ga3AzќV("4Yyk?7jkQMGzjʬwZӳVO~Vbc>!(Q!ٜW[ۼ&+5Aׇ5 {V.xeJԁbH JH_%44 [09g QǛ,*$*7*wH XL@8; @f0 [E?aa$*/tr$"*|X K_; TW5kԔ+k8=UZ&qn֪v܋xK4{qM&ݾ[_j,)H {0_漪‰$N5TD>yqMRSTjy1oӷ67x9Zկ_u_*&H ;0A% jժ5N-e |?vk{[Y٠Ys3/<~@u;/ԩ/Vӑ@v"`S]]gmӆӵCthZF͚jyI~:u{;=Ko5xsM=?R|5= 0LDHpNFn|yXw"R&7 oPOMq~4r㣇]E&/T%j(U*('~}ճH 09Qa[>]̖Kd]{^vٹMlVDᖔ\~?A ؠ ?qjf Q^ [6ޭ48>ɕ+W5`"@HVD]Ptê2?\:j֐4h0u|{Ǐ 1Y>#FןQ*JRNW( r Ғqr}pqFmX $`|+NґիPKRk!e%*Yj{S?ps)?;J%?݆YH XO Wl-Mp[?.j3ߔaFYM}cC?8gt$lE UOcw$ 㹓?ʒRAW\4O;?Ȏy@~1)t$p-:׿JҶ~1v7M;T2?nzI;bpCL #$'`WV"++T^j1ڠNJc;w;zYԀNB'+~ҡDh%%,(E@#`7vmgjBH ؗ.wj_ %a CHٗ/jGHa sخAÐ/tڑpXw~_vX0$M?*^.zt׻&1 H'|W]^Z=GFz)D0_5dOJF1ڷ ={|Ҏ,5\2sT&pjWv֙.>rߍ5.up2 n6uwA {˥z9D$lZ/r4ݟN3lWPתIoܼuAýbr;R=͋*qJ`eU7!VV7qty!P!-0 _,e`HڵkGn9Q0=e.TcyI lb>O~A.1a֋K'U޹pg6CTtNY #D#VqSFR_`f|ι]9sމU&?M05% ^&XI:Čџ`HHM4ʫy]޷&+i#+C@D۴iEFFȾ)ɑɹ++-ڞ^o;Sɫsl&NLyG܇lJ<]_aNA:ӴuJ& !=\6'YNv&޳Lt,=L!$h?Nߒo>=Uί[3ݜ^#.sέε>ҩyӫ Uꞟ6I=uc;IJ=2|^67 fFHQ)AϬi=|.|Mtg+p,5AXf UYnIrn> WPxՃ}~(\?">ӧ^ ^]BUs<~Zxj"{,#K{ )Kds]*YJnj}HhZ@nC=1~ b"s~4xAZU`]۾;Ekg%+eE9kFk,M*=LՠG^CH;yī{{W7 ͎:~⯷/ڊ&/Nds)ϴl16(bARGx%B T3>='YC9zEk&(#E3t~g#[Jn|ȝ͗ՎE d:WӤuOi3'1#F~}ghwcڪA$h /'gM IIVs'Nmdw! !e.<Tۛa{Vޭ_mqYD&[}\mc*dN2_%rFBk>#13zC~Ǩ-FSO3nHI I=vт6+kHfv}Z &yz:[hڤ>Ck_nqfPS#N-^:aelD&)EwA;iYOT<,Vv}/JrKjto''hk*~:tݬUj1򅮬۳Gc;?]1lrc_q +yӕķ'2p|^*WdJ\uͧDL:[YZ.si?gzy/LNEv*yDJlʫ< )TAz|%YkHaVg&O6IIIW41^=rstjWlXVUT%F~BWc'xsx3yZΕZH 8-\V=SP?fEqQԪܷћ eFcm :07M>'E#bd#'V(Tp(?zPWsC'ӑ@0/knJJJ˖-yˬ+Wj2hb&8F|~.9UA5gYLg|=uUXTgY$A!$syyy?۷-kBOT _)ը_sUɝC:x>x5z򬸽0؏s~NN&Mjг5tzDc@u%`\;w>p@QQ` F a]2[?W]w5 *ȼ/@)ئVg )30D˜@#`{饗LX̃BYlB?P6T*L.2%)*  x^O#!hVC;C`-wPAC{}1hPE}w~yۑ{9 ^Ow4Oq~tD5.3JѤ@U `sΞ={^^=`SVN8'3l GyaGgRw~5ܽqpf09bȕ_OX pu@%`ccc #4gYNJds߿~?SpNm_Ͽ߾]γB: :)W+Nɉ>/ `D(?QSPe@&`/@0_sԯ_?))xbۅ:_}Ԥ&Ώ$M*3z &|Y0FZඊqE@U&`?27k>Z46ćc  {x $EB`o GɝvK:&C"e^$V'l /k f #$PuX~0Ȗ-пpze Yʤ1#9I"Bk4I-TPPXg`6&:&a0,&ϔR[//$ SIk ZUp'J/"605#bwޚ UbZ->p/){g'?f<q4?fG2 ΰpb[3@xgف `T;^lJЈlޱٳ= CSPT3:|' lu[9K=k푕G2Ճ'jc)VG"O`@p!;Tvp,@oq jTaFpbjlq%'1$bAr(w7,t&ɖWҭlawI/zا%|!wK_kh5p 4:ؑfkmk.A9>9so0ndv+_Xvn?w{ݸVV">[feǎI|A~a&LOwJ.״st89;"6c}:*9hpܺExMmׇ` &Y(b..6T8k ȗ]+5(ſVq%"Ӻ93*3gjτ.PwH:ٛL4 aN+>p{0 #iPa.<4dR%-akͨϑ @dt[^s`ɿ_+dwڢgSgDZff#_V{~R=zIQ¬:rYv#՞zn{5 ?K .$SF]ZwWrJ3Պ$&3S~ٌF-s6vC=b1qtafC8]!&j㷉i ":ݎkAǧ#3QZ7GsX̃W;9n*mi _E̬b3fugVvka2iGjдn͔ɊU}5p d6c&cmn >:G_p?ɍa"o@ZuXzg&02 IDAT2󆄎jY='m.XvԵ>1̕0@+v.E [TVҴsY"0=CIK-اƽ:j am4s5̀ѻ l v}b9ml"{_^nư542JX ؇V{p+>kƳafg ; ů11)]ŦM_J63^,cɏWr32l4>''v=1 <ӁNrRm#2kXKAGT0cD0F LG@BvEE>d_J w8ǮLE-Y |.^};S R?z_Ĕ+]XV5II™vM5 - "^SC7>u&1Ԅ'tՏ6WTicG9$`o [YIٌwӮ,*iY( ֫uo.nlNƦۨaoIY;ՇVMԫ}ItW+\tcۧD0 H!a[|L|Zgʨz7+V0ȱ~ϛˏɟfǼ«xn&”D^9/{F)?L>2ȱ`JO&j(CUw~_ H߇c6/d q )Ak4YӋ(a匔bZ BtK~P]ms=f73b/oB|m1ڰ3?Jx 鴋tDe['r({WF'3z`uЛަc/gMLOva6pֵk׃Zӛoeؾ:ghsՍ}o= \ϖ4l]hu7g &w@D dfQu _sU~仏K;#n7\rSAKt@Da}ݟ5,XgW{}F"$`W{6,tjl+ s X<@Hqs@K(W<-׶VXe4u5+FFT$lI?[օ0LEL  "џcgwXFaBH T~*ӗty-1\w^mdfU+"ȏT(h\ JC_wהbROĤ0"sZ֍aR!j@$tӭtPumj^9TaS{Q+tvkrXZ6:fDe:!}Y?v?GIn\CW8`S7 *\(Ƥ#ԚJECVx_PZ~5?IN9'>"zLM?iMFXY{DGZgMk,*E?/gI̶{PBJb|0>N̹n/Fc.tx]xM?{ 0R,{l1lf{ALB?5w>̞0\@!'Lh^%@%au^1{]4<~3MVAxDMlJ2w`۽W MHQ_vb)ۦ͏nS?JoƏr;Og6$fOUA\G`vnƅ,^87Dc[9[ʕ0u"$`1#No8 DHr<;b XDݟE*,\(ʋ~ˋ4փ@` $P^i #:AH+/X@Fݟu@y@W^$?4 "Hc=H 8t!ӯ] f^b6R+36x|#s [SLVfnfཞ[,erϗ#}Ǧ\B<͵ 呀IQ=&[kiЯ$zuלPOX$d- Ii#IL3@wSr\afu蕘Va.E6"_LM~cw02ڵgXRVđ |+1ES=MdsYrKf9rGC&m3$9|P sږ6Z!55 TȶmJ@WKߥQa)[C>Ѻ mhRW7^o~+I+Y3RO:@U<#n :FDیki֕'W͖5h,M4l)$tʴs~OkeR= ~*2!YD-nD3(M/'PޡmCb.mR6R¶Cłg )U 5@LB0Wso05SqSܟĴ_ g b(V OȊcT`ʴMKVI&DzC?Cu)Ua1rW6 O1*]GP;GHK\fX%Qd~Pv(Жg&k靛[II #Smm^ H'?Obb-eiƼ I_e.XS2*wluyFj!ޡ3[C50.d^mղn úDl[1AI`; j&z307>A1(3^H-UWӛ^c7Y".Ҿ[4?HkYwi=)V݉IppVVV,XcMpbnnc-G;_UiYVU>wUe>-5l9~!j@HR@W) FHzgpf@W}n$,{e-&HM}ˉɌ| aQ9#@3 f/[9]uP1eXUT)razEɕtqMwtùӬrCL]8)*۳XL"f z b&Zo2g $Z1}_O{yDKf>{ԅ͏^oK[찗)|\J@:p1CI3u\}[(GgPB&,T<^C4 =vCgb/C_u7Ch]UPIƃínQIpqaK6 ,+hi%{+%='c @eņ1-l/1EthUaX6i+ǹ~Ӛ@e@W g{NtN,Qp%tc_Ug}K(/nMbe`MYV`kEV@'s} $ͬܖĠ 6E;MafRn,f|BZtܸLED]GS#Vt}v_跳r)L(mG0@fryA>c4 i>!3P (͝]~`p|ôK,b~# /Lb!*Expsۜ?m}APں>sbJP5(_\mj;*g[Uz@#JեѓktL_mp -uIn˹5D uAJӚF WDiHe<'ow&q߮0Rtߒr5Ĝ W-Yj 1޼>gu&quS3$x@z1 ؟?3V!Y)@i:%Ix|[#)3wv>7Djad !!|8U ז؍mf::8eϺޢ's@re /񳣷e vCHdAڙo4$&ybD}".R[3)mzZM)h,A!>C ~b|7- H8NoEr9/FHWnqZgjc<)ss#_?C?eo;_6Fzz6rmXHb,Fg7d/N4љF1ڒMmݒFn5gjP's"ޡ~,m+ܗHJJad|4(_(0NoZ t47w& ;7"7NI`pmINeȠx}#e2~@;#]Jg<3 'B )H@Kงa#vz30 :,fvRB1;u]qo\^CsDZ\S5('7w'||hGzfѺTaƻJc?#`cGOJma/~ U^Vy03J#$Pe2] AH<e'UC:QE9F; &(d$Rifg Tb_,]l%f{scЎDjF$P=Dnfa%%%қO:+;I%"]ےSJ L1C!*L] T6G?]$XA Ҷͯ39̭ńf>r.\0nb$P $^dDIe/1fǬ\Ү#n/szᡰ%>xpOrD{مz@$гW I4{NbQ[r;;UJRfة6T4־m/^[џDPKMKh6|:e^_,))®ͮGG lno7L] T:=Bzo۵W^NINj΍|Y3`뙐 _ߏ%,>>'mpbEڏu#!gy,{ps=\cosnV0@N6L3@Ո{g .bwXY $P`g^$`,E U^6 $`Zͪ"% ҄0+?Y/m+D H XFqRH Tz*}b?˸a)$*=t H XFݟeܰ@J߅$,#X͌R73`((G#lR7t9ymHKŒ=?1fxg N.lRf"@g*Y$63B.I.&Apy&s&jqduD ~{I:lbP@W]_T̅sn1[I:,.(IBnݟӌ(*Uhn좳"љs=[Mˬ3}91Â+鉥:#˕ I8ir=g\FL ZAz~gMLvO xtߜ&,VS!H:gmi9 {x=GnɦYD5tzb3  9s#N&!l+,|nv{7۟Ьv.U11=fWQ 6 &D5_n5zSeun0XgKQMЌT>(1ԣ_8k$F$.ѳsBIsk]:5zen Zψ1uqU@+ƶal6()Fm/:q=h:y>֒&.>Ǿi/Ff XAݟlXԭ'΍Nɘ3Caǃl&4XS?ot1Y'FSך4{3^>u[ Nb礍괙m,(2U +Qܞ !}ԔRCo^5%qoB\IMٸ !#'4+w mʾ.~G{"1* joaZq]pcō۹YvqY`RƊib0X IDAT"џLwډQ˜'Np]?!P'oҮ!ѤYPO~p5MOa@xĤ0͆o_b_ $CeqeZ6Ɖ\6[7+?KaB<隁<ČX"ۜ6%! ~w2ʃ_' kHMO>DtB7׆am*vl@SΉsv̭ۊl ֍b48DeH XOg0+n cHlFfe".H TWM+>0CH@CZ@H@WM;~ 3YMƈ>򬏳1 #_'}CEH ؙFf> և[Z #{@'NE|.q{pNu@J{zz«OHw;MUﳅ?"Xg;1sآ+z}NĴ { c^Ή6KpI Z(l.]gkXiҶ*SfdejBONJ Pk(KտU ҭIwBq"ao7~ ؃.6v[ , I#Ӑ!X+} ~eZʶ_\^9fd^.;iwbCʼn)@MIqF1DZREIZjp|5%Nk'p~ɒt ȺEC-̌߃sܨQP1fYA}lD*ǪR$RT*JrR;z!!T*gBP Bzk+n ڿuJ$T(%tFɊApLxBwnDV_ū@5 ҃N|`UG gҰM3]$()ۦgϻxB_-fH5ZQi" &G--MN\cuf201o 3C@bSI^}=>00sAlBfXivu5d*jOA-B`^|&3_EZfKf؈^{$tX+Pih+8uP@h `')L) 9u]Ny%)}ݕ?_~;ʻs-_w$PZf~`kkfgB` 7LVvPp L&2;zTJDm\a~̎7{F4f* ` {^@sCפ޿|=&K5[Z~0ߋ[lȚm]4p`a?m&Mm ?CAnXps=bۜe&_Wr@V֓g>DtV՚?UrR I 9,NLR*̹u㡏?xzѣ'Kd%G6}@Aݟ$͕$'(d&5a"@6$>lU!$PL"$`C8!LaU8悩H `W=#$PA0+o7oXӳCU@&yyq&]?ևG@x] $PM FH^H TSic;\EVIII&./%* @MݟwNJ>~ENNNiu֭Y&ݼ/֑p8 5k jժQƅe28wﺺ6l0溒*A!$ʕFRqC/^twwW( ~]~瞃T]: ^3ugu` $`-;}ZUW:j~KuhYS{|OР*4ݟ$j5}Z]z<ÀH/--P.C!m3L]yڒe\5g$` G_8a'#tŸט{sG9έAn„B' 7@#>xg7n,KyeCap篟[`09Ì{?]ivd0oAs0 )״7ikyxzmGz5W,\ͻꜽ\c xx3R*WI| rYO~[N:x$[4 ݇٫;NpLWſU7xHo \X;/=5*}h?~ ʹQ8;=ߣz!w8d$\Zم*I]޿L6q .]pޤIHoժO~IJ9AGL9{&ɯ:w7vm> w 8 -—3?s{+C=WwJ7G =wv[bU^l7ȃꔥj휍O`mu{ @1%%2Ln^8%pa!mGNpc4չUλڋg7y%u" Uœk˕(#_Dx=v$.=a \AJRͻjB xZ="$`&oGR`B]*Wp^iFUw{We6$ %[XHzT GŪ'% [J)P/ $*$s :w%w!Bjv*Z" ZT)D#c>#^ÜzmaRǩ#ia>mq-#G O/)3·yp)tFIY "{2[֌~*v. p*5}'Pqz8z̈x" }9G uIaәWY:M\$*IGΣ"ؖ}=S~3f%瞭ݤapJPy|\H^vpWJ1Wr(= HzEtUz{AqOuR~c?s_&?'? 2`zYAoP=_8{ΎXlJ0ar"h-0D0 *H@+TOTro>hԎv~s;J8{c T_ KÚl a8WY>jC1=g^@ǁлƍrq-L|3S[vq_7*2%X XL@ [DHѾ5Y/HIOV,{y{X_wiz3租iԣUnyٿmxOty72~;CC! BizZ'튡rƍ҃ Gz9'#T-<&|x(*qAKMfԅ\BϓY傔4OdFR=oݠ~VK'źTWM Z<6>#SR7Ϸ;)($՗ 35\߲u;3̵[K{"S?~R"X8" ΋xd>z!-Lppfħ[/Ӣ5Xx^fR&zĊ3^u\,j=;$XzMg}_Ꮣ'ɢzߟ%}芔cWoiBRW.d'g&Kh ]W[jf ]o?JK90ةso|-3YMez|$ғy7F'B"0=|N:ƒ. wC޴dSsp#C>b&!3=odf%7q;v~N܈l1pmeY?b3Aʡ'b6m"t22Ef{6uW+o(ohW{d%he&JU/2 ,{tx踑vmq7.*g@L@ F^VҴz!C#c¹gYMڳqc3/2RgK·.yrft;MX~ Iҿ]cgDŽY%Kh+B53xTk奮3<ѯsְNwt<887yc.-gF10v Y|(ʟު[/ Ď0 ع ;RyX25Fた'x]9˯ƹ"뀁~XOǰ.͘WYM'=eԃU@SU<3`s9g_-u]> 싐CƌG3ɳHuy'ê =4[SFPH3YYyW h_MuDͬC`"Nhf겚$[YL[_RyH M?`7y Gb$@ <#ְUȉV!jCHa _F7=';0ӓah:Mh=@H@= $B$@' 0W= U+$pˢ%%Ű @VO|&j04#$`3xf(Q@_h-@6#f(Q@Y_7б2y+-)§`:XY֣o>^3sPCH"`g!/?Ζ|g:}cͶ媚bH TtR1܄|Os[CBUKPZ*LC@ݟ|udŪ|xZEӿݲxY[X΂D$jʉ+ m (nCS>HhP>uMhJۨpnM*9#ai-ƟpuXbs3LW6#r b.%qE&o~PWaz8{ Ya;U{mXkưYtǾզcV.,&y酃\'n}k+)z:̴Д]l2ڢgs36%lBkcT( 3TKkݓˠC6nKKu:v&.޹7  SJ _!٭h]!џԮT3'nZ޴u)-&b ۏ,2.:6M-, Gujݳ{̊M M~A:,dr : ۼ]qfMMA [VRҙ$pcl`ƒM $R r= ٖ: vMT F϶NdD2C`ۡUbvhWS@i5u$wۑFR*zO&re.o?pDc.;D^ V./r7#!$ܰL#v\$#;p;G2)"Ǽ)#ztVÞ f/Ǩj& +vyI.lo ξOfGBFOLe6MnJNePVĭ1I?!%p:M%.">lJXFEezʸSlgaeIr<=2._T*KJB A"MXQpOε{ROeSFDp;w#ԕB~${AtLkݶ3ZDҎ&H0a8EIFo8w#;3ILFzFҌ S :?BaB`ij:qx2zDk6ꔲzp,!iH?ې?0r+%J}OJryTr0ݓv/A:vHa.!;ݸ"kSlZ)R vB{!5uL+la]$?ȴVd!b8E?l?طRMw2ؔjQR~i?J>^!qi.O\,'2&cl" ڤ)9JB_ѐBGt"l F={Jy5S,F j 1-4j 9ʕyAJlY";2ރ]uLlY>!$f1\@TRc쫴GG} s# B,uSkiRȱF@O z{,n}t#[R#yD҉?6H"1l EmhƘp}eg _$=fV3_gYN\\Ć[ͨSizfu 9ʯbstB߮m۱f叟>,.},S\ugO;D}cAe%_ڮo)g\.5]9 إ UBj6‰R4C"$PI큚5k3I4!$pE&w_+ĂH A20a6@Uڳ.$ @@U%>ʻgVyW!$4@WׅAwX@Xkp",!9dIDH^j>x 5^VO6gj9i9u%0 C@%q~NO?O*el$@j|0(֬,Qq?hʻfre Jk$N#zwz T$hD~̛p”6U5N&Qp"*k$5Jل:BHnثv"=?TN5jUNJ'2埆rC\ $PS.S;ݮ6iuNthZF͚jyIwĎua@Nݟ8r(IDATsb2>v2(|SB;k49܄-\~ 6uJV7/lm;C6$O&9QP}|XKTTWJLW^!F93GB1Ež_߂4x!v$7,*t&7le 8f=(bvҥE|M?wQ u@u"O5O0CQARʹP#x'Z{~6ohe{󸇟\fDvI*bA43S}:~ #3GSo ›ɏ̋T\SWAU?>-6g$8l~X^T}\X_xn?%_Ll,s9)AJH7k+C߼7mBJ~ {3.d:)$ڿq>4qVDH{[<=$#ve )TjT-}Ux *G@wݟ΅_`td)R2ZVF7L I/ʜk&=oğVمnR`c̜u GwX1\\Q 1V`=0st2UɒS٧k叆0 ⏨dl7M|zf#U Be$iB(~v -@,@RVA En':R4cTh -'Cf2ߟf%}@?bM$F>Üu{%n n/FwrH~Z 7ZT&b(e HL$!0ZsASWڲq݄i"Db9bj |ډƝ.` ( l!*SF4`.iPL7k"cs G>HЍ6F?珟۳m#_B\<dMRt<3PRLWjM@-@h* ! 10*2C:F?oi$k0!0BihGr0KFC`4hHh#X̊Cz`vI-d0z%8c3 ! ;v#$¾=]fң£!0C,e{p13*Rm {P%գh!0EMO GC`4cߕCHIENDB`PK !vT``word/media/image21.pngPNG  IHDRp pHYs+tIME ,2tEXtAuthorH:tEXtDescription |hardcopy|2012/11/02 14:44:50 lim_j SGA250167v tEXtCopyright:tEXtCreation time5 tEXtSoftware]p: tEXtDisclaimertEXtWarningtEXtSourcetEXtComment̖tEXtTitle' IDATx} ŕ~=76 `(I׈8@  Aߨ0jHp"It̆DM0aIL#(Sni.O:uORy/7—e-^_g#VQZRL]h,Fie!VQ(ٵU\hJRi%T2Txi,5 ( aEhɊǭ)ᔐ?{ɴLsZt>05KcG*Q6@:X,nEcV,:RPYހ%~>LP\>ʸ+Bڈa8.=zذah.j3VP: StXa?ѠLSSXE2FjFph S#sk㋛j]j@0,y*;sZ{K_:-OϞ9OsЉ6e)uOV%4ѦD|b52Mѽ0#0mC+%d4!dv0 -VOGөh*⢅R-66A($QJ[ 2EN0v@ͻ4:Ք{\5?oB=dc :zz8 bԱ@H:$Sq5 Hv]A?*BKG P[\i°DTĊ Y-dUdͨ#VD|E#io-TC[̨)mN3]rG kO-яwN['@6 i4'Gv@jTnLU.#S䤯$SQNoXC{b>u[8 @.mUcS4ȄHGf'A+M=f/ WAu~NgpS1jF=QFpb.:U#<>Sa_W3] 5ٞt3Hjg A*)t@qHIQ-X.@"6 ǴAM|?n/9/ՋA^{-O^}i-!#3DŽ^cAk!Fh"ٌ]jlz 76>cb[sIZJz :0/p5u T,+WEBё@48R+!PPL_%|@-}"ЗQשuu*af,Hq\CWt~@gq]\GMokoQy(Dy">} >M̰.II =-Z`; B׮Fw[NbQ+L dNccE\f{Esx~`)sIP+,r҄4rZ!YՎa:ut"k1:rɳii{la=K)*Q\ϖG@|{!ē_WOzɉ4~r k'EDˮ5"W?,jchdf{:w>qpm@[zE4yBGɝ}ٮ'ĕd|o$llZCXdݵfb$teV3]>6X4PdV7ls x.J :vG yyͦ4a?gMyce" .eS (3GW$T9CdG-lI3?u+njMDv>:A1%HrވuFDz[A6َbom\x #R}zE*b쇜N,~- E[42iƮHVݙʗ>4UY>*.7HyNF:{9:Π|}ɷo^-϶-Xw8'B9/0;M|̿w RTEsfm^3ͺa!؎))bog;۸yB+5`՗x5ٽe彛7FFܱy3F\.m:*r,0 V$ht36Ftpѩ5@ƚlVC]biS[~S'fʐ`w~8A.}h !a*K?[`$h#)n =^.,BF)>4lkN5G٣`]6%z$dGxF.Rբvk _\Z7]o馎f[x׿ waXc%Eˎ鳍:-pye.wK4J-qeqW%6@ʾkvǯV}fH4dyqۢ-mYSvM8R-ZE]b4x 1?DNNZhRS4kv>ƮCf#&-+eabeI-.a5v:WDGݣ/f͵)c4*iQIWm,BM "@Ik.na~&U$Bh$fDq큖k1VKq=uuYsq7*hm{9 2\r˚e7iZîoF5{F",?Ψd  _6R8;]C@os6ϵ&b.Yתj Zܴv,D|w7pkޅ\?b!$zg=}OIt#]y zwq+eqӏں8v_^ؽsؔ1o*  x%g)X[!|׿86j҉WCGn!)-Fܵ?yVr,Xs "eܞZ]{lNA?#ؼ u -60:WMk:N\e},autlY6`~zhګf犋ev {a!Tv`EK?}{ݤ3\1`ytįWLqkjamJQ:oىpiEcm . rXtASY!h¶tw.o=ŸLyhg|-T7Ј}>z p8AL3f(~TcgXVo©wz(ULD@TH |,WYia0ax2ٚ.zY\jze]ݍŹ SR}>@BfW֔:IkӉI=2z[޹~!pygu' ?}.񛑕^A+-:ډ[aYڣĉĶY8Y։lNmM_=Hȿ^Y3p+Z' ,2tT2$xu7ULl|z> XjخUKiGYwԞijr`lݳi:Z[AHghZ>tR}/؁6k[fOF dAZj*򄝻Nm7:q#nZIKNM\o>,WU}ڗ/$t47^Ql<M|jkz!$T1=\z!镧)›pObCuϰ%cIق E:@c^N7a兦aHz%܉kWմz14_@ON쿀EN/Z>pߎKΐ#Q).脆) :`LgH'pSVLDAΨlϮvsn}154.Jjv%j:Zm`^KjĆ#7@L}qD*jAT]u|a~5 edZe}ڬ7UNh^M$W\,MnO~me|׃{'IuqXg_Ymģ嚛JHL ]!9Ы8h!L<1E͕ &0")~c NR;5yڗ`پm\LS&m66~Xfc6!?k׮mmmݻw jͫLOgf̵G6MmtUmt RmBwl|=nۓx'?c:z|䟬{>qᒩ}?g݌{GW> -E}DiUW_ۓm?禜TtG~ L~ĉD_ *J% 6tDkckK_ZiP* Nğ~fQ*#n}z3-F;,TztMԕ#nE||Kc318~20S:"lu_şӆ <"$~~=֍#UQut}P|k@x߈Vn1Sϣ#F]|5i| ͈؈$^PeO rmTgDmpl/N?̄ԁΟ&S M'^kllbx}9?2v]%y9)H3"Rx㍁fg)x5-0>{C眠ڢ_]Yƣ'n}S}Q/z8dBa37>6>uμVD>{_put}p  "^yO;PD[w7vY%b{3Cv@n];>=7)tC1L4#z[1/5jajGpAO3وPKX?/_ TB&|M9 rjKLOO>cᨣA}CŌtKK}GN1(vТtMWMB4pe!㛧0$b}iQX2F}Kh`EK 6/c|PSiH*#r̫KhQ|YP9Ԁv;.v8SIqR=/~M^6c#w)ڙf}s*ʜZ]fUQKVR%kBДL4C8To^2"MOeH~kdT*&B0TvRu $| JصtkTd9 55U݋E^jW=S5s *WQk )OhiH0B :o }q9:Fܧπ/5E_UfG*w0Y{NW(Vx|Lj zk\:< 3y *t< ) @ TX{rGĀТT;wH'+؂O^) LLnLB FVu>ͺռi#MN=YhR cuD]>IM1ȴ`o;¦ѹ|+ ;(\Ń#"xSʔXOw m=]$;pҵg[U/]YMiG#ΨMf ٸeWjP(Of}s6U٣2-6(_EmskPk M&Yciw"3}hT8 ݠ660u.L+fokV02(oe xhMP50K %ޣZ͹̂z]i^tŶ d9+RZؚW5FɳFA.>ٰi~XZ`-7Lfw%( wMWRN.yvQ.v""ØЍ5`sŕ7li\HA@/.\x饗z?{z 2xW-[A@C>]p_p_~؉ /q`'iD.`խIM- @'l;Hϑ3[$YA@hX0oT{> ihn| [c xf^L0﬚~?_!|A@hT0-!zY{Lkť^ @I (Xԅ?YAjڵ _P+ȃ.]ԩf7UDZ6pc,ř\ yX{ngӧOA~+V ӧsƆ7U>2}ܵ+x1bOLz' T wys{q\իɓ& T]bDS@Mj:YA ;`1VڊȮd,^L@'8_po tN( v"C@݃»aI\œ5+*]A`'d닖 "'q_P-_ܣjpK:{V%BPX%H^,AI}8Ob  K@5xgѥkq${ue6<M "&_6ol{駛BFXsYւL:\_[wվp$U(78͋}5pѠ4@h>,P.ӟ^C%>vϔ4jݒNCʳb 2'n˼E@)Y"93Z/rzP[,b1B~)_…QB??l*eEyq6iUM^yu.OSk*ZGg>ҖڒV[jW?AAEYJ|>.5 ^r/ӟo6"\AmxAB |  YV[J\- , PboX|oA4y^zTEqR_V]K[ɨu eC@8@pnz GAV},r}sSܗh砐֩H"{Ry vA: .{+5:̥^&8o03zs!W_P._SAB[ ! yd.uR\ BO@hjj›s JCdDv4fƒj*Ji5}FQ3ԷڰE@޽{1̠+pAdDvxÛʳ4i8;Q}p!<ßӪ @I>}ҥK,YbBO zyui7,L|Όy1d cJE0, P=L o*|>os.=tHǚd|A@4qLX~0iqn*&  IqLXIq/4g}6Q)  POhc㸰)K8UʜԞ BrqO}|<{}/邀 T믝a[;_g_h  P>ܵ 怗/sȗ *IA@z _ onnOׁ\wf!総>|,t\Jz[DED$S;c:l_dm`$ P;}zگFN5k\$rN/9;UMg/Eg v-ЮʆR.?##A@F]ou9@vj,B/FZduSUp@}]v2F]FbD(;}k:Zm5mnl_2emK$'<eakMg-FmYS4i }*7ln4!JE2nZ+8.eهYgm~Z1j>kNuYٵ%:moj@ouĶM\i!_D$kv>& 3!^_zְƐc~^iMN]h!3gm5s޴Vc1Qm/gyy 2љrW-OJm췷->;?-lsN܀b(Y u-"ES4.+*2f-\mnR/L\6Uc?7#,wG>ei6d"/F6T<"v°}z*J%@ӈ&X9 O$Ơj5 éC9D&v(;gQVp_Q-ÐD6ƤnYljjC,I'/E0\c^$eDD/^uIOq;wثkY|%𘱏0&vY X2=;߿<+sM>QxkRʈ޺K\RT=8EL?7|_@vwu[|yiMyžmY}iUa8+QgˋTs=(`\g&x ˭@jY/XY/X-B,;/̐h E"www{ꩧJEIwY:u6dat-;fUꂢ3ܤ㻠k8wv6.!RaҕL#O8!2= >JUô5i9p)5e睧v8:$Us0$ Zxm!cMܦV8kO~{l8\csqO.e@W\5lM ֥6m<Iyϟ;wy\s f<b=8Ҝ5@^qb./m"r"fy;Y.)줉ew] -Q,@m# ﲞqq튈w }^moKA@f]֫NkH Pq~J 7βXAvݶA|[,p_x&COn_, fW P&+SbVZC zD<  W^-bVj ^M58#eE 3Me[VŸ 1kzRAd畠5A@Y6$GQ&UzEKJih'$ ¯%Kc|׽{>w\pAi!+-bM:Ɲ3g~q>/'tRgQPֳ;"Abb1ߕW^yaׯO>L|)A;^K/;\1o1$yApopcȑ&13Q,}E )YA@sC&޻E?L̳;X9A@pT8+:E5$k @e29}`sP #,Er}⑯qd A|8p|ƵeL^|[[[  Pxz,%QOaxзsȿ1XZ ,̀v݋|9쎎~\[Q}M6 /R Jy7@5mgA%#urZ$o#p$ 澪Vw5<^,dէH c\>ЇnFH;TK{{!jutI|67{*z*{j*!i`k׎;ܧ00tn݂j9_͐˗\_ߍ&ꈞfK%;!--I?zꩧ'|r|,ҥK]}D| :?]86Hx=d"K@ aÆ!q>;y*Ϡ7vg̘χhrFhR@46p]&ڔÏg4$ AfgIdFfq_UeÅ?T,dR]km?8SQ_ T%Zj7}t>eq_qħ/>Vhok>LtʑCdZܠQnw%sȎ$d#t;=za@}ؿ@.]\/w#O//]z;={?蝶\!C?ݻ7DMjf_0,xEw1DauxYjj20ݺl"a  s}2c+eFODȴiӖ.]L&uu護:w܆TBi.\BK$x<>cƌq! T^mX x2""Cե΂@aIA1ocNE ޷s{kl v P_qG9gܶ&28*%@9;{@і3qe@{IW4ȒQr еk׷z o\4772aykmm{ѝ>>9\dA@j=Y7|AA@Jp_ @ Pw[wUA@"JH$ 0 {{k/uz@Sb=sRy-q_; Pb@yTjXJZbNJѻ -_gs?@(#ߒN"www{ꩧJK:0`'M @' ?mݺSOeХ*L `+«iM-H}eA@J@,c|9(yAA@-@n V#7 P>Q|8eA@94{56 T̽ypK Py1S&:V!DA@=9%  Pt)Qqy TV})[p_rAU})[}^VH Py>7(UA@ƼU] *#`+TxA@,Uo)MjhB*p_eA6v/AUo)Mjϫo}( Ot);R 2歍v/AUo)Mj7͵. 74.@m W ^@e,R } T- @m W ^@e,R } T- @m W ^@eO^e,R T;maU֐ARqf-K+#G z0`D< :*"5먱wA"d}r"K! P}d[6AUs)Qd[6A%J T>y @exKi PF; PY2s]yKi @2h4g9?ۊ72"[dI{{;u裏ݻ\PRW*bG@6sMMMGqD߾}>餓Ete,R9$vA@b+ׯ_>} /8}BR@gxz.R;8KH|pTƼm-/B=}#G4T#ܧ RA@B;޻fjI611 DMAEH;1o(FbS_c,yez_! P$#}E6d#p 2>ߋ}罾 2!rA@:?ႌ w)kD{I"AN}N&n @c#pDEW~T dAܧdR B >]j%  PVd.+AF>yF[IR#d[jŞ "nE'A@Jp_{ PC+ PjlgK F@⾚nqNʄ@yT"Ҳk׮Ra]t߿ԩS;_nKa @ux`ٲݺ͞=_w'-^bjw靴,q_'@-";\=wn=*9hիɓ.\z_1 @!hmm9:jzv3C{˧/_uU>j#FU*/}+3qNRw "A(l̻Gybu}K運qGxͿgx &Q +%͉aap6bj0DFC[u >:߱|ܺ_];]j5e.]w2{5eꪽJ -Z<20:ag3SCHXƼfF#{xnk=ƼSN<.H974}ݻwӻG.ͽzo Ö\Ku@ H]1 x,RY .XOh68R%#Tb3eelz,*AuN43F2: h}˯| uVٳko 6b|rd2Sl"( InVϞ=gsXzqϞ/6ĥQ}oXzg=G9=6XVMp}cmq,K~/H{WY b'Bk1aiiزt.ؼqX6}eJocr$=]!Gs֍)US[7JE6@f8G9jFpx 񺍸9 /宿i<܃@ؘ:̗Se}7TXyjY0>?~[/OcOɠK׮叺z]cO^n䝫Z9CL5e+;Q]R5C'ٜ:ss:VH*QrOWnG2n2jC ?t]MN7L,2:Ix^k婻GdW*",O~θԚK_*\-;) j Eqߞ={g}<ָiݽo#.8p_SS =5 p!sm# /+JJDb_ಿJ?JO$g޲C-M4?,LHAc<K(iEY=gG}O$\nۨWIZ0Ǣ{}c?zY_4 :>ؿ@,>FtG¾>c55PKCS׽d ]*"5;zuC}_uyq, pS^'09+}q9ӭ˦%zEe6cYr$>x<e+nY~w323=;xZ^ןYqKŲF@ez/X/:_:cㆌ\~2ԑ=ܝ4iӦ-[|:Νkw{PPXk5p[xFJi0/CAIZzwqǛo/pO:so-Ğȭ혱myR@ZFMj#>OHx"ʌRnt{#nMׂ>s17t*' ,pQ_^[&SI`:U,fh2G1 ]O;vʌC}UڶF ϬdƠǍϝ!-Lje{PƹI3a~I__ZOuӵ%@ Dp]&DOܸ Z\]FDD p573 ̘[#&MxpPa @so4fPHWPs^B@o dS[+wx7_+quc9O֖:F7L7eF(dmmY>ٛC+3YBbfRpP1 zWiݮs筌OR F@r#, :歎K%)UƼ%QyCZWƼ!H 4,ӑE K5<)TQYA~hjjڳg^x7^zvޤ Iz%|l* (rA@YzcM0aȐ!5d{j^8sv!U4D.]tɒ%%m&w>pB{k~qyGV4D *+>s_p_I # Px}f@U_ 8/. P$`3̸a6+iK}"Kl T sϸ— UA@( 6y(.fRi+p{!q_IP# PmY1u<^/ ~IWƒA0ԩ/e"1"@!O%-(#X&kq p#@_Ե"δ-^}ԕ9}WX];}z7&>[oq_4ao @)Isܹ=z8p@=s^&Ooᓑw kOИwE`ܶDC0 h𷶶^Z쉞!{DGw;}o4+ @ pc|շ.hI$h*ĭB uz%bVG-(@qz(S=[X,Ś(S $A Pj\p7y/A37#(Y$)S A\A暡%#q=h}DfHjcqC(vf#\tcRc={ZWSsU{T"Md 6Tߜśtmnrd^.5!Q>5 oO ז= kiGM9gQ+8TbԼy틔ז-[eA\%5/܅㾞G?}Ć%(GLkQ\GӚ2*&h<$-Aw&KJ|c榦aG=oj.ӿկx /;/a1=pBusF쳿( !U/$o+peSJeleTgX66[-P.;څ oAIׁV7g(=#,@!H$WJoK7.D/mߺo_K4}J_pvoOlg޲c-~vw7̩T8]+[&^~p۶MΪ  g>nkg]QTF`Kn[u䫲lI|/u)Q-Č ) SfLzyU1ۭ>v1~cͯ\3/y+B%"\tiiA}ӈ_Y94+{F΁9':7$qV o9}1 ^}pСC9m҃8׭6hʊ3Zb1t>j~Ȥ1NFܼ~\njz5bҤ!u"syB> ɝbީo%vJ/)웭d Kb (f ӣoӟnsu!HQO<@|}T}^OWf̒^YA׶CU8;+$&2·mGI"4JD܇AnUUX0aM*ȐE S`jm \Ksl }ē4aUMGsu$G&(BA@;%;9%68/La?^"º8,#Щ1`骦5qZ"q@+QH$qxy%;8R eCm x׷Rx蠩"d"!u$\<+t_DA@|MMPD<P-Ubf @Ƃ$dTZ)sᮆA0W'b1{S}y]% @SSӞ={97x8p ڹ*u7M%6{rf{~z+m7BEqLd/)@޽{ & 2|CP;ҡVT,TK{]z- -BlI PwL>}ҥK,~ʶb:+_wuZj ixkn>|Xaknt@$)^ӊV Xf`s.)#S=Γ`L# uÚ&LuQN.~ `&fܿ!/c uL.; Pe *[ "EkX0gs\b?fEzGਣ}(q.^S0Vm. < ~.Fو&o0MjI3"@"WղAM`du0A&ED@ߔ)S|3i0NttM"L%;zD} ć1o ,=x`?rA 0.6%rA@e$>T!&¼Z[1)~\=M/^1Wߗ]EqEJ P_ؘ~י V\IMBy Sj%3i3o"TTlxf|0&gi /j"2!q<7>>j>S-f2uuNK[..G".E}tX#EWI< &>?-%AoJy.Z!/SGh.`AdnC,U+m oFNNZ;;-[,ؖpv|C 9ܗD'BGw,lER0ƣX᜷5;Yt :Avܹn_nQxN5bO)RVQ5OsQ\ ufٴl^U"jnۋ=@w{;SvC=/{x!Ih/ބ!hNQBn{ov5%HL~N9׷e-Aoj֦],n2WۙR?ti^]Ĵ?񏇝rZÏHE~g>p5{Gob :GoYbx]GAF$o ?L}cmO K+ԲrWsxO}YgC=n PbDgj.?!/Vy FjVCTd@@Ey씘P7*Nfȴ;8U /ɠה"8նZ^z?@kb6_D' eW@%dN n)`kύbX< 6ߦK?6G#s/ ߶ 鮸⋟}N.$Wx4 "'riUg+ˊ_:d!0K3H-Wi%&JXx*֝$zKnKNWUs',~㚛"/m}}{}w׮Ö@Y@'r?VTA=L/6.IENDB`PK !z**word/media/image17.pngPNG  IHDRS\i pHYs+tIME -7tEXtAuthorH:tEXtDescription |hardcopy|2012/11/02 14:31:45 lim_j SGA250167}z tEXtCopyright:tEXtCreation time5 tEXtSoftware]p: tEXtDisclaimertEXtWarningtEXtSourcetEXtComment̖tEXtTitle' IDATx |չ?>7_Z\5TU1T*jb/Uު/V$Vm{B*$"Zb? b!"oBv9ٳgnf7ϸ.3y=gf9gl~h/n?JKn1#c{;c[4jp`-?F>/Fa|smq;?Q)((,1 pgi -(V;f2bF3K Mea̷;f}d:B`„C`y _YH} 茾 B B kJKKt[d׮]'Nذ=|߼kYq>Y'7&c2H8wJ1}kA+!C,tՕal"B^8{B{:qdE!IBwJr4n9 r)CRG'MjJuZ.EN14 Ĵ75+Кv @"kãP!thSE44ڿ!)QncW(vBuR*>ŋGknZSP50"< !nȑ0?WgϞUo3kP MP_Q)pBBGL*1}Ybn6^͑*NULcZFGhvSؠ"0'd~t (K$Lw"#Ә!Y2@o r5!is6ɍH0?\7VuA'EHDh-)vb-Bm;R:ySˇ Ga#v;r[uEEf4M'LD4](D9>TW4L+`v&\Mqv{OS\CW |aE8yked 9Y8-(A:ž)A`2I(N}(0{|j?QYB-ӐUKDG&Z1 ̌g*6IupP I[ѥC$Vq"G@DvxPU`1x NhAmkd⥮x4˲K+!i(WT^rë[n61H4j߱es3JO-.Ul 3KD)4fzvNҬIW+Ywq-Z\g{ ,d۱cGъ+J6e!^d 5m}9] f\0;T1w ͼo&^!iQC0fog(R Z>PK=z>*&KQR(tx" -e[#ʍkOYHt ѱȋ&&"wS-V` ^0f< = i߲S`?|t.񈀓 3iҤE .@# Q-)LbS[ŋV`'&5Y"8 ?j#{" Qt&B=_wZ+8d}qYw1-U}DQLKl^žG/q'c((.<FjA@ʹ+ҋr%{QH`"HzHS:SRI" i_&> " Q)Af >04?El *XFVj dה|ikPbOh5( 5죂Av% Ko/ޅSZE^:YD\U״螕UƄntpUIw`&{IUƺ65=6gM=F_̪nZ|Ude2f.! ]"9ө%bfq[GO℃Z@!y<]ť\{V.ZM nNQ(ǣU\w<bsE.>qr0hQ.D:DO E跸c:Jhru5}t~Uh'w8}fc@9ye6؇@TşܙmZIx^eC4Py?/Ũ҅-g?[@9iL/ݸpɄ΍L ]87ܜVMW$QVVi$_Q;ʗxfi%NpeZe#0 HMv|]:tZR.XW| H'kR;^0Wˋ7G?B i'X&$po O <hy&cl30ԼyψfK0j0/{ fL/>%E w9TG <}q脄øjrObl % lP$.p` :Ie5AH0Of5CǀאX|F{xE9Hi*gS]E-Î $% d_⚮Ƌ| A{h>(6%C@rcWB=_6N 0)x'O>>>+Ejk=1(? 7\ϟqnk `$`<`LPOnixqyUΦLPOď)ilk+@LbhOjKoˁg2O{aׄ !r"l١`=D4m{p2>;uc`92[sfǑϛ7M;l 4(wQO;#MqYnE_Rn?xd.TS"$%6r (Mم8I3 ȍʹcQ]tբ$D&yzd;kx|PyW]w`0èj;Uu&,wu Caa8ڶ1r9|5 /@hI&xtxP֫x :~d",\Yb=(*!-q08'Y\߿HTf{%(նPT4I8%(\4.o T\ (VNyTpb}1FD\ pPNjʻue,^0` {5v=4/]OYw&l-ZS$L\v'c_06qnU6XEZ*cNn+#{E6Y5z&ɣCxXdL!4>Xx\W5/599-x p6b룉5я.iKe#(/^p=+wE3~ݣMdf;CqA~yR0SaD*/pNXrRߐAaKw<>:8|;RQ^: W+`cm?asgG}4h m3c`6;ZJujL2E5m١PL&ist^{fәoa"+1/c%?|;rK<=ᘽGG2w/+$"akk%BxwlN1{hEʊ #"1*R YSC9M4 )v0Y~"xHiNs._tEӟ<:uErݯ |[l -~3De `GP 9,"@ [[gc{/izw8YB{].QSz=$d;^,xѱE7]Qo(JU(!^"!`Dt'qD-~ yu`G(EkD+a*(t6C򗴊#b;s`x-.,,cwߝFQA·B(qHDH}r~:Rz{RJ_*ۦ[0@?DJ{߇}a+S\WuKrbI9ć1(b}Q#bb\/DHIJQ_|/д E M I'<{sp_?]Rtdk3(9MDkD dg.ᛓN r<1x+, kȼ{0)0:.MӬž+[H!Z q:+E\}Gb3+n}jrȕu: RӁ~bI{{`wRSz{Pfsj݋R)Z`%[fP V.;5\|'L\ ) .yQcw^˽nMS[p/uK\(!#,W^%D *!,Z)`@Nõ*> ʋb'(3H l/R1Ap8LjtM1E_f^!Ó]5/Qi2Jh9XZ*gd_hh]:YD]p3tq" >b* 7^ 4Z oPs=v's&h6'GP4TӚvOqjjQ"#ShY[H|_.+<0ED\Fӱ~, z|Er|Nj7krTnHNgo},@(Dڞ#Sʹ 5XL%.)R$R f |-g *9+Dvڄ[kj|ֲlnL)8DkZNʊ )0"DNIkrp: hؔ˥8 hb \1)EՠH$B;o"&Zg`WY;TݥN]I=,=V9əBd%% S%,3*F22?ܑ.MetP"+6EJ2E *%l ~ Z8C;r5N ̑!Kq+if'6D+ C4CZ$I > R*@rC_vL8#r(H9 7s z1R4#QBLħtef&3M2v"0Ը*Aeìq7+n x 1vЋ;d<<4|cg~\\ İ+3߮/hZX-iO$>#ϐq/` *"6!G "ؔx餃r('8=ޗ䮒N$RW)X+* `w8nr^YFc/fGlB c|(ʙgF77DĂ}1iۗTRIF/`~g9bZ'qYypB0' Tux=, bJ,̒@"g}3b˄kB"MJX.!@!@tW\qŭj'曜c0ev3: LrI!@!6gg7Fa6:IB B r6LD|P@6C&"gS B B0"VZ_'>!@!@)Sc,6B B jpG':~P:@!V mt_M^>K=zt?qDD8Gh~'a:O!xu>F@O KjX,v=Zj8Fj: V_ϭ*-W^)7Hkz}[ۤͶm[# 0H 2BYѸSlkSjK'~{ְbxWk=aYln)9$ 3f \me ҁaX8Gĩ jO(L>ԙm>Fd ,\X.ڶzXBsL 85}GYf+9;Wh l]8oy/Z [WR4e ֭h3_cME}l*;jcẶ+XvȱWۺc-ړemjLB̤+ad;#ղ4Ḡ`~m}n\hc/-?!?eb8Я[7}R۝Xqj$=L9.@f (y2ƅl,;@R&c۷M WrXT[8#j6D8;yZ%'j6R#h\LB{F }e[[e1Km1t칆-Np]dMM)<;`diL1?x$Iӻm*cޫ M{lvIjf/}s|۪Vs޽_V7ox)Q@Τ6^m}>MVS=6!̙)d8_o5u|5xW]T;r'T@45CwXkjZlu$iVqg0a{\;"JZ!y)Kl"w7oF_1Zal~㭺DR7>υrc]@#L-w9 榗2|ŀ"lqeF\BJX²fz!A=Эr3Vd"`~i>( У)&dZlY(hռ Ɯj>~Q?X,P5F )yB!hԙP.@`Cr[_^xr`z`) !!]'b:u [WgMs {3{^lIҊ 5F|ڮ͔G,$aC\lq:6ӱ `x$n*bx.Th H."BQKea0t P{K7Ï )M!dӢ@L I3{ D\ΛW\9y%d~yz+<`X& Z6͑:ԜeObM/6BIָ5FM)FhM)/|?8E={G1CS<)2_ ÚWtĉ0C1dݻq׮_YvA9ˀ;B M<^Bqj%*$ޘ4so ggϞ裏&pH{):nG~Fa8ε&y&B ?% c)uBiSƉS '|=>HXńD|!@F Y?GϙLOƉclw8-̒;vG'O@uv֭4B>;~:svp&/@ {]o9iQ4jDۍO#yGpæ?/_{-Q? M*%BQK'~c{0f\0ŽduG_5Vsy%A._9BS"̹߆A'B˛n;\oufD]J"W$m*G3cRN.ozwrYE"">W~FAQYN  Bs菺{}Cg.}ۤ"`RL@ BMzđG@y s B h:nV7'FֵiC0a+m$m)2N!HXNIL떷X6Hk[YxFS+&fjqpxB B 'Hx iuk\316±xjhOԙ5V7œ<끹EN!@xE@Z/uXmqz s53 *XYR#^'I0[gNzdeL)jn#YqqMt.7kJФ4VQ͝}9ڂBht} ,!>痡[śo׿[Z%)%l,'Y7W \3Xd 5)bwg-l԰f՗W5'a7wt'AsI85yc0r|UimᒨK@@U) >sMuW)LGbȇ-[ ,w]gRp!ri#Hh2?8 оK_R-vm k,M څ|6b$̅! .fgS",>0.bC3M Y)Ź^>N5UrSpn㎖`"и g~`TA@Ko϶}ƼӫDeˡo`[4 xZ{nYe[(|Z."^ApUCCiSs2}jd alXb#И Z.us(p_ޯ{MK82WI.$}wh:8ۭ>A:ֳk] 4(@?4"^ȁ`#k! OľWǜ1: C#dn&:l^Cg5-t*@Zk87[Jkj ~c.p P;D;Wc[|AZ֐{_2o|8JQtn閊aY4eR9}:xBFN7Ь^6ρO G,nS"QW:8>(U ,-ź tܮby]k!t RD~ZMYBɧYˬy guHƤ\(G>lNVTq >L0ރذaZx|QXkHNE@R6flkfFp.'U၃t4WVBaKU-gKAyޗӧO>|8tsŋ7?t`P̫fj;LmZ|~&i&gQ_۷;7~Syŝcܾ4`00yo7ol~~+Mϼvgi!S?f ]4~ mc% <dφ{e e%W dUDpYÛ\R:hٮW d6])ZF)ǵf#v8h ^5~Uu5 F>oJcF+om4n}xc 2~ rAՌt}4|NؽiWKˮH(=Y恬bX>ć?Pt)I"YD8c+͖Cb>4!_2B8ӷoug]-ճ&_.Io)P[vx:~W~-7]=?)1G~2$3V<۞整:=YwwjSջ'??GV!3yXh5_ĉ" н{5u#}vdpzY!w}tthqN(!0{G}TU((({On D p4ݫCdG #_<!@9@Ƣ@"1`~ KYF ,BwY !!@@ExAh_vؿ!@!AѾB*E0ۥK6Ǚ_A! UE:&ffrB!I((*t?;|zѭ{.E\n$:OiJq e&d&@>J!0  ̥ h_ɒfMSodR+C?Ӂ@:,<Uqt=} &L(.&@g8t *Y |ܐ ?~5Ԏ~sjY_~Q=?3w\ simW|eX`M3T7Wh`dViz׶AS3z)Jn2_uuuNћ=!}sIQU~׬[?_w3] IXWGnNpvB̟ g֨?>^!gcjpCR4EL7Mg*kkZfƀ 4AX\[>؊ӶmTkgqmAj5MttSB B Dx}|>rf,NS&y F7g5E4rT@!@@N c{:L+f5%S2g%}ZkK3N% uIF!@@ Kk9PeC؜,*S~Tmڑ%%.fk<\ՀU&ʫiO_zX^zN=ynWm#B7}+̅ 0JȖum~LBkMV$$us=B !@!$;tìu4ڞMTT {.b~ѠEFͅ@'G@<5rdmo" b|G|b䕵G~$#8K$H->ܓ{B@GӨZ՜d~"#|(4mZq~(wZ4YZmόţTRkN]^RT0P1q-iB h/h :'g{@*j煱@vh _1b˓?kދDXg#d/M_^[C=ۍm6o6aS:qRgd@'Oi#_37xn}FI{A/hg<~sջc~#j$0>*wIziitYc[\՗~7KR;*tgzMޮWyѫ?>U? (T^n~Ϫb !{Ew/_F]/N"e;JCB !]2?/;=6g )۟}nƋ\^e_a?Y>ɩ/g=׬ZDqPc[ IDATbZ21ߕ?k%\…'ZEkg<O.W_zWWLa]~8wtKZnЮi7E>>ҟ]tekU/ބNbՓmCTX 2yA2 rN`~bϷl+&ş#xjޏK;`W?6eCz-CCkЪw׊UZ[m7e6SV_O t~/їl'|k69g<۳_u=뿎g2_In1|~o;[[u?U1,,`\T1xq}ۖt}u& @u6z+ݩc~Aʰ-r1n }ɽz_~+0+oc)VKg Jq/M5N▙;.{Ɲܳ/0Zyau5?=XZ=xyfH3$_ƎE05#7t!!ij ״̍!e3WWxtO J9۶T }޽ߛܰE0Häa)gLxnZ]qKb `&L;C?7c)KZb< 2B:`_x>/}}1)lp݈K.d;/3aBؿ?6;Loሧm.3^ac֩0%!@d4~U˜#,$To/佇~~mEW7;늖6e,|b~hTppK"K޶+Jm.W|ׯp\ͭ=xpxa<){/A߻񁧌^vF3Rc~7O?La2 OE&|GY~I.8^6kE=$C BH掏[l(bǣ~ʫ7Uc6fEo c'0{dOC) 7lפ §qW+mdScc4_G6=7>sF }{ y=qBYa{_?F^'Wxh7W4k'gG5 嵨h`%!@d~Acmt$ʘ=_ˁ?늿 KmP2zVxjh;qu$a斷'2Cߟ2MAوa$A]v~B] @! .eY*F5ir5/J!@@"̯h_QQӧ;[dspw@ SW%!@;P $Հ9|=u&䕛5g7"lIʢ[rE@=XpdNB@<ݮ{=SH$;s6_)tfWޘW֜БL`"T C95`ޡy35Q!~Ռ_<$fD<)/2/lu' B WzWPޡ߰#X @/W2sqnۺ5%㥥)ʹ|'LC`u%%%A!l݀ه<@@ !,vL]QkpNaa!P=M r"9~={g,# ʡ'$ b. pСl>#̯woυ .FHmN:bAB:"geOd8HtT`{k`}ud(RySDfZl*qndIM3-neU7<,JϴW(;^ǑA '}'N87AAPf1r40?)@ׅoݻw]\pO`QYA G3+W9Y$ɘ\KXiidxTZN*eucr^ܬ |#s}ہ>䓗^z) qR !@Fk`Om*yg/o_I ~mu3x􎔃f%©! h_E8h߆ V:L[ߺkY# \ON2(dԸd"4GZSZ!R K,Sk^}NYco?_ ;|M; ]'A@p!_1 &V"ЅArl4լrn00ڷgϞU~=\{uiA# `X! 6U){uٯEun٩"ʱϻ[kp)^5.cp6/ LUl"?,k{vZ]I&-ZV{b.x!E Tdʆ`X/4_[ hY8*v 3$$ro>V7|VQ2BZkNy명Ww ':e׍NM7ޜ𵴘rC,qKzKm ?wEmvaUpϗnqUſ9拝M#=xU?nZ? 2ՏB܈u"d&l2]Ƿeg)W Ŝ|Fd;,8J'*'eHb֋ٝ@^nP@;bq_|;:J`NE0W;|$;[[PXf!;Owc~}H<J77M>klZ47 |~>)E0 },}=E0];#=e(պC)\iJ ŷp-aSq!MO0 o?fI؇} Q?G9y@{n6_yz쁻n+a_bGĎ~;-vO r7ze_lֲӽMËH6uABNZT63Ml qA<>1-S#nbʕ'\9,ijpABrE`-DZ=+L1n6O7Ev5Ri5Yic(%;cQj2d/۷%03 \`Y?wK x!sN@.&!es{o;W>Ƒc-ƩCc`ݙlZ<7V֦k7x(,83wM+<r[H6ť{ɻYgL\ƿ {Єf9FٛKl!>K{Ӽc 5%ٿG%)R'Mdm0d/#.!%Db"`Pq-9;퓻l{~E ,Y8~x=uÓV7fXCS[V.6s ;tUK;.ߟlYƞOoxa*6݆D3g;5Vi0hty0͒ʦadkHB C4 U>8kz]E򈿈@&+"^SLٳK]$X)~}dbG^`T2V/`__o? ZQts60s9F 5m@/۹s'7pC>}pn\=Sm*#~0=d|'[DT>vΧm{S蟪~%G ޣN]򩊖p!#/AD+cm|1St) 6 L0}Sd2?s/REE<vyiivͰqbQM_!D@wօG|OysSl!i9bPں ڊYf!5.\FBQ [L<ҥ{YLf9;B@ jׯ_n7MeeeIT[Z CL[i9<7_k`Pu"o5N;ɩd lD~|# `N,FBw -* R'eR'"ٔr[KǻZ:;YA\\:J^xhw!`t1KE!E O!Tĉ-Z$Q([U^s~c#K71׶%N*!T 4&[$'+uݫx vRRv-U8 3_ZMiq2Ęŷ(E ,qqa$! jos~IbBlrv[Ӕ%U3ބMUS rzZ! E^g9Z^bSTN޹3ۉʈ-(#E$..O2{{)+毱EHBBe4d/Lߤּ+x`2 ЬSʽG!E|RLI!E5̯Rl!@(\yK !6E(x6ۏŀ͘1!B ={J#9d$԰ե4E@Z!@@JK .R&B B 0>'S!@~G B 4C G: > ]& !i=ڥKh4zo]v-***,,oC[^X<VtDfP[[Ȓ%U$!\~䱜uY>N Oyg :`߀$g =}w.ylu ]P@ B †_knn!E!@U IDAT!O~Q~Hٹs+ߟz<0; )FxI֠4$0AJ18e Ȱ8FМo( B B fmox=zK/{4BjiǞolnYn*Xl>o\  ј9a4o.]J-e iC!йP_}wm-[ong㪍ېƒɌ1[۶FsM onA_Uc:z!@!@t<|Xm""}8qE>k6rj37,Ѱ_:!@!uj3ɫfE &M:ssX^pMQi>W,H('wXWJ]S!!@!@@x|-$}4Eev,IU=rog}8ĕ ^۰3pM/W>»_[ZSL'6+ң~ΨQ !@$Eѣ]t)((Fֵkעœ'M pС$ŽzJI_VGk]l))&dIҬ9Y!9"pYgY^[?;Uy z?e3a|qPaǀd^1w_g3S@!klӃo ˡF 6T}0T0TMdHy_}߾}/KJ-je'l' K5/!@d+$!<KxWF*2c=$Ŏ82 6&`+g?NXSbkg$[a~yEA@2-YN 94`BOޱ^L:Tnp|gh+DjP`aӜmUr),T7͗cܲ`rܨeslzf^[Z* 2ѣGtRPPFOk׮EEE⪑z8tPJA¿ES V3fmk3*֖R Yg>qW.R ƀU9SY?%(%$PkԞ8fC!ު9;= 1A.ڗsIQKk MzVRG))'"9:!@3Dus'7yY ӧĉ-Z駟&AxBX ˪.αb ɐ`iOfQ7djh !@dAfER¾ &M:s&{\7f| jfͨH\R 9a ˛W%ug00_Ɩ /7Z%{ZhIv LG] b1tan)t}VTMuFB o߾}˗/?~_1vV ~[kGXڀQq#``c\_!^}#W]]q Ա%b ;X!| {x1M::r!דE#"G2 5{79?u3XﳨI;/ߚa'#AWQFO!@y?&ιr~ 8=b޽ӳA$A@h/ؒMS/18sggHr$E+A|n"y ͛(B Bc>핿;6$N>@!@d p'Sn.!zNt~fFY@'B_'jIr(LB D_n@qUyZjIvDVc!0gi:efg0j8hwBB6bAGؖ& L cK؎Hp΢$lc< KェqWwUU` :0JaPe_F3!`7(0qET P2pcG  @o]}MPS?m+ 54|U$ "*(1Z_ G #hwR1#=8G޷&Ez7ҋWX}}ģ}9sb4l'{6m'dI]Htw"(=!AZ`7ZW‘8{1S{_at͢ȞA-w8t }7qܹ zxYeUVVrIW!\V֯iwرǏu]i{F:5f(%Gٳg ? {lȥ~*0&P+f͢km3oH B Q}(9dRf{<[|^{AUmCbvbNeeFyK@&\.V,9`eKk|}6;,6u>ZL {(>LwfՊ͛7o>xZD^؏5v" p\.'"{zlVټapA^ &|qNt %qӉ\YB4ջv۷>}:?4{KFLo{7.Dj0 bR)O~Ȼl"/୼*|I4!%gE@8Zy^ѝw_$)tMlBg7j߸5P `etk̞u @@ v%xa܆TUKqjڰá+ ĕ{wߟ9ׅ ʏc׏CH`Μ7^ ;C|KaBC\PCiG=r1쀀;^Wٳk޿ͭvj[X># Ppr?wXkOY]>PPO?'94eB+ͧWaB_ Pp)AuBiY#n(P.zGH,olMއc78k/]قH@#jÍ&G{uF"ݩm'w6_tJztf$,+ɾ-x>:mZie@1 jVL7>Ô8^cϝ;+z[x5omlvHZhkksb1Y'?'w퉾XYJR_F|w7sGSӾYY6=*WbBI6-LI?t*6v'Jْ̛AmBW1iBSC8?&B3v?jO|uvzS;vwuWJR]Ƕ֦+|%K2HF ZʖHlh?咡^N 'y,0.tw[v6Tldәa 1 yP3Pi&vu{-M5&I_{~TL0~=%gϞ:䶜VtH9KVRD}Q. JFyy赏P}ѩ:2/cJ ~3MrZI2CRF H|JS}P  JjTTTMOO_[eee8.//}CgZ䤻RTW;N*Rw ”g˗F;Yn٦Um͊h۽SjV';J_ؔZK%`Sre_׸]cI4[ǾCl: fM5j`2u%Hm)RRVj4tMa+ݑ(YW#t==-)J:`ʄylq3ٳYmOL.#̈́xxGlڊeW%&vwK}iRRMʹ0m<&FZ:Ye5Eqvbl?yF}w0%;>&Ely7-``Yfѵ6ڙ7R~fI9Wrn~:?1면߼yV^ώYF_R[cR5H&]ŠU+f[-6unD$GHJYBӒB5pӴEz;yj5+J&$CdGn{7e=O67J[yzmi'x:;{%V*ݹ{D4bujU3rT6WZGڴFYD>HЂGR$pFo&e5+7Ex(%BW>fXpGbteoTH:N VW2R$A$*4W2 dy{{O:cǎuXUo~uR>4K0.f3cߦJ:d$*UW<]}17Y_3)FS mW U!u!2]*ϝ ls'ʰUzrhk<Ϗ<ueajvw  A"@ߧj8c^e?y/~%`:.V)7S !؝@Y헚ZkBH61tmlp)qǜ⃡mjz~f9?%tVj5VUTP㪺:IܶW}kJ9'Wd:R֝e]8tÁpN7v}0&醏-cYt}@f @@HTA.;`~}s@SOf*k|Ȏ򣴆բJr7tYv}tQz&?KϙqtPIFYB` tzHs3 IDATda!"'TI`1dq ?(y*,ON>$MIE Z&ڄeEmJ>YCS F٣ozF )G9WԿQ62@],`i:Jvo'ް#)6P! Ց_ (c, t @/_>88Fϟo˂ A Xp{]=kuyښFQidh4"訛ؽSj&(EԜ%pKâ泻XW"%YHG?{*{5)ԤCRQVfݑ{V ^>{lS7/(x0@̚5uL#-gF$He2s]vO>>- Քv_(폍׊n6Rf}V;w2'{#,~ "((܅-g x:GN:cǎuԤH-i%m11Kݴ͙2ͳ|?#I-j߸rw9MZLw0Y[Qk|,.na1J-VMr˅sfuDW E&0}";{uL NĉCCCk֬qyަzF=y◤_l'ҏǹKNRyse7@cl[y`a2!]+hgo7w"&h&fC1Z3\ߪZ)f~Co ۑ@:|iMbV|HD{nވPogڜ F5ݩ]A[!ZOWTiz~^~xW.^#|4+ L* H/) 8~*b7%8?? |0%g"{{@x7<ֈ:/?i'P@rB@M@6%sꯌn=4X%  Wx_^¸su 5}C`Oh+ W<92Xj{#.XqxmL5%c69FewY6^ZSi+d|*2WƐ ܝ@`7XhWV[3煗:s] iґp3?xƽ?5J"ДۓFt}dv1.GMyӮYҍPS&bG[XزYo(+.q93*fp+++[%gϝ7&l) OT|oMK4JB2̎b=nD}:$e$6/>Iic$kr7kcRKa"R* Jb n{LVa'~PFF-p_z T:T\<.)O)ո ёWirMc/Fo>@ (? FL${G{Ł6Ǜb9׼qsQVQJ-|oy<]q܂k~󥋗)R[7/fuw=+,I/LlM& v,=1$<;׿C|i}[6n{40һtBKfXJh;όѱ 班ٗL=~dtOd֋*P8 ]ϝ; M!_=/P/ߢyު3lY^LPKAʔ!e-} w[%-g3)Ǘ^!$#Z3䆤Z&5 )DsRK&Rn1ѧy=$)g`b|Kqg\Ym%1c[8d2"<0[w:xq࡞YSO Qq@[ oM #PXQ w߱cvuɴ1$+ u6Ǧ%0ۚUMfUc|蓧24HXoߒ;._Ʋx>}&aJϮ3o{ԓp_z˼rA.\o|$~BXʍ&)_fˌv<1ִʎ8`¦#͚ ;=)KiNWa5CKJNgfS88k,.hkMʎD6iI7e:FD-Ed-byX%ycxgDӞ&Fz.A6q7xE鿋/ΞUu粅!}!)AK*–ʏ%TaoV6&vR{iQP'Wْ,Q'g|WlC,wSڱ$_5eDŽ{v/6s016jC>%{:OnkPJ$qhm9irYiA2#`Eܶ7oի~zk/pֵG&Fz|Lź @tU[Hhog?xhTԇbB*Ho'7Jn}j7D{ip*gw`d&T03X}? p|yg&'<%~i]ar-l1}_9@e߸͇-99{ghb҃;1n<(f v,=14Dj]n1tR>|AI^Ou)mԦh~+ W.mtɌico6IJ6K.tg<؋oԔ/ i!SEE-JVYYIO///T}9IW6]VmٲE{Q7M}ln߾}ݺud??>ԘnEG뢻1aGkjw}h~%L[RmRN0}r=.o3+{}_ظiW\j\to|7nMO>yyj\Hk_ Y=g),6tVŔz.oo3J@Gu_* ;CRxgguv5̚5k&ߨ g2ߎ@Y}cކ ,S ӡSNر$K53{g<’XS*V 4nitGHg`'-i֭lZ{zƮ<)uuF]3LKM|%]߿x9[I1D9bmy*\&F_ [w#}8   ^$ǴTX=,oۤ6+edVD6[K4Ώ.^K5K"C,ܺyjH|ه](UU~xܹseޣ/fu꾃RQ=X

eM}FWcl)>s1!C  >']G`/_>88k#%҃|Fme Ñz U%S<-mm͡VKXaJHhr6LUHvM9oA~d3E2Kݲ@T|Qoӟ97oի}q;1Ú K9qhTRru]mH6ܛiYvq>W]mruu-Y&@|PN&0U98]!1  >"͝;wڵkjjL֭lĆF(grP_TYie(W9:gLB"0V̅|:{l}(.Z^QQQVV6==}op;4E}rrUzWN:cǎu֙> kCt,&&/Zx'IJ$ƥVC+m릕zReK#- KRLS枑qUYGծ&댦-߹{ J1Ӹn=@1 ̚5uL#-WQ)j$Qrn}l'{5k±PykV2!cې$O|} ~|G_5RO+ 5󾵥ʬ+k.b惉h?_DH[Ԣ.ܮmI^`ܪ"EZ8].94E9@ėNVrG9:?M/W#EPwu^[[W3fVKIO>>MAm] &Snކjz,> 瓁  C ?*ŋS2<ЃG @yt`o xWE"R˖ ڃx<)QU~%: 9[;+s0 Cc__[9Vt#7ΙټUƓ[wxM֯_#* @ױ'NsMs}H*;-AN̤9!;}{c oT;vخ]>':c=ʌD_ho*arUθ9>6KL:;k&:T['$𔒦CvޒUF5nS>io'36v,*y\cO:L V_] 󮅷yxKKvmiCϽڥOmp/cK--J!+a[\BF-28+tHv0uR*kvj#ā(a RΖ22Nb01nVMoVfƝ«䝳BMnΏ͛7o>xZ^؏5v$9<"L;6qhTU%S!zkKR{#CrVh!2М7Uh[%T"c)DvdmG+Red*$68zJ񒄴ǟ,l1'5t;kn K&GJ%wOuc˕Vw?Bsxlb+?xZ¹s]vONCne -3B3kY&ė ՘)::TO5Rq &jM_`w%@Cp6;?ڼգTkﺃHҒ揾33I_ܪ̸ZN8;EqI?ѻb۾\64(ľDOF|Jɿd+׮q@<=KtO:EIԤMɱPs2l)cHղYbeXnac\ /dT(9cf̴Y/ܿ־4ok0Z(L^Sm]l<&d|yr ,={VkYe~;] bEw?\ʣwcQAby*i_|++;EOn7 I%!/#*i\~Em].ƎN,"@)TP~|˞oD|}O]F%g{na5G7/VTT#F*++pyy9oGJ`rrUhծk+{Z뱇֬Y`f|#B݂8*g "mm69?jPs.96ic%Mi!FV ܱbX $e@6+\&8<}Eude_ IDATg gϞ-ůhcG 4G./{dk qK3ڈd͵S?8_ڇs7F*S8qߊE+m2n)U r.Z}j$%Keج9 i ]h|#GZ1 U$ٗsoΏ&|m3)W>,97ͤv6;k\%d-$lH*;l77$WGPؾܡ6] Do гC(~Uw\i$X&2YYvŕZ$cLƫ!hH)dgr6[k?zumm9nEc@IZk0kdUutJFiP1xxΡg'*cǎڵɓiNo[e"BR:j廴YNf MɮI;0*G[)$h>$;@ W p5m gqN7oի~zku$G "M &K&Jm]"wXFz]tU4ڰi>7+=:1:]ͫiKMBHo5}HnNwpE.\ōv(i B"teA cV~'gڵ&q֭lĆF(grP_˧Imڥz}.9VZGPYY45%d}~yrTF:VG P겱D\bҪ=QG\hхA W<=KA:ujǎ֭3} K6K= io`e ܉ӵ+6l願!5uLm,L5-tbuG]iw("7===55E?Wۮmt@kɔ('b~MvG*#=/DIq[zP+#>}$.\Az/} B:u/J@ O<;qК5kϟo?-oh5vt=C!&!qS֭ۧjP'{#̄bWl_)Ӿ>២ò6iI}^,H]xC3އz5W }%d@Z 'n_[֡&Bf>P;}4&-ZD .Пx^cz#0] D5`ٛ&'']9V]]iMO꫱G˅u~@[tWվ!ROaScP[i5]Y\'mtգvR|(V=q|N{iSo\WME,C:gԚz _k e&}c$QeT~z֬YW]uՌ3*++IFn%RB/%疒w_mmŋwmH#tޕ ]o?ܴhjjJFlD_ yV^1~~_BZOT'*hşZM6m_yh\3`<H %0*Bхʍm6}6m;i HO=9G"P)Hup̙tY\l3|g>6C'f{}<~%Vf4$$%s^9P("P>K KahG$D}?sh'-qT%'I=Ď)ua@Gx{yj^zco}Lstԥ6K>X}Gf̥lRۧĜ6<9^"Ŏ](^:BYJc7BO Ow HgC~zvw[?@z_o$27%!&<&P{$hCcnfX0ٷe>Ýp @^p% T_ypA,TPzau/?A@@@|ZGDm[pJ@fP~N١GSP~NIU'|F@V‡    #P~>,    ./ |    "}yჷ    jv@@@@|E@U~Pj,!@Rhu~nȡ.*T1a ˓ Ζ9p{Av9:;Wr޽A&@WI- @^/hu~'blP@@@BdP~y_~;jOm;    >"KAh* > |    ~!}/_~;F j&|qo ,TPeVa׿ A@@@i>uW@1( &b;Î `G#PH[_!9T/Հ3DŽR Ui B p3:(jnܢC<TΣ70atk .^c    kP~>8   .@    kP~>8   .@    kP~>8   .@    kP~>8   .@    kP~>8   .@    kP~>8   .@    kP~>8   .@    kP~>8   .@    ka_{F`rr2`!ْ?  P`n/h{1:4=lN{&@WI- @/hu16    &    `N  @@@@@(0@@@sB u@@@@ti?Q    V! @~8$ @~8$ @~8$8j    3\p9? !T _ @u78' ~P~Ή&ɀEpGgK2@ UWWg!_09s ,z]%qxx| aؠ*΃ P~.`*΃ P~.`*΃ P~.`*΃ P~.`*΃ P~.`*@HٴCe'dK/[h   ~!@@@@ 4뫶B/h   $a    ( r؂dPCC\9'%Ha@X^Ъ3v/cth{ٜʹ=L8[<<>p @_\    ~#oA@@@@$ E(   N@ަ >cVԁ!~3K*?*E A@@@ ~7uLA@@@@@h*yO+ 2%T~% a@+?Jf(@HC     8)OuQKy(48@@@K@ܺ2zțN TD"p'JJ B`oJ <"wQs@ %^q ,.W%w^N1WKuA@@@ 0H˩O<2V|Y|E:{6eb)r.Kp?^^E̩MW&.^ip@@@@@"-GΜN KU ou'NY][oO {[oTiR}aVNxC=֍3οuާqmro?0T)?{uT@@@@|JmoI.\pj`iip&'Ii_ @gK p{ANWsNxhBҥ.]<ƽt"Kk@ 9H8[8p@H O4!ԤT.t1|ΟO.죂l    $@Zs4)+K'Q m ^9XIDATHr!pp7'Qtq/TA@@@@HmL)ʏ <)$z ? pd_(TVVF?    $ئxR(,eIH$p΀ WI핕c9?WJ*?!)<'\}TB2?LA@@E@7˵f7X"(?    P*loQ/6`OhքcR;wx$7Bk@@@J=4`LbbC    KIiHɳ)  (/u~{Yx   ufGnwxP9 @@@@7+LBa^z[8`?*)+ XJgK^8@! UWWu<ϛ`>* UUV&ن''5m@ҫ<웝Mқ=氿&afi\   VLUΨTwj)7X8*    '-"_Ϥ%N(x@WTV|}P^,Í`(@@@Z[['''3舭󣭢|| ?n(/@ θ- U}X kݽC(?(pɟ?   & t1}TH>z r(gN":p8   %G4+ӤxOwxg7'B /AίN    #٧}X \bi>; @I[6HUT$L R,B!kߒ`A@@@ 1-=OD S~> ]=:&?1غu~/ѡna6>#d88d?BiZP~uvz|1p@@ W6or̙_\,'Nرڸa' GY92'~jP~xx   %S'O~sΜ9ϟҔG_{֭![Q( 93tGU˗/ӗ rf؆(r![QyQ6E^gz   P"Gu9m89v1/0A @IK|G0F۫{Q/ۛ#*dPQ録2!%IgZ%   $(=+=P{jjb{syZEgiQZ8L3'lH3CasF碦s C  '/O헫nؖ:mC~yU|ozptv"'7K{w2ՎnXkط #Ohϣ@@I&}QG|k?~0|SCKN*/j7G&52%FC>eCoߩ4] 0+O4e8y܇đIxs>nv`~C9j>]9s@&vx~q3SH?qO/-'k|lNuƠͷ/=˨ e\-ԊRrE#)hy9,%RB XDyExrڐ2OuI @@Oʕ+of.#Ɖ%7RjMC'ƄaDcl;?)r"=O>pG^>\nʁQ SȪ~"D ~G>)FݪF@7zK6'*ʚO鳇iBmiKgZ N6GǾgk[wLiqG@N éO5i%BMCoK;LP  P!3Ac=JTk̴PT}߿o.Gũ  ! M B(:6ۘM Emn!J߻ !O zP~a@PTTT>}zǏFL ,(.pۏP~ZE'J#=X TQp@@!0w{o]]]6vvrr"\BVd|Tn?BlF 6mwZ.5J<V d+2>*eOb|4p@@ 'lDRN{B%!瘼lQW8,̡70    oZ'nAA0>^ t     PP~.@@@@<1 p@@@ @ʯx'N@Outm{t    sK.5}Z S~eee6ԉ=`YB0flb,1Z@ @ sEw/:i/ U|{yT@F1%:g{-[F;tGENd`!W׵qT툏⢠k9k-G_"' ɬJh匍MQ_v' V^wg_zhj܈TWE'zX-יRXcׅLWvw~{SO:op@bW5i1pj}/p BɕAn_RaIC'+?]q骡AhMzdydJTQhOPĮ!'D6H-Yk!G8={f"l /WᅰZ/a_^P-VuMw2VЖdhs 7VQPƪmeC\TTO6ݎzqGmAY 8kll,馛>nڴI?5xմMqZ\D^|Thw^t#bp2 `#;K}GXԁ,}3ii!XYpLi!2‚vlah|.$4}ݩŋW"w_SSSNQ̡Ƙ+k6cCrcI܃\ K,̅ $uI`,⩂~}vjE2˓'N8~H    $@kRd_EE[ OIENDB`PK !۟word/media/image7.pngPNG  IHDRn: pHYs+tIME )PtEXtAuthorH:tEXtDescription |hardcopy|2012/10/24 15:15:40 lim_j SGA250167H tEXtCopyright:tEXtCreation time5 tEXtSoftware]p: tEXtDisclaimertEXtWarningtEXtSourcetEXtComment̖tEXtTitle' IDATx]Eټ%ÒaEdQA1TS@E|f3b<' zǝSTD waA$6^uOL0,S;S]z]>峒|I>& o_uڧ`6,Β4Y`PZ+" R4L &B R >W*f Npo1d3Wi TTqȗW<(@jR%< ᘂ9!lPʗ^Qe%) E(؏)zXIL!yb$9K෢#leE|#\6JmP̋ bw@lI,uS)Ȃ7KT ڰ3Mb2J_^ty_-TETۓ n%\ t|v bqX.5@Fj]Qo$=G{oĶ]Lu*G xFog$svVt4|̫"T!a7=؊vTGԒ)xS?Tсժsɠsw$A̬*%=̱ b 0 a]u<^ϙH!)"hi3p)BOJu!g"dM,r%p}`ߡP8As #ɹa&Leώ<3߄HRb3JmDp)_b~gXUz*;DN%uԔH2%I!?зty"0.#%;*PjqW>rsdp!ԠX k,&fҪUT*QPNоfK-@d,heLS  ʗ; M?EMBdH*'b//O"=H"%VH3=Rv:'EK'|D8iVB%SXn!0>g\**v! eqI5ϥ8Ƣ 6O)n"Jkw,?)Zj3*lHݹ Z U6$ȿ -b5䑒I ?%p <"2f6vǛ U%l( Rc﷒-z~F>IwdRBV#d0H$^Qȃ:DpVy\!f FLH,RQ&л ̚RFeHC)bsPtidb0K]0pLv (J$8J8&IǁX2%3a2 HŦ2AcCQA& 5C !`\;RLI -DXԜZݱ<1_AB(#* DXtL -ѻaFPUOZvN,S oʠFvf^it=ad!@DZBQP?]2 DPD. h$T#:q1u*-A!Uh%9:%%\hk{6ȩW4rt*wHZ&RK]g# 8Pt,tJYJt",S9::*jN~eߒl-+`H FiIH [TWBj*趎`xA#+YK3#HTfeU R/hNJɨ˂m]\nDJh %D)r_ɲږ (rKꐡU[ 9˅ jq# .dG f\F;rV h9it6@J OvU8ι ’["t6jRayN-Yr1D596 U4f±k<UbV9u" Ƣ=M289`G&I$c^IIJt<g΀A2!*q~*c)7$~?-J27#(,2B_) W"&͉"E%pΈrEXډ {#xdPD 0dHJV ܺRRSmb- $`Yv88:Dt'B9\KW ~KB&EegIf2H>+Y`LHXU( nRk6pT^kc UTO—U&ˤk@S,jC*sI j1$vMLKi.l;ůG LPRYVњ&q N35i  C*㋀rE$*V9TGȓՒ($Xьrl&m̩)WΉ lP.HI%J8Ts>_8dh?KX:Btd1HRF'j}u lWc2 R.dԓMg$A"zi ٛ`ЪPp ;Qy/6=@<%u0d,dƥQ)94jZ06 %L  .INMNORq ,a ^C"L.m;Ĕ* ^3!W8>ƀ/? _Ȅ\qlEij~I͑YND(s k'$ cAG5Q _K"2"9/"DqJIOT~|kxSs4`b1bp_yD^[0'Gd)t=ԏ?o =6i#۷e>V1>kAe)?23G](Wһc7WO[|ݜ ї$``PL8!bdVڷk]_m''R,iv(wan"O*rD Ȥ$ G9$Gwi.;Uw}nHd`_OJ^N{kyϞمy$GB ̺>$._k _D%k߸7V.U Z9L+Y=o-jBՔ$SRvRSMys+bFj3t4lJ4TTOL[S*FҤ9:~[#xyPN{v#X9ȲB:a>cC} <9± F'MPNQ==zFkUY!SS?gUɒ,±zuy*djW2jW?PIV3Zjfd''a[|QшO3x] &f^HA+i+rNb3~qR&E}8rjgp>٪b܃&Ac>u|+&h┗sPX )+AvƄ;+ Z L|2ゼ'zٞ{ #uLąvg#@17ZxF:*6O2ͷV~)o]Ds9K&)=f'wRS)!WKN= $ʥj~ܓ/g86MMXO-䃠^mz΅ g*k>j-Y=֙XBaC%n4$XKb 9띥6XABv Pba\fKa8"QLL4klDa"K 7/J@(Ioq'J$(B-,5vrj8Qp9"RcPծ<ɘ fw;[a4!/E@(ĞrA+^"IZfjiɈ%PG<׃ٺ4m A{(]W1%J%4-򲒤rK!ɺ$rk/'ҨHNI `4w1ǵ;5QD}ÎL,kkd fE Ѓݪ14+4k3eU^U:Kwc`a55GpI|)3ZUK^ W"$Zs"-+ WN?y܋ڙnK Zu;@MZIlNnUW}fnL #ȃ9\|+>Ci۪-RP0""J!r.Nϊ\ Vb5y[uv'ʼ#bV/})0lYv%9s3ktvWhD*`\B0 4E^aF#6.W} 6~n٦=;grtL-eOƜi M`%̴jX>" ;`U+hf9efZԼh>5oW`#:-]ebE*I@bmެ iUCsyWH#qE:.NeUSW^ B\w`|m 5VSo5+y[Kg\X۵xM`oIuiu?--VH^-;kך5o.OCJ&}˿}*pX/˔SȱkNryߐ%tL5uZp'OP"מ2Zf}gpogth@4=ŪTk+梳N.<⁓_2*#2tw{Ȭ{|u=h<ח^n9%r%x龴xb¢'}~ңCo;yc](b/ E,k;4Y;蝎^x_[vo'^Q%w]_0Tυ'POOGU~wϨ>R`cvO9w]}zY?/[V}8`xŹCͻc5o~0^I DbrٱRG֗<(k;r ?)nk'K~m[>P,}Nhc/+J12*|+?<<0aʵ yϽ:%}Gz/yg ym鈚|{Nڽ3c琸[8.WUnWyxgso;%E EK&8x'%h *cHN9Hr"Bp>D' @FbXqE"QF3 & ؽx2ᑜ3| {^SE;tDU nl(dDA1a@J!"X.F=f\s'@zhA괌eR.Sӱ{;)5'5(f& NU/'8"HD8V" %Heex Un…7""pC1>@K7<@i@)5|¬vR^!/rᄐp}XD lm0:%ܐJ*ó0^}5y?;v97o9ziaڢ]y[m<눊-׼_'3%mAxosgb"w\4C_vaNGq^9[: ~5?Zu5^0˞þ xhc|fӤӭ QF~a?Ut }58ɹZG?tΣ51ځ&{Xg% zE?}g-c+?z"ZIosqc;Co;Y/,[󞬷s}r=8nsF\O>**wYOɠo?v o^9 2[owt[oW:a֪/3~ {4IDn.rWw/xn߮N+?bsɌY҉|V#1:A{T ;:IȮy㲱۳[=8oʟ _Z@U3ϻ5K-+`UM:9Ə<۬™&.$ {m؉O48-=rdg锇WzY;}7=SXYS]ӗۑObKv3 7NĥjsbìkFv0}up ;b[f [Hw#S>0Jo3=BddG(_ĭ'HP XxEe{=@ñSlXܿc Pȏ Z IDATF.gyf=0D ?fޥ(]E!mȕBNI%'ԾPQu&ҝd5iYw#RE4@Qv.!PJƒxXλjU瑞Y k'IЄ '5r,B(IHRrRfNAXzL˰fRZJJ))|fw'Up檁 `iզ’K!Ɖ͘Ҳ9Ű_́e3Fq3 Jd|4:adKn9#G*!R(_UDJYi5ݯUrl\تzfrF&m8/Qb]ahMWs w߯xaZSSu[} }Vw飅#lo5zo۶#~wA6w6N l]G&f~|Re@xCluTC,vM~Dw܈[FxW}|3Zv6\۟_#gzuPӼx }=3Q™#;2#cQ ޝY{֑5tS%A'~k#umGhTJw%}3"Y✑J9H,ϋ\[3qW4؇/n0h{l?_}aB5Sy7--0쁦m-x&z;0Ҡq1]Qyph,ғu5p(۸.>0KdO%\;D'e> eA{ЇBEK~4"tox'55.e{ S*"B,E~)3ǠD';.}*#ֵWG6wUN]: eWHP(4 gXuġCh/QwҠv¢nz>ܱ`nI^-}|6i뫵it<r;tR盤۾~fFџ捗]i Y 5Qûxž{VHi?}k+d 7)=G?sjG# qnJGz{ÇM6 8YL $ <ܓ<B)|; :OI(v֤z _l?cv 1O;}OY{W]rמ ق(3*/LB:owO\٣x0Df|݉7^nM^ɹ|?u$q'SX[pG ѹ(oo]?ب kO Q>wWD\k¤yP)b:_aj]y#_:5 >p̪[s_ǶwW|a^~Zo1٠5a/.xCzA8)KZST>!_ISV'k.fC᥹|o_ڻY {IwTͦt}]>-jJ4L{w.RPh_œզx[n_i"& ʺ3쿝4T1|>x$O>c3PRϹ5̰1ry]X*-5'Z#ձ0*ΑA 9E(DZQ3D8@ MGacj~J7a"VL iFbB3ZC **By/<#Gy+Nx3,B(iQ23NǑw}n̐|LbbHTp$p =.|n(5fƒ.'o_p%RK7fb]Ӑt5]m.#/@ PHQi#sagxB[K;68ŅL1Փ]o,ep;Jg=vfLOO |穁o+@?5Bz4kuG_2I'>z7Fm֧`|x׶T)7P9Z]|ogG^ޤY*#+\d500 HEoNY4e (8]BL z8/>B· 1qbyEyhˆ*CL"噌Instn&ߕ?7JOJ2!"9"?"y,T<#Es:hpP# L"] A-Xm8ŖIO 7k%lQ;v)D ۴I5jꛗiZU3/E_h/GdEd'GT4z@ نP:ۊhK#Ai)$0ёt3ĕ`-"+E°[tcj·2DzGoD }6DjE**G Qx4_-"6b>gb)QhMDՂBP )'GΈ\Pys u>i"FY7i w֋TEUZM$;F#]g@mHT-vqiL 9 ͳo]S[e`;|ۓ˱gGMoq c>m*<+ Ŭ&9y r<&#kX Il%ƒ) (+"P"MYAAV\DF(m舦^1yx]Mt_6Af"aNvDÌb ) `a G9J >xZ8V=X)o?𾵌ո%~J 0#Q8!dQ,ʸT;eexIYyiqqIў½z,.SRXPRue%8KvN"ơ ;@ZoAA.ɠciB4(_ʢƚ2ASDDR06AX]cJ9R2g7Kjr: m͍'_ovQtpܯ^+R׬E1_TxqFD@ʤ:f!'щkQz"`$FBO%re(5t9E0mlFʊ*G:M!Bx,f#5 (:j"$iԞ&QR%V3HN`'M;r1JǮ<،e3LyTb`%S.HE(F Pn1= n_29g>flθgs&2)j}r0mS5a_́V)#Av馡٧1tIFY?=тDjUo:$@eZEd+lD6#CMmlDuk_x?muHnB1^N,Q?t) FzfÀ'-Ġ&ms;ԽMq 2:,+FC~8ANB5xęܢ7 QcDaIx~ ?D6zµذ-0P TK1԰&v%\bR IeZ ؼ_ +:·C>$C,EDP'0$JUByܯzchUyĶLr!IߒCpסqD؋{@4ߡ`;`j\b9"K"/ca^g#ЮGE@*0kFpR`ZO[ɓsWhBo0_"sdGx/#^)\.5" ]IÝq<=~&M=;8$AުB/22ɴ5ˋwpG\Tw~C#4*.HC&$LtN휀 ZN"Ql%P޿RZ^Nt䃯/a26a#؍|_ ,9I)x5x)0#K(>1md iӘM3$x'4+68aSyKmPD 8L]O/ IVR6dXP4+—P1O,A#S7{SbXy;EuXf$OWӪCsPչ@*zEif @H[b\Wg[V4CWQ'M@'/P^ZVRRfxKf$BBY_ \Ȕg͓u$՞p"Qӿl<  f`P1m-C=DUj~щCd RΚ,E}"r%~bO1ϫPf9*P^#8ъ@@BBZ>G#/%{г(G| G!Q dNB"@wQD$` J C$K̹+)wɡXeD\meQ#^!6ECdCx1'n%JpԌ˶4jPA ? ıďG偊rx@?J,LX5 ?I؃qE],G lc9u`Σ؂o=IJ}ȫaMY"GXHFW3IT?!+G3!3,`lx/ aQB"H[)#qf|WOZi G6&y3+E,]ʐ9?bQeqa+[f"$থq$-J/4Z8Ş8#-% < ٭PaLRs@nT&"'QjWe ,7'f@j\CΕї Y5qH l"Q4dGE/ȁQuTV ['k OA[X&#(\M&9К 0(#0{3`{l-P2JJYLȥ N1.AL?(.n-Ə 2H8*EFebk8)%5a<ěveFIDbZҕ F!XbSn";w 3A]wAćpʥ xLœ`$`Ȃ1ęlkk[Iyk7 @JJ۳XXN2>fspL2=VȽ>S)Y6 IDATw*g"aZ5d2(.f C:@8J軏d &t\GX _<ʕdQmm ҁO \g!Ĕr#d6x,ɆG7ʕ+“8wJr&n,=pU/^mzY]ve0fEgmPkltNU"," w[r[ٗQ?=mJ۰>)@ܗlIqS\ul͸9G;[UFλj0HAHy,B=}eb6n帙tYR0"v)xѤ>>XpѫßbybV䟝`<9M-V(?KS&1!o4j=tԞ=Ӆ߲7۰`Kee-=OkԵ`0KvE6ĦNH=K-mE0閡|B9 X5i~ 4a.Aol޲o*1C`s-[ַ:+7tzrQ/6ziA ͳE #H$]ڰes:p\+-y26i珓7VGu<3T$z̴[T\m2g}“hAo,u 7^։F(9ڽ7[(_D'Z%c /wg{~\p@COv.,Yal݅[YZe Bǎc#t3n /aл/q'oVQWM8}DJ Q76ۚ001h!77޼iv 7qʜ`(a n,F).y)iP28nxAXsZZL۴nTN։[Yd(̱h\{mݼ p)'|’2I&3}.pfmhK ǩPZ6όEtkdmH#26x|p^˻8je8~j ܸ97{c#F|0wc:D:Hg:2a܈2hn֌_WP2ߨ7)1Fͭfrz'?EDetn pMq#޳n}y#iq.Z 4eo%iVu;E=I쓽`-oք荚ظ6`f¨jb}Rt\ ?_3+(F KoHLr<`MFu9d&'ݼ FVKl^"Kť 96lGூn))3߾yoit0oq#IH(ī+ v4z.D ZvIN<3se42' 8JӖgu#=0;ٷ.l0j),"f6Oʍh aE9Lz:L,)d"p=yckp7(jIm89`R9dL/]Q/t<p$oX߰KfS=AjS𴣧y!7"ݒ[_C'2 ^5Œ+S|18"JfzFB{Dߟ0nȾ}?qBv7tPi`񢯛7?w*N~x|}! .iRWsP'Z'4_@'t<"'zw_?i~ȃ}"H~~@B{D߯$߯{ig e $4@B $4AU$Hh Hh DL<Hh  HU@6A2Hh @SXZF3Ӓ e $4@B $4!׀ Ml0^")r'$4@B $4ЀLh%iiP҄Hhjp5\WYzZabܹseoԔ&ٍ_`%_Us;w_EX_K!⒎ڧ$'4F'4hqZ-#BĪ QTR7> McB_>N'kZagv3/`瞂W]ى|}DJh7$߄%~cLȏЇ'$(Jٻ=ou|oMGN9=m]T\gݺ)|uo+JE*)+޳{ɏKʳjd6lPeX-k*_ZZOyɠ=}NWT_\cy w~Mhl((+*)]6WRSV~1߃/FZzfV1jˋvIiiizժǀBU/INSRj`%RUY/$'| {lɣUy Y{ІQ~>*DIB $4)[^(+{V%}IR|2XV"062I9l/*++cC֑H\'6M/Z셗sr$B%իX<"Ry#gײvKJ4ov s;<!R 3jS2Ғm۔^-Zr/_yO [WQ3)+[ZT;vĤ^\\weee%''ÆHoc( r7UL**!"_TTvd֨qmHh x4D[/Qt;=Yؠ{՚T?Wa{{K{+J-( \YQ"V=VϪ{ Pn:Pr9'i9n nݲOWzocEzu 3eK-+ۺ6a4~e˖Dx{{Ii%$׬ 5ZfM6^}qVsrr.]ڼu8%he˰W8wwm (֭VP-[إgh:Q^zV#˗TVT(߳gﮝ;5khѲej/䀒cwϞ=X+IKKW~]z2Ֆ0}Crĉݬ=%8=Gq11# XA}i}z搳FqW~xӨ ,I`v[A TDr _ JqIV׸MI/(UB),*^[iz7kG&%,%nLE$PihvZDԩA foC^5jzҺЂ#n@ 0h5L[oqʢ`RZZVt3k4i֪f-Z*%[p)Zs70 ɬVcƵ驐<$, _U?8kqX9ܔLl.uUɪUA8S5]gYMvm\o5巐lx^Y~ ?as]m'D}yX?Xm B,z=d*Bhꣷs_dt j%KƯ\m 8PI{M~Nѹ޲i% o$?>uk 6\<@O?|/+%O}쩋rЯ;;EI<$P/K= ~RTVm؍*|Zfo X> ?,.i!C ާJ@ȏ- [qɎ).,K1я7v4 &SRR5Dw+Go5cF q Bc@4 LG8e-ΎuDpNjVr͵؏9I!QFv E,.-+NB f:7xn `֭@æ-ňK -ByF`%Q[XZٳa{* 8嬧}A͸hkij}&S>c}Xlۓ_)B_2],[Y] "KOgpӥWp).Dv\+[Rg@:KO]Odn8Dp!ÖSLvC6fS@֡`'qۓ#{cERYGDVSg/.i0ֆuuśRں-4nԨqFUsڹ=n` c3ݾXF}E[?=WnG;9 Q5W\O\B"^igݩ۪0pCWm~nw=&5xMb _[9.y)sdW=Tʍ %ESN&b^ѫnQǻ"SH* '\/&/K*׮Z\^kQ{\7aJðp  0sR==# f͚/y\D}- 3Vw9KIrrR%!΁ah,V,Uqik$H%{bm aNxF$nwS'hhßZҢM?^TZqI^~_KqZY6a⭝jӡv v#J(Xe>"ZVOp`^_=gZ hiq&B}.vsnږna:Z`Y)k-X`C6LٵlIb#H ֙1DS52Zy'jqzqwa]\%~4' ǂزwxiIxޝ%TYB t\4lРqI{3-%`ÏnՀP`Cr01h.5Zܱ=} 'b"{Nyxb?N >BIΪ"AUӦ jxwq5r9Βad&\v{;Kb8e#4} +c5wMف[8mrk:|I4%<47z"?|zM .ytS߉ߟwOQԽ$M8WdcF*X2&%EE|ǟri IDATa̝A`QR:q%u~\Ok&w>nV()Ch?U 0R7%[ ".LM.,NKYUY5A` |@[0Mf͚i/rq[L `y^Ib YMP@]wAI&{ן>d/QvYW\7]R{L&L@;^kܳ;vh^q!do/ukKL W׮]~"k>Y"GW}` ,>anq7]zS褸%UKȠZ!Kb,YrIx۱ -4-vZL\=+9ЪݫC }읣vniɚ.gTA'Yu2;Vpn4۱lDR4Űk?AvyV^5 AXIXJ%:i,:r_ŔnWnpe"G'˭95^@v(I''vkڔNj%7$w7k X9Y|N:M+0w׆c9Ile0%wWG6V*mGP(FJy%Hqk-TXK<tD uYG쵊ܯ/kq{GIaYQnR2#n-EE{>[pC#dfÒ>BZaue³ޢ*--.ñ4x3~ ;o{wAyYYVz@EtӏKw`:uwSNxiY3vh&'Q | g}~SΈ~o۲!3#^8sPUd?Xq&TVZ7(iT c- \Ոzj:]Bh @*Jа 1 ZXpo41;Gu退` "56Gq2;m?vElD :ޯ}X1mxLskIMJ|vn;5\8sKU+1W%9KZsNf=G?F\w`%+'}M/!ɗ;<Ǣt܂43cV<=6MGBM{M}9P@i&g^4g3̣V$kQNĥdh-wKNh"Wג?)ݒmN55O)J*y]v9K2L#I-Fv)w攲e|˕9} _3U`ٺJ:5b^q')9~O?f<;mPVJ矄xտDXJ6OܺqįGMm?}9X5" 4io"3ߟN^ $쎼&ķݜ͎8.فwTׯ7('CAy.}#ӡ^2XBRY[l]Nx^h%z_Bѫ9߾ǼWv䇛Gj_Y;RWߟw|xI|򽿼u/P|&yk 76jIS^\5D4eo%zT)dܹΝ[wRo޺K;iw*g~ƳS%$FX҇v妕igV,=M(>Xth|YϾq5 }R SΜH{w|Li.(xJ{Z@\'< eW16md4 dw WJ&8+[jWyS<;1v[y]y^lA  ^(x!K|\+"Ͽj# `a3]Ϸ߰{ŭ3Lc#[c- <<D~Յ% ds.4'$jH;vI> @P2 stB@6MluJTm:hZ PB ˠy.2CKZPFNR ◦fyc6{/y|<#~.rIzJi8Q%@@'w)|z릣LjL@VXrEU+)S< ˛7Kjլ\>QQM*W;w,f؁@]ϡ1Jq_p D@ @ G ηo߹?+@ t!@;E~.@@Q7*׸{e@@a逡Q>=ZeE .HtubUZ13;:@Ё <# L9e L8t:ЇbÄ#sʼnLt:(x&>Iv e2x>:@ ^ ]F޺&/_:O{@T//'?xke1G(:`x@5QDrp%3B@GO8^B_ȯ K"~f@""!]ke1I(:krV3  &Ɖ tu@k"Ͻ .!0qT?,3@87Fɽspכrit̒0ƿ=.XpNmCzR?l'4TUeSDp<;/!(]zTI"DB:(,5> 푽#r}bE?^ ⤶ K4#>멗&OH¤zԹl: Ff2nSK.OlہlCTTIl&Xl7<+ $p6xXh>->GrIa$l]8Dy/MҵV޻سs;vc&Ӂ[N6qeٶIɊٶe3m[7l۞W(M0&ЁsM:lAڇ~>2F.ϗL_Zè6|&vJӷԋ|@58.Y2!jښ6=Ll4TTrr.|Tm@D6pY\v^Leq[rQ"g,2SXC{CN>(N=p?n{7t$(3cڧjO!mD5!*yxv&1 m\9`nC9#T0HMD!75uiz#CMnO(M\{ ӥf60 >%M& @-WnKNnzɷ96d+z::j[嵉 8@:r2l)'7u9o%2&El@!Ф6I\(ttqV@}{N-^'pEQޣZ)r3ދŹ:=:kh4`@(!0f !t:=:\t#,@x^5@ <' p1^ פo6 <# px $O E&7=:78y?N:8AyƍP&ʝx3x^g87\S~9l,e>lmcb-_k6ee֬\G@|Vـ?7}<)\G=(y njqŹNЛkb6OuϪގպd0:4.׶qvиſ}zUSYUa l9N2wn b@xFЛkBᛎמxsޣfsV6}؜m`!UjhNu/v-{5 *w_} :|bMP 䚐Y\8x51V(!,cxH‚ۇ rѽFظGTZ5UAʍgee5]3V/J{wiI/DϋНkG Y51n N5 PҀGZÒb"k?j%HOO7^7=@#\䚐{ϳ1^;&5!49[R=['3!Jxƕ Dl6y7I? ꁀ!gDqƁpx5A59@niڴ(%YBIݺu+..|';?@ C&tB -8kb gɝW˭17\~5{k-^[~=k21LzK233(v #"C (DJ U]eL t@i7|}XB/p 3w,9#ӜM?fcz1#{ȋߙ:A} {+44ZOv IkB RSSF.\h fN6Qtd\z;Nzf&k$d|ٻ #i_d_i^B!/K:$ &0D!88@Gxo)1`) MU~Vf7n&eJ I6K%IizMdݢE "#EnD<%4&/_D^ 3xŵ2p@AuM,m57~uOH2fmlY|'}劯h_n1CZEk&שSN8￟3vܹ$K<|G+ݵ)ԸfQǀ 0[04i9pSV;Y8WkSf#DCekk^ZH$oߦū^!62ԕ^؉3&(: &*VMsC 5Wӄ^Џ&8 d(M>8@JH&Cs5Mp@` DtgDxNLMn87+&S'*85 ŹNл\0@@xF(@h@ \Bp@Ir+x^p5M`mTרNTlFi&5qbo mrMu`xmOڨnל %=@@[YǓn=z&Vi"FHx-TʝFQf-ګVZUkժVլUVPF5{ڍ&@~]c^h:dD8@Ak2gs'u&n4vC\wB˖vEμ @i?ɽ rM i<+ xC51YUU{k-jU{X/W|ڪ)VE{Z󆕭uyNG[ #5;UlyU[5E]tRۚwk輵Uk4!]Q,DTCV-Lݵ(,_;񟶓5nmk[( 2q"lN\EAOOsF{yd̡@>iNTh@zrE|꾆+[$Ɔn$'`>'VV(Ylz1nRLwXzd 6>r؆Ե>!IC<ݐԨ%m8 1gjϼ鍣,$6<g`a_|6צ:EY=w`(:@&|;7 !o;cYaQ?.vMx%*;UR:磤*aY-6> Ea79ԑoqb %t9)~Ab/ .[Z~ B i§͇(. py/gF-^tEИucCc$w΂'VhW44\9ޠ _nl._b\huMP׎ajd%iךFcSubRtlͲʱWoE+ +ƯqkFM+[kюE?d;7!Ax#?&%>2QRj 1yYo5YƻVP&l4w;p6\g Oߨz͊Jo oflJ?^&UxQ#/9tPZ)m44= ls# >.*#8\ro4n }.w}q;aS>K OG'g<43n\'1?}cc#<&adh) 1BڝOu U@ kr.EYC^u@|CGƹdp{vrI˳֨VYrD$2-[Z)3YQAe/?Ѱ4 a(Gi@ 'd$υg89D$$&^j<}7Ju#-ָjهkIv $RXQ-VS r/,@!P}[/t Efv2NhkDk޸1M bڨ+iO9v^Wx 52PLy qt,kҨN3oˮR>Yav҈jLj4x &; 2U6L9`G\R\ *~:Yٻzҝ,m)eCSpk/MY~ &i.cC8@.h+W & u".΋}_0Wl :(0퉝;I32>dT2pU MZI(l6MBN vǘ}+՜}7Ri{~ 6*%?:4qS.E m{cg~׷TRe3S @8ꀏ0؏T]! Y^zum?QBVw]&u؃!Hzʈ$Jќ,\@4SfٔUruv"&ye`Я>Y9F)#0ĝMHO:6SXͬ4I&d}_`1O) F"vF3/yV"((*Z8/<萱VCM4"`lR*VL!9RM2fr.EY}&Dy]2U=%u!C!}[l`Wwz?vM#,[EyZ ~HjFp)YڑA2amJUt1:鈉V}ИU_|W :c" bYGěb9'91z4˕ %8ccE zӄwڰ\>aVl% X682t*++ӷg|i7?8PeYdb'O쀌1#ᄶDy -KD,?#]j?d!vPlV7k3RDvz|b~rI@j 3Hhsǟb)21"h')ap{5ќWͷ8.{=zشiS\\\^m<ׄ\&b'S Y&&<(kbj1:ۍRCl+fpBƆ(iwvh4fuuGȘc[=_fzwLg 8"[=@l@@'A`P Xome5joڵׯ_9E *]r=֯w휓5MUw|rں<ͣ<'-F:m/ ?wY"vi1p:k׮_ժUD=8d6Iعi驷.=~o ,)ʣu@АM`yf"1vboGYNə.K k.GnL'Cd Ӏ߮Fs._JK> K94;HG[xtPtg9?6߾)U` L65'k(ضP>c4bbkL+q4; o$Onhɖm^9tJL&)U28 ]N++|)ر_ZIzbӉʣ279|7Z:_m9/̴;DJɥp*HE҇5=UY)G9#tHt֛Roda.[0|1dQ g% u/R jԪyV86 6ej*5 ?ZǷTUU!cQ:`x ˆXzL:PL'C~7߃%IP;}^J6[ۺsՖy͒ ;#C 0ӄ޻GfkJgC}%nhJDÂy@`dQR\%o)?+U8?c:zz5mڴB zh( ԠA/K^6UoX)exS:t_2k{W$.SXMV4F@kn*:_\5p.b]B-+>4mo'8*š5 O '~| :yad̞an#ۻ>YTղ򚕮@\7t@;20qM\5a NrM\RR\n@!ׄ'4Bs\N~\ (:$M耡Q>ws:nN!}Y93cTslffwo6wol__ͮ 9& 8;æ yUgeУkrժW3+U+nkR=gl$iL: N:s:;tl.Yi~nM.b.R4! @QC ӘF"A=-0(\YUО?!ڐ6|0׻u۟W&Ekޡ՚[֦v?m[BoQMNG rMX?77c(kb`[WpDE kl洛|?ZOiD_>yKN1m}"@5q J>:v:*U`L+&111wuyʤ`iE#>mJ78Ƞw}eh(k"`g}S:mfHʹn.\ؾ}իWs$$l2Ƙi;);wG]k&JɫHXb4!G+6,,ȣ?bD8h0-ؙ{֩پXg@,v y̅J)n.UΫ( p[u^׮][~}U {qlޓswSo ]z7)ߐAB YRܰIءu Zĕ-qۍ쓸yh/:Nꃏ%=Ieݐ 6]OX,=7XL,z}>o ɡ&YLr r'qq"u9#on41.pܱcZ&XAG#Bi+wGRo5əK2P=1q1ٲeK޽CBBrrmL ;~ܻۿI [aն^V&.K2K8#q*I,럄m2+Ma R]GtrJpB23I"=(թkuJB ]H.@$ɷ{0M战lje2-ڎ0aJ)&`g9VQk"p'mk~Zm*\G&C^ѿ=W:K|ݟkݬ_-Cm ܱMmݹz MG+2Uk9/gbVxsn`^;Q`ea6O=% ة=2Y?zLKNnB|^Q,fs`қէgOz3\␉fR4g$I{%䎏o)cQ>:ʺ&{']K0do\kIoo.SSe=oݺٵ}Ě%i}2ȥ""5!KJ(g$ O-#nq^Kv=YfKl(5fzb]"N\8l3s_b! d}XIGk'$\{XNr+&*T5kC{<=-+>4mo'8*!9{EC/82AБlSWPB ;򗟂B82gLK"0| SdSsqti=zq7V>Ϥ)#iK:Q; o% *(hdJ+(cY85ϩ̢!FKzB$i.hAbtR2 tV!9 `&[lJ=OBа@]OuTrːSC`G5TUX_rWΫ( pУ!zQ.Xpr!{ <)ׄfь;ֹT9`H\5ɏ-x 55<>ddJߋr <@P&ʹe=:&rS @G뚈~"~C< @D@kB&$z^ų20)ΙHJ d2aH iqzsbEq.^5|a΢C*!9߿%Vo7̤ţC@?z`ys˽ Nq"-W$k &bV)=zdEGUv@q1q:@ټJv>:L%yg% IL~#۝ '-q!k"N"פMj%bL,OVg6Yo}5-}U>JyF}9eJ5eO*aW<)84WcZڰ%A|(Mg.'ފZ|r @#\oB ]F ,.S"/!@]OuTfzz`XY@xM:|>K)[lJvM̱(s@'p@&y)@O:F&QoΓxzf? g)`]D1h <5gxz~? Y~#OrMrŠk"pu|C\]^ '\ <3@x5ڛ1vOrM̙OO}` HrMt&4@ak"N&${PzUakb0ZR弊Gks k"@tYm'LOk, zܲώqMbڪdGmuweGfNQ:4feͥyeG:\>QW|G7eanz`,W߿?(@[rMę8>W*c+ $O  t(sr^EY}&đ פ`f%}{({G#{YGz-eH 'B^9t]CsPae- a845ǝge9&v+W?aRןnê)T`RP]2fOE)EG_T3e[TQ!.rJ>|tCffڀ (ׄDs`C7Y"pqiM̚Xʍ%gjK>' zerzTQ!.T5*SBz}RU@#``<2*U`L透>0J&R[I@ cHbEc(BYJGGf£\ S\Ws,0&J@I1sCr6Ŀ.U+n^IBEN V;PAtP5ٸ+W/`!Sh%8z Pd@8yMr%\dtDgc:~)t椄^6ilX ER(.Or\1Ǒ)e,1 F Pȹ&)9&m5]l]_U^"$\멎JFɳ 7OӧN+UBWǔi0PͼcQHk椄@rM?O|rM٬" &3`\bf@9Y&?Vu)n @#o舓~ פOr rM?O|rMI( Dw @I &X95{|D̂2)DK*{ 0&t^5A )YF<3=:"38ib P@8)Z@"A;ij2kRLA @QD뚈s3x35)Sr]bꑽpfbagۏ_kw.y6g@@/?0 O͝O )@INVgGjΚY&EXXz /ٞSrЈީu7*#rzf!F@\5?@?4z& cѽ[Gh#}G|?ϭOaj`IKmiqrX?~pZD3v=Lj*[~3w* ^z_]xȶkVӪiNfS!\wt&%k: 9:9Mٷ)oYlBygm>lX_l3X̎\Kot Z.HvMО66FZ#){{gW!\qyVF[`(t&mtP7CѪ 1DkC)zkY]n.8)"#o{7]rT_ vcQ:#Z*!i(TxsQ=#-j_y2o(R`LrMLX`~QMzё >k"λ;yh )S"=.E@Csj x% 1|*:ݼcQ5)I3$@!uMyu'Sʁ%ۍr] Pl0I&ʹe=:@&AqxAڱ @3A5R弊^L#&%vL/K ̫Ṟ(sd J)Ge& 4Ӥ\Ū~ ӤtvrEYkppk_ZrEC w"`5əK*{ 0&tx,Q /`]h7c裶YzS @F 3H˒U<~&%z((@ڛ1vOrM jT?fư Pn&X9xd CP;:\L@ \:\LIEѷ;n.ﯭO[福XϯOѦd-'^%䚈γ2C5)Sr/)zϦْ$\ݞy@]=D&318rlyGu+4D&X9Oc_tNQ t\keܿHt'jڈ @4\@IΜRBK ;~M#}K?s9sT"ۥ5/Yr>"u:< 3QN4(T،H,unk3jd!? +5q ?ѯ5u)ZHVApa%=gtݏ_ nhEGc."_2K_B^g3 E4”XVJ5j\%+4IsBId$Fn9,sbv#n NG%'X'Gb@ge5:P&}| x;DŋXVͤں=uJXG-<|]<7հ~RۼmEw 9Q$dτwc(Ȃ *.:w8fD_ "\+:'5SK>Ҙ;U=VZ}q"n Z-CLt!\;tf==Oh1L*@km2ye`Я5Ynv% dnE` ]nJ)kĦ&w}fț'퍑RL$ whz"5%)\%mx 8fx`w\uA%$*8xT&O1t\ 0,r,?J;΀O&XjfAXNR`Kz[= j!0$y$łW󤄽9I,Bm ?~(K,MQY@8驷˔$u?#zcgJ5fzmx?lwBN(X{f.[L*U7 J9,A`]zW\+AP@~ uM?77cC ir~\YVi15Y~e(@A@ddeIbcQ>:`2J`DSe| y<Rr*Wlyҥ˔W4bE8@뀏v@)?6ޡy3"t@5qc*BS -5xxs 3+@ xJ$@`]u&Q@&xg>5T,ŇX!$*3rM?77c\+%Y~#OrMJD P Dt'+H{ [rA^  PrMu.UΫ(58䚔Y:tR'oh뤛X>l9}QueP}m䀵585@ ({ BA pvo\=}d="|zz`ra~֗ąibPv/X։QkbWs,:\kSU!ۧk|LNlj['%'{KkW:j9š#5󬌶P5!,KGqyZv<"},#$qi(+=Q΋bIrQaձQWe-S wţ{[jnX`ahˆplh@Eĺ&F:y3"t@5qq*͒7l h.i={ts2 #>R.'tAfyV%cYkvo|Y؛'t aH =ػC#4 WŚRƸLáV&P<rMwt& D=d;4Ë/3n;Z?j0pINJms٬&k:nL(ExJM :ŸL,MrMߏt&FED>VJa\l-6Tí#A'n_T55󬌶КkΘA YPSp8 &VS1MjT_-+]/.t $?N ( ʘXM iՒH7*^ֳ+M&/e+LfuA C'P"/!)+KK)DK*@tc-ܧv~-ˏ>%dBFJ k15Rf+^ W4ӈȭޜ.`dF"uǦo\`df@5S|e1YvI:rݮ:{vDwR3<ːcvm+.<- bѿΘ6 ,UovcQ:\b8zVdz7 v n@!\q2yVF[`5uMn"R pq}[MO~ <^3v x)ĺFK*0r^EYpztxWHv({ \F 3=ښsr^EY}&đ  9 D`|mL6@ WlrM;Q #@I^<@Ʌ e Hpz7ېk"@ԓC`Kf!?vS$]dѲN!@@54X5+Ws,:\(&$0MY־PfS[wQ%9ʺ́po2xlns PXbCԶ[ Ǧ0GvI?C妯- )'A ;?3W|U|'~BxK$rq+Ы P*[n;iRݡ PPH~j$APDBq_r,/ '=-`@| WI7QkR`*FG@@жGEL$/45)kF(F?@@ж!GEk"if܍v}'5)kפF?@@ж!Gg)`P)+SHȏ\:hDj؍}f /-ゕ5+Z!48\Ūfs_z'k!I\naf9DalтW"adUqR %(&L4o&,y ^L2o*dNl5῍woPvI~jJE`}{> *aܫT#&Df)* //|l$ IDAT2z]`z(ZQLy4*V/33,,+sM/ϳX@o'ohy֙=}+CĘί }hO=dJֈfe~b@!in3=p#]biB? ׺k2>`_g[x{)c6+Tr2V,SIDi]¶kFn;~\}4]X؆kV6n_W. 4!kN0|שB(.y%"p [ܷ᳑=+?8`𱻃 ;jppxK]`r Re*Pot=*VUmCv,e,Ïu f{bB񇆿ށCF &ƦYYL @ -ޟ9\7ocL8>8/k4ֵs:j/;ŻI+7%tR%)Sjvf5=McMi {pj[U4%T@#>Mu?S6wY3(AN!,Eh |+*;+"0Bq~PȩhÊ`뀡Ss‚B 'V?7}`o`.+=bKOMնK5)~,h=,?txa1];7m{{{D!*J PT/[tFYA۫e?.tX8\#h?p. c];u6leqj}Od9ZxCQ88*OOm5]pY]G1v̼ ?=VtS*vH [{uk⣴SD$E@ jh`G1)g+ek-t+=!x̛]RC:H؊)DƇ]b;Xof[b؟۶OXYfUéA;rlBd2ζSO)1(TbNbi(. W4\LF&Tv;뚘,k(Es` ]j{8dB9 ?c䃣zJ'E}u$P?-֯/ gnK`kY5<5^. fiBlЬ"`}CrMrM!>wdX\02 @@eÏ?3B|-=ceĄ¯8wR9qdKn$[J [xPuZ?Cvb(:6 E]--fEP!>bx7؞k"PǚW}C#g,xXv^orW%9B*2Viq{714=I1#I$l@. 14j֧\*,Tyg#DTpbuvJN&G؂ oRzk7z* &xT@b64+I*TQ|egtp,KPGrzط|;Wϙ" Ѕ|j+(V% l%fX CLY|};7U"lziŝ3 %Rkg^Q&%D br"Lzm򚐽AQrκ&KJU1z֝t5Db6=Ⱥ(?W|!`VR,\|%m"62 8 um{M_{/P!(PZOѧ Ė.}CǔWHJUqaHXe)PN@BCAB] e5*7t(ݓ ɀ(.x0he>dCN u5qX 5@ г rM<; @I Nh sMuM,/[Ej, (H&b&|]{ۃv<;7h]6Q.8M `6Ez-i]Li]CYFI.P0@ )t,|VkRδt\euhF\hEɏn/\^<[9u^g:P:WF%v?ߊPukTL %FJF`H4I*֣BT=AS|暐jۃ%z.5#߬>6Pw: Ѻl,Au8:v–!R!kX):U 9Yv!Esk*Usʼn4(hD15!\K&lyGخ,\^.敉]D t^sekrl-[|)GX{XMB!v Y{US(k$w]]wB*IPE HQAd)M)HB*RIm?]Hȴgwg^{3II -o;s=<.s p +;"l$r) P#flJh}l 1Ph%VȨKs}6qI(r o e#27-Qn3:ĥvۻ|=& Y5Nyn̉&9Ⱦ(J^@l0*9Q) s#}980MKwNRCd['fX!4 EpfJ"պsyS6 c'_aj/"tmysX{w#Bߟzwr~i"ϩ/QHjDWqQ,e#U֖)RЍFRko>YL\;Bko}fNhF^" k, *bߧfx,Yh9 B8PtVND]kB,*E@mN} 6d.mGq8_i-ڥeCgOФ-7Yޜqlf[ՅGURSEAsԲ50,0֤]c+ z,\ڛQ ; Qd5% ^=ɼ&,ĂsHlK 'eb9Kbq5HnjܤlŲ8XXEԕtYN`⺔oqcnY2uوhP lU:}>}ZW3Y a]b5@긅ZhqF X7g)BЏ3`y감->~L}B ۹'f#fC$8YQي` 3_C 3-D P _B9)hԾbݝZɘyz3ʱ8@X>7f3Rf;rjB ^\XNX1Ϙ8Nމ>}'ZLؤK %'iVsn&^ טN8v%!W'F:lČ͜h+_  E7^YEqDXӅZ6ezSᱛ; pUxv3ok ƞPXw2u9_ƻ{ n9 |=&BX]YT~C׺qL#LܿD?:t mebۀ"iD"PG>fmMFڳ:}ʋ~Ξ9uSG{ :{X3"tG[bC&C@>q5zgG18kk0T/Rv.|./0@Dx{۶}ƚtaqyDD@f3grzJgnO{_@Ya AI3T  q'4֤mQCڔѱPXH|IaB&@@&dzvs5zĚPKxs%oiͱ8@I+ {۴}5Nga @D@zGt 5 !޿Fv DDp480 ֤uF#m^Үc!XD=L.޶Z\"4#lbM!b੢l<~.5o詒 ߈" EʹX= Da: k⦗|n)s"4 9o #JԒIcު>ZؚTf!j:2tҤXk)vsct8-50 v]"$G!DC|>t}~|.zGrF{|e_U%:7HҗiWG>vn644# Ě_.ք yKMcMدQ+~:B8dT>X KXcAf͍ &|?]5*|*dתIRgfLpSUHdq1it?n*FF p>[ %O?arn*b<(%K6$mȵ#EnsKS6R[K>["DdcJ6[Slm޺9 ĸ9jk_&m]46bKAW~::`Lo|+Ic֘59k,<.Jh#)˴"ݢ!/!7baM p Qݴፍ>'[_ӛ1 Iyv>zucM& 6Vy*3|v 5 )86 51B$V՟'v*[ #bъ8}ِw$(Бbl;u&@5 >I 1wyǐbCzK]"MECvwP- rּ9`wڕ3iWVYC;ff !_^wL/JA HT< ff>(7Ė,w lOV@' 3aϼ7\Аb )P9mp(LcB0֤K+^=/)M ˟[5n`mN%F$#cyen\5 ۺ7(yb 6H[*pk :uLczqu!3g rY5(r!G d@Ƭde$"@Z=h0""KKZι~3 +Zn1f=4 75k3p|let6;FX7諌Ou heL۳h0!=a.|$)W3{yf Bz7,daCV+-1SB,ᓘv]ܑ$ЛˏV\Lˋ{2G ƅ*!P""li!ONU|V$͂yYqc=3YR{`U,ij6$(ce#9rk Pt.kQPF%Zii0WTE඀(s9 Xk06d냴|B&B1jsWTlِ"e 5q4rg3C*EG?0D?up!Ey>0$Hڏ(3o3kgz5NT]I*t]ZĵٶnO[%Xa(,B؞|v~z\k:;aF̍=Z6tug#ԑ킼Z뙃3~ KH&+ j#( {lƯ dž{5MX Jr#wE%_I\!UOM.Eɹrs֛ W[PNƠ܌) ~Pþ3WgKF5! 3 _=}M:XwNI_e0UyW}FXcܽAnmk7f||ysB"YT,ّjuykb!dHMhZ@{lk/KیqQۚ-γ^Dbe1 vL]`-<vYQRz܊W8~ #wZ7KIزL8~%(M?J7NYzYHHTo>aeH,8tBQ Y%=RV0c`ܭA>JCMY4^F+ac.53tx/C]5U媟&_xp1)-G,PYZUV^U^RYZz0OO?^MSp,过%'k~]{3GrʕEi6mmk?/+/gϊ $H@ lٙ0  k/'X #wi%D\kijE@B*e$/R{!KVXЃp oػL i=U51T_1@nk T~^QٽQp?jC.Hs28q/[$Bq rYp^r2Ѥ1;t$ YBJAB{Q=łbl\β]TȰpq&Ɯd%V=`wXM(,an5q @E&ք\:;3h`5ﯭK`,(KIUL^r;Tw ɺ#v |:v#gDB_a uH!ݝe[[Z~l`ٸ Єς%pqPsȪ]S Dp#?CǫYGSHOfeWV>ΪmLJo޷MIeҪeU?tk+dHwDY!$u.ݱ/"|yٺm:tm۷5'=ykh0gƧx̀+w⒄{ťEJs cf ; "2ĚP}iױP:Ў&pu /[G4ww 6FD@Ѿ&FƑP`yP]KP/iD#o- hT)/)jݦ=<| @Dp3v]p)Gn&cQ "TVnhFĶuěR@OЧV " B+R/S#wJu"nq/ے޽cO\MRp6֨s@]M$os\%SU^M:caF5FĺP}Mzp|D@<[Z5ǭ:++D]}]HG'DfV#Nj-OAtg5),4}lX?4ju?|TDE ;4kܴTnnYGZ%da RqυFpT?LHQ ;-as0H`+MLY'&" nM(3`wYy?BZ, M/,((Kܒzq+ǽUUgi)Iɂ=9k4m<I w^PQQTvjst~g-|~SF:e#p.Ag<.p^hBU_!Qp6E=!6.=Pyr>C kDDAJO63@l@4 "\'qKy3F۠6U(4TbF1/eJ}VmJ2O@}M0֤ fT4R?(JQkza+++/h* 4 >imƵ"H! q=6B#pɏ'h q-KSW^b~;9ܒ)I-Oʞ ypޡJJK}"nG-2Uڟ9a^@ 4Ҟ6#Sr%syB=IyԲYwB5>ds–.3b-p-$5n!G3eBI@/_?PHLqik܏C(I "P7nqc@)K5fX䧺6P y ^N!7O(ڼ6.%2K:[Tnc(؁kAǁ..07_ҕ}V?KĞeY>$jBc/HLt#o[}@pB"!0VX`-",I֎XXp}AkL3sO]v%.}dRUU!2_=QZO%i!kh(g T]p/ (ڤ"0t>3(b+]SVSГE֯a[< gæӎx ا!Щh]V!w7 .|X0utV]4ԛacg2S'xSđ\DZL=ؙS ZKϞ=?;0wv~K;~{Ϟ4Xvܽsј);<\۶x޽X 0tX_Wն:Pb鎠1Ht'o=MuXj Q}ǚ3$cBjB {=$=y o/AI_47, a-1KX 5и5;?ivXJটA"'MWPk9ZکI=JKG?`cC:uw:UWpZ &:pvsZђNN0;6e9MǙ,qkj`3t!z7@5t{"i'eˆ5MaaO?&?O=[#MșҢE~V 1|S$  .O): ^9r${K1Н=4;&"eQ$=o×WkzIo.j|? ;T@eMJK鶾uJGNAa {]gÅFs#_qcf4>vnY5g;S38;=3x$a$ Bߢ l5x=9bML,$$ 2:#`oν{E?": $x-,, L&1'0/wBGKDh:kQ#p!+/p~۴//&0Ε1֤LcGp}y&--eB@;MM˘;(G#PTr>W(x(qz(6"4(;{GkV=}Ml3cM|.pD@GW8D5IJ'<#" ;#{&4*Ca=e[6" " 51o˝cɋ_l]Y>AZ" .!5ƚX! bM,gz-UkIG=WvCNQJ~'2;&-y_R| AD@Z]{.NhmM׶~p7aEas* *qDyB m 3tڶ7 tzHa: `HlӆL,ڴ-=NIŴfxHI†NCD,lfkBgX!޼`I3PDhTU_=[ۏ-.*XRn(*1ܾNUᯕ74V0VnmЄ~r dIAU׎ V9wbN[L:wR]4fkDgn؜V%-&\[Sĝ#cIܸ2(MEKZ m:t}Gk2v׵kF+rze)nơ[[뒔ɋJH`.Oؼ@5H $(Ǫ"96sfrجi(M v0iN*['#!E1|ΙҐ75Dk3hzULXg-@D"P^Ѯ sܽtRrʮRKA%x] zB*dq8pUBؾХ$QĢM`uT|t7eߝ%-P(l%3b|r.[ZOXbM^tn_KE ,9n'2\_M;\5٢.;nջ2=1Ώk7u6hԌ|HJJ]VMlĔɫD xG?[ڐdW/Ma ِ+`8VkMv>դ-J)fCDhr"6S6t.5ˆ!yRO>{XsJ.m &:kJO.|m&tJDQ  +(񘓫W^XnM9l"TgEVϩJJw}RU &zR'wm>rϑ(C2]i"8PōTwXo,٨0<DGz,z>a2s˻ j^mxNoxkɻOҪZMs7S.=K[qC]Hd:xd]M WyEd,vx D %L5j<)9ULlxf:Y¦sV rnRӧ*ll(w$%VWZ51BC}M~mk.5j@ 'TPnT~)7)1A~$`JνP2e-}7&q-n皭8`vԽ*abK #O{\\ K`jU*lfv vb ۯ_MŵTM@E1bނwqdsV*??8x^,ؐ5H`xNȞ5?A.slάS/*'_]*eF.C{ nq{xHrJ}w5n_& W ݻZ1\=j竜k?3{ù[*#jA̶"I0B?A\;.%x rp]D0PI ǵN(DlqbD,dM "cɹ#yryMF^ I),K*d-g}.:!q lfǒ2f㠆ʥH $Af NyYg | CN80y({,3Irn/wEmSN >. ~>p`jjG4{p0w!b5dfwZ+[aXjiXX 1.Є~h 59t#^Q9e=tėg.Ͼ_pv~""Q[Lσv^ǩfCEm;"Rb:]<7A.TJ໙eU.S?g!5A*q`K?JFUJp ͱ&w3tL:~x t;s&&%@`W3;v {0hӗzjϥ1??,yͰfb YDG}e! f̒å8U=s6Ôyk{ٓGީJcyVp+ %zx>^ˣs^y3D Ejdd7WwjզokP<0&zph`MٟM7⡽z>NP$egHa@S/E~y%5NZ1"05ag0G1JDCBzruF7|Y.(nծ_(0w vp3(nѰKD>8T0 OuťA+.h1n8'8ㅆx,bMx݃!fpm:tk¡#N}1tD);t/N:tp2G #1~əCG{3tPWGD!J:K^跁3t~:G@DArE`_+=y5iL=T (CDh 53tNh;i q D@DhQX5źP!ѽqmNDPXD@Dqz!{s( " km@aX}!4ք㮌 #ý 365o4?8*qU&P0X85C` +w!d[o-p'&<ԙ#aC ULiEm^BCׄX  @D,&B&WL𷤬eRXl5u|=AO2ǜgU@D=M׈fZ:uL{?4.7Z=r8 _]ϺlQo8ZQ6tFۧXjmYۦM`E$EURa/+fE5=.ĒyWö" V 0j21k׮A %#!SU].pGqJ%m.UOn~Veq/PEj!Xctǿk?M&Wu386sgo &i^ˣ^,ZbM՞fˢX1;tzI=_[?z˫eU~B=Jd٣"РTE8`)1n !zQ328tRRjҠ\#@@$3..$G pxT&;ľ@6'w\fSRz6kBPY5%5٠ s晧z{W :"GE&Fpksv7W1PScqieؠW(pP?o÷8_. ן"0?߆1t,PͫG>;lVwam'̣͑Q=Jaf$d]͠yN 3@u )#ɥ6d~U׼(LP@/8|] ah/MO-w)WĶ!`0ПGj PD:} #h$? +Kl˨aUe4 jɪ~S;/8CYk? & :tzn/eT;5aي }u+A+he$ǜ t )L YQ>z(dt gV\^ZhiL ln3q"WϓH91{%YYZ~dUWقim3קJEY1=&qhv$`c>~:{-'dF89Y'G뜡#vZ|k_,&zPMQhdjkUVo;M_6(^5xaֵž:(䇳yl_cVy['"9(?Vu떒/553hnܜ/ڬՔdᠽ<9ʹ=# L'cMӆկ?.6loζ!om=pS$X4;i\@ [Fۧ~o6JM5c[ODd\s..j!G ћAd][ |lp Ptrhl*RQK +!&p&Eҿz֡㈢D9> A=.IDAT%0OB$:Ke))9F~9t$ ؟(e"gq<:SNRHKGFSA `m xN{:Z{!9,x :_C"[5 4v $$kwщ!$ma2y6Vߐ@E!FjnpR/Djǚx> [k8%'0!{46@رg?'٣o=[7եJ惲ruÈ֤2drҖcv%Df]ffn-ÕVS |+fڐ AR8r%cxYfzvnY>xCB)7M̌.˜/ޕOٶ `# .!Φdٮ "2)$̀ 7~'Jsr>~!N n(|Sc̫_m۷mשU>){b=d\&]A+ #϶rle-@m"Fr4N{>>WRi쉻80PH Z~` h$4+ťV{t4BCAI'3r8`I&ʤWM"{ҵX{:.t>ǧ P$TDJaHNn~Ս˴JEr6KЙ͈f7f<44s Yy,^NF<)|{ت,XI[D{!XHu;=s i)7g>,98rk51&I#$o#V zmT粵v1!4NCB3N[T ǎ" 6{ʆ"cފ\4 ѓX*OoA KZQH7Ԟ^}{(' Q@M9 eiiG3lBmƴo5-9 "SUYQhdcOGL9TrzDG""?9R\5wL =9,6?%M7:,4G!.eWBntP$,"\ؐSN Ʉ4oNkvM9ʙGH4)B`˘IAeM="41MJK8WTVE5/+'0dD6:(s l7{fq(%aCq-杜7v2(LBS`c(E5A)0A-6D7," ęC[=fPL>pN(C9[:4'd¾'''2iC,&mBzG3"4Ě B:Xe,| %).*)_VYR{>9$ ׷'+trutGIivl+tj=/Kk;"n@5WV}Gv¡X^⋭q'p~9.K cM̋qmNcM  - 8XL&ʘjy8N (">g^оiZag+l9ű_,'plgxDi%wxNn~ȝUcnNRώ )A9:[,E)P7CWG@3{tTiB9&o;mKO{DX%Di RŁkW[;Ě[#&M07JNۧժһ‡x=o`'?&D@F5f5a KY-T8qgӯi0]0YBI,R'1b5H }#*I6fÁ10q#HN$f)OK,-]#I'Q\ /lHFK­#KjpG/\h- j#5GSS L/S=;[E|H^[yAo!⑮ ;]b0 Yjڄƿxc<+ >dR)ZO|\%IZb#,~ YW*x^XS,glʅc :&"&e`3ArXsSAp o>'l̆ɋ1t~^yw:5<45c?vWAAE@G y (̏O@GVCĉ:dc'mYm+"#h/&7Gk2 R4s*|=L|tUc uJ0YE@m~aUt338HƢ&AXCGh;i[Ԡ&/~Ws? ns&d"]BߢAafSM~_-b`A__JݞWhY33nI3{9b杘KA+cˠ!Szgw2jeV8uLltBз'R=_@sU~$:(ߘcJQc".33B@事qs3x> g9'6>r]'Jă'MRrƍ`?ju&ruȍgE2sfQƪ2l4.9F7\|տKKK߿Ra 8;>37޸h@!?7\Ӻm:jX{4`5V÷ Ń}y_aY#]>c_sHU`,~Ѻh@eCZ!| S+։N ?Q4%W?]o IX^" E "ƚ jԓ A3 6e"YcȲKo6}[FӎKԒwsj m]ڂŻi[X$ADL5}MdnNwj`qU?P6\_Y1(5Q~&(|9MuKt(D/dQ5byږ8jwJiִ0(7nd|8oIY\֗m Ȏwb}OYD@fk !:UUe *SIZ^e*0W_x5kıPݳ'MƆq+}t[$z"[ (/5R$p|1_HꌙrZp_l%n%?9 0:#[;"`TBƚy`j+oaҙOW)d=1.Ja̘b?sB k!@yY2lYׇT \IR @@EcM}nfb,V<U yN{IYg8VD&NR3s^:GO4rS8lYyG\E>$lvL '"&n:k hK>7~j٧m14d:{2nIC)!j_EkmJVo$gai TD}2W Kb p舺#J?Ěx=9ߟ [TrMH'P%@Cwgkq}g#ioHh[K 6v{HӪQ_uWD_ؘg2q,/ymkev0A|k7>#gDl`ڶ[zyy{z#r] ġe}[i?{rxNq:w,`{DB ԡK`g`!C{ cLAg[a-" {+vۧ`"<¯/az=݃դh5i@p4"6XM6\##"`6}9CAWYA_h5i{ZM\$ h5q@F kL$s1p;&hp ֤mNl{U,G|p@I߰h7n*L}xA-V+t^R ܇78p_ƛ2[jժ}= J㍍#y&;218 Çl5V~:]"x@İ<2.:(v=#35~x'E͝ywƁ? {!ā]8դF] M@YM66 @!g48," BZ5VWh\jҸxh";IENDB`PK !?G++word/media/image6.pngPNG  IHDR`- pHYs+tIME 77 tEXtAuthorH:tEXtDescription |hardcopy|2012/10/17 10:55:55 LIM_J SGA250167Q tEXtCopyright:tEXtCreation time5 tEXtSoftware]p: tEXtDisclaimertEXtWarningtEXtSourcetEXtComment̖tEXtTitle' IDATx] |տHi#AJQE, U(|>c *"|XH-Bx$D%;ܙٝݙM;9 {νϹܻ5];^BH.O:1vAZt=7tPL$Jb#w'šϺ=Db[~](<2aHQ(Dk翴IF P%\^#j# S:>`wSI);,/(wfׂOV~I\?jɩ J^H dI&ĄA߯VE+yTRL?bPi|s$Io.đsb5kbsEӾJc@As.!j9D(%} χidnKħрlf\K3h|||7 } =5|D/eK!dѲ?*5m⤑YAg 99/=:p]Kfzxwqr`Ńyl:W_Oؾ'Vr!z;f#z@ȩ؂cSڇHRoV͗  /v^gD᝖P8TZKoM/dk/#֏fp%Kv(g6-QxcA`ܘ_0-}؍9)W{NH|'nԳyP.?ygκ~'$Yg'Wz~ښScx~Odv*dˉs@0쿤,\mepwrW.Q)p/zSv@Nz g`LHnn=qY+hR1jOU?+tddĚyO9v憁I\♢gɺc[R3U\O|C)}tdtq2}m;̦5̡M_z-`\gf|DcGj)c/-Of)=>DHҺ{f!e iYӨO˚.jMȘ8,K●Z%,>{|E_>tIJyn[NRXZiJVK"/6K37=Ǒy֋~iuRu:~饘(`=[~ lGf&mI' T3Kd"0췟Sr"X+D@hPe 4s5fHU11MiFU׷GLDIpE*Ej`46 T Zm+#ˠ 36&1uXc)y/㻅"o}'WsAK[?#N WlBg(GZ oWDb+".1{X:XrEݺK?'Oe˖0{N/ԫG\bN`7'f66 5WN\uƘ&nlZWoWyݒu!pm}}sO_uk qNL\2a"M<"A@NXG bMu%+\1D:LƆ={i].V<49X %Xz^Sl9pg_]6kZZcTFE TAd=GjrNi]Vof |{ϽgxKzY]CN/8/?17 !!`&F7^AW*=ULGBϛAՃY~ 0WW׼S_g"0]h~W_~1AX|E\`-g'/~y "vcɏ? xAgu%vbNPz)Uȉ0H lvwtHhZ+G#Pz" zqO]`-`;^80dPW9hz̐ NNQ>_iA:n2~ZVߛ%iXgz.qƬ7ۄx2j(``%YY'G7_|՝zc^c"`.~fLp8Y9Y7h` ୢjiP˫vxn;_!ڱY_!wgl%`NC!b`jz/[|HoՎ ?՞s"O coCt'ro~Ӆ_ 0h6h9 @`wyB?_|?+7)wN6d3Mu͍-f5w|r\3vvnbNX#G qgAr_۳RvkD)Hb@58r$7#񿚦f:̺q6X[lfft؃[3Vb}$#YI ?X{lMf @*]E\U/:Myru) ?Xa={޽{K볒$_9}/`p!1g5yle^zG ׀\Z.2O{U}ifRc32v sݽCJڅ;]K楘!^At5kx})˛@q /atș'ODV1K_y|A Ox_vhob,Aɔ9k8\SAoMf,wJWq{ ?#OUJޗ+ ( p(#ԣ+e~:Z] (Lp l^>VP”{E`|\"Q+<(z@>ٔ Bn[(wY*`Pi 6&Ǐ\Rů ,[tm=Tԗ+:pጢ/V%)P/u~v(z_󂅤ROFc\*&\!(ie(t"sZ nt+gL 6!ARVzv J^ Pr\5:++Z-" !e0,rtEU_l<~xOUUMKzRO8c g|aH?=e(^ֺ/P:x JŧrzDBI%T_zju-HdT2E0p!T1fV13 0`}] !+^&8T h7HOnC'!%ݰ/@|d E6촲9O9qDoKdv=*i)ͥ_Dҳ~m9 ߦׄ3uo}V} v ` x}B5bGSƤ&.,ޱ*'%x9 U5u  {`9 F!zQҧxn'gMݓ`Qt| D"|[ucj,Lt3a*N;W8Di6QDL${Fz9풹֐[H5ٹDRzv"b ٳEDwfL˹:>_ucNw]j=EUo!>m鹊 %JU$Pm ˣ%AS0 "ϰ9"UUuSXP?%'%>qN+*"IHkJfʬaPTz#F4^` Ъ -0?&'R?Zv>95 77,^鱳 !@:}rEyetzMzKח6@:-)*#LIXp_꺮]S,̀F ,@H.|xJy|q qB``77]ʔ"FWp KE uY!䈀B)W;]Ru͵?6] SՇ3,lΡ  @KaPhk8y¸^!KW]z48 $313TAPBM/6bXC?3/7eͯMSm]uPR%)i) I !ULNӰ筿m{W,?%^z;N'9z"° -l*Iw"EnN[=*Y9m!R̊>lݺu Nb 29N0>B!J3f۶mΝ BpX?wjٽ.ax4rɡ޸|9g8M_>$R1QV=Uq[iRw{Idžw+TgO" лwI&mٲBw8 zN0R 'D"PLTa;7o[Xe%n_$+Ai իsiӦ:x1hpѻ? L=Ũ-ӔGJG =ݵ&@#pTd .\\O:511Qץulə]MXMk<>/9YQ[2>g KtӻFڰ% ID/F71z"1F@?p))hљN'Դ]ZZۚFtw?6$`:{%Y,~g諒iR@zw J S`n&p5ĥPJa9-Bw s r%Wc?|U^> N6.G }.Pp5w(0:8Coٳg=ڧx,hulUΝN+?"n †f8VB@@C}e]NL&5"x".O{ܹD`WV74F NQ1 Q"vF-&ͰG%sZQAp>_tbyWf.]WJ.; 3mb,l#OBHCjۼgvHǜWTҧV[wE_sJCp3CȮ]huJG5n w|UPMF˧,ڞ9ݻW^(,|="L7;>f媇sטU9B.4|WrkwxP6t^5''JNklhgϞGyn?Z]m)͡5 DƸ.krq ]>)X!c,9 Hܞ_q`nt1a sUKf$$%sot?q++ǥ,{2mKC8\2iD.G^]2qA%0>'.~%dˏL<~R^qJzQI|+Ɂ_zցl5yj w)KrDPArA <>#*-g=Ag2]zQ`bD_RD U+i%̇t^~#r槯bI{Ko;ɘڼ7'$xYv1g$#cNAxGAo|^9 ^%,}c- u/&JWa+K+ڟ?J"InzaСC_cA7jIě1.1{} x/܌ɾ YK#ϲR\] z_:?dPQnvhxyDRRlIMau-N>XwW|ק.kLZ_e~$k/!";מ\Q(^tQך A#J^ D++1"Ko>a?<:y⏙7 8游XXLnF4H-IYZm MѥK멙f~`[L$@ Z V7~Zl홐{[MہqJmEj@@2n2b L>/t@tJb-߿һ@@}nϫ^kӺEe v5{z7(A4Ӽ^=U6ސ2}꠳8$e/P1BGI!Ƙcmf4-Z[4UNJ>pzȣ\KUqcmuoPt5BQ _NIX%T=)}!(ǝT۠lSD@Z>l8s9Af$[bرc ~ q9je3[-fjwnlj#ٓ~ ǟRxQF8|30+O|d%A6-9i?D( Q~E<㫫m[mO}yTUK+.o˿;Yq-f0 fQ=yGs4qLh0ct r"^S\:a=߽*f ]Z."6yJ2¬*WGZ|kMRkX9@B+j%oˊCDX(~_]q iϜ>HD ds.|>>4{W,b!aA Vީh[;(,GQwm6*iEP`0퀵`(a @{3`Q`JbBgc_<@莼 ;0++[4@a툰FԹkE" k!&ei-|Brb "(X kD7&.!O0+!pڒ0+1o|aBG |a|\@, ]|ûtYM@.񞍨*u0VU d,q ,q1.0>O]Ab{s֖so^q@!Y! [ .yRx+w4fk>'Q`V]Flam,DS!C& »h@7ބ!)7+>!*FH!Q`00v G c]Yi5y8*[i}D*LmBInBbf[\N9ajX!Ʒ>V}s4ʔciCFAA0]jv!*Vo QሱƦ u  MFkw}0>;D#m@,c"1v#С@͏£thwhJښG`DXk*@GrD%/֮ G&eQ5Qe_f{ƋeF$8lgS- BW# la׊]~%nKsF O/RX08,O 7xhxi b꠶Փ(0DI' E3pE#b*" +ܙ.^gF bb*ar@x"’n(8*9BkzERQQ`Q0 UYrGO&*6,Ӟiµt0siW9HI'>>"T/Aprx!.PƇʫ}9JLkF/c))) 109اgj[^OxvӦާNKKjF,pۭ7]Ok6ևȒ'A^IXk!z.|{!c_Œ".jGH|V>TT 40k4$#c< 1JJmD0kLRr"AZE90AS" fiC覻2ׂz0RPGE cH}sɁ2D\DhͩAfDu`>H3njFI=B 2M8R%cJ_IfzaXL2TȘ Ia3tn *G5JZ7˫U`(T΅F3-ö=}lF0S6b&nrGE$ER q;*Sy)1 Q^ṼF1"'PDLACv>9EFxOFTl$5Y: mV RPkaD=nRvWs~*@żags$ƫqaRy{.i|9HH)jt~7lpCl~ OlJūzAaYit#pP*JTN`p\J 55WQ?O7znxA"&{B%NuSTJ Q4o"ҞpHTq@ B앑ԡW.(% nlq*d/|H]aH֠Sپ)s)-w5j7 T׽@[#~p1]I˿nVM]s˪F2o8M7a(RSfXZT\X/bqnOUNXފvS)N >/)/HxhM0IWIsiOxB" c:R=Si^yNrM%߃L t$%2Cj2$(kumPg Xe]ftBS`=Ƭ,Vv^8UiYdT&,e5DOT]r^cFOWly? ]z( Y,%{s) }KɺGLa1,$N^&,t"oI+ W5eUJaaP6m=\.O~__+a_/0V=ih75Xwn5hw@,nU^6VFͽhԄT2׀9T6fU:1"4p'~aRkӁ2ΆKes#, 0uB 1|YE].6wO`b/@c |MmƯhhsTI)qI9ґCIJRRuҾNkT.0 9HOEmDKǝ,K:,EG_ 2SB*iE|q/E~e@:>321,Әdi=O{z3GQ_Jl1+| %d䋵2F(v0[wK.pmlJ'_l eYнIKz#t)=DMu30i$Ekn#xI Q9]摣W0P4Y n =Alq]nPү7lzlcZ 4_eZOQ.R@NOfja@C6bT(~|b= ʴ8_E3͘W8k03uۭ@|3lc"qѬ.C)yVM*GHBР7ʢ~f"S`M"LŅn+-B7^׆BYcj P$b/Z`¶̀@";6aދxb^J#W5 QgMl?2 )n0!}=Q<~=̠ȬMaRt+V a`bYW #O*{A"4Krhp!5h8Q/(kazۚ/Es AÓ3CPQ3eJH/v> Ari?I2Dphh s|mlW'%Ӵ?R\IQ 1qA~NčYNths*V#6½̝N10sFJTSEFV_C{X"at{ܜT"qpJVwBy45|A܇: q|WCeȽDIT R$亙d`5ਜ਼*nf=XPLez[gQO¡RwXh sWNhF%TAEw=rWYXep #hhߘ4䊛Tìl4BPccʢVm ozmu_vGA@Pl-~-!񭋞<~ w ]D:]"K|j\6L8q!(f%?1j^Q/2TCǘ$ Jf?IO9qi|œ'D!H6IoTd>^9 /lZh1T( {2q)jdg*Y RC OPc|Qg:3 yh(Q~+%^>xcz~PÞ: %[uMDݿn+5d}żob(/ЏN h7n1KRP E i'*U~xPzW ([]S @hp2\IiBȘ;i`-zj2aC]000a+f[2=J,-T2V5C1>~E:G, lp'ܭ6}ᘛi»X(<>3IÎSP@-4@^JsY3rPmx'g#>U\F &q/{Zy-Z]- 1su(7}+\+]I="Ɛ QL2ԏ`!׭)k1fH]7ss&}8U+3s6 e*cgq~௄&#jN2ԛaO&)F,S,gMޛD-ý,Xڸ ~RDQ݃Z,ZIJ3P. +Br a6N q|È{\Ɓg^"~ӆm\TrJ}h9&E, 7-*1ŘW_58R_$(T6R*72@[#Np~5$= !KEbp 5N.,T(d!v>Yjjg0°U>b<7TR+Sʤ=p{=7\WUŢMl$*S(0S&|pe&p*SPMAVqM dVU~,Ncd' C ;̚^K킙*$8!^-i+hCQ*ntռ5{7Tw[+)B{[.-_.n e݌z&v*n {'A5Jr\e6Y 3KzM0@S{M23x)-NQr7s 9%h0JC(<+8~y*$L+.)ȱk.9j^ [<~3~D'"rMFjE3fY14œ53H!n?ΖF%%oG_,Q~̽ޫd-XvpjE ze*Q0bhL4rO'O!&%(U,C$g(i2B~QzxK7 {(5Jly,S'P /Kv[:bT! igb&%E$B"$VP߁΅CI)5FLQt0: Ga$ ^l1'@]4PW GK~0ȗѕD>ȼ^X`$cJVK(*,^x=-dp&@!_ف.PlS/֖1 )v`c zp)R)A|`:>Go)~% Q &*fѭa3;ۏ9][ u9mM/?n=i{ Wn|qMm\q7]e~qԂE=#_|吝ݠW~1px#zա1dY T*KVFW5{|KE {EPpkoٴ5U]3q隑![SyԾê8δwB{lgi%/rE)m:WkV|CřUZ?1 yoA7n$%+˸qibW'sʙ RCYx+aEKҫ#`۶޼qC^ ʺK۰a_V7X\> /A(ο}jwn|Plbr<@PGk*8瀮xW9߈o3jVVNz8s[wl ut[:\4* ̎Sk=o#z:+7<z밻dq׌yDǛn}Bu|F}t}s>7rteY͜2&]G2b/s{<,YhI.Zp*iJf4$Fy o iA`9q XZ.ŎG9\ Gp#LC$c'.2{ f>Io ;> IDATB, "<%3d5O{GI*&jLd&P'~v>^UŸ*rCO-@ SpJ`08^2Of)= kno*8`ofURClLl]\o+1{8:+6߳7( x @/a_wb $/qM +.-e`rw +æ$O3sQ{EJ:7˯6ox|4X0zoCLZࣺw]ft~р?3FTm%8.y\]ýk sϽ.9<t`;}07d(2F)L!  q =MԾ7R-NnS dוjc|?/7hgoWpt#_/hG^*n 'lR09ӡoރ3J7)a<ι؂[9m=30efhPuCG6ʰbX+_VcV?3 ŋfI!qJ?D` C*f1jD݅ŜpdǤ:Ry aeXG"Jg[ ˂0KEǯfW<iŬҲrZd(P6rnY]Rˈxc s|1C\}! VDY \(65L|%1!EpSL@^9(R*p0š,xX'Јy)//嘂]vu,;4ΰ~3[+ϳ KJ~1J̎˕l,p2 S`_uCS~ad̊'N3~ @@O"դUpzT xU?OcoaNNx_Rg~VY,.s0`hWͬlV}(:y#78Ȓ pi1i{q dU:DG؜(34fȧ c\h*5 8̿ZYS){sŜnc0Ռ JeaXk]aKL*bԬ$Ί >Dl+@qKP_1:*O>yÊhXA= ej#6 yq9*Ӕ{ykFMj&ޗԙ.ĉuᎋ"@@ջ Vā5Vf( Ak*pL2 aSlMx$[ 6 zv5I A!)IqKc Y%R/(Щ- Eڀ‘R]k:4y(Oa;~ŽL~\.sAV%|Pct#YE8*Y"'V+&':Ȁer K0-7T2e5炂HpHIBkZ'"=E\u}PaT.k#!_BK Ū@JfL)W>9Ɨ}:[ad]mUKQ3$r {,0KɈ3{Ć>i7|/fIJ-͘\N \" l}S畾hE& l-LP  2`/BQw7<'nLU*׫oj$N.%Fi(rZ*pa@:E)LU[# Ty #dHGB5$xfЯBƑHjR%p)g1>MJ\~qf6y@ Ń%U_ܳ4؍w '4tՊdYY#ץ uGu.1z]{F詢bQI a4 +;%sZQ蹇UWG$·o2u3Q)P!}4ƙ&#1*DVCxAh*"m*u EJͯռ)1x3 1fh0>c_! Tk,JD+7$ 3$ 7)f aJ5$\R  *h_8:?GEj4ǭbK Ԥf)x73C"W%!${z fv!83bqw@[g~͞1?X,E"`X+g~9/_(uU]qUQ*u"`X,*W]~f>~W}Ï_R,E"`X, BNqgeb 6E"`X,ح3\#mZ6E"`X,@A@?YY&\E"`X,E %NMI Y,E"`X &fH-gl2c@ ?,zۯ[˲%FljԨYhi miqA&c2gwmirC};C=?!\ld7WǙAͼ$݇ zbh&Gg5&P1Ldcє[xVedgٌJcTA|q`t/]]c=g$N-|6ѡ T0wYMx1ۿV<53Nf)-@A B7 S7ssS_¬SA=/zgLƨe8w\9s/'o<]}7{&~_;__<ޗ΁ I{9z+*|fї'`CoxR9 ,zv{Θ|p6U cj،kD#;\+oٲ%fq/֭Ub6lZqߣZ*K_}᯻ji_ɇEsjuab1{+FsпyGwoes%]xU_yܧNwKǩn>u)_x}/QU Qw,FZ(T?Zܽ_2j'^a3>sO9g@Z@a8zI@n״&IScw4ATa%\.Xd_U dKg8Lx}읥@|b`XraF|Ph̴G;Ά0:0c-_Fr(YBp꘣WҬ Y,Gտ煛{^jT;lf7n)I?#:KV u^,afaeãY krσmߘ<-~+Nl҉R 07ܦ0M_$6Xo0_:4\ D ϻ7F?+҇,ޣo=Fvq&^3¹EX(8Scnq72ztνޣ_.f`@,JH"Fnz拯5xd}8c O+A(ol R۴'>~\c v3x8,1&lgd6quPO **r.ՊnEvh+;"oq}[Uݞ ~-Cm9 apqU4W9W9m_ag /c;wB ?<F3˟o0U㡡=fhFTǘ`sU֭[8O :5:㌊-2PJGNE9er._fVumci1u}fPxmL _C_/um;8#%BCǦՍ.xU\r8'^=Yu,q#޿p,s*p^ݻʜHYԮq'O ;٣(pU?UH*KVjWzDf8 }sf];6k< [8ׅ5o/ _bŻ#-߹s_{nҪg NѺպo{kciAwURDKw{y7|EM} A(#+vF;h\\׉*He@VpBB tB |GǎT+yHF$ױ?u8bK0Ƭ.y;I(,e yP+1Lxηf!?w9>{aFo @0k2nay'Tk gqTaӣ=nܥ8IپYEr~kS0`;Jtqx<0fo`ZD=I4c~z~|j=Z}iW?ZٳCԂ`\5{E6wJ}6ƞ1f,U_Do﹑ uA>=0jMʉ]}zӯ Ӭ :-~N>ѩP0$)<0~vtE$rЊ}7W>Yo r}G>(n Zެ߳an (7]7g48Vlyy'N`^? BFѻk!E-WzD8vOt̃o!(WV8 kݻ <ߓ;RZ%mzƭ 4E^12UzCs(BU0Ƿ{Ƀ]|إcF}|HA~FY;)0rYvq^~[vJ3b8`aQ_ CYwIPM7u -aC=g1r ׉-ZtL.Euq<La~aCQ@{ZmشA0$|I.\+ zNpcPe31t3ZFP|kщ_qdEV::d,MEJR7>7?|,}v1@:0'\.sJV]cᲵGqo}})N\.Ŵx:އ [kܑ)jw_a6,W0_=XK~rãQк?ݏij\/<%29T(dQ|'CWz-YܴEքtvtoꀩ.?ԻoY޼"jXU$rR6⇶uj{ !ᶏ8>'7E>EW~ 2R3w;-xqӉa7MNӖɟ|JU'Mw|Ш0x?d%I͞jr|3i|DތRX _e'j}M܏YzB %*|C4G|a^n,9cб31f;9OÆ .DGSe1qñb|!yW3%[Ӂ⋬Q΍>d P6ҧ:ֶn0yt x13H_Fo4I2!A^\^bM۴nyқ+=|m78žɮ+g9Oy ML5Cs^x= Nq#b=lk >7-s'kcr" !ôΩ{A!_}Pafgj!z"oLǶ\yLL'f#=fhU[^y[Z|4R0CuۜsfoF"qA?(MTQ{&&5%djm۶<v;18At"È6 ǘZNC 6N[69-G?{IǍvm`ɎíXDCF8<" n.>\:xްþ*tu 0jJLy&04EG='.ϝaBvt  ξ|+ipDL@4l.%Z:vdwR7ԝw޹fk)م@&M瞳_Un}@ON+fJuȷ.[ץ민>xO|>_ܽ}5CӁzFCtiuW~Ƙ3!ͼ1s#Lx)v[e`TŕZx)Kv;/|~g>ãCHC}U?Ș@Q=`Ƙnk;9d?=JNDvCFކn6B 1'WjZP+ÎcCeWcm?ЃBY[pڍѠpںo]W]:?`prby9 ?&܍P+W֫WݰEykUZ+aѺy1(lF%ەU?v }/V7" >4LJNOηk-9U@E _}J4Sau.!vkwJix`E-i!M[={g'< +\Ylݺ?>U2H%`fT U=SwoƋY{Z;KSumyUyBslslp5)+]S*E0%%)_-Eh!R^‹/2^bRi.XC P.=ኔU6ݱm>|/oqI/[+6YyAry_sE"ubP: :dZ? @)$x }>e?HJ .C\ЭmRR OGUQk" ṕE"PE8S+"&禾@r"P]0+fmQ]:aX,E" 2b<\ A3"`X,E"P0f} oXɿwE"`X,tЋfVO,E"`XjrbXnNH`ПkZG?̎D̛A[qn.w \>xǏ_OO*NfPU{j#X,E`7!UPf>sVF'9乫'ti919]39!SwsAC4g ܲۃs ۷* #PCvtĔxT"`T&WլY>cۅW?ns'xq:x06 `o,:Vn4)t֐x'-N[ĹE"`X,i 2`Y9N.Gwsb;C>Pa`v>1fSVt\R# $OQlcv 5wxIX,ECnE"`X*5,i(~l;)_UmnN6i;b5EO)xsEsvӆD~`lc.wƶaܺ!b0TD~uz[!js=Qy&cOdOq8U]%[>+jЍ+"T0|[|Y<)̜k#mm{/]'R,;3gOnQ/S!n>XDBVh$Tqusp#.s n_\hӚ"e͆d4ݱX,E"`2=Hkz:()o.+ xg'%+ x6N?tM̔J\$v"`X,Er'kҞ[1sJy}t]C am Iݰ~Ga{ͱV2oZY;uQqESKg| cCR@Íz1E"`JJJN}`ۚd+zpNf| /2=byׄ & +z#.5G+USst`FAYԖ??0%0n}?'פC #q]{BMHq ' ?ÇS>dV5UjX*X?^buYqWtAnC@9 u|I^ɾ z^_|0ry 4Y0'DLx>X*#$Z*f-XN?_^>~~4gR+7x'[T!EJ"`Ǽs?puiٲGѨQ\]Jvu:=t>鑇15&i腽/8ȝT((ҳb-ٍ'8Z!ԐM! +gw\;E"**vڵu֔-vzc@=*C t$æV`:S U2FU20ATW%;fY* C =JiADnEz!p m)(ywl6#Y2gxL}R5 CS& 9w߇FQu!Kǎ-t~FXeـTE%PXcFelѻ>rO1g%"`XE } S U _:vU?aI;Ck(Y ٖ˕L! ٟ:~>wsQǹ;~uAou܎t\rFew\qZOnqtTە][vغfy1M+{k"`Tax&Ob98]*&qD(}/’ک`YNp5d $wC1lKR$Tzd=Hez3N̶df͚M(>a=rxҥV ? 2fX)XRL],]4^pQ_BQ41ݜpsP1=hD*Ԅ [݂Y>D)psM N2mȄQӮ)&>,a7#-e T_5-F஻2PVƭ,r9WP%3%PQg5"`TODɼp)ԺSX pJgA#q_Us6 ?' Ёha#be u=Lg-Zy3>Sŏ;9kYREdQ_>} ,j2i\YT0 r 0OĎ1X8(0塅zl@ܪ|+6d;=Z8}7ofVX8 60|L-32hOӠ=,֛0 ;abJ5wpف9hCiEرtҡ9-%s8q%N0s9X1ѐ0taME]?!99PYVxo `5`ޅX+C߉A6@ v?M0 x e,qV☪f9eGUtYpDE"P%|wűkڶmۺulq[d6Gar2P*lی(P'B0ӓ~bc9ͅ/2dgQmГnC ,i߽\s x 59&=B?My*f[.gaY2ڵky2APB|р crd(KULM/ypўrzFW rEۼrQE,(&Iˀ= 0QԀ#31YFiŁp1c!%:m剜1J>g=A|9Ԯ]|O4M@ӿ͛|d+f,nKfoMpeKꓜO%?%bsF8x?v~}o/W^U+Vlي%Kx`Ixo+}#[111싲##jfqq ]{יƎ0G"̙7罗$ 1)ٺs箝;vŸe"(>ʀsQ 8:3O̤#碗޹QK;S )j!]+s#pbHݘE oǠ^tzC fhe+3MX 2Tv&svVɇ5\ۼѺM6kf:6_۹-Vvk֋kcRgצrhNzЅae, mI9#'aEigXOX k4>c}N9O, ]o]@8n2@Ҥ $)6m1ߝq$ DWH؃ߎQRRN"ՎX3.V">X{]^3T7e5X2E&9hyI4Rr|W+Jp*Fi'3.|yEo8- f@LO%]1;:_w.ę|02L+,Xx.ϸFQL *4|oƷ&)u@d-1Q4d]lE}ʞ86`/|à=ܣپfc?L?{ 6=XAWvsU[_,Yݿ>c;|@QƋ_ ~vv2fR&6NP.( :0#Zb*34W6f$=3.f'q;wW^d>̟oyŅϜ?N$iZ6V0 f.EbƼLIFb9B5hpwվcO|[1{HQa¨p)ω⫭[4mЪyö-h6vl{X#ܡEuީ ?'~c컟)P\\s@52nIHS o -S[CEwB>GX,ݏ5wX!\]izJַ}\LAod@|doLjTCXikj{hHJsq&#Q'B#t?߅3~PdÖo*).)/<;z.*# F80n0Mcˆbs½Cb me3 c R9@*j!YׁDc}c3 u;P1`ur {/|3䜵[, O IDAT.bUɗ-k"ZFw9QX `Xe 2T0fx5eוARx,1ٖ0lj@eLzZqb5!25L5US!p\if*8}qG3mT"i4! :r Yӱf>~w[ #ϝh8h`ɴN~+ ;`?%; Ê=`)Ğo03s9!0z~KXD@/2iجK/NLU+:Tn-o>趉ߺh۟udʋ7EDJr]ɋJF}?tu.B;;O% B .#$mi@z y/|ǎ0 8MDo߱m6|VFo?o7&Mf-Ozx?&M~]a {_| ?wh La["Ûb,Fl5}(h>зH, C˴,LπeHOɇAeC2. h;exfHd1ήNgϰnƐ- 5%\*u"`X,82ľ &XN[Ϟ=c҂)x53'6˷ob<8R|)nJCx߈m~rpNhq O_?Gk|h`v Iv@?gy&Ӑ틋3#эV٤<[ dE"`o9N8*}[n틊bHޟ;V! 0hWoX3ö-ٍL72.n1:c9Nit9K]zve]O(wżnF}w^׬>ݡ[,E"`HhoC%5%?e)9|KfS2@McsOh^あӗǎ{3#p1 ҇hK#J!erƘwA5̳g=2e\TΡhy}~Ár2LxQ͛7<DE"``q"gZ"3" by؉FwC"oeL1Ik>Fy i/}矨a1T'3BC\ĕ-]g0ߛ|3$~G.(5r,Ca_* Bk`޵y!LϠ9.?uܓy^;yS'{qsāÂL\OAdE@ `2d^BL_ Г¡OL3EUQ òVu1cdjM`ujϟߩSZj%󀩅+E/c͇( ]^}gB6t|ord5n;F͡1ǕaUf`]| ,O!˃F;#!KX,w;HgK!xO7Vq௘E߹sgrM`Ɍ>'i1%hȋl/6SB4ٺF` b\a֏ex Z;4o6Q12 01`-"`P7_IhsP^^=3 hmR/D @!ۋƂSs/ qPܧM۪$TFK!p}7d/U 4kXΨ(h#+j3;ʫϳ%*BeAŌӚB'7*͛7y䑱FeXj>s#7$>4|b0ӜrhK*sAgWϻ~\Wbx3~PjC LkUq"`1p܊F,<W|HZ8oִ44GXL rЮWV2kG] +Ms2~ Sm V.d^4=X7,?nTp{ uOԣY.0媡 >`_3BG\^v^\;^;f$BW30r3@$yڴi_FD͕7J|LŧpMa|R.Ms@ _v!3&VIY),†x2X0 ][,BdФKenPpncFҽ^ O69EQ1/Ӕ׾/J^쁤P:S)K j-P73nu.]JѐZ- ԄA:UrU|1a*=;q1/sE2x:kLە}ò.=',ƜeT*0=RYcE`OD**rT p %ti,Y#ΨyǦ4}q2\{.]W" g|Ome6' Y TJ&`L*]9̤˄sVE"`X,UKMM5CEbž[&R?Mَ)K9XW6ǟbݍLS[>MΘ D4!UAV*MVj dN4V˨X1E"`X,=)Jr>q}|6jnKN 9_O5L4aB'3Fގ+ wp~6\~o?y= & ]t-"Oa\4 /TWF&p'a{ϼ2h1^Gܴ*5k"|Xqvt$,E"`^w޹aMTl߾c۶mP, [^z)eW];=?oӔsQIH֧5Diw& mo_O$7犋ide۶Y,E"`TE*i s\vpBo` QT̸@t%Z,E"`~h_Pm//%\0OݑPqVM]pY33Vr9zcX,@eu&z e}b+Wejn(|yPs &fGh,E"`X- #)YHbY<heTY,E"`Eb!bZm.| X.M#ƒwM±x[xvSlsx.;_@r>k"`X,# xN*HY0X(U,CZ|_<<. }<i3^ ."Av=.[몵~9߮_?ͿX,@ @5KNpwfmV܁ee&Ei†TP[leg%%%kK9mK̵Ui+mFLSSV,ry/mT!ҠN^:yp: <`5hξY,EX]YJ\n?{GuJd۲c MVm\ XŅMx#Nۿr!mS-& ry}Ԗ\\Đ$#ۀ/ߍm]sffgwgWJ]z̹~w7<`0I4;w f1G<&c{UHVfLl t4=M؇=wt}' !rM8D+WtncRs/^o4ϲK$0in@le+F52z^٥Za'hdԉ%,A76*wm`Vf[s}f%J@le,Y0>gN@e%G.5;$u{~})V|6ki2}pKf}w'#:}R"^yțkLQ^wv޼ŋC"/_V}يpk.5߶}%gvHot=>52}q{KF{. ÐyR*mUVeh]J^FXdhlj]9S3OЌwג6$m7)>-Fc Pui*q~ēH#=M4%;Mь.E"ѱ |}8 χx۽/r  &0o(ٔJGS~\& 8.l+51GQ^8 / ́@`@Bת[?؜-[1|8PѹzkQ”suv/ >,0 D#~ph4=c}(  >ӿoppxsbIH Ay052.eJt/?޵>{uuH 'ֺrLj#@L ̩@3 N8nݺLe`F]v:>hpALc/)$Kjr$660]Dy?y@8sGWepyƷuc?4]lc{IH`F?IuO#̥|YV$,58B7\ slۺc-gG#Z)޽J(AfX1ə:vyLMUhVet3|3tݺO߿֧EGnFdlVa'IH zk[w&HR~R{B[-Qy "J0֖ʺKqsYn\F,Ɯ\.Fq7T ח^b%ޱ؜1ؙ% !pk,d671Zq(zPr0K:OUo~ ޣ(E(޳C$@$@$@ }>i9;@];#2ÕƼoy}g ˜ޫRQKBci}*iܗ)%gfk$M p* kX9dɥZ? J J $0eLS4Y18l,&4oʚ͂I  ?feHFKwW.Ohh(9O%={ 5a"?5#a=u}LkjJ.9&_OZBeLW I@ ȜFY[Sf($6J>ab9cݗ@ɇӧO絼i-zZkceD`>6@?02c :qW|>ٽ6oSSPgYgŚ-Fc|,' jmbJ0'N{b1$@e1D3Rkul{eX㷋)H`Z>zy/:6?fryʐ)eۘE<##}n&OC?GOpck[}}Y8Ѻ1mi KNl`9[F: k_\3 mk992:)[N"jBn:xL 3굿I9lj#ȭ vw.ޭ Ƒ H@YaNV.*ʰʳ9&29 LCGK.ZrEcaecD*YUki9*>6"?%#˗.B .Zds'!^T?uK%CU0S6O&c f/EJ [,_i>UvL*x6Ŕ$4N8i2I ͲҪJ(ˠ8ߨsw 9 *z3` *Ki4M$0m= NƞMh\k\M<2 쏽o{ ;<=_yŗC{ {>wwh/R“DO+:jdD3V.SqEnllnvsآ ]R\#Uv&2U+V{&C )V|6wi۞r &&{ti[ $@9>囡nwΑKrV=_nݧQg~q&/4z͵kЪrQ^)_y*Tn;/o?G׮Չ]{a'bEH?wl5g<X>{rjKT@&Pg' u!1J/q!dS XnlPP[֤(!ֹwϰ=<3+$PpD2פ!clcxFo6fűPu%ےS(6l}0cٴ>~zu&U~1N}X\|w*Xcؚ#3ѐੁ=_x_} uڔI]J@z87kD078emB:_#^8خI׿cڭ٬F뚚tbxc#J.]VSp!((jhtV`.W N2L4][#ȕ0\&fm,gɸ1ݻoAqpk}7)j ti'"%wvIˬEIJ:%,1&ɘއS?88ؓ?UWFL ;g;8 6TAJBfm鐳fHe٥~'{^N1 @w2{ 06tW3Dnw D%]mk\+g-k"8 ,u.}"U%t}g[H[c:Դ},ԢO_}َ$oq鲟W5+w^u3Z=+<&fGb86fsBsw;qqq`kIHHr"}òrFeB.8.<J$󮐨`y+G qpJ+nO'Gt[v+vq]ƍ';c#T,^Go;x?i%cTVQ<''ï^|/}ۉgEHHf{9e矜8F4 /%K IbFC2?s͡]׮DbZٸ:@ײ`du/&@3vT@cI{nOW8㋊0ǐedWK7,'RY6.Z29?CE+FNM..هo>l̐ouot)ofqƀZ3]Ϣs^#4rf IDAT*vr;qqq`kIHH$ Fd1#uq|xt.Q7LˇT8{xM?*uFWHZ#C_޳q!骺[0; (lEQ-\4U@٘ef1/×9%1 ⾜xvdIHH`6Hj %ay7O??ϲK.*wb&]M֭[iM٘On:l7>֦wK˸! fc1G+ꊫ.q_3BTjH\*?=rzWN~\7À-%  ȁVNc=f]C9%/̐j͌1/Q,?+79Rn+-&̩L\*`8;1lcWtZC/clQXY5;/?>th[ ბZ'.B @(lf+C'͹22 0"X C;$)G q [oLl,xq3F=.V|7xi6HHH`4ic֞H1 & 6H`B m<^2|0d9!&r NPؕm :oDV̝L<0 @N֧3Έe9?H/{pط=^?34)Ƭu'hczkICGg$  ("\m1[eYLJ\xp@P*YC+2cs4 w$vHHH NzcƖbVK4{ٹ.'ecEY#(N}HHH 'PZ.C6CjeS1O}ɜ$@$@$@$@$PmcF9\e IHHHH`\ه4ľD?f1>˺qi2 @)P+b$a1+۲yAg(     ]D.g`kl6'xE%cDS1xꢞ~}zHHH,"g)v渍Y/k<ݍ> u\$ǫK@wƢQḧDpD]q),aKQD"Z}TA_$@$@$@C4C1~Vx o=fm阡t]iMB\p|}!`KZ!Ƌ#yj!  (%%[(fJRٗl$}q*H1廡F90TU8Z4$@$@$PR1'*nl.β$`<1, @)HRô1;Y>f'ؔeSuXK3aFuVv{fiۗ;HHHHd ۘ`1'ۧã냱蹨13=j ư nr"ER@   %(̲eǜYgH{ŚHtx,62 GώƆahh QFp_&  (]N3<6̵DJn3P3B/}ŗ/K/K>ҙ{/zPC+,m̽͞&8[>} +;#>/UdQH̤*27 )1OI`vHhLrV~_S LƎwɠJRybT(xV|}^x{|37zI_9r :gXr_V?8!#9uٿ{%CdY]א;$򶪆b=MJ!n7$$*ru4y6gl@Jt?) AL#7oi?h`wE-=Ǟ`F$0) j2$BS_ Z' |E/Kؠ3ؕ OحMij}_xF55;Hȭں!Ï]xB۷::gX [Z nl$Rb̢Sz[ڛmC--Ԑ$@ .@ )Y?ĺ}LP8Yw m]NzvnFc}՚i^UpUYsKMҸf#4k 1窘74ڬ lnX3mΡoYj:M7 45٦l\ 6 b)Dxk9u8.(6d[MQ<&! ZχL 3zf|?Q:**jIK=AEcN(V[ :Ꮤ럙B5DV:9b4>X朵O$;^я|O?  zʛ`6g7_P*dQq=쫅'6׈AKm'r\ڠ:b=Ftv; fO?3&" YUڻHlBsOA|H @zt]hA4Cn^gy"/í"to>š&*nڕf*eS֊tbNQѪqXm@|T2{<"іvGjˠ%~NGMcqaJk^'$PJ !*>w.}78x2>$B3uv+3iJx^!ȉV6fCY7`psJx8pʸD@$ʌ.4>ӧy~XEN+bzR F-sWٷww֪3ܿxT?(W?qZ7,_>&m3%(5Z2 Vu'h<Kui8}?I;ed49ŧ)$@ ԰3L,>j̙ݼҠ=/+4]B WaefO"Ra=+FG i;h͚r[2ɜWIHH@m̲D \ M ,oQ7^]ʿD-wk $@$@$@Jm̥_SOzw{dΞZMYt6VcD C˛ھDEhKGs)1O=|@$@$@EF \1h6|S_䯖^,X_%u:20r huO sl @^ deck,f7݌׌7   (l: zhgV 䛀Z6.q _ OEgRZ9+Y @)VejqY(f042aa    }"svƌMJpa$@$@$@$@ F@HHHHr%(˵L\63LaY4 @^ {AIۯ k6 KR1,HHHHx8U5㽢Hl zb-^"i99隸O$@BkK3 LQC\BWsN5o 69+M=._ ЍZe%3n.S/ɭ2a\"^y)"y ,Xf7- "$P,6fZm_ýUc'6߂!oACg<(ːޖҔ>#] v5mTu*scѶ;d d ,'\ס{uyٲeCCCxx$@%IΛW]cH`$!Иjs»gA8cX!}2X U@G]P3r~@l @!B؆%P,[;@MsoiQm.49Y?]>[x?r%_$@$@i &AhcmUsT:Xn2FdPm&ژ]~$ $@$@i dZ4@2~s^B_3+ff u)Y5)8LyHHHH $ cS1'iBLmJ⏑vr-1=Z&/@F "~1"ʋGuQMeX6 )K,9Z* st?(5e!afحE?#^јś9wuƥ/E\k]}%  C@°݀mhb( SnbO@VHyh]2oq r2<'  (:Z+' c e粲rKIʺF9KR8dLXKP1FT=Xܑ3l> *QJ2(f/0 J<+%z3}=?|2~hb&! )&WIX(av0@,yA`..$}w7켨L" fŒ,ܕ%J_,>̈Ӷ/sk4M$@$@L@d0qEb.( ls)K4s1ֳNAZqe=J4~m۷9 CeX/E"H@$@$@$PjḼڔ)ub|.5Oi7>BcI"E.̣F>‹_`!#JSHJ͜n&!((UPSĐ s?mKq \a 6&E@eS\1zٴ%C9sX8,M 0\$Ur \|rxnsOfWsq։+H <=:ǍɎ Oׁ7;k-jl< !2ODICb?̞Ky8X{eޤV:{<;CV TbDGl͙,BpjХKQb7 u1 cV=ܹakpMWrŃ9{v_ƴXc̑Z2Oz:Ϝ66C]Smg?sbG?:HmK,H \KC gK-8R\"%}=m.Oī_=%cRVTT̛7owޒ%/h/ZEe hTfe%0c=fs9f1*c4ik [vz7Qgu t\Uj&뉙;^:;{~]6KIjyR1?{pӆ/ldd9k^yZv20_k>|Wc?_,f 55wpޭ )_ȡU7`.]lٲ˗_d%K8qj%YG9gu}p|bO6C u6\%r9-⿠L/iFey_Św}r;>aWXM 1̿ɽoYq?x39+VOcܧJNH"iٷ8H. xx|<$)%Z;rY=^>UHJ,}QqgKXi&* 67ڣ[cSFsPTY=;8f{} ܐj3MtHkhoo~6m?nokJFl&`.\j[ۍͽ-Z::w7>}kew:%kLy_Cۗ/ȩ0*+`f^rqb,swEoxg{eUȄ{Fz~̒5풣ᑃ*[R_=u'ZiE/\mߑ`Ccq{k~+'Vu=~뮃HhUF_%xm|[e"z"˃J-wAp:kY-EB3yBL`$^k\ZY||PAzqgu|ý݋'כO{fMqs.ުߔrWrv IqMYaol 6xxO@6 獺ڸGu+OTcZu=pPK,˴?,$7yYg B./XP8roR*,6헽wXSe}Uh)?Ў︫wsfGM Do۝)OhP_/ExeߋF]׫jV3;?5իZRcSo3;n|Wsg(Ʀ[p klS砐'dVu渚0vhJݴ ]"%ݶuOv:`l+íƑl!pwFV8#Ov53shsι~p㍢?ϼ6-v,X:R**K~!&цk_,(X-q칅sJbY+#F9c\^|0nQ%˹λ{ojɮn;nq1fj V6~zb|%^=UO:20 ,#50BDa%2283GFkf ޖFAu'oq7ZV_l<6Sf,yNܥ.~sZ^:}K_zsgFe_\/3s96g}Rھ|ن[I1Rak_q'u96~c eClM,\]!U~֫cGZcH~mF?Uw_uG/1^V{~v`O< _QF9dRհ+CR?}ׁnB^jhh;kv+aHNsVP ˨73i<ؓ3#ecؓVF P++oZ}YmWtE7c-y -qᑑ!e5cB}jW*};d\pur9 5$/ҦWFz62k h]c1啡 xfkKtWlv}@xmI"'o3tB%0e%Ŵ f9PYiVI#=w9f^-,Aiu_ٿ+تκWc=V6B }D应8 kM\xૃ]XqU}G삤IjI,9qf % b{XQ"cIb\gӣ.RVH ;gXW˅,Mu0xg'mk)O4q<6"i\646θ`E 9s%,;ov:r060tQ~Wo]] dd %N06666::lSOmp4$aDrc"[%:,t=i,{4ݒ~,ʖ]?,mi ʪX}t6;yA*9g0M]yV\ۥ}?ܳWH^T%xQO>,3~<6^mN$P8!\sgϞ Åc.-nݟ]l=d2l]oDP1O&I Xْ\V.J94lf }^CQ|6d\}2&ԵxxY&A.ubzh䡴\jfZ  ((zor0,rNrĔ;tA! 05=4*[Y eQТJ:6gN1J[ƿZ*HHH(a\^YR^¼tNE1Xj;q액lW\4CVг*@-ɬ4D@l{y*RҲ_8  )'W H@07n)稰pBœ98Ǖu1m$>@z~lw=54d>D'73#Uʥ#?-~;+$@$@$@SCr… +TE**XȤ ",VVcJ *FEeآu:ʨ3(M]7Y2 zYNa4te6?Ջu#]ܹSLL`;k+eu$@$@$@EGx%vaIFt&Ջ6fpOgywC`IH 3yb@$VU/IkyH9KE    (5 'A+C-2*ϏO (jSߝ": l̔dJp  R˲2c/\^CdA11ʹ6k4>k̍S ¸m))(+VӦSD2@h*ޱE$ i&?cf欮 @Sf+;A"5'7=Fr[3 ,Z(@$@@8Me_I`"D' c1*T<66*š{k6 vz_c}gȿvs7;1rYq^zK/tܹo @$@L`ܹr6(p`;Ʃanء}F&dͷi~}.΅Ѱ "x1M /)H,ŬIxfxWvHHHH _Y1#PѡWVS&k՚rHHHHH`B+2[toaO8:61BbL$@$@$@$@$E2HHHHH * pxHHHHhcwHHHHlX*cNm?cH`|Чr_rH}"Q]_1S #cds&gD+3"#cyWa\ ;6wuU_׺9HHHmiVg1GǦN~";›[0+Oj@$@$@$P*dl` N $_}$1廁X1r dyHH@0Z'j^` R"yc.%2 M 03r;II w}|.C Y4fd9_g,QjgaF}$@$@$@ NPeeJ_S`ڱ5wnk$@*G2ػk"cdP^!E-ZYf%RɖzV"%/E0#HHH@0.IJ,L s_8.ԽlRhwܺݔ8]{CVbz{[cܳ2BjX9)ks,mlnV&g"b`T̥`HHH9ICW.3┴.,jں!IھŬό-iJmlhK*1mfхg& ;{=j8,(W֝jrxAG !"|i9O;ꍞX_MNY1%iſ.kg%M 71) @*b9^xb4?1/}!Q̽۵ɡaq -QC!LZr1:o>#yQpl NQD\KPbWƜ?(fY`NM۷Hfq1 b*+m;w*# qjx(}mG!?DzěI@Hfmwq0nV2 qRC[9 H pc_b\K jc F 428g7O 2˾L,L#aܘqࡽ{G?ܻw՚r'MR:[V\^Y m̶`֒t:exH܉βeR~ʗ jd[Kˢ<Ʃc qh@Vt6%Ta+K&}Y=$;\5L ?=>+F` ge,%|3N)d _} <o5\c/Yuj"40H](MSM $PX<.FcoGGv+_|'> Aeo^t9@Ux'#G3~ c8gZ%FJѩ/[.WK>wo cI`H5ֈT1prkSLM8k$Pcb#'KWE1bo>w!峡6N + O?f5=Pm琻mwmHHHT P1'~%P"X٘G~Ԙl"XqY1࣬͆zĐ@s RˉFQY; CݕӢ2E96HHfE3I@lb<د+Xap,2&)^y0UpՈچ1CtEsޢH  '@\;}ɧ&kYYʲ[vHH#f@",VbJ *FEeu:T1fPK53 6XEŬsuprmzk>extKU֛-LYtyPs|3y*ֲ$@$@$@Bo޽;vexNfbJ X%V骊oIl=J^#ۨB[1HHHf;f('O׿[[׽M6` LuMeuiiM{+|rHHHH9?dkkk`&`K`-hMiYm'+JUK::bnΪLD$@$@$@$PDq3xDHbu0nD"dp3+-8;r'l <H4vkQheeeEE~C2WN,>KF>7q?.6]w}2r0O8    %`fT̃v|UUUij܋Yx &1o ui+I "xc4i)eLF$@$@$@$PhFArYdR&y u<7`sրj4V'&mX}X.HHHH2ZYNG1/Xĉ֭d]$F]YS&ko7'6IgvEߗYrd8H$@$@$@F`g[^^`hq\>z1+gŘ&g1sd.&"    Zf}ŌŘ HHHHro-qL[+O$@$@$@$OZ1.(9|Y @ H(.Bi8|XxcFF£#ᑱyW-kK{G$@$@$ e%CKg*l1Mq\>tWDc0c9cCcCCIHHH lܒ9hYF8z⌒k‘X82C4WxxTz̝;QSZf&LO$@$@$PRE3sabl;yvᣰ.Gq O KhdDaiKc?S'Xuk"<'.w7<8[V\='@&  (Dih CbEWv J+ _x؜.ǴSm?|ي}HX8"/_ug8eWվ{,Y   !su9*h،)!zU"1G`kDF ²n /[S;_jiewC.1Eްvl42<26:2o^&*)X( (7Ya;Cn@"ԉqҳ/$Թ>nmp֊~[fM(e=84zӃO=zN?5888sLa݊e߿{\8QC_}yd?oIz^3e`$@$@$@J@k9TiObvGhZcIɨ$u#.ɓ;[i]*yKi2ڳ/.M-E8=']qK70yƷuc?4ތ~e|Ph?>7:z]/~?CY @Ap[WWˡζ[Lz[@n͘g-M].@$,SdHT7|ݭOS%c4կѺW:ўn{W_}/=#-^fll' K$@$@$H;u3rCCho 6m;x74js]Di@t/ ~s8};~U+-Fʦ^1 ~ʐ(%+kj`]F l)C?|py0x+/}ΩyWUUT]] :.8sQBqnoYZ߮ l1'Yz|M;)2- N<*[an3ų8`Ϯ"&Ûshh gϞTPoa^34k}FwȜ*PSjQ*"u歆C0[m4]ßvc E0 5">^|#Ph 51!N e\>uS=cdk0 C57gQBH*?MMiK u6oN߅JhڂyH Kr3Le\4s)iI&A`i~f`i3skz^Mnf%M`hI^>ON2V x*(?nSM=tXyS*#Bs ] .ৡ_Y3B8ǎ?ɓmvǾ##{l߷_yξo6pnmk/2ٴZz1}T# [F1)|tcLN$0 "A߫s/3]{w_}0τbMd-mp %q B<7ؗdczШڦD3:rj֟l_Ky̙3p7?ry_oxۦ+-ZkCކ]u-!Nd8%;3__\?'qg]Pˆ})?zvsܺSp.qFkGJ{iNpƓ L-gb6@Q/A-2(%絙%]x@P*YĀ9Yj_ #~̘lHb+l47gܹ󌲊w?7xvpRlǯ]Tŋ\pA9sr~{Gm+`FMmW-VLCǬz(ԳA4lj,xTnqڝt3H ?fbNvVUkѮN#yE%h7׮IEdN0~e -; ?}-B$0 T̓ǬOJm^}2O2Zc28î=3\uEmdy9vl;gǧy¬;xd$0K $Ck,3Unrf6g=SYJ&B$@\ ۔/pRׅQvO:KntL t&6/}~ 7;qZrHHH sFl `%f v](<06GGe X㉏<Ч?o~/߽luMٚ+t≷9IHHs}blo.![(J,yPR );'PB2bc.[h^[ֽ%:1!X >9k9 @ażw;v/EE_vnl Dn:_*q{[ U OEc5IT]qth[!r? ['ֳ   0Êkkk`& 4&99IU!W/%/4(hj^3WDܣ4 ͺxze{K2'ijN۩ueaX"ǐθ$ZWC^jl_3Łx,yrG8<2V|7x94IIHH+f\xxK4lEڠzN,%d(sOaO&h3@4 t) \֞f` 6+k1"[eoBRkskAS!eU`XoV!huQu=pIɪ7Sw6g%5<`Q<챧|~xVfĴg5;0 =-?_g{;ZO   #P(keTVVVTT@ܤ9 FTĺ`=BW:()3 ҹ[6J3S]G_a6v e8UF0?u"MxSцm]~ѻP*DZWAZJ)*-ေo{~fhTmS"Y`l5O> .ć&%N @(<88k.WUU5ao˖5ЍHUʕðhR)Ʌ~qmhY^mbڔƸohkhkؒʝ %vQ,\xp@P*YiYicF4 w6HHH`f^1 /{;;1ODк/l>#׾ u~mBaX6!)H:=P. Z޵`HPg ghzrimƨڞijWeE7FٽԦl=j.پc$@$@$@E`,Xpĉu֍c]fgdYj*Ȝ85=М~եmFSfQ"Dgpuq ]chplgQmV;`S[zק/VS-_wtaJkR2HHHf5w@L| _4Yx,V^^> ue"bޞ0 ۶'7|צrTUrIH 8pG?ч>!D_aܹgϪ2!{߸{7(I# {e`1f~J9F_s_HHHH`(X'n3ᡡY b3lc^Xxر֝R[Q륔    &@Tf$@$@$@$@M??HHHH` P1O5aO$@$@$@$PcIHHHTf$@$@$@$@M`VQ[?Чr_rH}"Q]OIK$@$@$P,E1cn jSlze?j_UN_,logwưU,jD+3"#cyWa\ {XReE@  5+c;jKrYU2w}ghw~ԫIW=V3kb* SQ[u)~ rU1 @i("\ً $q1廁Fc *F{b^ $@$@$@@*f24)wzj<^Ֆ*selQ-:)Qغh%N5$UwV]!5,nZw=?|l=/ż_.S~}^7+^=uK5 ^q2xOמ훆~{3ׄ{mBC$@$@$0uŏD1lmٸ>m/d$mN6Cew`>%m(  5 lvcU{vmM1iC. MY\|`=V.8@|DcݞŇ1r@$@$@$0l1k7fWQ^Njf뻃ڻUc&o7⼵ui|:(mio @۔w[Ya6f (/ ːɢMtsX4'7gϜ [Y4ee"@$@$@$0;b ),HŶ[s ֎Pa ̹PX9)ks!,6FO >|xhhX[4XD ̱py>2D$@$@3Kxsoc6QznlB6t)3nW1[M]7Ҕ`lݼyA G[ lcG9{v,Hi1C2 ,7<ß$'  #PDYMSa}goz 6]Z{柿kðS(j.U ڕ #,R>?gʑݝZdr.q+~ⲬM'hlQߪ;?cMPWx=gϞ˱'"6fHw5L9沎WlާZ#A 4~J5*Re9NQVs X30^.AɃ-$T+Q|24C1H b v-1'u>:SرVm(FQ8!έx+䫎!qFnviGx_"m<:8Szrrg'ovxhdxhiю ]62Z/]zQռLy-;HȾϾo{Eݧᬮq3%& dޚϚ,qZjj2ȟ|}U)cmC?wH! ]S0RB"nz b$@%PD^S԰^gceMi bk8zW_Szu{O\w>vS[~wOox[ӿo߭ZlK` \^z+p}/g΄፡v봵^P7^b통>sMPзVV$_b|}x񎧸㖳/Il<)%67+ܪpF)G,v$o\L(0atw8sמHƙnI*ϔ1"UW`Vf_+s~'ljF7jL1pJt) A$ThVȰvbQ #!,ͫ/]zeWY~/f\qˮyk:w_<y .n5p-XP8rT-*G\le C"WM7;7R/=߬+lOleufZ;" 9E )' (1R3Wʍ5 FuopL }c(NV8nP ;&RA2XMo2 =OI5tɬ soctuIS &B&@\ȟ6Ycc⃡-( "JH\36%k#b? ?мy8w^̲VFnYů){kE*'ʔ%,?0o/nz ڮmI SIJג: 0֚/,vn f-;U"讑 eKk`ZNw3yeJk1ͷuӄ]|#妋/$%@fKXizlO;@[qTyާZ1Ol‚`!zC0-w_˷< &N8w\DH馠'M6s̘ ēl͍8pL?_^tY^ɕ56d>9IpE`{|]S[/yG)}bɅw3227|%/#e /efXH $۷_މꪪ*7j <9'|.䒯y 2O@ :u3IcN.FMdOiaZqfn=yX++u}µ,6pl!AkǜRx۴ix jNyqmXs&ČJ y􏭒>ܯ_?kM{ t&YdnU/jƌhrsi9!f]-5y q˟^8Ԗbixp!<%-EwZI@9''E3s<0fb#"?-R+6溍wI}!¿ռay7'O(olԟFC1TKHmq[3Xz׀#^˟]Ϛ]ߏ?ǚ*>b͚k|fkּ_w+V_w͌cN%e$@!qΝ< ">f3"V0GުV;V͵l/U'fO)lwŶTr*qs]q qh\M+k~Yy`vjCAɾX7ͮvvp邂Pڳ'+ TwpO?72dqz)Bbg E/?ܒY,YĆs2"U$@$@$@H,$6vɣ}4U&jrȊMuj5Af 3MbbZt6 lԛ6#{|sQo\*AKQAk6 KMi4z5ﹷg׻k-2tڒY(a!qϿ O!K$@$@$@ '2/qust*o؊j2;Zhbpa٢\)9%͙]s6<< {݀ +$   HGTx9f    P1ϊ%IHHHґ@V\`wnn\4?P(Rމ:vJD];Y% wi><2ij7C>2)xvgyV"k De8p ##߯AʲKî$+[~ ?_ʟGN5[9֖YHHH u G1c]v2dHEEE9gԘdKLV%.x)^ho] s foRYb~3fH+ǞGO H+@ iqv4w<1ļB){?(cq47#'7 8 B$@$@$ )暚2¹u kceQx4Xz5d y@гf88}?^ujVFOYeRPxV8B   (uYaxz>q`C借pJ&Ǯ GVYE Kb(2]Dp9T;bɐV+5^"ZY\x_9@ jezai%  4'8ܜhfMd$ǿ0D tIhX˗ټ_/ xt+Yfz=N 41!ɝL;_ZG!}[dD(%f[ҽ,  '  hEQ̭a6Eعs'1T#Z`MM]Mu˅m4| fyv:[Ln^#Z+./j2*;-vQ6fmإOIM+x\xvHacvp@Ev{'wϩwv3n?s7sNLcHzHWr}V:bV-<1{ Ft}?fŽ݀_Zcgo1{h,/fQKSq9!GnG2Sd:=xU4:aA"ÏpYr{\q&7a+!ע8Z1*ߪ L9f4݁M-|[6<>o[sb*ZWo`O*^-7?q`"4jY:#V@e;0.m`mGn.c9*a%GY{\:^mWQucyiA f!Jfy{mV26ef (y#aKH *h㶠(Dv0 ? ,BB2Y?n&t[IZs >~o;`뷃|[ԍOl|MG->lOw%W Q3= j-[}ς~O剽2d| c8d3L"}w&-_ M"C~[(M7P/Բ.dV\V3Г[7"u;Z?lGa !K1L,#39lsK*ɟZ.dʷIA9i#Y +<.,tq ON/;:NS 1 Myde98foaʙ̴. ;AY:>tn,Z~;"|uk>p&-XfH.qaS$Тd.bl+wS8s}-YoQ4NiO95x\gOʟi8]'3m q}~yeˆG_7͞mW.5F5L;hK_!8kum71-=$KKt{̦}IǦʯ'= \RTB,N& NW7*y_c @G1˯5DbvaU6#~ p [}:͇ ƖˈhPJFlD3x Yj*fO D ;j7eQ3"80jVwԚ Z#7."6i}cu}E˛%d;؋XfA_]HX>c}V~WI@FkAp%w_7XVLת$h|+#kĉs\7;mڴ3go|[l9rю}u|̔hVsF#B۳Y33\,7?بWq)Y놟kg= ֝}ke}< Ga_oUssPF'jw=_s@|Xfqެfo ZGM!$=SΘ1#HO4)>18p7~۶m}7)/)冰Qsx%Zb <eh2,7Z& l^eZ~vV (9Pݍvԣ0o#  C]v2dHEEmЦM6wʸkh(\0aBIq٦[[87 Ƭv-J &B{\nI{1 #gg~E`876> x:ɺuDsfTD[Ʈ]N!8J1=*\B5Q0Iɚ/Xy-ФKpeD<`;8S{\cBߺdO3"YCA)Y WOKwTN9O[>74_,;YZ|xғN: Xa& S -&Jlk㖱ѱEQ^vc 3ZĈʨۿ2C\9777'''llZ$c }yF4'MFDfɼ*lp;]rpئ4Z/kMLčKK73vCkڝe> G1c3$T6dJj'g ݵ{e{dq,A$@$@$@&Q&ɗ!6+1O0#zg,xzw6hhhns 7vkF.vhiHHH bHƾGH@ψ @G$@$@$@$@$H)H @*bN> $sسe    T @Ŝ W}$   H*ıg$@$@$@$@@9H$@$@$@$81[& S\f @ U̸op 7M$@$@$@$@$B(=H$@$@$@$@-MV1k}- IHHHRbfPF \=vHHHH *o-@+p?|xdgox қᑧC^ʺWZSh+͐ $b1*#׆Ǒ?#^hnHgv[<ճ2~YQX!s4H|HHH *QcJ=ab'ТY ׾ڼqS/}MdmMgF\/8昻C$@$@$@DV17wnf5=93.gl{FcuNE a6ĩTׇnq ࢪɈf4# 7HXg,dWa"9e}e̓c'  t#`1s|-C-~E>sƳn_w8sc?c֐g1b/{rư>p_~f hO˻zҤ{ewKxGgk3-^~7wMo}ښcL&+!x䒢YR?gpO22\ƳˢmWA$@$@$6ls{4)ľ>:w}Zh܊/}Ybg͜1iE>˛mve?n;mh~쎦= tg\u{͉C]iE /i_Ր>M15}o^s~i=p+.R:KY۵kWc1[w9C0{v!B$@$@$GvtaaЎ9@yoZ4m/WP dz̔n& Sǝ;cƊ3VLӧuݎ8eU^ SOXc&Agµa޻dN eW!T~_2gݾ#UU n7 r 0CDehnǼiv$]>OFcByB D%ނe؅ $@u[ p @#[s36Iז t.;kt1OK/oGP¬&пW._0Q=n&V7~SE?||ڝ: K,!ԯCaȴǐ޿ku=ZQ;q׻Kʻڴi> eXm[+U7͞]MV`[e'c|M״Tlp^tJ3͉=J#gjf4'adAEK֗/_gHM Y8폾\yqK9s0_R#Ai=Ӝ@ImZط(JXl]oB$3L61szUJiK۳ϮCТes>߆f| 'lG,bB.)lg_G>qood߳r}}ݻjkk]!N&∰3frQLn9W,ZI8 v ] ɟ$K#χdu \1U!ȓVxc sd5wVsisSuGZ^uc?W6]w'wΘ[I"'ʩ,^?;;\` IDATpV\}1û, cP1oZ"Z|AՌSW[b,:M LỞU\ffcMxB& D3cxVoĘeIpJט5H rF%s`gx6HS|>˚v@{$6*C=V.\WWrt|^f6j20jiٿ؈ށsnsNﻳ< +wlKmۮqu=c_}m7l^;v:`Noۮʂ Esfo#eKxo٣8+N+uEIJ/GO2xV|4=*|kIBѐQ4b &x&8=[- BNP(%[1ĢYf@b ɼ?C2):Y8盇xOΞRhCxHpCt<f~"Cl!Pre u)s'"/!3|VTp>ftb} * ?.ϊC/[(EG)$#P@V%;/Y[6%XKW%qcsMj߹ٸ8hXҦ[K./k@dD8fIՊWa0/EQ ;b~tS]vyH "^c{Ŭ jNt* ],?vYdO?nacf/^v:vpe"Smqh}[9^Fe s9-U;jYbBÚ)!xZĀ@ 8G PxKiX[mԲ^Ci]?ͧe烴/+G]yf DA@}u+*(HlNHᲛP+OJg,6m<}pz's]WC_U b_\nhDWFuJC3لKJI0k"A| DFXmy 4I'GIQY0+r.|_1b8M+oZ烝- đQ7*f $ XJ"/`R.,ٕٮCUWW#f,[~[Kj6[h\[W3i^dhR!C]h(J'YMEupP9=I qzz5}xc7_Xob4v}Y>phG-q8T5qĹsl<1mڴ"š$!?:W#9%>PٯbrYluyVgn֎ڳ盪G{׮XZ΋߁덚zv~q5m'XH333lWF47z?HD, $3Su]~?>fNao$!NeB0rYuBCC@c=ݧV3u1=ջeddyQIa6vbS7#  ! ~~>fДxHHHH ji&   HozA3{z8y] =^z35<e |2vO rfo#wiK?6mgdfg C0s}eŽ$  'd ಿi@Fa,3lAv]M^ wq:d ^m۶<?c`VEDo=ɣ`&Q|B !Caшn:mGI -ʵƷXtT?Z$@-BEhP;ȩ#a1W{n׾c'Wf(Y[g32*;#1oEX--@s&nq##P8bVK.Z-jvCe> @s#!תʩ,rUWڴi׳)kՉ3~CO/k0y%y| 4s&Oӎ!́ ɟ$_0PiM9Di/Y 3w4 4c [g< j,臝51oZB8Bg_q4D+3^0 d_'L@tjjT?[PP Kg)pQct(Cл>iLe&.|>]>3HA9i#0 (c%Ccf[, j'O>[=}/cfFe (Q8O/1峄SZ32\%B,JƪiMX;yjp¬:zbݹ&tz D@HD`9wջDSf 6*&BWw=PG?z_Ox~έ4?x2j|{xnRLiۮG{ظu1;O=Ȍ8i*Ί}A/--Xd-J7gƀ1=Qa!p!~\dmٔrE ɬ-ZI۴aIՆxX~>]ع%/PM2囬2H O^qЀV|5~{tZ4vs_?q?sw3fveda_vvu^vhݵ}b6k _Et)WbuM4*F)RMK6Jlf (\tfzl]&}>H3X_a ё@ P1' &>=_=yKFեpٟ㆟֦SM󫗼ཏ&wA?Ni BC+&s:8+2ľ 7Qc4ٳ{elZ_X",m~Fn016fT5B)2CAIQY0ޕ9|ňP{R}>8$AM =L<_ǎ=c;qsEg꥟kIyg[^P BA)6mʸblrfRrU6\W_\|%RXg|d%8syV+̍61+\:;_`6+񇱫%rqq_,4<+vVeG$3ĉ~ᆆT6mO>s̘ ēl͍8G(p%/ڰqsگ}sGֽ9Z;z:ܘfYCϯZk@T AHK}p:e 6l҃aI$۷gbK,ܵ)34؇#ꆶɳ$N:mڴzڵ[cN J}9gʫ}vy΅h>iOg*5|o<%K !ed3θtv#(#XG"l{+1b$@$@$cN wjjj@64x4wwujGUpW?b9nfGdh2Ć>*EcV(F$@$@a9 H,cF2>k:dv$jipKufo< -sdNe*]ol    bv$sc `}[k8;6x}B@uVrlf!(J%-pb!  h$@p ^Ѻ|ڪ}gxѬ!G}Y,|r9+ɐ "9>58<  sX.E TW<#GTmo3/8m_VA D\X'I,8UBHQ6 @*D;/koY?m9Z{H'ǽcl.wnnq_Rix+ @bnyl!蠁74xkj?oqjw]5zuwO~X n=v $+p1c?|U|K@XEe#Gvo߾aʯo]_rKo}fXu-'  HE~ 5-"5y<1r8    0 F :]E    HnJe//{G$@$@$@$ C9AW͒ *P& @P1'<%   HT)rM    bNx6K$@$@$@$"SB$@$@$@$@B2* $%+WF ڶmۥK#F$eg)h=܏X%  Hr{g /pIgvZ}̭Ϝ- @С%\rСÇvi9s\ vHHA?׭[Eak6~~Q\J2$C$@q#OsAAs, 8'Gbn4l0 @R/I}yعp?|xdgox қᑧC^Θq5z̜2ѸFHHHs_#0|?i4Gs{DZ<˴hp>ލ qsiŅ*Y2_;=t!{,eCL}wo|$3w7W3 @:bN16%`P^z'c7+3w0y/}n~aehw7׷GT) @bNk#uNq̝.G_yoMh4{$@$@$@iDV14/bTybʹ[UNDu' d#d"O+9    #`cN$@$@$@$@$l%`IHHHҞ2~  @H>搵x4VzZ=6C$@$ iױġ@@d*Kzu?ym۶ '[vusg}pVP22x˗79w=vgMҨ@ 4K𤇙_Q˖-+))1vE@H]UCpC%p,Yf> :8De(N6f9 /;{x>4$Rp0COor3yTGK]Z΁)S-\<W6U2Ay#y\,:  $'H#]n?֗BB[EY$Hr5mzUkbr$vRyTxM @k0}v 8@c>?V}WEҹuX;o3c0 cǎUf*..64GinGhm A$@$@$@iK1*# f$[E`wKKt1ӬmNt(bZvmd# +Čge j?D~Y c$  HO'>#Ggee~Ÿ$T>eq'LRu! H!w0J%ꕧKKKni旿eV%vxlHHHHZ@ʿ[4K$@$@$@$@I@1&("( N# $=]:S1Gjz>   7O9o\ >਌[ A`*WPxHH~P>x,I'@>f斣ٔQcE HsmdegwVƀw92fH]]]׮]k菄4_D7|FeDǭjxBvHH"A2gTT 7QzFvYHHH u gfz:ugiBzNsBQ  HRIzaحu?ޱmk|-a6l%k6Ag$=`ӦM0>rٳu*_5~JGZ  &`=\,r9ñbŊ$擀"b#G]%зos:%7O>V.\ѩ([YYsUTT_h.lٲիW3xƩC$@$9f-D'[a3Hj5˄H 3/F8Ǝ %ZXX CwiL2JJ"޼yfRtF7^RRC[ Xh#fXu#F<^F/:Vʇ=j(= T5D-|YDeai0HHH ;;矿袋h' *:tW_}4KD/xF>P2Ny뭷Tfh O=Fs\DB/C#_dBcg%*XZ,8fhtfTq3 3ҸF,2KVK!4gQ9,Kac  W^V:cg@Ӫ.u3z&^"N" HFh *㏫F/Tu/B9a,NZ)тcU=̅Bƪ[ zB&b| `Cȁn}@E<C-"da"A^gO |w:B"BU*͌ L7n#*F삛})9: HBe].ԯ^}Uh\%Cuȼ˔eÇϚ5KV|M7@㬪O~2sX7'"LDUX8JqB LyFF+ƥ$);&iavQ_v4L#,F$@$>=aܱcGSNzcFāDM`+Oc2 ];*++5ҤZԽdHHM~lwcnYi=(悊95/#{M$@$@-@@E6i=;%s؇ròB$@$@C 8ՠᚆCN7@FJ/-b\73#fH_iHH ħ[Jytc֭]v=zhUPCoۮ!*c{V2Hw/C4A$@$:=x:q8xʕ_~9 Vؕ aHHHH QbR۷}{Puf]ȉdJ$._}՟'7|sJ' hQtO(^O+׽I83Vx#TJ/QvT$vp)]4q W2䯋},^n5tP&ghqq1ztIH  0h׮o~|hWTT`~6D Z!@3Z&twz](*vދzV93gT?ei|PSA'|2''WղOc2UC1A3 N}<~+|~%y"~?X)zPח0HU2N-_B+uFgxv|3>}뭷 ~%2!j{(O ʎzVTIUu_xfK"}uM20kYX.!U`P׻ڎ^2'|I$@$DAO=>d4>xy DG &3԰Zd5~-jfO!*x.L=3F >VXQXXhKd^psν&+6~3 ` ,3q嗫SH@LI)D]a/K4w/բW}& d od@E@_g|J`Μ9M\WK9#^yn.Ν;6:HH`- vϸI;Zd$V4_lX oL>T})[vHH yǜ<ׂ=IuTI}g V:$ @2G2] %eTI}:wunݺUUU%uG9  $#СCm>@*c8^z%uG9  $#p~ߠ!I/vRsR_9C<[_翉IRw# H.C.2 izĎ@jPbN7hpKHHHB,rm9    09~\jɝg$ )|9lʈ\{[AF$@$@$@$Єf>f&9Aj쭯=}cHH@:vnK"8ptn$ @G| NL7s([‚\4ƞDCI$@$0 ^apH !WQ%(/M8XHHH$#clʈ& Cvs8#zp 82t59  /tVϒ# d裂Y?{{乃#D-رmkʄYYSN-n^Gb泋-Bx7ʊ" :|p#GV| { >{CKK1Ee@Yrozf6з?ʚe1fFD㏿{UHo9cL='L, $!t5hu99ji~'*mY.px.ݺGQ7dvB߳zc.9ZLyrO(TL 9k[anQ^wg1)fxc~aѓW^Gg^^]XYw'Jx|ԕ%n2Y]e|잩˗ʾ*H#m Ʀ| Nk_8P hZuZ?0DԞ={ v?S\UߐlL @uD6'n-| Á=! B {v>fHI:w=F Dh;q!jJddM cnFP+=9Q%p^w+m[ygusCk`ΨQ[V&25# ȑCPO\;̷$bQ8_8P>IQ~ehSuDev0hgW?bAgz;֝t#Ѡ*1FB_,ri>cD-ِZJ:t'|lTaZc1  &`]V.[!>QC݆gE^d<+fY˲*SJB)iFQ]5*TcEըt0 NAh*>RfUűckJhn%DN;_$Fd8(flݷ^W5Ľ&~Gvb^Q(2=|}*p69 CWY  gp5eQ=YgF\ 0lPQQ̠pTh Z=eAǎE-X+l[ F/?`"98 ,V 댳]CڱMDg*?_N-41jDj;V.+W)m`FH4=boHHR2F-㘑_f5@a=r/D!ݷ"C}Șp ~be.*îQ%jFe 1l8w~u궱v`?r@1pC (i&jʨ^@zHAMp@y?=3H,sC,P%i};KjtkE7ơ;azQ@-TQj*sBwgIHR16nFB"ٟ%B~eЅ҇3G> TZۇs𭢰|}培t`kƕ3AШꆊ67FfhP?ïN}iQa ʊ! $-; LZ2Qw [|;~ +&U<=c /->oҤIbv  H;zDkX"O9."@$@$@q f񩽓-5 @쀋! @010g`USsR_̬IGvHH I n$1EJ9YWc}?^ *s$@$ 9XO"T"@ŜWعgjܣ;9s$@$(sq&L#    #@Ŝ|ׄ="   H&H @&4M¡2#@ @¹_YR2Rұ$@$@$8?w6TqEtqS02R $@$@$B(ooo:Dn[7lZsfk$@$@$22\v泆}g׼┡ͫ!=,H s^_ڧW/>|p~ʲ0 /FwlñQhɇhn:yP1'ϵ`OHHH \6Ǭ"1t2^4R׭GeB5^R&v~E݇^c6k.lڹ1\k<Ȏh?@[ 5z؇ A)Cy iMcnMlHH2viRZ)+?@B1l:3-q(C(+\uq`vpB5  HmPGk&T<۶]2Sx)3O qe^?˅!mlZ,||5\^jWʎQ v-{Ԝq\Sݶ*3N5qG}4_1.`#IDATcHHHZ=xV"l z3fi|&M[$  $%ʷg $sBq  Ht'ͥ`GW%%aHHHHsR]vHHHH lLu"    V'cE3z $/Fe$aHHHHs2\HHHH y .ǘV @"ǜlHHHH uP1εbOIHHHA 8*CQvȮ:$3};u=zX`888888881 ,ٕѱK\pAϮ'Ν;7(wڴi-|^Uirp23223fAO4)κ+U\IFf=<$&́.=+sȠ.⠝0^y[onм^םTz0 99999999'i+/vT+3K^xVɁsssssssss Cv1/YَSaL=@99999995{.Xmv\a1"h2M0N׫wW_v6J^VUmUX쬣ze;lumlsCgZ^a[?WF99999VsWώ?k۷cmݻdɒ;v|+uwusxŹ>f8fe1۱*gɄssssss M\W_}u^8Xtq?>|=}Fi*ac^{0= j9pppp/ 1^vy+Vsa_trd>f_j0888888?` q7Fo0pE>f17WH_f,f9= )3c.))y?; _CVn-8fl,瓱249ppppppqe1 %-4Ӈ![cv|^ۆ9}>|FAŜݯ~FY߼yL#W(?xI̍51W|( &C}l08'2r?8f6QӐȁssss ~KW@.zi[?WU!.rGך&qppp98?χR߀q}2gٕבo߸ՠlk׮wqcnMs C6 *]Vpni5dVWnG,;guȁ888887Ԉ%_{.azeXW%ȫd􇍂:j0?nC!c9ܑsaCs7-hʈojvc7U)iӦ8fM!fpAr ρoMr+/VKe7h +KwXӮYt 8c߮p'cLCTPZY;HjrK?7/ˀgCnvxxN31Cofuiȁ888887<OmKu O>2NYw/%61.][yUŠu24W%k x8=lUg0 U8 >>BU pRa!>ލ>f47|\ 9*qss;0ol`H܋z(i(搴'!m\J!HR(PJdiBSx(7K#5EMbovq<߾uwo @4=3ùO5L^9q鷛WN&\ ѣGwc61G(Y+35gon^lHㄊ$OnҲ{x';-+0,ph*YڎO< >qDG;mm^!nk#EUm/S撯5P)M(ɱr 'Z6 K&™{xYB@:hRJSNO~G;ݝ6:᫙ӌݾYzzj{QKN;_qIݞ}rY}Ç8@4 @itmm-mÇ=z~>Kx_8U|jc|3=z>t%84 @43gП-|/g+k#/^?y״c~~i%dm}p 4 @4P!x:TWKu{K`_*9\--₳~\#.뵋q"{̦FwL{&Z} 8f4 @4 { `/ cf xhhJӀ<=f/P@h+Ihh5c&񙙙0Ξ=+FҥKLݥ2.J*"'S?o[񱟚 @4g18c+5]4!@WtdH1{,s3闎xSF~RbVWaۭDvE0a}e>| ~SVt |@0 a/\I\# Jj)'g7N z3睓Ave&Lw*:ID)~UggHa{"M!9_jTQ_6ılTJ}A4)ϟ8v1]8 7%ϼ@s9ӿ*HNF 8 ݘaWL+ Z'TQ^>G i$Vd9Ԕ8&Pg@eF2Eog=7 ^;sٞ,"rZ7]AŅ |JdUccSX4B1 F)=jK²IM9%6pJ.~QקTp!`xt^!wdQ"VȗL노X(3.ĥQ(́#aU=TvƲZ!ژVȭ[[[666gggQSC xg=cf007=H`A(Dq, 51]Rm[X.^:&''oܸAr555VVV677WWW\:w zwvi\]]?hfD^IENDB`PK !\33word/media/image18.pngPNG  IHDR+u2Kźlvřb=lD^Wv2[.Z"HXW)$H h֭[Dp}@b%NKNdCNUhrRTp-r 3?^7gWʫo҆n{ ~\ J;|a-D 'i"Ȟh)oC߄ xAx&NЁh=cmQ25Ic&t h."Ɏ6&@0l̈́*a.ށm28n`qP])Y]UICPS&DJ^)S!R Iӌy؉{/ ;q ud t|fGװ <_NaaGs`/`=5:Bg/D*#=t)A9:-PcfySbT͡YVg"ѦX?C} ^S,eLoSs'Z x-ZAD/i^8¿kosC:quvP@a)U*-#U!1aItI;-G :EWkPf1)OԔXԖ`%^Y%<|/3h3dvN,f2]_' IuQ΄At kX9W9:JQ+wTɂws탷ݑ֌tb&L$<Sh(>oJ/x t Ad }#fLsgvW ]B93v4GXn{xpQ^\Qe~`j|ѵ0FnY@IߙTǾuZ%FCm{*ue?DqQF9_ԗ)x _x /"Z%vh_%}GM);SAkN}:Щ|:9I7-S&` M>A%ʻQ'ߴ1)D{fl~aRSRV^M455˞@e55+bXmkSR`*zc,xP,x%$D@u3 q-ٹnSm*Qm㎧(s-8 ?`K[Gkf>/y.<љr|Iӏ^('NwN5+N.kNڽ1jUFHoYMyyL䇶~ ٲe-}zWS˴j|L\VM{w(@BYo~YLݭ%mݴ:\䲂ijţr7uwo@Í]A 7ט,Z`@ 0P}@v : Uz6)ә&d<(&RS&5ӼY]HKyŽxieڬ |'OwzݝT8SF_]ZKSn^B@c_]ZDwl-\Z /z`jUuTn@5wv+V$v`ohR +iz.\F>2?l^ЦQNsEld/jN&H8>:UWwհ.J)BY(m_ +~\`/ɲ^8 ƔMI T/jTǼ7Ǻj]lZ ),e6Lә#49RpZnׇ$5pj. ii-+WV+˪WM޽:-_$jْ{¾=zA+'(q=94bRr|ڹs b@{`D3g 4H~/f]4wj?ɓ, Vsc!S[yMZrJp ר?H(F] (X\*pZ@}$I[,v18U@:F#r'l-m;9D6j04\ƚ䙫p -%}g_)Gv}?]?PR˜N@75*mW^@LfEX_OX,)581%EEV7/6⊌ 0n"\gV;á[_p p!&ƿubߋPߦ;qDwvbARatLs!488x;X=4ks:sW P0,:FەWR@(X㋼ev" ֊@Y9k0e_)A Sy6ܒ93tXwSy[m"shAT3D1"PFl'>$^LbR7nw2=HQ~ĠRITQH vi^ F'Bcײ9j.ֱ!>FAt3 t[&+0¦_x7SŠ%`ڣ*H=l$>t-KactivEf75Q7(̤g[QnI`!JܤjS0Պ?^>J;u<_#"(%;>Z/D x4'$F4N4` 2^z饷~;z C ++o@ MJJJ>D@29a%8bZ(ZA "  @Et @/h8/Pb]DHL{saPb^!".cD@׭ a"DAD#@!4d" 3jBME,BD `<ƶ$O4D@\ NhSbDHX$4c"@orQ "`6!W٩+t&GD-~ 8Ltn]z"9 ˓+2Kid+#"/-ZUܿ̐5S$`p6ͮhB]e/rjJx!"qK ݬjuM+2ؼ Hx&Uifm g9 DPSD"Y б-ʙ7gm676fh6 @063Ӝk\YC6^Uf9ڊV_GGbJ`1" ͩ+J-wS2)a۫Kd>3/Ñd( @G &4(R7x\@ *mZ$[rxa"̿ꠊ T}:^1pEr\Qn0<ň" esG-D@b@}AD0#u'x,t5dDaFMOgJpj"@#u6G~gG::'= "$*ƤL=ҵhnᓧ|0cED@Oױ/hEKD#I+y #"kb0G" ~Fsڗjpu4fdQjvBn^n?VfAAL%bl`pښVaJ_Gn-AIqК3ħbЪ:)vB/o9M-"|ɨ*l~ Vөgj&l)߳\B|"\k UY"GeuY[lgp.Ύj\1zX@nˆIU5Q+AL6GRʟ]A0<'ln1%=S Kv;:|RfZ9zK?1haʚ_E(*#qAnbb *3T*ZY*bf_G^_b!r[z!w1pl\%#SaERIͣY~gg0+JI&d1N k)d&eK1'tnJ22.4%,XN!tV2;CL2A 4{ִό' Ö[*j'yr*l'1*)44V$0ܐGhk=񭴔O 1c  ?411l"q0ܒªeD [:ct1i2PKy|.B> ,Fz1&Cƍ1`C(tǡ'$@ jda3mbD$5  Q VgL̚1w`-Dwx6m@ O3w=yBgOjPȓcy^о0LnwC%Y(š͏p8򺲠XDebp$C1@,RXkvwwRRRR{챒K}O>q~IP _~|C?2NVԿlNOb^$?):X${ #1B1ȧXU]el'{ނڈ@!\9"" 5r=]ι2j""-IӢugB?_P@@ u(UO47`@" D(bӒED@;@!4&TBE 꽹аa:y@D q^4'h "SࢵvD N hl@z BE8!4'D)z yl@℀_4LM 6pNU6 HgW)4l@"WgEs_fm c̈"XEsʸ9t#,7oθĊA>o4g9RVKZ~^E.زj}0hDpLh9*Юe6rmś5M6SM]^=D@GGc<ǭXY]h:hl,V9l ~m*a" N3vF\֑}`65]]UEYX=BX 3Sh>WƟ>ds}{ܸƽTSYCG>*6  /ͩ'4  ]^{7lLEasqP8x0sQ@|F iEDg36OG퇎|~xF#@/F 5uؘiG :|򔑗p[;=Ɗ"ЧOE+r."DDɰ X4ET@Dg@YuD9\ݢEuuDкf!5^P ͈nWX1Z2ȫhikZ 4a{Z.VoEtJbrODVK~gtd0a4S_*Vb7#>oÆ >QDs9"\5x+aeXܺo-SR[TTRW47&RtQB/^T.֏L-̧/!U pVlN YpRU 幖fhM%{/yDa\w0l*Wݗg3xݒm,>́'ƫLIݖ EtPfT*`/O/T zRijS7W\)ik軜w6 ᥲae̲Iɖ A-dm ~q>~@:!L42-v"JlGPEL0mMݚ;چ@.#3)+rl0Ds$+ɃEkx&._!]T{R< )@S*% Kx2L dŻ|\>`H M53H3.{2F=JH+ʅ("62ZʕϖO*[>˞*:-eFͩI\fTT^s+40 l} sHe t bZeCɛ"cs Ɯϸoh^wuQu.ڱĜ4GAL2P}БwQ}YpN3jqa/I[ps{(" ؐV/&#FO ɉ_2/#9`{+6CdĘfMmiKwRܹE>Y!2,mUZw =\4,_ 1 Mag5}jW$SicD4ITSL?F@< %4!063z61Ls8aC!WPb<VU2,BwL fFRr1"E '0MRߜk,jX{値hsvKY>4 BK l@ɢDqvrt6>Hہ&Z>,ZЩsQBr8ŸH-{.<5wz`C5cZbPVc1Ogf*+**<].\xX5 Z&$uey$|4"=Qm{.DI$ R޲g"x99Vr3/Z+1(1,DՠOAj4dC|=}ѹiԞ)ps;JG՘N OaRH^' }4xgD x'O '}M }ԡչ8y0 eƱ." pz.J$;A/u.*!" ,CKCD)^ z"+4D#+ ]g Q2^ton~JJfmDKK \Uܦ"FOhC]. 0M[PSvk9~<_zw>話io~s筍;TӼ갢 F![\mκ99+Ӝd}to-c|LifVJ156_b6통3@!&V fWSZbj]Xz"h}i,0`iRdaҶms’W۸-('b724NYGiE JtqWCickQꉩUvKT0d$~Z$r3͹s{KOOX\rՁ,VաI:2G!ySya\9+%_}MNe9ys(_Pez5hќV &ؗByKDPu uۂMuXWKvD]YiDDeCUВ c_(w2[nqPw_?KTauJہwQȞܬq 5٩{ /UtC9;;,# ?Z 7Z1>jr>v,=4P) mLO&=)m2RXw .EZ-sn؛5z(aF#?NVCe&,PTTvZ {GKJJ೻ҏÇا ?) {%p@/V_ۓ9DT\\lm9w?+D#0Ma"a3L2" l5{}Cbƴ];9yVG;"gyn.Ncs"8Gi9V IheADRv#: `6g @@@9LzEob" A$!@2#`^!dF}G^zy"=^cĈ@Ciu8=^cĈ@CU<c"}C6O> >.ZXc@Ci9F14V\1"3p1Lj>/Ic`-Mkww (JZ)is СCΝI=z…}F VOP΁g?jM7 Ɛu1J:NucU+֭2xzI6/8hѣ>}:q;&.;S,J]ܛ^gS.ed=@DU\pxYK +X "ˣy'4}o/ ٗpzsex!`EkDP!Y냰^ֶ _"vT+XΆB$Yx(h|sRu$BOo/1_t`t۲gy*E&sڂƶ/~(sU{?vd ff!} `;kRxJ?Qw`-D_B Iٶu3+m{3 4 [;SiDf!EY/j\ .bStd|1=he1Z84 bUH%jm>z3<<^ٷ۪gB-q]|Ε4 '=b2lAӾG>iP ${r6zx{~sό0cq\x!!mc`[EEYFc({fizJeP[aSӮ[~\3Ƕj NB9ܘ*$5fZ~]cx~'jo{?z'7w?~!剟WQG7 _+zHڨ ډm^X ͬҗh+w(mίt?Vm9.B{s/3IonR>-MĪesԺzza8ݰK>7~WA|"HsѠIMm|vyگnS+sWG"6C||%% c8^QqEĐ4[:ɂ&YBli.bT@,:3bjCvҜP'9l||<~{r,%+$|Wcƌ9pNrǎ A\&4"VO@'鯟~wOj̹P_!.PF/[$m<ݮP]_%߬y7oAX}u0tCqqڵk׬Y{(S!>|}9bEo/yg8&4X#ns" | )q*"@ $]DD1HsBEDHN撳kDp@JWAED@ =_xO+ON<ⵀu[U4њބkCDq]tQ~رc|wzS "A&L0qD^ IENDB`PK !j.word/media/image3.pngPNG  IHDR7 pHYs+tIME :)mrtEXtAuthorH:tEXtDescription |hardcopy|2012/10/17 09:58:41 LIM_J SGA250167? tEXtCopyright:tEXtCreation time5 tEXtSoftware]p: tEXtDisclaimertEXtWarningtEXtSourcetEXtComment̖tEXtTitle' IDATx]`T֞MB'J(i:H~ETŇ>QE>PP)" wAi{QTH?9s- IHB3ܝ;soy[)BpQw!AA v!-ȅ&@E|t?A.H- Б.(VrY@;~7/E7x(D`-1,E . y*E#E``qş nDo#|K2L%~hSd‹i喵!FMv'%k,BS\EV wFND.E@nvAABI\D(NB;8"Y%ƺZGRqg! V*n`h_4P(8YUD5aA̓n p2T` 9Q׵ř-IkLD m<4EA$YoHlqԕ).П@Fc,a1t^W:GIҶŔ%mjw8G"; 'd&H;,2݆7) WiA*J^XkI7UNW@^.Ȱ쪬#h!N`l@Abe$ՙ %Jm,byM8;pB`=\ rj͊a:HK %ly{`*[Td,[6 `$}0HG a+״]DU-b&lEAxb&en:_$GJVxpcg3`($[閪6N 1@vha$V@T%'HB3G$`)JU@kwQA xց2ZP NMh213y>cJ6A*xb|$4 "U((q}ᖚ~r)VJ$'%5p1 P)޸ e l``"lNdPd. ֞+_XR3tL8b,ɦe]ɂA>ANԐlqr4Y",G \_``k] va1VVSHLL`s`(q=  ɗ0@ChuSK#Rz89&nš뇛qL "6i}S>}Ja C(@> 0DH#P1)!N 5ĕ4p`8ElPk8,)Ƙ˫%\)k$i{)C1e$6ľ;mI"ffv>> rix'rMRt,*` /3m+E r&fQ ,54RD =f!#'IEd\I%&k=5=,&~,@f Î 0] M0a7N7,tЦ0 cxE mVCm,gk`42`Dؠٲ~TH#>3[ q]bu Tl?B AbQDdҸ'J ЏI   !ZفZ t*ˡ\֞@@/ .R7tDha@C94g6&X&m[Nc8`Р<p\"3V+h| 4' Qa ,xč bYe0Hhn6/a KU5O{*DjAuQJea$ |+(yE4{hL IA08tD7ܝX]^ NXE[i7oqXlI LC1`N/6*p4 @0lN(BO\oC kQĆ+|~n^^ٺT7'&C>Hqr#"& gxxFَ&f5y4_KTbԖa7u|,򲔼rvM|YyED\2v!+CIMkf*Oم@Z S<|f y\݈Pu>|y"@ 2=W lE5=PsF#܇= u)^eif 0Aå 8aWH!dv` Ey!l00Y w|wȋ)zJ'm)xjA4qG*^4S0|L-ըU]Hޣ֢rsN<̵s)UGY%zWT  2AЦ62_Sා&27H*w霰fLI2E3avE+;L%! RDT?Ub@O¼{bX/D5of=T$k]7Ūڐ(C;y(»9K,hgm1肜{;HMMwpzG7\o~55*!"X˂߸\!H ) `B7PXM o.J0IG/uX ] 5 s2fM޺-#H)l48buSZ+ [uwҷ"3\[T!d8J8?ޱfp9aB U$T|gb/Ae) GxTk`)5٤$[WG4=-$,es'A; z1~詼^NHrkO t@UJJYC=o`aS y"只bu ٷ (`D<|RJ`Ow|zZ*j5Ԗ q%sH׶WKii"\۫ ).sxNO(`. ЃxJTֽuwꗸT%Z~2cp]3~֧+Y6X ;uա\Q ֤$ o}A) \[չk:KDOzl"o>p؇B;֐Z!{kUrte(H/%*wk'[$#:6 `.¸mp#pX@J-0ne ɩ0!F b :Ḽ.؈u!_;A`L+h 8 ^7)d-(h}'5{oNbt])?R͖P^"*nje%l8\M$dKBepMqg۶1،6NaƢ=lt$ྉ[6}zɔ;;ʵ&ڶ]e00ۖ~Q5DьiC@7ЫlO,8BE/|R_+R9HQ;1&r+=1r %oPPRV60RI%*ܡ^Ykg7uVC:-lf/x:ңGowӝ5*Y|*cv&‹Htdņp:Ѽcھ|<;(VwV>n*դFے|t:Mu#$1Mo*ոz&7l:78e׊h^;mVCVhYboyaIZu,554T7[Tt|Чx{̝{;Wt[4}vc;z+ݢb;vjYivh],'=٦Nd=vfޙAr5~d'LGu|ËV<swq'M'љZN6B/}f͓ŔPl'^^/Tye[׉n];e%tqY;.7$(ĞoXRvZ^9mmm&ۧׯ0mmWjS++/yAv NEufǯw徯kv<TiWغ$Z-ܢSƵ6̭?\#rc'oqShYsޓՊ6-^<Ӧ{ISCjW]lˎU 5A]l5هCESJu4cFH@of x%Ѐ_ '۫rÛ6#*,xsG Db'AWz)AM%1Kiވ8sLX_/R.C^e5 NiDަDJ*`g.dR-WTG3(1&4ttQ<8eS;U M -n#*O:thD?nrqlW^T9qdbitk>VDۉM$>g{>qb5sউ;w}z싈fwE.="mV#h0>OQn꩕D:>]65}D KhUkz(vl?oقm-%'X UwA͊`#nvrÎ,x`ۮ;pHҥWֳ5-}*OI'[>aTة/U%qNMf:6|\A>۷z_Iq:f`{&}ufӶxPОb3Uwoֶ#[ܽv`]bz·+?*΃ ph&tB۾~HM*e9v|F qϸtGo=]w~cFŃ|UnzQǬUdSݞjFڏ;z-m5PUTv,kZ;\ixs@㋇t„&ar-jůT"_OCi;%[>phJֆT9iZ}|#k%>-W. OS)GIV?~P*O.KcP1r-BO(1Ǘh"^ІCʨb@s\E $ fhi"" G{kq\WL 'X-`'r)aXPF` r>ZTtAI報ޙF֥-@}̜A)m`ϒ_yeSG.%]|ڢ~/[@pzeVmΟ9=s^a!-ZyԬ0 k=aϑ/w|Vvt,mwCJ)ܥ !|fڈ(IM;txK%TORt#}<}IV> L)$Rث+F ^xdjs-}r 2UG?ٜ5xGjRq¯DGtï[<8ck}>saX'eOtKA md6閡ۧ,l?Pv~7.?^, IDATb݄w|; @Sd-Y?]jѺf!.ϫ[wfUozۓ0o;y}J>.ߊ=TWw0edroٙK.N n"dHpXtSldtG/BV'n7jͩ3񐏇┫x8+== 4uD5hKK_K85K@@"I'VO~?c]қkJFVc̜VÖѮ >t IzW;6zX==,AIa.o-:H/#$ˣOÆ8]EoS}8luEVq)Z-pQaۂ3[u3-3^Ck12p{n.W3_y6^6C[-έSr#4UwZV.D#K|fm)*⥏:4F/~uzR bK@)@%1O,ڭrJ; 4T(B1dTzgk~W؎#lxaS^ /Xܬd{ c>߲nw飶u3-O xіK[6ym$RҶTR?x2fÔ'x} f)^iEZ꺷}wIa]CHbnj+f@u$`=STA iQ&i.U\I=tQ]ҫ}f(d6Śٲ"3[JaDmuOݖS=7Isڭ yɘ-<5SߕM'ӜH{t_sG?]߭Z>3E .ܧ3Rx 5ۋ;g-,4JyhO6ɘCXլb˥B`z>u!5l |O1s]>k}$C2^:9(>LOڢф`Ɏ-Nv6|2~ Уk^z x<L &rN5/O4̧p/ːR"30̒ťy;߁JM'K:50exb)J) 7RەnHvjǥS%ٷk…?>tِyJG(%_ҹSG>\@EBCxA Y, ^*kՍ7v ]բZ/VvrdəiˈL]'<,mQ E83>XqV,EI$S^A#t]Oy""`sY=%RZpB:qMmzÑef_F σaׅFfpH0SDsiÛ$w떕֠?v0L)ț *wU#W=׸8|֗z.^_e|(_xt#&ZhL*&94Tm 2jمgTnQr<Ô`& o(vz,jJ}օ(q>c8KEP B q$<\!=>C re!!q"b|H':qVJ . FA=0u{YPQ)>< PvpvJ5B%}<"AMr)Ov7_nl#ez h#ךJ󦠷*E;ޒy RP}`3 FXiodFزE?bwq "^a(jkBCYK;'?/׽TaNbd'H v;K  [lBS (k1z 5t .=ΔS!,#(ߪ!8LNsD[:́7W]Njdȭ|o!M|IfH;D9NG靷XOkwwc<t%Pri[f?r: UCIۖ4*`[S=T6FMR9{:P.YaGLh`& p .t<@aL/#CS`'$xv9p`0[ҵ7O$^8|6i}a! 5ͳM/CGaOJ 1| {z/GPjk+u*K:leILBk@3Ԍ;dQjk($D"\q  Y[QOT$2T֠E;#L`l|qOԨ@ Vnb!2\^o&ܐ/PZ g(ږ;{BȆ}EO`(Mj[Qǝ CP0i:dw^Q&  (a%Yz^twT]V _ !`!=2?/`'7V~wHpF=ecrvg A@Ǵ]ZOC"#Վڠ 4:a|K<uh TI3<9';?1 K!9]&7p$QFOQ2f٧D1j6Z>Ї R 1Y?zxiݗ Ws&9XuZЄkx Q"YUZ]@>ꟸs s%S(@G+ԃU\OzKDNȤ/MK{x]R(1 N;wБGT2Vş9y%di53 ^GjolO/mhK7č0ZvJ FKgj`Nj4~cƱdl8F{U> [vMHѕ$HukC2K+Fyԯ]NDy 1ic(Aqg3-ل%IQ0#܊9wv=yҼh 0O_J%2'շ@J9f^"5:*NWXfK*܈] $<  OS60EoCOI\YJbR Aw\8 xHyr3fq p0!H\R/Z*x|Lџ{zx@7n)Z6*҅ En/I` ( gY;0dㅚɍc9 o|`TUTd"f,,A> lj&a> -4'B'[VD7rb]"F-hwb1>{i\,Z@/i0dR몉ڃ#Ց,. Pi-T"?dž!4 ;yԣ; >\O56L)ZP)fW ptkQ4[ Eq+mGE?oPT&ZЗYeL*i-$AuI1x**sR)7jo" H$~L{fv @O:Pē4x0 &m ÐM3P9R\֝%(Pԣ09B 6nXjNKt@!х@@mfmiΐ]mA¸X\"rlyHfmY*}Kfqpu5S?z^gҭze*B@ȘZP%0 t}X裃ԉ]E=`3_1Nj3ogT7:(bUI y B%H-J`ra'%5}2Ob1mF^ўpיk%Sۙfḭ=42oe.S<LIx|od diƇ'Pq$z%tBTz $ĊR)SKqvbIccDZL9W $Z̤["< Dl"FzXB d@@ cVO `'ٖrv}6:ۇJ)G~:pF1c| KeL$jl-n$,HnWe]JH׻w P}i^[CPGTCSη֎ 8RQ!Aez#Y{*SOc7rFa `0aB烇;;=Ґvҳ4 ^=wl +A `"Bh0(QPzUW2Q87>\tt&5 A 9{L HWzlD;A `Ι2M,? @@ 5Cn}ǓsE/{(.H ¦|Jo~uDC7tRs^|~]c I?m#n/)7o}wӴiTY r:-o!}|O2TJ+cbvXt@շ[nWjxbI%+ r$IJ)[)NI+R-r+wX=ܺH}Q~ӏ`U-ucL ئ=Qsz5"ci40ژ;I (O0/<:nң˜&rJ3,Gޕ[}Q2b>Me7;x(Nm:tG4C =] @"Srd R2G{/|?ꗃ\K*lÆxiݲ$1 JQT;Z~=s[VL!4Jzq/Ht$fqd L]R?p0CFuxНL+wh*S}bƐ![O9>9:Amo{ridVJZ3*9/ nRewҹ>53NZJ)/<2Y/^N6C%6mZҬ#Tm$KRzcxM3i*LCL-]AzO8V<=d8Z<_}!4SNpq PМA/Hu @֦Mgu?}6}T;+TU@C°ӡM7.ڦC/XzyR:$ iV^tQOUE!efj̆^І5cS6m[:| .>r+tj'Cf.fI1$! ɀYAgQ:tu C6hxc/|C/;r|WKC1j95DpHYZ X$(OڽGOM6=sVZ n-?Vr`QB_qB?.Q(H:(9#06KjMjKuW*^WTD†C%p׻dRMgR}dҦuBk[ wLQ@dZ%B#/wKo}Kz!GЧ2K3TJR^D߫h6}P|ݏŠԭw4:"xQwOJժ>|Vu0!tG<W KZ4Ul¡ڇޚ(iytJVV _k5c)BEb>djt7[Ju+7MRZ!^:ذT DRnY:L%B{5mZKIҽ>FGGxi4U:PFE|vz(aB7BܔK)j?p*aʮdp:Z6~ 5ou~suPݕVm:T[([ViV6[x]HQ~XT4^G<E;h/){NNOe8//6,&nd+&ڮRÐ1}>IZWOs?c^G(Z2:҉>DRV]6&>" fo~&ӂgBR.<ĩ^[9^YY-tRb/r,?cfP; {ŜkHP ԔgKZE4+|?ݡ1@Lv ? yfR߯[aV%kD%* _ƽ<#^H=qfF5a2Qi)C7 Jҥ{U>EBA_)? KBt{9 IDAT^վ^_0hD׈CN7u ~3-LSeh1*rƔR%6['`aɪķ@MBZW>e=Yƥ/p+@ $Nj߰ǩrgS^_ ͑u7~tlMj֍ 45W =`DmlO0a),q쇫{ IZ~ZϦG>\+ch81'#o-%4r򈈃z?$a7ljkR& i ٰi,R<i)R_v\_hW*wZpz) l6V~wݚO0;S[ʚkk5)rϑ1]~a5::0$r(LA `c9ЌA@f#*Q"kǃ;f*bƵc1MA kǃp53 LDaeVjT-k3\5lv8k8cU@Wt# )$''!d drϟ;B0A\@E  κ!aڵ1 f: 4TVTtΆaȒ ,#xC P?/CBVD+3dW3Kƃ\)+AД5\-  UaJ #M$':S ;n-`4`3###Sx̘1)e=@\lxt%3$IyA kqwk) & A %:RsF{C vڭ*2D&;g#pUy}؊З`0X :xYG~|8dX4 I 6\vM:1X%$,@cE_n7۸SwqjެvbjzO2ypFU!ӥ8ũ6,icJ_@u5G;@t5TkQ#?|e7ny֭[Wn))p"*(9}:y6MEݙ3 UE*Y?ST= 2ew/!.i.d:i.>/b#Wk3i7 *tV=%nJ 5l/ӢoZqŏoJ)@dO>]Y1/¡Ϝ:"-T:sN&ƫ( 9!Y/9A,Ȕ/\ {06lͰ+:|W'%~ղK iVUIZ`+Tg Ì'NLRxPصUT$$=:[OhˈKɓ7ͺt_Μ9Cc 7jE^&(R>\-H<]p 76 U&4N;#{Jˑ۶5ɣfplV"%Ƌcc1G&훇6k6ӺKs꫆eVBR<:̡y` V̔y[NRes`OVcPuk׬Oᶂ gx'$ ޗ|gTv}?IjQuOBj$C?_#fϪÐpЛ`t]|*QN]ZhS䀶n*_>Đ:TreLn=haنԙY=k}揵VQ:x˛[7Sq{Q+E+U۰pnwU ̖ Eʷ ur{>V8 0<VqsQM=:k)ӳ5wYa~ Z4D6 ިR/h<~:iקu>sA$>bߞ^QūT%E*@.A &ћo]hQZ%/Kw^ ۹s'Mۋ/͛744tƕ56@ܮ`0AM(@a=dPz G.aC:[~ FbKgpQQ_-z=kcll{–T3ZdR>p^px uvA8T_"ƃ@ q??p:ulr䥱 F,,7JWu]j}:/OwWe\s2ըco*'JEuX9.fȗ=էG7kbUf!(knSr#c֭[ΝK:-h8gS: Ґ1ܨ $=[ԍNBq뷝-t/ʆ:~;ocKGlD#B8&E#ԁF/[O)ug;Xb 6L2#X99k=k1zaٿ>4ƩQtw7~\_̽A @ێ]|9;4#C5d >3Q;ݦGoz|6 ӄe8OTO.8& +-{yXx6Uh枱'KtDr-&纞l{{JN1J+zS bCx])\OF:]m';Qrc%e-0 0s_֭(V2",>((8- vog*FForf5"x*˨jB`ނEy[B} *Bgt@|>~4\A Kڗ wCг:.1wr,mA kȏGthY?0qÕUZT}/ﳿ:knfA7~QpH^=\T!8\''~~ >j󀞓Vj 1dC, ,\\"U^/5U6K\~T'7?0q @pȒ"z(DPEԾ} իK[7~( f+On%PMNd>߈SZt 3Y܂b31l˗Y%X7"CiBސA1d*OXQ0 *bR 8ǃen(TT> n4EmR  "`̾&expgR"FRI7bd 5C%ۚ`0d!k2YIA x¬,Zh C`u Z_,L08_ gA 0Yd ٱ>رk_V p Pr9T!yCZ?0+Ȭ O҅Cv~I5f:?؎͔8/3qCz}3.|>"Lj0\Ta\??rzF܈ JN|/UֿzQ=7Zht6\$_?4Iw3_xMVr5ė!Rc<8PgT ߥnA ʓDA+6tLsC he *RnhL-76g%*< YmȹBέ^tCp6 9 z2y&Z^Pm96A&c wrRpH^:K/`Nʷ1Q- T2̀J4A !]@'ɴ2s.WUv1dK>wczw1o[:1F^|0 نΓZ%NsMsfno>1g3OFO_GC2@E|?ı#ϗk0&C.EEAyaS: c@%p]TԢ4LM] @湔WZ:]1iECoOŸeZrOB H|9f&_y 䤋J~ΜdRɪv_[3y<]׷JAW0\-~7Ëfq$\=o _ঁ233|Z]w |FuobW8b̸Ƣ.ѐpR-v%e:uQ~ѽ|[D+0ogtn3ʩjϿiHT/e{KR~Yn PÀ,X9v]gk;M_TZǾIEE_&^WefZUBI:?HE@^x&~W0}k_SMNlּekbul%5oE"XÝ!&OYI(/6鵋j_UzN?vг u <9_<1//~*7{!&,AWd2] ǃ9כEi˨ҸYe`݋ECRNzc˛-y&9fjGviتKAKvPU$BaY|^M5q*qBծi]TQi2mJ*>r B̏m}>"r09L5:?|7r5o{mB*FiO?3w֑Y`Ѝ0ee.ݤ/|eEZr{K"i1iqjjJM/8m؝B*oopfb!y \_̽A {x%yQԒ1_;"ZV_:&ZQ<~Dxz]OSVMFŴ䣆SܚWn Hzi@4WZd"dΊ: gyG?.x&Mܱ])^>= m "AG' Z: -5M>zHDY};StpiU, 6]a~P.7H.7hN:rP^)N7 ` l8pf_9"%@?wR}IDh*<̓MLX /Vm^ whҬ.3D+4U񕣺̟-bgrGv~RZ"~'SKwn#OҐ36\ _׫zS2򩟢 kxjqO &oׁ Cq*thM=ڪ'mrs Մ jj2ԫ' +oo6O..߫ھhw>lO7=bIeyhߕ=h PazJ?(Vn} FZ4_|Q"j~I9vaCh+z 4fz[ck#6 =lIg+ެZ0bjlQ/ޛ¤Ǫh)̛4jw><cH,(~-\ IDATZ4r0\>pXxp:ۑl׾9.V8u|ri)u5*t:>)ڠK7Uj픕[NӸ95Ti*ӶL0) ѻϿm?0qi;3}R| eG@iNV1:ß-~)vRw ҡ;;`аEmmc[vb2W/&e.C `x}/\4_o|+eA7xPp cA `00pLޝA `0r>ɒ@| `&qץ'dxp]"k6^f{+ 4_tA ỹp2 |?Ȣ\Q p=#>?\ ۣ<6lDedX#*/4p?mgp']p}~EWX  $+.|_DL g>xlnh _P-tf/~N|gX_aϧh"W_DSk@ `HZLpނJoI%a#'z~8)9)RA6]il3d3MR~=qZ XdAʠ\Î_K{|3Ku)e?Q)sMcʏi[_..~zWҨ!33,C%>?Ht1O>e^|]yx6wIzI^vuV3'ۻ(_r *9 QwŃO¹AnPVrB@P9 @$},r* !$ xBfr}zz̤'JuիW~U{]ˏP5(r (F@E=EM4#x?~ǢKծUjMMmU-Gkۖ[Se8M&W(RnFYm=ԡ}znl=8N*U5Uڐ5eg$<_B)>gJD`!̿$Y6e q&APhq͂/?=?rM܌7Α%AUy1tC q)D14>8&-SR/'4KGwq} 8}'s b." CKNƫN=KI>IYh51p-CDZc{`?0ں3C_x_>}j۞4 4Uu*"دQ%}poRȈ)q*G/Ԣe>?21! R2}gTmt¦c LRP`oDN`t >vbwEtte εUbr+M䪾7MF|bFu44U`!`?)m:BFl9@xz(%ovѐ^ Z\F Ou({E-WjOYy K z̩{DI+ /&RWDQmR[g@LS:/Qs@:kW S,: 3J=TƓ+ v|6B,]Utc*-+M 81 MxO;#bmHY{rt*}}.H{ӑ>S Oˆ˺HwZfӗDZF2vo1!U>_:`b S1,"?>U2B`Rym^6&P@gvMiYGacw,s"d%-tPY0h˨r#X`ec_O{BV5ǛiJ终uu$bu=z%mTĿ?8QԪs_1bcݑR6M6&,k5%y`%k7TVk˩}4a B[o?b'֖ګaӶ|Hᕂe PʼU\_Ki\Z~Z0 -ȵXT1L!-Wi]bT S?X!ؘ3U;JCrW;l_LTuOO:aʂ&̎UHõ b 婾#qXu>|yҠWl216n1LВ23wʲf탫oWn{?ݺ{}Ei}P/p#3z?c9*c3 .(ל>qsn ,1F -9 P|F VԬѩ.fEM3"`|xKH MЩX@t10On}DDy"p-|MDvZU],4JzTJ?hADT8Yru=$F%k?y2RCR@kFSx}W/O kkn-uu#w}'R1@E`p3}mme,s ?h4[~<{qE?pWu?Elk "8gl@'!Pk4[YnENbE' `sؤ:"K ٞP>`ɚjΪ*!9WC?0"4WP!4; kj<~h3b0:*գvڗfe-hm7!it4-`,TTHۧ^1$ S,Aɯsϕ dԊ)J l?_;ЃZh˴^^sft}ɂ[kULop_zPY-Yw3 fJIfDN9~"36o݃^8+!sR8mQ[A(b kvVqڒZN"LF?4  ?E/( k2mֳK.d܊GtT\^R!gij+?FKϛ£Ow}>> fjTQ&4!ajE$zuHcNJZIc?\gw)95乔$z2?ih|B¦1w!h@_E쎣)! 427~u X> Vb ]{*\KШ }k禯 k\8: => .$n1^n$=$$` \i^ {_jV}#2' {Q/1l֡U̱YdW!k P|ޗA zCέVҚh=/8X +ȸNnAARH9GEWQiY}&yEݨ qGLޤ 슦lhY{̜3sV,ݰ|MR'U;oh4߮ JFO.-4+5L/,]L' &Sy'Ω#JU.?yZ~+ݘ\A d1Tv dD XشCx ,Ȯe]b -q=!!Ts.YEPGM~icA+ig\5w$?❢#bClQx53lZ4l%L/;FX9=xg΀u:JycdrЈg>J(Mtyn9F<߾-(F *4!`?{e9h~ɠNUI#@% k_zuI4B>xry9ēKK5ο#vӽZ 3 0'g; Ew EI/]V'JH. &r ^vT*0A2 , ޘ\VG$ʜ zS7Egds9=MO0ZPǝ᭱` 5L@I/]/)QZdjk9 ?ok:|¯B@5{RV7hbZ*S&oƨ9B .;pCv'}gu23aڣ#"U>CyoNʊ̙5-MՇ@l'l>()ܹC_Aؿ}ywߚVY)(0L왙@֩T?FSf*֝ܽd10FO'k'rF(8 XD+H>Iu#lA! `B,ORH)֒S)@̃ߢ*[3 -,m1| L%ź%$aLDY(hIyE.{u KS>bZ8k_9 ȮAɉyt3RZ,8rTOWRQGQ邈{?ƿЊ1s+&k7yw,`TJG3ӭ2OEJiE ɡsGFLHD!Z aGօϙ'dD<~z&7љOz>z߃jɛ+Jg}T&Z?04e$󓞂Ǭ?&%3ipk6MIѽ㖿  54಄dZ.q=jW'1ifӫ&-I'~a־+$MUl.\`lU P̃\t=dhIcHXQ#[DӍ"Gn,r139++4\;i+ڒ@t§' bIZx8zQ,,IV&ru0RlqpJxwaANozLMƃגAuU^֯_^Y%AD@`nM+sEվӋ&yYzVVMKoϟ?d}ߖxWS3 }~iSst%ښV *v@Cp "%il?ϝ3!p -F|Q칛x#=R'p<?[O` "$p̊!l~Mi4&U47" @#@`)~a"$pE$ڬ DѲ; @#!FAf0*#bE2FB`ѳ6Ӣ`/Rh*SF?h;2qر3.X+;w7ښ;7j᪛' 2/)pQ]`'OU5H<Dq8D uus p!9u6L#e dݣ H7`2"8(|;h*+=m=haoL9y[vUJX[8u'E!GxMd4qh-/>MFWwOP 5ƠOzōb.L"kjjd5eޗGy>m.{iܜJڔm4y\Rļz!hux>x ;?}i@q, w7>r!Ȯpn *In@S2ob4>.MfS|M.Lhu<|ӑ9Գ'CZv(${a5}20)7N18X#&䧢Ju9"H^,x8lE;&E,/cԦW6.ڱ&}xyItli ]+YCJLaf;bB_r,wM5du k',eq^v1+ BF/?MiaDfM e5ͣiXiEK\ DsI  zr?y,TS0sEF`dݗLZWyqƷC0x0j"̫ 'GO/#p\aZ(46O&tz6dHo )$DH'\/ k!Yo6C^ޞ9[pNH'\hԬh4I0~o CTc0 4f: ywo?2{c褟f&ʂ 릘<*E, s^-'ďQ!3%zKgK}E:&c>'JYX4Z%Sb4U*+]+֝ɞGAMcldڂD#>0`!b>r/"H"pX2]DI`_{iz@@t!=Z 064?/#+eF Hp?Уe 6aD5VWSQiġ!2C#G@}?ء[55Z~*5۷o-_GLg@!p" .n>w[ʰ-bƒLӈ2`} 8~:lγ_w'{y58;n#eD?e ZSSZZמ>N_f>4" >p ^~Ehpt;p>0 zWoU[06kz5ڍmmh{w5烁sٷń|(1R - 10L*xAiW'cصᚂIWʘFK߻-wAΝZ!eVAva8%w-;2IG@Un{06ٿYbq"#"ag!&N!af1R2'ABo֭hJ6BZ]dAB{)cqC,Nր>AUE#;x8Y!}Lva,D(Ul:fG {O#Ȃ%}soN淒+2PC~K&;4{Çz>N7e*J?Eҽ;9mi`XI#>ۻz wx<>+13tWJI&E@%^ ܉k(~ga67 exL4` X#Rko޼ BFAq*~.-"0mHԛW=qj&(qδp|>&>.DOx|XbNL {'Z$3t/ 9D M ]sAT^b!n o# )U/ܥk(qpF%/YL|CVBq*Օju^?-}i%y3ZTUuu8vS&^J q6XٱcDrƍ!u\!!ru}YL!s䋉z6^mZ" տ$_L<i)!c$ac8-IRXP+1&[G> E+-ʀx2{LsD@6errҲr!+4[dbWΔgs TC;c#v1j]* "}U?p磊J4)2gxl(1"ݯ̴16 xCaK ]+%QdJ3b}nȿaq18*샊 j>.\/ỲZ|8mT (E'H.w a9edjɐG DҶ쒊g=iC;O 窿wJK@g{LxwSɔ;AWpѪ1s(ၠ?xEopqqAMMeM55T>9awYS'I;M̏zs8i&8 {iP=G߰#5-bj'҃z'ȘH880LjfLf?H`8Xz?y‹uǟZ߳[ѣ sW~1qC*L3ǜB%GYwE~+N?{i&d ~2ڕv{}bwYKMTM%'"H@C@,v)vC+~/<~{K1` XK, NB}H"R>^i`%4YD@b P@} ǠDIE@FO[9%@G+8>p8! d @ ꃆ G8p2H<DWlܪwp>p(@E aYV"p>p #=id!߫]J0s\=ٱ>/Lgp&߀QCo0aN:rwبGdd[8m‚6\<.m|dFl҄S>e󮋷 Sh_JP"(2yl^\wQ93a6"`#UE  084@/,7KJ,*wuBń%p"=R(q)RFI2MT D"՚JZS`%oӈ}2kgR%.XIQ=I{.=7 oW||gtʆSvk?8yNAFLSpر3Vœ;vmUg`+S{vt E0`Ʈ a (/;dGwy{^Mza->rZ8U(`QHeb<d)Z!C*Or`(ƞi#P8l"aDTiE_uE)18!X~NQ"p{7$aqU>h3v"P?c%pꃖ;U`Z "~Y<@80m&Z͜m`ƈ8O 6pN4$"۷Mm`<8_"Sx?``̠88Fh"`2P4ql  `"9M8>gbD ȸ:{ʭ Md\#`c@q@}` ĚA+_уh!>pF-Ypp>Zcع6`G͢/gvel_:kr-ȸ:aiֆC{^\L?| YRa"Uhw ]8tۚdXd8k:p4Jh dEEW: o?=&RY%/iA\kZN _Z?h+z-$󫜘AWw_4+L}i~\咬4Je+7xM&JaXKG6>qW)5eҘ~+ٿzlHPj3K5w֌ B;2Λo+oeY@β`<?C9Dܮ^3sBկӂ9ba4 ]#[Gl{ϫwG08!hAEH;d1n+t 5`:8c7P1p̄^*0/$znڴ19 `6^im [%?Xe nK<%c i}:|nyh&?Ntx,{ hN ^BQC3 oնBHx%x륱(YS$}j+?pso./mӮ"niX# N6pPDpiY%,\Amm-Ë+hJ/'-D!'OĜ2_Dp0?c@P8x"yDG\ +>gWրl>p`Eڈ@ pJh eb#cZE2Z?3L*"(`Ì,8897q8\/F5"BF}ȝݮ}r*xy4` lqpn[yEj1~h"w/6^i?p4` x@3Bj`E \`qCP4"`#Yp@}`<D!?d؎1>hFcYE8.h%4z?|uRUXPR\,- **G`/ Gxx_]]}1T 8)D@p\2z|Dٳ𛑑q̙SN}лwoP ŷnI )"@c Y@QQ4_lWo?Fbd>p!A\Ff" 6tVQPY~~24` ج@=< y6_S.UpcD#~1~ 6%@bh*L˭L*P+>|֔K\mh3zLtb )>MN _ ~MZDLDخ!w) r#h% M2M vwO)fg)MW3>׋fv'״S?d^ fgGUջyo^tN A /Wg"CAf'])cqK`p^><[oEOun[SkiѴc,f>Ϳ*`aIxP ܗ=вx B ~+bWpТV}` 6 4#hoǀ玸GvuC[`~5<׵ӟ&&~>L1QxS}| }bLpJ& 1x!pP̯?U|pN ?-9gȰiBh ND~h8؁C=]]t$e1r饛%7h4G^ F,G8}qQb G48p탭[%U*xqM@ YpGtW?p> g~@# ~A?K􃃒4_#6PȾ'>&"Т"wO/o_?_)>Ui& PE-zLaOO(70yO}+G__$ Z|o \G CA{D@P|4c0~{-$<_T,hx"눀8CGshUޞ &y>GJKqz:/"8>eS *24` Xe޹P?}8''dE}}|h*IAdE ?W (hpq oݡCEE իWsss+W)Ye!% *Anݷ];__asb9Zii͛7/^P燃C?4g>v\}O쬿H~doiPV] >lbsش *X^zFSR\ܶm;wp ??nnnew6P/Gg:uD%kmF66[tG,ѳ'Q@"!%Ip%}P|u{^_~TۦMk׮7R8Z?Zv I&o8@_~` @8'''###--ԩS/__ō80.tNJw,qm<|-q4U?|;c`$!reep4~f,vᾢ5`>fwO7:w X-O8S v  n=3zb{U:Z~(y|'H񝧿Q>D<[I2fdS؉xP 'k`&pAfZ xM3aGe8ڷoϯ8$ZF  e`tt~$f|(l\oMSma"W Bj[^&Ut& imu5 }|;pePQVӈ2`VСCv YJRT6NJl$[;*x"eT0􁅮'6(\%7vq[\\]a xȁ2epzFfj yDH!lG鍙"vAL7nH.jV+ 1*f]wUXX?[VVk ;;ZK>؈"<(ɍwSn*O>~4}܀gHU3)G24 8p1.)Ͽ)KIDATF  ~)xH,K"`->E{~%m QLs4+q0>|lV&*.iid$¨X}}CͣZ)98'C=1 ^qz"p4`Vk\<*+L#vȀ%nY oj7vX /e.#Oonhxh p ddK!3+RsaJcќ9G`ۭsx2cE@'Ak:-@ ~ rXX9>2*?tC_L#*(_]Oo_w϶N "xh*ˠZ&1BL#&7t%D@F0~.N2#I!?2@ 2Ac`lpe\Yh26"0~16*D >p0V" ɈCV =Wmu0ht";u]*h.D#M 2#\h!9DNuI%~Æ z܇CT6/iak-dZ s!Y? ?Y{]0Fpp>v G t"9kK-X`@1ʭ #1݃N:~ =g hkk%e=ȉcgNPKGhڥir^0;"Д? Oqqp=D@WW7L#My#o@=B  *܂_>`qI>geDi"`"@ApW7>d탦9ؑ+D*P)rfpeip} >_dXBd8;h6̠}`Ěcrx-,h8}D#=ph pXh"`v @z%qCkd Ȳ"Бfϒj r̵[O5/M_B=88vUE`Ų--p$pYpp>r4lrTY57:L̖>"./+q5ˍ J*hH4-6mjc[?Jq96XNOΥ{&ynLRfṂgg\C&'~~DLZfO:LoWIiB~ȉ`ڢ9V d 3$K۽טs !YOH83۫Y\Ĥ1ں_PKV}up]%Bшn`2krkE>i,q fLzqp}P8} ' ʊ:r(SVN+8ȶT؜8'{-^=LĤDew=~/D330אeJ J(FX`O;D0>;a-18˞afq1&N-. ̼Iz38e}OW "ׇ̠d ;h؊CwV9Br>`1'rԫΕĒ3Dud^ωK`2nhfz (!Zo_4tbz􊓎'VMZ^O!7b&]njfP LtJ `({晗n&,-t m̶AO;V }8$%3n"v6gzhgi&Yguen7N ={M7aHkQo'o2AZ}` @>"T.c89AW1kp2l2iLӫJ225վm'rBk zdм"NP0#u841ѣ(b4(tAD=̓{éC@FKM] tЈUF aRj.p|\5s(+qp>TQ&g5csz~ k^p 欢r2#clΉH̤B[g J6-#/|l:$M, dDΤORfAbE; Ma3?.5+PkRD2=DuPZ̴PPe+eE-{e!'{x?ܪsb[F+E ~{`qI>}3SRE0p.>͓a4U2ZΠ&>AC?ٳ "yP)+5KW Ri^@C#AlNO7WW7 iV@!c"?O0Yӈ2A [lneWᢍeF M84~'CZ+p~!~2m/Z:`9?i wsc^|D 61~cE~k'7$ߢ8 }V>]cqC?I]+떁C샟>h:rBfo/Z A -[#A6-n`-Y,T>hqv5!W 8h|ܪᫎjGyg]1\Yâ4׳OXDfxmMʏ4F"l%(@ 6}fT8^יȢ<(Ҙ@,!>KzFDǘdW͖c3hM!J㶙SiN돺Z0bH3-(k/ #p~d/D9g_*) %z}+,,;n( NY~x΍V|R1AA)(<yl_I6ek FzNh>nv +y?x[ gD"epS`YB~0N zY-dh>dûwҨܣPct{d1Wg^AN'E`[J/jm#{@ @p`@Ch4%'r݌aG޾Eu48 L#ʀCf4UDY#PW?,bʠiv@Y|E샏Vϧ]^>=&hp`@GE8:@?P>:8Q>ph)S}(R'5!Lٚ}un> ŧ`q<ׯ_r VUU9Y$ V 08O[[hk7t_iDqSl)DyvԯR1nA0 nDjHӖ2E=! U";&ybqiClLQ56f*Ђɭ,\P]gbቯ%ʇ'ϵxaivVH͜! k8-\2;x#HҐM׀3lsιϚ57m]+W8qZN,5 hMcBiSjf?B$ g ah⊆GvQ*&ϓXL#1f`mshH4$O-AϜ\Tx%獻ntL>4fZ!CƼeִqƱg1H,+ Nkm$dk 7YQ9r~`HX47b7vRdˆڎI,hWfH2IQd4M+ܑ}ΣcXO =&<;4֙(@l򊐝0*#zM5Xj EL]ۓdr'+HԜr;1Bc=z@^QK4}  K6T-"\>oA6zc)Bm›9Gr-x$vAQӂ0!0kh.l1(Q%yBc^U]vH )=k-N Du`~vI tN$ݐ2˯hI܃/wdD3Q= 7LU0%/ݳ+hX$ !O-p_|dJDVΖUdd2a"S9,i6k4urȑO6K@U;tR,ȨUCŲ,hhwC5VsD*vXܬU\[\(l?"PUA /O3bqDYeoFhx}| oޥ88e<穿 Jx 2fd^KFe2h+ڿ~-'P5 o|Gʗ\gzyX'%8 CT-lOIHEc2pK>0{~XeܚHx,}f*R\˃k lrЯU(cQdߙ^m=/_2v!VkW+M1R˖-Ct)q5ygr8WTc.in9jN>r2] H=SA.o^8w)DC frȸJLdFDY2LH= ΈHjS9 ׊d!5ςvTA{9'b`/&ҟTblP{tv @Sj]Tٌz sv;,@Dg"NH1-stQz@#%c(oRjqٺQVmIӪ!͝RUEdtJjNg|m(㔯#))/y*.7۠j\z }BLp@Y >GVqU$:w4W#@@TeIӬ6:q{i4<%C yUs/E`SY2KU U~HP(~,H]V"R Ae`=NP8,*,pPd̘:-k|>Wbp* .誈2CzL)UւDC:hUIAuʞ E|FMQSeT~Ĩ1I,ph=d9< B A:-QxG[TU<"`LpG|0j;Uܣd/do34ܙO% pvadY-n l 6ءf;6jQz+  GJ.F/:O8-DEQ]&suNG2GLj%1SU nq;2fzbM;cN2/߶dKExg!Gܹ~xer:BΗ,'[ȴ[`ˀp123;'bH9 9re*rP%+ 0rnyD@ %YrA>ڹ|Ŀ}_9Ȍ1.Ea\P.dže Pk,Xkm_UjIlj2c?%48BK(vT#-̀:c㢱yϾJ`sD:"80‘|N*CkSn *X(TSɠ`m7v+4B[y Y}Y 4 A,$BѾ"CQ*‹;Wf/y> ̷3GIM緂8$cVjf8D ϔOQh^GTspY+̹rr.-zki91 q:MU8\ngb#Ӻ*uV@A0QSfࣚ4s-x.l<"t0= #ĩl#9&.pҌ7>?鏴[5b @1KF ZeƄs `?mJf2.UD[^FGc gmxILr7zoٲ%m۶̵\'UVEG>m# ׌˻x`qd^^:6r@rlKעk9+^;4=iZ R.xM:xuQ" mLx7GJ10+*1ףS #/Aj#PKSVbǃ\ƖId C6( zp5393PhrNLb#Q:UEd9K#A EyKG##,l ˒&5#~cpDx 4x!r៱q"b9 AΪWlN0@;K pF1+/mf,>&2,d3ΘMYl b*(٥[Q\C XNR $,M2,T‚N31kM~jP,1>ErU{hP'fn ,2Tm<}%ɊHfcW^7 0ܤ ʖz[rp'+ YBU"&Z m,X0vsK6n;w޺ukNNN»hR۷wQ24 t 2s;u)Oclr`\TѱL 3.~yuAJs$߸XCdPXdf-7  Nvwai? hGc b|ieXC /h\ 0#+FqΜp$D#pBK)~T|%1]fNJy(Ɓ 7A! qh{9!axmG œ!"yD͜ X 2zSJy9Q,YpGX&2K> G6y!0cpLr\P`!0IE@pϘdГ=' gdʱ@0ܗڤZtx:Ia #t^f*nP  b$ES.ÑWꩽJ[l>^Yp#(Kf@Mx$-[@~ Yfzd0ܫW/R K7tShUY 8%zI'mݵo#3a6Y*l(xP)lz/4qR%ҀXMq@+zn8ʖp 6DyLA)`Ur ajrQ3 l P H kG>d$%U0[Q_,mVFƅ0peΟu v.C4S'lJ#؋\^QRLij:o.b:Qfr!"J+3E掟8<<Y<'\*pX9g<?!@ Q>*Ͱ@@fÜF> fҌVt=d5Q4Ǜ3*;z(_iKX0 B$JFpjP<MdMIlZ[vZCI&l%1# 4uAe?dDS"nc!*YWy1$%[ E)A ^w$rQu2iF`31 `S?Hw 0__9Ěf }`9%@{;gPF9HIţ̀D`B >,B9 )嗘 J6ߋbi: 0쬄>aq,,DvFPIA?|MG {`f[f)RkBml,ΘMߤ UI[斶4`Fg=~Ӯ8짣Nx+l%j*!f1802%%(_l MS捋wÝdHt Ol5081F7Ք>H#4#"ATT7U(seMqHs|hPZPYJ]B"1Ä2 peyx1f7 giĜX(.XhB5BI@"lME9ز@XGY&ćY5~ _4QUB&]2 q_"AڠiZѠ4wk$H_؆&C.=BCq`ke@"_x"Od{Y3NZ7u*H*XRaꑫ,yA5UU\VڸVPAUVnG륍/xm"ؖB@Ui0as{AuXEʭa ߬A3(B25[ /5<,N-eZq>9T-yiJI4.ӑnȣL3#sb1p! 0 Vdt(wZ3椰cF-wp+'Q,궉 3][iCq.XQ %fu#U%TNgb.+%? 0H/vUFV?͆&fa00Kcǘǂ8k" ?vfǂrبz4 - >|U8%Y&QǏ~ g?e != t}DC}7V%)Li,F$'WICPU!ks[qjb B.(Nz[_̄XOϵ,Hv4"Lleߑ´PC8^Q1^ .; tZ4P@Cve|S8`s&7 lG(p#TA mP$9#עW2b7{Q';&UD(,ko@}^)kKB:&S$ a支6Z=_x#CfN(":7(CAiB3,NG$ѠRdY bQ NMT˄@lqp<<1q,I3&ʬмUr,Ny_e ,΍ d`!Aec!S,J,D!NURWR@ܢ[O:شl\{Ĺ[A{jn"jVd;)}{޴bBG VDҠj1cƝx.97wF,&D$M!X՛/k`,S+;dԪ[DDГ#eHpEoqѶ410mrR6g,V:7N#Tw8c*dג1BcdɁB!Cpm_2 )U-5(VCòzݙuV=-ǼōOW3RҺa.)ӨfMJFm:3avm'*V=Je 4?9b%KF)sSd"]=BpP&-)Rޥ*Jpc&ٞI;a jتI=lpd,k]6{݀ʀ DoدdDQ7:AEc7>h4yBq)X'nR03sR'CŃ=[9 [?kdX}|Od}\ꖃO8'jsTY0jQK-m.dTmi2SY˧P%%ʯT -}@jٳ]PeΆQP/,HFɖyRg ?) ,MpPZ%Z˟R۵YpT|ͮ*z'.L8D@5T )HUg̒Q8[,.d;Tш[\"\@=-8MٰY+;"BC-c!z_o1wLZ"[g!s7Q4S3s7`0~|L % VDHUT@Yḛ Y?ɲ,03'(.Knxt (v(&xzpZٕGbHkLrݱ)canD{bIݺ\R[v4cc2g SqXKcS6j0͜[΃7IVDoDN7@" 'jY _#-))F@G E]۾5Wwڵi8~*ovѢE[J{ͩQZ=*J[-CON0-~m;;\Q.{{O^xvԨ}{JTxp5ilV5IFGc! ~ i~0N_ 4-=w1W+!4Z^Y+!aS{jki5u._dffR4{Ƕ`֟ۮjG/9u=++`1.C{Z]!? Աs¥@@ cHwD s_05w]?[`0~+PUVX=zTbA&^p' &]el5ݣd ]mƋ;R{|􃹷qi@HFkb^(`=տg)ötf5M],Ln_(cSHc.wƞ9]9tggGR,t+:b铧 +x%^1 ?Zu/tFrӮXG>CaQӥGO]nrXAMchݰ:c5g U]XZ6G5D跏 +߿߃UN8@ -Z`Ulq޽|km:X@]"ru=6pE_vlIs|y3X`᲏Gmpŀ h!5_zۧϦ{}ba\8d-y}ĥԁ0:\?yޜ!?cw(rޤ. i~̽Q.O\:fTNy|+װgq]{p8ο%ξjjR6u:\/yi(3Z1UT`X9'zȧëVe\.\lkw٢ңzKgLHm읦ƉGb`4jHW̛)*d{1KUvzo|*A_Ӫ i4 G*~{þJ|Pf)3;nǫDƌJ9*5E{}~Cb.F3hl<~PM/=3ŕSO&߭D(nn}IPxvڔ{6/yiv5?|/h۷AX].{kO3 >ƀm,?uWMzD jC )Xj4.[Ǥ+ -"ϒ*ruu,sqBr>~f[p߻ʮqʛx=d`җd Wƕт-.bp̞3*Rl3M 4sVX{siSc^̤=ͼ-Z2ch'Kg4P{ϯO6^m94>,Dy܅g&v!%7?v"\> RMo\ л >ۻf|ρ9ft)h,۲`#U=~z49f`͜Kav"Rf iw\W5N鴃Xr-XM ;e߯O3#3.>u/~ߍ68wǣbfv] 7[Ͻ=wč={ܼr ƃ1#9YVW*Q7a; :yMTLw=.-tLZt4 \].JiRcj*+yپ]ϼRQ5S8n zv#dxR6= ?v}psК)6ϧ'),̭ zqʛQ^/zyS{l{ca?**xƔn_ ^n{:3ñHVn9xTͳ۷L(VN;l{b!PN0{(m۶zq%ox`Y`yÛ|XAi>8l 7,^'F}bouABSeF 7,ncvgosJʚQs4bVgk&8ǡWVP"7L6}-7S\҇7tzޅ zc v:08c }u ˪(TO_sAcsܹ. [Ba.yFhB8Lb X_nnfq1 1C3z&]N]Kh%H i'yYםf.(_%0Ҏp ƌfjϦ^a?|p55c}uUXlE^UI#*\ұ&Nsu'xΏH;})wE/g_4X"sbyfiiFz:팸ǚX_1sI+_ v,]1l2iGL{scee't7~| _Yxe;f~ o ӟqƒ={r-@Q[ .Jr<^ Q ʅbu-=!$n2=1;K;Ts^9ʋy7l̪?~g񥝍{l AQ^q:xJR[#VF*zwH:Gw41*oBcy&>LX t` WV{OݳgtU%cVOvaƻ„Lm'1,xhiwμV!~fvRW/,wWy3gB ;S@Ⱛx Se-U\>dkq^V I\7UD;aA|3 a|gٕ`JDs)L4c T㲙M&y+|\wG*xgzMb]s [G' إwnTDOW8Omx6N ^thb[_McOm\ $egX~ l[ pж/XxI6Nv7_NVoٲc=vmM>RK3|,vJ4o(wݺŸ^k?vN|w<'xMK)^]iGK IDATurZ(jz/LވwC].^![iVovaf!79unӥĒz^_ ͩKEc#o X[ }'wksg.цҁ|r^?MΟ^Z:O&ע:M%=;leIj^wk`Jxlz; BsI`]oC5(wtF'K7%N^ѭ6oy^U+Yk~IߡC(W1;ҁrQOp;tYlcVOĩFuzM֮.4it 褅kf&#Z7x'lІ)4sk(7 pGW;~x]h"=_4(S:1FQrȂYozQfo`Ђ!6 DGt2iV{xH_ޮL.bRp7O)diU,7mB~0Xg^ؕ˥ K s 쐢%γ8`:|EC*J)s2n_|]ݍ={ h>sfY&n_ʕ_ ˟~i!a5>Q .f#z_/v|3kk/=_ zK1t2|[+ "|+ moh7ɽ_|> )Xqb߻'|OsxR{Y@ 긋A;HMºT XDM2u ~>x] t``A\ aF'?*pY9ݼ@0C6B&MbaW(wNx\CrygC ~d[1mŅp:O&'`emNl.=X`J+r8ge? P tsz|s8,ߐɁ&B-'3ʋ; 323 8VbYf?i"0)Sp7^~bʔ);w' Ұܹi~qՍu}BNurB)<[^=7<+>8_㮰Ӂ[^a_}0 M#o͚?ʀ\ rّ 2#y|^CcX"i7]znKߐ9I/s/2]}kU9=8c6+hQg^Zė?BXQ{7X\~)oȍl2hX]Ac~EaoNAGP;h,G+/˅9fyM @+DUK/raÆe<6V| ՕҺ(HŻǣ۵凐"ٶu*ԩC}A#ho~۶ec^M|kdkl~%%vF.}rX~Ĥ.kq#ː.9y`${T_m~rQǵӕU5?$Y9ag_vܳuUA ϹM#hxdɿl3^}s`טhQB5عW<{u凫WqLJ`v}b{fx:jΘN[hO4F#088w7 s@SF=c6:6F@#h4(pϘRfh4F@#4!<2f=܄Yh4F@#/~/^PF@#h4@B ϐ1O}JjȂuV[62L:\+ .''S&tP4F@#h<x1{}㞹i9Ѿy[~vCP qΓ[?0f}DL}iA ML FF@# mw ܍pv#c~3hD`.oIZfjD38Ll 'hk2|ѻF@#$VPX!}4)1 a V?n<~c{ ^2œ} J,vQy^y{%}ʪQj#c뿪7) (Aye'wm0X< o3CA-!7 \8xlsN:e2UE֦osPaNvn/2$h߱cǁȠF@#m۶ҥKZD#pϘnqV?\Yصo6~>ӫ&f!XmqmkϘ]BE#P)e+@ws+] qyl4QfL L0r#r}jpyʸl,)bHfd4 .H[jkCj4*+*+k>4?BK" ~7͒)[^0L{:{8,۴ #nb*Ց׋غK&R]D-@#|EEEzo]4@@Z:t0Z5pt `}͔:'`g*VvBYY:zX1e*k[ Vv.صxQ'A)Y1([.̅@SjJpLtCy#1t썒h4"﫱"0)#3g\2fv[W9`삧.d9{o {3*ww\ hyc9J>?x3F 4.}];[ ≠ϳ/UW\h|Q `ɚh4D f4)8V/N}O0k,?SSRNmg7)b -\RbY͟XVHAx3(| YOއ{O/ZF@#hnzMU».rE:fsߴi|7t,zAy#U#Ƒxn%3{6|t F q/7(شjr)O狮^:j`_"͢P3PtEeOGǰe(̈rY:cnfeS;(` ҍo&{Y7j4f@, ٓWw)qNr,%qyPɋwl#;I!E &eFnn٪@(c"8+FiAI%{ɿ拍%r|DH}MF"@03aJ,~_3F@#hd0gxCA sӿQaRd@?gO ul.*(Ë17NдCm9B ̃En5"ƴXG⏨ iF@#hzRx B|zR5W%nd-SP bl1q<ՒV&#S%c(@hfg2 ;լI+XrA_(Pg3gFDlϘŪ kRDQa5Y`ZeUkPV4g\nQC)m~IeY=<%km帄&Hv7xED;~i-dWEΝ 1HޞX6O|^ EFhc] q0 B *a-7S%7oQLɳsn P W~ OlCuMqu]oP J5()_Z a2-beK<ktꌂ`pF\#4j?&R eec@$4WKapB T<?_ɬڠ~3⚍ꣁxB kUnZ ٭o|4P0r˟fjqq&Oblf 7106蠳YhΏ9UMqu!@5$٘8c 0>R!5_OoF@#=2C* 0s f0lnQS7l1 3x,)[z/T~zoٓ( k_[T6T "# e9c#|P~5]6zDt2u}x*2e8,y. èh4#sf!H 5&aـKqF>- BxƮ  Gz̽5vm2%0֠)mQٕ+bgP;2  %Wa>֦6oN o|%Cxv.e!f7mxN8m&BglձBkba^L\f3b  \dx$0hF@#8HO,̰0s¸"ʑ)o.ˀ87đ~ %ʘ7~ FO6ǜwLS3?ƕ^<jEրq|67҉&)yӺk\Bz({U] T? |'LY5oL:ӛA:ƄBs̖>ăڃY|\njY/>\l0-%8 91i_L˚ȵ[l=o?H;]=d‹EO˜wzSʿ!vy 9$Ne7zlqn͛kӜtTׂ[ /9Bûڶm[ys3_3l,̱#@H:siϊm|oas䙺{ hbCaMji0z ́ NLeJ%lw޵kz[$NŠȕCQvkwRߚi[IDŽIiB`k7rB6=ڥcGP%`ن0}hڪ#Պ5crAr -)*ReLa|̨x  ,ʨ=Nauڜ=XenpaNIL##={/^!VZB>zm\2-Īh:eʦ#Imǰ[Ӥ2^ g|)/ #ͬ~ė_ 2/#-n%6ʊy0Goguʢ=i[19kO3qM@$=^{D ۶'ά+,mL23֬08vbKj^3"^eWǮa*jvذ^ [5avOn65Kk5GtKFiC=:&t{/M}t]{ld CYd:5u!;8u̡˱4))FzEzj _댔-RZl ciӽk!G!"`spk@l1˓憅 6}B2|`C0s>#%ŗqJ)GNi6혣ڷMm:QǶK;͖71C29mW!scij$s ;Vqu~-ӕ=&rH;範Y IDŽ?^)"7=˲U{6NjJF%/j@UDaݯ;m9F+.rk jPIwVʂP,g.W haX17K0tMӖ#|ȦaKK"גf!]n25滷w~7'=|]:oNe8aNN] 'i\'saxǎ;ޛz&%AvO9"3/vYj+A8=IspD:+|=KwxpbΝߓػh+E5v-8ulkF/%Kx١s?nbtA\ga*) C\HM5 EHeZd* eʕa`yg'ٲ/JÛvZ>,޴my/mkMll݁[_a_=^[u*ծ|'a1蛯`a>h T#y9r LloF#QuHuA#`EŗvZK;ߛrۂSt8_ :eS^.̥@+ӛF"C'įvyFz.Pq@C5>s1ZF\ l|vPHUU7;;}yy~?6F?v^i(sɿ6x┿}jdyosy]^W >K.,:#M."ExJpFvE Gqokz”@Dz\r٩ӌ.Q/Z.EI֡Fs8] Jsr8uʔQx^N~Q}`8U޹ª~3ںTlˆQ0nS`vOޭRzI+xۇo\i9>`T|GFe<;N?q"cvl8mN#h4B@%4s/7E1(/^4gUh;]Maatё=9 nd |>>Ӄl?rLѱuʀAZNM lZj3R`::ZScTӎis=fk7`=?'ǖO%#S#h4@b1߿?%%?0`@FlYT<;7Eš rvc~i+jSU־!=Z^ӥ5Ű:_޽c3m@v-S)vt޺`jjj7bF{h4@mH̪ 裏ׯ_IIIUUSGcL0sl.R uEZrz rdJm,U銆絾 `uH*+|ZnQ6HFڑVN:$.s̶1GAG7ڵk_3^{h47e̠}fL”0H)%iZ",7g(:$7yF*jWr)'q5J XGxEmZi<"x!fkƿwTZMQU#OW}߾MMv5Խ9Mh4MڡYZ=F(a%W޵.6Xr"3fdɌ6eFY,+%pF^أvy9馵TyZ̕-_bK{u ^_n5=?p*叏|぀aIn J yܸ[f+T }}>qǵж}:fk4@wzLzo0Xa#cu/1ubZߙ'&hxwm44mSWdƽ:֭iѢk|2g1z5cgiɸ"\|W+'7शM`.PpO]q}J=[U5}]MzjJZ+ڀ6?m +vސewGZMYȨ>l.jh]\; %~F@# š/'GW@h c.#~2;>y^%ƾlC MLṕl$"3bkQX, V);:W+7oo`#:%"şR"'wqA_ܿ!cStoZ<:vCҪOJi.h4}Iˏ(;Ì=DUwg52zT.d-uڪ?ⅷ)@DսB =TE;tƔ)*e0K=TX|?&rt6uKs9*T;dm۶ݷo~3e3H 3C[zX/{}i1so/0h 9<11d.h5'A]#Au{x<f`VF*Guu4_uj/#%}pUT}~F{gtNݴw|p~;oOfooz?cgDcQh4&ǽסʶ)Yo^gg Ί']JXQ h\IKBUO53|<*7&&H@MDEЀh 5@ZZ F^jA#pȎ-hE1%RT  9|LRhn@@ҍF@#ob9ehioYa%)_ XA#a/}+`sYM/{axYǥȺXQV8M ӎӳ[^E$c@+%@ϒ9Ûks;Q(@, CѰ[I{4> cV5"]z :2 e˝ G>FBB>g㗺uW%7 gW!e{UΜ9Zb/O8=C(lO=v&B 3J vhUvݶ֖7a¬Yg-#%eԩM^[Z^#PV|QhP,X[nmӦϳ' L#4jjjK;E i~ ȁi.ou5!DxSD {v}qĬcU!еkׯСCF@#H,-[޽5_'VmK ̛ݤb`"% Jov&U3yc9@mHOOnPZmѲ{>>'IiS J%f6eQ%]Dڵ҅uM*`}5ѕWeqe& Ra1ڭ!UBK$igs̙˹O9s~993< 䟇 U~ eδ>N,w$+nN+dv9@*G@򲝉ضè+:h&t.UAu ̞X@TW.eA2$v9f3@2.r %* 7^.- /fss1W^A-7&5\^5~GW'qSD@ _ !-`3y0 y׶mǀzVֻZrO=$l6Ɵ. 75#CFiYR@ dM[T@.~y'&&Rwwc̩o{}ot/ITƊ 6tŧ{Grrk7>M5S5@@ f9zIu # $*bԻK\tVdccceU ;:nNk 1>W,9zȮ=7Uy#2$'C5fy\  X`@dY<)jXlog^k>1+{.)0Lu-l(H -?ߤ }-^8rXu@c0~O8 &:h%[o(_lVjc K&[7?]ip(@@ @K.ߊT}_*?Q@տU jK~c55DzP {aC^ \AsիCzY.UU_vwd^yxuuuPlS!}*[=#9 d?a6 g9j22%s>=XPOvVu~㍉;؈Oϐ1.|Q ! gTe9 8!A~}v9 " @ Ğb5{FW@M% " @prVt ]t+~ZvsTw@@(9(vi@@" 8f|>h@@As,b%%8H  @AsJ@@(wkٙ{{#  P gĜ[O[}t׋|\1&mβZ44lǮ9Utl#G,! Q 1 jyMMM憥˭90[i< I0 {Eb]bYc;&}iH>հ@@2wɊZ#h={vỸC*1c6M!4PQ" -P 555[Bfw124jUF[bm=~mv{U,69fNSǦ]  #}C DFGGw<}t:dk,_VMz+n s"zŽb17lSٱl>ճ@@"XSbXpYѪ0kw _%537d9>W,9zȮ=7TCǺvFNd+tw19@@ te"pfF  P(ĝR k)2 4vlkR;>p  @y T=2ya;|l' i`` Uܰt2'f+Bg̛[$\2Ohwy>}.vy~z  V@"f2;4~ .0{tA Tb sfʲ]}l~޳֞|#'#Ee  @դ8rgH@@ J/l/etttΝӧOBr-ƊT DpWo#;TRZecP:vR @@B"UHUʹjTWUUg;ᲪT̝mY(Df9!9zȮ=7-OȢ!S2,`A@@ cꚚ3fgƌcfwUL˸Un߾}/N5Q2-c;ש5tkWl1᭷tf]͙1#[7{$gv93Ka@@ %hqlXH|$Z.bnlllhhlfZeIt^>FoS)Qwŷy #[8  (fkc%1Kl]lØsl@@(mI0j$b>6q_Mu$ˤ"C@@ **b)d:bd^G  @yH:|jl[ʣ@@ c1*k|s#s5~vʲxg" .qOeP   @nt uέ:B@@$1>&}@@tcGѲTg^%%@@@1WoV˒/R)ǫt6[W2ҽ$^}rh^ @@лs;J9@@%y./_\fYS0w}YH-C#jlDVg)/zWR1~'Lci6v"u7yuջYuTgO;4Nx7V@@bOE9=WkvΜ93gL&WIj3l@Zc0_ػ\skcMR*vi5ݲ|i=gP w 9ݭHj5,-7b5ݳ%@u:#>Dֈ.ͯM# Z 1ljɶ .p |c%rѱ)b&*YAJ0הG x2F)r%]Q~Fƍ-`ߍheu M.rQ4y`<9c~ ŷ'cMpy' IDAT8m$u@@'SgjZ.VIIœaIQ  @^$f.h}:nK$lkl,>-T]d  òأbbw!]o>11ő][::ZS-}Zzx%K:  ` ecֹŒojjH4.k\a\4dY]sZ>ij+՞)XއY; H{( ZVȜ[9.MglD>JlLI^wo,A;]1@gC~̞=;],/^+5j] }톙)@ZcH w\0|s2ms9[,v6 "ޞLչ):hE:&pCǺvkºKOzu[d98vxIqgBP) d4?VGG C6۟<5`Ͽ*l3摡A=,At[+il*td WkiŌeF6UK=f6wo;ʷ/ӑUC,d2!$,_jFz(~@@/`11XD~#TdtttΝӧOOpCDnp{^@ S+{VbҤ%qsd{Ƒ͋ 0RZoػ\fr8e@@JacGJ\ux|o}-S366>\I TM6,j664ħ%!{w9Oͅj>kx5eVά0cyw,gP5E7=  @ H 7ϛMrաCj}Ʀƪn߾}/N3ܺhaE%PI\Ty{`?3ܵŰN4Z6jeWWbWs9Mfư,+^YfԲiؚvV;cNOԢҵ]a54R38Gӹ@%~>I<znn=0WSHk_reYI(ozOj P#U d ߺ8Q$ \w~au֍7T3:6>::W^F0o[oMQV<9 S6ܵyӔGC  @ H Ghfllb|16zhtPٔPy|ގ"/4z d! 1ءuC-׌Oȝ~?qoˢݒ**N)jQ>  PIT309||޴aL>*Ja  f|̓ÇU\shɉثC><"@@(J-5QC^wDȑaDdԿE@(=%>bU`5j$D6?3+dfYV=B@@ [`kAmk2lOy3 E@@D$֑q*.f`"!@@*J@2_̀9Rȇħ'UwE<8{Dꕶ Ėw @@  7$j}Ig5\bнLwȓ<Բ^an&Ze_ޛؒwY  A ħiT 3W9)Bv:u#  P~elKP3KDzHDglziXfG.z  cG2L=K̀X-JJD_s~9n3vk7̴ ѿwN3֚Ɇӻu1й, yٵtGǺ-$-=:b+  @ X/dz2R̰us>-"+ydhP7Kt3KG-]ϭڍ!Of 1pLΩT 8  =6VRqsR}jpֽfcYZoY˗2 e@@" guӌ kf>FT]ϚkXlē1ҸKwև޴y@@JO ~wKW5Wz]z$7E70 s^?dSԚ({|{|eSR{νK;# YwdKgE&̠yܵ9)(  _@?#ؑHzџF>ܫ61p΍L  Ʈ*|Vsu̵jU˖j[=?\?6 ՜tFcXxg-  %.`յXs1d˴3(pQޚ^xSjD@Xc9b,Xf.3fZ;MDd]18pWl;v , 1pm3,Z3TQkkgقkF\'# L큱CL~lCRvƌ)!  P\%6=x2,KOVs?Q:  S,gL?>)0ظZVgOP!)!  P\eObe2-Ҋ싿;!(?'oΒY:\i %^a˨9~zv-v=g#  P 1sbq̉7KW>;zʥ oznZXJy̢2g{a CϞ(/ BRS\z@@$=0[$^b}Gܛ+^y2'fkzU#̥O 'g@[W%?k7ulS9JlHtͬþ83(zc꛱x.|C@*I@X/[zsɽY;GTb c_X2ŝ×ߩ-\yIѶ@8w3[cZk|K*g6&)0ͩYywnCzuhRxP4EFtق P8䲄2T mieNr6ѨǸb2mbQf7u=\m oڴ8x䑦wx @Df|5f}$lX8>q͕ۺn#=sf<[CvUX~d 9{-{jw|Yn.uy5!PSIY^ͥ*o}8eHCڻK?@@=cVo(ZGj}}͐sQ $O9V)t>  ߺp|۾vs{xۧt_QV@@"1&@@HN]E@X loB~ @o.y3$@@2fRQF" AF*[+Bh@@ QT B   PQ~cpʖ!_tEI1X@@a#0hʌ%樹d ۿ*Xtdpg'=d#  @e H G,JM0OW Zٳm۶̂斮a`5w6FV4DLf@@`$#0VѲ VgՍK}l4ҳ/dθ "  PO5bFƌOti`` axȜHP9h= 71ҽL3\%bkCh@@ x1#E1*-'hd9ٳgg4ǛhKhY=" 3cSIޫ\kl:#Ycgs׬UcrgH3Y  a C7[rè,Y`ejkҵCб}`~Zzw ykn@@*O@bcH`,1m~m#ѝ;w677OL͋$d6Ü fב*VXCǎhtB"9giʜvfA@@@ 00O,bpY>:?lƲ U$MqȮ=׬bhW{zeRw1!aЈѰP9؀  3[s :|?n߾}/`vټO-k󼭷H2ڼbWsluY{?ҩ]j8bb;:ΡQ>.S@@ l~"˛H}KvcccCCCLfQm(':ۋN57).W% \E<&@@Q$z$b`QAaA@@ Da< @@pD̅&@@0 12&@@ 1Β@@(@Ƴʘ@@rG#bv@@rԋ;f"ʽ9  @&D̙(Q@@̅V1j=խ~.I{O{eW3ҽ$6}f@@ XAsa"={l۶-mЬ^|vkXhWcϘ8Vpѹ"[%;6U͠A@(O=k{a"ˋo>1112 z<[==E@@ !㭯ojj%hVzYկelDTjVx*,:6ml4uSu}  e(&O+h)@fϞ斖ڌk_ػ|8C4WIE뢍}}FdmӰo6Hڞñ&I0jW#n\vR(e{(  PF:J4[sa2, kjjtT)РBN 1Zz<34'#'KYU۾LGfކTX܍lh_Wi24@@JS 2bݹsgssӳ{\6fct7e"F?FSWiR^@@2fJ"汱EFZ׳.$Fj>-fZ$47snanOi]*˃." (+ԉDuuu[xqҟMpfU?jY-4eg?6N옇v5f0m:ĕ  N P]]<99Bv  @FcN?@.kw6Rf{cUѯ}Tmv[t   S.`91ϻai}/ Wwt9BFjSs,  Ps/x' l'|2/>겫eڳ5̽b NQo[f?t'U%w^5֓Wc?+bsa2ͻe'H[1V@@B!1 ~=IdxΩQ5T_oX/coXV/^z   @RD)G*I'5l}{GNٴ_zF?@@Z7bN3ݿ5^l|Ww\_XZ)V+{Ə<%U={n5VĂsΟ;Ox^Ugs?vڼSSvl%r># @rc?&O̰>s'ݷϷ>6Nv䤼l{짞?o>pNW̏p;쌳{?m7kI2  @ DV^}c` IDATw_-~ƥKVHSc_ݥU=k @s[7Tg vmׯwk֬ckl~{@@S-\P̦-O@@b FTm|暁`[v@@ FL,3@@RDd-ʑ  }shF@@@G9|8@@ o?zFXV@в/E@0@@ bj@@B"@0@@ bj@@B"@0@@ bj@@B"@0@@ bj@@B"@0@@ bj@@B"@0@@ bj@@B"@0@@ bj@@B"@0@@ bj@@B"@0@@ bj@@B"@0@@ bj@@B"@0@@ bj@@B"@0@@ bj@@B"@0@@ bj@@B"@0@@ bj@@B"@0@@ bj@@B"@0@@ bj@@B"@0@@ bj@@B"@0@@ bj@@B"@0@@ bj@@B"@0@@ bj@@B"@0@@ bj@@B"@0@@ bj@@B"@0@@ bj@@B"@0@@ bj@@B"@0@@ bj@@B"@0@@ bj@@B"@0@@ bj@@B"@0@@ bj@@B"@0@@ bj@@B"@0@@ bj@@B"@0@@ bj@@B"@0@@ bj@@B"@0@@ bj@@B"@0@@ bj@@B"@0@@ bj@@B"@0@@ bj@@B"@0@@ bj@@B"@0@@ bj@@B"@0@@ bj@@B"@0@@ bj@@B"@0@@ bj@@B"@0@@ bj@@B"@0@@ bj@@B"@0@@ bj@@B"@0@@ bj@@B"@0@@ bj@@B"@0@@ bj@@B"@0@@ bj@@B"@0@@ bj@@B"@0@@ bj@@B"@0@@ bj@@B"@0@@ bj@@R j.ה84  A ؃f昃n@@ b.s@@ $е1Hj@@B!c&bʼne  D2@@2'fu"2?t@@lX\覩@@1qbC@*[qRVATA@(i9fe>ut@@ `+Nc/S=  @X򘉛4Q@@J@@Ё=tv>]i=t@@ QE̎8T  Px8i vtt@@t<숊kt}VDro#@@(s %$ga8GJFb  =\<25x@@e+*v18   Hl-Rʰ6#  P4D"+ñH@@Q'2J0@@VwYH.q@@rIr=*οA9@@ VМywI7CC@A@1@!  ar3 cO,@@p XYfׁl@@@B. Hhka# $?%C{x<(@@*\r< 8>  .<20B@@K 1s  Ic&n4b#  @% 82+j`  ng.@@*Y>cG@H/@Ĝވ  ,@\g#  bNoD @@J b@@ 17  @% 1Wg  Q@@+3v@@D(  PD̕|;  @z"F@@d"J>@@ sz#J  Ts%}Ǝ  ^9%@@*Y>cG@H/@Ĝވ  "D#%bv@@@,bqB@@܁qEWi:@@Ёq4depU   !`M(1{ @@K@@TD̩t؇  3  S@@"f@@g.1s}   $ A=n&b@@@ s*!  @5  A&@@,"f.@@R 1a  D\   bN>@@@@H%@ĜJ}  1s   J9@@ b@@@ s*!  @5  @*"T:C@(8L\QE@H/kA @@*L43\a'" d)@Ĝ%@@*LN8E@R9K0# TOШ0  s̾4@@@@b糚B@@1  C . @@R 1a  $>dhٲ[;o|TotqB RBX]ĊuL6<EɜlicIzݚ6;@"):(?űB@JV0 O{8d[u?=^bKHj eY~[Jn :12ǬەUG5lUW='tRk]`UKP+OڵKZ+-³) @> @y6ï*V揭[%Wf2+!9t $:x`z.sy[YRйEtyQ2*@`*/S6m!NBgd2s-gˊÿڙI.1ݺdbر]B[Pc\Q-:v%[NoҐ4>6-gr e@@ ⤬ }gPw_ޢ ɯذSΙT"I̒Ӭos<9+$cHڱu$T Fyg.%KNJ/(+ue! (-@@HzKv}u$Q\S=%vT#:ÇO8k'%xKdzrg VǬb;w@@~ #J|#P0(@@Jp\Yl@@B,@\'#+{L@JI#t6K 1,.9@R QC 9O`*#秗9jG(m7FK b.|Jt@@,+Y̰hƇ  y9q  @$2d> Q`  ݻgJ?<}aS%1,LnFΎxxE'T?"X RUU{ӏp._^ϟ_!![l=tx (VW'sμi%K: Py~/~('>gs=x`جY>я߯t1lj_VslHݬK߳(Z8@LXI#2\Qh:t~lHHq !`D̥rm񟹻8Ntog  }ὯeRRH275ehEA3ʨ3H@H#PQ؝,3W $p ;|{wl 6.؈wK,F KX6އ@|~1HrmyrG-o\@G+J7mۇg+/۪xݺu_+7oFnZ pI[onaTcǎ^{M~ʣ'rXG5%1s22XbE___kk.`˖[nE*I=A@-s*Uc8 Y߽{wU@7[ >b92a,>CھK鯲"ed]~^wWY~;pY!?6yj@&!+ X) K3Nҳ~ʖRYO1röm>-X@;of){H".)t1.+]v,{DqiV;$u] ve g/`]~jswG#E׮aȊ.lgmR_C$P󆫗";r.Ғu֎؋ O{XV^-[ѣGrݻתDBgUw}\rɯ?я>ۿ{'|sO~R~!_S-Z$tR.7!%sQuuuو%PYO K, H|ҫ_YN{,[tLx֦%ȖcuCRLVz nopN{2lM<ڵkJlA' uuuڵ?6l-aFy||\lݴs'=;/F,ged+1 $|yv&ThY.d9}iT'FB' /rEɌHs%s!z~g-1|6e2_^]a)#~e^R% +R@g8b:}Y⇷>$SQbp[g(K~; ymktfĒ,V..66 a;wSO=ug?H C'sZi}D;w<Ӥk|ulܳo4SKz^]7?wQ-{LuD5XYj-R,Y׻$%CҔFtlٚc9P~f}gm!>i&IA)gycFٺOVVH@,=qWGyDb\Z+R,z_qƯ~U]| 72-{RX6w[+Y Aw&C(bkj~aD.+iS$"he-ehgSOJH˰C ͜!@ ~ G _K/a7o C]1_ o1' N~/`pP3 @BȆb81a bJ@@4u e)c5EĜVɹu@;VkR퐕L\duUiRcs  QC=-ef /B}}[o!!(v1۷v!'@mj~;3 IDAT*r^@d7F3zW]u<.ʽ믿M>_(G>PԳ|J@H8ɣG?M(*.ur<}H41DM E)~cG~dJ@@rӃ`O&}G@LfV|*QU؛Nȫ F`i[_AUf SPᷖyxGg6"n|2~oAm>u{W@oi ]sE&%S׿u=Fy__p/7oެ+.R>|'tޥ؋WT 0eO<)Qz#/Y N]{'SkYOکoŭ˥{ee9SӮ?~41+:%L[ʐWe(˺DtߦɬxZBawJ*d=FahS?Yq{{&[rnQ˖@&| ՙpד;^w$-\oGHj._.O+kmfU=2,IUA(˯13t3O?f%t!\.0@ݬpyjH+2Pw^ %YnF3aHayҫ;?wUٻ/oY+[${utL'8*7-s2w~ߦ;L0w_B=tsaNHS,d\ {vL+\0b bӰS< +bs_\:ZGA@җ[rܷ͜YWAf%3Dy7ˆLyh}dl2-\ ˺V֮EgmZS7j6(_&*n#IvX'VKgyw=p{gfc-zeᅤY grU3+1KPxqZľz=äd3ٯ~[G:"f{D]ʵ+?s%*QK-=0PNM auCO<񄎀uDV|%Ih3PXZHkD mc϶*EBm9Б9XG1GVJlD(]?|p߿vPR͝%/졄euhؚ +%JHZFwy ٥PdzJzi HOVhT׬#΋[a]{b==[;(pf{η54G<)y`SUvO|#fT&_up,![Ħ2+iosL*G^ksTk7ju]V%{u奓p"s̺"jcUȺZ_]ƺPfeUUepou@x{74I㎝1mbg N>U=N6'DeEf姎<,K. u*11uTר+]+Q7k@Y:y iK%Z eI(N1}xG%kݭؒD4)II HDR2S<Vg#.!uo̅gޑҼQK0j1ɾз2uǞ./sy[Y:OV5b: ETͪ+ͺ (uIɭ~l $O??9L{ylt4!)H2ؖ2ܥՓ e[IЭXOodN?cEvIcvVYg٫ ;m=~:[&Jg3tӒafmgJe$š* PcL*q$c K:h9ٮ33]Ƴ~w1 DƧ\?2N7{ftdUUij zDֺޢ2IjKu~Y~(ݨYz%9ll~vG:{jdR@`@7=PMuzg٘Z 9f%9X7d]l4ȺV}Jr']ngmL]OQY{,HzGcuv@ۅ}0!SV@21$MJƐZbSY$eY6J왋=IbX'CevY*{fE~Jw`# @I Hd<:6>G>=|lcKd))f҅LbyXI>sNV-ۥ.o{~'IɐFu7tQ= gGJ9T jy)z.G|2{9:9ׯ}(OYf XI&: @1x v }Hq_"D @*y8-~vgFc)"D S@Ss{,]Urh9 1٪Q}s %* An+-JUTόٯ߶Ys @ H|o;Z[sIcgXB.i,:  \v\zI. r   e%@\V" LYSNN /~p&:2)F$@X@K`'?{S`/ bieP (SDꪚjLwWiחn]óeYt߃Λ}F+j#,yc.B@(SOii3 βGVy֐Oq'V51IK Y*6M}j|񏘷K>&Y)ri`qV@S@%ce%jГK#+V-U<^))+]sN?}oj]Y>kˊԯے:SlVxuu[ָ춻]_   0*w9yvY4O6ͳ':Qz]b ]G̞u۶I4i;[%BYAKxEw}!?) | -.̋; I:ܳ/z/5yThu n–`y*i @R[pY=˦S2$}~0 "y˲nŝ=9tW7VIɯ~xCV ~ =N{L(Vw v%𵎕]={xJK{nWqD  P,Xx.ijߝwctU}{bFF$LJ,J]=\ *1<2 @ # .K՞y̒{ seZ*%IYkM{nreFYO 𚿼e { KO̴dl?\]}Uޯpz^SC[X Im ..n{vE^[/ʢw  [3yoɞ3BCS/_~}D_5k<^" /.@JPO ]B@L&D;DM@@" 1 f@@D@E26D@@`byV,NQ4  @9Qg>" Ox  PΧˑ\g>" LsSgMK  (@\g># L3+joꜜG 8p p p p p p p p uÑHu·_r%'a|c'ɣG":e](pz5 F$jDx1'Qvf֜SXǁkkkkkkkk @ wg#;Ǽ$!C2;Ty*d's䞽<}Q7oZ$;^kMqk3̚3f1tx7#{<ẚΘ[Ww*'Wd4\cK@E]s罽?K߹4ygU~_y;[xgIh'͙qM^{Chyūe˖/2^vIon۬uL*8W-tizp|d,'̙W>(GΝ{7òXf͚%:bZ^c0`#f\\\\u 4|.GT_7>#ιuwIY֣̙3;::۴/:39f_lǁkkkkkkL,h>~%wY^]q&׭g;LsڿB2]~_{k3~*2~G6KNtgeSs}G"qsu*0ßh4|gdՀbat&1gms*9/Pk8p p p p hͯ l~>5o|/4cBY- ]P?O~}f-կy4KYwxF5-圿]Srߧ?~۴܇/&<~\_!g_{!8p`NNWy2Ayyrʑ3&CAw#!eѱ̥T}ޣ?$`%쾃88@7/jh˦}|&UoYܛ(V[7ȗsI.kGέ[t$9qcԬN45u׆ΎoQ:K:$%غ0-c9f(D<p%Ƽ1{)og+'5)n>tdWg{DߴǼdu9fQWW85̾>僻IRgT*R^'QIwR}j/㵝LaM"E0 .!CZ*2U#@p\kO+ON%3$5< W4Am('Y윗v:;(QsUm#[:SUK313:bpt~S~”nfsa1G+.\PPsgqhQ8pp XX=j$m+fQ=f:ǬJ&p8v@Z^^*_X1;%B}VFt娊1 _ҳ2vF1\@pZ8{~5trNWvz vmUjjjg|)}655^>!_UI. =c>p8!6 ;tw'w;U5^ҠYGN2ސgT9477?\Zy_&yW#B͍Lm8T74c\,vRScuev7sں>|g%mk_}"9f@ @vceRͻfP89[c5 @ ppzTl/HH  @ hcm$/p88Л9[e1޾}JKKu @ D`رӧOSw,ZHy̤:mڴh"*.yᯅ1AA @uɊ>3r4r<nZxI!łoch%멘=('NT%/30R1XU[@fuCYk(aAql=-Y/ozJ04V^d)~Rf25G |VGpM&nŕMt1f*|$RN&YYY۷oH +han7[uIٺU˫ϑl(٥֊e%+ `dDA[?ut2?&|0Tq8x-R#TAfJs6Vcciii /|ǝ֢;"e @ʂ:d (e E[qĺi{B"P-ZO¹yI{fz-ŸϝakW{p^N8\zYIDATd  9555699yEEEVѐE1; iQ$Z|vqIa5եXv.)|}K B.@ %\4 ~eJ.YDHBN(=ZGy<7Áyк.I2hT{ITS|x|||LCCC[[ŋkkk=H@ :;>b$F`Љ=Ȧ8s` qÈ-v!HI QLOhdE@ƂS?? `ܼ 5d$OhhIOII81>(w8},`/pQ3l PLPJ*FCE7,fb2a{Fm[9/G xQ{h'>y2rXU{oZ\4bZ ݓkŹp"K&S%βܤ`8cQNycي+ئz~*Qbz2ܥ[(+!хfɌءK0l0 &/)xM;:S8!cx8. b*`xD&8*_m6C %h\7B@ 'IZPSMN$:9ЙKE g.p&#^a$ƤErww((kkk]Ep"h#RXb,9/N 「.<*r(IF/IlTS1r1߸9QoGt;a.+ţd"47E+0Kǖ X+)qGj6RU~B[I p`Ń/QUpHLAb!`5Z-F1ILBlF R ޳8J`O8&z- LAC[C ~?Pg,t]HXNEՓIVe] (U^dj|,=?jEC1:KXsQRr&DM={Nf>ȟ39K5&{ LbO#lQ/m1 L=`)QS4Mq{"tq\02慈ˠ_s g#-Jq[|`9N AaD?<5$5AKFඨVT Ӣ+xeB9bx r&(3P4&!s vT@.QPE3# rmVX}#3810|fɇR(`!MQ8Pa4D3JHM<5A)x'A@⦈0Jӽ$jjl6|0J"T[c.'@L10]PGg )If+ b@8rsUw%'s!Q@O"x$+ h3C󐻦T"lrX/W[Q^mk}ClLR(FSI$KB)*^.m]V,RL܈%z%RS:C^f3`3>-DKt$SP`RayF +†%щBŮ>B@lUC#1 XyO46':!LP*AԆK|N $i(`. B F)‘+KvO6<0)lD\;KUYs0]2WqzUD 8Na.D$;qHq|#@ E%d2^H "/|xLKDDR"lAKԆZZsD{cDxШ9afCKuc0X1rfMԊ`i/kǰQ8A.Tox4nDgI4' I4T2%{ kFqJK)w%YAاI>֥'Tȱ~0,]k.ϑ|Ր;"ROPwl~(ɕJI>7l%eΨcV<{EuS ZAdظM:^JsЕ-^D@8ZMu!ff& 2! yMຠ`v |ht _NùkF_9KSudm`d'J1[vz$$DO}4GLQcYj2$5!&\54(C6]8C"!!  C7K@kQC[ɵ!M8\1MIrz?'F̙'* 2yx61y U8I^tCt'!7J@=9O`7Gӈ'ea!l4/O c-Fa-6/nփ!.>I Ab؍!`H P} TjCB IGׇ\*Ga&Rx/)VJEAzF\ԗtVA4.djcbv<΄-펡L\ 'pp'sJ@煮Xn 8Z\>%veVr=H\E7GC #L84Y`h!we`tN̚DPυuPj)5 <rn_Єc, *pGXp7 lg\7}Y37؇m(xŴ-D,x4$ XERa(6Ypm 2^N/kO^mgX+5ភ(Ј 9Փ`D$zq-8P|?8^fc=lEap,\E ʎՅZ9y nopD)= ;ct[ i8Na?iaN.Lh#:CW|V& 61Pՠ4W̪^gxD k4 >ș4<ŀ f O&]y]tS0${N?%tQe(L2ĉ"PCl+ 8ƝVԌ-b8x ]m&Z&NTEMfb>-Mq*DA6 I)ep ʽ!Z;Wjwv A6Q--vN9h4}VGrrs?l(<\*્`6Un|@Z"ld.r#L$^jC ƑKcr4 Opx} GqV[".fE1p]{1u8w(~ݿTRFF Ͽ_'O *hYN#xU־yZyA 1lX㹿MR-,Y{KIKC ܞQkr8[IgPmz81pP-.Řx-ma PsضS|oۃ3 @8!םczooݐٹn4$^kqnulVũ4wmF IӤY~K.`V0\87'%ьHFZD7b!p/16YvT$\5$ɞ"_4R!wyh:Jb&L!u*じαMLE"S'~F+\ qyr\r졶dЇ_}ʾ]TRG~6NY^5SiO 3`#Y3OxP0slC{pq}+Yf^;߫~p> 161ӝ]lpҸ!Ք=wƐ#|R[!yBG]:5(R!yךE4bۦWsPg?}-zL {BE@DEE?[{N<{˭ R4 *KPb!%*c $qO{Їb,(;coˍׂ`6e?Z/*ߎڽ/yƉFs$KC@Mh.Q=\_CXVŠE%+h[ Đ2$r}y";ARq7 q*2Vpo: 2~{8bOM/M6{dXɒxEQHn+ht۰(O-ϛ, mn`I*]PwEr!E" Q-d[r㢡 ~!ݩbP]La-&<:oA$5P,.VDBJ+g jHq`$hdl}PaIBPOdfJpGM*y8PV7R.hV]ꂽ)nBȪՃε 5w.2=(! ͯɼS 9YD'+I=9}ğr7>#ޣRJ͗#ϣcFp31sd]O)DIpy`Hf:4pÔ:q4`2>姠y"M=/ w&[x~*c+·}(dZГ9R|wK: Fn-hN 7\<:d5">xz"B^Sr 01n[}_ӌ}TamB2PPfgYՕ[>3mR)ۿ wf5e*9F.=j}}T< L4uCKG.-s$Y^8c{GT%9׶Dcw٬g󝃓;lr9XZÄ5cU|TNk-_6Auk-P&ǹ-:( 7qm{\1!,oJ%p藾sp }dI߶e@&PbT9YWQq6֚^.1}⒫P)S`[qwu8v/Ѱ35ZIÎZi8FE{܎ϡ)l,ѓ- |ҰuUs觍76𨺿 >i7㪽ή yߢG?+W8p㻽o1B.|735RPJo΂6|bmZ9ڭ+f]8wW /7k[%ՁIӀ%+ PM0EHC|PDN.Ż~pAVX}Tm0v&my$x`7)ҥ2VJ)A<'Mr'orOZtKs('^v]l,:Qߴw9%9fe]o+tOpTQWYn9K֣_Z"st'oݾr/o,Y3|&CFswJ #Fzј}>Ѭ Ktͦ{\1['}#S1Xɻv_v$]/6'4$}a ; ^IѰD.fnU2xNv ~eםoʤq,铿d _KV?tk%4p84(⬴tzq`#N g4JYO@|sdVἀWWs`}Lt@8ZOp.B VoXB^gKm#*ec,I+tg]Pͨ_wh< 'TRG~|7WG΃0w9J4[M;9ѠrTH02CΊf7ݒ7X`5ofhV9(h'b{ty?[ױ0yf$$>c *FE6wyO4wڬr`. 9u#]/Q{/+Rm3<Ϊ`?U>ya}\T'lYPcS65R5Y]N,Ƞi&ՙÄ]6aTC)&͚a88f.xK޻7 ˢJҙu?2||[eYAg&}fdܽ-|jsDv L3`#J\5gn(J!+**b|IJ[oHyqNS4<\>vJ"e\2p2U/O+ 塉$=ӔD_z( 3\fRK8<05oIN]puܵxx:{v# S?_V?l32T(GMުsέȗ͔> 9FtDj2 *W;5^A>C W`MW}B+r`WAgpZs٨gy˿/t̩13k3>)''_A/Ùc_(*Y V \:$՗Ģ[?NAG;n%0x__5Ug2?)͝ A1Вgܡ.Z){pYcgZ=g㠷[(o[nD|T)g?Uj õGKj#o<ø:07›9mwz䦰Kz 9*OFv%qb\F8o0DReh1U+ _ 9+i!zMgR%;Q rE *`,Ao6b_.sVox*e1\ \p†Z ZyklMÙ_מ1l2c낢{hFCjE~-7n3>&W SVjXWzF"܎h9KZ?`T51@C ցN*k4_]l4kt,?"7 \_9.\>>8~Ed~sP벼k6VgfP>,) Q.BmVd_S96zi rl L΅W8kZ(J٤\Np%˗<ɼ>y4g*SB\QQ¤S;muRxCM\Wl]w㊗nzle\7gb aDu IDAT?5;2eʙ/>S$V_ƌ |X"2DrѧwB˹׏-lޥ wW}#{C2F^P4~۹٢} _Jwo:a3꟝jw N>sAZogN6>Bv HUUlM(bMIQ>#B_!c)1t|j~Q{!F@ED:^"es_H95ݏQyW[7d'a {,9C#>?qrbPv "&XV]agsk O<`TDTfEP;؞5 xQuo@qZHSwC!Ć<^a5p3tCvPUmIE;pDz }m[B<֏4baN忆㚬krkehmx'v u\C޺%= 3h+,f؅eيD@EPdSEH)S3Vg%R# <g?"b4B9 xbgd6T&'&WJ9 &T^<_& Ivز(W9v!f^ޗp-;^幖c\ϰ"6~ռ3AߝȿV̹\s͕Ż|Y/.x*Gx\كcfKsn #ײuJq#ޒ(5T#OeʮĆ*Z)g Ö7 78IbO0Ju+w}j}S&UKdI(8Gntz^fIzC"e",_ӴZ e]\E%K`7W-[wmjm큽*ooaۀ 8Uq+R:v81a`vVѱ&XVLyJ; Npխ-Yzvgv9ܯ 66?v<V{86Ucȹ g5Gp樵n$ö#Ƞ_Ї샮6/+f]Fkm-n]7K&¡pn~ПO_usb)Jw)P:A-)ZnzMrWfo,M \odu'[q; 6WdSTU0靖+ﭢ?~#8rV;" [ي oiv q'nU&LNuN5Eph]*qZXC91>fV -hSCsdr[>d{}v@&R>\UEDOӦرfPSUaWHnC1!5dXg+U!Tr]`׎bqo Yu*!84~7/?Uveb_crTL.?~q9/v dw 8oq8$U`h.~}l[ fOCլ7c[oĊ>cխ[,'b;rsi\^ZmP?dՋ7xuͮrFXs\rz!}/dݰl.J{sàFE:w[eWij^T>WFuǟ8ײXMj4$U2tѦMwzVCqԸĚ%`bBj 9 prڸ9kVc;w.Ctxk[Q&@IEg֏i|%Sv. ?Ҳd7 ^zKhM0؍={N<| $ho (&!u\Uw)Xi|$`J{ZQ r!4RV[BV'-Օ<5 $)+|-]d{R("0;8V^r4=X@ٛ (PWIH"|!y $MʰGP'z&U[N~xZ>!qK"kt Ik\ނX^0#P4A 8eOdOz*8[g34|pK/-%qVPY|s8Vy6콊iC\jR38`OK% @3t2dxNQ7>S OJRx\1P->yX"'\"- J-u0au²h:pBˢGIN&ӻкqrZJh9 NZ J4ϱxinDGޝɂO.VM³$ޞѦ.lG2S nTo/Zʱ궛}8jJ ҆jCA=e\{M=+HeLz> GYO'c6ʛ'o>|>& 8xZ:& HB!4rެP*9]?%яQQjed]4 il7\Nmh] x ?^tĆf?f4TA, ҹ| <FH.exJȮKRmx @;*1Q?V8Y`̭ (s㱇B=E  8MA3JQƊa"Д4%%o0苏8tJd#A./]_=5_X+4x z*Kc{B(scn hB%5ېrEIz1'UuP&gcPjZG1q*%Yd QI\Q=N&֡vuF=WZI }v%SM 7`[.o#g ]z&,BRoOYRA'C_`O4| :B ?,9CeL} ;$ARTw~#C !"p=(]V!(A}8'sF 6+rXG̡ O t<٨Ҭt#5Wx!tELȇ ZYF- 2K/)+ B Y@yAB mS܎# A 䀭OC5;"d%*)p 4|+~V y/Ifq-V!?>-QlB(pW&gG Xsa2"Jc(ڤ; 'I%S"4Y2.,7t.(C4ݲ%ܑ9u) Zh mrDآvUEe4KIII+OuVV Ka"KQo"ɿrM%' #<tfsኛԮ4^Hn}tY)( )v %$BK.rAm5TᏏ'MT* l5xERȫWjXCͯRQ1!JgZDe$gP dʂ7j " )<蜧Й&9n xm5$% ? :;w@xg8 /97x~V Z h(WɊ [蟂6Z+) diJ6"r/T^xUni 5|5Z\+bЧɢǥ֟e-VKil;ʪe9pkrA!|T?TP3&Ũ_r>p-)pF!lA9fJ%מx8ST2ÉM}5W*g GyU)rr0vWntt* t$ie%/CdVy; &%̵JS]sj깆W8r_@ 6_)'΀uJ :3QK6oD{B\x >sTlv(OqWkL+p'+QHKDxջÚc*"3*{M@@ (!əzRw|j̥1qES$zT`47#qS@@ (ӬRwbh@@ p{(ĵ ^._f1'4/ʥ"yeYqpNqᜢrY ܄s33t2L)zsXXOSb` DjP[EUupJX/TSO ₏) s5cڷ,YR\tCfL\&:pNQ r)@dq<z+B]|X{ڞj.+Nh\8r(ڷsO麮}R\gqRGxrG9޽8qbWp~s4C+6lnϣ"hjOxυ*=^`l1zFβ&^;s|nϩ{3)ӿa-,smN{lNWvR uF| [Rʆ1F#37ZV<æYıMr+~iىcaʳ}+懎] ~Yӎ:OACs~!0m(9eg)@oM 7w!r/+P8ğB u$'z7.s):nɹV=,i'u=Ad 7뾾\0t )V.|% 8zVTSxc!?zåN=z<,,;y<ƏԤI+Ǐ=*o|M&}?MGD jkUuGns֧@v'v_I)hxr~=cڅ/Cy~ N*y.S:ZFlѨlIT ߸Է1e7 k꬀Օ-Yßz~cW|W.I _c~kw(ZjP^jv}zZQڠ;[{g7aIسZ%<& G^A8߸y_i⤇A؜˱ 42WbXT/'rY*{*oV8 8Ī*Uy $gqXojN7y/Ǯ‰ Uꁣ+MbC%]f$ߖaW4 *W]*DP˗YYoF@PQ\7ruշ̘P8% 7Y ějTqR;[)IJ~udnr= 'e 4֫EkR֮:3۩G4ݟynDu: "xpz=Q.NݹJ|8e,/_9|nAҚ z(ھjWO)$zJqL*jkUuC}T2{p_>C1,i<lͤ|˛ ꜛ${ Z쎢B 6DFc"]Ff&]~œpLoF#>k{Ek-:M[2i[lfJVX_,P|*[v50}XRثlvNx M#O V _nENɰëЙbK1-{5ő&_ IDAT]T5q)H:y\f}^sz7[JVL^EϮ7+I lJ=cS}\^iә57݅y{K>3@MYކeX5Rjy> ۮ7VrvmW.9&Pm[;:MZֽqEA #9J ¾=LR*8[cR hI{ySjyT]&/\ W#˂Z5tQRp#\s6K\vQsQ9!b首 tBfTb YN/)[ƅ_m]n@^RD_$N*%"8^ sQYAnW HyAZb @^.x\n|*>-l(/x+Lk7#iz=#)[jAiJ0ew^w)j^q @\}aU<-=f*G mCom򾦢@B0EEe^&6LH 4E y@j ` tmt,gC HM Lm,RS%e^+ V7}lJ-ͤ @ &޿w3V^,DQL 4塻ƴ{lt< ݄L@F Y 7we$^wt"O xzk;&M̚,4= bH@D/|m \rAe:lqlG@@؜!tpI s^cH^U8E_-4}̇]:<;*{; ҃x(=JMOJI!G ">q2f̔%k֌3B}_{ϰmf$/mj+ >ygCHd4'ce/VeP3ZSrfI$%$Z%&Y<ˤ<(7:*2Ghrfz#/?\΁X LhAG\Z4 {Z;gUsMN\W d*X፽!!62ɽҽGҽ 0'Z~WA59ldOtI|Ċ~zG> !¢JeE pw [nU48uV?,F4SDBOɀnʽ`M ;,}vdΕ߯|m&e0"Y,"%YIh]>9`H$>õ+YCbT'QS:Nvvo7q,>nah `BS4NJqdʤzhRR촂C}荿G&d,%\n:5|U֟6⏄]#E6WG4m5skWb֝*xjс} [žZoL W;|&/ʔ\ʜrsw>{͂_Mkpߧ^\$rj8u]յT.Ny;,7I8^(P)苠UI|yS7' l䪹[|n0"VMV{Mi6dCO+Ƞ; ֣̐g/~;; ac׭b|zj Eݛ_ X8 k2bH8u5]瓧Y nE_;?leU&z'꒐%_7;aAl"𜏠| s1@ҫxx]+/?ZhGx`Zb9_t*롧`=TVɩ>vjvznʟa۴4pc_*U:]"3E}89yh) ibq^D}+yG 9_vłB/L8iʪLNU%! vX Gm>W^aJH0r_Sk@gߠ7 w)`}8}Z7ph>ҸCLq|rH TD1Jr=J=n޸JqPKStY&LU~NE}1߶kGlњ⤯k.ɮ4V0-m[/5(Ct^Ѭ$ޅVhR`HpkIpۨCj Q?骍$}!g}/xHTFA&Ԡ6XJO=n!i6~ϥ#JOrXKy ҧ@l@G3+:׮aS5#h9s}3{+Siza.C;4M7tW|dcݬB1/cOu u)jX5V{8 3Z|Q6Dg.W(>>zÇa\;ξͼuu Lĵ^> y%"Rzlqakأ?}_ I0wu᧶;l/u'c`0C1$n0 trk3 тm&NC6Yzv\ vǟqZu*t)'?4F%}I}heWmsn˝w4'$I޾.IxnI9go="ST`,q)d#=_aٹoo?2fd W ʶ+kJP>  J5 8,T|i/d?3Hv_%J9s[ W|3gNPTU("xD䌗ҢZ24rO1}Lg͔!kO{jBGsX$z.I(R"qZnI| o߳f̔Yޗ(D_Rq6dJfeh4&ddzC xzWOOY!Y !uێ,9]FG>M(4wAg ~|sPX )AeJnxJkWk^;@@ Aly|>xͻ gIa9MBo2FWoN~Fܢe3,"0.|̨OSB.7-gʧ ]>+NW=+#o٘3Zoܢ;[|6.F˾[ Boգ[|CV3}G5Xًc*|Ϛp慏Wb z@!Z>shujh*Wa`tT 2pѾBZU iiiL#T NȖN;TG0<5֯[ۯoOJ;'ͫ {x_8tjq vaëc6%O[uIٓ9S@zm^ȍYU֙^<8443 msV&IDPOKF@8]uAkO>@_ykSX~qlGPx";khH͑ůRJb쪅EkƆJ?+_;sȘ=g)Ö g!] ɐu׏͎z{~ YG1q_ȷ11%ۼ<Վb[y^}!/AR 87fbV͍ ivGh9)9Ise*$އwG<ds)R0X~é_^)SWp+ y::c~U[0>bN\ @oMgEbF8w3vxd6{?[wz}6bcCYWomo #q0&+7{T31'LR\5TJq) 靯ɗ>?27IqV/]Wr"QS+\,HUF/|S+}G䍇J'?LqG̝j>U,*Rw҉ JBǢ ,##7'|ے19!Cm(Zedyjԋcγ 򩩀#`|b -/*q"w[NnNbDuG.؊L97b0&fˢcYaUdS|6Sl&f~V#3YuXzi=\3Q+{:r- Z/gڄdTEBUkhg-s͹.?(xȟrd.~?r6z-߷21W<0,n!^-='/}lcӎ1­?uЋ%1i>7:n=[kxďEDaUP;- &[]фi{z4ZuXP ^Nby'&H92fy7zyX$KRq.X]y<[2$JaX]2󼿿zvY6!j~J=|H6_# ۳#= ő ?'T !aCX6 5״w}.|}z~RPԃ"Ow@@ RJQ|tfb7s^Șc2A%U-3M7N+^{kXpXЍzwH1PJJE +@@{1!CWGZh@ (7C:yOc';LuJ,i&V0!]MmVޝ"O H32g4T ^Kc@ E?>cVxv8HoQH H#DM#`[ 18MFΜ(R% D xHV'+n`!N 5p~gB@1숈.qb1ҥ#5RWcM /i QKD-XާB@@ L<}u?;4βS:ѯC 蝓. {xc?fL\{`~G+l?W%z|5}!$G|F7D~Q'xĮ ;PCb"A x7fe.?NXugEY'?I.~ڎ̹mf?"+ \0t,d+Ve?r07fِw?_]cfo Ik=VD {;Ǹ;J~mD(x|gEbFbWVf:v+-V)k }y|Yi}M; @) ܣ,ekx'K9ڤɨݎC[υK; 8 XSl4!_O[!R 4t L ۣ.ĩqY-mC%X-Sˤ+4v^R{º1c&ncw\I(W-ɚ/ ((ٔ5SYW?oV62]Zw_,&ϒutq&Y,c6hJ:4° rFOͩ0 ZOS\e\ @rB 3wajY ^,t1>8lDm/ )G>;P7bY,K>hٮA@|˗ڢ~|vm.!@ʤ2Y|cj|IGE#Ö _Q={YJ)ge&yx?/Ae_xk|ff6[`&dt..1WD1qkӳя;-eR瀯4wi=3iQ^W [IJʒ,jQƉ#Le'::Sz1wz,\b.M=ǹ4bSwSB2Ҫm*MXU x<:UK̭Bo@]^­5X22q/63u)ħ@ >Vj6x0ǝj__;D4J8qV3EUJ2 kMٺk7?֒&u?#5#WUǙsx)=vq! 23Xafnא#Zۯrzi~lN2bKHm%Hw"b8MOw=C%TyF#: IDATa/]'W|]{}kMmhdIW/]{WkWط=9=ҥ ]q>HlbWV->|)\n1{4)!Kq'j* t0zFȌO| JUho.wѪZeԂw".[O2b`z/2}rh e%/#*&Z.FW,؃+ ],n%Zr=6Fts@<`A_4S㥬X&^a.}~YJgn,eUTa0IiD|# !b首N<1'5 ^M;6Ztھ頍zԿ={տ'r tn[w99*?pM}Zz)T~y䭫| /R`B34F=gMKUnf'y#~!g^ubB*"O "~OX@#%{ݴ" $ҫ|W89}S1+ ,.03֤$c.pvU3$@ dж!Q!\C&KjkŶj+*X-}ܯU( O$Ǫ$A \k93sfr$9{_Z[>gAoܨ/* ^E,w_̳`Wx`{@<׻+(<(&[걂y`T*J嬹aIA\x@JY= 6:|n¸s޻ik!zO1 - (veE|_{~Gߞ9YUNdP0<Ə]əg?q󺺺y- -l9syضV|'nd;k=y넼Nt7\+ՎhYhnn)qFnɍ<SAĶCC[ڵkZ[rr~ Qx`}TX咢l[=1}5\֩_BeSwu4$ox;‹~|Ae(n;}Qcj /ry=8@[9F5kѦ5׬]iqۡ\ﻭ-ЬY4ԍݪ74gW>Lk-cAH\RS1/=qPV;J?{9z}{جc[W)_`5؇\Q%["j<9H>C֭}13Ӌ^'3Kً˗imi ݼmͺky y芍Ѩ*[~׷94C7}ڼΞe~づ<ÓI.GǼ?>. ѺW^ba nw~~vtPuq g 8 x/<:y vGjkUݰQYo7vR/Y >zq4c/?_  ;/Gg}w|lmse>?Cn,@Yk,<5qo:;;wܒ%K̙S>'=,NbkF>g+q{lUyݭf_;anY҆QEvɟl/&O<Lio8qYoͳe<@1;lxP.#N櫾gTP(&0j{T5 7EwYa~ "֖.IpE (esM /Dg^{IZi~mr&t*w2|Qi +666k>z!(iqwunkY>\W70@\+ sF஠Wo}[_ofG}hތ-k\z E{ffij5al_|^esN>mNֳ-Znr&ܾc`i(GL-aJnˎ{pʥw.x-uyW~Dv]C ,Z}s}]s̅||v.ZbmOCirƪOͿnw+Wc>?<4O^׷_s7%P5mL yΙ8y#LY]^Ù>ܰc{y@O_CƂaYow#ե֥5 x ;C灸k>G[lwfN:y/ n5ڬPߺ>Céck=R wޢZ0D[Uv_ۯ-WWvM=wgE_駾uW`pnˆVQW| NrvԮ/5ϲc戞cɝ6lB5Z'_.w^w>xSx)c۴+:2S]w[Sv k:&p􀾺yɓrW9T[#q7J,}-8I?=~>xlm_T.ie)Vst4dCӵպFceܷ\d~)Y>:kNC @%^c3qfv̕`ьc;p w,Y#6δgUBkV*ܪ9ӺVWY1fx4f>oݥYMjXpnQ*]d5+W xWӧO_~r\W 7n[bw0W9v?9#[rU\.[\hxCm [FNgZӪUH-us:j=d%31 mqK8] +)mim굁kתMmgk8hp#ˮ^CU#֭yW'4%?$|u̅wln>r*q*9\~ֵ1M6k%ф\􉻮œW?RLWHFy}Ͽ_Q';tW~ޫ"vd5ұ%;^Xowy6sgam,)+*6744`ˡל̝KjYoR}u8kC_lq|[3WT0C!k4d(M7>9kͫTC-7lY[ǴWv͛1|ySo?tҮ2:Q  C *;YSĽj oa FݤjCpSuk} ' 橪Z3FUwuS1Ns-*5N]=r>#}XmJqy`)ޒ,<}ucOi W~ӟKs=#U*=M/X5lo]Rulg۴3ku\ YE$ԠomYߙ^x( ιn>ѮZ9YmVF,.9 6o'Ff+6uoG2'nqi]6!t7+x~W PIx\*DeYoGKW d=%7q¬sFePݨG(yq\d8iqB6<JbvN6Gm3#[VaDʻ\89c2jTt,l*0himo>`yWo7;xlHu9FݭJ!ezv_ =XZVrџ}#6fO|c{cm}C}JO^\}CoB#mmmn-[ꫯs1Xm~GEQ.~Y՚n親8 ËGn_խn[4,؞ycA!N_ד&)؟{Zpsډm)T+u?NvL֛+ ؁k2Ryq{wˆ &3RĊZUW3EE:aBK(hTSBZE~FI' 纁R^[t}eu P܄6{47MlV,5+z X_bWן!^Pxad IDATW9jNW`ZF)A%th#j`I 3boO=ːWhR'jTT'1 Y}FX>LZkj B|G.ok:IHn ʡ ܈)$C8I va]I2itkHUd{};q)PCErg}BQVo꽟`bԐ:A'7 OLlXzuX©BV \&ഡt#.1fӘaΣoI/l,Ҭ_vc 5{,1`|(ieNiɡpyg_L et⣏(ƷϤIm\@otrZx`@IY@"Xkn{'Lccd r e`VT 8uBr"^]}G8VB(xm7ŖCFRNF5nPX &H1 jY&+)">`d1)gPQtVI#Eƒ&@)>=puҢxhXF+!!܄C = :,D|Tȥ Jlք,N$TXG.+ŀ@_dA/L /ދ ed[.i@RG'x'GYǘ7I(>t@%/f0fґ R/lMD#".P~{ T6 1b 0_X#<*PD1#4H@ڠ)Ȁ+ š^;k|&%?gh-Gs!_aG41e&!F>/|ٔF5}!xйGl҃IZq oMe(S lZ׫T#ڍwˤkUd1o{z?mb{x~EсC:%|)v*쾱4A0_0Sg{'hlS(ɼ_XY**ꞖՔWz -A&g$e r;~*"kb&!qT!J8DhDAae\Ф8Uw VRt ؅8X߄jātJs}Mw[g9 MzŃW=1cS` 7*_жRy|VS.5鶮_z"(5+k=`ruѣU M4#iOp%&EټUNĴȻռff"SK叏Xj7QTʧ1QjT|nQɁ}'Λ&iBp@4DX X C,+C *_ @IAˎr cjA qXnr| ,:qzC5* Dhiԋ5bw\(F0@Ӻs5ꢉܐr'nyUmMW Z׈q-vkc9k jOB?51s6oB(kq(k 'Zɕr"dg#C7ILzw=d S+D/poj[?w#Vd\f]XkT Y6Bd] t֠9̚bGJyfbcZF|ZfaT"yqlѓZ]kgD#+ v+xn;S zyf*!}͒wУ m&BWȼ3j1_dQ)O/ॱp4b\)}].sN`҅6aFx"v3'zyWu WԥxK0 Stv{Ӵk=:2 c|ك1*GW젳NRYiڍQ:;pn H>AgtV,+M?x뷷uM;uIYuߝK^>#$WJʬq9˧Y6xcx$ڇn[r̂:Kn+846YS'_ʍ:gzEn߉Sq߬Xų1R*Ly^;Aiv`iEKgfڪKj֙$Ϭhϴ޶q6ՍדHq8|W8Iqk@sEΜ[<kH$3#,7Mp iWWsD1/%M1>c !X- m,TNɣ,B-9Au։-:J3mPÝt7-a6"yGr,9p|\,GəV*( aGJ± s++36"^5CeI i(ľʏ\}%p?w,;֪C)A۸졒Ob1O<\{7Y3*8M=J.8Q{@2ٮtNϖ\;N]YL4LPy8ÖѬ5kWy`ws>RJZg)M5KkQr$pv6S;[ZWs;iڌ쮧|thUPbԫ3y3VLY^`Y_IeҎeo ֳIQe,W}{0uf=8B@D 4d cy@LHADyP`AaX$a\!؁ߣ4(mD͍ف4,e ECs d*XXqd$V'avR#7n"3*1ZdAѲS0.gIqM.Ǔ$T)Lg۹LͲEp8D Sܛ"l,Rean+-yOشAHrodVSnQ,Nr*Pt;Gd(~NYzʄHF@ls䬮ݶ7^i~u/yql3*v ÃF/58YoZZmsN?GYu׬ nOYfJ_yQx@dτMަ&a37G4* F}e|]_cI`ҷokwY H7

n/g/zɏziK~^?iKZj:;~߹N?CscCeu܅ZO{\p(֓{׵zbV5zBxVqbcb=w]`|31k)R(WC*2l:Ʋnmޜ%.cH}MWT۞'vڇiD5m{6K 0!8EϢdBMF)mOER?.gQRwb)8r}+>)8r}+>"#Ǭ#z|)G%x Y1/z|1/ڒW<p(֓{׵Acb=w]xx8FػUzHMl+X`/2[F1śYCG,?fJ ͦ yٶgcPKxZ<;@IAR-STR912/examples/ADC/interrupt/.svn/text-base/main.c.svn-baseUT LjKLjKux XmoH)aJUb;/D@0P W% M&Zvgyffwf-Νk\}8 >Ox,fQ rئw#3s'M+e1O3h>0Q5P˘Ga|.HX Y^%?/h] rˣ/ Cb8Y (s*aYkB&O x,ma2&3qAte ;Bpn'DHo89TJI=wa5+cn#Vqu F SCS,U2@1&(>7fXנN=ߞGp?!& 'oQ4hMUC!]Mw)o],7 "75m6CumUߵ-C+ Õc4+Sut K~Qiy)zn(&hD=ZsH jJ]#F=! >7ŠbXZ_SOpuiФ 䶎*k萫c 1f!)$ۑ|#$7?K<9djZmf-+5"Ƀ+B)xx%Є&0^F PxEVFE=,/ꑦԵcmHSCD`/RJ]z vV6u̷4[l8Q7D۩5&&hά'\N6'k')>ږ~5o}u_>^Y`+&e`xiELMxP^\Muh'i'IX44khWNY^ ϙT/0<WWRC%~jtGt= +KI_( .rw1<'SRsý4%і;RvX&]HPeXqUqN+ ~$!I_B"(*bPwPDL O_t3<%$%`,mKqxRyS0IX|vkeD>ӥAAOU愺o' kL)}r)\$PrYl:MSli-kN#_Bkcv0_:^#niK0tPKxZ<2;BC\2IAR-STR912/examples/ADC/interrupt/.svn/all-wcpropsUT LjKLjKux  @>=NQzA+II`xmEа@$uPsmr)Jn)U!7l-TA14p cz}R@ ȵ%"4eIWqxfG05KT\8lڲod1il񇵸S3Ϥz "sgo PK xZ<-IAR-STR912/examples/ADC/interrupt/.svn/props/UT LjKʈKux PK xZ<+IAR-STR912/examples/ADC/interrupt/.svn/tmp/UT LjKʈKux PK xZ<5IAR-STR912/examples/ADC/interrupt/.svn/tmp/prop-base/UT LjKʈKux PK xZ<5IAR-STR912/examples/ADC/interrupt/.svn/tmp/text-base/UT LjKʈKux PK xZ<1IAR-STR912/examples/ADC/interrupt/.svn/tmp/props/UT LjKʈKux PKxZ<Ծ1<-IAR-STR912/examples/ADC/interrupt/adc_int.ewdUT LjKLjKux ko:O}8GZnvIYw($-kRrlir!^6KkiVδVJ? | "Q:AJHϟ=։)=wjSqi\{OQRA "xjItvyz3 M5{ٰݲge2ƵHF ,?4,[߿Yil5ofWLv!1smiRhYgZgz迋}D&  PE}j "SC7H0VkYKjn]qnc#0}'r%p ҐR9JUy2Jx|盎9gsD);(*,S"ӏrPKPa/r=0 pyuK-5P6@ftE)F^^`^yǗrƈCBケ!j6uY d<' }L+TX#usI#$x'o4Wdjm }Mr$eL+RG'aGgmR97s{]U>6׿T>N aE|r,:kc遤$.\|!< \**$WĈ!ʟ)rހ4טuֳܜxj|OSv}6 |T1DRܞQoO~2Geܢs>˄ºayvaNUϦ !SȿUL):&?橄f(,\q iE@`\5v5d?BSG-Rv P”7%N)ξfoJ+6%g7M5ܲxc>aR v/$Kw=8ᣥbޙf޸+E2,R%W{יӹ7RɲF8M~ŋVm+QBw[/\(=22#ÖT(i' 3;65FjsW ?83LUEAJ.{5O{5ɫy3J`ȃ!{aP/][oV( ;R 0LwX9ͷ4.%cH2rϢ-?\+{Y J-'NPHIu˩~u'|bJ'+|n4W]jːʢ J! )繕zWsrqa;˖PKxZ<D S-IAR-STR912/examples/ADC/interrupt/adc_int.ewpUT LjKLjKux \[o8~?mަKfdi5cv.%Zf+Zr{HIŖPT_MS](~<|k%1aWZ㕅|B?_zs_zO?Ԋ8='՚?k껧 G")Zwx:ή BoH^0/j{%[M =ȮX">=pN7'MklJH/s 3˃p.P(۸wS~( 1?%^ 酝ZϪ= ԟ~iuI,.A4'ǐ^ݴDV wM1 (BaicUwIZ3HߚMąh@֎)vP8sgN"6u59L %\қ2 !=%C!ƖcZ{!fSw~|VHmͺgV(&ϐXNv hd3$" q+PBԷbuxeB* .;cGYٮ~;ܺë'yNjsi2O<5{EK5FZ߿^ h4埆QWvGȟF#=<-^j4v>Et(XÜU:t0`SaFowP_.KE2{bSH2I ϔNeN&c$NoN=nRiv 8dٻdnl`X`* * 3 #s;ǴH3 1 [9@vW9Y;}] FwKP0HC'4&0')o(7!9'VzeΣ? CpLz)3RN&=x/Θ9yK'm=IEC_ਯn{SJ28޻2דy5kYG$Pg 1 :2{y?J~NCZc& )6ڣ.J*)!Y\ݹΤ}o:W5V:ٕMSF>6A.¤ȔJ ({胘\qk%ax]0C)]Xe?$-8#>԰ar|ZlF!cYx*_ :\ۺoL A EХwb3Zլ{lE=s/#l#o]Ag)A`1hLYQܪCg2~p˺ܖ!pJԘ3&  D,`!(nVQ`u1ګ^{b/smz >+~Y,CrTNhf:KYa:* vcߠ$7cvh4s4ƍ.MG 'ߍ<3&JV̖'l[o$F!*`j>rϮ B-^}؅;\ zqe[ ) 9Cy\pu ղVd~va /T5;R{vȅZEPBԗ!`d"~qX.xٴpF9^;3+!i%;';E~~~'BuĮ7۽ۿ?ܼ\y#@BT9ܽb9Su?o(0v+fg0_a^ B;ܗvE7!TX$!7[AmG}8S }K_e2RÁ[`AhjU uWʄfťD[XzU!م1潕7;2 qsd|'fjr׵Gjě؞3^ +|˹Ih^9FŽAJp:d%@;/ɶ.Ov|1˶VF&wf.bD0[* ~m'> Ѱ2s/0,hѡhZת v㨧&$J5^Juy8ȍ +-/ge혷ע(ZŒR)G-Zq7"*@g : ;j6%mGO5m"Ďs(L g0ֿݹ)!Tx!k%pGQ7kb< 'e bUO~!g7gFKZIKz$++} |JSw{{+6ǐg{_՝'#߫&ReXT%Ȣ2%)v2VL#=@`LKpN׹'.aݪybOC=@PePKxZ<;(IAR-STR912/examples/ADC/interrupt/main.cUT LjKLjKux XmoH)aJUb;/D@0P W% M&Zvgyffwf-Νk\}8 >Ox,fQ rئw#3s'M+e1O3h>0Q5P˘Ga|.HX Y^%?/h] rˣ/ Cb8Y (s*aYkB&O x,ma2&3qAte ;Bpn'DHo89TJI=wa5+cn#Vqu F SCS,U2@1&(>7fXנN=ߞGp?!& 'oQ4hMUC!]Mw)o],7 "75m6CumUߵ-C+ Õc4+Sut K~Qiy)zn(&hD=ZsH jJ]#F=! >7ŠbXZ_SOpuiФ 䶎*k萫c 1f!)$ۑ|#$7?K<9djZmf-+5"Ƀ+B)xx%Є&0^F PxEVFE=,/ꑦԵcmHSCD`/RJ]z vV6u̷4[l8Q7D۩5&&hά'\N6'k')>ږ~5o}u_>^Y`+&e`xiELMxP^\Muh'i'IX44khWNY^ ϙT/0<WWRC%~jtGt= +KI_( .rw1<'SRsý4%і;RvX&]HPeXqUqN+ ~$!I_B"(*bPwPDL O_t3<%$%`,mKqxRyS0IX|vkeD>ӥAAOU愺o' kL)}r)\$PrYl:MSli-kN#_Bkcv0_:^#niK0tPKxZy$x&I\,NK9%  <@$W72Y"K_sq;# q Hz1!Ot8M])qBYҦ¹d \1wi?saQ*_wIѯ f`2~?ETԙ=v?PKxZ< [Ǯ=*IAR-STR912/examples/ADC/interrupt/91x_it.cUT LjKLjKux ՛]o8+?޴i2;ѽ@K|@UD QNdž!^Leԋ{|']2')6 i ,a%iYYdIoI>8)x=u -3~F%\cɳ$YY@D{؊9Ő@h|y0c *_HmdqV)8ep){ AY9  VHpG/!ibA跄ʬ+;fֆ}e 3FCAmXlkxhQɞrcF1 }"YC\$sljSiV|63,%mp q1]hf_ oQXy^>@$( :k ,"T;ف4!RP k\>)Z+ӥxt4(=zۺ? hj,Cۋ lXL9`2'6s qC0"7"y T4}YAþW""VstN ,5&vcB6Æ"t qFP.!#-Có%6e-T41a5 mFHe&%p$$D~Ɋ$ܓ\7"vv\¼H t9moL j^qV7A9|wʂʏ5/5+^W,}Ds|Ob.wPo Uޱrd\371d1\Uqš,FAs3wM+k%qzdz

n/g/zɏziK~^?iKZj:;~߹N?CscCeu܅ZO{\p(֓{׵zbV5zBxVqbcb=w]`|31k)R(WC*2l:Ʋnmޜ%.cH}MWT۞'vڇiD5m{6K 0!8EϢdBMF)mOER?.gQRwb)8r}+>)8r}+>"#Ǭ#z|)G%x Y1/z|1/ڒW<p(֓{׵Acb=w]xx8FػUzHMl+X`/2[F1śYCG,?fJ ͦ yٶgcPK yZ<IAR-STR912/examples/ADC/.svn/UT LjKʈKux PKxZ<'!$$IAR-STR912/examples/ADC/.svn/entriesUT LjKLjKux P0۟@Uҵe-W$Q[ϓm`"ZÓ9V>)q^.O~==|)wrW%ly -I^Wq뮍Ғv 3%y<4b#n kS>>BiFq*b٠Q*Ku`;d< &GPK xZ<'IAR-STR912/examples/ADC/.svn/prop-base/UT LjKʈKux PK xZ<'IAR-STR912/examples/ADC/.svn/text-base/UT LjKʈKux PKxZ߿>c[>ja)y#Ienǟ4*"tZCevvQImk]€E_Ꞁ'ӛ$<ٴ^lb/D,EC3`qx GT;~zs;|JF J)ȦҝcqHgd 9Pn6A+F߽.n*jc&6j4鷕sMa+SRj ?s:)ۥBc||T4q<5p!~ӎۗoq^W!HN1%OvxxkxEm;|730#Mrȧ[a.]PKxZ<8T+IAR-STR912/examples/ADC/polling/adc_pol.ewwUT LjKLjKux Q(K-*ϳU23PRHKOKU,׵05T)/..HLNrl RK7$N%<83H%&1%9 ?G/F,֣&)$9é43'E(`lPKxZ<*}e)vKM+IAR-STR912/examples/ADC/polling/adc_pol.ewpUT LjKLjKux \o8| ]?+](jkdž{@hLj)u!)?cn(R'Ճ3΋#XcgyJEx`$e}ݯj%}iMI0:%QƑX]k<ɢV]cq0Cdptwٛ>ȯX"xOx0#_{W-C$ +\ꋽp P,Ǹs Kn+RKGbG&^ V'M :$ vPCHY|shB#i66 a]6 A|dY&YHl9qp&cg[3LɁU,Eў~ {?xf$9NbӔ 22 .}(-*j3]#w)v ;TJw{^kL8m͹eN,&vOQ_9^~Hdw,I<< N¡hWҙ ,\t F"ز]z'4p s;֏oj3e,5LJkA\W5FܾjOKRYSh4!?wԉ4tĦYxszO9hS4b=#t K-:7AkbG7М +df{D~79%=h.Ѽ:k<%R33s Qlpžda<6c* *  #.6H9$5EEVUp`,EjHۑ#* q$ Ahj,|Fq2AK/Y`,<;ey*O9 cpXIEaNRpSSo%eRƲ(D#լCQcD7Cp 2!xLZ*ܶѐ4M$p HR 3;L|je&`?uV?d%#8!!Բ^=o3 S5J|ckkj>E p2V6 o&ptp GwFl'\+iߪʹ|,x(AS"Ȃ}PS. 8Y6~W:QcO(3dqSfpAqnj{H --X^mG 0hюʼn= SmL J%,npMSZd:w0rD:d&kU-EEOImdV!*ȼ$3|nu_s"݇m(YzR0c{PQ&b Hf(=ޥ51w-ZvЊzWzNd ( :yRE?8\BUm"+ K4m-%e$',w*//ᥐi%X0['[MyȌ+uf ݠw~F~r|%C`p6K،y~ǿ?}2{zgު W4E\ wB$Qm!NdK;Gˢ0',x;IBKN)A$Dq2|OXlϵR@McddBiªÑ,͍IT!R M**nֹ,ŧDףuec[`z:(E҉́ ꕗ?H0-q<'tH՜+Uɹ$F#@W%8r2pRTWy[%]+7.\GVBIP7 J_7 b@̕sq4oS;hRTkU<]N{8xL'1\Qό݁ѿo,Z pآ0sk$ry!YAGi?jEeɪMXioگsD$)8u_WƒA:|( j l`E aʰ KqV}#AI,)[tjte-ʊ-h;FBjb=:G~P&W_&PKxZ<Ծ1<+IAR-STR912/examples/ADC/polling/adc_pol.ewdUT LjKLjKux ko:O}8GZnvIYw($-kRrlir!^6KkiVδVJ? | "Q:AJHϟ=։)=wjSqi\{OQRA "xjItvyz3 M5{ٰݲge2ƵHF ,?4,[߿Yil5ofWLv!1smiRhYgZgz迋}D&  PE}j "SC7H0VkYKjn]qnc#0}'r%p ҐR9JUy2Jx|盎9gsD);(*,S"ӏrPKPa/r=0 pyuK-5P6@ftE)F^^`^yǗrƈCBケ!j6uY d<' }L+TX#usI#$x'o4Wdjm }Mr$eL+RG'aGgmR97s{]U>6׿T>N aE|r,:kc遤$.\|!< \**$WĈ!ʟ)rހ4טuֳܜxj|OSv}6 |T1DRܞQoO~2Geܢs>˄ºayvaNUϦ !SȿUL):&?橄f(,\q iE@`\5v5d?BSG-Rv P”7%N)ξfoJ+6%g7M5ܲxc>aR v/$Kw=8ᣥbޙf޸+E2,R%W{יӹ7RɲF8M~ŋVm+QBw[/\(=22#ÖT(i' 3;65FjsW ?83LUEAJ.{5O{5ɫy3J`ȃ!{aP/][oV( ;R 0LwX9ͷ4.%cH2rϢ-?\+{Y J-'NPHIu˩~u'|bJ'+|n4W]jːʢ J! )繕zWsrqa;˖PK yZ<%IAR-STR912/examples/ADC/polling/.svn/UT LjKʈKux PKxZMB#e]ץq.'r%p ҐR9JUy2Jx|盎9gsD);(*,S"ӏrPKPa/r=0 pyuK-5P6@ftE)F^^`^yǗrƈCBケ!j6uY d<' }L+TX#usI#$x'o4Wdjm }Mr$eL+RG'aGgmR97s{]U>6׿T>N aE|r,:kc遤$.\|!< \**$WĈ!ʟ)rހ4טuֳܜxj|OSv}6 |T1DRܞQoO~2Geܢs>˄ºayvaNUϦ !SȿUL):&?橄f(,\q iE@`\5v5d?BSG-Rv P”7%N)ξfoJ+6%g7M5ܲxc>aR v/$Kw=8ᣥbޙf޸+E2,R%W{יӹ7RɲF8M~ŋVm+QBw[/\(=22#ÖT(i' 3;65FjsW ?83LUEAJ.{5O{5ɫy3J`ȃ!{aP/][oV( ;R 0LwX9ͷ4.%cH2rϢ-?\+{Y J-'NPHIu˩~u'|bJ'+|n4W]jːʢ J! )繕zWsrqa;˖PKxZ< BIAR-STR912/examples/ADC/polling/.svn/text-base/Readme.txt.svn-baseUT LjKLjKux Un8}GH|ۦ5D~*JHnӇ̙sm x~`:DfSZM]l*x:`n2 Qk8Hns=_jJaM}%3=MZN~Zk$-DU5zKQ+m1[69$gvA=/i~`i!Am:o>߿>c[>ja)y#Ienǟ4*"tZCevvQImk]€E_Ꞁ'ӛ$<ٴ^lb/D,EC3`qx GT;~zs;|JF J)ȦҝcqHgd 9Pn6A+F߽.n*jc&6j4鷕sMa+SRj ?s:)ۥBc||T4q<5p!~ӎۗoq^W!HN1%OvxxkxEm;|730#Mrȧ[a.]PKxZ<8TCIAR-STR912/examples/ADC/polling/.svn/text-base/adc_pol.eww.svn-baseUT LjKLjKux Q(K-*ϳU23PRHKOKU,׵05T)/..HLNrl RK7$N%<83H%&1%9 ?G/F,֣&)$9é43'E(`lPKxZ<8FiBIAR-STR912/examples/ADC/polling/.svn/text-base/91x_conf.h.svn-baseUT LjKLjKux Ws8~LK@~yA6 "S[}"T ա/o1~L\]ˮUW+p󓥧>lߌ^:J8j$vSMYҗ Z*^n۫ױ~¿B8b;b}PKxZ<f+=@IAR-STR912/examples/ADC/polling/.svn/text-base/91x_it.c.svn-baseUT LjKLjKux ՛]O8G73#Dig|ĥ F*Iq`j;^0k9Ee=>S8W.~7]t2e0:9 (gREU350tŸW<Ru 끳٬,yY쥒cHQIUU%>u0c: .*%D1y\z#!.8e-W(|K[( YZ5BNquU}-mU*6}2j\!% }fvXp G:3U卼O08Hli-[a>z|V MY,;l34vݲ<Rlt1]5h ?!pSN T ȇƫbx/rrZ*$;Vi\@Kp\ +.u4>g}SVSWhVU:zr}BlJ` hNL`1h(ɜzNB$0Dԣy¢ ,(n;ha4 !&'֭8!ܛ,AT q.0cp]20@2ّ*Dԍ#QHF LO3Nx qռSˍ„9u|ƄmU.*7c( 8 48P!#'N K0OGr*!shH<4/l 1)S'&+zpxK^dk|`3m.2]Œ`-X^M+t[aOWRMSy5Zn=aYpr#ˎ]/_?}x>Y7Pojn*P4y& ٪ JBz] i}; [TV2o6|L;Few|&Wxv;wUJvٝ:nVBoy6Q I~߹|f/|f>>tgvmɏzYK~d^XKYl:^d ||^a;@vm; ]y/pGۮ `w;vۉN=plvRo6qĬaۉ~߹!=k^OlT =l^mQuN{͐QrZ Nzyo3{y5_xNmǬvmMDZ0vmX}b_x7ſ-ox9xm70sFo1CXxNMId|~fS턿 uo2 =1vPKxZ<*}e)vKMCIAR-STR912/examples/ADC/polling/.svn/text-base/adc_pol.ewp.svn-baseUT LjKLjKux \o8| ]?+](jkdž{@hLj)u!)?cn(R'Ճ3΋#XcgyJEx`$e}ݯj%}iMI0:%QƑX]k<ɢV]cq0Cdptwٛ>ȯX"xOx0#_{W-C$ +\ꋽp P,Ǹs Kn+RKGbG&^ V'M :$ vPCHY|shB#i66 a]6 A|dY&YHl9qp&cg[3LɁU,Eў~ {?xf$9NbӔ 22 .}(-*j3]#w)v ;TJw{^kL8m͹eN,&vOQ_9^~Hdw,I<< N¡hWҙ ,\t F"ز]z'4p s;֏oj3e,5LJkA\W5FܾjOKRYSh4!?wԉ4tĦYxszO9hS4b=#t K-:7AkbG7М +df{D~79%=h.Ѽ:k<%R33s Qlpžda<6c* *  #.6H9$5EEVUp`,EjHۑ#* q$ Ahj,|Fq2AK/Y`,<;ey*O9 cpXIEaNRpSSo%eRƲ(D#լCQcD7Cp 2!xLZ*ܶѐ4M$p HR 3;L|je&`?uV?d%#8!!Բ^=o3 S5J|ckkj>E p2V6 o&ptp GwFl'\+iߪʹ|,x(AS"Ȃ}PS. 8Y6~W:QcO(3dqSfpAqnj{H --X^mG 0hюʼn= SmL J%,npMSZd:w0rD:d&kU-EEOImdV!*ȼ$3|nu_s"݇m(YzR0c{PQ&b Hf(=ޥ51w-ZvЊzWzNd ( :yRE?8\BUm"+ K4m-%e$',w*//ᥐi%X0['[MyȌ+uf ݠw~F~r|%C`p6K،y~ǿ?}2{zgު W4E\ wB$Qm!NdK;Gˢ0',x;IBKN)A$Dq2|OXlϵR@McddBiªÑ,͍IT!R M**nֹ,ŧDףuec[`z:(E҉́ ꕗ?H0-q<'tH՜+Uɹ$F#@W%8r2pRTWy[%]+7.\GVBIP7 J_7 b@̕sq4oS;hRTkU<]N{8xL'1\Qό݁ѿo,Z pآ0sk$ry!YAGi?jEeɪMXioگsD$)8u_WƒA:|( j l`E aʰ KqV}#AI,)[tjte-ʊ-h;FBjb=:G~P&W_&PKxZIAR-STR912/examples/ADC/polling/.svn/text-base/main.c.svn-baseUT LjKLjKux X[oJ~0jʩΥDy mT ب,.iz3 ^TԪxvo.;t Ȧ`k gpE XIfgi10-Ƨ-KEIRh>Wv( u,\"?yIޱggTZ8.4)׎v*Xꨆ 9u%[&As`j0[jd*p@rƼ͘t\sk_ 4_Hf`3Rtd,eA%0mE+\[k#ݩj wY&ۦk&;%]tV+kҭrHxEQ{HX!~Si8K\tP4SzH m͡  .ΜĤ9 e$BBRT}g,hQ$Kp`%P V1IH9v&|CaDŊ&/^>n{0wžh'O /RvN4ffjIS 㜏sNΈ\mQmBHE]7=5_e1NzI4`3%K5(?4( >A!(B%|$mCa i EFV# YnLKpDA5hpVc1S|Bj T(F?D zGx"fO#E>eRrN+9r'OCgH/\[2)L0^ux#W{1N3e{Vm":4 ?˕ 'jۉ E9Kc+vw@S/vX }wp|' .8"6[<ؾ.XWߕlDΙf pB380.<A}hxh'$t.~"&V*q}_zXRCw~\yV4[vZ`+בs>O>ЩZtb6r4,G;l6+ۇLK>oKz09fWV>6Wv( u,\"?yIޱggTZ8.4)׎v*Xꨆ 9u%[&As`j0[jd*p@rƼ͘t\sk_ 4_Hf`3Rtd,eA%0mE+\[k#ݩj wY&ۦk&;%]tV+kҭrHxEQ{HX!~Si8K\tP4SzH m͡  .ΜĤ9 e$BBRT}g,hQ$Kp`%P V1IH9v&|CaDŊ&/^>n{0wžh'O /RvN4ffjIS 㜏sNΈ\mQmBHE]7=5_e1NzI4`3%K5(?4( >A!(B%|$mCa i EFV# YnLKpDA5hpVc1S|Bj T(F?D zGx"fO#E>eRrN+9r'OCgH/\[2)L0^ux#W{1N3e{Vm":4 ?˕ 'jۉ E9Kc+vw@S/vX }wp|' .8"6[<ؾ.XWߕlDΙf pB380.<A}hxh'$t.~"&V*q}_zXRCw~\yV4[vZ`+בs>O>ЩZtb6r4,G;l6+ۇLK>oKz09fWV>6S[}"T ա/o1~L\]ˮUW+p󓥧>lߌ^:J8j$vSMYҗ Z*^n۫ױ~¿B8b;b}PKxZ<f+=(IAR-STR912/examples/ADC/polling/91x_it.cUT LjKLjKux ՛]O8G73#Dig|ĥ F*Iq`j;^0k9Ee=>S8W.~7]t2e0:9 (gREU350tŸW<Ru 끳٬,yY쥒cHQIUU%>u0c: .*%D1y\z#!.8e-W(|K[( YZ5BNquU}-mU*6}2j\!% }fvXp G:3U卼O08Hli-[a>z|V MY,;l34vݲ<Rlt1]5h ?!pSN T ȇƫbx/rrZ*$;Vi\@Kp\ +.u4>g}SVSWhVU:zr}BlJ` hNL`1h(ɜzNB$0Dԣy¢ ,(n;ha4 !&'֭8!ܛ,AT q.0cp]20@2ّ*Dԍ#QHF LO3Nx qռSˍ„9u|ƄmU.*7c( 8 48P!#'N K0OGr*!shH<4/l 1)S'&+zpxK^dk|`3m.2]Œ`-X^M+t[aOWRMSy5Zn=aYpr#ˎ]/_?}x>Y7Pojn*P4y& ٪ JBz] i}; [TV2o6|L;Few|&Wxv;wUJvٝ:nVBoy6Q I~߹|f/|f>>tgvmɏzYK~d^XKYl:^d ||^a;@vm; ]y/pGۮ `w;vۉN=plvRo6qĬaۉ~߹!=k^OlT =l^mQuN{͐QrZ Nzyo3{y5_xNmǬvmMDZ0vmX}b_x7ſ-ox9xm70sFo1CXxNMId|~fS턿 uo2 =1vPK wZ<IAR-STR912/examples/WIU/UT LjKʈKux PKwZ45Dj& Jک_j2qzSx&z>]-UHdZ#jU蔌? G[jxЦ"s:ji] rDYhx `/j˵~yyVե9od<ogfԟW3,a$GW0xso0^{Eܔ{KX*[7F*`fYQkc] gvxqOW5Ʒp^ЭP9M7pO)mu v Zn`rD[NׇLAx>sx^ӫA m](}~348~fʷE] Yގ^&(z)n[[β!~S!׆2!duwƏ7HsQcLWXQ]"DDQwM<7u,H'a苻AJ%R܎ƃ+<EAcQIli}(ޥCZtڸ!#ujSa'b[%I!-V٫|erODӥ׷7mfOevPKwZ<3j<IAR-STR912/examples/WIU/wiu.ewdUT LjKLjKux Yo8 ?AvLm]GS%v Dl$RKQI:|6QPEAg3}- j7ƈ'FK<'(&ׯ_O޿{nDW2Su(KߵK lu t8Kn3.3BwЪi6lzioFq4q-=#?@7k;ޑuK07+O͛-!qAJN3$b}1p=Mr`0,]o%S8&T>ʵ(O-A&y<(2u?@*PJ<‡tj;SDbFߴ;>2D/\!d®Q`fcmkyÒf J]3ixvEڗ7\&| bڼq:4$_ /.zgC}hFSc p| By9@r"W~s ؟nQ'SdyiZ*Uf0ω8A\:2 hhY!s3GZy( [k}|2 0L0r T $wNw|-ier &dhc$٬.O=AN2Շğ:fG7.F@|$hPd,˔39E ]2mH}#N* mVRWsT>U_bAXR,[-a2NO%xI!O,C(C2 r}:8o _C̚fkcPH raI]^}*.9kA`bE$YpĭJΆJGgz}ȄMܻhnhv`UO 31sȿU !9:"?gV$,pϝ?@<)ʀ8kj2aC$/+7 !+0%M:fSppLiѦ,fӬqnZR"NGuϘԤ0yhCx^z9^ -%{蕣 q`R$ݢ0_}Q]NΝ3,kz=+yգzjU;.'5O"#ũ.s8g:,Iv:<>m3JncXc$ j^v3P`tMJD"ȟ~b~=#y5c&1;#yc?Fw>>Y_c Mszc@^[ҋ+o6(ve8H|;l{)e$pfg[ n>z{#˜vj( $i c]5;Z0NnH40ÝFjrTmRP)ܛ1%#1۟~Ng 8Μ6}}=U=F$H8%Hij$4qv]0z DyQ{/<,emAv5BA}0{u=ĽYm<)#6gp5\kF{ClNB;,utx@TxD;(ivjm>h0|X$iB"N+!ݴZԇ&mi4J:-lTjD)* Ck8S--T!ž sCjx a Qm]M*lCX.pMhuԐӞ}cK,E=bsui:?hT>+$3a]3+&ϑ_ZNv%hId3$2 =Vġo-ښ U,\0_w&|e{1 zsKiZ髱О&C[Sܜ7m[b1q_< 9y}s4JBk̋VՖ?'NJO7OleZ >(K,Jҡg,6׀KZODӤm<knİ^ùX6ERE՛1H)㤎; ]mJ*5 ncT$f Q{ba8"c8B^{;A%?if+AQ}g[0Qh7vϮ޳~aU\vLo=Bɼހ݀2lA %r>Ǿ1?cnMZʀߝ D YAu3- Ӌv'"j}/]45d"}vXP9i܌'SWBJ0ˡ7vNvxK?HO zՠ7nv&r|E }Pp6XOynϽ0. /=2s鶦Y'/j#X@hH[B`+;ޓ$ %:e  hМ[F>}r VdoMhvH͐jYU>צBz%<^\::i_-JOXr@:AfH7;S/W={Ay9Q/C]*Cʒ*.L'G-ƛN (}` 91z{|toGG)E}By2sbbϟ~/h*`:?x 8K~I頡ܺ;a痞X_HfUV{IխWeu)vر,y郪Fz#h Dڅ9XMfGJz70_PK yZ<IAR-STR912/examples/WIU/.svn/UT LjKʈKux PKwZ<6K6$IAR-STR912/examples/WIU/.svn/entriesUT LjKLjKux ˎ0 EB6$flfSAe2Hhh][mEO,Y;A5$mw^E*CTHu92*M!/HVs6ʂHF!VH -*mW!-I x3FRMf_b93}YGfv#+%Yѩ0oA@?H޿Pڷuh΢&eme[iK/k-sU(ѐI6v +/&Y9ːu M`JF3BKPK wZ<'IAR-STR912/examples/WIU/.svn/prop-base/UT LjKʈKux PK wZ<'IAR-STR912/examples/WIU/.svn/text-base/UT LjKʈKux PKwZ<*1` {7IAR-STR912/examples/WIU/.svn/text-base/wiu.eww.svn-baseUT LjKLjKux Q(K-*ϳU23PRHKOKU,׵05T)/..HLNrl RK7$N%<83H%#1۟~Ng 8Μ6}}=U=F$H8%Hij$4qv]0z DyQ{/<,emAv5BA}0{u=ĽYm<)#6gp5\kF{ClNB;,utx@TxD;(ivjm>h0|X$iB"N+!ݴZԇ&mi4J:-lTjD)* Ck8S--T!ž sCjx a Qm]M*lCX.pMhuԐӞ}cK,E=bsui:?hT>+$3a]3+&ϑ_ZNv%hId3$2 =Vġo-ښ U,\0_w&|e{1 zsKiZ髱О&C[Sܜ7m[b1q_< 9y}s4JBk̋VՖ?'NJO7OleZ >(K,Jҡg,6׀KZODӤm<knİ^ùX6ERE՛1H)㤎; ]mJ*5 ncT$f Q{ba8"c8B^{;A%?if+AQ}g[0Qh7vϮ޳~aU\vLo=Bɼހ݀2lA %r>Ǿ1?cnMZʀߝ D YAu3- Ӌv'"j}/]45d"}vXP9i܌'SWBJ0ˡ7vNvxK?HO zՠ7nv&r|E }Pp6XOynϽ0. /=2s鶦Y'/j#X@hH[B`+;ޓ$ %:e  hМ[F>}r VdoMhvH͐jYU>צBz%<^\::i_-JOXr@:AfH7;S/W={Ay9Q/C]*Cʒ*.L'G-ƛN (}` 91z{|toGG)E}By2sbbϟ~/h*`:?x 8K~I頡ܺ;a痞X_HfUV{IխWeu)vر,y郪Fz#h Dڅ9XMfGJz70_PKwZ45Dj& Jک_j2qzSx&z>]-UHdZ#jU蔌? G[jxЦ"s:ji] rDYhx `/j˵~yyVե9od<ogfԟW3,a$GW0xso0^{Eܔ{KX*[7F*`fYQkc] gvxqOW5Ʒp^ЭP9M7pO)mu v Zn`rD[NׇLAx>sx^ӫA m](}~348~fʷE] Yގ^&(z)n[[β!~S!׆2!duwƏ7HsQcLWXQ]"DDQwM<7u,H'a苻AJ%R܎ƃ+<EAcQIli}(ޥCZtڸ!#ujSa'b[%I!-V٫|erODӥ׷7mfOevPKwZ<3j<7IAR-STR912/examples/WIU/.svn/text-base/wiu.ewd.svn-baseUT LjKLjKux Yo8 ?AvLm]GS%v Dl$RKQI:|6QPEAg3}- j7ƈ'FK<'(&ׯ_O޿{nDW2Su(KߵK lu t8Kn3.3BwЪi6lzioFq4q-=#?@7k;ޑuK07+O͛-!qAJN3$b}1p=Mr`0,]o%S8&T>ʵ(O-A&y<(2u?@*PJ<‡tj;SDbFߴ;>2D/\!d®Q`fcmkyÒf J]3ixvEڗ7\&| bڼq:4$_ /.zgC}hFSc p| By9@r"W~s ؟nQ'SdyiZ*Uf0ω8A\:2 hhY!s3GZy( [k}|2 0L0r T $wNw|-ier &dhc$٬.O=AN2Շğ:fG7.F@|$hPd,˔39E ]2mH}#N* mVRWsT>U_bAXR,[-a2NO%xI!O,C(C2 r}:8o _C̚fkcPH raI]^}*.9kA`bE$YpĭJΆJGgz}ȄMܻhnhv`UO 31sȿU !9:"?gV$,pϝ?@<)ʀ8kj2aC$/+7 !+0%M:fSppLiѦ,fӬqnZR"NGuϘԤ0yhCx^z9^ -%{蕣 q`R$ݢ0_}Q]NΝ3,kz=+yգzjU;.'5O"#ũ.s8g:,Iv:<>m3JncXc$ j^v3P`tMJD"ȟ~b~=#y5c&1;#yc?Fw>>Y_c Mszc@^[ҋ+o6(ve8H|;l{)e$pfg[ n>z{#˜vj( $i c]5;Z0NnH40ÝFjrTmRP)ܛ1%bgܕvX>, S5^,"$6aШ)1x1OρͶA8Gԣ6€1.<Bc .{$8,BG $9#8'S6!(HkێX,[D 87|~$pFmK|P?t-:v',6Q~(9F$ϻl/ s*;teP'#R|+ʯ]D/X soR,F5OVz]|/lmh>~e; Q`6BU{n?y.F_ X}e_/pC>:|_^:J 8i$SݳdNCꡚچ0U:#Xثۗ*ئb[}ؗ}׊}؟ӈϊ큛Z"_#I%%$a7|CgCP6TDI0BC™BYU!T ajs=a3:Mp˦Y>˗Nװ*_[/^tw]|{ߠɝ7Ӻ2 y|~V^7<C8z;a}PKwZLȜR<eR,r`+SaxW@˗G>Ak%:qrٚ^[dL'.L#7v q8s+ra>!H 08V`5Xď C1س0't"cڡj }0[I$̦1v0rH m>bJ|V WÃÃ;Hժ0+ׂͤNWgF_J,j!Ū{OPL}nyiy} Rf׾d$|fͭPe- O9c"]AzR!ܖ\}׸ĶE"# k>"{Fa|jU :H'"|tH=xS_Wo{x <'GGP:! $:{C-t'/niQAPt OAIukh> YSp qC }TBjz.xCMa\6QsPXbQGQtɗ!6XF_ "L[ۣ) |x5]↚#cwNg6ߚؚTHE^N0y}^jœ\q "î|LbWy1 iᧅlqru4;*w"!+dJ]şy\r[b^ yd"$ױVֈgǔk'mѹF];LStM$(ML\fB1e;$7=ϡJ{i ~Ԣ@k\!Wm:ІUc^%3)R dYj;^jeb\iXHV'8Ub×IJH,5s9yQb ̀ g@ yvHm~b q^1-q,{Sڤd_PKwZU :H'"|tH=xS_Wo{x <'GGP:! $:{C-t'/niQAPt OAIukh> YSp qC }TBjz.xCMa\6QsPXbQGQtɗ!6XF_ "L[ۣ) |x5]↚#cwNg6ߚؚTHE^N0y}^jœ\q "î|LbWy1 iᧅlqru4;*w"!+dJ]şy\r[b^ yd"$ױVֈgǔk'mѹF];LStM$(ML\fB1e;$7=ϡJ{i ~Ԣ@k\!Wm:ІUc^%3)R dYj;^jeb\iXHV'8Ub×IJH,5s9yQb ̀ g@ yvHm~b q^1-q,{Sڤd_PKwZ<o"IAR-STR912/examples/WIU/91x_conf.hUT LjKLjKux WMsHrI\Y WFbj`O*,b6xm,ńTeG:_~ ȂCĦ.0!~( ,lQӓ3dkA_g(mT]uHȁt#NZ $-XUmRiH;QV2<7Q-!ٳ{c/ Ed_eSxInVEr+P˒BoZ&X_bRE48{QwaF0MCBx@1S>bgܕvX>, S5^,"$6aШ)1x1OρͶA8Gԣ6€1.<Bc .{$8,BG $9#8'S6!(HkێX,[D 87|~$pFmK|P?t-:v',6Q~(9F$ϻl/ s*;teP'#R|+ʯ]D/X soR,F5OVz]|/lmh>~e; Q`6BU{n?y.F_ X}e_/pC>:|_^:J 8i$SݳdNCꡚچ0U:#Xثۗ*ئb[}ؗ}׊}؟ӈϊ큛Z"_#I%%$a7|CgCP6TDI0BC™BYU!T ajs=a3:Mp˦Y>˗Nװ*_[/^tw]|{ߠɝ7Ӻ2 y|~V^7<C8z;a}PKwZLȜR<eR,r`+SaxW@˗G>Ak%:qrٚ^[dL'.L#7v q8s+ra>!H 08V`5Xď C1س0't"cڡj }0[I$̦1v0rH m>bJ|V WÃÃ;Hժ0+ׂͤNWgF_J,j!Ū{OPL}nyiy} Rf׾d$|fͭPe- O9c"]AzR!ܖ\}׸ĶE"# k>"{Fa|j~ 5TU9}vGc 4ȋEц{`=[ ;{Gmpޢ~3ƨWAYe~CoP򌥙!6nmɽd %jiQ*M,j2!!Ϥ|vv`ȌLNR L4ZhI--i4R,&e %ucj/X=|6nT OeqqiX{*˥u<>, O)/̀عk]k*hT AE-q•iemi bPK wZ<#IAR-STR912/examples/.svn/prop-base/UT LjKʈKux PK xZ<#IAR-STR912/examples/.svn/text-base/UT LjKʈKux PKxZxPKwZ<*Sp 8IAR-STR912/examples/.svn/text-base/examples.eww.svn-baseUT LjKLjKux k0"AYSVM t>_UK4[M}hB MFDžm [N3|{<%LК2>Gjtn"N@èv |H EP_B~p=HtXĦ& d;d2!, CkHi`tqо%fآrt֖`JsOB20nkBjbPyd^@@V3q+NqI(N[:{N_K6Kk2$TXp|79J٨|vG wֽrn/oiWm=M'2ps~jh!KT׵f֨鯯%1G$ıh4MiȯWu#Fz*Ζe^?j46 6E+u[6]=aA>}"&цoÑ]a?:xC7Hzkxo0Bqv"UG4s4qC]Zand`6c* * 3 #.ǴH93 1 [9@vW9!}t9ߍ*`.N2h$L*a/S0߆Qڜ3nCA\YʪXSG_rr错= ܃T48Y z*9vf+Rڔ&A4A Y:$~?D:3dgN0&w4 7hHCks $v<#bMh &p*.N{|~ewjuL+;LG|lP6 "S+M6g641918YJ&`O)W/G."𡙆W&%X^`5u~0MʮK PtI0 kf;h-mӬmjJή ޳ b4&,(E"3kɺߖoҘ3& D,`'nVQ`u1ڪ^{bZxcE4o"Jjt@ Dm'u v4IjeTPo/gpwwvcߠ$1cvߨ430] #N7O (YQ3[ ö va=:V9j& {L^in~]m}K)zUHڽ#})`XٹWcND[%:fhx7МWGnj**0C! BfYVJ(2{65,ťDkQU!=n0*oz<(Œf,ze9Ï5MKl̑չ +<>hX8FŽAJpc%@-N1qVq@Vv"+xB@4| sp4oS:hRtƪrc8J ?%z`ToM~/h4Z`c71eT}ӧ׹ߋ}36ZK h=j%Q__S{n]ZVtADXmAL/$2{e{I-HAZu:iȒ}T 0k@.pKM݊UĖn6)*:G/(WPKwZbQ,a+gXwn+l B,u1Kyb,7`X Gȃ,X:XP"ILBEjG&A_`}Mo? ݊xolO[C^WI~;\fx[VrUpXЈ*+Yᲅ mDasZ9+:Y&,ߒW&9`8fr!^(Hpa[ǫ|XK[4kt U k4O3?oW4|9Ш ]|ʽ_fV*Tu#T$yr̊ޝ43anȜ3oPKwZ<Ծ1<IAR-STR912/examples/MC/mc.ewdUT LjKLjKux ko:O}8GZnvIYw($-kRrlir!^6KkiVδVJ? | "Q:AJHϟ=։)=wjSqi\{OQRA "xjItvyz3 M5{ٰݲge2ƵHF ,?4,[߿Yil5ofWLv!1smiRhYgZgz迋}D&  PE}j "SC7H0VkYKjn]qnc#0}'r%p ҐR9JUy2Jx|盎9gsD);(*,S"ӏrPKPa/r=0 pyuK-5P6@ftE)F^^`^yǗrƈCBケ!j6uY d<' }L+TX#usI#$x'o4Wdjm }Mr$eL+RG'aGgmR97s{]U>6׿T>N aE|r,:kc遤$.\|!< \**$WĈ!ʟ)rހ4טuֳܜxj|OSv}6 |T1DRܞQoO~2Geܢs>˄ºayvaNUϦ !SȿUL):&?橄f(,\q iE@`\5v5d?BSG-Rv P”7%N)ξfoJ+6%g7M5ܲxc>aR v/$Kw=8ᣥbޙf޸+E2,R%W{יӹ7RɲF8M~ŋVm+QBw[/\(=22#ÖT(i' 3;65FjsW ?83LUEAJ.{5O{5ɫy3J`ȃ!{aP/][oV( ;R 0LwX9ͷ4.%cH2rϢ-?\+{Y J-'NPHIu˩~u'|bJ'+|n4W]jːʢ J! )繕zWsrqa;˖PK yZ<IAR-STR912/examples/MC/.svn/UT LjKʈKux PKwZ'r%p ҐR9JUy2Jx|盎9gsD);(*,S"ӏrPKPa/r=0 pyuK-5P6@ftE)F^^`^yǗrƈCBケ!j6uY d<' }L+TX#usI#$x'o4Wdjm }Mr$eL+RG'aGgmR97s{]U>6׿T>N aE|r,:kc遤$.\|!< \**$WĈ!ʟ)rހ4טuֳܜxj|OSv}6 |T1DRܞQoO~2Geܢs>˄ºayvaNUϦ !SȿUL):&?橄f(,\q iE@`\5v5d?BSG-Rv P”7%N)ξfoJ+6%g7M5ܲxc>aR v/$Kw=8ᣥbޙf޸+E2,R%W{יӹ7RɲF8M~ŋVm+QBw[/\(=22#ÖT(i' 3;65FjsW ?83LUEAJ.{5O{5ɫy3J`ȃ!{aP/][oV( ;R 0LwX9ͷ4.%cH2rϢ-?\+{Y J-'NPHIu˩~u'|bJ'+|n4W]jːʢ J! )繕zWsrqa;˖PKwZbQ,a+gXwn+l B,u1Kyb,7`X Gȃ,X:XP"ILBEjG&A_`}Mo? ݊xolO[C^WI~;\fx[VrUpXЈ*+Yᲅ mDasZ9+:Y&,ߒW&9`8fr!^(Hpa[ǫ|XK[4kt U k4O3?oW4|9Ш ]|ʽ_fV*Tu#T$yr̊ޝ43anȜ3oPKwZ< 2m XtL5IAR-STR912/examples/MC/.svn/text-base/mc.ewp.svn-baseUT LjKLjKux \m8|He9t Nlj 'TR;8{NҷmӲtRVIxx֟yh-0 4k' =!1{/O|GopcY) MZ}U߼US$M t>_UK4[M}hB MFDžm [N3|{<%LК2>Gjtn"N@èv |H EP_B~p=HtXĦ& d;d2!, CkHi`tqо%fآrt֖`JsOB20nkBjbPyd^@@V3q+NqI(N[:{N_K6Kk2$TXp|79J٨|vG wֽrn/oiWm=M'2ps~jh!KT׵f֨鯯%1G$ıh4MiȯWu#Fz*Ζe^?j46 6E+u[6]=aA>}"&цoÑ]a?:xC7Hzkxo0Bqv"UG4s4qC]Zand`6c* * 3 #.ǴH93 1 [9@vW9!}t9ߍ*`.N2h$L*a/S0߆Qڜ3nCA\YʪXSG_rr错= ܃T48Y z*9vf+Rڔ&A4A Y:$~?D:3dgN0&w4 7hHCks $v<#bMh &p*.N{|~ewjuL+;LG|lP6 "S+M6g641918YJ&`O)W/G."𡙆W&%X^`5u~0MʮK PtI0 kf;h-mӬmjJή ޳ b4&,(E"3kɺߖoҘ3& D,`'nVQ`u1ڪ^{bZxcE4o"Jjt@ Dm'u v4IjeTPo/gpwwvcߠ$1cvߨ430] #N7O (YQ3[ ö va=:V9j& {L^in~]m}K)zUHڽ#})`XٹWcND[%:fhx7МWGnj**0C! BfYVJ(2{65,ťDkQU!=n0*oz<(Œf,ze9Ï5MKl̑չ +<>hX8FŽAJpc%@-N1qVq@Vv"+xB@4| sp4oS:hRtƪrc8J ?%z`ToM~/h4Z`c71eT}ӧ׹ߋ}36ZK h=j%Q__S{n]ZVtADXmAL/$2{e{I-HAZu:iȒ}T 0k@.pKM݊UĖn6)*:G/(WPKwZ<`?(u9IAR-STR912/examples/MC/.svn/text-base/91x_conf.h.svn-baseUT LjKLjKux WKo86hG^mnD[9M7RVMUKUA37c89hz'6K"e!Wr^E7pJB%5|E<}Pi9M+lB hԩ]Í,7:5kcMg2-@%}ޖuSMUOmՋDuֳ?(Lci(GcqKb s<`Q $t(D@膹,p4p˄86"XBL'$MQҸDP,@xm'x#sq2C Qȧ5% e1cI1ɉBNNrF|pI@&)BE"P);f\0n2tlھ$t$H8FwnGá7ia( _ԅjgNmϛl/f3u1 TeԴGnr.ă.I^y^˼A²XYVi;ѳ3*q6c8ҍlB+.%kFd::8vA8kT9C"TM] `\]`wκ ].e'lhS˳Q1jZ7uT,J^*C˦t+435PMM43M> M+Mɟz+^*o={^ %$}oUR4+>]격+'C¡dp'TBuV0ݣs6wC-f)6Ue)|yߵͭfj;AӾ0M5dȖ?nW^5P?" ]u3>PKwZ섯@%|AkxJCJhS߯/W`d&1IH lN&0b8Q ]Q_Cz4<w( qs&*xNƄmU.*7c( 8 48P!!-C'%%#pvC M}X 94$ B©l|٪ڇM_~<7"U;F0+kz|_)M}n5Umy5Z=aYpr#ˎ}/^?'sMͭPe O2[@zRޔBZ}߸vE*S+ >Few|<ίF9w整y۵piZ DصNg3{3pJm'=f:XK~`D俘%?K&kw 7 ?qgܙۮ `'!asN{ {۵vbo6=pvBoy6qdub;]tbFD6Zn/|G6*g6Zn/|ç6tv:Jm'=fw(9Jm-y'IּRI~ϷּR[K/Nm;uxBۮMv8FۮM ecl wb o:bgu~-oI߹/:lj῎-_&7>LPKwZ<5a5IAR-STR912/examples/MC/.svn/text-base/main.c.svn-baseUT LjKLjKux Xn8}hYڴ Hr,%yu'A阨,M;CJquy9333: 1tOz&,*4QLNcV8g0yҌH,`}\j,1‚ x, #K6!y{Ku#diˣ/ݛV&zC1c[1E EnvS]6 gV7yftD cz:)CGwuyca7>.l}CS,U܀b.(#C3kP}׳Mq nlx}K!0,47ϰ-pkᐹ櫞J`;Pfgt Sol %:>Uϱ-Cu+XW:CRn@3>#,Òݴ\/#7h\뮌wB@.sl|%@;-9T,%CT4nVl %Yҷ_a@$bBH,d3u|'Q\N=Bj[)᷃턈Ì]R<,؄MBD4PBě/0^xH$VSʨ(3v*CPZ.6-H\,-R:_r+h uuCθsaODr^h$XoV&eźd%pҝ<@xR8'GsoLӯ|~h -'xoY2SpU?0nZfSdb`%NN!2. +vc>mA 9Dk<0i5b( Clۋn˜N|y=_{ PDj;03-C *OfBSf"Dij!LvbS, 1;@jҁNq]z{wޒaφexd鬼"G Z2\[BԜa/,Kj"rS\iըc:d&MG!c>7lZ)Ϙ^VII“;DKQ+mӵ+&nIh?գ>ӣL5BƇ2OXyBƇ2>X5uTWoaIce"˻zeXUgWE"imcԮJ4Y3zjPKwZPK wZ<"IAR-STR912/examples/MC/.svn/props/UT LjKʈKux PK wZ< IAR-STR912/examples/MC/.svn/tmp/UT LjKʈKux PK wZ<*IAR-STR912/examples/MC/.svn/tmp/prop-base/UT LjKʈKux PK wZ<*IAR-STR912/examples/MC/.svn/tmp/text-base/UT LjKʈKux PK wZ<&IAR-STR912/examples/MC/.svn/tmp/props/UT LjKʈKux PKwZ<]zIAR-STR912/examples/MC/mc.ewwUT LjKLjKux Q(K-*ϳU23PRHKOKU,׵05T)/..HLNrl RK7$N%<83H%&7Y/F, V&)$9é43'E(`l6PKwZ<5aIAR-STR912/examples/MC/main.cUT LjKLjKux Xn8}hYڴ Hr,%yu'A阨,M;CJquy9333: 1tOz&,*4QLNcV8g0yҌH,`}\j,1‚ x, #K6!y{Ku#diˣ/ݛV&zC1c[1E EnvS]6 gV7yftD cz:)CGwuyca7>.l}CS,U܀b.(#C3kP}׳Mq nlx}K!0,47ϰ-pkᐹ櫞J`;Pfgt Sol %:>Uϱ-Cu+XW:CRn@3>#,Òݴ\/#7h\뮌wB@.sl|%@;-9T,%CT4nVl %Yҷ_a@$bBH,d3u|'Q\N=Bj[)᷃턈Ì]R<,؄MBD4PBě/0^xH$VSʨ(3v*CPZ.6-H\,-R:_r+h uuCθsaODr^h$XoV&eźd%pҝ<@xR8'GsoLӯ|~h -'xoY2SpU?0nZfSdb`%NN!2. +vc>mA 9Dk<0i5b( Clۋn˜N|y=_{ PDj;03-C *OfBSf"Dij!LvbS, 1;@jҁNq]z{wޒaφexd鬼"G Z2\[BԜa/,Kj"rS\iըc:d&MG!c>7lZ)Ϙ^VII“;DKQ+mӵ+&nIh?գ>ӣL5BƇ2OXyBƇ2>X5uTWoaIce"˻zeXUgWE"imcԮJ4Y3zjPKwZ<`?(u!IAR-STR912/examples/MC/91x_conf.hUT LjKLjKux WKo86hG^mnD[9M7RVMUKUA37c89hz'6K"e!Wr^E7pJB%5|E<}Pi9M+lB hԩ]Í,7:5kcMg2-@%}ޖuSMUOmՋDuֳ?(Lci(GcqKb s<`Q $t(D@膹,p4p˄86"XBL'$MQҸDP,@xm'x#sq2C Qȧ5% e1cI1ɉBNNrF|pI@&)BE"P);f\0n2tlھ$t$H8FwnGá7ia( _ԅjgNmϛl/f3u1 TeԴGnr.ă.I^y^˼A²XYVi;ѳ3*q6c8ҍlB+.%kFd::8vA8kT9C"TM] `\]`wκ ].e'lhS˳Q1jZ7uT,J^*C˦t+435PMM43M> M+Mɟz+^*o={^ %$}oUR4+>]격+'C¡dp'TBuV0ݣs6wC-f)6Ue)|yߵͭfj;AӾ0M5dȖ?nW^5P?" ]u3>PKwZ섯@%|AkxJCJhS߯/W`d&1IH lN&0b8Q ]Q_Cz4<w( qs&*xNƄmU.*7c( 8 48P!!-C'%%#pvC M}X 94$ B©l|٪ڇM_~<7"U;F0+kz|_)M}n5Umy5Z=aYpr#ˎ}/^?'sMͭPe O2[@zRޔBZ}߸vE*S+ >Few|<ίF9w整y۵piZ DصNg3{3pJm'=f:XK~`D俘%?K&kw 7 ?qgܙۮ `'!asN{ {۵vbo6=pvBoy6qdub;]tbFD6Zn/|G6*g6Zn/|ç6tv:Jm'=fw(9Jm-y'IּRI~ϷּR[K/Nm;uxBۮMv8FۮM ecl wb o:bgu~-oI߹/:lj῎-_&7>LPK xZ<IAR-STR912/examples/SSP/UT LjKʈKux PKxZ :DsT>C[ t!U/|C-i1l6 ]6 A|YY(l98yK|Ʊ3e|TU *a_vտ1{ܛ丈MSMR*wdcX/pMhqАTӞ}##gءjtΎ఩Nދsb20nk5sbjbP^B@3qGI¸i4dr/N¡hK} fxLc&$,4,^ٞz'4kv_k}fӤY2wk7ڛkABa\UN^ih4Mi}Fv.ɖg|.qh/e2Ff8F/ǢG3f<O =TTTgF[mi.sFI`UkEE W*40C"3d#vWa0m/к%]k:9ba<گ Ů+_\+e~&[ > ȔJM@LNlx^޵{]0CW/Y}EWB3-+6,xBI45/mlv]9wOlz1L6S5;AQf\+/USrn?<$bPA$YYiEgy7XMߌgL43dk"R YFe7xxjz-Ɗm=F*~UCҬQB8&BbiNfʣ?f9cĿxz#)B;gBYBX )l|9 f<#y8Etؓc;Ef}F!GH{)c [&~E C;o/kՂ7yRXql4Jgz7lmm:ذh^FU+2gە԰Mh ~A^'iAu)и"xW8rD{yR*8W0ZD_:u]I=tzVvln6ghf7 \<?s Z.zBeaiS QԢiQ$vN 1ɥyZPI hJm έ]i)7ZCRq av h%v+[-{vt'gGL$PDHҢ@l(#X}Z]y(Y?Nis4~4a<#~һ:)qFWGvM9`MWo 9ߦA~lkُ&ѶIi+fHl 6TvG(\wP+5o^ƂQ@ PKxZʵ(O-A&y<(2u?@*PJ<‡tj;SDbFߴ;>2D/\!d®Q`fcmkyÒf J]3ixvEڗ7\&| bڼq:4$_ /.zgC}hFSc p| By9@r"W~s ؟nQ'SdyiZ*Uf0ω8A\:2 hhY!s3GZy( [k}|2 0L0r T $wNw|-ier &dhc$٬.O=AN2Շğ:fG7.F@|$hPd,˔39E ]2mH}#N* mVRWsT>U_bAXR,vDF0:>M%>Y 20b-E'xً@}(qYl`-}݉:A.,+OE#g !B:(,S4.??^Eq2Cg̣3>vd&Y]GL^4K74EvejM*@'CFy Θ9*X ɜBpTK3nTn  qEpd 5v50Dsȗ-qK)HLP7N!2GěQOzƹiI8+w>aR ($K=Nj8:ᣥb>wr!,VdY&K/*iйsRWeMpCy%/zZ[49.'5O"#ũ.s8g:,Iv:<>]3JncXc$ j^v3PXtMJD"ȟ~b~=#y5c&1;#yc?Dw>>Y_c Mszc@^[ҋ+o6(ve 8H|;l{)e$pfg[ n>z{#˜vj( $i c]5;Z0NnH40ÝFjrTmRP)ܛ1%$su͉ԋ1U2,X ~|˷+d[렃pgM19p4!lf|heN( ))wB1Cۤ鍫dPK wZ<'IAR-STR912/examples/SSP/.svn/prop-base/UT LjKʈKux PK xZ<'IAR-STR912/examples/SSP/.svn/text-base/UT LjKʈKux PKwZ :DsT>C[ t!U/|C-i1l6 ]6 A|YY(l98yK|Ʊ3e|TU *a_vտ1{ܛ丈MSMR*wdcX/pMhqАTӞ}##gءjtΎ఩Nދsb20nk5sbjbP^B@3qGI¸i4dr/N¡hK} fxLc&$,4,^ٞz'4kv_k}fӤY2wk7ڛkABa\UN^ih4Mi}Fv.ɖg|.qh/e2Ff8F/ǢG3f<O =TTTgF[mi.sFI`UkEE W*40C"3d#vWa0m/к%]k:9ba<گ Ů+_\+e~&[ > ȔJM@LNlx^޵{]0CW/Y}EWB3-+6,xBI45/mlv]9wOlz1L6S5;AQf\+/USrn?<$bPA$YYiEgy7XMߌgL43dk"R YFe7xxjz-Ɗm=F*~UCҬQB8&BbiNfʣ?f9cĿxz#)B;gBYBX )l|9 f<#y8Etؓc;Ef}F!GH{)c [&~E C;o/kՂ7yRXql4Jgz7lmm:ذh^FU+2gە԰Mh ~A^'iAu)и"xW8rD{yR*8W0ZD_:u]I=tzVvln6ghf7 \<?s Z.zBeaiS QԢiQ$vN 1ɥyZPI hJm έ]i)7ZCRq av h%v+[-{vt'gGL$PDHҢ@l(#X}Z]y(Y?Nis4~4a<#~һ:)qFWGvM9`MWo 9ߦA~lkُ&ѶIi+fHl 6TvG(\wP+5o^ƂQ@ PKwZʵ(O-A&y<(2u?@*PJ<‡tj;SDbFߴ;>2D/\!d®Q`fcmkyÒf J]3ixvEڗ7\&| bڼq:4$_ /.zgC}hFSc p| By9@r"W~s ؟nQ'SdyiZ*Uf0ω8A\:2 hhY!s3GZy( [k}|2 0L0r T $wNw|-ier &dhc$٬.O=AN2Շğ:fG7.F@|$hPd,˔39E ]2mH}#N* mVRWsT>U_bAXR,vDF0:>M%>Y 20b-E'xً@}(qYl`-}݉:A.,+OE#g !B:(,S4.??^Eq2Cg̣3>vd&Y]GL^4K74EvejM*@'CFy Θ9*X ɜBpTK3nTn  qEpd 5v50Dsȗ-qK)HLP7N!2GěQOzƹiI8+w>aR ($K=Nj8:ᣥb>wr!,VdY&K/*iйsRWeMpCy%/zZ[49.'5O"#ũ.s8g:,Iv:<>]3JncXc$ j^v3PXtMJD"ȟ~b~=#y5c&1;#yc?Dw>>Y_c Mszc@^[ҋ+o6(ve 8H|;l{)e$pfg[ n>z{#˜vj( $i c]5;Z0NnH40ÝFjrTmRP)ܛ1%\Jt-eey_ߡ2c*Х}̼y81owF'˺.l^r%UY|ROO([IӵOy/lǢ<=yZeEBkJ"im6[P`r`nVaYu&ٳCϠDd_e] y)lSBG >b7aĺ6?( Әr Hܑ݄`FQ y$t)Dy,p4pDqQ`!D(I\{ U#أq] c8 X@πzl'ƑqD}8 ˁOC RPOkJރbDZ/ň!7 9#fJ"pf1j 8 !o<{HBol N! }[pjZ BbM/BY<ɖB.a6S2)AWK{z2*[Q~,r)K|qB_[|r^2z,V[bkj;K ʬ*i6/;.J7)ztήd2$ѳnם}e·5Vݓ!вMs/ }7Pݞi˕NW+p \ui6=W>uzύG%jTw,KP#}ۖu;MOYԩ)fZmk}ٗ}ךQ?w iBT5ÞF I%%$bRW~qMӞMC:4ͧK¾?\^@ƽolbNoUmKwƃhHF?۰aX8iyS+XOJxwm|sߝɭ8t.-K gz~}s5?u}w]u+.#ӗNPKxZO.v60<> RRJVet3(tW:ҨE%a:V"TQEvR X]7bz4$vBZ18<6QX ѳV*!eR yWQE)CS/n4<+Z@SUܤ r j!@ȅɺa"Sp=@獄B-ƒ=C;\-D 8]dxDYFgR`ZfeQ-F1Y+3>*E֙AciY{I%AU6G˘4@EC ~#| :AFܮAU39͵q x/qI 9.ٲ?>1ZÉ~t8ԫ*>}}Z?!c>0IhJ#i<3P7(Nl|y(GM||7My$cՋM0@H8#HIL+NzMd!%8 !Ԅ$!@#%1 Ǔ8b^ D1S c0rPDGd;8J3OBrF>p ^:OX=840G7tܞ0?j=40T1i #NXD}4P/l0)$Eh̗ ~>;dMnsq`~5n֯Tu}>i^+ٴO”VDU)Gب͞DF/;BwU1n?t@-5Ca7BHPJ*ǰohl;g*syǰ#vnT9yç3 uZߟxF^Q+w][.w;mT$L$|>w> wgnm{:K~h^8K]t<~۹A?Soʛ vQ;w_$ez?$=ȇM]{$;um{N=܄lnRﺶqID6F.|G6:g6F.|˧6l:Z&-v(9Z,y'M'=ּVI~˷=ּV;K.M]'umMǹ0um\g}b[_xſoy59xm0kr#V0?DxMmKdt~f݄ uo2|' zPKwZ"2Ѻ,tV!#oF t\fQxSGy$/;rV9ǏK؇uR6M?ԡkn:`wKК`PX5t蘭mTe:a6@N[6b8Mt0Lo1EaqZOsl[逭~1 .vr/44tͱ:`7V ̎7:4V Zz R5BͰp)2L"MC 56t[hu,P2lB9W ]v6jB%:՚7_|PKp[؋êP!KG#g")>L$-yvp(}MyC?޿<~78ԍ{㌍5 rSuhAr ]ն&NMj Bx{Mqb"}9Wsk6#`J&Ywy^VQyHmsj?P+SP j?aUuCFmZ:o Tݍ''8II"NqZZYy8II"NqVrCI %] %)HDJ&R2d+d"%)HDJ!C)'8)I!N qRP '<5*d+8}#úa I4b8kDn#D,wTW}C*PHB='D7F0{iDM]e2\P@g8ҋcOԣnJJ6łdrMW&sjQT N`& ?3 Iqd1`1t`} ңt1?jM!bim;1mw;L!Q;[;^?!~C?ALҜ@pͻ0*@>vK΢Zm24Et?D 9LmrL0,/,[vk$cf& S)djgE6$3SGa0 ocGhXIoq¢ZkNvNoM_Gl|SٿZ5FϸT&Ook˛&`Ӥ]jswwلƳ =}=UҚ"T (n Ǫ • !t!Ɏ*lt2\)yIt #R o9lXRuoaOg51:9Qndؐy,g\um0i4#\%Q'\g&X9qAjq hleDS"rS/I8 `DsʃG.i-q8Zxx .#G\؄I}FB<qxIw_`srrZmٻJc-3@Ԕ!*,Xpڦ #)oE>./65)bՠ8?/?˥yGzM?r_vPؾ?_6x3gv- 8W7w)~枮ݣW=(TH<~1i!\y~[1$Cl˾/}hmD+G(OŃ\I7Ϲ76RkHAO4BRz#޸t߲Ȯ$ )/''WKլ#aٕݬבWfPKxZ<3 (IAR-STR912/examples/SSP/.svn/all-wcpropsUT LjKLjKux ҽ 0=Oa@ZVh"TďǯJE7.4 $NR\5*̬dކwDнK5!*MC7Due~ť(8~㊔m F,ħ8gY{[qڽf#ӒZg{Gv2gL#r-PK wZ<#IAR-STR912/examples/SSP/.svn/props/UT LjKʈKux PK xZ<!IAR-STR912/examples/SSP/.svn/tmp/UT LjKʈKux PK wZ<+IAR-STR912/examples/SSP/.svn/tmp/prop-base/UT LjKʈKux PK xZ<+IAR-STR912/examples/SSP/.svn/tmp/text-base/UT LjKʈKux PK wZ<'IAR-STR912/examples/SSP/.svn/tmp/props/UT LjKʈKux PKxZ"2Ѻ,tV!#oF t\fQxSGy$/;rV9ǏK؇uR6M?ԡkn:`wKК`PX5t蘭mTe:a6@N[6b8Mt0Lo1EaqZOsl[逭~1 .vr/44tͱ:`7V ̎7:4V Zz R5BͰp)2L"MC 56t[hu,P2lB9W ]v6jB%:՚7_|PKp[؋êP!KG#g")>L$-yvp(}MyC?޿<~78ԍ{㌍5 rSuhAr ]ն&NMj Bx{Mqb"}9Wsk6#`J&Ywy^VQyHmsj?P+SP j?aUuCFmZ:o Tݍ''8II"NqZZYy8II"NqVrCI %] %)HDJ&R2d+d"%)HDJ!C)'8)I!N qRP '<5*d+8}#úa I4b8kDn#D,wTW}C*PHB='D7F0{iDM]e2\P@g8ҋcOԣnJJ6łdrMW&sjQT N`& ?3 Iqd1`1t`} ңt1?jM!bim;1mw;L!Q;[;^?!~C?ALҜ@pͻ0*@>vK΢Zm24Et?D 9LmrL0,/,[vk$cf& S)djgE6$3SGa0 ocGhXIoq¢ZkNvNoM_Gl|SٿZ5FϸT&Ook˛&`Ӥ]jswwلƳ =}=UҚ"T (n Ǫ • !t!Ɏ*lt2\)yIt #R o9lXRuoaOg51:9Qndؐy,g\um0i4#\%Q'\g&X9qAjq hleDS"rS/I8 `DsʃG.i-q8Zxx .#G\؄I}FB<qxIw_`srrZmٻJc-3@Ԕ!*,Xpڦ #)oE>./65)bՠ8?/?˥yGzM?r_vPؾ?_6x3gv- 8W7w)~枮ݣW=(TH<~1i!\y~[1$Cl˾/}hmD+G(OŃ\I7Ϲ76RkHAO4BRz#޸t߲Ȯ$ )/''WKլ#aٕݬבWfPKxZ<8bi"IAR-STR912/examples/SSP/91x_conf.hUT LjKLjKux WMo8ƒFKM>\Jt-eey_ߡ2c*Х}̼y81owF'˺.l^r%UY|ROO([IӵOy/lǢ<=yZeEBkJ"im6[P`r`nVaYu&ٳCϠDd_e] y)lSBG >b7aĺ6?( Әr Hܑ݄`FQ y$t)Dy,p4pDqQ`!D(I\{ U#أq] c8 X@πzl'ƑqD}8 ˁOC RPOkJރbDZ/ň!7 9#fJ"pf1j 8 !o<{HBol N! }[pjZ BbM/BY<ɖB.a6S2)AWK{z2*[Q~,r)K|qB_[|r^2z,V[bkj;K ʬ*i6/;.J7)ztήd2$ѳnם}e·5Vݓ!вMs/ }7Pݞi˕NW+p \ui6=W>uzύG%jTw,KP#}ۖu;MOYԩ)fZmk}ٗ}ךQ?w iBT5ÞF I%%$bRW~qMӞMC:4ͧK¾?\^@ƽolbNoUmKwƃhHF?۰aX8iyS+XOJxwm|sߝɭ8t.-K gz~}s5?u}w]u+.#ӗNPKxZO.v60<> RRJVet3(tW:ҨE%a:V"TQEvR X]7bz4$vBZ18<6QX ѳV*!eR yWQE)CS/n4<+Z@SUܤ r j!@ȅɺa"Sp=@獄B-ƒ=C;\-D 8]dxDYFgR`ZfeQ-F1Y+3>*E֙AciY{I%AU6G˘4@EC ~#| :AFܮAU39͵q x/qI 9.ٲ?>1ZÉ~t8ԫ*>}}Z?!c>0IhJ#i<3P7(Nl|y(GM||7My$cՋM0@H8#HIL+NzMd!%8 !Ԅ$!@#%1 Ǔ8b^ D1S c0rPDGd;8J3OBrF>p ^:OX=840G7tܞ0?j=40T1i #NXD}4P/l0)$Eh̗ ~>;dMnsq`~5n֯Tu}>i^+ٴO”VDU)Gب͞DF/;BwU1n?t@-5Ca7BHPJ*ǰohl;g*syǰ#vnT9yç3 uZߟxF^Q+w][.w;mT$L$|>w> wgnm{:K~h^8K]t<~۹A?Soʛ vQ;w_$ez?$=ȇM]{$;um{N=܄lnRﺶqID6F.|G6:g6F.|˧6l:Z&-v(9Z,y'M'=ּVI~˷=ּV;K.M]'umMǹ0um\g}b[_xſoy59xm0kr#V0?DxMmKdt~f݄ uo2|' zPKxZ4|/oCĥa,ya– G'L7qX3ƗHߚ؍Ņh@ڎPM(sCfx}0Y0_Ħ&G1dd:,O:iHihr}о%آrtց`ԝx")q[ 䪉-B3ז^{ 5Z0ƭ(CƅA#x 91CtZB^[!E οQbl&A;yvGݾs }Lo)1 (۝Sm1(2طqc㭩;TZ1a >@4T518R9ϗ&<ѼT$D}&&)MӦs; r~^ I+,;+- #=ڮ3 &vAoLA rr |Pp6XOyn,(RQta }钩;H5O` `)""R/#Iw/+/Q[InKtj8#x[Fk**0woؗ@ޞF۴4螤0HNymFm`Όv D&IZs0+@/b;j=y^y>=Lˬ.ZFN)G#q$JHW W?Wx >qŪm@7=D~Pne(PKwZck)2U<>[wj N k]V *vpXXE]׫wxK/ 7t1L=@u{Ord?]lB3bpRֺyrs<;ɿ}&yi{߲%C93D"Oek!r, YpIt&L&HV6LcrMAEBI&e~̡M s:4 y+^ "g7R|Bl>D]Ld)x 4A|͢I*X(D$"➑%wEF/0#N $mȶ`Bbt)q L*Dcx=;=);9}4U2[Tk$u<:~khBGE'g⇶_s?"pgotJ$t _PK yZ<IAR-STR912/examples/DMA/.svn/UT LjKʈKux PKwZ<3q6$IAR-STR912/examples/DMA/.svn/entriesUT LjKLjKux ӽ0 ]ئot%tK!QT.1lǯ=f$"%ϳЈe]:.?vfrO܎vn^GRηG7]ZthAb8L^_ݠ:J Ҷ8Y(45fx+>1Hh"(U2BmdI|y-eQެ #^^~dz gUl:&]8Z@i6XP(#Ju%K>0WYC<-mSɤ}>YG1p2>lR Z=TjUYyvh!Rd*Z K"<>rr1h0 m^K/#B ;]Ҿl22)E)Dޖ Ŧy:gaUv2>D}ߪw/PK wZ<'IAR-STR912/examples/DMA/.svn/prop-base/UT LjKʈKux PK wZ<'IAR-STR912/examples/DMA/.svn/text-base/UT LjKʈKux PKwZ'r%p ҐR9JUy2Jx|盎9gsD);(*,S"ӏrPKPa/r=0 pyuK-5P6@ftE)F^^`^yǗrƈCBケ!j6uY d<' }L+TX#usI#$x'o4Wdjm }Mr$eL+RG'aGgmR97s{]U>6׿T>N aE|r,:kc遤$.\|!< \**$WĈ!ʟ)rހ4טuֳܜxj|OSv}6 |T1DRܞQoO~2Geܢs>˄ºayvaNUϦ !SȿUL):&?橄f(,\q iE@`\5v5d?BSG-Rv P”7%N)ξfoJ+6%g7M5ܲxc>aR v/$Kw=8ᣥbޙf޸+E2,R%W{יӹ7RɲF8M~ŋVm+QBw[/\(=22#ÖT(i' 3;65FjsW ?83LUEAJ.{5O{5ɫy3J`ȃ!{aP/][oV( ;R 0LwX9ͷ4.%cH2rϢ-?\+{Y J-'NPHIu˩~u'|bJ'+|n4W]jːʢ J! )繕zWsrqa;˖PKwZ<6R7IAR-STR912/examples/DMA/.svn/text-base/dma.ewp.svn-baseUT LjKLjKux \ێ6}n䭩/in7&j|ݦ Zm&2Rc;$֒},tx8Cr8s8r2VG_4k D짫_|ǻVg 8֌.y]U?U=Fgds$Kp%~wUWuX- fEQ`d˗$ RDGs dmϭѕmI =UxfuTnET2{N P֙Y!#QX\ث|%@PLK"q , u88o:tZ-xߡ>4|/oCĥa,ya– G'L7qX3ƗHߚ؍Ņh@ڎPM(sCfx}0Y0_Ħ&G1dd:,O:iHihr}о%آrtց`ԝx")q[ 䪉-B3ז^{ 5Z0ƭ(CƅA#x 91CtZB^[!E οQbl&A;yvGݾs }Lo)1 (۝Sm1(2طqc㭩;TZ1a >@4T518R9ϗ&<ѼT$D}&&)MӦs; r~^ I+,;+- #=ڮ3 &vAoLA rr |Pp6XOyn,(RQta }钩;H5O` `)""R/#Iw/+/Q[InKtj8#x[Fk**0woؗ@ޞF۴4螤0HNymFm`Όv D&IZs0+@/b;j=y^y>=Lˬ.ZFN)G#q$JHW W?Wx >qŪm@7=D~Pne(PKwZck)2U<>[wj N k]V *vpXXE]׫wxK/ 7t1L=@u{Ord?]lB3bpRֺyrs<;ɿ}&yi{߲%C93D"Oek!r, YpIt&L&HV6LcrMAEBI&e~̡M s:4 y+^ "g7R|Bl>D]Ld)x 4A|͢I*X(D$"➑%wEF/0#N $mȶ`Bbt)q L*Dcx=;=);9}4U2[Tk$u<:~khBGE'g⇶_s?"pgotJ$t _PKwZ<=ay:IAR-STR912/examples/DMA/.svn/text-base/91x_conf.h.svn-baseUT LjKLjKux W]s8}LÝKic _md!E"ߦ,]?i OYo29sd]d˭F-K90jm.0_ǎM8I%`$I.`0M|  @$wh$dP=֤A9} !D1!uQ)AhLcc ΁r٠\^/GNÀ09  r2tY)Iyq`G8sN\GƬ6A[M;BOa^Y8T^@DX] o)A$xf0|ثFTbU%%>qB!"1Mr&+WD$t0ꭌ&FS|oJRUCOO2_ IqX7*+g;yfj'l̾&gXj*`Uƿ*ӽȒ0 7[;#+^*!ka445 ΐLgݶ:?2Z03}"7@w2#vJHu? vJ ڽHvBH:,O.v60<> RRJVet3(tW:ҨE%a:V"TQEvR X]7bz4$vBZ18<6QX ѳV*!eR yWQE)CS/n4<+Z@SUܤ r j!@ȅɺa"Sp=@獄B-ƒ=C;\-D 8]dxDYFgR`ZfeQ-F1Y+3>*E֙AciY{I%AU6G˘4@EC ~#| :AFܮAU39͵q x/qI 9.ٲ?>1ZÉ~t8ԫ*>}}Z?!c>0IhJ#i<3P7(Nl|y(GM||7My$cՋM0@H8#HIL+NzMd!%8 !Ԅ$!@#%1 Ǔ8b^ D1S c0rPDGd;8J3OBrF>p ^:OX=840G7tܞ0?j=40T1i #NXD}4P/l0)$Eh̗ ~>;dMnsq`~5n֯Tu}>i^+ٴO”VDU)Gب͞DF/;BwU1n?t@-5Ca7BHPJ*ǰohl;g*syǰ#vnT9yç3 uZߟxF^Q+w][.w;mT$L$|>w> wgnm{:K~h^8K]t<~۹A?Soʛ vQ;w_$ez?$=ȇM]{$;um{N=܄lnRﺶqID6F.|G6:g6F.|˧6l:Z&-v(9Z,y'M'=ּVI~˷=ּV;K.M]'umMǹ0um\g}b[_xſoy59xm0kr#V0?DxMmKdt~f݄ uo2|' zPKwZ =Mr[-`^ PK wZ<#IAR-STR912/examples/DMA/.svn/props/UT LjKʈKux PK wZ<!IAR-STR912/examples/DMA/.svn/tmp/UT LjKʈKux PK wZ<+IAR-STR912/examples/DMA/.svn/tmp/prop-base/UT LjKʈKux PK wZ<+IAR-STR912/examples/DMA/.svn/tmp/text-base/UT LjKʈKux PK wZ<'IAR-STR912/examples/DMA/.svn/tmp/props/UT LjKʈKux PKwZ<Ծ1<IAR-STR912/examples/DMA/dma.ewdUT LjKLjKux ko:O}8GZnvIYw($-kRrlir!^6KkiVδVJ? | "Q:AJHϟ=։)=wjSqi\{OQRA "xjItvyz3 M5{ٰݲge2ƵHF ,?4,[߿Yil5ofWLv!1smiRhYgZgz迋}D&  PE}j "SC7H0VkYKjn]qnc#0}'r%p ҐR9JUy2Jx|盎9gsD);(*,S"ӏrPKPa/r=0 pyuK-5P6@ftE)F^^`^yǗrƈCBケ!j6uY d<' }L+TX#usI#$x'o4Wdjm }Mr$eL+RG'aGgmR97s{]U>6׿T>N aE|r,:kc遤$.\|!< \**$WĈ!ʟ)rހ4טuֳܜxj|OSv}6 |T1DRܞQoO~2Geܢs>˄ºayvaNUϦ !SȿUL):&?橄f(,\q iE@`\5v5d?BSG-Rv P”7%N)ξfoJ+6%g7M5ܲxc>aR v/$Kw=8ᣥbޙf޸+E2,R%W{יӹ7RɲF8M~ŋVm+QBw[/\(=22#ÖT(i' 3;65FjsW ?83LUEAJ.{5O{5ɫy3J`ȃ!{aP/][oV( ;R 0LwX9ͷ4.%cH2rϢ-?\+{Y J-'NPHIu˩~u'|bJ'+|n4W]jːʢ J! )繕zWsrqa;˖PKwZߦ,]?i OYo29sd]d˭F-K90jm.0_ǎM8I%`$I.`0M|  @$wh$dP=֤A9} !D1!uQ)AhLcc ΁r٠\^/GNÀ09  r2tY)Iyq`G8sN\GƬ6A[M;BOa^Y8T^@DX] o)A$xf0|ثFTbU%%>qB!"1Mr&+WD$t0ꭌ&FS|oJRUCOO2_ IqX7*+g;yfj'l̾&gXj*`Uƿ*ӽȒ0 7[;#+^*!ka445 ΐLgݶ:?2Z03}"7@w2#vJHu? vJ ڽHvBH:,O.v60<> RRJVet3(tW:ҨE%a:V"TQEvR X]7bz4$vBZ18<6QX ѳV*!eR yWQE)CS/n4<+Z@SUܤ r j!@ȅɺa"Sp=@獄B-ƒ=C;\-D 8]dxDYFgR`ZfeQ-F1Y+3>*E֙AciY{I%AU6G˘4@EC ~#| :AFܮAU39͵q x/qI 9.ٲ?>1ZÉ~t8ԫ*>}}Z?!c>0IhJ#i<3P7(Nl|y(GM||7My$cՋM0@H8#HIL+NzMd!%8 !Ԅ$!@#%1 Ǔ8b^ D1S c0rPDGd;8J3OBrF>p ^:OX=840G7tܞ0?j=40T1i #NXD}4P/l0)$Eh̗ ~>;dMnsq`~5n֯Tu}>i^+ٴO”VDU)Gب͞DF/;BwU1n?t@-5Ca7BHPJ*ǰohl;g*syǰ#vnT9yç3 uZߟxF^Q+w][.w;mT$L$|>w> wgnm{:K~h^8K]t<~۹A?Soʛ vQ;w_$ez?$=ȇM]{$;um{N=܄lnRﺶqID6F.|G6:g6F.|˧6l:Z&-v(9Z,y'M'=ּVI~˷=ּV;K.M]'umMǹ0um\g}b[_xſoy59xm0kr#V0?DxMmKdt~f݄ uo2|' zPKxZ3:'#)Zx,:Ma6[vEcL71Br)(ܣ)!/ݦo;̓#h'3}lӼ;h,O@T\1g> UweBaا[VRoeN3=Cl1pcd@} vn'VCc7tӓ=ԣ€VEFN3.eL76_&ah_!=~Uu7@ TY?~>]BSO'q<ΒD,JrPAVOf#|>ƻ!?cT:ƖXb*)t~)VHf\múbV&ϑ_[Nv쵤hf1nI1.U 28[4_MlWWUO,uqG=I|EjOK/j+ͲC#FUV.[ɴ2}W޿s dlEփ28w <'UQgqę)=pZqj(aT_ Fhi+F* 1Z ;된X!}31^!Tp-<pyqFzYǥ)cH89+qՕ1TKKHrڬsNĥ2U̥sǯfeVrP)GuFւ>;K ʉ],@}#PVF# Qu>9'!KLGpg4?9I"y^,72Jji _>kyu{=j0#8Ek`4K1 B٪ѥ~dt@.9NƐʞh` 8T v-nB,-P1yU yKym&J?if>7L QCҮ'Mjמ'ˡK"B/#BB꼒;Vy%vq) Ƴ~ui1 `Bn ,0~q@T~`,>}!ŖRSDMZfm\MJ«Z0D57L!/E&/ε7J=A*$;;;MUJV53AL qiHHl6wOXlo W_[T}2s1ܨ&w"YZZ31Tg_T^TSrG}8W3M4HR,QBPׄfdQlbFa$5U@ PT{FT-`ksAPHX \Nû.~:h0xDzg[c~zzٷܧ5?7؟.RM+WUj1v,GVTZj'{l!N+jy:qǕvA<]iP;L1L~ < %bYsk97ݹuq>W7#s#zT>ѩxaPS4J/cHum9:''%f*LBc޽ee՗0^*b3hwe'UEvDgaCvufF?5sKĐ։,AaR:ҫ+ l:O}Ѓw@׫s_VȜAȉٽ9|Bz΀ ~9qtB_|yp k``|Z΂$kPrBEs晒۝R/ ~ZTS(jPyKD„c(R[F/a #.1 F!p/>oehR!*%^}?ˎ=Z`5JS#C$=, Q1J WIyS jln+ g6B(ٓ]C+mlȨ?yQ?PK xZ<ıIAR-STR912/deletelib.batUT LjKLjKux del %1 PK vZ<IAR-STR912/source/UT LjKʈKux PKvZ<^ g =9IAR-STR912/source/91x_rtc.cUT LjKLjKux [mOL9J(i KyئU?!lĎln{~u)Όwgwvl(.u_-́FNA7@ ;e^a<6Az l |p;%3F1Q4gCn{GvYv+hz3n$F4YxCAgklfBE٤d5uot ݱ=S>:81贠cj'z_eZ("vm}ZZZW;5s#ܶL\h[.ZpPk}AKcZ;% j-N梅F9X"=G3{F  öY7ol&sb֓/O؃?1 5|F C9c1sHHG`N{wCY|7cC6zɒE98uq%7nWdQ4EѶ9NpjxwN~= <}n>ByB݊ˮT:o# O0|ދW,QbXACڋ19_ԍIg8_K w{u$.f/1M.Ho _ cz MhQʕ&6AJ{w$_Y?}:(sE`g,z+6/ýFEתhk$zm-4D 2|65ilY$Q2oH4JǪʘrƤTz /޹<9>>oP;u5ԵO]'kWbP>*=3>?&aP>P *=e+ѳXl7=c؋8N!ƭ._vxÜ5O&j[OιS%n==˴L[ -tj˖`s (烘TT[iïٚwLpr(u[~80|ږma@_qr4BLMAa;Wѳ ?(b;*uUJun6tK*Ix;aj+ש6[0YrXF}Fˋ $ouHԡGr& %x^%V_Tly)j%1Si9"EȰTD~4~2īX] SY]% zKH)R:,KgvzGRZSwV<jD2<2ˡZmtzOtJO%*'*mQA'fO{%o2y\[4CvAb9RQo&*=|eKMX@lf.lK6uPk| Tuzj~iogPI%h ǭs&K'B+չ@!J\A%ȻDYYdA*ls[Zj5h3d-:K\H٥ln.Oٻnn%V9V $]-M&Q&}f KpU"k/aw3fNlk_9(ޤXK_" 剆暚JJ=-cS.H[*#xśtήRWrett)VzE؅HG<Yx0K(uQ'P4׌Zj6Yr`R/;ԙw=~es>5ڄf݄}JdTDO kC%V(hJb[|6QY%V~ZDz:TvǜV!N1߼utX1q'|崒mC,%ې<+GO.¿1aIO]AQ JݝxW$|[O*^r~s x aٶc&_R+wm>JqE^?<eA>X9k70+H:@q;JHgÿƹ'ic c2I^ڦpk'G:7)iɱecb\ 4)[)s$=מu>ln=2H6\ԟmhB""||6 :]PsǞX`2둄VPMIvr\??xL|{Ε$;Aw{7#m7 ,lNkp^!tvzm, bqbшZ Q[7@lު0` {'e§[s nwTϠh ?j]MΝa u4݋7h:v(6a(cԽ{1 ḫP6sQSGܡp@T`U3}c1U}Ї&\pהU*gjc> ]."LPu5]eܨ`H N_kQ荇J QIC%6Tw 祵5 c lK{ZE.h$5siKG{w܉5ut$n<:,[`)Nٔ^HQK|0V+([m}u^2+8H2Ȯ[&|<߰__Le}.\Lu&r,JQѕ΃̡,^hϔEl 6]v&rlĹ o9o`0%@葄[ k\{|Y0p%mxB abAvttQ1^, 7\6˨a…7sݳe3]n Y$0ga+.W[+WRNi'M]X<@-{VW@j*33#DfUDcuXW/ů^____4F)~5Kk,,,,ͯU_,V!V1V!?IZԶI)'e2?)f~R̞wZi!b~NK;+,B~g_rG 靕w^yYz̊(,B@Z4ՊPk2~Plbl6ͬC疏:v||#X`fV/-OWq0l2kՏK!>X56L<7lWX 3-|qe3WR|l?qWcoRny7Lm 7nF+8.o'Jz$!6gS\ K=3 \nw Z)n`NGY؟w"GHL/߿V& tht7֓ns"C9@*ux><2aeÇO,Wp$@xh .[%A9G.mk nқ 7iD̉K1lƊϿ@UYC o&z&Edcx)Ɩ[=7~sK-7৽S.F S;S*=t'+oj報wK86[*7@疒ͱ3uO ")0ZF᜹١2tq9smFK#DG#]II,C2OT }JT‹ށTK˂/QJaӃyFpy:銧a+׫%X=&zRY*U֩,js/-U@I>$-x]o蓊f+R%D}3f:gP[ {>3kob4miTG=qxY*YΪ[.=Ė 12Ds2mX@lO\%޿o|V2N?uӍ Y/HS#6m d1C:صvbzS+$+w4x7!jS4a|>F})a& Qa⫟6deh94vj;T 3v|`4d#FE^wf7(bb"J51 OڄO.$M}g*b. 㕊[WW1w9< UI=!Af,-V(ƇG `퉯wu;B Ѻ\B\ƴŸΧs:"V :W$Lg8&:: 䞃NH)6:{2B,'UQ$kNdL_NĞޖ'vHXXtZƭ7V(EW0jnTsޣp9F\:\E!n&T>{,VV^VQVYVUViYJA6yue|y/;?ì2zr/KG6RvM'[k>p6-o?6cSEɚd[)%n0o7,VIIiiYYyyER>zUW2kq)su}=cQ>|J;қԭ6c%JMFk:ka͊9)TIQs[EYuz*J Q{F@*J%tX!+:lA_8˭/$q㙨>wzZ_޻PKvZ<3nH4Q IAR-STR912/source/91x_wiu.cUT LjKLjKux YmoH)a.'EN8/WWDH67ʧ:^B#bdžIJ]Ufgggfyf h;Zs8ptp8IBIq_@͍]]1F<퓄8с2RG25/e3)Bd, _ؗuK8lL J%vwɲi_  3c"3/a0"V6zAHcэ#r[nsxX5,6= u[pkp:24Tu9(5;C3SPGk tp=ҩZr0q@q [?Ul74lZTA!lMV87Gyk n Q}Eh5Tږi8=rDנo('}]Ts _^))2zn(}ДrNnC$[Hݶ \@5\3 U1TLm?w FE|!Z"ױ<CAD(ۑ|TonlnzQ%sf[oF1!ƼN*2Lx,{> L Qc?t8L5Yq6^GFƣubk,bI8[`Q#s,S/AYA*W)u44&f ˆY}4A{ͺp'/Q,*Ƨ) oy4E;` ēũR v"bT&1w)D N$si{;%e{ow!Z28M% KV(V"7I8қZ(M 2 LLPFcl?oÿ듎Xckפq.ӥrg0OFyY`)2w1Q%_NQ;B e4ݺկ@7+ysf8WEAF$/wq挧ŰZe?Cݵ&7U ^%ļ Ÿam zЊ9aRSodn'<A^WX.JXlu b35ixY]-}/B0go[ztYX{ v[aeQآH&sMSxY!0N+,1SUҢ_by}^Ѕ5Z~OeN{nv=_7NYhLsfD)΂S~$BP {PCjD(A&C k< iX` M;oHos:h_9V2 ,ÜwEvC2=PR' (K] kLBs+/X.pTe.ĺ;O-7?SE|K"pז,t\I*m$"raF5d^BN׃f+'H~ 5hWI>Hmpצ>( 2:7@JnJ5Gy2mHb.! ʺ#Ns E/7c-,(^P)qX@ה5ettG2rcq9݉]R+NѕOIO?%?%("%<8/7H:|h7C S91%2L8 *b+ny%~9tQ$VrJ4܍ĸre]ܿK+G6%20`3r@C}'4̛~ig77x(;hx4a=0-%Pbcw{>/(-6Nf.@#f)5B"DZHy鹷 ,!'i^E~Ox*0~`;<])h4c#16pK-)0>crc͊]O5`4_E4H ϡF0)^ /e_EK/M /ed*0)^%-1xHKٲ%ˑ*0)^%-xDK*ˉ*0)^Ix)[yy']qbd Z8L/ӝ l:7bH;ެV!٥L$]6?3Ѱ,ۡxd^0 M(CK=|JϢXaTźe2y2Š m^`_4铵*G|l&9kpq3!vj)k+11ۊ#CK>G˝2& m\Y ?hi}ӜRMZ8k(kƿ~ot%+)U?NՂ1Eހ[ cW+DkoSC|"9<̔U|}B`~,IRGC)re3^KE|cHzdx͂D˸4su瞳Ų 8OHhD Jϻ;]Jxh9ݚw,]b6 ]NW; y="9_kJ*!D}|0YP#w~E9hB"f=n)>[SrODGVV$)AOIîgx[$ 1#^Nkk k=[~0 Q18>_vxls_HHg^P/3@9gEnQ_;YqօZAGo{>[wf YY> h8 ly ǠП>C->Pt(9U-bgI=}D4?O[nk,óWKSʝ& V]iOŒ PKvZ<bAfIAR-STR912/source/91x_uart.cUT LjKLjKux ]{o8{ ;pMǖIJ{a(6 kK^Ico>}!)zЖ4Iw?R[83 Cj:鎏>EZkbZCg{tA'$ E=%}gA^R]dm 6ù&ntV3CsE%6!P?k:ƍWͷ6H)Y1ݚ;!k+;w4 bA9%"7 /lڝ in:AWmRZ(ś˼MqO%:ȑ"o}twn z3jd<|&}h4zOia"':b7;>C;*tH;Z&4"c+7$֘tA[ջXh]I`@FckP@4}&=݀;ߏAr3 ΰs\[/p Dx" XqǠXQoDM ;=Nx+ a;H@Jٵ0iM޾E>~.NkSnA̿8dͮ2|DxS: ȀhKo$@d~F{2 TustAOwj\wh$m6hn"9eh8Q! #P %}P؊ߥCPQo`b%^K ."T bڷ'ooxd6RXYy3`<:Y8 c]H:lJx[gGW9Xw o9)>Bs!XD0 NԔ`["+`K㲯zNi.n#.qI1a>m?/375%֞`u 5t u>!%J+*P ĉ[1m Z9s, 9`' el`` Zmc , @,uq,̠#Ze,j67 u s1J1= 7#T~r&/iv:aj  WM$+ C oG'1׋4\)[@Z M.K2]rJIcI`BĀ-ݒN CCMFKAõosnke;G |N*zbgVXF2BIhNNXm˃ {E@s6K,olR;aQ;ӷ9{2q"NCpqzIA9n7C Sx&>SŒS1y ɱbhvrWLVk!@d;.9gkW^wKa RTT.e'Yus~R$Wƒz4TXh1=K~V>ЧHތ8W?S'cE)|b%er.UóR1CoE3c`CNxI_r+L&iwy 5#HN1M(SXp Ɇm)-+?+ܷSӴ0e54v{^ڄ{ahA6VQ'o8:H_ؕFsKÑW?ݑdĮZNvI:SSz>Z}l]lH;,2E" 4;}N >y:+yըsmz#k;lj7_7g&^Td̽Be, ToՒ&y9ي`HH">bA#H:xf5oQ8nB$$][StF%OAOECB)ɋzk VY7Ş> *AqOK.r!w`Ԟs.O ^8ƥuzY}g2/̙/=\$5˕ ײ2*̒\yOnJ,I>}{LmSC x:%hdh{-қQ&(n@c@)%x IyWk$B="w"ioZK*k6D/lM\z̛2q +v3Qypƫxm `ygFj5LJDKQ .! BqTAQJ_mq6s2gyosOo2X׫PQ"OpߎIʈC$yУb$y܄[:.)y h$V49#&a?K2ì@0}T@a߯b uΩ,)6 ^@X m7X:}7 {&"UT^5e ˪&[hn! ~10Łp|5a^2&`$BshvU"U ް!ru!is?".̞(`uP]#YMG/)jz>t/ҟ6KtM5 c{CvP? K,,̷Cr'=o'r|Ǝ4Kt)[tB*.*0/m1 ,F",r9%#wbŋS#q$F[h+in9ViuMj/;>Wq'"SBzgEe0n(Ꮍ\thk1}+dOTRi:SQʊ]'ٞ@쀆x us:9BE1-n^x2<]{0qWod ]'BOّ2&U4UZV55cEjR9іJJX__/I`REv8JJ0,UjB+>[ ~-M5Qa_-Z.U\lkQ<4,~_qSy2_ERq\HGWJ#=asQA'cΞw'&u ٱc5i)|?)[yoJKx5&\*0 /B_i9\#7 >9s zNzq.K?Ճu{yl\}'BXfF` MImYPݡBRŒl]"834Y V m,/Ҹ/[|(;o إeKʺI٫j畸n`7n#}: M8}u0 >j -Pm}ct IJCݴܰOLmL UԏU Ͷp%}ݤp1X1ԷAad`o+64st6#C:Qm8Da`TGo>H,PW:A⊤-D6`6 ta 6SyG`Mc;K0t}?F #`!٪1C ppFG}3 "g1u)x w"x"R!)?ĚğgvWtP0s\șIqs&,q"bZ+w*Uz.:È@Na_X㉩Uu8^98jO <6T)"ؒlG[}oП"_̼+e޴Uࢭ.DLȲ3LF^7xѷ-gpEo( 77M^;H-}AvfD>)=)hk56pK"2$01PF{tpXx y/JYY&#yujQU+q+DY~U#h]ED*XT ƒfϟ}'&)uin\\[>m2VKZ $\Z0DO2qUiL?QA<0cB ZBZ~2?]z̷l \"כy؛',K:hc59c,w(v|dd 3>K8Ǯ6icS3LԃTsh n#vAw@A A|Лz:<9FЀzp[`H:U 6:TQ Zm j0jh4A)|Ta`Tj L40ftuZ`U6gm Ӯ{87&J6_l#5"6(Jl\TmP.`לO6Nj|"ƜBt&Q4JA:аa6YB{Y8;POjKq#}rӛFV~e˛wҐy3΋LO?u?'Pgkwi'K׭z~( #@zDDFgS۴H$$@փ<9Eʹs!NBj?] =oMk<$;uUʓMN?Bk}r6 8z7 8)_%O:h=Oæ)K"QXimeڼ]u+QZukT-UEdX:ٖ9XˀxE5, FDvͽ4L!d_+d"R-Wq, GJ'mhFdv6ɭ?W[:k}Z9Lc`p8 V)Wv8 ȕJPre+;IƎ֬M~ߴT.#JB$ :pI61K+\O#-75 ܦ%v><龏um>ϵlL33oG,fI~$e14l s@f IhAZJJ"oHhV튑tWq.5亮ccb_1WS*0Hb$l)7I%dZiPiQiQޥç'HwU]qANLC̆gÀr)J2BH2 $!HFCIFCIFXDIF(arqs{o ^/$Y;9Gޠ|6M>&5675x銜,1ÀBfK&KF$@тdqЦtm/U S [G'7m'_>;; +􃌲jً0roJc&6 U~Fl$hSǷ"}`H( S_+4:JR_3+K%)bZzsXb$3JIKNO9X䅗]HL!O+^Ž9tw0eH8a@̮a4"SxY 0WAD{ļfi2p܁pɠ [$%sDx`e6Qhfi/0n">Zp-bjhl7̾>Qm8p⮳6\~xx $S1g`z1I 2_"6L#N~~̐ UH'^uJC52WY,gXZ~O>U~)XBpުePnqmewsBC~u=8\􈔦h"TqTCfJwk[Q\dfQA`>^ sCBvMb4$j҉[&3 \j'a|=Vj9cN01q wͼ?fݹD/VEZzg:|SK'ղFw> 5W(\BUrU5Y*RפSҶEVTefx x_m@D*=2a.yx.k>hS4{ɕdq/H{s#Z9]~,[i^r[N(}q׳ŎTD1?__T75NPKvZEsbZ}wE﹣SuWdd{[#ќG~@GifSwdG˱/rǎprv6ls[ԷjwFЭs7$l_ܱ{:%ѹC Iti̽ D #?aEb n7;:7[:ȑ"koyn z9hkd8}$Mom>8 c5DpuмߴAӠOCeB%24:Aw}b |Kk[C` Tm ֶ@o:0 C"$%o/o4Hm^  O? Gs_PKD_gؙ\ _\ϹָR/lP#x-JOqU:;'}4ZDSxtjݾFloLLGh=Äb$3j݋܉ 0~` r"Cc<ꛞp.4GD'pI+$rjS.ќH(~ZWur.L`O6_U4AMAɢiuN2?V*I +3$Ɗ4ȁuѻ/>kr=¼BS4ߣ8F]V=x(מ*$́JN`O%Gw 4fJNĤ4*Ҡ& 'qn!_˼~GFqJ7r 4'ͣڦrr-6a  ⰀwtE.n&f10d#bb-B#fz٣82!#a[eFBWR!TyW}ІmK6|C_ҹ8 #d:Q9XUCnQ_s + iDɓ"f4$=:OQ\8 ntN( ֓%REJ H,g%JN0㕄&W в>_LS9n D/I?2'B s׭c,@g!p^!-yTĆ(7݋]͖ ,..|Ӳ `@)@>Sg2pqPTbXqj9MbMd[|L #v#{ ZFof~6"CU:ޑG2Is8uU9p387lVBbۨer1Ȫ7ԉ.ǃ(AϷ$2KbdOI#:%=%LWotB{~1#qtAC\UkWMM̺<A 5v{L!޶:d"O!O M f*E4ݺVq̝Zm}ZyFLM @/6 3t' ti c׶df3<*5\su'pνqCiHΨEBy/gϿ>m EoIX%JWf蘙JBRi.;:BXi 6UGjk8IUkDh9h@Rqnhu(Gk@S!QQd@`$c<g9hȡD)ض ۑӜNΉ-lj %GF̼%I=}͘=˶-iߟ~J OȊ3uq%lk+|YGsNgӪeghБ.i ~[j9Ldp-7FZBz v,"ㄝڶsؗ.+k~tvP,TrXi!iK۲*CD1&ґǧbNF%6,$Ն ^QP% rcRe"ARp2bQO 2 dBIZSۧw>|/6/9Θdf)3xT]:.ubXO9q0#H$rM{9׮ZVs?78?p,s1; 2}|3 TPq S3=c졫ui"(e\zl<<;LG9bǣUvâ>X_^$>eZԪ5rr1z(j@?2XzEH j6PCTxk}KlԿNw#<V5 ș=V:kyC=U u׸R![0*FAZ3Λ%|L}\Cq#Q(!f`i`fgҞ$Bo4rmٲQg}4pS=<`ܖU+B iFV J#ʓ ,J^[{3U2.u+j. ԉXDudAF5-^UH[q7LvoTE—]>6DsCңR̷ñ5J7D?q?۠.dCK ˪Y~RY~?p6OKd|վ0=dlV3>Ɲ͖I^2ĉ^ohv~OpJSU;1R)9xT)ESWȋyLjZWg%]PKvZ<;\"IAR-STR912/source/91x_wdg.cUT LjKLjKux ZmsF*NjOrڲ.ٵ€l*k?0 P`Xg{Plby_ぁ>}v..=8כ MX&12蚺wc19:rLR?0 I W$l!f ,g! ytÑnXьÑ k R{K,[G (dpk\@,ă2Xq@3Cz懌HOqrBrc}K5mػn/-,3.-Cufh9˰ Я]o65n-KX6Nj51/4GECӍksQfa:RMݘYSP*Dz⽥LtgfNLsf^j 3M4'L,|bJH[²lkWni0vaj튤'jَlJ xktZC6Ԓ5a&xfРrm/,4pAN;aidӓϟG{{GhWD9Ի'?7ے5n͂\EW)H!>YO1IR>3fB=c<,Mq߃\zev17uѯKpRKΐ(,O5*0W8rEY-`NDDQ)]qyZl食r.zJGvF>E?fL r3RWnrъ{|Gj~~*#m0+c=_uPhR?Bϖ> #zj;2R:NbF\G6y|LxXπKpvu~%]в9JӦhxpt<]0(dP {_ _iޤ1eNbTɉ9e+CWF_2L!JB9ݏ}ʏsXzj %y0$B~f tHW3?*6nc72iژĉ?܍"%$F%[\VASEƐY)S(ɛǍzUҚCx$>aSud"IW3~**K|1JFtȐrWw =n&E Y(L2;>aQ:Q O(Q[[#(S/®»ⲻnSpG/~\N=+m "m  IPwv [ 6ouM_fƪJy>|mdxbC8::q$%Ñ%e pP:׏+@cv\jDH9JȎLD g+&H!>r!W;NZA&BMI b~?Zmɺ^N*'XlɖQܔxJ]덁7W՜jns 4Z-ڝOUյ{KV=)IVkM-cZUmڵ*ޏz|DQU[8/LZ_0lמp>}zkк!:$tn^MB^מ r:S+tu]+ O?A =COoOdxohjv0%es7(83;u!xmSl"v|pNz~&JH*[F )z`?+S$6/TUC`=4^5]y L mDQdc@zc}@ G89-<0Pa wUx1e-҂phP*1МTȬ%w蓧O>9ybХ^n}!_~ٞG|ׇo"N,B۟[SmkF\b( .4GcVui6,s 7gao-#Q0$`2?ݺkڭ,>QIy*=Qr1RPu5#EֺT/I^^KߞkA[yn pS{BnR$&uܲZ2no[ynY-o"@(}UdS8] c7sjXc}rqhƹ<8nRȸֻh%i[[8 >p,/13MK[tk1߾" [`VnH;$pW6MH7U$}udL|"vhaO@3(t)qi7*LӁW`/3K?]2YO8#|zggؠu|>>FoP.'݈;FM&تx8>EB[J̩s: |?5K%uwG( T~C0 * m/'Sx\HҞlң_ S!5ѝ86IvcMF(EЕ9xRw_,FfJ@ jKכ~ʟٕ]S+jѥڬyn#$HH/;i7ГX&,k"P3zi=}o\}j'&ĚN=,x6Ҟ:sǞ(ʧ#qJa; YHn%]Z?L,d(2wV>+9߰S #fɶRa[m(Më4,V2H{X̲=zStGR(rs^Sge-,yvLu."TmjGx>{= !nc==Vťʛ߮8Ʈ>fy<..oyVU9:IRmȫ{R4JR-lef+όQ,=S[u)Jܨե&F-iXRѪQ=+Sd;Bf&OU윞 g4vG;$\طVRNkJo/;")y{bR!ulJgZ>S5tn.Pܠ5=ŵ-oƛ &˶f9x@t&ڕ?=:ltJQ-.)NHG ay4|p&ށT膧0PwUGU`02D{vxC:G$,ho?zR9^Bk&7ͯsH9m2uX.>ާQA"jIq~nq#hF݇x}t?8 !>S)cmޏ̶%Ğ0PsȲu@f]Sl6 _lʢ!1qM,hJѰ ҏiXaA? 2hQ V # ~WkcZcȍ\ :fx$2us4#j9/x@i}LA>9YdmVT틨DC^($$"ZWFh@ʵ='ҷ3GYr7' ѷ=^.:QK5<*/w ;D+(jM.R>SGjDjQ\@U)alڷFJaGj".鉅*:R%AHK|QH\n4ŸOmP-+KV$N~h cԍ *;Ґċ33zB|Mb*sZՌ{/0.cZ0 {ACYD{g|ҧ}5_-C苤rDI^L쐈`})'F\H4nIlGHVJ8 kd%AOg=g; t*gqNL9ʔR(i8Y.[1Ju3jC_j1>O÷ԏ49Hgx)q ADN屘` q΄x.LLrFƪoE? !?H-owJvU^Ye~s1<2? !|Wgyb R9Mn"@f2LYyŅӇ#QO#wh4٭zԆ[v͞M)W]=WePKvZyP`h*IgA"v:-ŝ>ry;6pv$gm-lBD>`M:?Շh%Q/Q/r?vIާ:Fe JU]3dmU#yse029. :?fZh>qMôO=߱鏈SwxicwKM 5?EAӥT=Rf3M]1tlL]6u60`0bcƦ63Nُ`.VZ#FlcM1rSYڐAqkzXdJf/!Nps2 H $|| +6YJf7u :k>)0oײ0/qHDgPOe Kgfu 8Z lLwc"<\/%q֛ XOz2/})=&@ry3"Mʑ5{iQZT=UkSQZ->mCPۧUժרZmijΡfyӚ{(mhh:ޡfffkB,22 |~78E`4o@ί_g <*TԢ="ryH>OA"fiͺd`N*!i/k@* |x #,QE ݕu;彩74Hk* T⁃K\EHt 9J.d S*dKW/L -])~xxA&^!:MXW̍GvosӍ1AF1hйo(au4akG[S$ vgEh7rW+/1E"uCkEq~gNLwtC6{-ghҶ6lj6zG԰6j8?V#w͡ &&E6CC1!7GcN?lC:i"D5_Ss"vjþ1 gYvA.L6;MԱl>5$\V}!2{jtPm\6「6^@`tCZ~h뷐="BKd506Q4TZLXT^a&ahh!Y! )$ߢ߼|B?[m`F{ wنJ'5>4F^Le0޸ă' OnW}d=kLMÞ8YV曇823FWk/ASj#2BY-Ȇj5[XG}[5 Z" td\c .?ELV m*z8Z%f282xFY9'6mCF㧼d Zn*βlPRGf"2ͥ*%O[SkfP<:v/ zhsf?Kl Z3vJ/ALLk^U͚`ΚcUnfZ;%ZeD7MCkj&i[Za7?tXiahFPQ#XR.B:2'r™-o7'+AթÖ:#MMB2kLڗ8tW(dAv(`ԸULa6H`XnI8ބ~~"O7O%s _O^ BDת0oqlc4m .m8NƏ,Ux*I~+t,pFXbѝ͂pxP3oy٬ݐ I9::Y R::|tL&#gCv-YǮ3vȗw Y:Ax>Oy_?.æfJU`8m<#%Q[7 %fX}ˢ'x"$iB @t0.C׏DoҘA390>l_([ *rG M/JXE(G$?_Ҙ7?_*J(t]ӋQ* RiǙiX"F/Ӭ LK܆_YG:KfGF٬ wTQ % G ćF!FU*l@h 6 ϵau Vvգ5=ڡ9(ĚB `ǝ-d7k0: ȨBr!n %aM%ǫ+[.\-.`^YF!*A~|>'l:1 #;RD^y~4q(!at-Lv b;6Ͽ$Q02ě#ؒwe*|[SOF ?LB02̤/)>e5FJlV8R3#naE!QVZAҝe\z&vwUj43v^|fNT>IzlYx h0cF,:NGuB:@״ afFȀQGcmB}*ycϤG y1Md'``UBL:EQ#M}eCej{'b6 ʍ"QI>rh)&`x^&8_?t|pRfwmC&:ӍOJk^^R8r21/mt|QwurQ'S؜_Ћ i"lU;Q ˝q3/\,llaF0Ƿ~DB{hyr*NL>Y꼰ܙX]17FA?Ei'xiXW>R;LږWnR#`Y N) 0gD hhH'"C|H[Q™1``(aMR*<*2Xӕ cJARɤ2:bɞp:胻QnjjI''QgVW*WĎLW?̫z>Woe0O&*.ZmO BQBOn)*~US,TuYIUMJM{(k|8eP&* ҄R^Y =59&[(K>RuѥJM7ZB{2Z'J1pXWjRXIK- {Ax5(ă_f*5[WP#pұC;ݼ@i͂Ra)1YeN <&֢tx- AU{*[|A³)bNtߞ;oO>xҚRY.5AJX,f7J>SN,ZZc6~һ: f i|Zg4q?7 IUJM1R?yw PGM7%Vֲ;o ӸփS>01+wJr `rTq-Gix*wHiNUʶw4mBBz`yJ?cۦ-xt"f8QJ$m7h{)k#w8>\/q'ا/S!)sXquoPzϗ؞/CLc9h\LΙ6!M]+㓌j,g• Ĥ$7#+OwQUI`f}QI(T8)Il #4s!52mY?PKvZrj0r(wUe`Â=uT6..5q‹#p/Px lb98lag~ħ(jC_@TD!MXc)Gq$ur(h5'^,fRB; ,n`A鄃7 9#ΤxH(~hheňǪl?t:Puv ˆ)e@1(.X 0/@8m % kX&b]ThĮ TA"lM*a%(%Yp贅S;MC_t8Zz80wVm/AN2䞉X\g! +Ջd<ͫƤxE헱≯ǯAKQZȝ%ea ,:2U'K,@>֪yy \~s3F}yߡu24 ΐ4Dk1bh  ۱mUNlCǵ5z&UCCj8$<{qM$sIrGy޶t7[%ˡoB}^B|/)(V)x \SiW"``RƜRJͨ4%sr1\&.o36 B-g VpZ4fa2Fޠ˃)yzK`/+ssO$'$nIR8-h+n %9OZcF@O [ʨ$z)BRN,AgSQi+O >!qO7.3F9peʽ O;~bN@AUg1b i= "F Fx ( \& EauW9nXPm(rzsi̷6TOPtd|B fnYeN79*K^eFP2ꭤӻCw^6 uE))l12*2z$0KTM@M}"y$G{"& " [ HC[ Tq$)^Di\H`"{CECIQѻ)m #,‘)i#U!*Q@IQ?ޢ/?.^ #ܩOڋW{_o 5Kk}o<2}k27̲1ckJ&J9[@ 0ܸX5a:y.:L?I8\{iJ35~ٟϟ t\lt^!d&Ʉ 8HьB%h*6ZQOC˶=%`mgi ,P*sXIfBV 6l|k)qs6뢕GsncJVQڞZ 2s>K5wK| ('OfԞ3*zQhԍ#K[L!VhϧCdہ ޫr;x3̝y52dgBx-Pr%,)o`%k$+r;O`;CQbk7 JyCz7dʽ]6ST/gl"Vo7i[)Mi/{;L}I֮dRdMJd;mʛd;ȶv&IU=G_ G\x*ЧuyN͆.S'l--A rI;& Bh'sM<to1}""WA]-ƍ>ZqL2o͕wz;XImbB2@4Bkz$V!J)Um"6c+zb l%%^~"УΑ,gip Ur8wK;I0#:JYBD tÒ>B(U3ԑ]uoֽuXú_ֽ}X~3KRҝDqWEe1OZ`An:HT@<-,[4;ʜ"'98kLh.h{K"D?[QymZF'.ݎhޏFSOh;8߃wT^2s C>ϸKFK AslH鶎P52x>rx.s'89MF6.V̼{Rv$^%;'$QԻ(#fPu h*Ӥzy 4؇~:17o~:cпNo~:1wW]zOui3[3U@ \k=$en?-f&Tx<;bxn93R/ft%6g$S5. \طoURZHoBw]pY-sgkƘK"YOdTJ5޼ȟ&2v5ͦ&ݘTD[ePzɥH(R.Y.EDVJ/GT"e$O?J*gC.].GI \ (g/)sZ1N[2A<k d%)^O3Ґp񇄊G/EvhK>Vܐ 5 5ZQvvnHPd5*[S*~᩵Zw Vh bPlQ8I+/Ge|DVVb~ح,bo2g!vh&YμqeTSl~'dτNh<:ķM7_0m,5ϺZJ7S:aL66*(gA{qO>>ץ6yk[2oxk[2oxk[2ox܋ʼ]^]Uo^̵+3>@qxTSZ㔙% lL;wei~EdO?3h:')ɢ,zR0nGQ#Ӕ4*$%~V4]\ΖEsP(E==E_F&#:ؿ tug2Gv}֍(g4>ˬ Yc:[bId2jXf"ֲHXT(4'r2 |~ڶ*6lGc_.IT N[^e\) =z_ ߁e_[6BEpT8A\Ndz$"z^p);%8 "~駋\([)Ex $R;8ll|̗ԭ{%*LW9ŵXtI+H2ǻ]%.ѯby_D*If!4Vq,dP7@_ UTkX&_쯣T> K,B?q]`w,xuV67:sG*w䲔oj4^P[љWxjTlY&L˧ [qiCmx%`_-:QM'1Ƃ<% 0""4e#^܇NԋkAu)1c(m(ؙ)bF:Rz@T?PK yZ<IAR-STR912/source/.svn/UT LjKʈKux PKvZ'kakCg)FF${B~Nh6ϗ~k?+Y6 !KW`EG*mtui*om&;o0І =}[N-!R[hCg̱b (dvjKр vkD drH~ҥhgklfBE٤d5uot ݱ=S>:81贠cj'z_eZ("vm}ZZZW;5s#ܶL\h[.ZpPk}AKcZ;% j-N梅F9X"=G3{F  öY7ol&sb֓/O؃?1 5|F C9c1sHHG`N{wCY|7cC6zɒE98uq%7nWdQ4EѶ9NpjxwN~= <}n>ByB݊ˮT:o# O0|ދW,QbXACڋ19_ԍIg8_K w{u$.f/1M.Ho _ cz MhQʕ&6AJ{w$_Y?}:(sE`g,z+6/ýFEתhk$zm-4D 2|65ilY$Q2oH4JǪʘrƤTz /޹<9>>oP;u5ԵO]'kWbP>*=3>?&aP>P *=e+ѳXl7=c؋8N!ƭ._vxÜ5O&j[OιS%n==˴L[ -tj˖`s (烘TT[iïٚwLpr(u[~80|ږma@_qr4BLMAa;Wѳ ?(b;*uUJun6tK*Ix;aj+ש6[0YrXF}Fˋ $ouHԡGr& %x^%V_Tly)j%1Si9"EȰTD~4~2īX] SY]% zKH)R:,KgvzGRZSwV<jD2<2ˡZmtzOtJO%*'*mQA'fO{%o2y\[4CvAb9RQo&*=|eKMX@lf.lK6uPk| Tuzj~iogPI%h ǭs&K'B+չ@!J\A%ȻDYYdA*ls[Zj5h3d-:K\H٥ln.Oٻnn%V9V $]-M&Q&}f KpU"k/aw3fNlk_9(ޤXK_" 剆暚JJ=-cS.H[*#xśtήRWrett)VzE؅HG<Yx0K(uQ'P4׌Zj6Yr`R/;ԙw=~es>5ڄf݄}JdTDO kC%V(hJb[|6QY%V~ZDz:TvǜV!N1߼utX1q'|崒mC,%ې<+GO.¿1aIO]AQ JݝxW$|[O*^r~s x aٶc&_R+wm>JqE^?<eA>X9k70+H:@q;JHgÿƹ'ic c2I^ڦpk'G:7)iɱecb\ 4) L Qc?t8L5Yq6^GFƣubk,bI8[`Q#s,S/AYA*W)u44&f ˆY}4A{ͺp'/Q,*Ƨ) oy4E;` ēũR v"bT&1w)D N$si{;%e{ow!Z28M% KV(V"7I8қZ(M 2 LLPFcl?oÿ듎Xckפq.ӥrg0OFyY`)2w1Q%_NQ;B e4ݺկ@7+ysf8WEAF$/wq挧ŰZe?Cݵ&7U ^%ļ Ÿam zЊ9aRSodn'<A^WX.JXlu b35ixY]-}/B0go[ztYX{ v[aeQآH&sMSxY!0N+,1SUҢ_by}^Ѕ5Z~OeN{nv=_7NYhLsfD)΂S~$BP {PCjD(A&C k< iX` M;oHos:h_9V2 ,ÜwEvC2=PR' (K] kLBs+/X.pTe.ĺ;O-7?SE|K"pז,t\I*m$"raF5d^BN׃f+'H~ 5hWI>Hmpצ>$.Ά֊\/PƄ\A%,vcƇ+/NPA9Ea[P4!1¯#V 4j*몡NM0fcPWөfx m4**̦0 H3Miӏ\L fs φ6~, tB>PLo>Ru* 9c vPD5EU1TS 0N Lg&pNF0ц'N?H}K(՜]`˵FóG`-@i.ԅ0P&ٺf&ѕ0D&&l -p:z͚ gÑ 'sk rۋjSu U4FMQ)r*Y^ lIBwwgc{IR # F|EGF-+q\Xěy`v\ YvBY" ~a^~rgC;" 7u'qvRʱ Jtt쇷JD%TE[&TFhF:q/R%˷KH"XF+H!#U p}TAbFZlw zړ|FpΧS":Ih]I9me_oM<Ċ+{XG14ZrT*[BM*H!׆e5ߦzVisYE}D $&0{Wic*b7u֯B?QF5Z$&҂ewʑ~%r9kK;}TWR5t Uޜ?kQ{fcN2]"`G.xq7ouιTi*DϽ6zTٙ L7Zx.%m8ɸŌrwԽ5 # BLpʿUZu;)-ь# RFe"zLWt7YFv^| == &b˗rN ,-R9z7^zf((Y~^ e:? \?v cr{#?2y,rJ1[cfţkDȋb˴LEIÒЍAY+!,a²>.fdHrM"g~x0[A0& /A\qwj8@ңj1eOu$w5$ 3F5r-0QWtx & Mx-ZXM^δiNd6Mna؏}<^"I#cNFC/93cP2{ğF x,|bOɃ~;"/c0XWwJe.l9UDLy>BBxtP;3J.tyJ.ls@@Zz~> -~@4*5@JT]nȨPrpԏh''#EW ِB)7Ft*j%zw Z)e47{tߣ7TQR^Xz8Ŗ)T&lXm~V|Y]&聦~B CvYW zɡ.JG^߶nwoM}㡣SSJB=~06;qE\KA,|h56x|O)ࡃX9R58bq1iKJBa#,(6q^V2UHDssZNùFܘ })Ui@犝Ga? i8.RLt]}l{:?N2 X{h{ɉ;mCw\0Qf3}AN-!d$NWEw*{,voVDdww/#w 3Ěv yD:%&^8jYO Gya۪]l40SUhSTxBm0}m!8 Zth!uGA +n2Xj!FףZf<"|mD#X6Bw;958J#S ;t vk PTaB(kQ2RT[H$ދ27e= rg^#ѶyɎYȈ4EUR)'0lc@@Vz{ 0w'- ۠[ 5T[ǰ.ül bBf/`ndiUjC]иʔ "Bto[/ 3oukx4*}hٵ\vFQb)TQ~ԭˡ¿t}yy~,lgk+J,Ado|!S{ ٥UI&ԭ]gw2/~rMMJ#W <ًIx\,]ZCac8!Ol[Kn,ƂK_KX>OEIxrq9<=9DN#wl`.K>Gn j%W{G9['6wy< Ë/K}s89)`w=oXsޜ|NX=^IwF|?f;Xcp_$8>ȼwM ϙMHV&1EDVm^{-*GBι߼xfn^a/KqzM"(k/qȊExa!f#WiWX!KtV( Q^..'o ț3HbZ LDK4LlЭI;MmDn=H~]|O&qrImŽDa5[.۶Nڊ/#L4E 8/^v}A10迎NiN:,4b ]d -aDOf+^#ט40VOf>Fa>R(XlMmd ahߴҔG1KzFBj nCvɾC h 'C" RPAcW%g]xZSL?Wj I՜mcH6LcxYo*sMh~OF#+B=P-Z5|wϸ0JU&tBGp,( w5tn@ihpiUki>cоQVD1Vj]Uc3Ki?v#T Bpj`$lDR2.0~^ nd5U26YQ˺(8VIȕ2*5UB4TPZi}lҺN?Ronn.^~1VV*V4DvuWrkd%c >֝"HVAOevY>p<(`H>lc0C`66QyPKvZ8/LZ_0lמp>}zkк!:$tn^MB^מ r:S+tu]+ O?A =COoOdxohjv0%es7(83;u!xmSl"v|pNz~&JH*[F )z`?+S$6/TUC`=4^5]y L mDQdc@zc}@ G89-<0Pa wUx1e-҂phP*1МTȬ%w蓧O>9ybХ^n}!_~ٞG|ׇo"N,B۟[SmkF\b( .4GcVui6,s 7gao-#Q0$`2?ݺkڭ,>QIy*=Qr1RPu5#EֺT/I^^KߞkA[yn pS{BnR$&uܲZ2no[ynY-o"@(}UdS8] c7sjXc}rqhƹ<8nRȸֻh%i[[8 >p,/13MK[tk1߾" [`VnH;$pW6MH7U$}udL|"vhaO@3(t)qi7*LӁW`/3K?]2YO8#|zggؠu|>>FoP.'݈;FM&تx8>EB[J̩s: |?5K%uwG( T~C0 * m/'Sx\HҞlң_ S!5ѝ86IvcMF(EЕ9xRw_,FfJ@ jKכ~ʟٕ]S+jѥڬyn#$HH/;i7ГX&,k"P3zi=}o\}j'&ĚN=,x6Ҟ:sǞ(ʧ#qJa; YHn%]Z?L,d(2wV>+9߰S #fɶRa[m(Më4,V2H{X̲=zStGR(rs^Sge-,yvLu."TmjGx>{= !nc==Vťʛ߮8Ʈ>fy<..oyVU9:IRmȫ{R4JR-lef+όQ,=S[u)Jܨե&F-iXRѪQ=+Sd;Bf&OU윞 g4vG;$\طVRNkJo/;")y{bR!ulJgZ>S5tn.Pܠ5=ŵ-oƛ &˶f9x@t&ڕ?=:ltJQ-.)NHG ay4|p&ށT膧0PwUGU`02D{vxC:G$,ho?zR9^Bk&7ͯsH9m2uX.>ާQA"jIq~nq#hF݇x}t?8 !>S)cmޏ̶%Ğ0PsȲu@f]Sl6 _lʢ!1qM,hJѰ ҏiXaA? 2hQ V # ~WkcZcȍ\ :fx$2us4#j9/x@i}LA>9YdmVT틨DC^($$"ZWFh@ʵ='ҷ3GYr7' ѷ=^.:QK5<*/w ;D+(jM.R>SGjDjQ\@U)alڷFJaGj".鉅*:R%AHK|QH\n4ŸOmP-+KV$N~h cԍ *;Ґċ33zB|Mb*sZՌ{/0.cZ0 {ACYD{g|ҧ}5_-C苤rDI^L쐈`})'F\H4nIlGHVJ8 kd%AOg=g; t*gqNL9ʔR(i8Y.[1Ju3jC_j1>O÷ԏ49Hgx)q ADN屘` q΄x.LLrFƪoE? !?H-owJvU^Ye~s1<2? !|Wgyb R9Mn"@f2LYyŅӇ#QO#wh4٭zԆ[v͞M)W]=WePKvZ<6IAR-STR912/source/.svn/text-base/91x_ahbapb.c.svn-baseUT LjKLjKux YoF)N:At +&X梨",auȣmwf&&c絛^łZiׅf8nqqr?*ݝ=]3(V~i]xKozy(jC_@N{)BpwMĚ2$؈?5ZB6|aqB``) O`LM膏X^@:atO $8b,99@^_'i߷3qxHv`lU[:nW;cu3k]0X6 M1U,ww@qbhy qn;wf] 1aW\2O[ ص:H{}p-p/:F_?!j[zOW]2 z`Z.{ 大 H<Ͱ=aBQMM+#-@iB]@Im!:'] A\gN+|ZCCGpr>qЦtm/U S [G'7m'_>;; +􃌲jً0roJc&6 U~Fl$hSǷ"}`H( S_+4:JR_3+K%)bZzsXb$3JIKNO9X䅗]HL!O+^Ž9tw0eH8a@̮a4"SxY 0WAD{ļfi2p܁pɠ [$%sDx`e6Qhfi/0n">Zp-bjhl7̾>Qm8p⮳6\~xx $S1g`z1I 2_"6L#N~~̐ UH'^uJC52WY,gXZ~O>U~)XBpުePnqmewsBC~u=8\􈔦h"TqTCfJwk[Q\dfQA`>^ sCBvMb4$j҉[&3 \j'a|=Vj9cN01q wͼ?fݹD/VEZzg:|SK'ղFw> 5W(\BUrU5Y*RפSҶEVTefx x_m@D*=2a.yx.k>hS4{ɕdq/H{s#Z9]~,[i^r[N(}q׳ŎTD1?__T75NPKvZ`'6t;=>#7 >9s zNzq.K?Ճu{yl\}'BXfF` MImYPݡBRŒl]"834Y V m,/Ҹ/[|(;o إeKʺI٫j畸n`7n#}: M8}u0 >j -Pm}ct IJCݴܰOLmL UԏU Ͷp%}ݤp1X1ԷAad`o+64st6#C:Qm8Da`TGo>H,PW:A⊤-D6`6 ta 6SyG`Mc;K0t}?F #`!٪1C ppFG}3 "g1u)x w"x"R!)?ĚğgvWtP0s\șIqs&,q"bZ+w*Uz.:È@Na_X㉩Uu8^98jO <6T)"ؒlG[}oП"_̼+e޴Uࢭ.DLȲ3LF^7xѷ-gpEo( 77M^;H-}AvfD>)=)hk56pK"2$01PF{tpXx y/JYY&#yujQU+q+DY~U#h]ED*XT ƒfϟ}'&)uin\\[>m2VKZ $\Z0DO2qUiL?QA<0cB ZBZ~2?]z̷l \"כy؛',K:hc59c,w(v|dd 3>K8Ǯ6icS3LԃTsh n#vAw@A A|Лz:<9FЀzp[`H:U 6:TQ Zm j0jh4A)|Ta`Tj L40ftuZ`U6gm Ӯ{87&J6_l#5"6(Jl\TmP.`לO6Nj|"ƜBt&Q4JA:аa6YB{Y8;POjKq#}rӛFV~e˛wҐy3΋LO?u?'Pgkwi'K׭z~( #@zDDFgS۴H$$@փ<9Eʹs!NBj?] =oMk<$;uUʓMN?Bk}r6 8z7 8)_%O:h=Oæ)K"QXimeڼ]u+QZukT-UEdX:ٖ9XˀxE5, FDvͽ4L!d_+d"R-Wq, GJ'mhFdv6ɭ?W[:k}Z9Lc`p8 V)Wv8 ȕJPre+;IƎ֬M~ߴT.#JB$ :pI61K+\O#-75 ܦ%v><龏um>ϵlL33oG,fI~$e14l s@f IhAZJJ"oHhV튑tWq.5亮ccb_1WS*0Hb$l)7I%dZiPiQiQޥç'HwU]qANLC̆gÀr)J2BH2 $!HFCIFCIFXDIF(arqs{o ^/$Y;9Gޠ|6M>&5675x銜,1ÀBfK&KF$@тd( 2:7@JnJ5Gy2mHb.! ʺ#Ns E/7c-,(^P)qX@ה5ettG2rcq9݉]R+NѕOIO?%?%("%<8/7H:|h7C S91%2L8 *b+ny%~9tQ$VrJ4܍ĸre]ܿK+G6%20`3r@C}'4̛~ig77x(;hx4a=0-%Pbcw{>/(-6Nf.@#f)5B"DZHy鹷 ,!'i^E~Ox*0~`;<])h4c#16pK-)0>crc͊]O5`4_E4H ϡF0)^ /e_EK/M /ed*0)^%-1xHKٲ%ˑ*0)^%-xDK*ˉ*0)^Ix)[yy']qbd Z8L/ӝ l:7bH;ެV!٥L$]6?3Ѱ,ۡxd^0 M(CK=|JϢXaTźe2y2Š m^`_4铵*G|l&9kpq3!vj)k+11ۊ#CK>G˝2& m\Y ?hi}ӜRMZ8k(kƿ~ot%+)U?NՂ1Eހ[ cW+DkoSC|"9<̔U|}B`~,IRGC)re3^KE|cHzdx͂D˸4su瞳Ų 8OHhD Jϻ;]Jxh9ݚw,]b6 ]NW; y="9_kJ*!D}|0YP#w~E9hB"f=n)>[SrODGVV$)AOIîgx[$ 1#^Nkk k=[~0 Q18>_vxls_HHg^P/3@9gEnQ_;YqօZAGo{>[wf YY> h8 ly ǠП>C->Pt(9U-bgI=}D4?O[nk,óWKSʝ& V]iOŒ PKvZ<\ R3IAR-STR912/source/.svn/text-base/91x_adc.c.svn-baseUT LjKLjKux \mH)oOZyd/3v֓DeDd`$ `;dOaWzj/r.TϐFP2ꭤӻCw^6 uE))l12*2z$0KTM@M}"y$G{"& " [ HC[ Tq$)^Di\H`"{CECIQѻ)m #,‘)i#U!*Q@IQ?ޢ/?.^ #ܩOڋW{_o 5Kk}o<2}k27̲1ckJ&J9[@ 0ܸX5a:y.:L?I8\{iJ35~ٟϟ t\lt^!d&Ʉ 8HьB%h*6ZQOC˶=%`mgi ,P*sXIfBV 6l|k)qs6뢕GsncJVQڞZ 2s>K5wK| ('OfԞ3*zQhԍ#K[L!VhϧCdہ ޫr;x3̝y52dgBx-Pr%,)o`%k$+r;O`;CQbk7 JyCz7dʽ]6ST/gl"Vo7i[)Mi/{;L}I֮dRdMJd;mʛd;ȶv&IU=G_ G\x*ЧuyN͆.S'l--A rI;& Bh'sM<to1}""WA]-ƍ>ZqL2o͕wz;XImbB2@4Bkz$V!J)Um"6c+zb l%%^~"УΑ,gip Ur8wK;I0#:JYBD tÒ>B(U3ԑ]uoֽuXú_ֽ}X~3KRҝDqWEe1OZ`An:HT@<-,[4;ʜ"'98kLh.h{K"D?[QymZF'.ݎhޏFSOh;8߃wT^2s C>ϸKFK AslH鶎P52x>rx.s'89MF6.V̼{Rv$^%;'$QԻ(#fPu h*Ӥzy 4؇~:17o~:cпNo~:1wW]zOui3[3U@ \k=$en?-f&Tx<;bxn93R/ft%6g$S5. \طoURZHoBw]pY-sgkƘK"YOdTJ5޼ȟ&2v5ͦ&ݘTD[ePzɥH(R.Y.EDVJ/GT"e$O?J*gC.].GI \ (g/)sZ1N[2A<k d%)^O3Ґp񇄊G/EvhK>Vܐ 5 5ZQvvnHPd5*[S*~᩵Zw Vh bPlQ8I+/Ge|DVVb~ح,bo2g!vh&YμqeTSl~'dτNh<:ķM7_0m,5ϺZJ7S:aL66*(gA{qO>>ץ6yk[2oxk[2oxk[2ox܋ʼ]^]Uo^̵+3>@qxTSZ㔙% lL;wei~EdO?3h:')ɢ,zR0nGQ#Ӕ4*$%~V4]\ΖEsP(E==E_F&#:ؿ tug2Gv}֍(g4>ˬ Yc:[bId2jXf"ֲHXT(4'r2 |~ڶ*6lGc_.IT N[^e\) =z_ ߁e_[6BEpT8A\Ndz$"z^p);%8 "~駋\([)Ex $R;8ll|̗ԭ{%*LW9ŵXtI+H2ǻ]%.ѯby_D*If!4Vq,dP7@_ UTkX&_쯣T> K,B?q]`w,xuV67:sG*w䲔oj4^P[љWxjTlY&L˧ [qiCmx%`_-:QM'1Ƃ<% 0""4e#^܇NԋkAu)1c(m(ؙ)bF:Rz@T?PKvZ<bAf4IAR-STR912/source/.svn/text-base/91x_uart.c.svn-baseUT LjKLjKux ]{o8{ ;pMǖIJ{a(6 kK^Ico>}!)zЖ4Iw?R[83 Cj:鎏>EZkbZCg{tA'$ E=%}gA^R]dm 6ù&ntV3CsE%6!P?k:ƍWͷ6H)Y1ݚ;!k+;w4 bA9%"7 /lڝ in:AWmRZ(ś˼MqO%:ȑ"o}twn z3jd<|&}h4zOia"':b7;>C;*tH;Z&4"c+7$֘tA[ջXh]I`@FckP@4}&=݀;ߏAr3 ΰs\[/p Dx" XqǠXQoDM ;=Nx+ a;H@Jٵ0iM޾E>~.NkSnA̿8dͮ2|DxS: ȀhKo$@d~F{2 TustAOwj\wh$m6hn"9eh8Q! #P %}P؊ߥCPQo`b%^K ."T bڷ'ooxd6RXYy3`<:Y8 c]H:lJx[gGW9Xw o9)>Bs!XD0 NԔ`["+`K㲯zNi.n#.qI1a>m?/375%֞`u 5t u>!%J+*P ĉ[1m Z9s, 9`' el`` Zmc , @,uq,̠#Ze,j67 u s1J1= 7#T~r&/iv:aj  WM$+ C oG'1׋4\)[@Z M.K2]rJIcI`BĀ-ݒN CCMFKAõosnke;G |N*zbgVXF2BIhNNXm˃ {E@s6K,olR;aQ;ӷ9{2q"NCpqzIA9n7C Sx&>SŒS1y ɱbhvrWLVk!@d;.9gkW^wKa RTT.e'Yus~R$Wƒz4TXh1=K~V>ЧHތ8W?S'cE)|b%er.UóR1CoE3c`CNxI_r+L&iwy 5#HN1M(SXp Ɇm)-+?+ܷSӴ0e54v{^ڄ{ahA6VQ'o8:H_ؕFsKÑW?ݑdĮZNvI:SSz>Z}l]lH;,2E" 4;}N >y:+yըsmz#k;lj7_7g&^Td̽Be, ToՒ&y9ي`HH">bA#H:xf5oQ8nB$$][StF%OAOECB)ɋzk VY7Ş> *AqOK.r!w`Ԟs.O ^8ƥuzY}g2/̙/=\$5˕ ײ2*̒\yOnJ,I>}{LmSC x:%hdh{-қQ&(n@c@)%x IyWk$B="w"ioZK*k6D/lM\z̛2q +v3Qypƫxm `ygFj5LJDKQ .! BqTAQJ_mq6s2gyosOo2X׫PQ"OpߎIʈC$yУb$y܄[:.)y h$V49#&a?K2ì@0}T@a߯b uΩ,)6 ^@X m7X:}7 {&"UT^5e ˪&[hn! ~10Łp|5a^2&`$BshvU"U ް!ru!is?".̞(`uP]#YMG/)jz>t/ҟ6KtM5 c{CvP? K,,̷Cr'=o'r|Ǝ4Kt)[tB*.*0/m1 ,F",r9%#wbŋS#q$F[h+in9ViuMj/;>Wq'"SBzgEe0n(Ꮍ\thk1}+dOTRi:SQʊ]'ٞ@쀆x us:9BE1-n^x2<]{0qWod ]'BOّ2&U4UZV55cEjR9іJJX__/I`REv8JJ0,UjB+>[ ~-M5Qa_-Z.U\lkQ<4,~_qSy2_ERq\HGWJ#=asQA'cΞw'&u ٱc5i)|?)[yoJKx5&\*0 /B_i9\ ]."LPu5]eܨ`H N_kQ荇J QIC%6Tw 祵5 c lK{ZE.h$5siKG{w܉5ut$n<:,[`)Nٔ^HQK|0V+([m}u^2+8H2Ȯ[&|<߰__Le}.\Lu&r,JQѕ΃̡,^hϔEl 6]v&rlĹ o9o`0%@葄[ k\{|Y0p%mxB abAvttQ1^, 7\6˨a…7sݳe3]n Y$0ga+.W[+WRNi'M]X<@-{VW@j*33#DfUDcuXW/ů^____4F)~5Kk,,,,ͯU_,V!V1V!?IZԶI)'e2?)f~R̞wZi!b~NK;+,B~g_rG 靕w^yYz̊(,B@Z4ՊPk2~Plbl6ͬC疏:v||#X`fV/-OWq0l2kՏK!>X56L<7lWX 3-|qe3WR|l?qWcoRny7Lm 7nF+8.o'Jz$!6gS\ K=3 \nw Z)n`NGY؟w"GHL/߿V& tht7֓ns"C9@*ux><2aeÇO,Wp$@xh .[%A9G.mk nқ 7iD̉K1lƊϿ@UYC o&z&Edcx)Ɩ[=7~sK-7৽S.F S;S*=t'+oj報wK86[*7@疒ͱ3uO ")0ZF᜹١2tq9smFK#DG#]II,C2OT }JT‹ށTK˂/QJaӃyFpy:銧a+׫%X=&zRY*U֩,js/-U@I>$-x]o蓊f+R%D}3f:gP[ {>3kob4miTG=qxY*YΪ[.=Ė 12Ds2mX@lO\%޿o|V2N?uӍ Y/HS#6m d1C:صvbzS+$+w4x7!jS4a|>F})a& Qa⫟6deh94vj;T 3v|`4d#FE^wf7(bb"J51 OڄO.$M}g*b. 㕊[WW1w9< UI=!Af,-V(ƇG `퉯wu;B Ѻ\B\ƴŸΧs:"V :W$Lg8&:: 䞃NH)6:{2B,'UQ$kNdL_NĞޖ'vHXXtZƭ7V(EW0jnTsޣp9F\:\E!n&T>{,VV^VQVYVUViYJA6yue|y/;?ì2zr/KG6RvM'[k>p6-o?6cSEɚd[)%n0o7,VIIiiYYyyER>zUW2kq)su}=cQ>|J;қԭ6c%JMFk:ka͊9)TIQs[EYuz*J Q{F@*J%tX!+:lA_8˭/$q㙨>wzZ_޻PKvZxv5[0qxg[f_3+mG lcaDRb`BO5zXh=yw0؆S εAFt13 RB,cAR1G @;i׀r ziXn(+Rm7FKmJpai058Y GGn,.[f/#O25j$Q32o{/\0^?A?{~Ycs魻boI`HdJf+ ȃ* .FfyΕ3pIhA ؤSPKuj^̿t]+0\©~aHi k(l5;0t%V}am]v! ^xD% 9 f86.ҡT alEBVD!L[蚭IQ؞^`$A2*ɤ'դ>Rغ^A8$J !.g\Ɠ~k/O?<|aTSnb^RQt ~NO,;5#rMKZ4@"asV>,=tNHBS"$~JԺ t @ h}F1+B+W ׁQ`dy bѦn'3,w/b0[[}8ByNB˖ben:䄔V;90+186Šd]߰2ocBU:[n(^$޷FFm\UQa4k/<2 ɒY $"c/|$ZԇIuԼ~Xܔשc܁eT@rꥣ p q[c]"9[(gSbȭu*Ze|x/t B)D%bU~nrHCl~=I H4[qxLS5z@ʏ?_{C>D >{N)) wASZ2+B kuiXU_FBo/Lw91W<NNL6;{yMI`9\17"tzI&&+&V vW^v_)R=8ȃ } sǟY,{NAiGAh'M h|AŵZTA~[$Wͣ'L%r1tkd7͛ۀE^B {L-d}[qL$׽ҕk]Ћ0NX)꾱K=ȡ='iX q.\.kb9G̩sT8ˣ8Yv%mR1]+CΩһJu}Y٭ONOiF׶*6٧m߯jt4Hyрz6'ݝ:de%ax&F}-]6Ae. <]2AM(}FAm 4  [b0:U-t"n+"S=M!bm7p+VDٮɭ0 F΁٨$}$9?2弳nf`155b0 cqfR0TA՝ex .+ >|_,,cY$IW'N*PH!\ݎbrd4c\&V"*|Urk -7g8"]N a w~5c Cއ6{'xz/8/toxIrݺ/*D~IɨL_E(UލZ*['[a~d[߷ȉ1ƚ;P_tEoC҆9=%4diPJםǽ}Bϰ֓aQ GJ/jsMPW2` bȾޮ$ˇոϲD0 Nk*’STD\J.4k\kΌn ՝uP7 jhEЍ&t|PKvZyP`h*IgA"v:-ŝ>ry;6pv$gm-lBD>`M:?Շh%Q/Q/r?vIާ:Fe JU]3dmU#yse029. :?fZh>qMôO=߱鏈SwxicwKM 5?EAӥT=Rf3M]1tlL]6u60`0bcƦ63Nُ`.VZ#FlcM1rSYڐAqkzXdJf/!Nps2 H $|| +6YJf7u :k>)0oײ0/qHDgPOe Kgfu 8Z lLwc"<\/%q֛ XOz2/})=&@ry3"Mʑ5{iQZT=UkSQZ->mCPۧUժרZmijΡfyӚ{(mhh:ޡfffkB,22 |~78E`4o@ί_g <*TԢ="ryH>OA"fiͺd`N*!i/k@* |x #,QE ݕu;彩74Hk* T⁃K\EHt 9J.d S*dKW/L -])~xxmSoM&8X&aDԧM1?? KK 88!V/'7~o3bh5'`HRr+Jc$juIΒk/d &;~c?Nk? &'DKZ)ʄcئc\G6c{L,69:zƨkh! 0V㎇ {  m6Z6N6#cC⎉c|0k =fO@89Zյxdu]rhcs#8 1Dz #.k1} [ƀqd:\vDpmAx"B@}✂R>:&=~ʴ8ȕyh kd@ %Y0Ìɼ&ޢ=}t &%ԋ~?} oɒ}DFN{@ Fʴqr sCLP,C4n =?37}SA|B!]țe_]!tb94qjNi,4nz}AȘN#dGEIr'9nz B^tBF Q'DU#thQ{6>قXBb-ݬ-$S K_4|= /??_y¬u &Ȁ՗fMᔊ7"g^(38".2z%8ޔF`Y<9͂_z|_)t e.)Gbpwx`jgg#Lo7YN66YfgeyL+5wHXP-כLhxA'̧S1/2DȨ !q-'`!G "a"EB<>.L 0`F3|iʾ'  𼨵݂eX6_k YC9eLO֏ Ea>zg2ɝS¡L8VmrT L Aoj7{{9Ā;^ppذ[d$*e3D .h|l H͢ZNv=ir-6,a9#M1e*%`J^Irz%`?|r A k%`얀IU`, EJ>@ĵ\Yμ˼x]/+Q0d;#$ {FȲ,h=U0ÝӇ7s:L/!ߠcE>U2 T,ԠTĨƠ#h+cxF"GID,Hr 5wuܻpڂY89dd9GcAXś~mF1sUE2a;Cv@^0Ma2>GEKK9j[Ue6N]d[uNLm"@=,Ayܮ6*EB,'O6di_'Mwd^>櫱\_ rÎr+)ٛOJs=V D-j{WJ=NWEL/#/f"f󯸗%pڟ9'&B~z;<*]U 5csZ eiy,?ʮp&gLIxy ?PWu؅_D9$ԓm}Wz2;*BaXN4>O߅6Pp!X K]5ao?9[Ov8cd?:CPNȌzuR_΁VP"{?FnD/"[x ;UQekywr//󖴧JNQ=Ŧ[pBL+(-4bv-e+ u6|V27U` @Pu{j]QjP-US_&\j^Pq >5xQby☺;Ƨ(gB$]4xoi{gn qVpL"@FK K`Pv0?BZx)e 2V4?\ ^BB1CHBCBkv+{ډo>E pN P-V27LvMU*-Ǎ.VL0ߢԛ :ۧ1|ޑ|&{~`ưY\"d \R%DQ壬"Q6rY'0ln4"Mp%&+Ta?%/ϢRk[No^C55HȅX@3Erȳy8QuXn [!>uUoĕ.Aٱ)o`#k Ue J_BiQ=#EDk15WE%ƔWZV{-s=v2% ܲ1լd6lhcW 𓛦ꉭOh#LV)XfgDoXS۬1F\`y)؈;uN]j>}Q=lF#v%>uU]#&Ǖ[[ uo ]f#" s.SRJ ѵ€lK$[t ),f))`Q[ߗ6G=ܾ50BPKvZ<;\"3IAR-STR912/source/.svn/text-base/91x_wdg.c.svn-baseUT LjKLjKux ZmsF*NjOrڲ.ٵ€l*k?0 P`Xg{Plby_ぁ>}v..=8כ MX&12蚺wc19:rLR?0 I W$l!f ,g! ytÑnXьÑ k R{K,[G (dpk\@,ă2Xq@3Cz懌HOqrBrc}K5mػn/-,3.-Cufh9˰ Я]o65n-KX6Nj51/4GECӍksQfa:RMݘYSP*Dz⽥LtgfNLsf^j 3M4'L,|bJH[²lkWni0vaj튤'jَlJ xktZC6Ԓ5a&xfРrm/,4pAN;aidӓϟG{{GhWD9Ի'?7ے5n͂\EW)H!>YO1IR>3fB=c<,Mq߃\zev17uѯKpRKΐ(,O5*0W8rEY-`NDDQ)]qyZl食r.zJGvF>E?fL r3RWnrъ{|Gj~~*#m0+c=_uPhR?Bϖ> #zj;2R:NbF\G6y|LxXπKpvu~%]в9JӦhxpt<]0(dP {_ _iޤ1eNbTɉ9e+CWF_2L!JB9ݏ}ʏsXzj %y0$B~f tHW3?*6nc72iژĉ?܍"%$F%[\VASEƐY)S(ɛǍzUҚCx$>aSud"IW3~**K|1JFtȐrWw =n&E Y(L2;>aQ:Q O(Q[[#(S/®»ⲻnSpG/~\N=+m "m  IPwv [ 6ouM_fƪJy>|mdxbC8::q$%Ñ%e pP:׏+@cv\jDH9JȎLD g+&H!>r!W;NZA&BMI b~?Zmɺ^N*'XlɖQܔxJ]덁7W՜jns 4Z-ڝOUյ{KV=)IVkM-cZUmڵ*ޏz|DQU[EsbZ}wE﹣SuWdd{[#ќG~@GifSwdG˱/rǎprv6ls[ԷjwFЭs7$l_ܱ{:%ѹC Iti̽ D #?aEb n7;:7[:ȑ"koyn z9hkd8}$Mom>8 c5DpuмߴAӠOCeB%24:Aw}b |Kk[C` Tm ֶ@o:0 C"$%o/o4Hm^  O? Gs_PKD_gؙ\ _\ϹָR/lP#x-JOqU:;'}4ZDSxtjݾFloLLGh=Äb$3j݋܉ 0~` r"Cc<ꛞp.4GD'pI+$rjS.ќH(~ZWur.L`O6_U4AMAɢiuN2?V*I +3$Ɗ4ȁuѻ/>kr=¼BS4ߣ8F]V=x(מ*$́JN`O%Gw 4fJNĤ4*Ҡ& 'qn!_˼~GFqJ7r 4'ͣڦrr-6a  ⰀwtE.n&f10d#bb-B#fz٣82!#a[eFBWR!TyW}ІmK6|C_ҹ8 #d:Q9XUCnQ_s + iDɓ"f4$=:OQ\8 ntN( ֓%REJ H,g%JN0㕄&W в>_LS9n D/I?2'B s׭c,@g!p^!-yTĆ(7݋]͖ ,..|Ӳ `@)@>Sg2pqPTbXqj9MbMd[|L #v#{ ZFof~6"CU:ޑG2Is8uU9p387lVBbۨer1Ȫ7ԉ.ǃ(AϷ$2KbdOI#:%=%LWotB{~1#qtAC\UkWMM̺<A 5v{L!޶:d"O!O M f*E4ݺVq̝Zm}ZyFLM @/6 3t' ti c׶df3<*5\su'pνqCiHΨEBy/gϿ>m EoIX%JWf蘙JBRi.;:BXi 6UGjk8IUkDh9h@Rqnhu(Gk@S!QQd@`$c<g9hȡD)ض ۑӜNΉ-lj %GF̼%I=}͘=˶-iߟ~J OȊ3uq%lk+|YGsNgӪeghБ.i ~[j9Ldp-7FZBz v,"ㄝڶsؗ.+k~tvP,TrXi!iK۲*CD1&ґǧbNF%6,$Ն ^QP% rcRe"ARp2bQO 2 dBIZSۧw>|/6/9Θdf)3xT]:.ubXO9q0#H$rM{9׮ZVs?78?p,s1; 2}|3 TPq S3=c졫ui"(e\zl<<;LG9bǣUvâ>X_^$>eZԪ5rr1z(j@?2XzEH j6PCTxk}KlԿNw#<V5 ș=V:kyC=U u׸R![0*FAZ3Λ%|L}\Cq#Q(!f`i`fgҞ$Bo4rmٲQg}4pS=<`ܖU+B iFV J#ʓ ,J^[{3U2.u+j. ԉXDudAF5-^UH[q7LvoTE—]>6DsCңR̷ñ5J7D?q?۠.dCK ˪Y~RY~?p6OKd|վ0=dlV3>Ɲ͖I^2ĉ^ohv~OpJSU;1R)9xT)ESWȋyLjZWg%]PKvZ<ux2IAR-STR912/source/.svn/text-base/91x_mc.c.svn-baseUT LjKLjKux ko8dmlwsY,Ft,#loÇDJdǩEnl3P}CdeAg/v, 0Y@_F=䩣>A&^!:MXW̍GvosӍ1AF1hйo(au4akG[S$ vgEh7rW+/1E"uCkEq~gNLwtC6{-ghҶ6lj6zG԰6j8?V#w͡ &&E6CC1!7GcN?lC:i"D5_Ss"vjþ1 gYvA.L6;MԱl>5$\V}!2{jtPm\6「6^@`tCZ~h뷐="BKd506Q4TZLXT^a&ahh!Y! )$ߢ߼|B?[m`F{ wنJ'5>4F^Le0޸ă' OnW}d=kLMÞ8YV曇823FWk/ASj#2BY-Ȇj5[XG}[5 Z" td\c .?ELV m*z8Z%f282xFY9'6mCF㧼d Zn*βlPRGf"2ͥ*%O[SkfP<:v/ zhsf?Kl Z3vJ/ALLk^U͚`ΚcUnfZ;%ZeD7MCkj&i[Za7?tXiahFPQ#XR.B:2'r™-o7'+AթÖ:#MMB2kLڗ8tW(dAv(`ԸULa6H`XnI8ބ~~"O7O%s _O^ BDת0oqlc4m .m8NƏ,Ux*I~+t,pFXbѝ͂pxP3oy٬ݐ I9::Y R::|tL&#gCv-YǮ3vȗw Y:Ax>Oy_?.æfJU`8m<#%Q[7 %fX}ˢ'x"$iB @t0.C׏DoҘA390>l_([ *rG M/JXE(G$?_Ҙ7?_*J(t]ӋQ* RiǙiX"F/Ӭ LK܆_YG:KfGF٬ wTQ % G ćF!FU*l@h 6 ϵau Vvգ5=ڡ9(ĚB `ǝ-d7k0: ȨBr!n %aM%ǫ+[.\-.`^YF!*A~|>'l:1 #;RD^y~4q(!at-Lv b;6Ͽ$Q02ě#ؒwe*|[SOF ?LB02̤/)>e5FJlV8R3#naE!QVZAҝe\z&vwUj43v^|fNT>IzlYx h0cF,:NGuB:@״ afFȀQGcmB}*ycϤG y1Md'``UBL:EQ#M}eCej{'b6 ʍ"QI>rh)&`x^&8_?t|pRfwmC&:ӍOJk^^R8r21/mt|QwurQ'S؜_Ћ i"lU;Q ˝q3/\,llaF0Ƿ~DB{hyr*NL>Y꼰ܙX]17FA?Ei'xiXW>R;LږWnR#`Y N) 0gD hhH'"C|H[Q™1``(aMR*<*2Xӕ cJARɤ2:bɞp:胻QnjjI''QgVW*WĎLW?̫z>Woe0O&*.ZmO BQBOn)*~US,TuYIUMJM{(k|8eP&* ҄R^Y =59&[(K>RuѥJM7ZB{2Z'J1pXWjRXIK- {Ax5(ă_f*5[WP#pұC;ݼ@i͂Ra)1YeN <&֢tx- AU{*[|A³)bNtߞ;oO>xҚRY.5AJX,f7J>SN,ZZc6~һ: f i|Zg4q?7 IUJM1R?yw PGM7%Vֲ;o ӸփS>01+wJr `rTq-Gix*wHiNUʶw4mBBz`yJ?cۦ-xt"f8QJ$m7h{)k#w8>\/q'ا/S!)sXquoPzϗ؞/CLc9h\LΙ6!M]+㓌j,g• Ĥ$7#+OwQUI`f}QI(T8)Il #4s!52mY?PKvZȳKr X-C~]䚭N:5itڨcN;Q}Bm- 4"s_/VڭnܠF@k6Cv,L8s]8Չ3^`>lڇ$tj-\;絬9vp'_>8>?{pYx`) N/Mt4:$Att#<$wZ;ӡ?FCX4Qh+ F:*spǟ1zzwTSzu:^id L+f@𽽜5!5w &z;E@N.+żzh,bs)(TBt;T&D;T5jm D8AH;NsڎQo: Y4 (Fn'8W7\4wFo "" c*KD %SX !K@qkH8)RS[{hccL"Q8QՊI#} diT j#|h>X*< P3YY%R;~ iLEDJVS|#dY&v6ye.Qn}Woq^ؑi5.c5]} k)2fad#s9OF `d.Q<(2 (2KQd"s(WC짋Er(Ȟ""Ej("io En;&k YK$'8tK4?Vb7qe7Q`jh˗sVi2tqr)jZܻ),*;n~0Dӎ4xy[&j0ul.dqNp|067c}Y >" n %[qD g;FP,s=D}I0ɇBvpB{[ |5^V8tePnu5o|Yq sZ="= J`ze̳ x9H'y~O>)TxtJx#`GRrk"T\(~J`棯|]Źքb Zeh(xXsS%Œ<п%$]C6A`c%^d%[ tŧK>6=}M6.4iũlSݔըS"-N( Ц6O^5XNh=*6QG-}wkoXLcѕOSK|"fywn#C-n^;ß6v kWUy͢vO݂1W Y~n|TQVe2P@x菃}72͕B4鵧7v2 98d1t63] b,XW ]fшLK%<柈RA*6Ld~9x5<$EB2$nxWnkSfR9]6ӘʡX{";*Itm!ջvjd[:SPw6;nH:Zˮwatݖ.e 8Zyz/DwNZХp !/ٰͱ-AthY杼ZezY;uyl]t%p t;FL;<&1I =0:AqprPX:؆ 3 v *E66-u\yqގ;zdpנ{'76A" [8KfT]pba}GԥdȢ^SZ:ò(pz*`r]t;Qkej^,! jإz*_LWa6Yf91$ő| Wō\$CFH\S, OtZ^RwڒעfU|Ə/6Y)-o=Xe}NYޜCU UAs9 Xh 9W(p;{3$2j|{An{If\2p)wRp6d /Oǯ#6w|qfCA\tnm)%=fb`ٝeK/}΢(cPeL;LC҉*?]o!tf3=wpiP\jBB-_ Kް`|WHph_ H*?2У{L{㽺GCZ4iLH՞?t#L H-.A&ܺkrhkEkoaFgygux8gp"AbDcfg-X(z a? ,)œ70<7N!6mm1mo>vYm1v?p]!=턓%ߣOqфcDq8Qo1~ܝ_ɽ $qfO3Xx@柆_yCڣc_吕C[.#ũVZJrX,v'zpS&|Tjp;%N~<ǧzYxVn ΊF>}0@ݜ;t|׬hs=|%~t_ lcnu[#!eH@ު*)2glð SՂpUH lMUZޑ\O.^k翧ot׹lXHlnٯoS%?@f3dewQ-U׆̚PKvZrj0r(wUe`Â=uT6..5q‹#p/Px lb98lag~ħ(jC_@TD!MXc)Gq$ur(h5'^,fRB; ,n`A鄃7 9#ΤxH(~hheňǪl?t:Puv ˆ)e@1(.X 0/@8m % kX&b]ThĮ TA"lM*a%(%Yp贅S;MC_t8Zz80wVm/AN2䞉X\g! +Ջd<ͫƤxE헱≯ǯAKQZȝ%ea ,:2U'K,@>֪yy \~s3F}yߡu24 ΐ4Dk1bh  ۱mUNlCǵ5z&UCCj8$<{qM$sIrGy޶t7[%ˡoB}^B|/)(V)x \SiW"``RƜRJͨ4%sr1\&.o36 B-g VpZ4fa2Fޠ˃)yzK`/+ssO$'$nIR8-h+n %9OZcF@O [ʨ$z)BRN,AgSQi+O >!qO7.3F9peʽ O;~bN@AUg1b i= "F Fx ( \& EauW9nXPm(rzsi̷6TOPtd|B fnYeN79*K^e?~Ͳ\-ΪPʮ*m7uv'FPΥX7`}j52֛ۇe^dlG^|NN[%vj~y5 _N_4K#G6p+r~։G'>r^͉#Gx>ro7{'ƵD8r˷tnji f͏P6創l.p%krG 'A PK vZ<IAR-STR912/source/.svn/props/UT LjKʈKux PK vZ<IAR-STR912/source/.svn/tmp/UT LjKʈKux PK vZ<%IAR-STR912/source/.svn/tmp/prop-base/UT LjKʈKux PK vZ<%IAR-STR912/source/.svn/tmp/text-base/UT LjKʈKux PK vZ<!IAR-STR912/source/.svn/tmp/props/UT LjKʈKux PKvZmSoM&8X&aDԧM1?? KK 88!V/'7~o3bh5'`HRr+Jc$juIΒk/d &;~c?Nk? &'DKZ)ʄcئc\G6c{L,69:zƨkh! 0V㎇ {  m6Z6N6#cC⎉c|0k =fO@89Zյxdu]rhcs#8 1Dz #.k1} [ƀqd:\vDpmAx"B@}✂R>:&=~ʴ8ȕyh kd@ %Y0Ìɼ&ޢ=}t &%ԋ~?} oɒ}DFN{@ Fʴqr sCLP,C4n =?37}SA|B!]țe_]!tb94qjNi,4nz}AȘN#dGEIr'9nz B^tBF Q'DU#thQ{6>قXBb-ݬ-$S K_4|= /??_y¬u &Ȁ՗fMᔊ7"g^(38".2z%8ޔF`Y<9͂_z|_)t e.)Gbpwx`jgg#Lo7YN66YfgeyL+5wHXP-כLhxA'̧S1/2DȨ !q-'`!G "a"EB<>.L 0`F3|iʾ'  𼨵݂eX6_k YC9eLO֏ Ea>zg2ɝS¡L8VmrT L Aoj7{{9Ā;^ppذ[d$*e3D .h|l H͢ZNv=ir-6,a9#M1e*%`J^Irz%`?|r A k%`얀IU`, EJ>@ĵ\Yμ˼x]/+Q0d;#$ {FȲ,h=U0ÝӇ7s:L/!ߠcE>U2 T,ԠTĨƠ#h+cxF"GID,Hr 5wuܻpڂY89dd9GcAXś~mF1sUE2a;Cv@^0Ma2>GEKK9j[Ue6N]d[uNLm"@=,Ayܮ6*EB,'O6di_'Mwd^>櫱\_ rÎr+)ٛOJs=V D-j{WJ=NWEL/#/f"f󯸗%pڟ9'&B~z;<*]U 5csZ eiy,?ʮp&gLIxy ?PWu؅_D9$ԓm}Wz2;*BaXN4>O߅6Pp!X K]5ao?9[Ov8cd?:CPNȌzuR_΁VP"{?FnD/"[x ;UQekywr//󖴧JNQ=Ŧ[pBL+(-4bv-e+ u6|V27U` @Pu{j]QjP-US_&\j^Pq >5xQby☺;Ƨ(gB$]4xoi{gn qVpL"@FK K`Pv0?BZx)e 2V4?\ ^BB1CHBCBkv+{ډo>E pN P-V27LvMU*-Ǎ.VL0ߢԛ :ۧ1|ޑ|&{~`ưY\"d \R%DQ壬"Q6rY'0ln4"Mp%&+Ta?%/ϢRk[No^C55HȅX@3Erȳy8QuXn [!>uUoĕ.Aٱ)o`#k Ue J_BiQ=#EDk15WE%ƔWZV{-s=v2% ܲ1լd6lhcW 𓛦ꉭOh#LV)XfgDoXS۬1F\`y)؈;uN]j>}Q=lF#v%>uU]#&Ǖ[[ uo ]f#" s.SRJ ѵ€lK$[t ),f))`Q[ߗ6G=ܾ50BPKvZȳKr X-C~]䚭N:5itڨcN;Q}Bm- 4"s_/VڭnܠF@k6Cv,L8s]8Չ3^`>lڇ$tj-\;絬9vp'_>8>?{pYx`) N/Mt4:$Att#<$wZ;ӡ?FCX4Qh+ F:*spǟ1zzwTSzu:^id L+f@𽽜5!5w &z;E@N.+żzh,bs)(TBt;T&D;T5jm D8AH;NsڎQo: Y4 (Fn'8W7\4wFo "" c*KD %SX !K@qkH8)RS[{hccL"Q8QՊI#} diT j#|h>X*< P3YY%R;~ iLEDJVS|#dY&v6ye.Qn}Woq^ؑi5.c5]} k)2fad#s9OF `d.Q<(2 (2KQd"s(WC짋Er(Ȟ""Ej("io En;&k YK$'8tK4?Vb7qe7Q`jh˗sVi2tqr)jZܻ),*;n~0Dӎ4xy[&j0ul.dqNp|067c}Y >" n %[qD g;FP,s=D}I0ɇBvpB{[ |5^V8tePnu5o|Yq sZ="= J`ze̳ x9H'y~O>)TxtJx#`GRrk"T\(~J`棯|]Źքb Zeh(xXsS%Œ<п%$]C6A`c%^d%[ tŧK>6=}M6.4iũlSݔըS"-N( Ц6O^5XNh=*6QG-}wkoXLcѕOSK|"fywn#C-n^;ß6v kWUy͢vO݂1W Y~n|TQVe2P@x菃}72͕B4鵧7v2 98d1t63] b,XW ]fшLK%<柈RA*6Ld~9x5<$EB2$nxWnkSfR9]6ӘʡX{";*Itm!ջvjd[:SPw6;nH:Zˮwatݖ.e 8Zyz/DwNZХp !/ٰͱ-AthY杼ZezY;uyl]t%p t;FL;<&1I =0:AqprPX:؆ 3 v *E66-u\yqގ;zdpנ{'76A" [8KfT]pba}GԥdȢ^SZ:ò(pz*`r]t;Qkej^,! jإz*_LWa6Yf91$ő| Wō\$CFH\S, OtZ^RwڒעfU|Ə/6Y)-o=Xe}NYޜCU UAs9 Xh 9W(p;{3$2j|{An{If\2p)wRp6d /Oǯ#6w|qfCA\tnm)%=fb`ٝeK/}΢(cPeL;LC҉*?]o!tf3=wpiP\jBB-_ Kް`|WHph_ H*?2У{L{㽺GCZ4iLH՞?t#L H-.A&ܺkrhkEkoaFgygux8gp"AbDcfg-X(z a? ,)œ70<7N!6mm1mo>vYm1v?p]!=턓%ߣOqфcDq8Qo1~ܝ_ɽ $qfO3Xx@柆_yCڣc_吕C[.#ũVZJrX,v'zpS&|Tjp;%N~<ǧzYxVn ΊF>}0@ݜ;t|׬hs=|%~t_ lcnu[#!eH@ު*)2glð SՂpUH lMUZޑ\O.^k翧ot׹lXHlnٯoS%?@f3dewQ-U׆̚PKvZxv5[0qxg[f_3+mG lcaDRb`BO5zXh=yw0؆S εAFt13 RB,cAR1G @;i׀r ziXn(+Rm7FKmJpai058Y GGn,.[f/#O25j$Q32o{/\0^?A?{~Ycs魻boI`HdJf+ ȃ* .FfyΕ3pIhA ؤSPKuj^̿t]+0\©~aHi k(l5;0t%V}am]v! ^xD% 9 f86.ҡT alEBVD!L[蚭IQ؞^`$A2*ɤ'դ>Rغ^A8$J !.g\Ɠ~k/O?<|aTSnb^RQt ~NO,;5#rMKZ4@"asV>,=tNHBS"$~JԺ t @ h}F1+B+W ׁQ`dy bѦn'3,w/b0[[}8ByNB˖ben:䄔V;90+186Šd]߰2ocBU:[n(^$޷FFm\UQa4k/<2 ɒY $"c/|$ZԇIuԼ~Xܔשc܁eT@rꥣ p q[c]"9[(gSbȭu*Ze|x/t B)D%bU~nrHCl~=I H4[qxLS5z@ʏ?_{C>D >{N)) wASZ2+B kuiXU_FBo/Lw91W<NNL6;{yMI`9\17"tzI&&+&V vW^v_)R=8ȃ } sǟY,{NAiGAh'M h|AŵZTA~[$Wͣ'L%r1tkd7͛ۀE^B {L-d}[qL$׽ҕk]Ћ0NX)꾱K=ȡ='iX q.\.kb9G̩sT8ˣ8Yv%mR1]+CΩһJu}Y٭ONOiF׶*6٧m߯jt4Hyрz6'ݝ:de%ax&F}-]6Ae. <]2AM(}FAm 4  [b0:U-t"n+"S=M!bm7p+VDٮɭ0 F΁٨$}$9?2弳nf`155b0 cqfR0TA՝ex .+ >|_,,cY$IW'N*PH!\ݎbrd4c\&V"*|Urk -7g8"]N a w~5c Cއ6{'xz/8/toxIrݺ/*D~IɨL_E(UލZ*['[a~d[߷ȉ1ƚ;P_tEoC҆9=%4diPJםǽ}Bϰ֓aQ GJ/jsMPW2` bȾޮ$ˇոϲD0 Nk*’STD\J.4k\kΌn ՝uP7 jhEЍ&t|PKvZ<(}IAR-STR912/source/91x_dma.cUT LjKLjKux ]sHЏjKN9dyUɒ'dSA;{?=/@=حtg/%=Pfu ;03ώBw$ ώAF⧗0|…8]: &w ux2͍V 7EQK!7y=xjvQL(}JvP&wڋaN4o`>$.Ά֊\/PƄ\A%,vcƇ+/NPA9Ea[P4!1¯#V 4j*몡NM0fcPWөfx m4**̦0 H3Miӏ\L fs φ6~, tB>PLo>Ru* 9c vPD5EU1TS 0N Lg&pNF0ц'N?H}K(՜]`˵FóG`-@i.ԅ0P&ٺf&ѕ0D&&l -p:z͚ gÑ 'sk rۋjSu U4FMQ)r*Y^ lIBwwgc{IR # F|EGF-+q\Xěy`v\ YvBY" ~a^~rgC;" 7u'qvRʱ Jtt쇷JD%TE[&TFhF:q/R%˷KH"XF+H!#U p}TAbFZlw zړ|FpΧS":Ih]I9me_oM<Ċ+{XG14ZrT*[BM*H!׆e5ߦzVisYE}D $&0{Wic*b7u֯B?QF5Z$&҂ewʑ~%r9kK;}TWR5t Uޜ?kQ{fcN2]"`G.xq7ouιTi*DϽ6zTٙ L7Zx.%m8ɸŌrwԽ5 # BLpʿUZu;)-ь# RFe"zLWt7YFv^| == &b˗rN ,-R9z7^zf((Y~^ e:? \?v cr{#?2y,rJ1[cfţkDȋb˴LEIÒЍAY+!,a²>.fdHrM"g~x0[A0& /A\qwj8@ңj1eOu$w5$ 3F5r-0QWtx & Mx-ZXM^δiNd6Mna؏}<^"I#cNFC/93cP2{ğF x,|bOɃ~;"/c0XWwJe.l9UDLy>BBxtP;3J.tyJ.ls@@Zz~> -~@4*5@JT]nȨPrpԏh''#EW ِB)7Ft*j%zw Z)e47{tߣ7TQR^Xz8Ŗ)T&lXm~V|Y]&聦~B CvYW zɡ.JG^߶nwoM}㡣SSJB=~06;qE\KA,|h56x|O)ࡃX9R58bq1iKJBa#,(6q^V2UHDssZNùFܘ })Ui@犝Ga? i8.RLt]}l{:?N2 X{h{ɉ;mCw\0Qf3}AN-!d$NWEw*{,voVDdww/#w 3Ěv yD:%&^8jYO Gya۪]l40SUhSTxBm0}m!8 Zth!uGA +n2Xj!FףZf<"|mD#X6Bw;958J#S ;t vk PTaB(kQ2RT[H$ދ27e= rg^#ѶyɎYȈ4EUR)'0lc@@Vz{ 0w'- ۠[ 5T[ǰ.ül bBf/`ndiUjC]иʔ "Bto[/ 3oukx4*}hٵ\vFQb)TQ~ԭˡ¿t}yy~,lgk+J,Ado|!S{ ٥UI&ԭ]gw2/~rMMJ#W <ًIx\,]ZCac8!Ol[Kn,ƂK_KX>OEIxrq9<=9DN#wl`.K>Gn j%W{G9['6wy< Ë/K}s89)`w=oXsޜ|NX=^IwF|?f;Xcp_$8>ȼwM ϙMHV&1EDVm^{-*GBι߼xfn^a/KqzM"(k/qȊExa!f#WiWX!KtV( Q^..'o ț3HbZ LDK4LlЭI;MmDn=H~]|O&qrImŽDa5[.۶Nڊ/#L4E 8/^v}A10迎NiN:,4b ]d -aDOf+^#ט40VOf>Fa>R(XlMmd ahߴҔG1KzFBj nCvɾC h 'C" RPAcW%g]xZSL?Wj I՜mcH6LcxYo*sMh~OF#+B=P-Z5|wϸ0JU&tBGp,( w5tn@ihpiUki>cоQVD1Vj]Uc3Ki?v#T Bpj`$lDR2.0~^ nd5U26YQ˺(8VIȕ2*5UB4TPZi}lҺN?Ronn.^~1VV*V4DvuWrkd%c >֝"HVAOevY>p<(`H>lc0C`66QyPK yZ<IAR-STR912/.svn/UT LjKʈKux PKxZ<njy&IAR-STR912/.svn/entriesUT LjKLjKux K8%ޡـ4 +?fnw:JfR@U9sN&Seȼtǡ)IN z]tX|a.w;¦EwB}4l獱>4pqa)8]ǹ(P^e dcc>Oҟy'#v|M,1Ib419WtKt4pD۱awGa+_?-)~6F d^B :֠X~xxQ|>Vjrh2bZ Q!E_m9q dF2'c(rm.%EȢJR 0uOYةlŁ SP)G*c,rcò  TX"RQTbYh??l7 S4AeNRI)A*S^y r˪۠+vaVŢQL`UˠjKvSCy5qm*R 蠒LJy.?H7܉IB xP6'T00LwPڛjUa5*ӈѹKXZM>x>/PK vZ<IAR-STR912/.svn/prop-base/UT LjKʈKux PK xZ<IAR-STR912/.svn/text-base/UT LjKʈKux PKwZ<=ۿ [5IAR-STR912/.svn/text-base/IAR-STR912-Lib.ewp.svn-baseUT LjKLjKux \msڸ|wfOw[0acz LF¨5,~%ټI{ib[>Αttyd- Mi7> {w7_?bJAjMQ[/ǹ.ꋽ#.A$s  .+%6c%c7kճ[T'N(a vPw">VЀ{؃xz$ڊ Sf-3(eVO76_QdM ~ks7e'J6*?Bva@Q0W(kPا X9Fa]E`qPTӟ=&ZifbG֎`_~hƫ sf+Z3Ho-7?S7^mZIDŽ2ymF MLVL9p`%>ӷ+o6KkdQFյ8r+w6_å7٭7R^P>]|o8h]ATvͮ}l4Kud~_I{(ͱ$ qBk>2 AO?Fc+k+c'Zziy,,eu )1ǯwJSǒ>_IeC%//' %KJ9SepwE>AY:B! 3`p\w" `=f-`oFe%FC(ZB M"q.6r<ۯⴂEٕh%?Ců~rUn'c>7sݜ!m̋GE+ h5Y;hڬ`VrxIJZ /p^'j~/geUc1}՘ɄIK1Fa0%"9fT"d+s&G9}Y /Kr6*(ϋ'w+/ a1cczW)Ji o: UVh'P, =9IB*i.![7@ c0/]|N (AՂ"cl^;3Q N59OS]B[9brO6+1m9 1p3D3h9 qc ; 2 c~?ϑ @nequy?oDlX.U(h @YɸEp5IGru½r/x.H+UGc`?"._~}M{]1׽tܱ׿98]x1JEZ#`& `Yk';h7l! Nj"ǧ.xlKUw=dݴdJ>=(] -`bx^#@^dӘx4Ȝ&1{Ш}ۅ "4'Bah6/+A2%U TsO˂l1 È!䓒zW 捖?=;hxHgqjG4aˇ3\CTcgXjHKU(4$JpĎe%@e:pDޔ8'nxZJs8+ ꤌpW $# ( )w0O]0)2]᙮E>Z}9%:\M %V ꐶXߵR}z?e/Mn+~+PxgZBlqJJea75*Ӄ맢bӂڝ:rw JKW`s^Wsh{9rtw3&3t?{w/Xѐ?&A_/1[F:2ߋ^n~bȽ bМjkf)j՟iRƫ4y  ӽn%K;E~mWf/<}9=| @!8GzMu cDPBMMS@wj!4!4JT$CB)PZ M~ BMPɰUzH1_V[EZz&H-_Bjm}WCMVkn`p>Qz7PKvZ< eM3IAR-STR912/.svn/text-base/CppUTest-IAR.eww.svn-baseUT LjKLjKux R0 C)^k‚Bڋ^E4>[mtϷRzfcfOo u@pyB]̤7~<]p@R_38q an 6hOb wEݳ/*5B13TiY&3 4ũ%] K!Rba=L!A׸m_r)ΘY}oYvW4&m.w:? MX&qdKC_0SXa |PNaj,QȿvLLbnQԄ?}O"ݕpP.A- pJBW8 u)$Zl1߽j9M='Y99 *|g˔ex9=(5)x Sr4{<ꃽjJ2k ȸlhB8$oIvx V| ~??Rm(c/RuE8y/D75n{_PK vZ<ı0IAR-STR912/.svn/text-base/deletelib.bat.svn-baseUT LjKLjKux del %1 PKvZ3:'#)Zx,:Ma6[vEcL71Br)(ܣ)!/ݦo;̓#h'3}lӼ;h,O@T\1g> UweBaا[VRoeN3=Cl1pcd@} vn'VCc7tӓ=ԣ€VEFN3.eL76_&ah_!=~Uu7@ TY?~>]BSO'q<ΒD,JrPAVOf#|>ƻ!?cT:ƖXb*)t~)VHf\múbV&ϑ_[Nv쵤hf1nI1.U 28[4_MlWWUO,uqG=I|EjOK/j+ͲC#FUV.[ɴ2}W޿s dlEփ28w <'UQgqę)=pZqj(aT_ Fhi+F* 1Z ;된X!}31^!Tp-<pyqFzYǥ)cH89+qՕ1TKKHrڬsNĥ2U̥sǯfeVrP)GuFւ>;K ʉ],@}#PVF# Qu>9'!KLGpg4?9I"y^,72Jji _>kyu{=j0#8Ek`4K1 B٪ѥ~dt@.9NƐʞh` 8T v-nB,-P1yU yKym&J?if>7L QCҮ'Mjמ'ˡK"B/#BB꼒;Vy%vq) Ƴ~ui1 `Bn ,0~q@T~`,>}!ŖRSDMZfm\MJ«Z0D57L!/E&/ε7J=A*$;;;MUJV53AL qiHHl6wOXlo W_[T}2s1ܨ&w"YZZ31Tg_T^TSrG}8W3M4HR,QBPׄfdQlbFa$5U@ PT{FT-`ksAPHX \Nû.~:h0xDzg[c~zzٷܧ5?7؟.RM+WUj1v,GVTZj'{l!N+jy:qǕvA<]iP;L1L~ < %bYsk97ݹuq>W7#s#zT>ѩxaPS4J/cHum9:''%f*LBc޽ee՗0^*b3hwe'UEvDgaCvufF?5sKĐ։,AaR:ҫ+ l:O}Ѓw@׫s_VȜAȉٽ9|Bz΀ ~9qtB_|yp k``|Z΂$kPrBEs晒۝R/ ~ZTS(jPyKD„c(R[F/a #.1 F!p/>oehR!*%^}?ˎ=Z`5JS#C$=, Q1J WIyS jln+ g6B(ٓ]C+mlȨ?yQ?PKvZ;2C+yl vխ55l"-W>յcz.%NH5:W`$ Y7Vh$ jUެ"I7Y;-KNup(kW=afw4q/'řPKwZ<߂SYE;IAR-STR912/.svn/text-base/CppUTest-STR912-Main.ewd.svn-baseUT LjKLjKux \o8>iC݇;iMz뤬n"M8+ȘK^װ\V5ǿ籟wC8uZg~`vMN'=Bzlu9#cI9 &e'Kտ`v80a(7r. Q:QVmRV` hTs'XnID*iir}ӸK' _O؞LnvRm[c> [,B"W+xm mHf&pQ.>C6(l6s]j&6qC챉p+$~J~^QŴ<++)9Ԉv4.>i2`Te)C~ȀjBaRefaܴ6^ 1py52lT~_Zj 7mAogW!**?/rky^V{Zy" ._sOTT[M,ΣP%/Yu}%K6?_P;=6ӟ& +  WOOsAĴ J jϳO#EbXG6;}l)V8ORSn鸕#xNB7\il;Q"2(C關@E~Yb1f1 q͚Skc $PKvZ6}xLw>M=z'STB{&j3XlȝK7Oxbk(BkU5ƯNnN8\K\8Ūqz3}A"/=%>6 Zay2f5ZPA[!k10xDVu~ot|*u x%@z{, xE+ݜ:;Ћ[Pqn8V“,/?6[rI3u nj&^~!;y2$^WczbS(n*_m>~?тs]λ (.oؚ*EWu&DqiM}Jnt-;i)EbK"Է#ڏ!PKwZ<:ua-IAR-STR912/.svn/text-base/91x_conf.h.svn-baseUT LjKLjKux WMo8ƒFKET^Jt֖RYlP]k*Х}yf81owƓ}e]a>J*|c'a/%DJn',gB6cY<=-YVeBf+EZh9Wdr`4*>US#S*^@TM3 u]V/778B⿛_}]*>IB9x$HBg(N`2D.8 2EcpS.&7axH#H$D{+8 N<4[ oxj4H∹OXOFm$ItKs"8wH ɘP&HT(7h00Ji* oFSlڮ$ BQu #Z Ym #AXD=PBIE[Ev6EvOD}b.0WM)AS^Hzz2*ṬA^fr.乜,j%,|΋/Tjm`>|Uv"hKxlˎ+fE!Vr8].EqC!x:̊oQ}K/qԔ-uҾRH5JaW :t`nxz!EԠa[Î5|K _iZ5ɸDO!(]8섐h %i5R^Q5hiְcnl"OaD}RޓT{ (ŜU!Uǖn8Јvϋ~#UðpD˺Ζ,f/WHx>L{sq\ZY5ר;u O.v60<> RRJVet3(tW:ҨE%a:V"TQEvR X]7bz4$vBZ18<6QX ѳV*!eR yWQE)CS/n4<+Z@SUܤ r j!@ȅɺa"Sp=@獄B-ƒ=C;\-D 8]dxDYFgR`ZfeQ-F1Y+3>*E֙AciY{I%AU6G˘4@EC ~#| :AFܮAU39͵q x/qI 9.ٲ?>1ZÉ~t8ԫ*>}}Z?!c>0IhJ#i<3P7(Nl|y(GM||7My$cՋM0@H8#HIL+NzMd!%8 !Ԅ$!@#%1 Ǔ8b^ D1S c0rPDGd;8J3OBrF>p ^:OX=840G7tܞ0?j=40T1i #NXD}4P/l0)$Eh̗ ~>;dMnsq`~5n֯Tu}>i^+ٴO”VDU)Gب͞DF/;BwU1n?t@-5Ca7BHPJ*ǰohl;g*syǰ#vnT9yç3 uZߟxF^Q+w][.w;mT$L$|>w> wgnm{:K~h^8K]t<~۹A?Soʛ vQ;w_$ez?$=ȇM]{$;um{N=܄lnRﺶqID6F.|G6:g6F.|˧6l:Z&-v(9Z,y'M'=ּVI~˷=ּV;K.M]'umMǹ0um\g}b[_xſoy59xm0kr#V0?DxMmKdt~f݄ uo2|' zPKvZOVs/B1˖Φ?vpolx,*}oFv6eb;/fZA8L'htO+W?7MO\t{_%q9qv&LAXPM9۝$3O@-XcV^z!TώD>Qd$7y0Eġ{cDݛRw' v۰{y 0_r|cd l a.vt{^qNPK xZ< //IAR-STR912/.svn/dir-prop-baseUT LjKLjKux K 10 svn:ignore V 21 Debug settings *.dep END PKxZ@X$(d;3/*pT`=_`(stID?xJbSчµT QP, |h P}{y"!9$Ȁ!XB@CBF!-  TX'K^%' 'YC6 6kq lکCIH )^t ۬C "S ?㘔mgy'~GO//./ޛM <>گA)>&wlV~I0'4ݮj}En60Svؐ{¨sH?"C2ߧ.:\ c.17$M撨s{ M璨sH7 ]u\x>UtYt`FJAsH鍔dRQ jviݺUaj$lS ʕCz,-\uI&Is`?Kdf6߃/H}1tBWp2\uk/ _*/Ɨjڴhy6R&]~*[7}zuLnn<>x.M^wOgqt#ڏܔ)9`!=PKvZ<]B"6IAR-STR912/include/91x_i2c.hUT LjKLjKux XMsH+),)F0HS )(F6Tl6߷{@Bȶ,'i{==='[\\b8~Ϸ(KLFE&qCÃ`3 vx'a_ G[BEqfPt`,"NexG`=,$rfy"rB'9\,NWMysEboY&E'9$"p,-\"C#>AN000Ao~HE<wOqوnWvqpm<3F <0c3[0ay|\ ]CƞXGX ln1_86|\5¥X=URhwc|a*ADolTBsnrw[hx#f`;> 8)䊒W %c䂙3 WFjB_@3˰]QX+"Os ƘU!`1j-A2Yo|-61 c)2+'73+64N$)n:y/2-.%I4[ xL n`RdcP R6KK>xGBwsR4+imJ;vEgHQ9<ԧf~RNjyHdO@8_aP~bI0yGE%HIn uke›|00+n׆\!mMbkVػZ"VV^B"ڏVPcXzVĀn#k:˕jG`0Jc]RnLWӾU *N"%|\n<(x\xvnmIf5fA==yyn*gVlOqSɵkYXOڰgj[F|TK ^mյ+6ׯt:n |sOaS]`-LS}OM%00x\ ?,3]tCz9sAx}q7W֛Ǫ;+6:}cR!@[azЙsTg+ 2xJRըUݮNlmj/א!W;\yzt˖۲+K״A5,St-)KKSG_kR-ZrxFY;xu'^1_I~Ɠ2*Iw[U;WrՇՀЊӴIQe!y}=1-Y`|5I43=FO&/qQ o@Uc|s%^4ÕdwPB35YU^H+EF=l&f2hslEkmDd 0;#yY-|VF?v~^9ߣ^aa'^車!L^}PKvZ<3_cU"IAR-STR912/include/91x_fmi.hUT LjKLjKux ]s8w?Ilm<@꭭-'Ttϯ#)s ^ I+KXq?wAF`GdO6i&矮` @*!y5SPr2x? \h婟dI FȖV o[<8 $AJ$6QACB`w 7r8J`U􇅔'|fKh1}?>oty%a 1ٜ03_ fb9d_]%;<0q~fp/Yak-“~p?qSۘ$ >aK6@;VhނW-9{DmZޣUO)Ġq%bL2"BÏ-޼:FqmN%>I0vj+L$9֌^߽P\\\]epG]ozy =քHHf>!٭ue|cY+6b~#鞓Y9?fwX=GPJG"AJR%ӗ`AG@VaGPUQGHWqGXU٬R8r>zV\gR*6PR~ 5(dZڽ笜|LQQd w)aD][9uܠ!9#. )= qj >b9\6N3'NfX"5wL-A eMdm]zkp=\ݫ'ަ0&HoQY'X15KLZ> oq~m`eF}6˛z [zL釪zH9İB7ϧ8;d ݯSO7i"eCb)'˜Sp* 4HbxLp˜f+Y9kZθĦ/ 7!g"Y6moa (շ(HO V<)pnA8_8s@ P{6rW#mX͙L$xxez3 ?PPa-j%kRدP+R4(|a%lQ*JpcU ǕqTrZy!\[d%'DC oPr5y'II)I#'isyR;zRK&$"'T<;z$]I:8OYyt4(I|NlΓxs= K4kIvpF=J4I,q=K4WXU\OxKkmqA/( Rm)R唃R*K~ʕrXWmPՕr$Uʻr\)Z|]*UUJو*܈Jو*܈ zO(8N"OlGV%gnt _6?Vö0gg4'oq"׫Yx͢x'u$ٍN~G Zkݜ?:ό^yPKvZ<ⷠcIAR-STR912/include/91x_ssp.hUT LjKLjKux KsHvCWRG!M-Ȧ@ !$Krg~;x}͙ܹl8SK8LI2hZzv0`Ks_/~PsPn`頮VQ8 dE$X@4,sNSxv_EъR,, WH ,eQQ"ggJו@Ik|Mk&#uwsQ/ U.7ץ@̾oG')6 )MM&`Xnm|IuV+2U(]㕒&QPot>jOYLLSCAAQj]W5#6MCzO[3f(|x\kC  #V:PFWr]7w/7mEmHB6shmHBmHB6D/-ȗ r݂\o꾪rrт\+oU>v,פ%x>ڍo})$ì$7WݬeW"TO) es}1yp[O\}rR:v7Y6y"Oһ-ns.MƏnzq·r*H呢.dilL yɎ$A0ޞ^DY!6r;V n_$]޿C{O0a0h.ݵx^ڇlldQ}-PKvZa頮a{YGru/și)/{ʷyB9 O$X GD)xaي2|RNaY9($Ρ2{a#3ÃO4kzuƺ;apk3.8}PmCȲa|g誩1#Euo9qx0 qj&gkX&lb 6;uP ,[g08=ט3PHMSJnC-6ek[9LL˅ &lPOTG OVD(,a u :SǬXYEEilph #ۚ!p7&czX9 fc-Z(8UtUd:.f$9p ';>28d1Q sA䇹ѿP~т/a>f:(4&}l,1T FDSi\Ih.ԁ( ͒rCZI Q0 ѯ#\li5wW OWqORmE,^N[4-:---]E8* !':BB8z)j%i\ ڶzZOx”Nƣ2Ur/NY!9Yvf^~5r/Ux^4SDYT0SlЂ +y vvQ.Z= vق] +ذ]U S+`RqĮS .)xʰ : z d)F#6"BbpszO]nxδ{P\5/aS 6Ao1ɦbG}2aUgϵI$w: ׂ2JCغ& HUT56YWZrS.a*Bex[Wedq*a*YE=mk.id򔨝Z4mJڋO:c ڦ64*flx[Q)Ib-N(d4(6뺌re(}0eɗ8X 9]COڼݺ~G84ԻaX3c<ߚӤ\΍y&0k{t ǫF9n40KhRFM&EXՠ<̺MWEռe?ݢqnpM ~*wb(+ey`T~?Ed%ZL4auIf%`d"6Ad`}, M9-vk.mU^}s_`n] Cʋ/';%qâL$v`CıM ID"_!+6~ ${5ԍI--\E0+i7wdiBͭG\ "p1b"@L]rF$ڐD+'~M'1AdÜM j"( ,r7W}2}/"xp2\cI$[1$0:F"]Q8sshŋ:%XE\"0T[b%bz qǃr J8s\|0r=UP=lD 9nv|!BN×u›MD =&$O^O.ݟ$=}^T|ZJw}6sM$Ś 2KO@o\qifOF`?ja2/l"M"ZԚS ᙄ!Ii'pM |Ze?ݦդ~1cqljoAy@o3mO3g2NGsDe<C:^5I=YaX:; EVky aGKzq$6./jvO"A.~:JhmlRh q)}RybOTcv}0'ʞiαեpHoS"v VMS9A'|jvV'l0Nhao(Fka9Z ڰP<g׏Ə]֤mIO(ZX ]s'mHpTc<zVDQAbbxUaEr_YK" $"_j|RmO.K]o]d/}FA@Gva#P_s)۱4~]RP6F3탉KDnjYVo>:[LU4X%.AAĹ05#aS ș };>+Owv13DBC 19 %1=~qO,}ֈuר!\E^DUZvKf>:\9І/t]È˼7P߸MpڼۼZt-b XC}jd6 5q˜7khMoำi;A&OtךMm6 ͆ CRlBqo&q@4͏]0Vn.^VMM(Yg?\%Y %I(# ]l!/[[_\2T_É>~.R-Mzwtަ:fB\|@vn~S0aY]d?=XyQDù,t߿f LpAlev#؀J2'ĔAwCQ~60#b[HJ˶)pc)lbq=ʆ&UѮZl6[n⸋26.\5C 'bG<(y(M5N11Q& [}m. 9Vz㦜hJG!PTá=ǡC^ Kz@ЯyJHY;[zX+ޮQU`0 z6.,ֽ#"?Vp`b ,js-,*7 ydjB[ִ[V&Tcq; VV čVh(E|w=Ⱦ YF,/`5k!Yn؜nfy{\eƤ(XwĀXMd*D$U4Hzh٭Ql'Ʊ*vj.#ϙʡ=\M:N^d5uUF{kTʩm]qUox(J}ls`>@fȑ!>n{mS뱂Ej`%}-A$윣ο!8W^U^=%;cRyGNPwu/,ԒjW~/ZW Bcx*{a_ Ҫs_v3M̄^Aj_?^0y6=kƗ|#kp"h9S WԩPKH;l*T2eOkaIHrIZQHkFѢTp(;DAxqW=e,Fc0JT%%-hH4A\VUO"ʸF+>#_ɝϟ+ځj~jG>׎Nz9X[%wmܞa? ϽdJuљG੓[ ˁ Gni&7O/ s{ sSmg=JFԧ5Zw`AC]s`L;#o:SvF/*BKޞzȤV!2750D!%a;U@Ckޝf[78^d yo^[{'q.ͱ Nq |h:4`V/HSu/qdMPKvZ<=)K4:IAR-STR912/include/91x_can.hUT LjKLjKux X[o6~^%-5kBKtLDs0M'dɓ4ŰCJrlIv(;G:~,^醓4Qi D x\?wƓ >z֟Z6" 'A&1H5r:,eK5#\4ݣP$ FJ|3i&IaAE?(-gH<ɿ-B?\Zxp Kf Uwi~;B> ,Ooct6bUk'M^6%z?ׄS2kLp>b6, a"Qƿb6 黔 !Y`D2N 7hq-n,)>)7p W$sIC4 ȑ:}PKrc1$/OaHF5*w 6>ԺWQt#g䜊"vQV`9E؜ €U+D%Rs@ij`$(Ħп}fKKł·gZ0V'xԣsHdy 'dZצxߗ8 BNQ]67~ۮk0q Fx͍S0}rŭ9yҳsaң6尺DHBj)X?%_u75jA 6>>(6nh]8;Mjئc+uئc=sURb\:,#N\SOsbͷ:ln+Llq6oNZa.v^Qntjvuz\uotߴ |mn߼u$B(AeՄ09[U!'6 ^[@cK! "}af_ti&i:F2SS7Mݗ-h@Bx[nj$_08X!FO,ql'?Q8EnHF=;ULb<,[XXAL~IWœS&p+-b+in ],mXD&Jgt2:QZ',L5]Dl:oU,+5aj43,he7[L.%.j_aj`[؇ꋹߜjl?PKvZ E`y{ƕI(TYgn `}n@FLQVeZe굴G[,UvWJe?HuT@mRC+VH{;J@wʶ% ndsjKx 7An4HHE Y czyTz#]띇hlyTWrغfu®Ư)v vO"8@K /%a.#GB=^ވzw$B=Ot9V>~xRQ 1O%ߟZv4vxhGpH ?̒tZ93Nyh3Ϣ>PKvZGiwl!esy^P_/c7dY.,FCi aQX&܏8e)@sg)OӞ!JA|Lt?8#F9O㾺qщֽ?ɨҝ7%0wK,\{4jJ)Pƶ54K'`[{Ш桍&/\6 XRA-4758d9R RG scG.:<\mI&% "yoEmSݱɌc[TwjXwdfjw3")5 VK^`Tڄe\AʰƎm _!x"w&ɡfeHp A-a!eJ9DBZ:ϯKqD7Q€x#K8d,(*DI>{#6I6^.c)rLMGE/XWj%efVR~t%"yV@1hmYm3y0ӐݶlSk -Yt96#MAtY=ceYdDzeQ/v$ַ~c[9[IGUG~L)K%vĮ8JVh,ݥE| Drsv+.; //B $ ֐"W1^9+Y\aMS,Fp8ziDy +g ;P͑5bu[b9뱟8%L)>,ՙ>}V{W n#uʽh䔕h'ݦX)z*JHž攍L8њKscp: gNSfЬ# z}-+%lՇSXҁޝ9 M9<<[|*uKenq8x:*h^mwuc9t^69cUGYkqJHdR{2rSV^#k[َlw_}?<[?Fa} WޛZIm0mq >*}U(~,'#gY]}sI7M0~(/Ye8#4/}AԠ3O d:UR=6su[XMݴTa=( zS\/ăAjIRL bPTKX:f'K"s$ߔBouE`eũVqt*Y6qwqA}Au;bޜ%!zu}4Lޔ»l{ :'G,C03R}sPKvZ<:LJ`xDX+*4=G!p=M*!pWuJ~ f!\6U-] <1UbY<0- ,SytTJ_.إ6GMMΝ m3$[Zmsm8$8 6K0uMh(k萧c9hُ?G#Z8pEQZB-+2 񜇘taBY^vŕv4p oH&^o-keO,/bꡍ(U$3K(ʼZ֥!E yyW]^T;b,lw;o6#x*1f@V*A6[gF<Od?~VKw/*O=F:s=܁iCڅAlyfʜ,'TN8Ƣp3Ue& ;c8'yrwv,;L_k{`.˽`>fURD L9}Nh :M)_ȓE(6[U9Mbra壱/}._cm o2.O>Z#V}MSs2%on}',#x_EWu[i%`~ot7uYb8JnP{}WW4[Z؅izjLؠ%r!¤ԠT!Mlqeu`?L޷Ka/">(WK5q 4#{b` -.Q&j73̧䶸@"̭a7MM ~r=}r#> 4zL9M]Gz2H2iHq[|0³p$܀{~(Gi '^u T+~ ˿&e+&\Wڸ %6~55W{v;x_>]X3kk; -SzB|\+x.'Ր7I֚5_{Yn4nDe&U$v~xmy w|Dtu4 bvA wf zF\Q=n( Ci)J%% K"& ,|^1xMWuT>t{nsj

}[nTMl`^ƒY"4hxgѐKs$4,j ](̰Re,-p7>&(F٣@eKkN %h"o p1&`q%C!  cp N,dP. -7,HpŌx7v@Dܥ»dP,gbF$/OfOɣ9G|H.\Rp.>\eHʉBA(\)v@S!pF7gH(Co"ƮHBHXPKj]&h7fB NIC_Ev";Iw;N򥺃i7=+U{;}::}ןF@Kz^t`{՗|%3n~%3[_Ɍvmn-%rWǶ%rW=݃m[{o¶-waSTy0!>w145GYYWV1i|0ɒ{Q%UqecuqL aYhhmó#Q/w) ⠜|7uĎC,Y*_w?9hF1{qkɄt7PKvZ<2B IAR-STR912/include/91x_it.hUT LjKLjKux Ko8aۢWm7{%"CRqs28!F;ܬ)mlo E:wOqނ8zFG2ӪTk,򴆧B//$_+v .r[lЮ!p\ :OH<MBɪz2?®VUM*4"rװ4eATa4k^hUUۍ6:O*)5FQ[FZշky0c^:F7p>HŒSAC "9s<`&i\:пDbLt\N̙5bx@$BtJx2nؑ!Ky } Y@{@D+Q@ľ|o:sxD}H <F<32i#I;pG=j?Et9Q(M3K2m& ASpm΄ia£*H o& b Iۖ RL #Za# %a!u!NqHB,ʌ)xˋˋyi6.aS*4T*ܙ2]o/ar[u֦8xdfF=S/ۭ+gVMYi<3Lx:)2!9wwI'ߪƇz/n-Rs?c5>[}2 . -xcobuv *T:]PǪ5 7{f>Zc VI3`++7o'IC*5+8$ӵXq&r`.`dȱ/7bfW@ߺ9p19Z/ `.]=m5܌xש"˗ ?ns/U5]&̧_ PK yZ<IAR-STR912/include/.svn/UT LjKʈKux PKvZ<; IAR-STR912/include/.svn/entriesUT LjKLjKux ˎ6EB~v=]Nz5H{4i [I>@vJ"UF6_&!,t8u_׷ۥza-vp~e\:^itO}xdGa5*N_חNe=S#إ`sRvYWqhG'=8'K܌=kMN ~80ɖL5j$%Ԓ4} Țdz[K8E9;bbj-BNr֢IbdnJy) k/)X6i'G;u6j{H&u v^Q 26L!;X;Z28:׳hg ;>ԗS݂ QChNi)R$Q/n\b"˄a4;ylz9[G`=mDv^dBBemsÜsYK((Yu W !xIQ78&ˡQE EJ= aMjdÛrΞ*#vcb`,.B'4"[h0)'oupGWRnYRv8Wk l3>t6!T/Sms10SؤfdVLIcܼThA=:PK vZ<"IAR-STR912/include/.svn/prop-base/UT LjKʈKux PK vZ<"IAR-STR912/include/.svn/text-base/UT LjKʈKux PKvZ<ʧ$ݤ/4IAR-STR912/include/.svn/text-base/91x_rtc.h.svn-baseUT LjKLjKux Wn6}n`(A_ݦ#Q6]\"OVcbeɐ\Z;.ɃH9gf4ѝά` ''"HTg2)982 ?zϓB%s +5 Y62IdBX ,J,Wb:DQje2)Ґ|.KiϖE(5r R(z UhRȡrDa*f2څ,U^\g ׁx^w,a|Ha҈IHYC`8A1oQ|" m;f38G>3>ԜV`6,!Ud6AhH;fP("darܘ \s<p'X;H2J.;nNÿ/>tG At |ua4_DI;̸æC=Ibk}DKzmHwi nx:絼)oTM1.d%}SAlE5ckIw}nJЌlۂL?lGB[YtBz0/mQ`[A-MɋE.@X$(d;3/*pT`=_`(stID?xJbSчµT QP, |h P}{y"!9$Ȁ!XB@CBF!-  TX'K^%' 'YC6 6kq lکCIH )^t ۬C "S ?㘔mgy'~GO//./ޛM <>گA)>&wlV~I0'4ݮj}En60Svؐ{¨sH?"C2ߧ.:\ c.17$M撨s{ M璨sH7 ]u\x>UtYt`FJAsH鍔dRQ jviݺUaj$lS ʕCz,-\uI&Is`?Kdf6߃/H}1tBWp2\uk/ _*/Ɨjڴhy6R&]~*[7}zuLnn<>x.M^wOgqt#ڏܔ)9`!=PKvZ<2B 3IAR-STR912/include/.svn/text-base/91x_it.h.svn-baseUT LjKLjKux Ko8aۢWm7{%"CRqs28!F;ܬ)mlo E:wOqނ8zFG2ӪTk,򴆧B//$_+v .r[lЮ!p\ :OH<MBɪz2?®VUM*4"rװ4eATa4k^hUUۍ6:O*)5FQ[FZշky0c^:F7p>HŒSAC "9s<`&i\:пDbLt\N̙5bx@$BtJx2nؑ!Ky } Y@{@D+Q@ľ|o:sxD}H <F<32i#I;pG=j?Et9Q(M3K2m& ASpm΄ia£*H o& b Iۖ RL #Za# %a!u!NqHB,ʌ)xˋˋyi6.aS*4T*ܙ2]o/ar[u֦8xdfF=S/ۭ+gVMYi<3Lx:)2!9wwI'ߪƇz/n-Rs?c5>[}2 . -xcobuv *T:]PǪ5 7{f>Zc VI3`++7o'IC*5+8$ӵXq&r`.`dȱ/7bfW@ߺ9p19Z/ `.]=m5܌xש"˗ ?ns/U5]&̧_ PKvZ<O ,4IAR-STR912/include/.svn/text-base/91x_dma.h.svn-baseUT LjKLjKux Z]sJ}v/Nʑˎ֮}T 8yRa1 wk GF7^ Μ3btȉu{MQ.NEӐ.$EJ?|& d))+&2[1VqBCo6a K5a&iF4R3upM"hjOhH ')7I+)H +xI%iM,As;'ƈ^A6)/&{Y^aMc9`,P;ۦcN]Fw6;˸#CF3>XC}jd6 5q˜7khMoำi;A&OtךMm6 ͆ CRlBqo&q@4͏]0Vn.^VMM(Yg?\%Y %I(# ]l!/[[_\2T_É>~.R-Mzwtަ:fB\|@vn~S0aY]d?=XyQDù,t߿f LpAlev#؀J2'ĔAwCQ~60#b[HJ˶)pc)lbq=ʆ&UѮZl6[n⸋26.\5C 'bG<(y(M5N11Q& [}m. 9Vz㦜hJG!PTá=ǡC^ Kz@ЯyJHY;[zX+ޮQU`0 z6.,ֽ#"?Vp`b ,js-,*7 ydjB[ִ[V&Tcq; VV čVh(E|w=Ⱦ YF,/`5k!Yn؜nfy{\eƤ(XwĀXMd*D$U4Hzh٭Ql'Ʊ*vj.#ϙʡ=\M:N^d5uUF{kTʩm]qUox(J}ls`>@fȑ!>n{mS뱂Ej`%}-A$윣ο!8W^U^=%;cRyGNPwu/,ԒjW~/ZW Bcx*{a_ Ҫs_v3M̄^Aj_?^0y6=kƗ|#kp"h9S WԩPKH;l*T2eOkaIHrIZQHkFѢTp(;DAxqW=e,Fc0JT%%-hH4A\VUO"ʸF+>#_ɝϟ+ځj~jG>׎Nz9X[%wmܞa? ϽdJuљG੓[ ˁ Gni&7O/ s{ sSmg=JFԧ5Zw`AC]s`L;#o:SvF/*BKޞzȤV!2750D!%a;U@Ckޝf[78^d yo^[{'q.ͱ Nq |h:4`V/HSu/qdMPKvZbvA wf zF\Q=n( Ci)J%% K"& ,|^1xMWuT>t{nsj

ټ]uoֶ3A&[s\@i!a1!ۓzenMɯ*[Kv*6[\GŵlNu8|(xqPKvZ<3_cU"4IAR-STR912/include/.svn/text-base/91x_fmi.h.svn-baseUT LjKLjKux ]s8w?Ilm<@꭭-'Ttϯ#)s ^ I+KXq?wAF`GdO6i&矮` @*!y5SPr2x? \h婟dI FȖV o[<8 $AJ$6QACB`w 7r8J`U􇅔'|fKh1}?>oty%a 1ٜ03_ fb9d_]%;<0q~fp/Yak-“~p?qSۘ$ >aK6@;VhނW-9{DmZޣUO)Ġq%bL2"BÏ-޼:FqmN%>I0vj+L$9֌^߽P\\\]epG]ozy =քHHf>!٭ue|cY+6b~#鞓Y9?fwX=GPJG"AJR%ӗ`AG@VaGPUQGHWqGXU٬R8r>zV\gR*6PR~ 5(dZڽ笜|LQQd w)aD][9uܠ!9#. )= qj >b9\6N3'NfX"5wL-A eMdm]zkp=\ݫ'ަ0&HoQY'X15KLZ> oq~m`eF}6˛z [zL釪zH9İB7ϧ8;d ݯSO7i"eCb)'˜Sp* 4HbxLp˜f+Y9kZθĦ/ 7!g"Y6moa (շ(HO V<)pnA8_8s@ P{6rW#mX͙L$xxez3 ?PPa-j%kRدP+R4(|a%lQ*JpcU ǕqTrZy!\[d%'DC oPr5y'II)I#'isyR;zRK&$"'T<;z$]I:8OYyt4(I|NlΓxs= K4kIvpF=J4I,q=K4WXU\OxKkmqA/( Rm)R唃R*K~ʕrXWmPՕr$Uʻr\)Z|]*UUJو*܈Jو*܈ zO(8N"OlGV%gnt _6?Vö0gg4'oq"׫Yx͢x'u$ٍN~G Zkݜ?:ό^yPKvZ~ g9?ѱvv n?QȻ[.bBY>%]E>$/T?y ȷB*4ǧnlEza!t_-V zlun+z-V`w>z.p]Ҍ> [GnSMqvi8Cd9Sh8IYxc?D8E^e&QOf8LR&N ӟ?Dc,{Y4$<z0Jxpg)M LbMPꝇ(ԩ0 =eωF~2 G%q(=F#4dhpQ F!Ezw(|s|/oOi35m/$?bN4aLbj8LȰ8 QzV/YY B4x%C438q%!6>7JsR%yK~~G/I)G5w-Vz ?W+77NKvd}m*({ _.WIVJGD|k`J3o^]q]NO mĽnv[G´a<$f%NWoh0HWe f(]7GIaU "0a^BOw+@bM̶9./JT^!餥:N~m%J+[bl"D" yo{w:@tILceinM *YMd^G:ŪBtg56^e%34wכxΆAW9x2ɫ~+nIgo8d ձ϶V7D؁n8arj9n#iOG =>9 JǾbMA5 ;^Qc5k'[\̓!{o`Z :{ s7דzqVD[dpl hTYڰ4_I,誠 1XP]պW 6.qʼZV&"h4kL$Slyrd@[ݿ^ ]粷Sa3[mo[z21GqUBzﴁBgfs M3MrƁ+R4]MDSG))e`3MpfJ'>/)c0#-.-) )HyrzUI^+Vl;ɖ?z폳*E{$ȟ%iҥŤ432%ё5.ڼI mhVܒb0Q SfN?I&um+O`m1GIl5ߩPb+c'6֗4dcf>|9> >gxcqL04LβGb\rM}C.PHERaEd{I%F Ϡ.8U44 G5c쮠`qycOЏgt}lc9oٍYx b,_|fcV:]7s]5St'WsceE"h/?ɲ.y/m}Ѕ*i2jG[NaEi8~cC_|Bry>o?<>!?PVHU3_\ʛnigpZq%yB]3(kl1_V[ ΃hgT X95_3)βu7rz(If A}Dкm39N}XWHm}}&>oh )8}A3 A&8Nj4(x(oXE}ލy|]ɖڀe9T&bRh3wi?n-> J>AbT<* mqMC}39lO uS* 5C\RzUopP:$+i>TzR\r |--K%*\.tbt#NcU7Xn<+| n .A}P;igKS?e9k7$pcm,Y֡+zoaqtT,gd54H#9Z6U7/w9u7$G&IP2diwFQI+JO)jpC#PU:ycҌB%zm,g-W6"DLyv*6?.IHLnR dT `I1TA&2=|Tы&"D?ѩ?zMvv&ݐ-[!L`63 |f {k)51nb fFdU[qc15 _k!ҤwÀAENnD=#:;t@u9 4I*0YP"z d{3Y2~*w~C͐lNU)K)7#˕/>xB 6L Ibkꪽ C&͌Ά È۷7"sR.7wq3![7Ad8JUVG'=NSi1MQqg&0`m{ pۻnmV|ۈo{Z8臍l|[#>"?K.f(azgdHY\_k"%"'R*0&m_}7 6; '60N9.;s/8{ c#[ Xth^sWOp"=׻tG̾AoСJ1*.'uqF{ԢS&^/[Hj7xxHȪ)A1{vjS둎Nh#٥xV?9wtmTt=a Y4ȰI҄S3LITVlTjűHV,MUjՑHV # ÆP4W3BȅW9Jt-`>o(9x::xwD&|avkɉBwKxiW?܅B^`Þ֞$}>_!aо ӬrElꊼR߶*`\S\%QQZzTPOi=\һui XQ!\xQwσEuA`p/ǏO$Y(J ?% /lí[Wk:T]~*BFkζBIhVbfz` /j!]!s݇_JCh}%#J(́Qs98t|@J㦵QA-$J6li!ӈ,T4`~ôшvy}L;_,ꐿߞ*ŝfq 6vx iĻ]xYg7K[.^XCS^Z kOe! $yw)$.?Ml ~_QΪ4:"S߹N`h)DjUQJ>A-D%Ϡ˕VRc J^d;YlyJVj.[Uc'+ui%+ti%+t i%Wdd>E{wȲ:8j$7Ye,#d,R)KdKG +KRgVRhǛ\ܪLz JVGzp`ꗡA[8D}LJu^i;xĴ?'Yri|z4l. [U|Z$~KU,&)IL Oly42;bBPj),(oTc!(lGx4͂v7 UGG*c RgD痉 >ol.6lxWed) X,pmOVt'y6-RuFXJYނ1JY/bFj,~x"K* HJ!ۣ0S 3EYFHRX*f1y:,&Y唎-c_! eEP!UQ6CBY<$Ry`@ g<U_ԯUWJԺd;xGwxG5}|;z|z|{z|0=e 5ձ:jUuꪩڶԶ@Ź/$|',cA`R ! BSa 4b #ZvS>HyIy&WB)40N#Ƒ0bH&؈q%@$3lĴ%14Qd.z _^IN3ɑIh*Lreh$[62-4lfud84ԕI(@fRO&72K4im&ɤ#鸙t,&~66DRyBA5䑼*qIT=Eb_d1 0%<2i&92I4]l&2A$,l D CR 4b #6 痌NHyIZ#(8LB!2@|8,AB>/ (TB<&i8FV$l)Ͽɹֳ0C"wdg8v[M/N[)'wItr!4͚~:|˖q&C4FaQzPKvZGiwl!esy^P_/c7dY.,FCi aQX&܏8e)@sg)OӞ!JA|Lt?8#F9O㾺qщֽ?ɨҝ7%0wK,\{4jJ)Pƶ54K'`[{Ш桍&/\6 XRA-4758d9R RG scG.:<\mI&% "yoEmSݱɌc[TwjXwdfjw3")5 VK^`Tڄe\AʰƎm _!x"w&ɡfeHp A-a!eJ9DBZ:ϯKqD7Q€x#K8d,(*DI>{#6I6^.c)rLMGE/XWj%efVR~t%"yV@1hmYm3y0ӐݶlSk -Yt96#MAtY=ceYdDzeQ/v$ַ~c[9[IGUG~L)K%vĮ8JVh,ݥE| Drsv+.; //B $ ֐"W1^9+Y\aMS,Fp8ziDy +g ;P͑5bu[b9뱟8%L)>,ՙ>}V{W n#uʽh䔕h'ݦX)z*JHž攍L8њKscp: gNSfЬ# z}-+%lՇSXҁޝ9 M9<<[|*uKenq8x:*h^mwuc9t^69cUGYkqJHdR{2rSV^#k[َlw_}?<[?Fa} WޛZIm0mq >*}U(~,'#gY]}sI7M0~(/Ye8#4/}AԠ3O d:UR=6su[XMݴTa=( zS\/ăAjIRL bPTKX:f'K"s$ߔBouE`eũVqt*Y6qwqA}Au;bޜ%!zu}4Lޔ»l{ :'G,C03R}sPKvZ<:LJ`xDX+*4=G!p=M*!pWuJ~ f!\6U-] <1UbY<0- ,SytTJ_.إ6GMMΝ m3$[Zmsm8$8 6K0uMh(k萧c9hُ?G#Z8pEQZB-+2 񜇘taBY^vŕv4p oH&^o-keO,/bꡍ(U$3K(ʼZ֥!E yyW]^T;b,lw;o6#x*1f@V*A6[gF<Od?~VKw/*O=F:s=܁iCڅAlyfʜ,'TN8Ƣp3Ue& ;c8'yrwv,;L_k{`.˽`>fURD L9}Nh :M)_ȓE(6[U9Mbra壱/}._cm o2.O>Z#V}MSs2%on}',#x_EWu[i%`~ot7uYb8JnP{}WW4[Z؅izjLؠ%r!¤ԠT!Mlqeu`?L޷Ka/">(WK5q 4#{b` -.Q&j73̧䶸@"̭a7MM ~r=}r#> 4zL9M]Gz2H2iHq[|0³p$܀{~(Gi '^u T+~ ˿&e+&\Wڸ %6~55W{v;x_>]X3kk; -SzB|\+x.'Ր7I֚5_{Yn4nDe&U$v~xmy w|Dtu4 :x4\$1[O(\$z~+X,0=< ~DK? h:\<#YFB[J>$%eGt[0#Q z *8mn.EpxϽ+$ C$?8Ly~t^1ׯ2ߠ?65=sXg5`{`9.ۆ6Mpf/S4eOanA|gj>=RL3j5o5W↶Kƽ{0]Mw>SR n~_{ۺS]gfxcm2Ȅ91`bk) /e՜y6Cj'O*ԅD۵=::Sҕv=mgCmf\#gT3L}[$hRK궷a5{fx D#blJѴPlWggW0bc:E/1:61 Wђ`>TC9RR۴#-<' Ow2_q1oWwBH>m90AӭEن%2mڈAg|5'!1·/t@ xx,ckEO |_кh^A뵢 Ѯ]ufo>©go1qvrx-x%ExnXT,/5s,',zOKѻ ɱQ-] YRu3xY}N~_Գ7qKk6>Zj.f?xw40HF. )"U#;u },U{l6d o{xqLv젥*ۗ7-e@+{K9hY:/e6s9Ɛ@$M薿 hYxÊzB13z^ib<=!]WVg2O\!5Zuǁ<.Y.v Nx>ʕC G5b;?eɱU!>A2 ,Sijx7-˴v-Ez 7l%h{;,I-v-l|u$q~~|46t_q_+V\{ [Nga 3(lk 9|h6L?E݂ 6dnY,s8يMdFFê.݄JMjqP#C(؝W`+3D@=ag,XE:yCZ+xX4e_=^|KźM9,uB54 u$ݑJ3n 6uN.4j<]ӱ9"4^7gMIHCʦd(5>h0}LR~57[۽SqQŢZ{ԠrDKN+Uom:^Iekʅ %M_c _#ME_fY7x4N;V 89`GqIQf[S[0%XީmjE0S X{*`p(f[ ߹CЂ䉃"0"aFB FW nczJ e'xwRiԹtJ}'}'&X$]Gܿ|#P[.&/?`o2Q]wh~4!FoeKeVn`qz%Mk&#uwsQ/ U.7ץ@̾oG')6 )MM&`Xnm|IuV+2U(]㕒&QPot>jOYLLSCAAQj]W5#6MCzO[3f(|x\kC  #V:PFWr]7w/7mEmHB6shmHBmHB6D/-ȗ r݂\o꾪rrт\+oU>v,פ%x>ڍo})$ì$7WݬeW"TO) es}1yp[O\}rR:v7Y6y"Oһ-ns.MƏnzq·r*H呢.dilL yɎ$A0ޞ^DY!6r;V n_$]޿C{O0a0h.ݵx^ڇlldQ}-PKvZ<]B"64IAR-STR912/include/.svn/text-base/91x_i2c.h.svn-baseUT LjKLjKux XMsH+),)F0HS )(F6Tl6߷{@Bȶ,'i{==='[\\b8~Ϸ(KLFE&qCÃ`3 vx'a_ G[BEqfPt`,"NexG`=,$rfy"rB'9\,NWMysEboY&E'9$"p,-\"C#>AN000Ao~HE<wOqوnWvqpm<3F <0c3[0ay|\ ]CƞXGX ln1_86|\5¥X=URhwc|a*ADolTBsnrw[hx#f`;> 8)䊒W %c䂙3 WFjB_@3˰]QX+"Os ƘU!`1j-A2Yo|-61 c)2+'73+64N$)n:y/2-.%I4[ xL n`RdcP R6KK>xGBwsR4+imJ;vEgHQ9<ԧf~RNjyHdO@8_aP~bI0yGE%HIn uke›|00+n׆\!mMbkVػZ"VV^B"ڏVPcXzVĀn#k:˕jG`0Jc]RnLWӾU *N"%|\n<(x\xvnmIf5fA==yyn*gVlOqSɵkYXOڰgj[F|TK ^mյ+6ׯt:n |sOaS]`-LS}OM%00x\ ?,3]tCz9sAx}q7W֛Ǫ;+6:}cR!@[azЙsTg+ 2xJRըUݮNlmj/א!W;\yzt˖۲+K״A5,St-)KKSG_kR-ZrxFY;xu'^1_I~Ɠ2*Iw[U;WrՇՀЊӴIQe!y}=1-Y`|5I43=FO&/qQ o@Uc|s%^4ÕdwPB35YU^H+EF=l&f2hslEkmDd 0;#yY-|VF?v~^9ߣ^aa'^車!L^}PKvZ<,(4IAR-STR912/include/.svn/text-base/91x_scu.h.svn-baseUT LjKLjKux YmsFvfRa5QON⦼]btB8ǁ8@㤌?}v}aEG.xe \tiǠk[b7[9۲uUl]˜amx'I>ݢqnpM ~*wb(+ey`T~?Ed%ZL4auIf%`d"6Ad`}, M9-vk.mU^}s_`n] Cʋ/';%qâL$v`CıM ID"_!+6~ ${5ԍI--\E0+i7wdiBͭG\ "p1b"@L]rF$ڐD+'~M'1AdÜM j"( ,r7W}2}/"xp2\cI$[1$0:F"]Q8sshŋ:%XE\"0T[b%bz qǃr J8s\|0r=UP=lD 9nv|!BN×u›MD =&$O^O.ݟ$=}^T|ZJw}6sM$Ś 2KO@o\qifOF`?ja2/l"M"ZԚS ᙄ!Ii'pM |Ze?ݦդ~1cqljoAy@o3mO3g2NGsDe<C:^5I=YaX:; EVky aGKzq$6./jvO"A.~:JhmlRh q)}RybOTcv}0'ʞiαեpHoS"v VMS9A'|jvV'l0Nhao(Fka9Z ڰP<g׏Ə]֤mIO(ZX ]s'mHpTc<zVDQAbbxUaEr_YK" $"_j|RmO.K]o]d/}FA@Gva#P_s)۱4~]RP6F3탉KDnjYVo>:[LU4X%.AAĹ05#aS ș };>+Owv13DBC 19 %1=~qO,}ֈuר!\E^DUZvKf>:\9І/t]È˼7P߸MpڼۼZt-b I,dvGhqĄB,'c 7 (zs3/i@=8 bW4!`*D70VVH> I6EhC4Թh/hN%84!@w>BѶ?jJMK-h8b5FXPBQ$ǹr$m%~G#γ\*++(ƝEm_0@e|&p{[ ~mfMkDg: ?_ Dot.ug3e&Mx,J6 tJeTFMUyn\,>X??ͬPɿYbϬT?ϴYxlg]Nemh)lz' '$a] 6xb;8?Zc,еS <'pįC =/Z"x NK"QaNK"?$]זFhK{}K%wa%ӈ$V9Q[bFmR:K\XhgnÎXh׷U0;-Umi5at[Zςb=렖Xyv{aIKaʮpl5^eҷUZf5u۶o䞮yejJhZf WRUWKدS3M/}oX7?t٦Ʉw?@oF `f^,w>y%ҘjrOM^]x`zݑ#cAi)9~z^e 5pm+HW闟@1?lp}M ~׸l>N$+uvA&LM&|Dw|"ƭ\ޚ ##TCj+܅(6,%=Fc{ :n6kY776XcJ!1([mwR'IV_9׼E[TRm4RnwJfkQ|z6Yʾ}v%̐X%=C6K Ioo͒#CrYrlH6KN f}H,] ^Vд M aд  M cд@ M eд`ff338elpf-pfg™Y gfpf-pfg™Y p{ q+H|i}['"ƻ:_r~keo M>O'sx;՘#:듸h4+nMvY[+ʁTȴ*jw^x$ϒrʅ~Y0SIA5ў'*|׈ոq}}[nTMl`^ƒY"4hxgѐKs$4,j ](̰Re,-p7>&(F٣@eKkN %h"o p1&`q%C!  cp N,dP. -7,HpŌx7v@Dܥ»dP,gbF$/OfOɣ9G|H.\Rp.>\eHʉBA(\)v@S!pF7gH(Co"ƮHBHXPKj]&h7fB NIC_Ev";Iw;N򥺃i7=+U{;}::}ןF@Kz^t`{՗|%3n~%3[_Ɍvmn-%rWǶ%rW=݃m[{o¶-waSTy0!>w145GYYWV1i|0ɒ{Q%UqecuqL aYhhmó#Q/w) ⠜|7uĎC,Y*_w?9hF1{qkɄt7PKvZ<=)K4:4IAR-STR912/include/.svn/text-base/91x_can.h.svn-baseUT LjKLjKux X[o6~^%-5kBKtLDs0M'dɓ4ŰCJrlIv(;G:~,^醓4Qi D x\?wƓ >z֟Z6" 'A&1H5r:,eK5#\4ݣP$ FJ|3i&IaAE?(-gH<ɿ-B?\Zxp Kf Uwi~;B> ,Ooct6bUk'M^6%z?ׄS2kLp>b6, a"Qƿb6 黔 !Y`D2N 7hq-n,)>)7p W$sIC4 ȑ:}PKrc1$/OaHF5*w 6>ԺWQt#g䜊"vQV`9E؜ €U+D%Rs@ij`$(Ħп}fKKł·gZ0V'xԣsHdy 'dZצxߗ8 BNQ]67~ۮk0q Fx͍S0}rŭ9yҳsaң6尺DHBj)X?%_u75jA 6>>(6nh]8;Mjئc+uئc=sURb\:,#N\SOsbͷ:ln+Llq6oNZa.v^Qntjvuz\uotߴ |mn߼u$B(AeՄ09[U!'6 ^[@cK! "}af_ti&i:F2SS7Mݗ-h@Bx[nj$_08X!FO,ql'?Q8EnHF=;ULb<,[XXAL~IWœS&p+-b+in ],mXD&Jgt2:QZ',L5]Dl:oU,+5aj43,he7[L.%.j_aj`[؇ꋹߜjl?PKvZa頮a{YGru/și)/{ʷyB9 O$X GD)xaي2|RNaY9($Ρ2{a#3ÃO4kzuƺ;apk3.8}PmCȲa|g誩1#Euo9qx0 qj&gkX&lb 6;uP ,[g08=ט3PHMSJnC-6ek[9LL˅ &lPOTG OVD(,a u :SǬXYEEilph #ۚ!p7&czX9 fc-Z(8UtUd:.f$9p ';>28d1Q sA䇹ѿP~т/a>f:(4&}l,1T FDSi\Ih.ԁ( ͒rCZI Q0 ѯ#\li5wW OWqORmE,^N[4-:---]E8* !':BB8z)j%i\ ڶzZOx”Nƣ2Ur/NY!9Yvf^~5r/Ux^4SDYT0SlЂ +y vvQ.Z= vق] +ذ]U S+`RqĮS .)xʰ : z d)F#6"BbpszO]nxδ{P\5/aS 6Ao1ɦbG}2aUgϵI$w: ׂ2JCغ& HUT56YWZrS.a*Bex[Wedq*a*YE=mk.id򔨝Z4mJڋO:c ڦ64*flx[Q)Ib-N(d4(6뺌re(}0eɗ8X 9]COڼݺ~G84ԻaX3c<ߚӤ\΍y&0k{t ǫF9n40KhRFM&EXՠ<̺MWEռe?6ӱJowvVLv#c'KSdy߾h8Uq=mӐGsL/s2-d1jZ=[];/,h&:N? sa62jYMq]c ֩;k ֭- ذ ڰ a nzxtUj8PԄVySLe_VİL,~Kj;-]]_qxjX(-l5*/[}vl'A =yYdҲՖж֖б7ؖpn-ko-o[¥鶄+{m \s4kN7]/owyX-L}jo+3 d<;d~krGt'*cL8^stKo.؞nxHmm{ Ls"ӹZNo0׿{.]xzb?PKvZ E`y{ƕI(TYgn `}n@FLQVeZe굴G[,UvWJe?HuT@mRC+VH{;J@wʶ% ndsjKx 7An4HHE Y czyTz#]띇hlyTWrغfu®Ư)v vO"8@K /%a.#GB=^ވzw$B=Ot9V>~xRQ 1O%ߟZv4vxhGpH ?̒tZ93Nyh3Ϣ>PKvZ<J& #IAR-STR912/include/.svn/all-wcpropsUT LjKLjKux սN0OQX Mِ`@:ZZĉޞ˙2!ն}7,gk,ؗ+:nyt5{ry׶KkcP>~]bm-B:n[/2YR[/>.gO`_ ^FR<ԏVDo~9n^Az.ECYӦyoi3PTue4^ѣp z>U׶/ټ]uoֶ3A&[s\@i!a1!ۓzenMɯ*[Kv*6[\GŵlNu8|(xqPKvZ~ g9?ѱvv n?QȻ[.bBY>%]E>$/T?y ȷB*4ǧnlEza!t_-V zlun+z-V`w>z.p]Ҍ> [GnSMqvi8Cd9Sh8IYxc?D8E^e&QOf8LR&N ӟ?Dc,{Y4$<z0Jxpg)M LbMPꝇ(ԩ0 =eωF~2 G%q(=F#4dhpQ F!Ezw(|s|/oOi35m/$?bN4aLbj8LȰ8 QzV/YY B4x%C438q%!6>7JsR%yK~~G/I)G5w-Vz ?W+77NKvd}m*({ _.WIVJGD|k`J3o^]q]NO mĽnv[G´a<$f%NWoh0HWe f(]7GIaU "0a^BOw+@bM̶9./JT^!餥:N~m%J+[bl"D" yo{w:@tILceinM *YMd^G:ŪBtg56^e%34wכxΆAW9x2ɫ~+nIgo8d ձ϶V7D؁n8arj9n#iOG =>9 JǾbMA5 ;^Qc5k'[\̓!{o`Z :{ s7דzqVD[dpl hTYڰ4_I,誠 1XP]պW 6.qʼZV&"h4kL$Slyrd@[ݿ^ ]粷Sa3[mo[z21GqUBzﴁBgfs M3MrƁ+R4]MDSG))e`3MpfJ'>/)c0#-.-) )HyrzUI^+Vl;ɖ?z폳*E{$ȟ%iҥŤ432%ё5.ڼI mhVܒb0Q SfN?I&um+O`m1GIl5ߩPb+c'6֗4dcf>|9> >gxcqL04LβGb\rM}C.PHERaEd{I%F Ϡ.8U44 G5c쮠`qycOЏgt}lc9oٍYx b,_|fcV:]7s]5St'WsceE"h/?ɲ.y/m}Ѕ*i2jG[NaEi8~cC_|Bry>o?<>!?PVHU3_\ʛnigpZq%yB]3(kl1_V[ ΃hgT X95_3)βu7rz(If A}Dкm39N}XWHm}}&>oh )8}A3 A&8Nj4(x(oXE}ލy|]ɖڀe9T&bRh3wi?n-> J>AbT<* mqMC}39lO uS* 5C\RzUopP:$+i>TzR\r |--K%*\.tbt#NcU7Xn<+| n .A}P;igKS?e9k7$pcm,Y֡+zoaqtT,gd54H#9Z6U7/w9u7$G&IP2diwFQI+JO)jpC#PU:ycҌB%zm,g-W6"DLyv*6?.IHLnR dT `I1TA&2=|Tы&"D?ѩ?zMvv&ݐ-[!L`63 |f {k)51nb fFdU[qc15 _k!ҤwÀAENnD=#:;t@u9 4I*0YP"z d{3Y2~*w~C͐lNU)K)7#˕/>xB 6L Ibkꪽ C&͌Ά È۷7"sR.7wq3![7Ad8JUVG'=NSi1MQqg&0`m{ pۻnmV|ۈo{Z8臍l|[#>"?K.f(azgdHY\_k"%"'R*0&m_}7 6; '60N9.;s/8{ c#[ Xth^sWOp"=׻tG̾AoСJ1*.'uqF{ԢS&^/[Hj7xxHȪ)A1{vjS둎Nh#٥xV?9wtmTt=a Y4ȰI҄S3LITVlTjűHV,MUjՑHV # ÆP4W3BȅW9Jt-`>o(9x::xwD&|avkɉBwKxiW?܅B^`Þ֞$}>_!aо ӬrElꊼR߶*`\S\%QQZzTPOi=\һui XQ!\xQwσEuA`p/ǏO$Y(J ?% /lí[Wk:T]~*BFkζBIhVbfz` /j!]!s݇_JCh}%#J(́Qs98t|@J㦵QA-$J6li!ӈ,T4`~ôшvy}L;_,ꐿߞ*ŝfq 6vx iĻ]xYg7K[.^XCS^Z kOe! $yw)$.?Ml ~_QΪ4:"S߹N`h)DjUQJ>A-D%Ϡ˕VRc J^d;YlyJVj.[Uc'+ui%+ti%+t i%Wdd>E{wȲ:8j$7Ye,#d,R)KdKG +KRgVRhǛ\ܪLz JVGzp`ꗡA[8D}LJu^i;xĴ?'Yri|z4l. [U|Z$~KU,&)IL Oly42;bBPj),(oTc!(lGx4͂v7 UGG*c RgD痉 >ol.6lxWed) X,pmOVt'y6-RuFXJYނ1JY/bFj,~x"K* HJ!ۣ0S 3EYFHRX*f1y:,&Y唎-c_! eEP!UQ6CBY<$Ry`@ g<U_ԯUWJԺd;xGwxG5}|;z|z|{z|0=e 5ձ:jUuꪩڶԶ@Ź/$|',cA`R ! BSa 4b #ZvS>HyIy&WB)40N#Ƒ0bH&؈q%@$3lĴ%14Qd.z _^IN3ɑIh*Lreh$[62-4lfud84ԕI(@fRO&72K4im&ɤ#鸙t,&~66DRyBA5䑼*qIT=Eb_d1 0%<2i&92I4]l&2A$,l D CR 4b #6 痌NHyIZ#(8LB!2@|8,AB>/ (TB<&i8FV$l)Ͽɹֳ0C"wdg8v[M/N[)'wItr!4͚~:|˖q&C4FaQzPKvZ<ʧ$ݤ/IAR-STR912/include/91x_rtc.hUT LjKLjKux Wn6}n`(A_ݦ#Q6]\"OVcbeɐ\Z;.ɃH9gf4ѝά` ''"HTg2)982 ?zϓB%s +5 Y62IdBX ,J,Wb:DQje2)Ґ|.KiϖE(5r R(z UhRȡrDa*f2څ,U^\g ׁx^w,a|Ha҈IHYC`8A1oQ|" m;f38G>3>ԜV`6,!Ud6AhH;fP("darܘ \s<p'X;H2J.;nNÿ/>tG At |ua4_DI;̸æC=Ibk}DKzmHwi nx:絼)oTM1.d%}SAlE5ckIw}nJЌlۂL?lGB[YtBz0/mQ`[A-MɋE.zݑ#cAi)9~z^e 5pm+HW闟@1?lp}M ~׸l>N$+uvA&LM&|Dw|"ƭ\ޚ ##TCj+܅(6,%=Fc{ :n6kY776XcJ!1([mwR'IV_9׼E[TRm4RnwJfkQ|z6Yʾ}v%̐X%=C6K Ioo͒#CrYrlH6KN f}H,] ^Vд M aд  M cд@ M eд`ff338elpf-pfg™Y gfpf-pfg™Y p{ q+H|i}['"ƻ:_r~keo M>O'sx;՘#:듸h4+nMvY[+ʁTȴ*jw^x$ϒrʅ~Y0SIA5ў'*|׈ոq}:x4\$1[O(\$z~+X,0=< ~DK? h:\<#YFB[J>$%eGt[0#Q z *8mn.EpxϽ+$ C$?8Ly~t^1ׯ2ߠ?65=sXg5`{`9.ۆ6Mpf/S4eOanA|gj>=RL3j5o5W↶Kƽ{0]Mw>SR n~_{ۺS]gfxcm2Ȅ91`bk) /e՜y6Cj'O*ԅD۵=::Sҕv=mgCmf\#gT3L}[$hRK궷a5{fx D#blJѴPlWggW0bc:E/1:61 Wђ`>TC9RR۴#-<' Ow2_q1oWwBH>m90AӭEن%2mڈAg|5'!1·/t@ xx,ckEO |_кh^A뵢 Ѯ]ufo>©go1qvrx-x%ExnXT,/5s,',zOKѻ ɱQ-] YRu3xY}N~_Գ7qKk6>Zj.f?xw40HF. )"U#;u },U{l6d o{xqLv젥*ۗ7-e@+{K9hY:/e6s9Ɛ@$M薿 hYxÊzB13z^ib<=!]WVg2O\!5Zuǁ<.Y.v Nx>ʕC G5b;?eɱU!>A2 ,Sijx7-˴v-Ez 7l%h{;,I-v-l|u$q~~|46t_q_+V\{ [Nga 3(lk 9|h6L?E݂ 6dnY,s8يMdFFê.݄JMjqP#C(؝W`+3D@=ag,XE:yCZ+xX4e_=^|KźM9,uB54 u$ݑJ3n 6uN.4j<]ӱ9"4^7gMIHCʦd(5>h0}LR~57[۽SqQŢZ{ԠrDKN+Uom:^Iekʅ %M_c _#ME_fY7x4N;V 89`GqIQf[S[0%XީmjE0S X{*`p(f[ ߹CЂ䉃"0"aFB FW nczJ e'xwRiԹtJ}'}'&X$]Gܿ|#P[.&/?`o2Q]wh~4!FoeKeVn`qz%I,dvGhqĄB,'c 7 (zs3/i@=8 bW4!`*D70VVH> I6EhC4Թh/hN%84!@w>BѶ?jJMK-h8b5FXPBQ$ǹr$m%~G#γ\*++(ƝEm_0@e|&p{[ ~mfMkDg: ?_ Dot.ug3e&Mx,J6 tJeTFMUyn\,>X??ͬPɿYbϬT?ϴYxlg]Nemh)lz' '$a] 6xb;8?Zc,еS <'pįC =/Z"x NK"QaNK"?$]זFhK{}K%wa%ӈ$V9Q[bFmR:K\XhgnÎXh׷U0;-Umi5at[Zςb=렖Xyv{aIKaʮpl5^eҷUZf5u۶o䞮yejJhZf WRUWKدS3M/}oX7?t٦Ʉw?@oF `f^,w>y%ҘjrOM^]x`6ӱJowvVLv#c'KSdy߾h8Uq=mӐGsL/s2-d1jZ=[];/,h&:N? sa62jYMq]c ֩;k ֭- ذ ڰ a nzxtUj8PԄVySLe_VİL,~Kj;-]]_qxjX(-l5*/[}vl'A =yYdҲՖж֖б7ؖpn-ko-o[¥鶄+{m \s4kN7]/owyX-L}jo+3 d<;d~krGt'*cL8^stKo.؞nxHmm{ Ls"ӹZNo0׿{.]xzb?PK vZ<IAR-STR912/micrium/UT LjKʈKux PKvZYƨ̃KIDLX/(;>%)qeOɧNڭ+?!%(>)IsCL[Jtttl\SV̯6r )gss_+P N}:DuWP 7M_a ޾'?Apm,=fr8FʸBptYw .}3Vj?&~`t2u2(%wJ~x!L&Qpܞp2(]K*@iD 謇*_4Z(]:]6*'K8rp8)v ' xڻ0ߟ̳z+-+;IҗD쏺0aQ}nYvX쬍f]1X3OjB@( 2V6w+UK\İlK>H;<&V|Kă%+hiw@F˅lJNǏd 0E5|eRзԗ7m16G`7^Qhrg,ϲx'B\ym4—TѺ#[ݣjk7TbE'BxbFq^BXqh'&6Ϧר7ϻA5]ᤌox.(ܣ,@ 'Q*_ *ҟե/̺gPͧ?s9`CbF(i@ʰkVGT7] Ì RpN0C'xPdW礑*~^Mȇ"Hę_~!o?)Q_ćh\wd&LR?5WKMH9?9x܃:6 kXmMlOj9uf.ba u$~|F'!>*sI0v}9~*f6(獻J;GL $tsMF,5I \"m9Y]P3;PXkrjoSygGuo. IMMx5n}5]_l}dcMo'zF/=X5ޮOO6vz/k74 q>{xr׼1LGc׏CFK>#8v%'#{B 'Ş{B? '{B)zJ)򷢡tnܘ>j͂Bz& ݜVf(vh~UXns*İ>S*AV]_0si"a?J"obvR92|&}bZ\4R'qfz~c>>`ڄd8(([pMS(CCk&_VຮZBXȌ,? ӧc!3&N'i,d|:OBg Y,>! ?>ߚUڅǘ2PeC}y @oXk7'K{1(?5Yw} W(%s:ۚ JD ӌGf~3A$<ӼKĵֆkOq1K4zpi$9Q^qgn9H^)@<'M_3FxN(BiDžDǴ~YgEii9i{j&2xAoyf7kn12ili'1(Se&|q5ZT)67oA H^F3g} ~঻~5ţ6x M.<8z4U(6)=160Yw춛r6G!k{(Fo.}{˅?(~Aѭ9&@)A/7SՅFSA^@؎ H!S0?(DpKCs-T0δFrYp. BTϨ0#"Ó S:Tm>Oz0t":U_r_O7 [ho"l%ŲI{ٌ9o(UFwyڐf)AJ`"ϯaaPhtޓL&JLVA S_O艹ũ.ʥW[_}x dbz^GCX쎢QX4f)n ه_h%9p"^xh1uJ{Og!Nbw& 鞄GݪM@Q&^|iSatbfXqLG"{K Rd_%;iH21fJarn2:6A\fF¯x\h8oe&שKI3(0\y8;!DU5zFRꋇ3>]~N`*ŷlIc./Le4x}LIL`G_rox1Asb%Nx+4)/ mi3vLvTVP?d^z%/OrP݌oHF&]EAuP|li_A{^;N߲h4 i]eI AdDo*9wwc`V3\ W6G֝|P ^8mhx+CbאFtGpdi#vEr4|f,G(c /d2qQH4kZZSxvO!>tZn_dRByK_'OF #uB%{80T7YR.݈>+Է*ВkOB:"-Y-Y*ys^xE|3w0ݶ6OWťڑ8O[`+%$g" xGepj ݺr2F‰ WU't&"1?r[0y z?mambUg`Yiy~DyOe_q&OqE VxS=*{0 h՛3\+{MK[^ .܎([_܎GKCaDfx?8/'CQ$H6&DrL%ೝt $:kl-wWwWuWWGvb= .9r|ԃcmat|1!la&0BQeä+zg4cNui, 0Qaҭտ4= >*V*zXs7薖4;`1*}6qn8e%]t f3V]*"j_Ͽ'`Vm fv-GoO i(d &[~̇^xjځ(y]fzoʏe,7iސ U F;"XuDtqYA⢣סdv0E 2.tiKdqy@ֲg!,N?@ZNMas%E(h>z0.F`E(;ƹ߻T /}` %2(fzK@a~=&lrSd^ZBRoO۟l!x:{+Ӈz20%%E,HQ Qr懋j@$4DX(p>~i*/Slyo~WeɟbǗl}7ɂ- S;nݝpG&$ 5ͻ[6ɯmrϊ"3\$9.!  P)=MrవVOn<6` *KwWT`qa(}<3Ɇ ,Plخ#yB:,qiYB eSֿȾ3h1H>>iDKc'J9C|g\*L~Hp&T $k[2EALhexT|˶YҜ<7q4Q~ӌ!|+#h%|G2*bPVU6YqDHup*f_x}u!l׿ڭͶ^tmԾxeF/ʸty2]s]Y-1AijU8>-K|_}^x@B t[=n쫹=~'*!y\,cu^c+>C_ᕿD'Q`^n/ )`kd 7 : R߀\#Y´% @Z"#d Ƞ!S=a8n9!=j^h:ippq^O}3ǃ5 tVP@ӗ*jI\I?ǃƏ߸H !4]rXfr׆0} 3_ J}SAb׆V 51\O63Bw͡!dUb|ȱ%蟡f D""2J{! OF4a.(J("8VL<*H^ -W?jdcK~bqO:;f.b\ .#VުjaVUK-5u[{oAkDV@G˵zN9Eˇ|~rɹqzOq# ѽjUW$<1ǐ B5<$_`ŧi}$4Dr+0,4į-+L>8ٚN6 $ `'Y#{7: k.\20:u'͈lZǜh+0ؒ{qǶfv_9G2 w9*ںZjy]O,FKkZM9aݏmrfizֿɛI տjX5fg]ݓq+c%z=06TV|8 vSillTh w 1IqU@e\+$R󽖪o*j{ .V/]+&xۚEgoA[L_1L/PQɺ_u+['P.4e@s/rQCZѤFR#sTWf8-7:knTöe At; zpB<1 c̚pBL ,%^,|a|䤓 eis̞]|N90 ז!+ëmy rVGxO›"^l4YK XâxYŏ> 7D0vZ+&1hI>REBwfPK yZ<IAR-STR912/micrium/.svn/UT LjKʈKux PKwZ<".IAR-STR912/micrium/.svn/entriesUT LjKLjKux N0E{_I<3~%(isnC`DS]!1 M$.2V8:u^8.E,$K|KSOxh44n3СqI(2']x0kDo,>?=\mu ntMDpA) fVٻgZ}0562'CDnPK vZ<"IAR-STR912/micrium/.svn/prop-base/UT LjKʈKux PK vZ<"IAR-STR912/micrium/.svn/text-base/UT LjKʈKux PKvZYƨ̃KIDLX/(;>%)qeOɧNڭ+?!%(>)IsCL[Jtttl\SV̯6r )gss_+P N}:DuWP 7M_a ޾'?Apm,=fr8FʸBptYw .}3Vj?&~`t2u2(%wJ~x!L&Qpܞp2(]K*@iD 謇*_4Z(]:]6*'K8rp8)v ' xڻ0ߟ̳z+-+;IҗD쏺0aQ}nYvX쬍f]1X3OjB@( 2V6w+UK\İlK>H;<&V|Kă%+hiw@F˅lJNǏd 0E5|eRзԗ7m16G`7^Qhrg,ϲx'B\ym4—TѺ#[ݣjk7TbE'BxbFq^BXqh'&6Ϧר7ϻA5]ᤌox.(ܣ,@ 'Q*_ *ҟե/̺gPͧ?s9`CbF(i@ʰkVGT7] Ì RpN0C'xPdW礑*~^Mȇ"Hę_~!o?)Q_ćh\wd&LR?5WKMH9?9x܃:6 kXmMlOj9uf.ba u$~|F'!>*sI0v}9~*f6(獻J;GL $tsMF,5I \"m9Y]P3;PXkrjoSygGuo. IMMx5n}5]_l}dcMo'zF/=X5ޮOO6vz/k74 q>{xr׼1LGc׏CFK>#8v%'#{B 'Ş{B? '{B)zJ)򷢡tnܘ>j͂Bz& ݜVf(vh~UXns*İ>S*AV]_0si"a?J"obvR92|&}bZ\4R'qfz~c>>`ڄd8(([pMS(CCk&_VຮZBXȌ,? ӧc!3&N'i,d|:OBg Y,>! ?>ߚUڅǘ2PeC}y @oXk7'K{1(?5Yw} W(%s:ۚ JD ӌGf~3A$<ӼKĵֆkOq1K4zpi$9Q^qgn9H^)@<'M_3FxN(BiDžDǴ~YgEii9i{j&2xAoyf7kn12ili'1(Se&|q5ZT)67oA H^F3g} ~঻~5ţ6x M.<8z4U(6)=160Yw춛r6G!k{(Fo.}{˅?(~Aѭ9&@)A/7SՅFSA^@؎ H!S0?(DpKCs-T0δFrYp. BTϨ0#"Ó S:Tm>Oz0t":U_r_O7 [ho"l%ŲI{ٌ9o(UFwyڐf)AJ`"ϯaaPhtޓL&JLVA S_O艹ũ.ʥW[_}x dbz^GCX쎢QX4f)n ه_h%9p"^xh1uJ{Og!Nbw& 鞄GݪM@Q&^|iSatbfXqLG"{K Rd_%;iH21fJarn2:6A\fF¯x\h8oe&שKI3(0\y8;!DU5zFRꋇ3>]~N`*ŷlIc./Le4x}LIL`G_rox1Asb%Nx+4)/ mi3vLvTVP?d^z%/OrP݌oHF&]EAuP|li_A{^;N߲h4 i]eI AdDo*9wwc`V3\ W6G֝|P ^8mhx+CbאFtGpdi#vEr4|f,G(c /d2qQH4kZZSxvO!>tZn_dRByK_'OF #uB%{80T7YR.݈>+Է*ВkOB:"-Y-Y*ys^xE|3w0ݶ6OWťڑ8O[`+%$g" xGepj ݺr2F‰ WU't&"1?r[0y z?mambUg`Yiy~DyOe_q&OqE VxS=*{0 h՛3\+{MK[^ .܎([_܎GKCaDfx?8/'CQ$H6&DrL%ೝt $:kl-wWwWuWWGvb= .9r|ԃcmat|1!la&0BQeä+zg4cNui, 0Qaҭտ4= >*V*zXs7薖4;`1*}6qn8e%]t f3V]*"j_Ͽ'`Vm fv-GoO i(d &[~̇^xjځ(y]fzoʏe,7iސ U F;"XuDtqYA⢣סdv0E 2.tiKdqy@ֲg!,N?@ZNMas%E(h>z0.F`E(;ƹ߻T /}` %2(fzK@a~=&lrSd^ZBRoO۟l!x:{+Ӈz20%%E,HQ Qr懋j@$4DX(p>~i*/Slyo~WeɟbǗl}7ɂ- S;nݝpG&$ 5ͻ[6ɯmrϊ"3\$9.!  P)=MrవVOn<6` *KwWT`qa(}<3Ɇ ,Plخ#yB:,qiYB eSֿȾ3h1H>>iDKc'J9C|g\*L~Hp&T $k[2EALhexT|˶YҜ<7q4Q~ӌ!|+#h%|G2*bPVU6YqDHup*f_x}u!l׿ڭͶ^tmԾxeF/ʸty2]s]Y-1AijU8>-K|_}^x@B t[=n쫹=~'*!y\,cu^c+>C_ᕿD'Q`^n/ )`kd 7 : R߀\#Y´% @Z"#d Ƞ!S=a8n9!=j^h:ippq^O}3ǃ5 tVP@ӗ*jI\I?ǃƏ߸H !4]rXfr׆0} 3_ J}SAb׆V 51\O63Bw͡!dUb|ȱ%蟡f D""2J{! OF4a.(J("8VL<*H^ -W?jdcK~bqO:;f.b\ .#VުjaVUK-5u[{oAkDV@G˵zN9Eˇ|~rɹqzOq# ѽjUW$<1ǐ B5<$_`ŧi}$4Dr+0,4į-+L>8ٚN6 $ `'Y#{7: k.\20:u'͈lZǜh+0ؒ{qǶfv_9G2 w9*ںZjy]O,FKkZM9aݏmrfizֿɛI տjX5fg]ݓq+c%z=06TV|8 vSillTh w 1IqU@e\+$R󽖪o*j{ .V/]+&xۚEgoA[L_1L/PQɺ_u+['P.4e@s/rQCZѤFR#sTWf8-7:knTöe At; zpB<1 c̚pBL ,%^,|a|䤓 eis̞]|N90 ז!+ëmy rVGxO›"^l4YK XâxYŏ> 7D0vZ+&1hI>REBwfPKvZ-MАE9O(4c(b(0aጄ)D4zcmR?"` y1e1#X`C1CB8 iuĸ{YWFm (qH f 6"9WEN(q(N#&v?6??8zvQ""hjw ,!*.30WEq'$F @];NLPVp h&+ƿT<x߂8i"pЭi3m"22 ?7G|ՙ#N+lBeYX=4U۷ggcyLH g2ŕ=兠\޵ϝ5؎YMX'" f%ls1; ;Pmj ªj՗y վ~)|uXm.I5#ъXNmyhc6hN_PKwZ<9RV#IAR-STR912/micrium/.svn/all-wcpropsUT LjKLjKux V02*.˳*O*JOI,*K-*-- S03'+ELKJ rKr=tC, s32Ks\\ gnH}`f PK vZ<IAR-STR912/micrium/.svn/props/UT LjKʈKux PK wZ<IAR-STR912/micrium/.svn/tmp/UT LjKʈKux PK vZ<&IAR-STR912/micrium/.svn/tmp/prop-base/UT LjKʈKux PK vZ<&IAR-STR912/micrium/.svn/tmp/text-base/UT LjKʈKux PK vZ<"IAR-STR912/micrium/.svn/tmp/props/UT LjKʈKux PKvZ-MАE9O(4c(b(0aጄ)D4zcmR?"` y1e1#X`C1CB8 iuĸ{YWFm (qH f 6"9WEN(q(N#&v?6??8zvQ""hjw ,!*.30WEq'$F @];NLPVp h&+ƿT<x߂8i"pЭi3m"22 ?7G|ՙ#N+lBeYX=4U۷ggcyLH g2ŕ=兠\޵ϝ5؎YMX'" f%ls1; ;Pmj ªj՗y վ~)|uXm.I5#ъXNmyhc6hN_PKxZ<:uaIAR-STR912/91x_conf.hUT LjKLjKux WMo8ƒFKET^Jt֖RYlP]k*Х}yf81owƓ}e]a>J*|c'a/%DJn',gB6cY<=-YVeBf+EZh9Wdr`4*>US#S*^@TM3 u]V/778B⿛_}]*>IB9x$HBg(N`2D.8 2EcpS.&7axH#H$D{+8 N<4[ oxj4H∹OXOFm$ItKs"8wH ɘP&HT(7h00Ji* oFSlڮ$ BQu #Z Ym #AXD=PBIE[Ev6EvOD}b.0WM)AS^Hzz2*ṬA^fr.乜,j%,|΋/Tjm`>|Uv"hKxlˎ+fE!Vr8].EqC!x:̊oQ}K/qԔ-uҾRH5JaW :t`nxz!EԠa[Î5|K _iZ5ɸDO!(]8섐h %i5R^Q5hiְcnl"OaD}RޓT{ (ŜU!Uǖn8Јvϋ~#UðpD˺Ζ,f/WHx>L{sq\ZY5ר;u }oYvW4&m.w:? MX&qdKC_0SXa |PNaj,QȿvLLbnQԄ?}O"ݕpP.A- pJBW8 u)$Zl1߽j9M='Y99 *|g˔ex9=(5)x Sr4{<ꃽjJ2k ȸlhB8$oIvx V| ~??Rm(c/RuE8y/D75n{_PKxZO.v60<> RRJVet3(tW:ҨE%a:V"TQEvR X]7bz4$vBZ18<6QX ѳV*!eR yWQE)CS/n4<+Z@SUܤ r j!@ȅɺa"Sp=@獄B-ƒ=C;\-D 8]dxDYFgR`ZfeQ-F1Y+3>*E֙AciY{I%AU6G˘4@EC ~#| :AFܮAU39͵q x/qI 9.ٲ?>1ZÉ~t8ԫ*>}}Z?!c>0IhJ#i<3P7(Nl|y(GM||7My$cՋM0@H8#HIL+NzMd!%8 !Ԅ$!@#%1 Ǔ8b^ D1S c0rPDGd;8J3OBrF>p ^:OX=840G7tܞ0?j=40T1i #NXD}4P/l0)$Eh̗ ~>;dMnsq`~5n֯Tu}>i^+ٴO”VDU)Gب͞DF/;BwU1n?t@-5Ca7BHPJ*ǰohl;g*syǰ#vnT9yç3 uZߟxF^Q+w][.w;mT$L$|>w> wgnm{:K~h^8K]t<~۹A?Soʛ vQ;w_$ez?$=ȇM]{$;um{N=܄lnRﺶqID6F.|G6:g6F.|˧6l:Z&-v(9Z,y'M'=ּVI~˷=ּV;K.M]'umMǹ0um\g}b[_xſoy59xm0kr#V0?DxMmKdt~f݄ uo2|' zPKxZOVs/B1˖Φ?vpolx,*}oFv6eb;/fZA8L'htO+W?7MO\t{_%q9qv&LAXPM9۝$3O@-XcV^z!TώD>Qd$7y0Eġ{cDݛRw' v۰{y 0_r|cd l a.vt{^qNPKxZ<=ۿ [IAR-STR912/IAR-STR912-Lib.ewpUT LjKLjKux \msڸ|wfOw[0acz LF¨5,~%ټI{ib[>Αttyd- Mi7> {w7_?bJAjMQ[/ǹ.ꋽ#.A$s  .+%6c%c7kճ[T'N(a vPw">VЀ{؃xz$ڊ Sf-3(eVO76_QdM ~ks7e'J6*?Bva@Q0W(kPا X9Fa]E`qPTӟ=&ZifbG֎`_~hƫ sf+Z3Ho-7?S7^mZIDŽ2ymF MLVL9p`%>ӷ+o6KkdQFյ8r+w6_å7٭7R^P>]|o8h]ATvͮ}l4Kud~_I{(ͱ$ qBk>2 AO?Fc+k+c'Zziy,,eu )1ǯwJSǒ>_IeC%//' %KJ9SepwE>AY:B! 3`p\w" `=f-`oFe%FC(ZB M"q.6r<ۯⴂEٕh%?Ců~rUn'c>7sݜ!m̋GE+ h5Y;hڬ`VrxIJZ /p^'j~/geUc1}՘ɄIK1Fa0%"9fT"d+s&G9}Y /Kr6*(ϋ'w+/ a1cczW)Ji o: UVh'P, =9IB*i.![7@ c0/]|N (AՂ"cl^;3Q N59OS]B[9brO6+1m9 1p3D3h9 qc ; 2 c~?ϑ @nequy?oDlX.U(h @YɸEp5IGru½r/x.H+UGc`?"._~}M{]1׽tܱ׿98]x1JEZ#`& `Yk';h7l! Nj"ǧ.xlKUw=dݴdJ>=(] -`bx^#@^dӘx4Ȝ&1{Ш}ۅ "4'Bah6/+A2%U TsO˂l1 È!䓒zW 捖?=;hxHgqjG4aˇ3\CTcgXjHKU(4$JpĎe%@e:pDޔ8'nxZJs8+ ꤌpW $# ( )w0O]0)2]᙮E>Z}9%:\M %V ꐶXߵR}z?e/Mn+~+PxgZBlqJJea75*Ӄ맢bӂڝ:rw JKW`s^Wsh{9rtw3&3t?{w/Xѐ?&A_/1[F:2ߋ^n~bȽ bМjkf)j՟iRƫ4y  ӽn%K;E~mWf/<}9=| @!8GzMu cDPBMMS@wj!4!4JT$CB)PZ M~ BMPɰUzH1_V[EZz&H-_Bjm}WCMVkn`p>Qz7PK xZ< AIAR-STR912/UTLjKux PKxZIAR-STR912/startup/.svn/UTLjKux PKvZ< 98$IAR-STR912/startup/.svn/entriesUTLjKux PK vZ<"AIAR-STR912/startup/.svn/prop-base/UTLjKux PK vZ<"AE IAR-STR912/startup/.svn/text-base/UTLjKux PKvZ<: T5$ IAR-STR912/startup/.svn/text-base/91x_vect.s.svn-baseUTLjKux PKvZIAR-STR912/CppUTest-STR912-Main.ewdUTLjKux PKxZ$yIAR-STR912/examples/WDG/polling/.svn/text-base/main.c.svn-baseUTLjKux PKwZ<94OL0$IAR-STR912/examples/WDG/polling/.svn/all-wcpropsUTLjKux PK wZ<+ANIAR-STR912/examples/WDG/polling/.svn/props/UTLjKux PK wZ<)AIAR-STR912/examples/WDG/polling/.svn/tmp/UTLjKux PK wZ<3AIAR-STR912/examples/WDG/polling/.svn/tmp/prop-base/UTLjKux PK wZ<3AIAR-STR912/examples/WDG/polling/.svn/tmp/text-base/UTLjKux PK wZ</AIAR-STR912/examples/WDG/polling/.svn/tmp/props/UTLjKux PKwZ<2j &YIAR-STR912/examples/WDG/polling/main.cUTLjKux PKwZ<7Jo*IAR-STR912/examples/WDG/polling/91x_conf.hUTLjKux PKwZ[IAR-STR912/examples/TIM/PWM/.svn/text-base/tim_pwm.eww.svn-baseUTLjKux PKxZ<էqiL?$6\IAR-STR912/examples/TIM/PWM/.svn/text-base/tim_pwm.ewp.svn-baseUTLjKux PKxZ<~>$eIAR-STR912/examples/TIM/PWM/.svn/text-base/Readme.txt.svn-baseUTLjKux PKxZ$|hIAR-STR912/examples/TIM/PWM/.svn/text-base/91x_conf.h.svn-baseUTLjKux PKxZ,$`IAR-STR912/examples/TIM/OPM-PWM/.svn/entriesUTLjKux PK xZ</AyIAR-STR912/examples/TIM/OPM-PWM/.svn/prop-base/UTLjKux PK xZ</AIAR-STR912/examples/TIM/OPM-PWM/.svn/text-base/UTLjKux PKxZ$IAR-STR912/examples/TIM/OPM-PWM/.svn/text-base/main.c.svn-baseUTLjKux PKxZIAR-STR912/examples/UART/.svn/text-base/uart.ewp.svn-baseUTLjKux PKxZ<Ɲ- ;$ IAR-STR912/examples/UART/.svn/text-base/Readme.txt.svn-baseUTLjKux PKxZ<:ua;$IAR-STR912/examples/UART/.svn/text-base/91x_conf.h.svn-baseUTLjKux PKxZ$/IAR-STR912/examples/ADC/polling/.svn/text-base/main.c.svn-baseUTLjKux PKxZ<L0$}6IAR-STR912/examples/ADC/polling/.svn/all-wcpropsUTLjKux PK xZ<+A7IAR-STR912/examples/ADC/polling/.svn/props/UTLjKux PK xZ<)A8IAR-STR912/examples/ADC/polling/.svn/tmp/UTLjKux PK xZ<3A8IAR-STR912/examples/ADC/polling/.svn/tmp/prop-base/UTLjKux PK xZ<3A8IAR-STR912/examples/ADC/polling/.svn/tmp/text-base/UTLjKux PK xZ</A\9IAR-STR912/examples/ADC/polling/.svn/tmp/props/UTLjKux PKxZIAR-STR912/examples/.svn/tmp/text-base/UTLjKux PK wZ<#AIAR-STR912/examples/.svn/tmp/props/UTLjKux PKxZ<*Sp IAR-STR912/examples/examples.ewwUTLjKux PK wZ<AIAR-STR912/examples/MC/UTLjKux PKwZ< 2m XtL7IAR-STR912/examples/MC/mc.ewpUTLjKux PKwZIIAR-STR912/examples/DMA/dma.ewpUTLjKux PKwZIAR-STR912/source/91x_adc.cUTLjKux PK yZ<ALIAR-STR912/source/.svn/UTLjKux PKvZIAR-STR912/include/.svn/props/UTLjKux PK vZ<AIAR-STR912/include/.svn/tmp/UTLjKux PK vZ<&AIAR-STR912/include/.svn/tmp/prop-base/UTLjKux PK vZ<&ALIAR-STR912/include/.svn/tmp/text-base/UTLjKux PK vZ<"AIAR-STR912/include/.svn/tmp/props/UTLjKux PKvZGetDateTime()); } cpputest-3.4/scripts/CppUnitTemplates/ProjectTemplate/tests/AllTests.cpp0000644000175300017530000000021612023251675023613 00000000000000 #include "CppUTest/CommandLineTestRunner.h" int main(int ac, char** av) { return CommandLineTestRunner::RunAllTests(ac, av); } cpputest-3.4/scripts/CppUnitTemplates/ProjectTemplate/ProjectMakefile0000644000175300017530000000240712023251675023205 00000000000000#Set this to @ to keep the makefile quiet SILENCE = @ #---- Outputs ----# COMPONENT_NAME = Project TARGET_LIB = \ lib/lib$(COMPONENT_NAME).a TEST_TARGET = \ $(COMPONENT_NAME)_tests #--- Inputs ----# PROJECT_HOME_DIR = . CPPUTEST_HOME = ../CppUTest CPPUNIT_HOME = ../cppunit CPP_PLATFORM = Gcc #CFLAGS are set to override malloc and free to get memory leak detection in C programs CFLAGS = -Dmalloc=cpputest_malloc -Dfree=cpputest_free CPPFLAGS = #GCOVFLAGS = -fprofile-arcs -ftest-coverage #SRC_DIRS is a list of source directories that make up the target library #If test files are in these directories, their IMPORT_TEST_GROUPs need #to be included in main to force them to be linked in. By convention #put them into an AllTests.h file in each directory SRC_DIRS = \ src/util #TEST_SRC_DIRS is a list of directories including # - A test main (AllTests.cpp by convention) # - OBJ files in these directories are included in the TEST_TARGET # - Consequently - AllTests.h containing the IMPORT_TEST_GROUPS is not needed # - TEST_SRC_DIRS = \ tests \ tests/util #includes for all compiles INCLUDES =\ -I.\ -Iinclude/util\ -I$(CPPUTEST_HOME)/include/ #Flags to pass to ld LDFLAGS += $(CPPUNIT_HOME)/lib/libcppunit.a include $(CPPUTEST_HOME)/build/ComponentMakefile cpputest-3.4/scripts/CppUnitTemplates/ClassName.cpp0000644000175300017530000000013312023251675017460 00000000000000#include "ClassName.h" ClassName::ClassName() { } ClassName::~ClassName() { } cpputest-3.4/scripts/CppUnitTemplates/ClassName.h0000644000175300017530000000073412023251675017134 00000000000000#ifndef D_ClassName_H #define D_ClassName_H /////////////////////////////////////////////////////////////////////////////// // // ClassName is responsible for ... // /////////////////////////////////////////////////////////////////////////////// class ClassName { public: explicit ClassName(); virtual ~ClassName(); private: ClassName(const ClassName&); ClassName& operator=(const ClassName&); }; #endif // D_ClassName_H cpputest-3.4/scripts/CppUnitTemplates/ClassNameC.c0000644000175300017530000000025712023251675017232 00000000000000#include "ClassName.h" #include #include //static local variables void ClassName_Create(void) { } void ClassName_Destroy(void) { } cpputest-3.4/scripts/CppUnitTemplates/ClassNameC.h0000644000175300017530000000053112023251675017232 00000000000000#ifndef D_ClassName_H #define D_ClassName_H /////////////////////////////////////////////////////////////////////////////// // // ClassName is responsible for ... // /////////////////////////////////////////////////////////////////////////////// void ClassName_Create(void); void ClassName_Destroy(void); #endif // D_ClassName_H cpputest-3.4/scripts/CppUnitTemplates/ClassNameCMultipleInstance.c0000644000175300017530000000061612023251675022432 00000000000000#include "ClassName.h" #include #include //static local variables typedef struct _ClassName { int placeHolderForHiddenStructElements; }; ClassName* ClassName_Create(void) { ClassName* self = malloc(sizeof(ClassName)); memset(self, 0, sizeof(ClassName)); return self; } void ClassName_Destroy(ClassName* self) { free(self); } cpputest-3.4/scripts/CppUnitTemplates/ClassNameCMultipleInstance.h0000644000175300017530000000070112023251675022432 00000000000000#ifndef D_ClassName_H #define D_ClassName_H /////////////////////////////////////////////////////////////////////////////// // // ClassName is responsible for ... // /////////////////////////////////////////////////////////////////////////////// typedef struct _ClassName Classname; ClassName* ClassName_Create(void); void ClassName_Destroy(ClassName*); void ClassName_VirtualFunction_impl(ClassName*); #endif // D_ClassName_H cpputest-3.4/scripts/CppUnitTemplates/ClassNameCMultipleInstanceTest.cpp0000644000175300017530000000125712023251675023634 00000000000000#include "CppUTest/TestHarness.h" static int fakeRan = 0; extern "C" { #include "ClassName.h" void virtualFunction_renameThis_fake(ClassName*) { fakeRan = 1; } } TEST_GROUP(ClassName) { ClassName* aClassName; void setup() { aClassName = ClassName_Create(); fakeRan = 0; aClassName->virtualFunction_renameThis = virtualFunction_renameThis_fake; } void teardown() { ClassName_Destroy(aClassName); } }; TEST(ClassName, Fake) { aClassName->virtualFunction_renameThis(aClassName); LONGS_EQUAL(1, fakeRan); } TEST(ClassName, Create) { FAIL("Start here"); } cpputest-3.4/scripts/CppUnitTemplates/ClassNameCPolymorphic.c0000644000175300017530000000061612023251675021457 00000000000000#include "ClassName.h" #include #include //static local variables typedef struct _ClassName { int placeHolderForHiddenStructElements; }; ClassName* ClassName_Create(void) { ClassName* self = malloc(sizeof(ClassName)); memset(self, 0, sizeof(ClassName)); return self; } void ClassName_Destroy(ClassName* self) { free(self); } cpputest-3.4/scripts/CppUnitTemplates/ClassNameCPolymorphic.h0000644000175300017530000000071112023251675021460 00000000000000#ifndef D_ClassName_H #define D_ClassName_H /////////////////////////////////////////////////////////////////////////////// // // ClassName is responsible for ... // /////////////////////////////////////////////////////////////////////////////// typedef struct _ClassName ClassnamePiml; ClassName* ClassName_Create(void); void ClassName_Destroy(ClassName*); void ClassName_VirtualFunction_impl(ClassName*); #endif // D_ClassName_H cpputest-3.4/scripts/CppUnitTemplates/ClassNameCTest.cpp0000644000175300017530000000045212023251675020427 00000000000000#include "CppUTest/TestHarness.h" extern "C" { #include "ClassName.h" } TEST_GROUP(ClassName) { void setup() { ClassName_Create(); } void teardown() { ClassName_Destroy(); } }; TEST(ClassName, Create) { FAIL("Start here"); } cpputest-3.4/scripts/CppUnitTemplates/ClassNameTest.cpp0000644000175300017530000000105212023251675020321 00000000000000#include #include #include "ClassName.h" class ClassNameTest: public CPPUNIT_NS::TestFixture { CPPUNIT_TEST_SUITE(ClassNameTest); CPPUNIT_TEST(testCreate); CPPUNIT_TEST_SUITE_END(); ClassName* aClassName; public: void setUp() { aClassName = new ClassName(); } void tearDown() { delete aClassName; } void testCreate() { CPPUNIT_FAIL("Start here"); } }; CPPUNIT_TEST_SUITE_REGISTRATION(ClassNameTest); cpputest-3.4/scripts/CppUnitTemplates/InterfaceCTest.cpp0000644000175300017530000000046012023251675020460 00000000000000#include "CppUTest/TestHarness.h" extern "C" { #include "FakeClassName.h" } TEST_GROUP(FakeClassName) { void setup() { ClassName_Create(); } void teardown() { ClassName_Destroy(); } }; TEST(FakeClassName, Create) { FAIL("Start here"); } cpputest-3.4/scripts/CppUnitTemplates/InterfaceTest.cpp0000644000175300017530000000127512023251675020362 00000000000000#include #include #include "ClassName.h" #include "MockClassName.h" class MockClassNameTest: public CPPUNIT_NS::TestFixture { CPPUNIT_TEST_SUITE(MockClassNameTest); CPPUNIT_TEST(testCreate); CPPUNIT_TEST_SUITE_END(); ClassName* aClassName; MockClassName* mockClassName; public: void setUp() { mockClassName = new MockClassName(); aClassName = mockClassName; } void tearDown() { delete aClassName; } void testCreate() { CPPUNIT_FAIL("Start here"); } }; CPPUNIT_TEST_SUITE_REGISTRATION(MockClassNameTest); cpputest-3.4/scripts/CppUnitTemplates/MockClassName.h0000644000175300017530000000117412023251675017745 00000000000000#ifndef D_MockClassName_H #define D_MockClassName_H /////////////////////////////////////////////////////////////////////////////// // // MockClassName.h // // MockClassName is responsible for providing a test stub for ClassName // /////////////////////////////////////////////////////////////////////////////// #include "ClassName.h" class MockClassName : public ClassName { public: explicit MockClassName() {} virtual ~MockClassName() {} private: MockClassName(const MockClassName&); MockClassName& operator=(const MockClassName&); }; #endif // D_MockClassName_H cpputest-3.4/scripts/CppUnitTemplates/MockClassNameC.c0000644000175300017530000000025712023251675020044 00000000000000#include "ClassName.h" #include #include //static local variables void ClassName_Create(void) { } void ClassName_Destroy(void) { } cpputest-3.4/scripts/CppUnitTemplates/MockClassNameC.h0000644000175300017530000000057512023251675020054 00000000000000#ifndef D_FakeClassName_H #define D_FakeClassName_H /////////////////////////////////////////////////////////////////////////////// // // FakeClassName.h // // FakeClassName is responsible for providing a test stub for ClassName // /////////////////////////////////////////////////////////////////////////////// #include "ClassName.h" #endif // D_FakeClassName_H cpputest-3.4/scripts/templates/0000755000175300017530000000000012143642714013727 500000000000000cpputest-3.4/scripts/templates/ProjectTemplate/0000755000175300017530000000000012143642714017031 500000000000000cpputest-3.4/scripts/templates/ProjectTemplate/include/0000755000175300017530000000000012143642712020452 500000000000000cpputest-3.4/scripts/templates/ProjectTemplate/include/util/0000755000175300017530000000000012143642714021431 500000000000000cpputest-3.4/scripts/templates/ProjectTemplate/include/util/ProjectBuildTime.h0000644000175300017530000000122312023251675024724 00000000000000#ifndef D_ProjectBuildTime_H #define D_ProjectBuildTime_H /////////////////////////////////////////////////////////////////////////////// // // ProjectBuildTime is responsible for recording and reporting when // this project library was built // /////////////////////////////////////////////////////////////////////////////// class ProjectBuildTime { public: explicit ProjectBuildTime(); virtual ~ProjectBuildTime(); const char* GetDateTime(); private: const char* dateTime; ProjectBuildTime(const ProjectBuildTime&); ProjectBuildTime& operator=(const ProjectBuildTime&); }; #endif // D_ProjectBuildTime_H cpputest-3.4/scripts/templates/ProjectTemplate/src/0000755000175300017530000000000012143642712017616 500000000000000cpputest-3.4/scripts/templates/ProjectTemplate/src/util/0000755000175300017530000000000012143642714020575 500000000000000cpputest-3.4/scripts/templates/ProjectTemplate/src/util/ProjectBuildTime.cpp0000644000175300017530000000033412023251675024425 00000000000000#include "ProjectBuildTime.h" ProjectBuildTime::ProjectBuildTime() : dateTime(__DATE__ " " __TIME__) { } ProjectBuildTime::~ProjectBuildTime() { } const char* ProjectBuildTime::GetDateTime() { return dateTime; } cpputest-3.4/scripts/templates/ProjectTemplate/tests/0000755000175300017530000000000012143642714020173 500000000000000cpputest-3.4/scripts/templates/ProjectTemplate/tests/util/0000755000175300017530000000000012143642714021150 500000000000000cpputest-3.4/scripts/templates/ProjectTemplate/tests/util/ProjectBuildTimeTest.cpp0000644000175300017530000000053312023251675025641 00000000000000#include "CppUTest/TestHarness.h" #include "ProjectBuildTime.h" TEST_GROUP(ProjectBuildTime) { ProjectBuildTime* projectBuildTime; void setup() { projectBuildTime = new ProjectBuildTime(); } void teardown() { delete projectBuildTime; } }; TEST(ProjectBuildTime, Create) { CHECK(0 != projectBuildTime->GetDateTime()); } cpputest-3.4/scripts/templates/ProjectTemplate/tests/AllTests.cpp0000644000175300017530000000021612023251675022350 00000000000000 #include "CppUTest/CommandLineTestRunner.h" int main(int ac, char** av) { return CommandLineTestRunner::RunAllTests(ac, av); } cpputest-3.4/scripts/templates/ProjectTemplate/Project.cproject0000644000175300017530000004303312023251675022114 00000000000000 cpputest-3.4/scripts/templates/ProjectTemplate/Project.project0000644000175300017530000000430312023251675021746 00000000000000 Project org.eclipse.cdt.managedbuilder.core.genmakebuilder ?name? org.eclipse.cdt.make.core.append_environment true org.eclipse.cdt.make.core.autoBuildTarget all org.eclipse.cdt.make.core.buildArguments org.eclipse.cdt.make.core.buildCommand make org.eclipse.cdt.make.core.cleanBuildTarget clean org.eclipse.cdt.make.core.contents org.eclipse.cdt.make.core.activeConfigSettings org.eclipse.cdt.make.core.enableAutoBuild true org.eclipse.cdt.make.core.enableCleanBuild true org.eclipse.cdt.make.core.enableFullBuild true org.eclipse.cdt.make.core.fullBuildTarget all org.eclipse.cdt.make.core.stopOnError true org.eclipse.cdt.make.core.useDefaultBuildCmd true org.eclipse.cdt.managedbuilder.core.ScannerConfigBuilder org.eclipse.cdt.core.cnature org.eclipse.cdt.core.ccnature org.eclipse.cdt.managedbuilder.core.managedBuildNature org.eclipse.cdt.managedbuilder.core.ScannerConfigNature cpputest-3.4/scripts/templates/ProjectTemplate/ProjectMakefile0000644000175300017530000000136212023251675021741 00000000000000#Set this to @ to keep the makefile quiet SILENCE = @ #---- Outputs ----# COMPONENT_NAME = Project #Set this to @ to keep the makefile quiet SILENCE = @ #--- Inputs ----# PROJECT_HOME_DIR = . ifeq "$(CPPUTEST_HOME)" "" CPPUTEST_HOME = ../CppUTest endif CPP_PLATFORM = Gcc SRC_DIRS = \ src\ src/* # to pick specific files (rather than directories) use this: SRC_FILES = TEST_SRC_DIRS = \ tests \ tests/* MOCKS_SRC_DIRS = \ mocks \ INCLUDE_DIRS =\ .\ include \ include/* \ $(CPPUTEST_HOME)/include/ \ $(CPPUTEST_HOME)/include/Platforms/Gcc\ mocks CPPUTEST_WARNINGFLAGS = -Wall -Werror -Wswitch-default CPPUTEST_WARNINGFLAGS += -Wconversion -Wswitch-enum include $(CPPUTEST_HOME)/build/MakefileWorker.mk cpputest-3.4/scripts/templates/ClassName.cpp0000644000175300017530000000013312023251675016215 00000000000000#include "ClassName.h" ClassName::ClassName() { } ClassName::~ClassName() { } cpputest-3.4/scripts/templates/ClassName.h0000644000175300017530000000073412023251675015671 00000000000000#ifndef D_ClassName_H #define D_ClassName_H /////////////////////////////////////////////////////////////////////////////// // // ClassName is responsible for ... // /////////////////////////////////////////////////////////////////////////////// class ClassName { public: explicit ClassName(); virtual ~ClassName(); private: ClassName(const ClassName&); ClassName& operator=(const ClassName&); }; #endif // D_ClassName_H cpputest-3.4/scripts/templates/ClassNameC.c0000644000175300017530000000014712023251675015765 00000000000000#include "ClassName.h" void ClassName_Create(void) { } void ClassName_Destroy(void) { } cpputest-3.4/scripts/templates/ClassNameC.h0000644000175300017530000000047212023251675015773 00000000000000#ifndef D_ClassName_H #define D_ClassName_H /********************************************************** * * ClassName is responsible for ... * **********************************************************/ void ClassName_Create(void); void ClassName_Destroy(void); #endif /* D_FakeClassName_H */ cpputest-3.4/scripts/templates/ClassNameCIoDriver.c0000644000175300017530000000015412023251675017427 00000000000000#include "ClassName.h" #include "IO.h" void ClassName_Create(void) { } void ClassName_Destroy(void) { } cpputest-3.4/scripts/templates/ClassNameCIoDriver.h0000644000175300017530000000050112023251675017430 00000000000000#ifndef D_ClassName_H #define D_ClassName_H /********************************************************** * * ClassName is responsible for ... * **********************************************************/ #include void ClassName_Create(void); void ClassName_Destroy(void); #endif /* D_FakeClassName_H */ cpputest-3.4/scripts/templates/ClassNameCIoDriverTest.cpp0000644000175300017530000000052612023251675020632 00000000000000extern "C" { #include "ClassName.h" #include "MockIO.h" } #include "CppUTest/TestHarness.h" TEST_GROUP(ClassName) { void setup() { Reset_Mock_IO(); ClassName_Create(); } void teardown() { ClassName_Destroy(); Assert_No_Unused_Expectations(); } }; TEST(ClassName, Create) { FAIL("Start here"); } cpputest-3.4/scripts/templates/ClassNameCMultipleInstance.c0000644000175300017530000000054512023251675021170 00000000000000#include "ClassName.h" #include #include typedef struct ClassNameStruct { int placeHolderForHiddenStructElements; } ClassNameStruct; ClassName ClassName_Create(void) { ClassName self = calloc(1, sizeof(ClassNameStruct)); return self; } void ClassName_Destroy(ClassName self) { free(self); } cpputest-3.4/scripts/templates/ClassNameCMultipleInstance.h0000644000175300017530000000061212023251675021170 00000000000000#ifndef D_ClassName_H #define D_ClassName_H /********************************************************************** * * ClassName is responsible for ... * **********************************************************************/ typedef struct ClassNameStruct * ClassName; ClassName ClassName_Create(void); void ClassName_Destroy(ClassName); #endif /* D_FakeClassName_H */ cpputest-3.4/scripts/templates/ClassNameCMultipleInstanceTest.cpp0000644000175300017530000000047312023251675022370 00000000000000extern "C" { #include "ClassName.h" } #include "CppUTest/TestHarness.h" TEST_GROUP(ClassName) { ClassName aClassName; void setup() { aClassName = ClassName_Create(); } void teardown() { ClassName_Destroy(aClassName); } }; TEST(ClassName, Create) { FAIL("Start here"); } cpputest-3.4/scripts/templates/ClassNameCPolymorphic.c0000644000175300017530000000056312023251675020215 00000000000000#include "ClassName.h" #include #include typedef struct ClassName { int placeHolderForHiddenStructElements; }; ClassName* ClassName_Create(void) { ClassName* self = malloc(sizeof(ClassName)); memset(self, 0, sizeof(ClassName)); return self; } void ClassName_Destroy(ClassName* self) { free(self); } cpputest-3.4/scripts/templates/ClassNameCPolymorphic.h0000644000175300017530000000064312023251675020221 00000000000000#ifndef D_ClassName_H #define D_ClassName_H /********************************************************** * * ClassName is responsible for ... * **********************************************************/ typedef struct ClassName ClassNamePiml; ClassName* ClassName_Create(void); void ClassName_Destroy(ClassName*); void ClassName_VirtualFunction_impl(ClassName*); #endif /* D_FakeClassName_H */ cpputest-3.4/scripts/templates/ClassNameCTest.cpp0000644000175300017530000000044612023251675017167 00000000000000extern "C" { #include "ClassName.h" } #include "CppUTest/TestHarness.h" TEST_GROUP(ClassName) { void setup() { ClassName_Create(); } void teardown() { ClassName_Destroy(); } }; TEST(ClassName, Create) { FAIL("Start here"); } cpputest-3.4/scripts/templates/ClassNameTest.cpp0000644000175300017530000000054312023251675017062 00000000000000#include "ClassName.h" //CppUTest includes should be after your and system includes #include "CppUTest/TestHarness.h" TEST_GROUP(ClassName) { ClassName* aClassName; void setup() { aClassName = new ClassName(); } void teardown() { delete aClassName; } }; TEST(ClassName, Create) { FAIL("Start here"); } cpputest-3.4/scripts/templates/FunctionNameC.c0000644000175300017530000000006212023251675016501 00000000000000#include "ClassName.h" void ClassName() { } cpputest-3.4/scripts/templates/FunctionNameC.h0000644000175300017530000000042012023251675016504 00000000000000#ifndef D_ClassName_H #define D_ClassName_H /********************************************************** * * ClassName is responsible for ... * **********************************************************/ void ClassName(); #endif /* D_FakeClassName_H */ cpputest-3.4/scripts/templates/FunctionNameCTest.cpp0000644000175300017530000000035612023251675017707 00000000000000extern "C" { #include "ClassName.h" } #include "CppUTest/TestHarness.h" TEST_GROUP(ClassName) { void setup() { } void teardown() { } }; TEST(ClassName, Create) { FAIL("Start here"); } cpputest-3.4/scripts/templates/InterfaceCTest.cpp0000644000175300017530000000054612023251675017222 00000000000000extern "C" { #include "FakeClassName.h" } //CppUTest includes should be after your and system includes #include "CppUTest/TestHarness.h" TEST_GROUP(ClassName) { void setup() { ClassName_Create(); } void teardown() { ClassName_Destroy(); } }; TEST(ClassName, Create) { FAIL("Start here"); } cpputest-3.4/scripts/templates/InterfaceTest.cpp0000644000175300017530000000061012023251675017107 00000000000000#include "ClassName.h" #include "MockClassName.h" #include "CppUTest/TestHarness.h" TEST_GROUP(ClassName) { ClassName* aClassName; MockClassName* mockClassName; void setup() { mockClassName = new MockClassName(); aClassName = mockClassName; } void teardown() { delete aClassName; } }; TEST(ClassName, Create) { FAIL("Start here"); } cpputest-3.4/scripts/templates/MockClassName.h0000644000175300017530000000117412023251675016502 00000000000000#ifndef D_MockClassName_H #define D_MockClassName_H /////////////////////////////////////////////////////////////////////////////// // // MockClassName.h // // MockClassName is responsible for providing a test stub for ClassName // /////////////////////////////////////////////////////////////////////////////// #include "ClassName.h" class MockClassName : public ClassName { public: explicit MockClassName() {} virtual ~MockClassName() {} private: MockClassName(const MockClassName&); MockClassName& operator=(const MockClassName&); }; #endif // D_MockClassName_H cpputest-3.4/scripts/templates/MockClassNameC.c0000644000175300017530000000014712023251675016577 00000000000000#include "ClassName.h" void ClassName_Create(void) { } void ClassName_Destroy(void) { } cpputest-3.4/scripts/templates/MockClassNameC.h0000644000175300017530000000050512023251675016602 00000000000000#ifndef D_FakeClassName_H #define D_FakeClassName_H /********************************************************** * * FakeClassName is responsible for providing a * test stub for ClassName * **********************************************************/ #include "ClassName.h" #endif /* D_FakeClassName_H */ cpputest-3.4/scripts/UnityTemplates/0000755000175300017530000000000012143642714014720 500000000000000cpputest-3.4/scripts/UnityTemplates/ClassNameCIoDriverTest.cpp0000644000175300017530000000062412023251675021622 00000000000000extern "C" { #include "ClassName.h" #include "MockIO.h" } //CppUTest includes should be after your and system includes #include "CppUTest/TestHarness.h" TEST_GROUP(ClassName) { void setup() { Reset_Mock_IO(); ClassName_Create(); } void teardown() { ClassName_Destroy(); Assert_No_Unused_Expectations(); } }; TEST(ClassName, Create) { FAIL("Start here"); } cpputest-3.4/scripts/UnityTemplates/ClassNameCMultipleInstanceTest.cpp0000644000175300017530000000063012023251675023354 00000000000000extern "C" { #include "ClassName.h" } //CppUTest includes should be after your and system includes #include "CppUTest/TestHarness.h" TEST_GROUP(ClassName) { ClassName aClassName; void setup() { aClassName = ClassName_Create(); } void teardown() { ClassName_Destroy(aClassName); } }; TEST(ClassName, Create) { FAIL("Start here"); } cpputest-3.4/scripts/UnityTemplates/ClassNameCTest.cpp0000644000175300017530000000054412023251675020157 00000000000000extern "C" { #include "ClassName.h" } //CppUTest includes should be after your and system includes #include "CppUTest/TestHarness.h" TEST_GROUP(ClassName) { void setup() { ClassName_Create(); } void teardown() { ClassName_Destroy(); } }; TEST(ClassName, Create) { FAIL("Start here"); } cpputest-3.4/scripts/UnityTemplates/FunctionNameCTest.cpp0000644000175300017530000000045412023251675020677 00000000000000extern "C" { #include "ClassName.h" } //CppUTest includes should be after your and system includes #include "CppUTest/TestHarness.h" TEST_GROUP(ClassName) { void setup() { } void teardown() { } }; TEST(ClassName, Create) { FAIL("Start here"); } cpputest-3.4/scripts/UnityTemplates/InterfaceCTest.cpp0000644000175300017530000000054612023251675020213 00000000000000extern "C" { #include "FakeClassName.h" } //CppUTest includes should be after your and system includes #include "CppUTest/TestHarness.h" TEST_GROUP(ClassName) { void setup() { ClassName_Create(); } void teardown() { ClassName_Destroy(); } }; TEST(ClassName, Create) { FAIL("Start here"); } cpputest-3.4/scripts/VS2010Templates/0000755000175300017530000000000012143642714014443 500000000000000cpputest-3.4/scripts/VS2010Templates/CppUTest_VS2010.props0000664000175300017530000000437412066727207020111 00000000000000 $(CPPUTEST_HOME)\include;$(CPPUTEST_HOME)\include\CppUTestExt\CppUTestGTest;$(CPPUTEST_HOME)\include\CppUTestExt\CppUTestGMock;$(CPPUTEST_HOME)\include\Platforms\VisualCpp $(CPPUTEST_HOME)\lib $(CPPUTEST_HOME)\include\Platforms\VisualCpp\Platform.h;$(CPPUTEST_HOME)\include\CppUTest\MemoryLeakDetectorMallocMacros.h; CppUTest.lib $(CPPUTEST_INCLUDE_PATHS);%(AdditionalIncludeDirectories) $(CPPUTEST_FORCED_INCLUDES);%(ForcedIncludeFiles) $(CPPUTEST_LIB_DEPENDENCIES);%(AdditionalDependencies) $(CPPUTEST_LIB_PATHS);%(AdditionalLibraryDirectories) $(TargetPath) $(CPPUTEST_HOME) true $(CPPUTEST_INCLUDE_PATHS) true $(CPPUTEST_LIB_PATHS) true $(CPPUTEST_FORCED_INCLUDES) true $(CPPUTEST_LIB_DEPENDENCIES) true cpputest-3.4/scripts/VS2010Templates/README.txt0000664000175300017530000000064312066727207016073 00000000000000**Intro** The CppUTest_VS2010.props property sheet sets the needed compiler and linker options for your unit test project. **Instructions** 1) Create a system environment variable, CPPUTEST_HOME and set it to the path of your CppUTest distribution. 2) Add the CppUTest_VS2010.props property sheet to your unit test project and you are good to go. 3) See the WalkThrough_VS2010 guide in the docs section for details. cpputest-3.4/scripts/GenerateSrcFiles.sh0000755000175300017530000000532612023251675015402 00000000000000#!/bin/bash -x #$1 is the template root file name #$2 is the kind of file to create (c or cpp) #$3 is Mock if a mock version should be created, Fake for a fake C version #$4 is the class/module name #$5 is the package name #Test for env var set. checkForCppUTestToolsEnvVariable() { if [ -z "$CPPUTEST_HOME" ] ; then echo "CPPUTEST_HOME not set. You must set CPPUTEST_HOME to the top level CppUTest directory" exit 1 fi if [ ! -d "$CPPUTEST_HOME" ] ; then echo "CPPUTEST_HOME not set to a directory. You must set CPPUTEST_HOME to the top level CppUTest directory" exit 2 fi } checkForCppUTestToolsEnvVariable templateRootName=$1 srcSuffix=$2 mock=$3 className=$4 packageName=$5 testSuffix=Test #CPP_SOURCE_TEMPLATES can point to templates you write #identify the template files if [ "$CPP_SOURCE_TEMPLATES" == "" ] then TEMPLATE_DIR=$CPPUTEST_HOME/scripts/templates else TEMPLATE_DIR=$CPP_SOURCE_TEMPLATES fi templateHFile=$TEMPLATE_DIR/$templateRootName.h templateSrcFile=$TEMPLATE_DIR/$templateRootName.$srcSuffix if [ "$mock" == "Mock" ] ; then templateTestFile=$TEMPLATE_DIR/Interface$testSuffix.cpp elif [ "$mock" == "Fake" ] ; then templateTestFile=$TEMPLATE_DIR/InterfaceC$testSuffix.cpp else templateTestFile=$TEMPLATE_DIR/$templateRootName$testSuffix.cpp fi templateMockFile=$TEMPLATE_DIR/Mock$templateRootName.h #indentify the class and instance names instanceName=$(echo $className | cut -c1 | tr A-Z a-z)$(echo $className | cut -c 2-) className=$(echo $className | cut -c1 | tr a-z A-Z)$(echo $className | cut -c 2-) #if a package is specified, set the directories if [ ! "$packageName" == "" ] then srcDir=src/$packageName/ includeDir=include/$packageName/ testsDir=tests/$packageName/ fi #identify the files being created hFile=${includeDir}${className}.h srcFile=${srcDir}${className}.${srcSuffix} testFile=${testsDir}${className}${testSuffix}.cpp if [ "$mock" != "NoMock" ] ; then mockFile=${testsDir}${mock}${className}.h testFile=${testsDir}${mock}${className}${testSuffix}.cpp if [ "$srcSuffix" == "c" ] ; then srcFile=${testsDir}${mock}${className}.${srcSuffix} fi else mockFile= fi sedCommands="-e s/aClassName/$instanceName/g -e s/ClassName/$className/g" generateFileIfNotAlreadyThere() { if [ -e $2 ] then echo "${2} already exists, skipping" else echo "creating ${2}" sed $sedCommands $1 | tr -d "\r" >$2 fi } generateFileIfNotAlreadyThere $templateHFile $hFile generateFileIfNotAlreadyThere $templateSrcFile $srcFile generateFileIfNotAlreadyThere $templateTestFile $testFile if [ "$mock" != "NoMock" ] ; then generateFileIfNotAlreadyThere $templateMockFile $mockFile # sed $sedCommands $templateMockFile | tr -d "\r" >$mockFile fi cpputest-3.4/scripts/InstallScripts.sh0000755000175300017530000000065012023251675015166 00000000000000#!/bin/bash -x CPPUTEST_HOME=$(pwd)/.. EXE_DIR=${EXE_DIR:-/usr/local/bin} test -f ${EXE_DIR} || mkdir -p ${EXE_DIR} NEW_SCRIPTS="NewCIoDriver NewClass NewInterface NewCModule NewCmiModule NewProject NewLibrary NewPackageDirs NewCInterface NewCFunction NewHelp" for file in $NEW_SCRIPTS ; do rm -f ${EXE_DIR}/${file} ln -s ${CPPUTEST_HOME}/scripts/${file}.sh ${EXE_DIR}/${file} chmod a+x ${EXE_DIR}/${file} done cpputest-3.4/scripts/NewCBaseModule.sh0000755000175300017530000000021312023251675015000 00000000000000#!/bin/bash TEMPLATE_DIR=${CPPUTEST_HOME}/scripts/templates source ${CPPUTEST_HOME}/scripts/GenerateSrcFiles.sh ClassNameC c NoMock $1 $2 cpputest-3.4/scripts/NewCFunction.sh0000755000175300017530000000021612023251675014550 00000000000000#!/bin/bash TEMPLATE_DIR=${CPPUTEST_HOME}/scripts/templates source ${CPPUTEST_HOME}/scripts/GenerateSrcFiles.sh FunctionNameC c NoMock $1 $2 cpputest-3.4/scripts/NewCInterface.sh0000755000175300017530000000021112023251675014656 00000000000000#!/bin/bash TEMPLATE_DIR=${CPPUTEST_HOME}/scripts/templates source ${CPPUTEST_HOME}/scripts/GenerateSrcFiles.sh ClassNameC c Fake $1 $2 cpputest-3.4/scripts/NewCIoDriver.sh0000755000175300017530000000022312023251675014504 00000000000000#!/bin/bash TEMPLATE_DIR=${CPPUTEST_HOME}/scripts/templates source ${CPPUTEST_HOME}/scripts/GenerateSrcFiles.sh ClassNameCIoDriver c NoMock $1 $2 cpputest-3.4/scripts/NewCModule.sh0000755000175300017530000000021312023251675014205 00000000000000#!/bin/bash TEMPLATE_DIR=${CPPUTEST_HOME}/scripts/templates source ${CPPUTEST_HOME}/scripts/GenerateSrcFiles.sh ClassNameC c NoMock $1 $2 cpputest-3.4/scripts/NewClass.sh0000755000175300017530000000021412023251675013723 00000000000000#!/bin/bash TEMPLATE_DIR=${CPPUTEST_HOME}/scripts/templates source ${CPPUTEST_HOME}/scripts/GenerateSrcFiles.sh ClassName cpp NoMock $1 $2 cpputest-3.4/scripts/NewCmiModule.sh0000755000175300017530000000023312023251675014535 00000000000000#!/bin/bash TEMPLATE_DIR=${CPPUTEST_HOME}/scripts/templates source ${CPPUTEST_HOME}/scripts/GenerateSrcFiles.sh ClassNameCMultipleInstance c NoMock $1 $2 cpputest-3.4/scripts/NewHelp.sh0000755000175300017530000000051012023251675013545 00000000000000#!/bin/bash NEW_SCRIPTS=" \ NewClass \ NewInterface \ NewCModule \ NewCmiModule \ NewCInterface \ NewCFunction" for file in $NEW_SCRIPTS ; do echo ${file} name package rm -f ${EXE_DIR}/${file} ln -s ${CPPUTEST_HOME}/scripts/${file}.sh ${EXE_DIR}/${file} chmod a+x ${EXE_DIR}/${file} done cpputest-3.4/scripts/NewInterface.sh0000755000175300017530000000021112023251675014553 00000000000000#!/bin/bash TEMPLATE_DIR=${CPPUTEST_HOME}/scripts/templates source ${CPPUTEST_HOME}/scripts/GenerateSrcFiles.sh ClassName cpp Mock $1 $2 cpputest-3.4/scripts/NewLibrary.sh0000755000175300017530000000164712023251675014275 00000000000000#!/bin/bash -x TEMPLATE_DIR=${CPPUTEST_HOME}/scripts/templates LIBRARY=$1 if [ -e ${LIBRARY} ] ; then echo "The directory ${LIBRARY} already exists" exit 1; fi echo "Copy template project to ${LIBRARY}" cp -R ${TEMPLATE_DIR}/ProjectTemplate/Project ${LIBRARY} find ${LIBRARY} -name \.svn | xargs rm -rf echo "Update to the new LIBRARY name" substituteProjectName="-e s/Project/${LIBRARY}/g -i .bak" cd ${LIBRARY} sed ${substituteProjectName} *.* sed ${substituteProjectName} Makefile for name in BuildTime.h BuildTime.cpp BuildTimeTest.cpp ; do mv Project${name} ${LIBRARY}${name} done cd .. sed -e "s/DIRS = /DIRS = ${LIBRARY} /g" -i .bak Makefile find ${LIBRARY} -name \*.bak | xargs rm -f echo "#include \"../${LIBRARY}/AllTests.h\"" >> AllTests/AllTests.cpp echo "You have to manually add the library reference to the AllTests Makefile" echo "and maybe change the order of the library builds in the main Makefile" cpputest-3.4/scripts/NewPackageDirs.sh0000755000175300017530000000031112023251675015031 00000000000000#!/bin/bash package=$1 for dir in src include tests ; do packageDir=${dir}/${package} if [ ! -d "$packageDir" ] ; then echo "creating $packageDir" mkdir $packageDir fi done cpputest-3.4/scripts/NewProject.sh0000644000175300017530000000210112023251675014256 00000000000000#!/bin/bash PROJECT_NAME=$1 CODE_LEGAL_PROJECT_NAME=$(echo $PROJECT_NAME | sed 's/-/_/g') TEMPLATE_DIR=${CPPUTEST_HOME}/scripts/templates ORIGINAL_DIR=$(pwd) if [ -e ${PROJECT_NAME} ] ; then echo "The directory ${PROJECT_NAME} already exists" exit 1; fi echo "Copy template project" cp -R ${TEMPLATE_DIR}/ProjectTemplate ${PROJECT_NAME} find ${PROJECT_NAME} -name \.svn | xargs rm -rf cd ${PROJECT_NAME} ls changeProjectName() { echo Change Name $1/Project$2 to $3$2 sed "-e s/Project/$3/g" $1/Project$2 | tr -d "\r" >$1/$3$2 rm $1/Project$2 } changeProjectName . Makefile ${CODE_LEGAL_PROJECT_NAME} changeProjectName . .project ${PROJECT_NAME} changeProjectName src/util BuildTime.cpp ${CODE_LEGAL_PROJECT_NAME} changeProjectName include/util BuildTime.h ${CODE_LEGAL_PROJECT_NAME} changeProjectName tests/util BuildTimeTest.cpp ${CODE_LEGAL_PROJECT_NAME} mv ${CODE_LEGAL_PROJECT_NAME}Makefile Makefile mv ${PROJECT_NAME}.project .project mv Project.cproject .cproject cd ${ORIGINAL_DIR} echo "You might want to modify the path for CPPUTEST_HOME in the Makefile." cpputest-3.4/scripts/README.txt0000644000175300017530000000166012023251675013351 00000000000000The New*.sh scripts are helpful for creating the initial files for a new class... NewClass.sh - for TTDing a new C++ class NewInterface.sh - for TDDing a new interface along with its Mock NewCModule.sh - for TDDing a C module NewCmiModule.sh - for TDDing a C module where there will be multiple instances of the module's data structure Run InstallScripts.sh to 1) Copy the scripts to /usr/local/bin 2) Define symbolic links for each of the scripts Like this: ./InstallScripts.sh You might have to add the execute privilege to the shell scripts. Like this: chmod *.sh Using NewClass for example: cd to the directory where you want the files located NewClass SomeClass The script gets you ready for TDD and saves a lot of tedious typing Creates SomeClass.h SomeClass.cpp SomeClassTest.cpp with the class and test essentials in place (If the file already exists, no file is generated) These scripts are written in bash. cpputest-3.4/scripts/RefactorRenameIncludeFile.sh0000755000175300017530000000344112023251675017212 00000000000000#!/bin/bash +x dirs_to_look_in="src tests include mocks" from_name=$1 to_name=$2 SVN=svn findFilesWithInclude() { files_with_include=$(find $dirs_to_look_in -name "*.[hc]" -o -name "*.cpp" | xargs grep -l "#include \"$1\"") if [ "$files_with_include" != "" ] then files_with_include+=" " fi files_with_include+=$(find $dirs_to_look_in -name "*.[hc]" -o -name "*.cpp" | xargs grep -l "#include <$1>") echo $files_with_include } checkForPriorNameUseIncludes() { files=$(findFilesWithInclude $1) if [ "$files" != "" ] then echo "name already included: $1 included in ${files}" exit fi } checkForFileNameExists() { files=$(find $dirs_to_look_in -name $1) if [ "$files" != "" ] then echo "name already in use: $1 found in ${files}" exit fi } searchAndReplaceIncludes() { files=$(findFilesWithInclude $1) if [ "$files" = "" ] then echo "No files found including $1" exit fi echo "Changing include $1 to $2 in: $files" set -x sed -i "" -e "s/#include \"$1\"/#include \"$2\"/g" $files sed -i "" -e "s/#include <$1>/#include <$2>/g" $files set +x } renameIncludeFile() { file=$(find $dirs_to_look_in -name $1) if [ $(echo $file | wc -l) != 1 ] then echo "More than one potential file to rename $file" exit fi set -x from_module_name=$(basename $1 .h) to_module_name=$(basename $2 .h) sed -i "" -e "s/$from_module_name/$to_module_name/g" $file path=$(dirname $file) $SVN mv $file $path/$2 set +x } checkForFileNameExists $to_name checkForPriorNameUseIncludes $to_name searchAndReplaceIncludes $from_name $to_name renameIncludeFile $1 $2 cpputest-3.4/scripts/ReleaseCppUTest.sh0000775000175300017530000000460112066727207015230 00000000000000#!/bin/bash #source in release generator script if [ ! -d "scripts" ]; then echo "You have to run this script from the CPPUTEST_HOME directory!"; exit fi GENERATED_FILES="" release_dir=Releases scripts_dir=scripts version=v3.3 zip_root=CppUTest-${version} tar_root=CppUTest-${version}_tar clean_unzip_root=${zip_root}_clean_unzip clean_untar_root=${zip_root}_clean_untar zip_file=${zip_root}.zip tar_file=${zip_root}.tar.gz exitIfFileExists() { if [ -e $1 ] then echo "${1} already exists, exiting." exit fi } generateMakeScript() { filename=$1 dateTime=$2 version=$3 target=$4 exitIfFileExists $filename.sh echo "#Generated file - ${filename}.sh" >$filename.sh echo "echo \"Running ${filename} for CppUTest ${version} created on ${dateTime}\"" >>$filename.sh echo "export CPPUTEST_HOME=\$(pwd)" >>$filename.sh echo "echo \"export CPPUTEST_HOME=\$(pwd)/\"" >>$filename.sh echo "make $target" >>$filename.sh chmod +x $filename.sh GENERATED_FILES+=" $filename.sh" } generateVersionFile() { version=$1 dateTime=$2 versionFile=version.txt echo "CppUTest ${version} created on ${dateTime}" > $versionFile GENERATED_FILES+=$versionFile } zipIt() { mkdir -p ${release_dir} zip -r ${release_dir}/${zip_file} \ $GENERATED_FILES \ .\ -x@${scripts_dir}/zipExclude.txt tar -cvpzf ${release_dir}/${tar_file} \ -X ./${scripts_dir}/zipExclude.txt \ $GENERATED_FILES \ . } cleanUp() { rm -f $GENERATED_FILES } generateCppUTestRelease() { dateTime=$(date +%F-%H-%M) generateVersionFile $version $dateTime generateMakeScript makeAll $dateTime $version everythingInstall generateMakeScript cleanAll $dateTime $version cleanEverythingInstall zipIt $version cleanUp } openAndMakeRelease() { cd ${release_dir} # unzip and untar the code and make sure it is the same rm -rf ${clean_unzip_root} unzip ${zip_file} -d ${clean_unzip_root} rm -rf ${clean_untar_root} mkdir ${clean_untar_root} tar -xvzpf ${tar_file} -C ${clean_untar_root} rm -rf ${zip_root} unzip ${zip_file} -d ${zip_root} cd ${zip_root} ./makeAll.sh cd .. rm -rf ${tar_root} mkdir ${tar_root} tar -xvzpf ${tar_file} -C ${tar_root} cd ${tar_root} ./makeAll.sh cd ../.. } #Main generateCppUTestRelease openAndMakeRelease cpputest-3.4/scripts/checkForCppUTestEnvVariable.sh0000755000175300017530000000034512023251675017504 00000000000000#!/bin/bash checkForCppUTestEnvVariable() { if [ -z "$CPPUTEST_HOME" ] ; then echo "CPPUTEST_HOME not set" exit 1 fi if [ ! -d "$CPPUTEST_HOME" ] ; then echo "CPPUTEST_HOME not set to a directory" exit 2 fi } cpputest-3.4/scripts/filterGcov.sh0000755000175300017530000000303712023251675014316 00000000000000#!/bin/bash INPUT_FILE=$1 TEMP_FILE1=${INPUT_FILE}1.tmp TEMP_FILE2=${INPUT_FILE}2.tmp TEMP_FILE3=${INPUT_FILE}3.tmp ERROR_FILE=$2 OUTPUT_FILE=$3 HTML_OUTPUT_FILE=$3.html TEST_RESULTS=$4 flattenGcovOutput() { while read line1 do read line2 echo $line2 " " $line1 read junk read junk done < ${INPUT_FILE} } getRidOfCruft() { sed '-e s/^Lines.*://g' \ '-e s/^[0-9]\./ &/g' \ '-e s/^[0-9][0-9]\./ &/g' \ '-e s/of.*File/ /g' \ "-e s/'//g" \ '-e s/^.*\/usr\/.*$//g' \ '-e s/^.*\.$//g' } flattenPaths() { sed \ -e 's/\/[^/][^/]*\/[^/][^/]*\/\.\.\/\.\.\//\//g' \ -e 's/\/[^/][^/]*\/[^/][^/]*\/\.\.\/\.\.\//\//g' \ -e 's/\/[^/][^/]*\/[^/][^/]*\/\.\.\/\.\.\//\//g' \ -e 's/\/[^/][^/]*\/\.\.\//\//g' } getFileNameRootFromErrorFile() { sed '-e s/gc..:cannot open .* file//g' ${ERROR_FILE} } writeEachNoTestCoverageFile() { while read line do echo " 0.00% " ${line} done } createHtmlOutput() { echo "" echo "" sed "-e s/.*% /
CoverageFile
&<\/td>/" \ "-e s/[a-zA-Z0-9_]*\.[ch][a-z]*/&<\/a><\/td><\/tr>/" echo "
" sed "-e s/.*/&
/g" < ${TEST_RESULTS} } flattenGcovOutput | getRidOfCruft | flattenPaths > ${TEMP_FILE1} getFileNameRootFromErrorFile | writeEachNoTestCoverageFile | flattenPaths > ${TEMP_FILE2} cat ${TEMP_FILE1} ${TEMP_FILE2} | sort | uniq > ${OUTPUT_FILE} createHtmlOutput < ${OUTPUT_FILE} > ${HTML_OUTPUT_FILE} rm -f ${TEMP_FILE1} ${TEMP_FILE2} cpputest-3.4/scripts/reformat.sh0000755000175300017530000000054012023251675014025 00000000000000#!/bin/bash set -e ASTYLE_OPTIONS="--convert-tabs --indent=spaces=4 --indent-classes --indent-switches --indent-preprocessor --style=ansi" find $1 -name "*.h" -o -name "*.c" -o -name "*.cpp" | while read filename; do tmpfile=${filename}.astyle.cpp astyle ${ASTYLE_OPTIONS} <"${filename}" > "${tmpfile}" mv "${tmpfile}" "${filename}" done cpputest-3.4/scripts/squeeze.sh0000755000175300017530000000004012023251675013662 00000000000000#!/bin/sed -f s/[ ][ ]*/ /g cpputest-3.4/scripts/svnignore.txt0000644000175300017530000000032012023251675014416 00000000000000doxygen *.d */Debug/* *.exe *.obj *.o *.a *.ncb *.opt *.plg *.idb *.pdb *.lib .settings *doxygen* *.gcov *.gcno *.gcda *_tests *_cslim *a.out *.zip tmp pdfs *.map gcov objs lib *_tests.txt gcov*.html Releasescpputest-3.4/scripts/travis_ci_build.sh0000755000175300017530000000075012143637532015356 00000000000000#!/bin/bash # Script run in the travis CI if [ $BUILDTOOL = "autotools" ]; then ../configure && echo "CONFIGURATION DONE. Compiling now." && make check_all; if [ $CXX = "gcc" ]; then echo "Release now"; fi; fi if [ $BUILDTOOL = "cmake" ]; then cmake .. -DCMAKE_BUILD_TYPE=$CMAKE_BUILD_TYPE && make && ctest -V; fi if [ $BUILDTOOL = "cmake" ]; then cmake .. -DGMOCK=ON && make && ctest -V; fi if [ $BUILDTOOL = "cmake" ]; then cmake .. -DGMOCK=OFF -DREAL_GTEST=ON && make && ctest -V; fi cpputest-3.4/scripts/zipExclude.txt0000644000175300017530000000035412023251675014527 00000000000000*.metadata* *.sh~ *.obj *.zip *.a *.d *.o *.lib *.ncb *.opt *.plg */Debug/* *.svn* */Alltests *.gcov *.gcda *.gcno *.html *doxygen* *_tests */*.class *Doxyfile *Releases* *UnityTemplates* *platforms* *.DS_Store *.git* *.gitignore *.swp cpputest-3.4/.settings/0000755000175300017530000000000012143642713012157 500000000000000cpputest-3.4/.settings/org.eclipse.cdt.core.prefs0000644000175300017530000003062412023251674017056 00000000000000#Mon Jun 07 17:30:05 SGT 2010 eclipse.preferences.version=1 org.eclipse.cdt.core.formatter.alignment_for_arguments_in_method_invocation=16 org.eclipse.cdt.core.formatter.alignment_for_base_clause_in_type_declaration=80 org.eclipse.cdt.core.formatter.alignment_for_compact_if=0 org.eclipse.cdt.core.formatter.alignment_for_conditional_expression=80 org.eclipse.cdt.core.formatter.alignment_for_declarator_list=16 org.eclipse.cdt.core.formatter.alignment_for_enumerator_list=48 org.eclipse.cdt.core.formatter.alignment_for_expression_list=0 org.eclipse.cdt.core.formatter.alignment_for_expressions_in_array_initializer=16 org.eclipse.cdt.core.formatter.alignment_for_parameters_in_method_declaration=16 org.eclipse.cdt.core.formatter.alignment_for_throws_clause_in_method_declaration=16 org.eclipse.cdt.core.formatter.brace_position_for_array_initializer=end_of_line org.eclipse.cdt.core.formatter.brace_position_for_block=end_of_line org.eclipse.cdt.core.formatter.brace_position_for_block_in_case=end_of_line org.eclipse.cdt.core.formatter.brace_position_for_method_declaration=next_line org.eclipse.cdt.core.formatter.brace_position_for_namespace_declaration=next_line org.eclipse.cdt.core.formatter.brace_position_for_switch=end_of_line org.eclipse.cdt.core.formatter.brace_position_for_type_declaration=next_line org.eclipse.cdt.core.formatter.compact_else_if=true org.eclipse.cdt.core.formatter.continuation_indentation=2 org.eclipse.cdt.core.formatter.continuation_indentation_for_array_initializer=2 org.eclipse.cdt.core.formatter.format_guardian_clause_on_one_line=false org.eclipse.cdt.core.formatter.indent_access_specifier_compare_to_type_header=false org.eclipse.cdt.core.formatter.indent_body_declarations_compare_to_access_specifier=true org.eclipse.cdt.core.formatter.indent_body_declarations_compare_to_namespace_header=false org.eclipse.cdt.core.formatter.indent_breaks_compare_to_cases=true org.eclipse.cdt.core.formatter.indent_declaration_compare_to_template_header=false org.eclipse.cdt.core.formatter.indent_empty_lines=false org.eclipse.cdt.core.formatter.indent_statements_compare_to_block=true org.eclipse.cdt.core.formatter.indent_statements_compare_to_body=true org.eclipse.cdt.core.formatter.indent_switchstatements_compare_to_cases=true org.eclipse.cdt.core.formatter.indent_switchstatements_compare_to_switch=false org.eclipse.cdt.core.formatter.indentation.size=4 org.eclipse.cdt.core.formatter.insert_new_line_after_opening_brace_in_array_initializer=do not insert org.eclipse.cdt.core.formatter.insert_new_line_after_template_declaration=do not insert org.eclipse.cdt.core.formatter.insert_new_line_at_end_of_file_if_missing=do not insert org.eclipse.cdt.core.formatter.insert_new_line_before_catch_in_try_statement=insert org.eclipse.cdt.core.formatter.insert_new_line_before_closing_brace_in_array_initializer=do not insert org.eclipse.cdt.core.formatter.insert_new_line_before_else_in_if_statement=insert org.eclipse.cdt.core.formatter.insert_new_line_before_identifier_in_function_declaration=do not insert org.eclipse.cdt.core.formatter.insert_new_line_before_while_in_do_statement=do not insert org.eclipse.cdt.core.formatter.insert_new_line_in_empty_block=insert org.eclipse.cdt.core.formatter.insert_space_after_assignment_operator=insert org.eclipse.cdt.core.formatter.insert_space_after_binary_operator=insert org.eclipse.cdt.core.formatter.insert_space_after_closing_angle_bracket_in_template_arguments=insert org.eclipse.cdt.core.formatter.insert_space_after_closing_angle_bracket_in_template_parameters=insert org.eclipse.cdt.core.formatter.insert_space_after_closing_brace_in_block=insert org.eclipse.cdt.core.formatter.insert_space_after_closing_paren_in_cast=insert org.eclipse.cdt.core.formatter.insert_space_after_colon_in_base_clause=insert org.eclipse.cdt.core.formatter.insert_space_after_colon_in_case=insert org.eclipse.cdt.core.formatter.insert_space_after_colon_in_conditional=insert org.eclipse.cdt.core.formatter.insert_space_after_colon_in_labeled_statement=insert org.eclipse.cdt.core.formatter.insert_space_after_comma_in_array_initializer=insert org.eclipse.cdt.core.formatter.insert_space_after_comma_in_base_types=insert org.eclipse.cdt.core.formatter.insert_space_after_comma_in_declarator_list=insert org.eclipse.cdt.core.formatter.insert_space_after_comma_in_enum_declarations=insert org.eclipse.cdt.core.formatter.insert_space_after_comma_in_expression_list=insert org.eclipse.cdt.core.formatter.insert_space_after_comma_in_method_declaration_parameters=insert org.eclipse.cdt.core.formatter.insert_space_after_comma_in_method_declaration_throws=insert org.eclipse.cdt.core.formatter.insert_space_after_comma_in_method_invocation_arguments=insert org.eclipse.cdt.core.formatter.insert_space_after_comma_in_template_arguments=insert org.eclipse.cdt.core.formatter.insert_space_after_comma_in_template_parameters=insert org.eclipse.cdt.core.formatter.insert_space_after_opening_angle_bracket_in_template_arguments=do not insert org.eclipse.cdt.core.formatter.insert_space_after_opening_angle_bracket_in_template_parameters=do not insert org.eclipse.cdt.core.formatter.insert_space_after_opening_brace_in_array_initializer=insert org.eclipse.cdt.core.formatter.insert_space_after_opening_bracket=do not insert org.eclipse.cdt.core.formatter.insert_space_after_opening_paren_in_cast=do not insert org.eclipse.cdt.core.formatter.insert_space_after_opening_paren_in_catch=do not insert org.eclipse.cdt.core.formatter.insert_space_after_opening_paren_in_exception_specification=do not insert org.eclipse.cdt.core.formatter.insert_space_after_opening_paren_in_for=do not insert org.eclipse.cdt.core.formatter.insert_space_after_opening_paren_in_if=do not insert org.eclipse.cdt.core.formatter.insert_space_after_opening_paren_in_method_declaration=do not insert org.eclipse.cdt.core.formatter.insert_space_after_opening_paren_in_method_invocation=do not insert org.eclipse.cdt.core.formatter.insert_space_after_opening_paren_in_parenthesized_expression=do not insert org.eclipse.cdt.core.formatter.insert_space_after_opening_paren_in_switch=do not insert org.eclipse.cdt.core.formatter.insert_space_after_opening_paren_in_while=do not insert org.eclipse.cdt.core.formatter.insert_space_after_postfix_operator=do not insert org.eclipse.cdt.core.formatter.insert_space_after_prefix_operator=do not insert org.eclipse.cdt.core.formatter.insert_space_after_question_in_conditional=insert org.eclipse.cdt.core.formatter.insert_space_after_semicolon_in_for=insert org.eclipse.cdt.core.formatter.insert_space_after_unary_operator=do not insert org.eclipse.cdt.core.formatter.insert_space_before_assignment_operator=insert org.eclipse.cdt.core.formatter.insert_space_before_binary_operator=insert org.eclipse.cdt.core.formatter.insert_space_before_closing_angle_bracket_in_template_arguments=do not insert org.eclipse.cdt.core.formatter.insert_space_before_closing_angle_bracket_in_template_parameters=do not insert org.eclipse.cdt.core.formatter.insert_space_before_closing_brace_in_array_initializer=insert org.eclipse.cdt.core.formatter.insert_space_before_closing_bracket=do not insert org.eclipse.cdt.core.formatter.insert_space_before_closing_paren_in_cast=do not insert org.eclipse.cdt.core.formatter.insert_space_before_closing_paren_in_catch=do not insert org.eclipse.cdt.core.formatter.insert_space_before_closing_paren_in_exception_specification=do not insert org.eclipse.cdt.core.formatter.insert_space_before_closing_paren_in_for=do not insert org.eclipse.cdt.core.formatter.insert_space_before_closing_paren_in_if=do not insert org.eclipse.cdt.core.formatter.insert_space_before_closing_paren_in_method_declaration=do not insert org.eclipse.cdt.core.formatter.insert_space_before_closing_paren_in_method_invocation=do not insert org.eclipse.cdt.core.formatter.insert_space_before_closing_paren_in_parenthesized_expression=do not insert org.eclipse.cdt.core.formatter.insert_space_before_closing_paren_in_switch=do not insert org.eclipse.cdt.core.formatter.insert_space_before_closing_paren_in_while=do not insert org.eclipse.cdt.core.formatter.insert_space_before_colon_in_base_clause=do not insert org.eclipse.cdt.core.formatter.insert_space_before_colon_in_case=do not insert org.eclipse.cdt.core.formatter.insert_space_before_colon_in_conditional=insert org.eclipse.cdt.core.formatter.insert_space_before_colon_in_default=do not insert org.eclipse.cdt.core.formatter.insert_space_before_colon_in_labeled_statement=do not insert org.eclipse.cdt.core.formatter.insert_space_before_comma_in_array_initializer=do not insert org.eclipse.cdt.core.formatter.insert_space_before_comma_in_base_types=do not insert org.eclipse.cdt.core.formatter.insert_space_before_comma_in_declarator_list=do not insert org.eclipse.cdt.core.formatter.insert_space_before_comma_in_enum_declarations=do not insert org.eclipse.cdt.core.formatter.insert_space_before_comma_in_expression_list=do not insert org.eclipse.cdt.core.formatter.insert_space_before_comma_in_method_declaration_parameters=do not insert org.eclipse.cdt.core.formatter.insert_space_before_comma_in_method_declaration_throws=do not insert org.eclipse.cdt.core.formatter.insert_space_before_comma_in_method_invocation_arguments=do not insert org.eclipse.cdt.core.formatter.insert_space_before_comma_in_template_arguments=do not insert org.eclipse.cdt.core.formatter.insert_space_before_comma_in_template_parameters=do not insert org.eclipse.cdt.core.formatter.insert_space_before_opening_angle_bracket_in_template_arguments=do not insert org.eclipse.cdt.core.formatter.insert_space_before_opening_angle_bracket_in_template_parameters=do not insert org.eclipse.cdt.core.formatter.insert_space_before_opening_brace_in_array_initializer=insert org.eclipse.cdt.core.formatter.insert_space_before_opening_brace_in_block=insert org.eclipse.cdt.core.formatter.insert_space_before_opening_brace_in_method_declaration=insert org.eclipse.cdt.core.formatter.insert_space_before_opening_brace_in_namespace_declaration=insert org.eclipse.cdt.core.formatter.insert_space_before_opening_brace_in_switch=insert org.eclipse.cdt.core.formatter.insert_space_before_opening_brace_in_type_declaration=insert org.eclipse.cdt.core.formatter.insert_space_before_opening_bracket=do not insert org.eclipse.cdt.core.formatter.insert_space_before_opening_paren_in_catch=insert org.eclipse.cdt.core.formatter.insert_space_before_opening_paren_in_exception_specification=insert org.eclipse.cdt.core.formatter.insert_space_before_opening_paren_in_for=insert org.eclipse.cdt.core.formatter.insert_space_before_opening_paren_in_if=insert org.eclipse.cdt.core.formatter.insert_space_before_opening_paren_in_method_declaration=do not insert org.eclipse.cdt.core.formatter.insert_space_before_opening_paren_in_method_invocation=do not insert org.eclipse.cdt.core.formatter.insert_space_before_opening_paren_in_parenthesized_expression=do not insert org.eclipse.cdt.core.formatter.insert_space_before_opening_paren_in_switch=insert org.eclipse.cdt.core.formatter.insert_space_before_opening_paren_in_while=insert org.eclipse.cdt.core.formatter.insert_space_before_postfix_operator=do not insert org.eclipse.cdt.core.formatter.insert_space_before_prefix_operator=do not insert org.eclipse.cdt.core.formatter.insert_space_before_question_in_conditional=insert org.eclipse.cdt.core.formatter.insert_space_before_semicolon=do not insert org.eclipse.cdt.core.formatter.insert_space_before_semicolon_in_for=do not insert org.eclipse.cdt.core.formatter.insert_space_before_unary_operator=do not insert org.eclipse.cdt.core.formatter.insert_space_between_empty_braces_in_array_initializer=do not insert org.eclipse.cdt.core.formatter.insert_space_between_empty_brackets=do not insert org.eclipse.cdt.core.formatter.insert_space_between_empty_parens_in_exception_specification=do not insert org.eclipse.cdt.core.formatter.insert_space_between_empty_parens_in_method_declaration=do not insert org.eclipse.cdt.core.formatter.insert_space_between_empty_parens_in_method_invocation=do not insert org.eclipse.cdt.core.formatter.keep_else_statement_on_same_line=true org.eclipse.cdt.core.formatter.keep_empty_array_initializer_on_one_line=false org.eclipse.cdt.core.formatter.keep_imple_if_on_one_line=false org.eclipse.cdt.core.formatter.keep_then_statement_on_same_line=true org.eclipse.cdt.core.formatter.lineSplit=200 org.eclipse.cdt.core.formatter.number_of_empty_lines_to_preserve=1 org.eclipse.cdt.core.formatter.put_empty_statement_on_new_line=true org.eclipse.cdt.core.formatter.tabulation.char=tab org.eclipse.cdt.core.formatter.tabulation.size=4 org.eclipse.cdt.core.formatter.use_tabs_only_for_leading_indentations=false cpputest-3.4/.settings/org.eclipse.cdt.ui.prefs0000644000175300017530000000020212023251674016530 00000000000000#Tue Dec 29 09:23:19 SGT 2009 eclipse.preferences.version=1 formatter_profile=_CppUTest Coding Style formatter_settings_version=1 cpputest-3.4/src/0000755000175300017530000000000012143642712011027 500000000000000cpputest-3.4/src/CppUTest/0000755000175300017530000000000012143642714012540 500000000000000cpputest-3.4/src/CppUTest/CommandLineArguments.cpp0000644000175300017530000001405212023251675017241 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" #include "CppUTest/CommandLineArguments.h" #include "CppUTest/PlatformSpecificFunctions.h" CommandLineArguments::CommandLineArguments(int ac, const char** av) : ac_(ac), av_(av), verbose_(false), runTestsAsSeperateProcess_(false), repeat_(1), groupFilter_(""), nameFilter_(""), outputType_(OUTPUT_ECLIPSE) { } CommandLineArguments::~CommandLineArguments() { } bool CommandLineArguments::parse(TestPlugin* plugin) { bool correctParameters = true; for (int i = 1; i < ac_; i++) { SimpleString argument = av_[i]; if (argument == "-v") verbose_ = true; else if (argument == "-p") runTestsAsSeperateProcess_ = true; else if (argument.startsWith("-r")) SetRepeatCount(ac_, av_, i); else if (argument.startsWith("-g")) SetGroupFilter(ac_, av_, i); else if (argument.startsWith("-sg")) SetStrictGroupFilter(ac_, av_, i); else if (argument.startsWith("-n")) SetNameFilter(ac_, av_, i); else if (argument.startsWith("-sn")) SetStrictNameFilter(ac_, av_, i); else if (argument.startsWith("TEST(")) SetTestToRunBasedOnVerboseOutput(ac_, av_, i, "TEST("); else if (argument.startsWith("IGNORE_TEST(")) SetTestToRunBasedOnVerboseOutput(ac_, av_, i, "IGNORE_TEST("); else if (argument.startsWith("-o")) correctParameters = SetOutputType(ac_, av_, i); else if (argument.startsWith("-p")) correctParameters = plugin->parseAllArguments(ac_, av_, i); else correctParameters = false; if (correctParameters == false) { return false; } } return true; } const char* CommandLineArguments::usage() const { return "usage [-v] [-r#] [-g|sg groupName] [-n|sn testName] [-o{normal, junit}]\n"; } bool CommandLineArguments::isVerbose() const { return verbose_; } bool CommandLineArguments::runTestsInSeperateProcess() const { return runTestsAsSeperateProcess_; } int CommandLineArguments::getRepeatCount() const { return repeat_; } TestFilter CommandLineArguments::getGroupFilter() const { return groupFilter_; } TestFilter CommandLineArguments::getNameFilter() const { return nameFilter_; } void CommandLineArguments::SetRepeatCount(int ac, const char** av, int& i) { repeat_ = 0; SimpleString repeatParameter(av[i]); if (repeatParameter.size() > 2) repeat_ = PlatformSpecificAtoI(av[i] + 2); else if (i + 1 < ac) { repeat_ = PlatformSpecificAtoI(av[i + 1]); if (repeat_ != 0) i++; } if (0 == repeat_) repeat_ = 2; } SimpleString CommandLineArguments::getParameterField(int ac, const char** av, int& i, const SimpleString& parameterName) { size_t parameterLength = parameterName.size(); SimpleString parameter(av[i]); if (parameter.size() > parameterLength) return av[i] + parameterLength; else if (i + 1 < ac) return av[++i]; return ""; } void CommandLineArguments::SetGroupFilter(int ac, const char** av, int& i) { groupFilter_ = TestFilter(getParameterField(ac, av, i, "-g")); } void CommandLineArguments::SetStrictGroupFilter(int ac, const char** av, int& i) { groupFilter_ = TestFilter(getParameterField(ac, av, i, "-sg")); groupFilter_.strictMatching(); } void CommandLineArguments::SetNameFilter(int ac, const char** av, int& i) { nameFilter_ = getParameterField(ac, av, i, "-n"); } void CommandLineArguments::SetStrictNameFilter(int ac, const char** av, int& index) { nameFilter_ = getParameterField(ac, av, index, "-sn"); nameFilter_.strictMatching(); } void CommandLineArguments::SetTestToRunBasedOnVerboseOutput(int ac, const char** av, int& index, const char* parameterName) { SimpleString wholename = getParameterField(ac, av, index, parameterName); SimpleString testname = wholename.subStringFromTill(',', ')'); testname = testname.subString(2, testname.size()); groupFilter_ = wholename.subStringFromTill(wholename.at(0), ','); nameFilter_ = testname; nameFilter_.strictMatching(); groupFilter_.strictMatching(); } bool CommandLineArguments::SetOutputType(int ac, const char** av, int& i) { SimpleString outputType = getParameterField(ac, av, i, "-o"); if (outputType.size() == 0) return false; if (outputType == "normal" || outputType == "eclipse") { outputType_ = OUTPUT_ECLIPSE; return true; } if (outputType == "junit") { outputType_ = OUTPUT_JUNIT; return true; } return false; } bool CommandLineArguments::isEclipseOutput() const { return outputType_ == OUTPUT_ECLIPSE; } bool CommandLineArguments::isJUnitOutput() const { return outputType_ == OUTPUT_JUNIT; } cpputest-3.4/src/CppUTest/MemoryLeakWarningPlugin.cpp0000644000175300017530000003507412134163705017745 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" #include "CppUTest/MemoryLeakWarningPlugin.h" #include "CppUTest/MemoryLeakDetector.h" #include "CppUTest/TestMemoryAllocator.h" #include "CppUTest/PlatformSpecificFunctions.h" /********** Enabling and disabling for C also *********/ #if CPPUTEST_USE_MEM_LEAK_DETECTION static void* mem_leak_malloc(size_t size, const char* file, int line) { return MemoryLeakWarningPlugin::getGlobalDetector()->allocMemory(getCurrentMallocAllocator(), size, file, line, true); } static void mem_leak_free(void* buffer, const char* file, int line) { MemoryLeakWarningPlugin::getGlobalDetector()->invalidateMemory((char*) buffer); MemoryLeakWarningPlugin::getGlobalDetector()->deallocMemory(getCurrentMallocAllocator(), (char*) buffer, file, line, true); } static void* mem_leak_realloc(void* memory, size_t size, const char* file, int line) { return MemoryLeakWarningPlugin::getGlobalDetector()->reallocMemory(getCurrentMallocAllocator(), (char*) memory, size, file, line, true); } #endif static void* normal_malloc(size_t size, const char*, int) { return PlatformSpecificMalloc(size); } static void* normal_realloc(void* memory, size_t size, const char*, int) { return PlatformSpecificRealloc(memory, size); } static void normal_free(void* buffer, const char*, int) { PlatformSpecificFree(buffer); } #if CPPUTEST_USE_MEM_LEAK_DETECTION static void *(*malloc_fptr)(size_t size, const char* file, int line) = mem_leak_malloc; static void (*free_fptr)(void* mem, const char* file, int line) = mem_leak_free; static void*(*realloc_fptr)(void* memory, size_t size, const char* file, int line) = mem_leak_realloc; #else static void *(*malloc_fptr)(size_t size, const char* file, int line) = normal_malloc; static void (*free_fptr)(void* mem, const char* file, int line) = normal_free; static void*(*realloc_fptr)(void* memory, size_t size, const char* file, int line) = normal_realloc; #endif void* cpputest_malloc_location_with_leak_detection(size_t size, const char* file, int line) { return malloc_fptr(size, file, line); } void* cpputest_realloc_location_with_leak_detection(void* memory, size_t size, const char* file, int line) { return realloc_fptr(memory, size, file, line); } void cpputest_free_location_with_leak_detection(void* buffer, const char* file, int line) { free_fptr(buffer, file, line); } /********** C++ *************/ #if CPPUTEST_USE_MEM_LEAK_DETECTION #undef new #if CPPUTEST_USE_STD_CPP_LIB #define UT_THROW_BAD_ALLOC_WHEN_NULL(memory) if (memory == NULL) throw std::bad_alloc(); #define UT_THROW(except) throw (except) #else #define UT_THROW_BAD_ALLOC_WHEN_NULL(memory) #define UT_THROW(except) #endif static void* mem_leak_operator_new (size_t size) UT_THROW(std::bad_alloc) { void* memory = MemoryLeakWarningPlugin::getGlobalDetector()->allocMemory(getCurrentNewAllocator(), size); UT_THROW_BAD_ALLOC_WHEN_NULL(memory); return memory; } static void* mem_leak_operator_new_nothrow (size_t size) throw() { return MemoryLeakWarningPlugin::getGlobalDetector()->allocMemory(getCurrentNewAllocator(), size); } static void* mem_leak_operator_new_debug (size_t size, const char* file, int line) UT_THROW(std::bad_alloc) { void *memory = MemoryLeakWarningPlugin::getGlobalDetector()->allocMemory(getCurrentNewAllocator(), size, (char*) file, line); UT_THROW_BAD_ALLOC_WHEN_NULL(memory); return memory; } static void* mem_leak_operator_new_array (size_t size) UT_THROW(std::bad_alloc) { void* memory = MemoryLeakWarningPlugin::getGlobalDetector()->allocMemory(getCurrentNewArrayAllocator(), size); UT_THROW_BAD_ALLOC_WHEN_NULL(memory); return memory; } static void* mem_leak_operator_new_array_nothrow (size_t size) throw() { return MemoryLeakWarningPlugin::getGlobalDetector()->allocMemory(getCurrentNewArrayAllocator(), size); } static void* mem_leak_operator_new_array_debug (size_t size, const char* file, int line) UT_THROW(std::bad_alloc) { void* memory = MemoryLeakWarningPlugin::getGlobalDetector()->allocMemory(getCurrentNewArrayAllocator(), size, (char*) file, line); UT_THROW_BAD_ALLOC_WHEN_NULL(memory); return memory; } static void mem_leak_operator_delete (void* mem) throw() { MemoryLeakWarningPlugin::getGlobalDetector()->invalidateMemory((char*) mem); MemoryLeakWarningPlugin::getGlobalDetector()->deallocMemory(getCurrentNewAllocator(), (char*) mem); } static void mem_leak_operator_delete_array (void* mem) throw() { MemoryLeakWarningPlugin::getGlobalDetector()->invalidateMemory((char*) mem); MemoryLeakWarningPlugin::getGlobalDetector()->deallocMemory(getCurrentNewArrayAllocator(), (char*) mem); } static void* normal_operator_new (size_t size) UT_THROW(std::bad_alloc) { void* memory = PlatformSpecificMalloc(size); UT_THROW_BAD_ALLOC_WHEN_NULL(memory); return memory; } static void* normal_operator_new_nothrow (size_t size) throw() { return PlatformSpecificMalloc(size); } static void* normal_operator_new_debug (size_t size, const char* /*file*/, int /*line*/) UT_THROW(std::bad_alloc) { void* memory = PlatformSpecificMalloc(size); UT_THROW_BAD_ALLOC_WHEN_NULL(memory); return memory; } static void* normal_operator_new_array (size_t size) UT_THROW(std::bad_alloc) { void* memory = PlatformSpecificMalloc(size); UT_THROW_BAD_ALLOC_WHEN_NULL(memory); return memory; } static void* normal_operator_new_array_nothrow (size_t size) throw() { return PlatformSpecificMalloc(size); } static void* normal_operator_new_array_debug (size_t size, const char* /*file*/, int /*line*/) UT_THROW(std::bad_alloc) { void* memory = PlatformSpecificMalloc(size); UT_THROW_BAD_ALLOC_WHEN_NULL(memory); return memory; } static void normal_operator_delete (void* mem) throw() { PlatformSpecificFree(mem); } static void normal_operator_delete_array (void* mem) throw() { PlatformSpecificFree(mem); } static void *(*operator_new_fptr)(size_t size) UT_THROW(std::bad_alloc) = mem_leak_operator_new; static void *(*operator_new_nothrow_fptr)(size_t size) throw() = mem_leak_operator_new_nothrow; static void *(*operator_new_debug_fptr)(size_t size, const char* file, int line) UT_THROW(std::bad_alloc) = mem_leak_operator_new_debug; static void *(*operator_new_array_fptr)(size_t size) UT_THROW(std::bad_alloc) = mem_leak_operator_new_array; static void *(*operator_new_array_nothrow_fptr)(size_t size) throw() = mem_leak_operator_new_array_nothrow; static void *(*operator_new_array_debug_fptr)(size_t size, const char* file, int line) UT_THROW(std::bad_alloc) = mem_leak_operator_new_array_debug; static void (*operator_delete_fptr)(void* mem) throw() = mem_leak_operator_delete; static void (*operator_delete_array_fptr)(void* mem) throw() = mem_leak_operator_delete_array; void* operator new(size_t size) UT_THROW(std::bad_alloc) { return operator_new_fptr(size); } void* operator new(size_t size, const char* file, int line) UT_THROW(std::bad_alloc) { return operator_new_debug_fptr(size, file, line); } void operator delete(void* mem) throw() { operator_delete_fptr(mem); } void operator delete(void* mem, const char*, int) throw() { return operator_delete_fptr(mem); } void* operator new[](size_t size) UT_THROW(std::bad_alloc) { return operator_new_array_fptr(size); } void* operator new [](size_t size, const char* file, int line) UT_THROW(std::bad_alloc) { return operator_new_array_debug_fptr(size, file, line); } void operator delete[](void* mem) throw() { operator_delete_array_fptr(mem); } void operator delete[](void* mem, const char*, int) throw() { operator_delete_array_fptr(mem); } #if CPPUTEST_USE_STD_CPP_LIB void* operator new(size_t size, const std::nothrow_t&) throw() { return operator_new_nothrow_fptr(size); } void* operator new[](size_t size, const std::nothrow_t&) throw() { return operator_new_array_nothrow_fptr(size); } #endif #endif void MemoryLeakWarningPlugin::turnOffNewDeleteOverloads() { #if CPPUTEST_USE_MEM_LEAK_DETECTION operator_new_fptr = normal_operator_new; operator_new_nothrow_fptr = normal_operator_new_nothrow; operator_new_debug_fptr = normal_operator_new_debug; operator_new_array_fptr = normal_operator_new_array; operator_new_array_nothrow_fptr = normal_operator_new_array_nothrow; operator_new_array_debug_fptr = normal_operator_new_array_debug; operator_delete_fptr = normal_operator_delete; operator_delete_array_fptr = normal_operator_delete_array; malloc_fptr = normal_malloc; realloc_fptr = normal_realloc; free_fptr = normal_free; #endif } void MemoryLeakWarningPlugin::turnOnNewDeleteOverloads() { #if CPPUTEST_USE_MEM_LEAK_DETECTION operator_new_fptr = mem_leak_operator_new; operator_new_nothrow_fptr = mem_leak_operator_new_nothrow; operator_new_debug_fptr = mem_leak_operator_new_debug; operator_new_array_fptr = mem_leak_operator_new_array; operator_new_array_nothrow_fptr = mem_leak_operator_new_array_nothrow; operator_new_array_debug_fptr = mem_leak_operator_new_array_debug; operator_delete_fptr = mem_leak_operator_delete; operator_delete_array_fptr = mem_leak_operator_delete_array; malloc_fptr = mem_leak_malloc; realloc_fptr = mem_leak_realloc; free_fptr = mem_leak_free; #endif } void crash_on_allocation_number(unsigned alloc_number) { static CrashOnAllocationAllocator crashAllocator; crashAllocator.setNumberToCrashOn(alloc_number); setCurrentMallocAllocator(&crashAllocator); setCurrentNewAllocator(&crashAllocator); setCurrentNewArrayAllocator(&crashAllocator); } class MemoryLeakWarningReporter: public MemoryLeakFailure { public: virtual ~MemoryLeakWarningReporter() { } virtual void fail(char* fail_string) { UtestShell* currentTest = UtestShell::getCurrent(); currentTest->getTestResult()->addFailure(FailFailure(currentTest, currentTest->getName().asCharString(), currentTest->getLineNumber(), fail_string)); currentTest->exitCurrentTestWithoutException(); } }; static MemoryLeakFailure* globalReporter = 0; static MemoryLeakDetector* globalDetector = 0; MemoryLeakDetector* MemoryLeakWarningPlugin::getGlobalDetector() { if (globalDetector == 0) { turnOffNewDeleteOverloads(); globalReporter = new MemoryLeakWarningReporter; globalDetector = new MemoryLeakDetector(globalReporter); turnOnNewDeleteOverloads(); } return globalDetector; } MemoryLeakFailure* MemoryLeakWarningPlugin::getGlobalFailureReporter() { return globalReporter; } void MemoryLeakWarningPlugin::destroyGlobalDetectorAndTurnOffMemoryLeakDetectionInDestructor(bool des) { destroyGlobalDetectorAndTurnOfMemoryLeakDetectionInDestructor_ = des; } void MemoryLeakWarningPlugin::setGlobalDetector(MemoryLeakDetector* detector, MemoryLeakFailure* reporter) { globalDetector = detector; globalReporter = reporter; } void MemoryLeakWarningPlugin::destroyGlobalDetector() { turnOffNewDeleteOverloads(); delete globalDetector; delete globalReporter; globalDetector = NULL; } MemoryLeakWarningPlugin* MemoryLeakWarningPlugin::firstPlugin_ = 0; MemoryLeakWarningPlugin* MemoryLeakWarningPlugin::getFirstPlugin() { return firstPlugin_; } MemoryLeakDetector* MemoryLeakWarningPlugin::getMemoryLeakDetector() { return memLeakDetector_; } void MemoryLeakWarningPlugin::ignoreAllLeaksInTest() { ignoreAllWarnings_ = true; } void MemoryLeakWarningPlugin::expectLeaksInTest(int n) { expectedLeaks_ = n; } MemoryLeakWarningPlugin::MemoryLeakWarningPlugin(const SimpleString& name, MemoryLeakDetector* localDetector) : TestPlugin(name), ignoreAllWarnings_(false), destroyGlobalDetectorAndTurnOfMemoryLeakDetectionInDestructor_(false), expectedLeaks_(0) { if (firstPlugin_ == 0) firstPlugin_ = this; if (localDetector) memLeakDetector_ = localDetector; else memLeakDetector_ = getGlobalDetector(); memLeakDetector_->enable(); } MemoryLeakWarningPlugin::~MemoryLeakWarningPlugin() { if (destroyGlobalDetectorAndTurnOfMemoryLeakDetectionInDestructor_) { MemoryLeakWarningPlugin::turnOffNewDeleteOverloads(); MemoryLeakWarningPlugin::destroyGlobalDetector(); } } void MemoryLeakWarningPlugin::preTestAction(UtestShell& /*test*/, TestResult& result) { memLeakDetector_->startChecking(); failureCount_ = result.getFailureCount(); } void MemoryLeakWarningPlugin::postTestAction(UtestShell& test, TestResult& result) { memLeakDetector_->stopChecking(); int leaks = memLeakDetector_->totalMemoryLeaks(mem_leak_period_checking); if (!ignoreAllWarnings_ && expectedLeaks_ != leaks && failureCount_ == result.getFailureCount()) { TestFailure f(&test, memLeakDetector_->report(mem_leak_period_checking)); result.addFailure(f); } memLeakDetector_->markCheckingPeriodLeaksAsNonCheckingPeriod(); ignoreAllWarnings_ = false; expectedLeaks_ = 0; } const char* MemoryLeakWarningPlugin::FinalReport(int toBeDeletedLeaks) { int leaks = memLeakDetector_->totalMemoryLeaks(mem_leak_period_enabled); if (leaks != toBeDeletedLeaks) return memLeakDetector_->report(mem_leak_period_enabled); return ""; } cpputest-3.4/src/CppUTest/TestHarness_c.cpp0000664000175300017530000001221712066727207015743 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" #include "CppUTest/MemoryLeakDetector.h" #include "CppUTest/TestMemoryAllocator.h" #include "CppUTest/PlatformSpecificFunctions.h" #include "CppUTest/TestHarness_c.h" extern "C" { void CHECK_EQUAL_C_INT_LOCATION(int expected, int actual, const char* fileName, int lineNumber) { CHECK_EQUAL_LOCATION((long)expected, (long)actual, fileName, lineNumber); } void CHECK_EQUAL_C_REAL_LOCATION(double expected, double actual, double threshold, const char* fileName, int lineNumber) { DOUBLES_EQUAL_LOCATION(expected, actual, threshold, fileName, lineNumber); } void CHECK_EQUAL_C_CHAR_LOCATION(char expected, char actual, const char* fileName, int lineNumber) { CHECK_EQUAL_LOCATION(expected, actual, fileName, lineNumber); } void CHECK_EQUAL_C_STRING_LOCATION(const char* expected, const char* actual, const char* fileName, int lineNumber) { STRCMP_EQUAL_LOCATION(expected, actual, fileName, lineNumber); } void FAIL_TEXT_C_LOCATION(const char* text, const char* fileName, int lineNumber) { FAIL_LOCATION(text, fileName, lineNumber); } void FAIL_C_LOCATION(const char* fileName, int lineNumber) { FAIL_LOCATION("", fileName, lineNumber); } void CHECK_C_LOCATION(int condition, const char* conditionString, const char* fileName, int lineNumber) { CHECK_LOCATION_TRUE(((condition) == 0 ? false : true), "CHECK_C", conditionString, fileName, lineNumber); } enum { NO_COUNTDOWN = -1, OUT_OF_MEMORRY = 0 }; static int malloc_out_of_memory_counter = NO_COUNTDOWN; static int malloc_count = 0; void cpputest_malloc_count_reset(void) { malloc_count = 0; } int cpputest_malloc_get_count() { return malloc_count; } void cpputest_malloc_set_out_of_memory() { setCurrentMallocAllocator(NullUnknownAllocator::defaultAllocator()); } void cpputest_malloc_set_not_out_of_memory() { malloc_out_of_memory_counter = NO_COUNTDOWN; setCurrentMallocAllocatorToDefault(); } void cpputest_malloc_set_out_of_memory_countdown(int count) { malloc_out_of_memory_counter = count; if (malloc_out_of_memory_counter == OUT_OF_MEMORRY) cpputest_malloc_set_out_of_memory(); } void* cpputest_malloc(size_t size) { return cpputest_malloc_location(size, "", 0); } void* cpputest_calloc(size_t num, size_t size) { return cpputest_calloc_location(num, size, "", 0); } void* cpputest_realloc(void* ptr, size_t size) { return cpputest_realloc_location(ptr, size, "", 0); } void cpputest_free(void* buffer) { cpputest_free_location(buffer, "", 0); } static void countdown() { if (malloc_out_of_memory_counter <= NO_COUNTDOWN) return; if (malloc_out_of_memory_counter == OUT_OF_MEMORRY) return; malloc_out_of_memory_counter--; if (malloc_out_of_memory_counter == OUT_OF_MEMORRY) cpputest_malloc_set_out_of_memory(); } void* cpputest_malloc_location(size_t size, const char* file, int line) { countdown(); malloc_count++; return cpputest_malloc_location_with_leak_detection(size, file, line); } void* cpputest_calloc_location(size_t num, size_t size, const char* file, int line) { void* mem = cpputest_malloc_location(num * size, file, line); PlatformSpecificMemset(mem, 0, num*size); return mem; } void* cpputest_realloc_location(void* memory, size_t size, const char* file, int line) { return cpputest_realloc_location_with_leak_detection(memory, size, file, line); } void cpputest_free_location(void* buffer, const char* file, int line) { cpputest_free_location_with_leak_detection(buffer, file, line); } } cpputest-3.4/src/CppUTest/TestRegistry.cpp0000644000175300017530000001316412134163705015637 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" #include "CppUTest/TestRegistry.h" TestRegistry::TestRegistry() : tests_(&NullTestShell::instance()), firstPlugin_(NullTestPlugin::instance()), runInSeperateProcess_(false) { } TestRegistry::~TestRegistry() { } void TestRegistry::addTest(UtestShell *test) { tests_ = test->addTest(tests_); } void TestRegistry::runAllTests(TestResult& result) { bool groupStart = true; result.testsStarted(); for (UtestShell *test = tests_; !test->isNull(); test = test->getNext()) { if (runInSeperateProcess_) test->setRunInSeperateProcess(); if (groupStart) { result.currentGroupStarted(test); groupStart = false; } result.setProgressIndicator(test->getProgressIndicator()); result.countTest(); if (testShouldRun(test, result)) { result.currentTestStarted(test); test->runOneTestWithPlugins(firstPlugin_, result); result.currentTestEnded(test); } if (endOfGroup(test)) { groupStart = true; result.currentGroupEnded(test); } } result.testsEnded(); } bool TestRegistry::endOfGroup(UtestShell* test) { return (test->isNull() || test->getGroup() != test->getNext()->getGroup()); } int TestRegistry::countTests() { return tests_->countTests(); } TestRegistry* TestRegistry::currentRegistry_ = 0; TestRegistry* TestRegistry::getCurrentRegistry() { static TestRegistry registry; return (currentRegistry_ == 0) ? ®istry : currentRegistry_; } void TestRegistry::setCurrentRegistry(TestRegistry* registry) { currentRegistry_ = registry; } void TestRegistry::unDoLastAddTest() { tests_ = tests_->getNext(); } void TestRegistry::nameFilter(const TestFilter& f) { nameFilter_ = f; } void TestRegistry::groupFilter(const TestFilter& f) { groupFilter_ = f; } TestFilter TestRegistry::getGroupFilter() { return groupFilter_; } TestFilter TestRegistry::getNameFilter() { return nameFilter_; } void TestRegistry::setRunTestsInSeperateProcess() { runInSeperateProcess_ = true; } bool TestRegistry::testShouldRun(UtestShell* test, TestResult& result) { if (test->shouldRun(groupFilter_, nameFilter_)) return true; else { result.countFilteredOut(); return false; } } void TestRegistry::resetPlugins() { firstPlugin_ = NullTestPlugin::instance(); } void TestRegistry::installPlugin(TestPlugin* plugin) { firstPlugin_ = plugin->addPlugin(firstPlugin_); } TestPlugin* TestRegistry::getFirstPlugin() { return firstPlugin_; } TestPlugin* TestRegistry::getPluginByName(const SimpleString& name) { return firstPlugin_->getPluginByName(name); } void TestRegistry::removePluginByName(const SimpleString& name) { if (firstPlugin_->removePluginByName(name) == firstPlugin_) firstPlugin_ = firstPlugin_->getNext(); if (firstPlugin_->getName() == name) firstPlugin_ = firstPlugin_->getNext(); firstPlugin_->removePluginByName(name); } int TestRegistry::countPlugins() { int count = 0; for (TestPlugin* plugin = firstPlugin_; plugin != NullTestPlugin::instance(); plugin = plugin->getNext()) count++; return count; } UtestShell* TestRegistry::getFirstTest() { return tests_; } UtestShell* TestRegistry::getLastTest() { UtestShell* current = tests_; while (!current->getNext()->isNull()) current = current->getNext(); return current; } UtestShell* TestRegistry::getTestWithNext(UtestShell* test) { UtestShell* current = tests_; while (!current->getNext()->isNull() && current->getNext() != test) current = current->getNext(); return current; } UtestShell* TestRegistry::findTestWithName(const SimpleString& name) { UtestShell* current = tests_; while (!current->isNull()) { if (current->getName() == name) return current; current = current->getNext(); } return NULL; } UtestShell* TestRegistry::findTestWithGroup(const SimpleString& group) { UtestShell* current = tests_; while (!current->isNull()) { if (current->getGroup() == group) return current; current = current->getNext(); } return NULL; } cpputest-3.4/src/CppUTest/CommandLineTestRunner.cpp0000644000175300017530000001074112134163705017405 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" #include "CppUTest/CommandLineTestRunner.h" #include "CppUTest/TestOutput.h" #include "CppUTest/JUnitTestOutput.h" #include "CppUTest/TestRegistry.h" CommandLineTestRunner::CommandLineTestRunner(int ac, const char** av, TestOutput* output, TestRegistry* registry) : output_(output), jUnitOutput_(new JUnitTestOutput), registry_(registry) { arguments_ = new CommandLineArguments(ac, av); } CommandLineTestRunner::~CommandLineTestRunner() { delete arguments_; delete jUnitOutput_; } int CommandLineTestRunner::RunAllTests(int ac, char** av) { return RunAllTests(ac, const_cast (av)); } int CommandLineTestRunner::RunAllTests(int ac, const char** av) { int result = 0; ConsoleTestOutput output; MemoryLeakWarningPlugin memLeakWarn(DEF_PLUGIN_MEM_LEAK); memLeakWarn.destroyGlobalDetectorAndTurnOffMemoryLeakDetectionInDestructor(true); TestRegistry::getCurrentRegistry()->installPlugin(&memLeakWarn); { CommandLineTestRunner runner(ac, av, &output, TestRegistry::getCurrentRegistry()); result = runner.runAllTestsMain(); } if (result == 0) { output << memLeakWarn.FinalReport(0); } TestRegistry::getCurrentRegistry()->removePluginByName(DEF_PLUGIN_MEM_LEAK); return result; } int CommandLineTestRunner::runAllTestsMain() { int testResult = 0; SetPointerPlugin pPlugin(DEF_PLUGIN_SET_POINTER); registry_->installPlugin(&pPlugin); if (parseArguments(registry_->getFirstPlugin())) testResult = runAllTests(); registry_->removePluginByName(DEF_PLUGIN_SET_POINTER); return testResult; } void CommandLineTestRunner::initializeTestRun() { registry_->groupFilter(arguments_->getGroupFilter()); registry_->nameFilter(arguments_->getNameFilter()); if (arguments_->isVerbose()) output_->verbose(); if (arguments_->runTestsInSeperateProcess()) registry_->setRunTestsInSeperateProcess(); } int CommandLineTestRunner::runAllTests() { initializeTestRun(); int loopCount = 0; int failureCount = 0; int repeat_ = arguments_->getRepeatCount(); while (loopCount++ < repeat_) { output_->printTestRun(loopCount, repeat_); TestResult tr(*output_); registry_->runAllTests(tr); failureCount += tr.getFailureCount(); } return failureCount; } bool CommandLineTestRunner::parseArguments(TestPlugin* plugin) { if (arguments_->parse(plugin)) { if (arguments_->isJUnitOutput()) { output_ = jUnitOutput_; } return true; } else { output_->print(arguments_->usage()); return false; } } bool CommandLineTestRunner::isVerbose() { return arguments_->isVerbose(); } int CommandLineTestRunner::getRepeatCount() { return arguments_->getRepeatCount(); } TestFilter CommandLineTestRunner::getGroupFilter() { return arguments_->getGroupFilter(); } TestFilter CommandLineTestRunner::getNameFilter() { return arguments_->getNameFilter(); } cpputest-3.4/src/CppUTest/SimpleString.cpp0000644000175300017530000003132612143637532015613 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" #include "CppUTest/SimpleString.h" #include "CppUTest/PlatformSpecificFunctions.h" #include "CppUTest/TestMemoryAllocator.h" TestMemoryAllocator* SimpleString::stringAllocator_ = NULL; TestMemoryAllocator* SimpleString::getStringAllocator() { if (stringAllocator_ == NULL) return defaultNewArrayAllocator(); return stringAllocator_; } void SimpleString::setStringAllocator(TestMemoryAllocator* allocator) { stringAllocator_ = allocator; } /* Avoid using the memory leak detector INSIDE SimpleString as its used inside the detector */ char* SimpleString::allocStringBuffer(size_t _size) { return getStringAllocator()->alloc_memory(_size, __FILE__, __LINE__); } void SimpleString::deallocStringBuffer(char* str) { getStringAllocator()->free_memory(str, __FILE__, __LINE__); } char* SimpleString::getEmptyString() const { char* empty = allocStringBuffer(1); empty[0] = '\0'; return empty; } SimpleString::SimpleString(const char *otherBuffer) { if (otherBuffer == 0) { buffer_ = getEmptyString(); } else { size_t len = PlatformSpecificStrLen(otherBuffer) + 1; buffer_ = allocStringBuffer(len); PlatformSpecificStrCpy(buffer_, otherBuffer); } } SimpleString::SimpleString(const char *other, size_t repeatCount) { size_t len = PlatformSpecificStrLen(other) * repeatCount + 1; buffer_ = allocStringBuffer(len); char* next = buffer_; for (size_t i = 0; i < repeatCount; i++) { PlatformSpecificStrCpy(next, other); next += PlatformSpecificStrLen(other); } *next = 0; } SimpleString::SimpleString(const SimpleString& other) { size_t len = other.size() + 1; buffer_ = allocStringBuffer(len); PlatformSpecificStrCpy(buffer_, other.buffer_); } SimpleString& SimpleString::operator=(const SimpleString& other) { if (this != &other) { deallocStringBuffer(buffer_); size_t len = other.size() + 1; buffer_ = allocStringBuffer(len); PlatformSpecificStrCpy(buffer_, other.buffer_); } return *this; } bool SimpleString::contains(const SimpleString& other) const { //strstr on some machines does not handle "" //the right way. "" should be found in any string if (PlatformSpecificStrLen(other.buffer_) == 0) return true; else if (PlatformSpecificStrLen(buffer_) == 0) return false; else return PlatformSpecificStrStr(buffer_, other.buffer_) != 0; } bool SimpleString::containsNoCase(const SimpleString& other) const { return toLower().contains(other.toLower()); } bool SimpleString::startsWith(const SimpleString& other) const { if (PlatformSpecificStrLen(other.buffer_) == 0) return true; else if (PlatformSpecificStrLen(buffer_) == 0) return false; else return PlatformSpecificStrStr(buffer_, other.buffer_) == buffer_; } bool SimpleString::endsWith(const SimpleString& other) const { size_t buffer_length = PlatformSpecificStrLen(buffer_); size_t other_buffer_length = PlatformSpecificStrLen(other.buffer_); if (other_buffer_length == 0) return true; if (buffer_length == 0) return false; if (buffer_length < other_buffer_length) return false; return PlatformSpecificStrCmp(buffer_ + buffer_length - other_buffer_length, other.buffer_) == 0; } size_t SimpleString::count(const SimpleString& substr) const { size_t num = 0; char* str = buffer_; while ((str = PlatformSpecificStrStr(str, substr.buffer_))) { num++; str++; } return num; } void SimpleString::split(const SimpleString& delimiter, SimpleStringCollection& col) const { size_t num = count(delimiter); size_t extraEndToken = (endsWith(delimiter)) ? 0 : 1U; col.allocate(num + extraEndToken); char* str = buffer_; char* prev; for (size_t i = 0; i < num; ++i) { prev = str; str = PlatformSpecificStrStr(str, delimiter.buffer_) + 1; size_t len = (size_t) (str - prev); char* sub = allocStringBuffer(len + 1); PlatformSpecificStrNCpy(sub, prev, len); sub[len] = '\0'; col[i] = sub; deallocStringBuffer(sub); } if (extraEndToken) { col[num] = str; } } void SimpleString::replace(char to, char with) { size_t s = size(); for (size_t i = 0; i < s; i++) { if (buffer_[i] == to) buffer_[i] = with; } } void SimpleString::replace(const char* to, const char* with) { size_t c = count(to); size_t len = size(); size_t tolen = PlatformSpecificStrLen(to); size_t withlen = PlatformSpecificStrLen(with); size_t newsize = len + (withlen * c) - (tolen * c) + 1; if (newsize) { char* newbuf = allocStringBuffer(newsize); for (size_t i = 0, j = 0; i < len;) { if (PlatformSpecificStrNCmp(&buffer_[i], to, tolen) == 0) { PlatformSpecificStrNCpy(&newbuf[j], with, withlen); j += withlen; i += tolen; } else { newbuf[j] = buffer_[i]; j++; i++; } } deallocStringBuffer(buffer_); buffer_ = newbuf; buffer_[newsize - 1] = '\0'; } else { buffer_ = getEmptyString(); buffer_[0] = '\0'; } } SimpleString SimpleString::toLower() const { SimpleString str(*this); size_t str_size = str.size(); for (size_t i = 0; i < str_size; i++) str.buffer_[i] = PlatformSpecificToLower(str.buffer_[i]); return str; } const char *SimpleString::asCharString() const { return buffer_; } size_t SimpleString::size() const { return PlatformSpecificStrLen(buffer_); } bool SimpleString::isEmpty() const { return size() == 0; } SimpleString::~SimpleString() { deallocStringBuffer(buffer_); } bool operator==(const SimpleString& left, const SimpleString& right) { return 0 == PlatformSpecificStrCmp(left.asCharString(), right.asCharString()); } bool SimpleString::equalsNoCase(const SimpleString& str) const { return toLower() == str.toLower(); } bool operator!=(const SimpleString& left, const SimpleString& right) { return !(left == right); } SimpleString SimpleString::operator+(const SimpleString& rhs) { SimpleString t(buffer_); t += rhs.buffer_; return t; } SimpleString& SimpleString::operator+=(const SimpleString& rhs) { return operator+=(rhs.buffer_); } SimpleString& SimpleString::operator+=(const char* rhs) { size_t len = this->size() + PlatformSpecificStrLen(rhs) + 1; char* tbuffer = allocStringBuffer(len); PlatformSpecificStrCpy(tbuffer, this->buffer_); PlatformSpecificStrCat(tbuffer, rhs); deallocStringBuffer(buffer_); buffer_ = tbuffer; return *this; } void SimpleString::padStringsToSameLength(SimpleString& str1, SimpleString& str2, char padCharacter) { if (str1.size() > str2.size()) { padStringsToSameLength(str2, str1, padCharacter); return; } char pad[2]; pad[0] = padCharacter; pad[1] = 0; str1 = SimpleString(pad, str2.size() - str1.size()) + str1; } SimpleString SimpleString::subString(size_t beginPos, size_t amount) const { if (beginPos > size()-1) return ""; SimpleString newString = buffer_ + beginPos; if (newString.size() > amount) newString.buffer_[amount] = '\0'; return newString; } char SimpleString::at(int pos) const { return buffer_[pos]; } int SimpleString::find(char ch) const { return findFrom(0, ch); } int SimpleString::findFrom(size_t starting_position, char ch) const { size_t length = size(); for (size_t i = starting_position; i < length; i++) if (buffer_[i] == ch) return (int) i; return -1; } SimpleString SimpleString::subStringFromTill(char startChar, char lastExcludedChar) const { int beginPos = find(startChar); if (beginPos < 0) return ""; int endPos = findFrom((size_t)beginPos, lastExcludedChar); if (endPos == -1) return subString((size_t)beginPos, size()); return subString((size_t)beginPos, (size_t) (endPos - beginPos)); } void SimpleString::copyToBuffer(char* bufferToCopy, size_t bufferSize) const { if (bufferToCopy == NULL || bufferSize == 0) return; size_t sizeToCopy = (bufferSize-1 < size()) ? bufferSize-1 : size(); PlatformSpecificStrNCpy(bufferToCopy, buffer_, sizeToCopy); bufferToCopy[sizeToCopy] = '\0'; } SimpleString StringFrom(bool value) { return SimpleString(StringFromFormat("%s", value ? "true" : "false")); } SimpleString StringFrom(const char *value) { return SimpleString(value); } SimpleString StringFromOrNull(const char * expected) { return (expected) ? StringFrom(expected) : "(null)"; } SimpleString StringFrom(int value) { return StringFromFormat("%d", value); } SimpleString StringFrom(long value) { return StringFromFormat("%ld", value); } SimpleString StringFrom(const void* value) { return SimpleString("0x") + HexStringFrom((long) value); } SimpleString HexStringFrom(long value) { return StringFromFormat("%lx", value); } SimpleString StringFrom(double value, int precision) { SimpleString format = StringFromFormat("%%.%dg", precision); return StringFromFormat(format.asCharString(), value); } SimpleString StringFrom(char value) { return StringFromFormat("%c", value); } SimpleString StringFrom(const SimpleString& value) { return SimpleString(value); } SimpleString StringFromFormat(const char* format, ...) { SimpleString resultString; va_list arguments; va_start(arguments, format); resultString = VStringFromFormat(format, arguments); va_end(arguments); return resultString; } #if CPPUTEST_USE_STD_CPP_LIB #include SimpleString StringFrom(const std::string& value) { return SimpleString(value.c_str()); } SimpleString StringFrom(unsigned long i) { return StringFromFormat("%lu (0x%lx)", i, i); } SimpleString StringFrom(uint32_t i) { return StringFromFormat("%10u (0x%08x)", i, i); } SimpleString StringFrom(uint16_t i) { return StringFromFormat("%5u (0x%04x)", i, i); } SimpleString StringFrom(uint8_t i) { return StringFromFormat("%3u (0x%02x)", i, i); } #endif //Kludge to get a va_copy in VC++ V6 #ifndef va_copy #define va_copy(copy, original) copy = original; #endif SimpleString VStringFromFormat(const char* format, va_list args) { va_list argsCopy; va_copy(argsCopy, args); enum { sizeOfdefaultBuffer = 100 }; char defaultBuffer[sizeOfdefaultBuffer]; SimpleString resultString; int size = PlatformSpecificVSNprintf(defaultBuffer, sizeOfdefaultBuffer, format, args); if (size < sizeOfdefaultBuffer) { resultString = SimpleString(defaultBuffer); } else { size_t newBufferSize = (size_t) size + 1; char* newBuffer = SimpleString::allocStringBuffer(newBufferSize); PlatformSpecificVSNprintf(newBuffer, newBufferSize, format, argsCopy); resultString = SimpleString(newBuffer); SimpleString::deallocStringBuffer(newBuffer); } va_end(argsCopy); return resultString; } SimpleStringCollection::SimpleStringCollection() { collection_ = 0; size_ = 0; } void SimpleStringCollection::allocate(size_t _size) { if (collection_) delete[] collection_; size_ = _size; collection_ = new SimpleString[size_]; } SimpleStringCollection::~SimpleStringCollection() { delete[] (collection_); } size_t SimpleStringCollection::size() const { return size_; } SimpleString& SimpleStringCollection::operator[](size_t index) { if (index >= size_) { empty_ = ""; return empty_; } return collection_[index]; } cpputest-3.4/src/CppUTest/TestMemoryAllocator.cpp0000644000175300017530000001351512134163705017140 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" #include "CppUTest/TestMemoryAllocator.h" #include "CppUTest/PlatformSpecificFunctions.h" #include "CppUTest/MemoryLeakDetector.h" static char* checkedMalloc(size_t size) { char* mem = (char*) PlatformSpecificMalloc(size); if (mem == 0) FAIL("malloc returned null pointer"); return mem; } static TestMemoryAllocator* currentNewAllocator = 0; static TestMemoryAllocator* currentNewArrayAllocator = 0; static TestMemoryAllocator* currentMallocAllocator = 0; void setCurrentNewAllocator(TestMemoryAllocator* allocator) { currentNewAllocator = allocator; } TestMemoryAllocator* getCurrentNewAllocator() { if (currentNewAllocator == 0) setCurrentNewAllocatorToDefault(); return currentNewAllocator; } void setCurrentNewAllocatorToDefault() { currentNewAllocator = defaultNewAllocator(); } TestMemoryAllocator* defaultNewAllocator() { static TestMemoryAllocator allocator("Standard New Allocator", "new", "delete"); return &allocator; } void setCurrentNewArrayAllocator(TestMemoryAllocator* allocator) { currentNewArrayAllocator = allocator; } TestMemoryAllocator* getCurrentNewArrayAllocator() { if (currentNewArrayAllocator == 0) setCurrentNewArrayAllocatorToDefault(); return currentNewArrayAllocator; } void setCurrentNewArrayAllocatorToDefault() { currentNewArrayAllocator = defaultNewArrayAllocator(); } TestMemoryAllocator* defaultNewArrayAllocator() { static TestMemoryAllocator allocator("Standard New [] Allocator", "new []", "delete []"); return &allocator; } void setCurrentMallocAllocator(TestMemoryAllocator* allocator) { currentMallocAllocator = allocator; } TestMemoryAllocator* getCurrentMallocAllocator() { if (currentMallocAllocator == 0) setCurrentMallocAllocatorToDefault(); return currentMallocAllocator; } void setCurrentMallocAllocatorToDefault() { currentMallocAllocator = defaultMallocAllocator(); } TestMemoryAllocator* defaultMallocAllocator() { static TestMemoryAllocator allocator("Standard Malloc Allocator", "malloc", "free"); return &allocator; } ///////////////////////////////////////////// TestMemoryAllocator::TestMemoryAllocator(const char* name_str, const char* alloc_name_str, const char* free_name_str) : name_(name_str), alloc_name_(alloc_name_str), free_name_(free_name_str), hasBeenDestroyed_(false) { } TestMemoryAllocator::~TestMemoryAllocator() { hasBeenDestroyed_ = true; } bool TestMemoryAllocator::hasBeenDestroyed() { return hasBeenDestroyed_; } bool TestMemoryAllocator::isOfEqualType(TestMemoryAllocator* allocator) { return PlatformSpecificStrCmp(this->name(), allocator->name()) == 0; } char* TestMemoryAllocator::allocMemoryLeakNode(size_t size) { return alloc_memory(size, "MemoryLeakNode", 1); } void TestMemoryAllocator::freeMemoryLeakNode(char* memory) { free_memory(memory, "MemoryLeakNode", 1); } char* TestMemoryAllocator::alloc_memory(size_t size, const char*, int) { return checkedMalloc(size); } void TestMemoryAllocator::free_memory(char* memory, const char*, int) { PlatformSpecificFree(memory); } const char* TestMemoryAllocator::name() { return name_; } const char* TestMemoryAllocator::alloc_name() { return alloc_name_; } const char* TestMemoryAllocator::free_name() { return free_name_; } CrashOnAllocationAllocator::CrashOnAllocationAllocator() : allocationToCrashOn_(0) { } void CrashOnAllocationAllocator::setNumberToCrashOn(unsigned allocationToCrashOn) { allocationToCrashOn_ = allocationToCrashOn; } char* CrashOnAllocationAllocator::alloc_memory(size_t size, const char* file, int line) { if (MemoryLeakWarningPlugin::getGlobalDetector()->getCurrentAllocationNumber() == allocationToCrashOn_) UT_CRASH(); return TestMemoryAllocator::alloc_memory(size, file, line); } char* NullUnknownAllocator::alloc_memory(size_t /*size*/, const char*, int) { return 0; } void NullUnknownAllocator::free_memory(char* /*memory*/, const char*, int) { } NullUnknownAllocator::NullUnknownAllocator() : TestMemoryAllocator("Null Allocator", "unknown", "unknown") { } TestMemoryAllocator* NullUnknownAllocator::defaultAllocator() { static NullUnknownAllocator allocator; return &allocator; } cpputest-3.4/src/CppUTest/TestResult.cpp0000644000175300017530000001020012023251675015272 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" #include "CppUTest/TestResult.h" #include "CppUTest/TestFailure.h" #include "CppUTest/TestOutput.h" #include "CppUTest/PlatformSpecificFunctions.h" TestResult::TestResult(TestOutput& p) : output_(p), testCount_(0), runCount_(0), checkCount_(0), failureCount_(0), filteredOutCount_(0), ignoredCount_(0), totalExecutionTime_(0), timeStarted_(0), currentTestTimeStarted_(0), currentTestTotalExecutionTime_(0), currentGroupTimeStarted_(0), currentGroupTotalExecutionTime_(0) { } void TestResult::setProgressIndicator(const char* indicator) { output_.setProgressIndicator(indicator); } TestResult::~TestResult() { } void TestResult::currentGroupStarted(UtestShell* test) { output_.printCurrentGroupStarted(*test); currentGroupTimeStarted_ = GetPlatformSpecificTimeInMillis(); } void TestResult::currentGroupEnded(UtestShell* /*test*/) { currentGroupTotalExecutionTime_ = GetPlatformSpecificTimeInMillis() - currentGroupTimeStarted_; output_.printCurrentGroupEnded(*this); } void TestResult::currentTestStarted(UtestShell* test) { output_.printCurrentTestStarted(*test); currentTestTimeStarted_ = GetPlatformSpecificTimeInMillis(); } void TestResult::print(const char* text) { output_.print(text); } void TestResult::currentTestEnded(UtestShell* /*test*/) { currentTestTotalExecutionTime_ = GetPlatformSpecificTimeInMillis() - currentTestTimeStarted_; output_.printCurrentTestEnded(*this); } void TestResult::addFailure(const TestFailure& failure) { output_.print(failure); failureCount_++; } void TestResult::countTest() { testCount_++; } void TestResult::countRun() { runCount_++; } void TestResult::countCheck() { checkCount_++; } void TestResult::countFilteredOut() { filteredOutCount_++; } void TestResult::countIgnored() { ignoredCount_++; } void TestResult::testsStarted() { timeStarted_ = GetPlatformSpecificTimeInMillis(); output_.printTestsStarted(); } void TestResult::testsEnded() { long timeEnded = GetPlatformSpecificTimeInMillis(); totalExecutionTime_ = timeEnded - timeStarted_; output_.printTestsEnded(*this); } long TestResult::getTotalExecutionTime() const { return totalExecutionTime_; } void TestResult::setTotalExecutionTime(long exTime) { totalExecutionTime_ = exTime; } long TestResult::getCurrentTestTotalExecutionTime() const { return currentTestTotalExecutionTime_; } long TestResult::getCurrentGroupTotalExecutionTime() const { return currentGroupTotalExecutionTime_; } cpputest-3.4/src/CppUTest/JUnitTestOutput.cpp0000644000175300017530000001652712134163705016307 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" #include "CppUTest/JUnitTestOutput.h" #include "CppUTest/TestResult.h" #include "CppUTest/TestFailure.h" #include "CppUTest/PlatformSpecificFunctions.h" struct JUnitTestCaseResultNode { JUnitTestCaseResultNode() : execTime_(0), failure_(0), next_(0) { } SimpleString name_; long execTime_; TestFailure* failure_; JUnitTestCaseResultNode* next_; }; struct JUnitTestGroupResult { JUnitTestGroupResult() : testCount_(0), failureCount_(0), groupExecTime_(0), head_(0), tail_(0) { } int testCount_; int failureCount_; long startTime_; long groupExecTime_; SimpleString group_; JUnitTestCaseResultNode* head_; JUnitTestCaseResultNode* tail_; }; struct JUnitTestOutputImpl { JUnitTestGroupResult results_; PlatformSpecificFile file_; }; JUnitTestOutput::JUnitTestOutput() : impl_(new JUnitTestOutputImpl) { } JUnitTestOutput::~JUnitTestOutput() { resetTestGroupResult(); delete impl_; } void JUnitTestOutput::resetTestGroupResult() { impl_->results_.testCount_ = 0; impl_->results_.failureCount_ = 0; impl_->results_.group_ = ""; JUnitTestCaseResultNode* cur = impl_->results_.head_; while (cur) { JUnitTestCaseResultNode* tmp = cur->next_; ; if (cur->failure_) delete cur->failure_; delete cur; cur = tmp; } impl_->results_.head_ = 0; impl_->results_.tail_ = 0; } void JUnitTestOutput::printTestsStarted() { } void JUnitTestOutput::printCurrentGroupStarted(const UtestShell& /*test*/) { } void JUnitTestOutput::printCurrentTestEnded(const TestResult& result) { impl_->results_.tail_->execTime_ = result.getCurrentTestTotalExecutionTime(); } void JUnitTestOutput::printTestsEnded(const TestResult& /*result*/) { } void JUnitTestOutput::printCurrentGroupEnded(const TestResult& result) { impl_->results_.groupExecTime_ = result.getCurrentGroupTotalExecutionTime(); writeTestGroupToFile(); resetTestGroupResult(); } void JUnitTestOutput::printCurrentTestStarted(const UtestShell& test) { impl_->results_.testCount_++; impl_->results_.group_ = test.getGroup(); impl_->results_.startTime_ = GetPlatformSpecificTimeInMillis(); if (impl_->results_.tail_ == 0) { impl_->results_.head_ = impl_->results_.tail_ = new JUnitTestCaseResultNode; } else { impl_->results_.tail_->next_ = new JUnitTestCaseResultNode; impl_->results_.tail_ = impl_->results_.tail_->next_; } impl_->results_.tail_->name_ = test.getName(); } SimpleString JUnitTestOutput::createFileName(const SimpleString& group) { SimpleString fileName = "cpputest_"; fileName += group; fileName.replace('/', '_'); fileName += ".xml"; return fileName; } void JUnitTestOutput::writeXmlHeader() { writeToFile("\n"); } void JUnitTestOutput::writeTestSuiteSummery() { SimpleString buf = StringFromFormat( "\n", impl_->results_.failureCount_, impl_->results_.group_.asCharString(), impl_->results_.testCount_, (int) (impl_->results_.groupExecTime_ / 1000), (int) (impl_->results_.groupExecTime_ % 1000), GetPlatformSpecificTimeString()); writeToFile(buf.asCharString()); } void JUnitTestOutput::writeProperties() { writeToFile("\n"); writeToFile("\n"); } void JUnitTestOutput::writeTestCases() { JUnitTestCaseResultNode* cur = impl_->results_.head_; while (cur) { SimpleString buf = StringFromFormat( "\n", impl_->results_.group_.asCharString(), cur->name_.asCharString(), (int) (cur->execTime_ / 1000), (int)(cur->execTime_ % 1000)); writeToFile(buf.asCharString()); if (cur->failure_) { writeFailure(cur); } writeToFile("\n"); cur = cur->next_; } } void JUnitTestOutput::writeFailure(JUnitTestCaseResultNode* node) { SimpleString message = node->failure_->getMessage().asCharString(); message.replace('"', '\''); message.replace('<', '['); message.replace('>', ']'); message.replace("\n", "{newline}"); SimpleString buf = StringFromFormat( "\n", node->failure_->getFileName().asCharString(), node->failure_->getFailureLineNumber(), message.asCharString()); writeToFile(buf.asCharString()); writeToFile("\n"); } void JUnitTestOutput::writeFileEnding() { writeToFile("\n"); writeToFile("\n"); writeToFile(""); } void JUnitTestOutput::writeTestGroupToFile() { openFileForWrite(createFileName(impl_->results_.group_)); writeXmlHeader(); writeTestSuiteSummery(); writeProperties(); writeTestCases(); writeFileEnding(); closeFile(); } void JUnitTestOutput::verbose() { } void JUnitTestOutput::printBuffer(const char*) { } void JUnitTestOutput::print(const char*) { } void JUnitTestOutput::print(long) { } void JUnitTestOutput::print(const TestFailure& failure) { if (impl_->results_.tail_->failure_ == 0) { impl_->results_.failureCount_++; impl_->results_.tail_->failure_ = new TestFailure(failure); } } void JUnitTestOutput::printTestRun(int /*number*/, int /*total*/) { } void JUnitTestOutput::flush() { } void JUnitTestOutput::openFileForWrite(const SimpleString& fileName) { impl_->file_ = PlatformSpecificFOpen(fileName.asCharString(), "w"); } void JUnitTestOutput::writeToFile(const SimpleString& buffer) { PlatformSpecificFPuts(buffer.asCharString(), impl_->file_); } void JUnitTestOutput::closeFile() { PlatformSpecificFClose(impl_->file_); } cpputest-3.4/src/CppUTest/TestFailure.cpp0000664000175300017530000002313712066727207015430 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" #include "CppUTest/TestFailure.h" #include "CppUTest/TestOutput.h" #include "CppUTest/PlatformSpecificFunctions.h" static SimpleString removeAllPrintableCharactersFrom(const SimpleString& str) { size_t bufferSize = str.size()+1; char* buffer = (char*) PlatformSpecificMalloc(bufferSize); str.copyToBuffer(buffer, bufferSize); for (size_t i = 0; i < bufferSize-1; i++) if (buffer[i] != '\t' && buffer[i] != '\n') buffer[i] = ' '; SimpleString result(buffer); PlatformSpecificFree(buffer); return result; } static SimpleString addMarkerToString(const SimpleString& str, int markerPos) { size_t bufferSize = str.size()+1; char* buffer = (char*) PlatformSpecificMalloc(bufferSize); str.copyToBuffer(buffer, bufferSize); buffer[markerPos] = '^'; SimpleString result(buffer); PlatformSpecificFree(buffer); return result; } TestFailure::TestFailure(UtestShell* test, const char* fileName, int lineNumber, const SimpleString& theMessage) : testName_(test->getFormattedName()), fileName_(fileName), lineNumber_(lineNumber), testFileName_(test->getFile()), testLineNumber_(test->getLineNumber()), message_(theMessage) { } TestFailure::TestFailure(UtestShell* test, const SimpleString& theMessage) : testName_(test->getFormattedName()), fileName_(test->getFile()), lineNumber_(test->getLineNumber()), testFileName_(test->getFile()), testLineNumber_(test->getLineNumber()), message_(theMessage) { } TestFailure::TestFailure(UtestShell* test, const char* fileName, int lineNum) : testName_(test->getFormattedName()), fileName_(fileName), lineNumber_(lineNum), testFileName_(test->getFile()), testLineNumber_(test->getLineNumber()), message_("no message") { } TestFailure::TestFailure(const TestFailure& f) : testName_(f.testName_), fileName_(f.fileName_), lineNumber_(f.lineNumber_), testFileName_(f.testFileName_), testLineNumber_(f.testLineNumber_), message_(f.message_) { } TestFailure::~TestFailure() { } SimpleString TestFailure::getFileName() const { return fileName_; } SimpleString TestFailure::getTestFileName() const { return testFileName_; } SimpleString TestFailure::getTestName() const { return testName_; } int TestFailure::getFailureLineNumber() const { return lineNumber_; } int TestFailure::getTestLineNumber() const { return testLineNumber_; } SimpleString TestFailure::getMessage() const { return message_; } bool TestFailure::isOutsideTestFile() const { return testFileName_ != fileName_; } bool TestFailure::isInHelperFunction() const { return lineNumber_ < testLineNumber_; } SimpleString TestFailure::createButWasString(const SimpleString& expected, const SimpleString& actual) { const char* format = "expected <%s>\n\tbut was <%s>"; return StringFromFormat(format, expected.asCharString(), actual.asCharString()); } SimpleString TestFailure::createDifferenceAtPosString(const SimpleString& actual, size_t position) { SimpleString result; const size_t extraCharactersWindow = 20; const size_t halfOfExtraCharactersWindow = extraCharactersWindow / 2; SimpleString paddingForPreventingOutOfBounds (" ", halfOfExtraCharactersWindow); SimpleString actualString = paddingForPreventingOutOfBounds + actual + paddingForPreventingOutOfBounds; SimpleString differentString = StringFromFormat("difference starts at position %d at: <", position); result += "\n"; result += StringFromFormat("\t%s%s>\n", differentString.asCharString(), actualString.subString(position, extraCharactersWindow).asCharString()); SimpleString markString = actualString.subString(position, halfOfExtraCharactersWindow+1); markString = removeAllPrintableCharactersFrom(markString); markString = addMarkerToString(markString, halfOfExtraCharactersWindow); result += StringFromFormat("\t%s%s", SimpleString(" ", differentString.size()).asCharString(), markString.asCharString()); return result; } EqualsFailure::EqualsFailure(UtestShell* test, const char* fileName, int lineNumber, const char* expected, const char* actual) : TestFailure(test, fileName, lineNumber) { message_ = createButWasString(StringFromOrNull(expected), StringFromOrNull(actual)); } EqualsFailure::EqualsFailure(UtestShell* test, const char* fileName, int lineNumber, const SimpleString& expected, const SimpleString& actual) : TestFailure(test, fileName, lineNumber) { message_ = createButWasString(expected, actual); } static SimpleString StringFromOrNan(double d) { if (PlatformSpecificIsNan(d)) return "Nan - Not a number"; return StringFrom(d); } DoublesEqualFailure::DoublesEqualFailure(UtestShell* test, const char* fileName, int lineNumber, double expected, double actual, double threshold) : TestFailure(test, fileName, lineNumber) { message_ = createButWasString(StringFromOrNan(expected), StringFromOrNan(actual)); message_ += " threshold used was <"; message_ += StringFromOrNan(threshold); message_ += ">"; if (PlatformSpecificIsNan(expected) || PlatformSpecificIsNan(actual) || PlatformSpecificIsNan(threshold)) message_ += "\n\tCannot make comparisons with Nan"; } CheckEqualFailure::CheckEqualFailure(UtestShell* test, const char* fileName, int lineNumber, const SimpleString& expected, const SimpleString& actual) : TestFailure(test, fileName, lineNumber) { size_t failStart; for (failStart = 0; actual.asCharString()[failStart] == expected.asCharString()[failStart]; failStart++) ; message_ = createButWasString(expected, actual); message_ += createDifferenceAtPosString(actual, failStart); } ContainsFailure::ContainsFailure(UtestShell* test, const char* fileName, int lineNumber, const SimpleString& expected, const SimpleString& actual) : TestFailure(test, fileName, lineNumber) { const char* format = "actual <%s>\n\tdid not contain <%s>"; message_ = StringFromFormat(format, actual.asCharString(), expected.asCharString()); } CheckFailure::CheckFailure(UtestShell* test, const char* fileName, int lineNumber, const SimpleString& checkString, const SimpleString& conditionString, const SimpleString& text) : TestFailure(test, fileName, lineNumber) { message_ = ""; if (!text.isEmpty()) { message_ += "Message: "; message_ += text; message_ += "\n\t"; } message_ += checkString; message_ += "("; message_ += conditionString; message_ += ") failed"; } FailFailure::FailFailure(UtestShell* test, const char* fileName, int lineNumber, const SimpleString& message) : TestFailure(test, fileName, lineNumber) { message_ = message; } LongsEqualFailure::LongsEqualFailure(UtestShell* test, const char* fileName, int lineNumber, long expected, long actual) : TestFailure(test, fileName, lineNumber) { SimpleString aDecimal = StringFrom(actual); SimpleString aHex = HexStringFrom(actual); SimpleString eDecimal = StringFrom(expected); SimpleString eHex = HexStringFrom(expected); SimpleString::padStringsToSameLength(aDecimal, eDecimal, ' '); SimpleString::padStringsToSameLength(aHex, eHex, '0'); SimpleString actualReported = aDecimal + " 0x" + aHex; SimpleString expectedReported = eDecimal + " 0x" + eHex; message_ = createButWasString(expectedReported, actualReported); } StringEqualFailure::StringEqualFailure(UtestShell* test, const char* fileName, int lineNumber, const char* expected, const char* actual) : TestFailure(test, fileName, lineNumber) { size_t failStart; for (failStart = 0; actual[failStart] == expected[failStart]; failStart++) ; message_ = createButWasString(expected, actual); message_ += createDifferenceAtPosString(actual, failStart); } StringEqualNoCaseFailure::StringEqualNoCaseFailure(UtestShell* test, const char* fileName, int lineNumber, const char* expected, const char* actual) : TestFailure(test, fileName, lineNumber) { size_t failStart; for (failStart = 0; PlatformSpecificToLower(actual[failStart]) == PlatformSpecificToLower(expected[failStart]); failStart++) ; message_ = createButWasString(expected, actual); message_ += createDifferenceAtPosString(actual, failStart); } cpputest-3.4/src/CppUTest/TestOutput.cpp0000664000175300017530000001464312066727207015343 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" #include "CppUTest/TestOutput.h" #include "CppUTest/PlatformSpecificFunctions.h" TestOutput::WorkingEnvironment TestOutput::workingEnvironment_ = TestOutput::detectEnvironment; void TestOutput::setWorkingEnvironment(TestOutput::WorkingEnvironment workEnvironment) { workingEnvironment_ = workEnvironment; } TestOutput::WorkingEnvironment TestOutput::getWorkingEnvironment() { if (workingEnvironment_ == TestOutput::detectEnvironment) return PlatformSpecificGetWorkingEnvironment(); return workingEnvironment_; } TestOutput::TestOutput() : dotCount_(0), verbose_(false), progressIndication_(".") { } TestOutput::~TestOutput() { } void TestOutput::verbose() { verbose_ = true; } void TestOutput::print(const char* str) { printBuffer(str); } void TestOutput::print(long n) { print(StringFrom(n).asCharString()); } void TestOutput::printDouble(double d) { print(StringFrom(d).asCharString()); } void TestOutput::printHex(long n) { print(HexStringFrom(n).asCharString()); } TestOutput& operator<<(TestOutput& p, const char* s) { p.print(s); return p; } TestOutput& operator<<(TestOutput& p, long int i) { p.print(i); return p; } void TestOutput::printCurrentTestStarted(const UtestShell& test) { if (verbose_) print(test.getFormattedName().asCharString()); } void TestOutput::printCurrentTestEnded(const TestResult& res) { if (verbose_) { print(" - "); print(res.getCurrentTestTotalExecutionTime()); print(" ms\n"); } else { printProgressIndicator(); } } void TestOutput::printProgressIndicator() { print(progressIndication_); if (++dotCount_ % 50 == 0) print("\n"); } void TestOutput::setProgressIndicator(const char* indicator) { progressIndication_ = indicator; } void TestOutput::printTestsStarted() { } void TestOutput::printCurrentGroupStarted(const UtestShell& /*test*/) { } void TestOutput::printCurrentGroupEnded(const TestResult& /*res*/) { } void TestOutput::flush() { } void TestOutput::printTestsEnded(const TestResult& result) { if (result.getFailureCount() > 0) { print("\nErrors ("); print(result.getFailureCount()); print(" failures, "); } else { print("\nOK ("); } print(result.getTestCount()); print(" tests, "); print(result.getRunCount()); print(" ran, "); print(result.getCheckCount()); print(" checks, "); print(result.getIgnoredCount()); print(" ignored, "); print(result.getFilteredOutCount()); print(" filtered out, "); print(result.getTotalExecutionTime()); print(" ms)\n\n"); } void TestOutput::printTestRun(int number, int total) { if (total > 1) { print("Test run "); print(number); print(" of "); print(total); print("\n"); } } void TestOutput::print(const TestFailure& failure) { if (failure.isOutsideTestFile() || failure.isInHelperFunction()) printFileAndLineForTestAndFailure(failure); else printFileAndLineForFailure(failure); printFailureMessage(failure.getMessage()); } void TestOutput::printFileAndLineForTestAndFailure(const TestFailure& failure) { printErrorInFileOnLineFormattedForWorkingEnvironment(failure.getTestFileName(), failure.getTestLineNumber()); printFailureInTest(failure.getTestName()); printErrorInFileOnLineFormattedForWorkingEnvironment(failure.getFileName(), failure.getFailureLineNumber()); } void TestOutput::printFileAndLineForFailure(const TestFailure& failure) { printErrorInFileOnLineFormattedForWorkingEnvironment(failure.getFileName(), failure.getFailureLineNumber()); printFailureInTest(failure.getTestName()); } void TestOutput::printFailureInTest(SimpleString testName) { print(" Failure in "); print(testName.asCharString()); } void TestOutput::printFailureMessage(SimpleString reason) { print("\n"); print("\t"); print(reason.asCharString()); print("\n\n"); } void TestOutput::printErrorInFileOnLineFormattedForWorkingEnvironment(SimpleString file, int lineNumber) { if (TestOutput::getWorkingEnvironment() == TestOutput::vistualStudio) printVistualStudioErrorInFileOnLine(file, lineNumber); else printEclipseErrorInFileOnLine(file, lineNumber); } void TestOutput::printEclipseErrorInFileOnLine(SimpleString file, int lineNumber) { print("\n"); print(file.asCharString()); print(":"); print(lineNumber); print(":"); print(" error:"); } void TestOutput::printVistualStudioErrorInFileOnLine(SimpleString file, int lineNumber) { print("\n"); print(file.asCharString()); print("("); print(lineNumber); print("):"); print(" error:"); } void ConsoleTestOutput::printBuffer(const char* s) { while (*s) { PlatformSpecificPutchar(*s); s++; } flush(); } void ConsoleTestOutput::flush() { PlatformSpecificFlush(); } StringBufferTestOutput::~StringBufferTestOutput() { } cpputest-3.4/src/CppUTest/MemoryLeakDetector.cpp0000664000175300017530000004043712066727207016742 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" #include "CppUTest/MemoryLeakDetector.h" #include "CppUTest/TestMemoryAllocator.h" #include "CppUTest/PlatformSpecificFunctions.h" #define UNKNOWN ((char*)("")) SimpleStringBuffer::SimpleStringBuffer() : positions_filled_(0), write_limit_(SIMPLE_STRING_BUFFER_LEN-1) { } void SimpleStringBuffer::clear() { positions_filled_ = 0; buffer_[0] = '\0'; } void SimpleStringBuffer::add(const char* format, ...) { int count = 0; int positions_left = write_limit_ - positions_filled_; if (positions_left <= 0) return; va_list arguments; va_start(arguments, format); count = PlatformSpecificVSNprintf(buffer_ + positions_filled_, (size_t) (positions_left+1), format, arguments); if (count > 0) positions_filled_ += count; if (positions_filled_ > write_limit_) positions_filled_ = write_limit_; va_end(arguments); } char* SimpleStringBuffer::toString() { return buffer_; } void SimpleStringBuffer::setWriteLimit(int write_limit) { write_limit_ = write_limit; if (write_limit_ > SIMPLE_STRING_BUFFER_LEN-1) write_limit_ = SIMPLE_STRING_BUFFER_LEN-1; } void SimpleStringBuffer::resetWriteLimit() { write_limit_ = SIMPLE_STRING_BUFFER_LEN-1; } bool SimpleStringBuffer::reachedItsCapacity() { return positions_filled_ >= write_limit_; } //////////////////////// void MemoryLeakDetectorNode::init(char* memory, unsigned number, size_t size, TestMemoryAllocator* allocator, MemLeakPeriod period, const char* file, int line) { number_ = number; memory_ = memory; size_ = size; allocator_ = allocator; period_ = period; file_ = file; line_ = line; } /////////////////////// bool MemoryLeakDetectorList::isInPeriod(MemoryLeakDetectorNode* node, MemLeakPeriod period) { return period == mem_leak_period_all || node->period_ == period || (node->period_ != mem_leak_period_disabled && period == mem_leak_period_enabled); } void MemoryLeakDetectorList::clearAllAccounting(MemLeakPeriod period) { MemoryLeakDetectorNode* cur = head_; MemoryLeakDetectorNode* prev = 0; while (cur) { if (isInPeriod(cur, period)) { if (prev) { prev->next_ = cur->next_; cur = prev; } else { head_ = cur->next_; cur = head_; continue; } } prev = cur; cur = cur->next_; } } void MemoryLeakDetectorList::addNewNode(MemoryLeakDetectorNode* node) { node->next_ = head_; head_ = node; } MemoryLeakDetectorNode* MemoryLeakDetectorList::removeNode(char* memory) { MemoryLeakDetectorNode* cur = head_; MemoryLeakDetectorNode* prev = 0; while (cur) { if (cur->memory_ == memory) { if (prev) { prev->next_ = cur->next_; return cur; } else { head_ = cur->next_; return cur; } } prev = cur; cur = cur->next_; } return 0; } MemoryLeakDetectorNode* MemoryLeakDetectorList::retrieveNode(char* memory) { MemoryLeakDetectorNode* cur = head_; while (cur) { if (cur->memory_ == memory) return cur; cur = cur->next_; } return NULL; } MemoryLeakDetectorNode* MemoryLeakDetectorList::getLeakFrom(MemoryLeakDetectorNode* node, MemLeakPeriod period) { for (MemoryLeakDetectorNode* cur = node; cur; cur = cur->next_) if (isInPeriod(cur, period)) return cur; return 0; } MemoryLeakDetectorNode* MemoryLeakDetectorList::getFirstLeak(MemLeakPeriod period) { return getLeakFrom(head_, period); } MemoryLeakDetectorNode* MemoryLeakDetectorList::getNextLeak(MemoryLeakDetectorNode* node, MemLeakPeriod period) { return getLeakFrom(node->next_, period); } int MemoryLeakDetectorList::getTotalLeaks(MemLeakPeriod period) { int total_leaks = 0; for (MemoryLeakDetectorNode* node = head_; node; node = node->next_) { if (isInPeriod(node, period)) total_leaks++; } return total_leaks; } bool MemoryLeakDetectorList::hasLeaks(MemLeakPeriod period) { for (MemoryLeakDetectorNode* node = head_; node; node = node->next_) if (isInPeriod(node, period)) return true; return false; } ///////////////////////////////////////////////////////////// unsigned long MemoryLeakDetectorTable::hash(char* memory) { return ((unsigned long) memory) % hash_prime; } void MemoryLeakDetectorTable::clearAllAccounting(MemLeakPeriod period) { for (int i = 0; i < hash_prime; i++) table_[i].clearAllAccounting(period); } void MemoryLeakDetectorTable::addNewNode(MemoryLeakDetectorNode* node) { table_[hash(node->memory_)].addNewNode(node); } MemoryLeakDetectorNode* MemoryLeakDetectorTable::removeNode(char* memory) { return table_[hash(memory)].removeNode(memory); } MemoryLeakDetectorNode* MemoryLeakDetectorTable::retrieveNode(char* memory) { return table_[hash(memory)].retrieveNode(memory); } bool MemoryLeakDetectorTable::hasLeaks(MemLeakPeriod period) { for (int i = 0; i < hash_prime; i++) if (table_[i].hasLeaks(period)) return true; return false; } int MemoryLeakDetectorTable::getTotalLeaks(MemLeakPeriod period) { int total_leaks = 0; for (int i = 0; i < hash_prime; i++) total_leaks += table_[i].getTotalLeaks(period); return total_leaks; } MemoryLeakDetectorNode* MemoryLeakDetectorTable::getFirstLeak(MemLeakPeriod period) { for (int i = 0; i < hash_prime; i++) { MemoryLeakDetectorNode* node = table_[i].getFirstLeak(period); if (node) return node; } return 0; } MemoryLeakDetectorNode* MemoryLeakDetectorTable::getNextLeak(MemoryLeakDetectorNode* leak, MemLeakPeriod period) { unsigned long i = hash(leak->memory_); MemoryLeakDetectorNode* node = table_[i].getNextLeak(leak, period); if (node) return node; for (++i; i < hash_prime; i++) { node = table_[i].getFirstLeak(period); if (node) return node; } return 0; } ///////////////////////////////////////////////////////////// MemoryLeakDetector::MemoryLeakDetector(MemoryLeakFailure* reporter) { doAllocationTypeChecking_ = true; allocationSequenceNumber_ = 1; current_period_ = mem_leak_period_disabled; reporter_ = reporter; output_buffer_ = SimpleStringBuffer(); memoryTable_ = MemoryLeakDetectorTable(); } void MemoryLeakDetector::clearAllAccounting(MemLeakPeriod period) { memoryTable_.clearAllAccounting(period); } void MemoryLeakDetector::startChecking() { output_buffer_.clear(); current_period_ = mem_leak_period_checking; } void MemoryLeakDetector::stopChecking() { current_period_ = mem_leak_period_enabled; } void MemoryLeakDetector::enable() { current_period_ = mem_leak_period_enabled; } void MemoryLeakDetector::disable() { current_period_ = mem_leak_period_disabled; } void MemoryLeakDetector::disableAllocationTypeChecking() { doAllocationTypeChecking_ = false; } void MemoryLeakDetector::enableAllocationTypeChecking() { doAllocationTypeChecking_ = true; } unsigned MemoryLeakDetector::getCurrentAllocationNumber() { return allocationSequenceNumber_; } void MemoryLeakDetector::reportFailure(const char* message, const char* allocFile, int allocLine, size_t allocSize, TestMemoryAllocator* allocAllocator, const char* freeFile, int freeLine, TestMemoryAllocator* freeAllocator) { output_buffer_.add(message); output_buffer_.add(MEM_LEAK_ALLOC_LOCATION, allocFile, allocLine, allocSize, allocAllocator->alloc_name()); output_buffer_.add(MEM_LEAK_DEALLOC_LOCATION, freeFile, freeLine, freeAllocator->free_name()); reporter_->fail(output_buffer_.toString()); } static size_t calculateIntAlignedSize(size_t size) { return (sizeof(int) - (size % sizeof(int))) + size; } size_t MemoryLeakDetector::sizeOfMemoryWithCorruptionInfo(size_t size) { return calculateIntAlignedSize(size + memory_corruption_buffer_size); } MemoryLeakDetectorNode* MemoryLeakDetector::getNodeFromMemoryPointer(char* memory, size_t memory_size) { return (MemoryLeakDetectorNode*) (void*) (memory + sizeOfMemoryWithCorruptionInfo(memory_size)); } void MemoryLeakDetector::storeLeakInformation(MemoryLeakDetectorNode * node, char *new_memory, size_t size, TestMemoryAllocator *allocator, const char *file, int line) { node->init(new_memory, allocationSequenceNumber_++, size, allocator, current_period_, file, line); addMemoryCorruptionInformation(node->memory_ + node->size_); memoryTable_.addNewNode(node); } char* MemoryLeakDetector::reallocateMemoryAndLeakInformation(TestMemoryAllocator* allocator, char* memory, size_t size, const char* file, int line) { char* new_memory = (char*) (PlatformSpecificRealloc(memory, sizeOfMemoryWithCorruptionInfo(size))); if (new_memory == NULL) return NULL; MemoryLeakDetectorNode *node = (MemoryLeakDetectorNode*) (void*) (allocator->allocMemoryLeakNode(sizeof(MemoryLeakDetectorNode))); storeLeakInformation(node, new_memory, size, allocator, file, line); return node->memory_; } void MemoryLeakDetector::invalidateMemory(char* memory) { MemoryLeakDetectorNode* node = memoryTable_.retrieveNode(memory); if (node) PlatformSpecificMemset(memory, 0xCD, node->size_); } void MemoryLeakDetector::addMemoryCorruptionInformation(char* memory) { memory[0] = 'B'; memory[1] = 'A'; memory[2] = 'S'; } bool MemoryLeakDetector::validMemoryCorruptionInformation(char* memory) { return memory[0] == 'B' && memory[1] == 'A' && memory[2] == 'S'; } bool MemoryLeakDetector::matchingAllocation(TestMemoryAllocator *alloc_allocator, TestMemoryAllocator *free_allocator) { if (alloc_allocator == free_allocator) return true; if (!doAllocationTypeChecking_) return true; return free_allocator->isOfEqualType(alloc_allocator); } void MemoryLeakDetector::checkForCorruption(MemoryLeakDetectorNode* node, const char* file, int line, TestMemoryAllocator* allocator, bool allocateNodesSeperately) { if (!matchingAllocation(node->allocator_, allocator)) reportFailure(MEM_LEAK_ALLOC_DEALLOC_MISMATCH, node->file_, node->line_, node->size_, node->allocator_, file, line, allocator); else if (!validMemoryCorruptionInformation(node->memory_ + node->size_)) reportFailure(MEM_LEAK_MEMORY_CORRUPTION, node->file_, node->line_, node->size_, node->allocator_, file, line, allocator); else if (allocateNodesSeperately) allocator->freeMemoryLeakNode((char*) node); } char* MemoryLeakDetector::allocMemory(TestMemoryAllocator* allocator, size_t size, bool allocatNodesSeperately) { return allocMemory(allocator, size, UNKNOWN, 0, allocatNodesSeperately); } char* MemoryLeakDetector::allocMemory(TestMemoryAllocator* allocator, size_t size, const char* file, int line, bool allocatNodesSeperately) { /* With malloc, it is harder to guarantee that the allocator free is called. * This is because operator new is overloaded via linker symbols, but malloc just via #defines. * If the same allocation is used and the wrong free is called, it will deallocate the memory leak information * without the memory leak detector ever noticing it! * So, for malloc, we'll allocate the memory separately so we can detect this and give a proper error. */ char* memory; MemoryLeakDetectorNode* node; if (allocatNodesSeperately) { memory = allocator->alloc_memory(sizeOfMemoryWithCorruptionInfo(size), file, line); if (memory == NULL) return NULL; node = (MemoryLeakDetectorNode*) (void*) allocator->allocMemoryLeakNode(sizeof(MemoryLeakDetectorNode)); } else { memory = allocator->alloc_memory(sizeOfMemoryWithCorruptionInfo(size) + sizeof(MemoryLeakDetectorNode), file, line); if (memory == NULL) return NULL; node = getNodeFromMemoryPointer(memory, size); } storeLeakInformation(node, memory, size, allocator, file, line); return node->memory_; } void MemoryLeakDetector::removeMemoryLeakInformationWithoutCheckingOrDeallocating(void* memory) { memoryTable_.removeNode((char*) memory); } void MemoryLeakDetector::deallocMemory(TestMemoryAllocator* allocator, void* memory, const char* file, int line, bool allocatNodesSeperately) { if (memory == 0) return; MemoryLeakDetectorNode* node = memoryTable_.removeNode((char*) memory); if (node == NULL) { reportFailure(MEM_LEAK_DEALLOC_NON_ALLOCATED, "", 0, 0, NullUnknownAllocator::defaultAllocator(), file, line, allocator); return; } if (!allocator->hasBeenDestroyed()) { checkForCorruption(node, file, line, allocator, allocatNodesSeperately); allocator->free_memory((char*) memory, file, line); } } void MemoryLeakDetector::deallocMemory(TestMemoryAllocator* allocator, void* memory, bool allocatNodesSeperately) { deallocMemory(allocator, (char*) memory, UNKNOWN, 0, allocatNodesSeperately); } char* MemoryLeakDetector::reallocMemory(TestMemoryAllocator* allocator, char* memory, size_t size, const char* file, int line, bool allocatNodesSeperately) { if (memory) { MemoryLeakDetectorNode* node = memoryTable_.removeNode(memory); if (node == NULL) { reportFailure(MEM_LEAK_DEALLOC_NON_ALLOCATED, "", 0, 0, NullUnknownAllocator::defaultAllocator(), file, line, allocator); return NULL; } checkForCorruption(node, file, line, allocator, allocatNodesSeperately); } return reallocateMemoryAndLeakInformation(allocator, memory, size, file, line); } void MemoryLeakDetector::ConstructMemoryLeakReport(MemLeakPeriod period) { MemoryLeakDetectorNode* leak = memoryTable_.getFirstLeak(period); int total_leaks = 0; bool giveWarningOnUsingMalloc = false; output_buffer_.add(MEM_LEAK_HEADER); output_buffer_.setWriteLimit(SimpleStringBuffer::SIMPLE_STRING_BUFFER_LEN - MEM_LEAK_NORMAL_MALLOC_FOOTER_SIZE); while (leak) { output_buffer_.add(MEM_LEAK_LEAK, leak->number_, leak->size_, leak->file_, leak->line_, leak->allocator_->alloc_name(), leak->memory_, leak->memory_); if (PlatformSpecificStrCmp(leak->allocator_->alloc_name(), "malloc") == 0) giveWarningOnUsingMalloc = true; total_leaks++; leak = memoryTable_.getNextLeak(leak, period); } bool buffer_reached_its_capacity = output_buffer_.reachedItsCapacity(); output_buffer_.resetWriteLimit(); if (buffer_reached_its_capacity) output_buffer_.add(MEM_LEAK_TOO_MUCH); output_buffer_.add("%s %d\n", MEM_LEAK_FOOTER, total_leaks); if (giveWarningOnUsingMalloc) output_buffer_.add(MEM_LEAK_ADDITION_MALLOC_WARNING); } const char* MemoryLeakDetector::report(MemLeakPeriod period) { if (!memoryTable_.hasLeaks(period)) return MEM_LEAK_NONE; output_buffer_.clear(); ConstructMemoryLeakReport(period); return output_buffer_.toString(); } void MemoryLeakDetector::markCheckingPeriodLeaksAsNonCheckingPeriod() { MemoryLeakDetectorNode* leak = memoryTable_.getFirstLeak(mem_leak_period_checking); while (leak) { if (leak->period_ == mem_leak_period_checking) leak->period_ = mem_leak_period_enabled; leak = memoryTable_.getNextLeak(leak, mem_leak_period_checking); } } int MemoryLeakDetector::totalMemoryLeaks(MemLeakPeriod period) { return memoryTable_.getTotalLeaks(period); } cpputest-3.4/src/CppUTest/TestFilter.cpp0000664000175300017530000000515612066727207015267 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/CppUTestConfig.h" #include "CppUTest/TestFilter.h" TestFilter::TestFilter() : strictMatching_(false) { } TestFilter::TestFilter(const SimpleString& filter) : strictMatching_(false) { filter_ = filter; } TestFilter::TestFilter(const char* filter) : strictMatching_(false) { filter_ = filter; } void TestFilter::strictMatching() { strictMatching_ = true; } bool TestFilter::match(const SimpleString& name) const { if (strictMatching_) return name == filter_; return name.contains(filter_); } bool TestFilter::operator==(const TestFilter& filter) const { return (filter_ == filter.filter_ && strictMatching_ == filter.strictMatching_); } bool TestFilter::operator!=(const TestFilter& filter) const { return !(filter == *this); } SimpleString TestFilter::asString() const { SimpleString textFilter = StringFromFormat("TestFilter: \"%s\"", filter_.asCharString()); if (strictMatching_) textFilter += " with strict matching"; return textFilter; } SimpleString StringFrom(const TestFilter& filter) { return filter.asString(); } cpputest-3.4/src/CppUTest/TestPlugin.cpp0000664000175300017530000001101112066727207015263 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" #include "CppUTest/TestPlugin.h" TestPlugin::TestPlugin(const SimpleString& name) : next_(NullTestPlugin::instance()), name_(name), enabled_(true) { } TestPlugin::TestPlugin(TestPlugin* next) : next_(next), name_("null") { } TestPlugin::~TestPlugin() { } TestPlugin* TestPlugin::addPlugin(TestPlugin* plugin) { next_ = plugin; return this; } void TestPlugin::runAllPreTestAction(UtestShell& test, TestResult& result) { if (enabled_) preTestAction(test, result); next_->runAllPreTestAction(test, result); } void TestPlugin::runAllPostTestAction(UtestShell& test, TestResult& result) { next_ ->runAllPostTestAction(test, result); if (enabled_) postTestAction(test, result); } bool TestPlugin::parseAllArguments(int ac, char** av, int index) { return parseAllArguments(ac, const_cast (av), index); } bool TestPlugin::parseAllArguments(int ac, const char** av, int index) { if (parseArguments(ac, av, index)) return true; if (next_) return next_->parseAllArguments(ac, av, index); return false; } const SimpleString& TestPlugin::getName() { return name_; } TestPlugin* TestPlugin::getPluginByName(const SimpleString& name) { if (name == name_) return this; if (next_) return next_->getPluginByName(name); return (next_); } TestPlugin* TestPlugin::getNext() { return next_; } TestPlugin* TestPlugin::removePluginByName(const SimpleString& name) { TestPlugin* removed = 0; if (next_ && next_->getName() == name) { removed = next_; next_ = next_->next_; } return removed; } void TestPlugin::disable() { enabled_ = false; } void TestPlugin::enable() { enabled_ = true; } bool TestPlugin::isEnabled() { return enabled_; } struct cpputest_pair { void **orig; void *orig_value; }; //////// SetPlugin static int pointerTableIndex; static cpputest_pair setlist[SetPointerPlugin::MAX_SET]; SetPointerPlugin::SetPointerPlugin(const SimpleString& name) : TestPlugin(name) { pointerTableIndex = 0; } SetPointerPlugin::~SetPointerPlugin() { } void CppUTestStore(void**function) { if (pointerTableIndex >= SetPointerPlugin::MAX_SET) { FAIL("Maximum number of function pointers installed!"); } setlist[pointerTableIndex].orig_value = *function; setlist[pointerTableIndex].orig = function; pointerTableIndex++; } void SetPointerPlugin::postTestAction(UtestShell& /*test*/, TestResult& /*result*/) { for (int i = pointerTableIndex - 1; i >= 0; i--) *((void**) setlist[i].orig) = setlist[i].orig_value; pointerTableIndex = 0; } //////// NullPlugin NullTestPlugin::NullTestPlugin() : TestPlugin(0) { } NullTestPlugin* NullTestPlugin::instance() { static NullTestPlugin _instance; return &_instance; } void NullTestPlugin::runAllPreTestAction(UtestShell&, TestResult&) { } void NullTestPlugin::runAllPostTestAction(UtestShell&, TestResult&) { } cpputest-3.4/src/CppUTest/Utest.cpp0000644000175300017530000003572412134163705014301 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" #include "CppUTest/TestRegistry.h" #include "CppUTest/PlatformSpecificFunctions.h" #include "CppUTest/TestOutput.h" bool doubles_equal(double d1, double d2, double threshold) { if (PlatformSpecificIsNan(d1) || PlatformSpecificIsNan(d2) || PlatformSpecificIsNan(threshold)) return false; return PlatformSpecificFabs(d1 - d2) <= threshold; } /* Sometimes stubs use the CppUTest assertions. * Its not correct to do so, but this small helper class will prevent a segmentation fault and instead * will give an error message and also the file/line of the check that was executed outside the tests. */ class OutsideTestRunnerUTest: public UtestShell { public: static OutsideTestRunnerUTest& instance() { static OutsideTestRunnerUTest instance_; return instance_; } virtual TestResult& getTestResult() { return defaultTestResult; } virtual void exitCurrentTest() { } virtual ~OutsideTestRunnerUTest() { } private: OutsideTestRunnerUTest() : UtestShell("\n\t NOTE: Assertion happened without being in a test run (perhaps in main?)", "\n\t Something is very wrong. Check this assertion and fix", "unknown file", 0), defaultTestResult(defaultOutput) { } ConsoleTestOutput defaultOutput; TestResult defaultTestResult; }; /* * Below helpers are used for the PlatformSpecificSetJmp and LongJmp. They pass a method for what needs to happen after * the jump, so that the stack stays right. * */ static void helperDoTestSetup(void* data) { ((Utest*)data)->setup(); } static void helperDoTestBody(void* data) { ((Utest*)data)->testBody(); } static void helperDoTestTeardown(void* data) { ((Utest*)data)->teardown(); } struct HelperTestRunInfo { HelperTestRunInfo(UtestShell* shell, TestPlugin* plugin, TestResult* result) : shell_(shell), plugin_(plugin), result_(result){} UtestShell* shell_; TestPlugin* plugin_; TestResult* result_; }; static void helperDoRunOneTest(void* data) { HelperTestRunInfo* runInfo = (HelperTestRunInfo*) data; UtestShell* shell = runInfo->shell_; TestPlugin* plugin = runInfo->plugin_; TestResult* result = runInfo->result_; shell->runOneTest(plugin, *result); } static void helperDoRunOneTestSeperateProcess(void* data) { HelperTestRunInfo* runInfo = (HelperTestRunInfo*) data; UtestShell* shell = runInfo->shell_; TestPlugin* plugin = runInfo->plugin_; TestResult* result = runInfo->result_; PlatformSpecificRunTestInASeperateProcess(shell, plugin, result); } /******************************** */ UtestShell::UtestShell() : group_("UndefinedTestGroup"), name_("UndefinedTest"), file_("UndefinedFile"), lineNumber_(0), next_(&NullTestShell::instance()), isRunAsSeperateProcess_(false) { } UtestShell::UtestShell(const char* groupName, const char* testName, const char* fileName, int lineNumber) : group_(groupName), name_(testName), file_(fileName), lineNumber_(lineNumber), next_(&NullTestShell::instance()), isRunAsSeperateProcess_(false) { } UtestShell::UtestShell(const char* groupName, const char* testName, const char* fileName, int lineNumber, UtestShell* nextTest) : group_(groupName), name_(testName), file_(fileName), lineNumber_(lineNumber), next_(nextTest), isRunAsSeperateProcess_(false) { } UtestShell::~UtestShell() { } static void defaultCrashMethod() { UtestShell* ptr = (UtestShell*) 0x0; ptr->countTests(); } static void (*pleaseCrashMeRightNow) () = defaultCrashMethod; void UtestShell::setCrashMethod(void (*crashme)()) { pleaseCrashMeRightNow = crashme; } void UtestShell::resetCrashMethod() { pleaseCrashMeRightNow = defaultCrashMethod; } void UtestShell::crash() { pleaseCrashMeRightNow(); } void UtestShell::runOneTestWithPlugins(TestPlugin* plugin, TestResult& result) { HelperTestRunInfo runInfo(this, plugin, &result); if (isRunInSeperateProcess()) PlatformSpecificSetJmp(helperDoRunOneTestSeperateProcess, &runInfo); else PlatformSpecificSetJmp(helperDoRunOneTest, &runInfo); } Utest* UtestShell::createTest() { return new Utest(); } void UtestShell::destroyTest(Utest* test) { delete test; } void UtestShell::runOneTest(TestPlugin* plugin, TestResult& result) { plugin->runAllPreTestAction(*this, result); //save test context, so that test class can be tested UtestShell* savedTest = UtestShell::getCurrent(); TestResult* savedResult = UtestShell::getTestResult(); result.countRun(); UtestShell::setTestResult(&result); UtestShell::setCurrentTest(this); Utest* testToRun = createTest(); testToRun->run(); destroyTest(testToRun); UtestShell::setCurrentTest(savedTest); UtestShell::setTestResult(savedResult); plugin->runAllPostTestAction(*this, result); } void UtestShell::exitCurrentTest() { #if CPPUTEST_USE_STD_CPP_LIB throw CppUTestFailedException(); #else exitCurrentTestWithoutException(); #endif } void UtestShell::exitCurrentTestWithoutException() { PlatformSpecificLongJmp(); } UtestShell *UtestShell::getNext() const { return next_; } UtestShell* UtestShell::addTest(UtestShell *test) { next_ = test; return this; } int UtestShell::countTests() { return next_->countTests() + 1; } bool UtestShell::isNull() const { return false; } SimpleString UtestShell::getMacroName() const { return "TEST"; } const SimpleString UtestShell::getName() const { return SimpleString(name_); } const SimpleString UtestShell::getGroup() const { return SimpleString(group_); } SimpleString UtestShell::getFormattedName() const { SimpleString formattedName(getMacroName()); formattedName += "("; formattedName += group_; formattedName += ", "; formattedName += name_; formattedName += ")"; return formattedName; } const char* UtestShell::getProgressIndicator() const { return "."; } bool UtestShell::isRunInSeperateProcess() const { return isRunAsSeperateProcess_; } void UtestShell::setRunInSeperateProcess() { isRunAsSeperateProcess_ = true; } void UtestShell::setFileName(const char* fileName) { file_ = fileName; } void UtestShell::setLineNumber(int lineNumber) { lineNumber_ = lineNumber; } void UtestShell::setGroupName(const char* groupName) { group_ = groupName; } void UtestShell::setTestName(const char* testName) { name_ = testName; } const SimpleString UtestShell::getFile() const { return SimpleString(file_); } int UtestShell::getLineNumber() const { return lineNumber_; } bool UtestShell::shouldRun(const TestFilter& groupFilter, const TestFilter& nameFilter) const { if (groupFilter.match(group_) && nameFilter.match(name_)) return true; return false; } void UtestShell::failWith(const TestFailure& failure) { getTestResult()->addFailure(failure); UtestShell::getCurrent()->exitCurrentTest(); } void UtestShell::assertTrue(bool condition, const char * checkString, const char* conditionString, const char* fileName, int lineNumber) { assertTrueText(condition, checkString, conditionString, "", fileName, lineNumber); } void UtestShell::assertTrueText(bool condition, const char *checkString, const char *conditionString, const char* text, const char *fileName, int lineNumber) { getTestResult()->countCheck(); if (!condition) failWith(CheckFailure(this, fileName, lineNumber, checkString, conditionString, text)); } void UtestShell::fail(const char *text, const char* fileName, int lineNumber) { failWith(FailFailure(this, fileName, lineNumber, text)); } void UtestShell::assertCstrEqual(const char* expected, const char* actual, const char* fileName, int lineNumber) { getTestResult()->countCheck(); if (actual == 0 && expected == 0) return; if (actual == 0 || expected == 0) failWith(StringEqualFailure(this, fileName, lineNumber, expected, actual)); if (PlatformSpecificStrCmp(expected, actual) != 0) failWith(StringEqualFailure(this, fileName, lineNumber, expected, actual)); } void UtestShell::assertCstrNoCaseEqual(const char* expected, const char* actual, const char* fileName, int lineNumber) { getTestResult()->countCheck(); if (actual == 0 && expected == 0) return; if (actual == 0 || expected == 0) failWith(StringEqualNoCaseFailure(this, fileName, lineNumber, expected, actual)); if (!SimpleString(expected).equalsNoCase(actual)) failWith(StringEqualNoCaseFailure(this, fileName, lineNumber, expected, actual)); } void UtestShell::assertCstrContains(const char* expected, const char* actual, const char* fileName, int lineNumber) { getTestResult()->countCheck(); if (actual == 0 && expected == 0) return; if(actual == 0 || expected == 0) failWith(ContainsFailure(this, fileName, lineNumber, expected, actual)); if (!SimpleString(actual).contains(expected)) failWith(ContainsFailure(this, fileName, lineNumber, expected, actual)); } void UtestShell::assertCstrNoCaseContains(const char* expected, const char* actual, const char* fileName, int lineNumber) { getTestResult()->countCheck(); if (actual == 0 && expected == 0) return; if(actual == 0 || expected == 0) failWith(ContainsFailure(this, fileName, lineNumber, expected, actual)); if (!SimpleString(actual).containsNoCase(expected)) failWith(ContainsFailure(this, fileName, lineNumber, expected, actual)); } void UtestShell::assertLongsEqual(long expected, long actual, const char* fileName, int lineNumber) { getTestResult()->countCheck(); if (expected != actual) { LongsEqualFailure f(this, fileName, lineNumber, expected, actual); getTestResult()->addFailure(f); UtestShell::getCurrent()->exitCurrentTest(); } } void UtestShell::assertPointersEqual(const void* expected, const void* actual, const char* fileName, int lineNumber) { getTestResult()->countCheck(); if (expected != actual) failWith(EqualsFailure(this, fileName, lineNumber, StringFrom(expected), StringFrom(actual))); } void UtestShell::assertDoublesEqual(double expected, double actual, double threshold, const char* fileName, int lineNumber) { getTestResult()->countCheck(); if (!doubles_equal(expected, actual, threshold)) failWith(DoublesEqualFailure(this, fileName, lineNumber, expected, actual, threshold)); } void UtestShell::print(const char *text, const char* fileName, int lineNumber) { SimpleString stringToPrint = "\n"; stringToPrint += fileName; stringToPrint += ":"; stringToPrint += StringFrom(lineNumber); stringToPrint += " "; stringToPrint += text; getTestResult()->print(stringToPrint.asCharString()); } void UtestShell::print(const SimpleString& text, const char* fileName, int lineNumber) { print(text.asCharString(), fileName, lineNumber); } TestResult* UtestShell::testResult_ = NULL; UtestShell* UtestShell::currentTest_ = NULL; void UtestShell::setTestResult(TestResult* result) { testResult_ = result; } void UtestShell::setCurrentTest(UtestShell* test) { currentTest_ = test; } TestResult* UtestShell::getTestResult() { if (testResult_ == NULL) return &OutsideTestRunnerUTest::instance().getTestResult(); return testResult_; } UtestShell* UtestShell::getCurrent() { if (currentTest_ == NULL) return &OutsideTestRunnerUTest::instance(); return currentTest_; } ExecFunctionTestShell::~ExecFunctionTestShell() { } ////////////// Utest //////////// Utest::Utest() { } Utest::~Utest() { } #if CPPUTEST_USE_STD_CPP_LIB void Utest::run() { try { if (PlatformSpecificSetJmp(helperDoTestSetup, this)) { PlatformSpecificSetJmp(helperDoTestBody, this); } } catch (CppUTestFailedException&) { PlatformSpecificRestoreJumpBuffer(); } try { PlatformSpecificSetJmp(helperDoTestTeardown, this); } catch (CppUTestFailedException&) { PlatformSpecificRestoreJumpBuffer(); } } #else void Utest::run() { if (PlatformSpecificSetJmp(helperDoTestSetup, this)) { PlatformSpecificSetJmp(helperDoTestBody, this); } PlatformSpecificSetJmp(helperDoTestTeardown, this); } #endif void Utest::setup() { } void Utest::testBody() { } void Utest::teardown() { } ////////////// NullTestShell //////////// NullTestShell::NullTestShell() : UtestShell("NullGroup", "NullName", "NullFile", -1, 0) { } NullTestShell::NullTestShell(const char* fileName, int lineNumber) : UtestShell("NullGroup", "NullName", fileName, lineNumber, 0) { } NullTestShell::~NullTestShell() { } NullTestShell& NullTestShell::instance() { static NullTestShell _instance; return _instance; } int NullTestShell::countTests() { return 0; } UtestShell* NullTestShell::getNext() const { return &instance(); } bool NullTestShell::isNull() const { return true; } void NullTestShell::testBody() { } //////////////////// ExecFunctionTest ExecFunctionTest::ExecFunctionTest(ExecFunctionTestShell* shell) : shell_(shell) { } void ExecFunctionTest::testBody() { if (shell_->testFunction_) shell_->testFunction_(); } void ExecFunctionTest::setup() { if (shell_->setup_) shell_->setup_(); } void ExecFunctionTest::teardown() { if (shell_->teardown_) shell_->teardown_(); } /////////////// IgnoredUtestShell ///////////// IgnoredUtestShell::IgnoredUtestShell() { } IgnoredUtestShell::~IgnoredUtestShell() { } const char* IgnoredUtestShell::getProgressIndicator() const { return "!"; } SimpleString IgnoredUtestShell::getMacroName() const { return "IGNORE_TEST"; } void IgnoredUtestShell::runOneTestWithPlugins(TestPlugin* /* plugin */, TestResult& result) { result.countIgnored(); } ////////////// TestInstaller //////////// TestInstaller::TestInstaller(UtestShell& shell, const char* groupName, const char* testName, const char* fileName, int lineNumber) { shell.setGroupName(groupName); shell.setTestName(testName); shell.setFileName(fileName); shell.setLineNumber(lineNumber); TestRegistry::getCurrentRegistry()->addTest(&shell); } TestInstaller::~TestInstaller() { } void TestInstaller::unDo() { TestRegistry::getCurrentRegistry()->unDoLastAddTest(); } cpputest-3.4/src/CppUTest/CMakeLists.txt0000644000175300017530000000462512134163705015225 00000000000000set(CppUTest_src CommandLineArguments.cpp MemoryLeakWarningPlugin.cpp TestHarness_c.cpp TestRegistry.cpp CommandLineTestRunner.cpp SimpleString.cpp TestMemoryAllocator.cpp TestResult.cpp JUnitTestOutput.cpp TestFailure.cpp TestOutput.cpp MemoryLeakDetector.cpp TestFilter.cpp TestPlugin.cpp Utest.cpp ../Platforms/${CPP_PLATFORM}/UtestPlatform.cpp ) set(CppUTest_headers ${CppUTestRootDirectory}/include/CppUTest/CommandLineArguments.h ${CppUTestRootDirectory}/include/CppUTest/PlatformSpecificFunctions.h ${CppUTestRootDirectory}/include/CppUTest/TestMemoryAllocator.h ${CppUTestRootDirectory}/include/CppUTest/CommandLineTestRunner.h ${CppUTestRootDirectory}/include/CppUTest/PlatformSpecificFunctions_c.h ${CppUTestRootDirectory}/include/CppUTest/TestOutput.h ${CppUTestRootDirectory}/include/CppUTest/CppUTestConfig.h ${CppUTestRootDirectory}/include/CppUTest/SimpleString.h ${CppUTestRootDirectory}/include/CppUTest/TestPlugin.h ${CppUTestRootDirectory}/include/CppUTest/JUnitTestOutput.h ${CppUTestRootDirectory}/include/CppUTest/StandardCLibrary.h ${CppUTestRootDirectory}/include/CppUTest/TestRegistry.h ${CppUTestRootDirectory}/include/CppUTest/MemoryLeakDetector.h ${CppUTestRootDirectory}/include/CppUTest/TestFailure.h ${CppUTestRootDirectory}/include/CppUTest/TestResult.h ${CppUTestRootDirectory}/include/CppUTest/MemoryLeakDetectorMallocMacros.h ${CppUTestRootDirectory}/include/CppUTest/TestFilter.h ${CppUTestRootDirectory}/include/CppUTest/TestTestingFixture.h ${CppUTestRootDirectory}/include/CppUTest/MemoryLeakDetectorNewMacros.h ${CppUTestRootDirectory}/include/CppUTest/TestHarness.h ${CppUTestRootDirectory}/include/CppUTest/Utest.h ${CppUTestRootDirectory}/include/CppUTest/MemoryLeakWarningPlugin.h ${CppUTestRootDirectory}/include/CppUTest/TestHarness_c.h ${CppUTestRootDirectory}/include/CppUTest/UtestMacros.h ) add_library(CppUTest STATIC ${CppUTest_src}) if (WIN32) target_link_libraries(CppUTest winmm.lib) endif (WIN32) install(FILES ${CppUTest_headers} DESTINATION include/CppUTest) install(TARGETS CppUTest RUNTIME DESTINATION bin LIBRARY DESTINATION lib ARCHIVE DESTINATION lib) cpputest-3.4/src/CppUTest/UnitTestHarness.dsp0000644000175300017530000001216412023251675016276 00000000000000# Microsoft Developer Studio Project File - Name="UnitTestHarness" - Package Owner=<4> # Microsoft Developer Studio Generated Build File, Format Version 6.00 # ** DO NOT EDIT ** # TARGTYPE "Win32 (x86) Static Library" 0x0104 CFG=UnitTestHarness - Win32 Debug !MESSAGE This is not a valid makefile. To build this project using NMAKE, !MESSAGE use the Export Makefile command and run !MESSAGE !MESSAGE NMAKE /f "UnitTestHarness.mak". !MESSAGE !MESSAGE You can specify a configuration when running NMAKE !MESSAGE by defining the macro CFG on the command line. For example: !MESSAGE !MESSAGE NMAKE /f "UnitTestHarness.mak" CFG="UnitTestHarness - Win32 Debug" !MESSAGE !MESSAGE Possible choices for configuration are: !MESSAGE !MESSAGE "UnitTestHarness - Win32 Release" (based on "Win32 (x86) Static Library") !MESSAGE "UnitTestHarness - Win32 Debug" (based on "Win32 (x86) Static Library") !MESSAGE # Begin Project # PROP AllowPerConfigDependencies 0 # PROP Scc_ProjName "" # PROP Scc_LocalPath "" CPP=cl.exe RSC=rc.exe !IF "$(CFG)" == "UnitTestHarness - Win32 Release" # PROP BASE Use_MFC 0 # PROP BASE Use_Debug_Libraries 0 # PROP BASE Output_Dir "Release" # PROP BASE Intermediate_Dir "Release" # PROP BASE Target_Dir "" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 0 # PROP Output_Dir "Release" # PROP Intermediate_Dir "Release" # PROP Target_Dir "" # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c # ADD CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c # ADD BASE RSC /l 0x409 /d "NDEBUG" # ADD RSC /l 0x409 /d "NDEBUG" BSC32=bscmake.exe # ADD BASE BSC32 /nologo # ADD BSC32 /nologo LIB32=link.exe -lib # ADD BASE LIB32 /nologo # ADD LIB32 /nologo !ELSEIF "$(CFG)" == "UnitTestHarness - Win32 Debug" # PROP BASE Use_MFC 0 # PROP BASE Use_Debug_Libraries 1 # PROP BASE Output_Dir "Debug" # PROP BASE Intermediate_Dir "Debug" # PROP BASE Target_Dir "" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 1 # PROP Output_Dir "Debug" # PROP Intermediate_Dir "Debug" # PROP Target_Dir "" # ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c # ADD CPP /nologo /MDd /W3 /Gm /GR /GX /ZI /Od /I "..\Platforms\VisualCpp" /I ".." /I "$(CPP_TEST_TOOLS)" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /FR /FD /GZ /c # ADD BASE RSC /l 0x409 /d "_DEBUG" # ADD RSC /l 0x409 /d "_DEBUG" BSC32=bscmake.exe # ADD BASE BSC32 /nologo # ADD BSC32 /nologo LIB32=link.exe -lib # ADD BASE LIB32 /nologo # ADD LIB32 /nologo # Begin Special Build Tool SOURCE="$(InputPath)" PostBuild_Cmds=copy Debug\*.lib ..\lib # End Special Build Tool !ENDIF # Begin Target # Name "UnitTestHarness - Win32 Release" # Name "UnitTestHarness - Win32 Debug" # Begin Group "Source Files" # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" # Begin Source File SOURCE=.\CommandLineTestRunner.cpp # End Source File # Begin Source File SOURCE=.\EqualsFailure.cpp # End Source File # Begin Source File SOURCE=.\Failure.cpp # End Source File # Begin Source File SOURCE=.\FailureTest.cpp # End Source File # Begin Source File SOURCE=.\MemoryLeakWarningTest.cpp # End Source File # Begin Source File SOURCE=.\NullTest.cpp # End Source File # Begin Source File SOURCE=.\NullTestTest.cpp # End Source File # Begin Source File SOURCE=.\SimpleString.cpp # End Source File # Begin Source File SOURCE=.\SimpleStringTest.cpp # End Source File # Begin Source File SOURCE=.\Test.cpp # End Source File # Begin Source File SOURCE=.\TestInstaller.cpp # End Source File # Begin Source File SOURCE=.\TestInstallerTest.cpp # End Source File # Begin Source File SOURCE=.\TestOutput.cpp # End Source File # Begin Source File SOURCE=.\TestOutputTest.cpp # End Source File # Begin Source File SOURCE=.\TestRegistry.cpp # End Source File # Begin Source File SOURCE=.\TestResult.cpp # End Source File # Begin Source File SOURCE=.\TestTest.cpp # End Source File # End Group # Begin Group "Header Files" # PROP Default_Filter "h;hpp;hxx;hm;inl" # Begin Source File SOURCE=.\CommandLineTestRunner.h # End Source File # Begin Source File SOURCE=.\EqualsFailure.h # End Source File # Begin Source File SOURCE=.\Failure.h # End Source File # Begin Source File SOURCE=.\MemoryLeakWarning.h # End Source File # Begin Source File SOURCE=.\MockPrinter.h # End Source File # Begin Source File SOURCE=.\NullTest.h # End Source File # Begin Source File SOURCE=.\RealPrinter.h # End Source File # Begin Source File SOURCE=.\SimpleString.h # End Source File # Begin Source File SOURCE=.\Test.h # End Source File # Begin Source File SOURCE=.\TestHarness.h # End Source File # Begin Source File SOURCE=.\TestInstaller.h # End Source File # Begin Source File SOURCE=.\TestOutput.h # End Source File # Begin Source File SOURCE=.\TestRegistry.h # End Source File # Begin Source File SOURCE=.\TestResult.h # End Source File # Begin Source File SOURCE=.\UnitTestHarnessTests.h # End Source File # End Group # End Target # End Project cpputest-3.4/src/CppUTestExt/0000755000175300017530000000000012143642714013221 500000000000000cpputest-3.4/src/CppUTestExt/CodeMemoryReportFormatter.cpp0000664000175300017530000001561012066727207021002 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" #include "CppUTestExt/CodeMemoryReportFormatter.h" #include "CppUTestExt/MemoryReportAllocator.h" #include "CppUTest/PlatformSpecificFunctions.h" #define MAX_VARIABLE_NAME_LINE_PART 10 #define MAX_VARIABLE_NAME_FILE_PART 53 #define MAX_VARIABLE_NAME_SEPERATOR_PART 1 #define MAX_VARIABLE_NAME_LENGTH MAX_VARIABLE_NAME_FILE_PART + MAX_VARIABLE_NAME_SEPERATOR_PART + MAX_VARIABLE_NAME_LINE_PART struct CodeReportingAllocationNode { char variableName_[MAX_VARIABLE_NAME_LENGTH + 1]; void* memory_; CodeReportingAllocationNode* next_; }; CodeMemoryReportFormatter::CodeMemoryReportFormatter(TestMemoryAllocator* internalAllocator) : codeReportingList_(NULL), internalAllocator_(internalAllocator) { } CodeMemoryReportFormatter::~CodeMemoryReportFormatter() { clearReporting(); } void CodeMemoryReportFormatter::clearReporting() { while (codeReportingList_) { CodeReportingAllocationNode* oldNode = codeReportingList_; codeReportingList_ = codeReportingList_->next_; internalAllocator_->free_memory((char*) oldNode, __FILE__, __LINE__); } } void CodeMemoryReportFormatter::addNodeToList(const char* variableName, void* memory, CodeReportingAllocationNode* next) { CodeReportingAllocationNode* newNode = (CodeReportingAllocationNode*) (void*) internalAllocator_->alloc_memory(sizeof(CodeReportingAllocationNode), __FILE__, __LINE__); newNode->memory_ = memory; newNode->next_ = next; PlatformSpecificStrNCpy(newNode->variableName_, variableName, MAX_VARIABLE_NAME_LENGTH); codeReportingList_ = newNode; } CodeReportingAllocationNode* CodeMemoryReportFormatter::findNode(void* memory) { CodeReportingAllocationNode* current = codeReportingList_; while (current && current->memory_ != memory) { current = current->next_; } return current; } static SimpleString extractFileNameFromPath(const char* file) { const char* fileNameOnly = file + PlatformSpecificStrLen(file); while (fileNameOnly != file && *fileNameOnly != '/') fileNameOnly--; if (*fileNameOnly == '/') fileNameOnly++; return fileNameOnly; } SimpleString CodeMemoryReportFormatter::createVariableNameFromFileLineInfo(const char *file, int line) { SimpleString fileNameOnly = extractFileNameFromPath(file); fileNameOnly.replace(".", "_"); for (int i = 1; i < 100000; i++) { SimpleString variableName = StringFromFormat("%s_%d_%d", fileNameOnly.asCharString(), line, i); if (!variableExists(variableName)) return variableName; } return ""; } bool CodeMemoryReportFormatter::isNewAllocator(TestMemoryAllocator* allocator) { return PlatformSpecificStrCmp(allocator->alloc_name(), defaultNewAllocator()->alloc_name()) == 0 || PlatformSpecificStrCmp(allocator->alloc_name(), defaultNewArrayAllocator()->alloc_name()) == 0; } bool CodeMemoryReportFormatter::variableExists(const SimpleString& variableName) { CodeReportingAllocationNode* current = codeReportingList_; while (current) { if (variableName == current->variableName_) return true; current = current->next_; } return false; } SimpleString CodeMemoryReportFormatter::getAllocationString(TestMemoryAllocator* allocator, const SimpleString& variableName, size_t size) { if (isNewAllocator(allocator)) return StringFromFormat("char* %s = new char[%d]; /* using %s */", variableName.asCharString(), size, allocator->alloc_name()); else return StringFromFormat("void* %s = malloc(%d);", variableName.asCharString(), size); } SimpleString CodeMemoryReportFormatter::getDeallocationString(TestMemoryAllocator* allocator, const SimpleString& variableName, const char* file, int line) { if (isNewAllocator(allocator)) return StringFromFormat("delete [] %s; /* using %s at %s:%d */", variableName.asCharString(), allocator->free_name(), file, line); else return StringFromFormat("free(%s); /* at %s:%d */", variableName.asCharString(), file, line); } void CodeMemoryReportFormatter::report_test_start(TestResult* result, UtestShell& test) { clearReporting(); result->print(StringFromFormat("*/\nTEST(%s_memoryReport, %s)\n{ /* at %s:%d */\n", test.getGroup().asCharString(), test.getName().asCharString(), test.getFile().asCharString(), test.getLineNumber()).asCharString()); } void CodeMemoryReportFormatter::report_test_end(TestResult* result, UtestShell&) { result->print("}/*"); } void CodeMemoryReportFormatter::report_testgroup_start(TestResult* result, UtestShell& test) { result->print(StringFromFormat("*/TEST_GROUP(%s_memoryReport)\n{\n};\n/*", test.getGroup().asCharString()).asCharString()); } void CodeMemoryReportFormatter::report_alloc_memory(TestResult* result, TestMemoryAllocator* allocator, size_t size, char* memory, const char* file, int line) { SimpleString variableName = createVariableNameFromFileLineInfo(file, line); result->print(StringFromFormat("\t%s\n", getAllocationString(allocator, variableName, size).asCharString()).asCharString()); addNodeToList(variableName.asCharString(), memory, codeReportingList_); } void CodeMemoryReportFormatter::report_free_memory(TestResult* result, TestMemoryAllocator* allocator, char* memory, const char* file, int line) { SimpleString variableName; CodeReportingAllocationNode* node = findNode(memory); if (memory == NULL) variableName = "NULL"; else variableName = node->variableName_; result->print(StringFromFormat("\t%s\n", getDeallocationString(allocator, variableName, file, line).asCharString()).asCharString()); } cpputest-3.4/src/CppUTestExt/MemoryReporterPlugin.cpp0000644000175300017530000001067212023251675020024 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" #include "CppUTestExt/MemoryReporterPlugin.h" #include "CppUTestExt/MemoryReportFormatter.h" #include "CppUTestExt/CodeMemoryReportFormatter.h" MemoryReporterPlugin::MemoryReporterPlugin() : TestPlugin("MemoryReporterPlugin"), formatter_(NULL) { } MemoryReporterPlugin::~MemoryReporterPlugin() { removeGlobalMemoryReportAllocators(); destroyMemoryFormatter(formatter_); } bool MemoryReporterPlugin::parseArguments(int /* ac */, const char** av, int index) { SimpleString argument (av[index]); if (argument.contains("-pmemoryreport=")) { argument.replace("-pmemoryreport=", ""); destroyMemoryFormatter(formatter_); formatter_ = createMemoryFormatter(argument); return true; } return false; } MemoryReportFormatter* MemoryReporterPlugin::createMemoryFormatter(const SimpleString& type) { if (type == "normal") { return new NormalMemoryReportFormatter; } else if (type == "code") { return new CodeMemoryReportFormatter(defaultMallocAllocator()); } return NULL; } void MemoryReporterPlugin::destroyMemoryFormatter(MemoryReportFormatter* formatter) { delete formatter; } void MemoryReporterPlugin::setGlobalMemoryReportAllocators() { mallocAllocator.setRealAllocator(getCurrentMallocAllocator()); setCurrentMallocAllocator(&mallocAllocator); newAllocator.setRealAllocator(getCurrentNewAllocator()); setCurrentNewAllocator(&newAllocator); newArrayAllocator.setRealAllocator(getCurrentNewArrayAllocator()); setCurrentNewArrayAllocator(&newArrayAllocator); } void MemoryReporterPlugin::removeGlobalMemoryReportAllocators() { if (getCurrentNewAllocator() == &newAllocator) setCurrentNewAllocator(newAllocator.getRealAllocator()); if (getCurrentNewArrayAllocator() == &newArrayAllocator) setCurrentNewArrayAllocator(newArrayAllocator.getRealAllocator()); if (getCurrentMallocAllocator() == &mallocAllocator) setCurrentMallocAllocator(mallocAllocator.getRealAllocator()); } void MemoryReporterPlugin::initializeAllocator(MemoryReportAllocator* allocator, TestResult & result) { allocator->setFormatter(formatter_); allocator->setTestResult((&result)); } void MemoryReporterPlugin::preTestAction(UtestShell& test, TestResult& result) { if (formatter_ == NULL) return; initializeAllocator(&mallocAllocator, result); initializeAllocator(&newAllocator, result); initializeAllocator(&newArrayAllocator, result); setGlobalMemoryReportAllocators(); if (test.getGroup() != currentTestGroup_) { formatter_->report_testgroup_start(&result, test); currentTestGroup_ = test.getGroup(); } formatter_->report_test_start(&result, test); } void MemoryReporterPlugin::postTestAction(UtestShell& test, TestResult& result) { if (formatter_ == NULL) return; removeGlobalMemoryReportAllocators(); formatter_->report_test_end(&result, test); if (test.getNext()->getGroup() != currentTestGroup_) formatter_->report_testgroup_end(&result, test); } cpputest-3.4/src/CppUTestExt/MockFailure.cpp0000644000175300017530000001662512023251675016057 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" #include "CppUTestExt/MockFailure.h" #include "CppUTestExt/MockExpectedFunctionCall.h" #include "CppUTestExt/MockExpectedFunctionsList.h" void MockFailureReporter::failTest(const MockFailure& failure) { getTestToFail()->getTestResult()->addFailure(failure); if (crashOnFailure_) UT_CRASH(); getTestToFail()->exitCurrentTest(); } UtestShell* MockFailureReporter::getTestToFail() { return UtestShell::getCurrent(); } int MockFailureReporter::getAmountOfTestFailures() { return getTestToFail()->getTestResult()->getFailureCount(); } MockFailure::MockFailure(UtestShell* test) : TestFailure(test, "Test failed with MockFailure without an error! Something went seriously wrong.") { } void MockFailure::addExpectationsAndCallHistory(const MockExpectedFunctionsList& expectations) { message_ += "\tEXPECTED calls that did NOT happen:\n"; message_ += expectations.unfulfilledFunctionsToString("\t\t"); message_ += "\n\tACTUAL calls that did happen (in call order):\n"; message_ += expectations.fulfilledFunctionsToString("\t\t"); } void MockFailure::addExpectationsAndCallHistoryRelatedTo(const SimpleString& name, const MockExpectedFunctionsList& expectations) { MockExpectedFunctionsList expectationsForFunction; expectationsForFunction.addExpectationsRelatedTo(name, expectations); message_ += "\tEXPECTED calls that DID NOT happen related to function: "; message_ += name; message_ += "\n"; message_ += expectationsForFunction.unfulfilledFunctionsToString("\t\t"); message_ += "\n\tACTUAL calls that DID happen related to function: "; message_ += name; message_ += "\n"; message_ += expectationsForFunction.fulfilledFunctionsToString("\t\t"); } MockExpectedCallsDidntHappenFailure::MockExpectedCallsDidntHappenFailure(UtestShell* test, const MockExpectedFunctionsList& expectations) : MockFailure(test) { message_ = "Mock Failure: Expected call did not happen.\n"; addExpectationsAndCallHistory(expectations); } MockUnexpectedCallHappenedFailure::MockUnexpectedCallHappenedFailure(UtestShell* test, const SimpleString& name, const MockExpectedFunctionsList& expectations) : MockFailure(test) { int amountOfExpectations = expectations.amountOfExpectationsFor(name); if (amountOfExpectations) message_ = StringFromFormat("Mock Failure: Unexpected additional (%dth) call to function: ", amountOfExpectations+1); else message_ = "Mock Failure: Unexpected call to function: "; message_ += name; message_ += "\n"; addExpectationsAndCallHistory(expectations); } MockCallOrderFailure::MockCallOrderFailure(UtestShell* test, const MockExpectedFunctionsList& expectations) : MockFailure(test) { message_ = "Mock Failure: Out of order calls"; message_ += "\n"; addExpectationsAndCallHistory(expectations); } MockUnexpectedParameterFailure::MockUnexpectedParameterFailure(UtestShell* test, const SimpleString& functionName, const MockNamedValue& parameter, const MockExpectedFunctionsList& expectations) : MockFailure(test) { MockExpectedFunctionsList expectationsForFunctionWithParameterName; expectationsForFunctionWithParameterName.addExpectationsRelatedTo(functionName, expectations); expectationsForFunctionWithParameterName.onlyKeepExpectationsWithParameterName(parameter.getName()); if (expectationsForFunctionWithParameterName.isEmpty()) { message_ = "Mock Failure: Unexpected parameter name to function \""; message_ += functionName; message_ += "\": "; message_ += parameter.getName(); } else { message_ = "Mock Failure: Unexpected parameter value to parameter \""; message_ += parameter.getName(); message_ += "\" to function \""; message_ += functionName; message_ += "\": <"; message_ += StringFrom(parameter); message_ += ">"; } message_ += "\n"; addExpectationsAndCallHistoryRelatedTo(functionName, expectations); message_ += "\n\tACTUAL unexpected parameter passed to function: "; message_ += functionName; message_ += "\n"; message_ += "\t\t"; message_ += parameter.getType(); message_ += " "; message_ += parameter.getName(); message_ += ": <"; message_ += StringFrom(parameter); message_ += ">"; } MockExpectedParameterDidntHappenFailure::MockExpectedParameterDidntHappenFailure(UtestShell* test, const SimpleString& functionName, const MockExpectedFunctionsList& expectations) : MockFailure(test) { MockExpectedFunctionsList expectationsForFunction; expectationsForFunction.addExpectationsRelatedTo(functionName, expectations); message_ = "Mock Failure: Expected parameter for function \""; message_ += functionName; message_ += "\" did not happen.\n"; addExpectationsAndCallHistoryRelatedTo(functionName, expectations); message_ += "\n\tMISSING parameters that didn't happen:\n"; message_ += "\t\t"; message_ += expectationsForFunction.missingParametersToString(); } MockNoWayToCompareCustomTypeFailure::MockNoWayToCompareCustomTypeFailure(UtestShell* test, const SimpleString& typeName) : MockFailure(test) { message_ = StringFromFormat("MockFailure: No way to compare type <%s>. Please install a ParameterTypeComparator.", typeName.asCharString()); } MockUnexpectedObjectFailure::MockUnexpectedObjectFailure(UtestShell* test, const SimpleString& functionName, void* actual, const MockExpectedFunctionsList& expectations) : MockFailure(test) { message_ = StringFromFormat ("MockFailure: Function called on a unexpected object: %s\n" "\tActual object for call has address: <%p>\n", functionName.asCharString(),actual); addExpectationsAndCallHistoryRelatedTo(functionName, expectations); } MockExpectedObjectDidntHappenFailure::MockExpectedObjectDidntHappenFailure(UtestShell* test, const SimpleString& functionName, const MockExpectedFunctionsList& expectations) : MockFailure(test) { message_ = StringFromFormat("Mock Failure: Expected call on object for function \"%s\" but it did not happen.\n", functionName.asCharString()); addExpectationsAndCallHistoryRelatedTo(functionName, expectations); } cpputest-3.4/src/CppUTestExt/MockSupportPlugin.cpp0000644000175300017530000000537012023251675017316 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" #include "CppUTestExt/MockSupport.h" #include "CppUTestExt/MockSupportPlugin.h" class MockSupportPluginReporter : public MockFailureReporter { UtestShell& test_; TestResult& result_; public: MockSupportPluginReporter(UtestShell& test, TestResult& result) : test_(test), result_(result) { } virtual void failTest(const MockFailure& failure) { result_.addFailure(failure); } virtual UtestShell* getTestToFail() { return &test_; } }; MockSupportPlugin::MockSupportPlugin(const SimpleString& name) : TestPlugin(name) { } MockSupportPlugin::~MockSupportPlugin() { repository_.clear(); } void MockSupportPlugin::preTestAction(UtestShell&, TestResult&) { mock().installComparators(repository_); } void MockSupportPlugin::postTestAction(UtestShell& test, TestResult& result) { MockSupportPluginReporter reporter(test, result); mock().setMockFailureReporter(&reporter); mock().checkExpectations(); mock().clear(); mock().setMockFailureReporter(NULL); mock().removeAllComparators(); } void MockSupportPlugin::installComparator(const SimpleString& name, MockNamedValueComparator& comparator) { repository_.installComparator(name, comparator); } cpputest-3.4/src/CppUTestExt/GTestConvertor.cpp0000644000175300017530000002255512134176151016603 00000000000000/* * Copyright (c) 2011, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifdef CPPUTEST_USE_REAL_GTEST #undef new /* Enormous hack! * * This sucks enormously. We need to do two things in GTest that seem to not be possible without * this hack. Hopefully there is *another way*. * * We need to access the factory in the TestInfo in order to be able to create tests. The factory * is private and there seems to be no way to access it... * * We need to be able to call the Test SetUp and TearDown methods, but they are protected for * some reason. We can't subclass either as the tests are created with the TEST macro. * * If anyone knows how to get the above things done *without* these ugly #defines, let me know! * */ #define private public #define protected public #include "gtest/gtest.h" #include "gtest/gtest-spi.h" #include "gtest/gtest-death-test.h" #include "gmock/gmock.h" #ifdef ADD_FAILURE_AT #define GTEST_VERSION_GTEST_1_6 #else #define GTEST_VERSION_GTEST_1_5 #endif /* * We really need some of its internals as they don't have a public interface. * */ #define GTEST_IMPLEMENTATION_ 1 #include "src/gtest-internal-inl.h" #include "CppUTestExt/GTestConvertor.h" #include "CppUTest/TestRegistry.h" #include "CppUTest/TestFailure.h" #include "CppUTest/TestResult.h" /* Store some of the flags as we'll need to reset them each test to avoid leaking memory */ static ::testing::internal::String GTestFlagcolor; static ::testing::internal::String GTestFlagfilter; static ::testing::internal::String GTestFlagoutput; static ::testing::internal::String GTestFlagdeath_test_style; static ::testing::internal::String GTestFlaginternal_run_death_test; #ifndef GTEST_VERSION_GTEST_1_5 static ::testing::internal::String GTestFlagstream_result_to; #endif static void storeValuesOfGTestFLags() { GTestFlagcolor = ::testing::GTEST_FLAG(color); GTestFlagfilter = ::testing::GTEST_FLAG(filter); GTestFlagoutput = ::testing::GTEST_FLAG(output); GTestFlagdeath_test_style = ::testing::GTEST_FLAG(death_test_style); GTestFlaginternal_run_death_test = ::testing::internal::GTEST_FLAG(internal_run_death_test); #ifndef GTEST_VERSION_GTEST_1_5 GTestFlagstream_result_to = ::testing::GTEST_FLAG(stream_result_to); #endif } static void resetValuesOfGTestFlags() { ::testing::GTEST_FLAG(color) = GTestFlagcolor; ::testing::GTEST_FLAG(filter) = GTestFlagfilter; ::testing::GTEST_FLAG(output) = GTestFlagoutput; ::testing::GTEST_FLAG(death_test_style) = GTestFlagdeath_test_style; ::testing::internal::GTEST_FLAG(internal_run_death_test) = GTestFlaginternal_run_death_test; #ifndef GTEST_VERSION_GTEST_1_5 ::testing::GTEST_FLAG(stream_result_to) = GTestFlagstream_result_to; #endif } void setGTestFLagValuesToNULLToAvoidMemoryLeaks() { ::testing::GTEST_FLAG(color) = NULL; ::testing::GTEST_FLAG(filter) = NULL; ::testing::GTEST_FLAG(output) = NULL; ::testing::GTEST_FLAG(death_test_style) = NULL; ::testing::internal::GTEST_FLAG(internal_run_death_test) = NULL; #ifndef GTEST_VERSION_GTEST_1_5 ::testing::GTEST_FLAG(stream_result_to) = NULL; #endif } /* Left a global to avoid a header dependency to gtest.h */ class GTestDummyResultReporter : public ::testing::ScopedFakeTestPartResultReporter { public: GTestDummyResultReporter () : ::testing::ScopedFakeTestPartResultReporter(INTERCEPT_ALL_THREADS, NULL) {} virtual void ReportTestPartResult(const ::testing::TestPartResult& /*result*/) {} }; class GTestResultReporter : public ::testing::ScopedFakeTestPartResultReporter { public: GTestResultReporter () : ::testing::ScopedFakeTestPartResultReporter(INTERCEPT_ALL_THREADS, NULL) {} virtual void ReportTestPartResult(const ::testing::TestPartResult& result) { FailFailure failure(UtestShell::getCurrent(), result.file_name(), result.line_number(), result.message()); UtestShell::getCurrent()->getTestResult()->addFailure(failure); /* * When using GMock, it throws an exception fromt he destructor leaving * the system in an unstable state. * Therefore, when the test fails because of failed gmock expectation * then don't throw the exception, but let it return. Usually this should * already be at the end of the test, so it doesn't matter much */ if (!SimpleString(result.message()).contains("Actual: never called") && !SimpleString(result.message()).contains("Actual function call count doesn't match")) throw CppUTestFailedException(); } }; GTestShell::GTestShell(::testing::TestInfo* testinfo, GTestShell* next) : testinfo_(testinfo), next_(next) { setGroupName(testinfo->test_case_name()); setTestName(testinfo->name()); } GTestShell* GTestShell::nextGTest() { return next_; } class GTestUTest: public Utest { public: GTestUTest(::testing::TestInfo* testinfo) : testinfo_(testinfo), test_(NULL) { } void testBody() { try { test_->TestBody(); } catch (CppUTestFailedException& ex) { } } void setup() { resetValuesOfGTestFlags(); #ifdef GTEST_VERSION_GTEST_1_5 test_ = testinfo_->impl()->factory_->CreateTest(); #else test_ = testinfo_->factory_->CreateTest(); #endif ::testing::UnitTest::GetInstance()->impl()->set_current_test_info(testinfo_); try { test_->SetUp(); } catch (CppUTestFailedException& ex) { } } void teardown() { try { test_->TearDown(); } catch (CppUTestFailedException& ex) { } ::testing::UnitTest::GetInstance()->impl()->set_current_test_info(NULL); delete test_; setGTestFLagValuesToNULLToAvoidMemoryLeaks(); ::testing::internal::DeathTest::set_last_death_test_message(NULL); } private: ::testing::Test* test_; ::testing::TestInfo* testinfo_; }; Utest* GTestShell::createTest() { return new GTestUTest(testinfo_); }; void GTestConvertor::simulateGTestFailureToPreAllocateAllTheThreadLocalData() { GTestDummyResultReporter *dummyReporter = new GTestDummyResultReporter(); ASSERT_TRUE(false); delete dummyReporter; } GTestConvertor::GTestConvertor(bool shouldSimulateFailureAtCreationToAllocateThreadLocalData) : first_(NULL) { if (shouldSimulateFailureAtCreationToAllocateThreadLocalData) simulateGTestFailureToPreAllocateAllTheThreadLocalData(); reporter_ = new GTestResultReporter(); } GTestConvertor::~GTestConvertor() { delete reporter_; while (first_) { GTestShell* next = first_->nextGTest(); delete first_; first_ = next; } } void GTestConvertor::addNewTestCaseForTestInfo(::testing::TestInfo* testinfo) { first_ = new GTestShell(testinfo, first_); TestRegistry::getCurrentRegistry()->addTest(first_); } void GTestConvertor::addAllTestsFromTestCaseToTestRegistry(::testing::TestCase* testcase) { int currentTestCount = 0; ::testing::TestInfo* currentTest = (::testing::TestInfo*) testcase->GetTestInfo(currentTestCount); while (currentTest) { addNewTestCaseForTestInfo(currentTest); currentTestCount++; currentTest = (::testing::TestInfo*) testcase->GetTestInfo(currentTestCount); } } void GTestConvertor::createDummyInSequenceToAndFailureReporterAvoidMemoryLeakInGMock() { #ifdef CPPUTEST_USE_REAL_GMOCK ::testing::InSequence seq; ::testing::internal::GetFailureReporter(); #endif } void GTestConvertor::addAllGTestToTestRegistry() { createDummyInSequenceToAndFailureReporterAvoidMemoryLeakInGMock(); storeValuesOfGTestFLags(); #ifdef CPPUTEST_USE_REAL_GMOCK int argc = 2; const char * argv[] = {"NameOfTheProgram", "--gmock_catch_leaked_mocks=0"}; ::testing::InitGoogleMock(&argc, (char**) argv); #endif ::testing::UnitTest* unitTests = ::testing::UnitTest::GetInstance(); int currentUnitTestCount = 0; ::testing::TestCase* currentTestCase = (::testing::TestCase*) unitTests->GetTestCase(currentUnitTestCount); while (currentTestCase) { addAllTestsFromTestCaseToTestRegistry(currentTestCase); currentUnitTestCount++; currentTestCase = (::testing::TestCase*) unitTests->GetTestCase(currentUnitTestCount); } } #else extern int totallyDummySymbolToNotCauseAnyLinkerWarningsAboutEmptyCompilationUnits; int totallyDummySymbolToNotCauseAnyLinkerWarningsAboutEmptyCompilationUnits = 0; #endif cpputest-3.4/src/CppUTestExt/MockActualFunctionCall.cpp0000664000175300017530000002051312066727207020202 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" #include "CppUTestExt/MockActualFunctionCall.h" #include "CppUTestExt/MockExpectedFunctionsList.h" #include "CppUTestExt/MockExpectedFunctionCall.h" #include "CppUTestExt/MockFailure.h" MockActualFunctionCall::MockActualFunctionCall(int callOrder, MockFailureReporter* reporter, const MockExpectedFunctionsList& allExpectations) : callOrder_(callOrder), reporter_(reporter), state_(CALL_SUCCEED), _fulfilledExpectation(NULL), allExpectations_(allExpectations) { unfulfilledExpectations_.addUnfilfilledExpectations(allExpectations); } MockActualFunctionCall::~MockActualFunctionCall() { } void MockActualFunctionCall::setMockFailureReporter(MockFailureReporter* reporter) { reporter_ = reporter; } UtestShell* MockActualFunctionCall::getTest() const { return reporter_->getTestToFail(); } void MockActualFunctionCall::failTest(const MockFailure& failure) { setState(CALL_FAILED); reporter_->failTest(failure); } void MockActualFunctionCall::finnalizeCallWhenFulfilled() { if (unfulfilledExpectations_.hasFulfilledExpectations()) { _fulfilledExpectation = unfulfilledExpectations_.removeOneFulfilledExpectation(); callHasSucceeded(); } } void MockActualFunctionCall::callHasSucceeded() { setState(CALL_SUCCEED); unfulfilledExpectations_.resetExpectations(); } MockFunctionCall& MockActualFunctionCall::withName(const SimpleString& name) { setName(name); setState(CALL_IN_PROGESS); unfulfilledExpectations_.onlyKeepUnfulfilledExpectationsRelatedTo(name); if (unfulfilledExpectations_.isEmpty()) { MockUnexpectedCallHappenedFailure failure(getTest(), name, allExpectations_); failTest(failure); return *this; } unfulfilledExpectations_.callWasMade(callOrder_); finnalizeCallWhenFulfilled(); return *this; } MockFunctionCall& MockActualFunctionCall::withCallOrder(int) { return *this; } void MockActualFunctionCall::checkActualParameter(const MockNamedValue& actualParameter) { unfulfilledExpectations_.onlyKeepUnfulfilledExpectationsWithParameter(actualParameter); if (unfulfilledExpectations_.isEmpty()) { MockUnexpectedParameterFailure failure(getTest(), getName(), actualParameter, allExpectations_); failTest(failure); return; } unfulfilledExpectations_.parameterWasPassed(actualParameter.getName()); finnalizeCallWhenFulfilled(); } MockFunctionCall& MockActualFunctionCall::withParameter(const SimpleString& name, int value) { MockNamedValue actualParameter(name); actualParameter.setValue(value); checkActualParameter(actualParameter); return *this; } MockFunctionCall& MockActualFunctionCall::withParameter(const SimpleString& name, double value) { MockNamedValue actualParameter(name); actualParameter.setValue(value); checkActualParameter(actualParameter); return *this; } MockFunctionCall& MockActualFunctionCall::withParameter(const SimpleString& name, const char* value) { MockNamedValue actualParameter(name); actualParameter.setValue(value); checkActualParameter(actualParameter); return *this; } MockFunctionCall& MockActualFunctionCall::withParameter(const SimpleString& name, void* value) { MockNamedValue actualParameter(name); actualParameter.setValue(value); checkActualParameter(actualParameter); return *this; } MockFunctionCall& MockActualFunctionCall::withParameterOfType(const SimpleString& type, const SimpleString& name, void* value) { if (getComparatorForType(type) == NULL) { MockNoWayToCompareCustomTypeFailure failure(getTest(), type); failTest(failure); return *this; } MockNamedValue actualParameter(name); actualParameter.setObjectPointer(type, value); actualParameter.setComparator(getComparatorForType(type)); checkActualParameter(actualParameter); return *this; } bool MockActualFunctionCall::isFulfilled() const { return state_ == CALL_SUCCEED; } bool MockActualFunctionCall::hasFailed() const { return state_ == CALL_FAILED; } void MockActualFunctionCall::checkExpectations() { if (state_ != CALL_IN_PROGESS) return; if (! unfulfilledExpectations_.hasUnfullfilledExpectations()) FAIL("Actual call is in progress. Checking expectations. But no unfulfilled expectations. Cannot happen.") _fulfilledExpectation = unfulfilledExpectations_.removeOneFulfilledExpectationWithIgnoredParameters(); if (_fulfilledExpectation) { callHasSucceeded(); return; } if (unfulfilledExpectations_.hasUnfulfilledExpectationsBecauseOfMissingParameters()) { MockExpectedParameterDidntHappenFailure failure(getTest(), getName(), allExpectations_); failTest(failure); } else { MockExpectedObjectDidntHappenFailure failure(getTest(), getName(), allExpectations_); failTest(failure); } } const char* MockActualFunctionCall::stringFromState(ActualCallState state) { switch (state) { case CALL_IN_PROGESS: return "In progress"; case CALL_FAILED: return "Failed"; case CALL_SUCCEED: return "Succeed"; #ifndef __clang__ default: ; #endif } #ifndef __clang__ return "No valid state info"; #endif } void MockActualFunctionCall::checkStateConsistency(ActualCallState oldState, ActualCallState newState) { if (oldState == newState) FAIL(StringFromFormat("State change to the same state: %s.", stringFromState(newState)).asCharString()); if (oldState == CALL_FAILED) FAIL("State was already failed. Cannot change state again."); } void MockActualFunctionCall::setState(ActualCallState state) { checkStateConsistency(state_, state); state_ = state; } MockFunctionCall& MockActualFunctionCall::andReturnValue(int) { FAIL("andReturnValue cannot be called on an ActualFunctionCall. Use returnValue instead to get the value."); return *this; } MockFunctionCall& MockActualFunctionCall::andReturnValue(const char*) { FAIL("andReturnValue cannot be called on an ActualFunctionCall. Use returnValue instead to get the value."); return *this; } MockFunctionCall& MockActualFunctionCall::andReturnValue(double) { FAIL("andReturnValue cannot be called on an ActualFunctionCall. Use returnValue instead to get the value."); return *this; } MockFunctionCall& MockActualFunctionCall::andReturnValue(void*) { FAIL("andReturnValue cannot be called on an ActualFunctionCall. Use returnValue instead to get the value."); return *this; } MockNamedValue MockActualFunctionCall::returnValue() { checkExpectations(); if (_fulfilledExpectation) return _fulfilledExpectation->returnValue(); return MockNamedValue("no return value"); } bool MockActualFunctionCall::hasReturnValue() { return ! returnValue().getName().isEmpty(); } MockFunctionCall& MockActualFunctionCall::onObject(void* objectPtr) { unfulfilledExpectations_.onlyKeepUnfulfilledExpectationsOnObject(objectPtr); if (unfulfilledExpectations_.isEmpty()) { MockUnexpectedObjectFailure failure(getTest(), getName(), objectPtr, allExpectations_); failTest(failure); return *this; } unfulfilledExpectations_.wasPassedToObject(); finnalizeCallWhenFulfilled(); return *this; } cpputest-3.4/src/CppUTestExt/MockFunctionCall.cpp0000644000175300017530000002074612023251675017050 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" #include "CppUTestExt/MockFunctionCall.h" #include "CppUTestExt/MockNamedValue.h" MockFunctionCall::MockFunctionCall() : comparatorRepository_(NULL) { } MockFunctionCall::~MockFunctionCall() { } void MockFunctionCall::setComparatorRepository(MockNamedValueComparatorRepository* repository) { comparatorRepository_ = repository; } void MockFunctionCall::setName(const SimpleString& name) { functionName_ = name; } SimpleString MockFunctionCall::getName() const { return functionName_; } MockNamedValueComparator* MockFunctionCall::getComparatorForType(const SimpleString& type) const { if (comparatorRepository_) return comparatorRepository_->getComparatorForType(type); return NULL; } struct MockFunctionCallCompositeNode { MockFunctionCallCompositeNode(MockFunctionCall& functionCall, MockFunctionCallCompositeNode* next) : next_(next), call_(functionCall){} MockFunctionCallCompositeNode* next_; MockFunctionCall& call_; }; MockFunctionCallComposite::MockFunctionCallComposite() : head_(NULL) { } MockFunctionCallComposite::~MockFunctionCallComposite() { } void MockFunctionCallComposite::add(MockFunctionCall& call) { head_ = new MockFunctionCallCompositeNode(call, head_); } void MockFunctionCallComposite::clear() { while (head_) { MockFunctionCallCompositeNode* next = head_->next_; delete head_; head_ = next; } } MockFunctionCall& MockFunctionCallComposite::withName(const SimpleString& name) { for (MockFunctionCallCompositeNode* node = head_; node != NULL; node = node->next_) node->call_.withName(name); return *this; } MockFunctionCall& MockFunctionCallComposite::withCallOrder(int) { FAIL("withCallOrder not supported for CompositeCalls"); return *this; } MockFunctionCall& MockFunctionCallComposite::withParameter(const SimpleString& name, int value) { for (MockFunctionCallCompositeNode* node = head_; node != NULL; node = node->next_) node->call_.withParameter(name, value); return *this; } MockFunctionCall& MockFunctionCallComposite::withParameter(const SimpleString& name, double value) { for (MockFunctionCallCompositeNode* node = head_; node != NULL; node = node->next_) node->call_.withParameter(name, value); return *this; } MockFunctionCall& MockFunctionCallComposite::withParameter(const SimpleString& name, const char* value) { for (MockFunctionCallCompositeNode* node = head_; node != NULL; node = node->next_) node->call_.withParameter(name, value); return *this; } MockFunctionCall& MockFunctionCallComposite::withParameter(const SimpleString& name, void* value) { for (MockFunctionCallCompositeNode* node = head_; node != NULL; node = node->next_) node->call_.withParameter(name, value); return *this; } MockFunctionCall& MockFunctionCallComposite::withParameterOfType(const SimpleString& typeName, const SimpleString& name, void* value) { for (MockFunctionCallCompositeNode* node = head_; node != NULL; node = node->next_) node->call_.withParameterOfType(typeName, name, value); return *this; } MockFunctionCall& MockFunctionCallComposite::ignoreOtherParameters() { for (MockFunctionCallCompositeNode* node = head_; node != NULL; node = node->next_) node->call_.ignoreOtherParameters(); return *this; } MockFunctionCall& MockFunctionCallComposite::andReturnValue(int value) { for (MockFunctionCallCompositeNode* node = head_; node != NULL; node = node->next_) node->call_.andReturnValue(value); return *this; } MockFunctionCall& MockFunctionCallComposite::andReturnValue(double value) { for (MockFunctionCallCompositeNode* node = head_; node != NULL; node = node->next_) node->call_.andReturnValue(value); return *this; } MockFunctionCall& MockFunctionCallComposite::andReturnValue(const char* value) { for (MockFunctionCallCompositeNode* node = head_; node != NULL; node = node->next_) node->call_.andReturnValue(value); return *this; } MockFunctionCall& MockFunctionCallComposite::andReturnValue(void* value) { for (MockFunctionCallCompositeNode* node = head_; node != NULL; node = node->next_) node->call_.andReturnValue(value); return *this; } bool MockFunctionCallComposite::hasReturnValue() { return head_->call_.hasReturnValue(); } MockNamedValue MockFunctionCallComposite::returnValue() { return head_->call_.returnValue(); } MockFunctionCall& MockFunctionCallComposite::onObject(void* object) { for (MockFunctionCallCompositeNode* node = head_; node != NULL; node = node->next_) node->call_.onObject(object); return *this; } MockFunctionCallTrace::MockFunctionCallTrace() { } MockFunctionCallTrace::~MockFunctionCallTrace() { } MockFunctionCall& MockFunctionCallTrace::withName(const SimpleString& name) { traceBuffer_ += "\nFunction name: "; traceBuffer_ += name; return *this; } MockFunctionCall& MockFunctionCallTrace::withCallOrder(int callOrder) { traceBuffer_ += "\nwithCallOrder: "; traceBuffer_ += StringFrom(callOrder); return *this; } MockFunctionCall& MockFunctionCallTrace::withParameter(const SimpleString& name, int value) { traceBuffer_ += " "; traceBuffer_ += name; traceBuffer_ += ":"; traceBuffer_ += StringFrom(value); return *this; } MockFunctionCall& MockFunctionCallTrace::withParameter(const SimpleString& name, double value) { traceBuffer_ += " "; traceBuffer_ += name; traceBuffer_ += ":"; traceBuffer_ += StringFrom(value); return *this; } MockFunctionCall& MockFunctionCallTrace::withParameter(const SimpleString& name, const char* value) { traceBuffer_ += " "; traceBuffer_ += name; traceBuffer_ += ":"; traceBuffer_ += StringFrom(value); return *this; } MockFunctionCall& MockFunctionCallTrace::withParameter(const SimpleString& name, void* value) { traceBuffer_ += " "; traceBuffer_ += name; traceBuffer_ += ":"; traceBuffer_ += StringFrom(value); return *this; } MockFunctionCall& MockFunctionCallTrace::withParameterOfType(const SimpleString& typeName, const SimpleString& name, void* value) { traceBuffer_ += " "; traceBuffer_ += typeName; traceBuffer_ += " "; traceBuffer_ += name; traceBuffer_ += ":"; traceBuffer_ += StringFrom(value); return *this; } MockFunctionCall& MockFunctionCallTrace::ignoreOtherParameters() { return *this; } MockFunctionCall& MockFunctionCallTrace::andReturnValue(int) { return *this; } MockFunctionCall& MockFunctionCallTrace::andReturnValue(double) { return *this; } MockFunctionCall& MockFunctionCallTrace::andReturnValue(const char*) { return *this; } MockFunctionCall& MockFunctionCallTrace::andReturnValue(void*) { return *this; } bool MockFunctionCallTrace::hasReturnValue() { return false; } MockNamedValue MockFunctionCallTrace::returnValue() { return MockNamedValue(""); } MockFunctionCall& MockFunctionCallTrace::onObject(void* objectPtr) { traceBuffer_ += StringFrom(objectPtr); return *this; } void MockFunctionCallTrace::clear() { traceBuffer_ = ""; } const char* MockFunctionCallTrace::getTraceOutput() { return traceBuffer_.asCharString(); } MockFunctionCallTrace& MockFunctionCallTrace::instance() { static MockFunctionCallTrace call; return call; } cpputest-3.4/src/CppUTestExt/MockSupport_c.cpp0000644000175300017530000002131512134163705016435 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/CppUTestConfig.h" #include "CppUTest/PlatformSpecificFunctions_c.h" #include "CppUTestExt/MockSupport.h" #include "CppUTestExt/MockSupport_c.h" static MockSupport* currentMockSupport = NULL; static MockFunctionCall* currentCall = NULL; class MockCFunctionComparatorNode : public MockNamedValueComparator { public: MockCFunctionComparatorNode(MockCFunctionComparatorNode* next, MockTypeEqualFunction_c equal, MockTypeValueToStringFunction_c toString) : next_(next), equal_(equal), toString_(toString) {} virtual ~MockCFunctionComparatorNode() {} virtual bool isEqual(void* object1, void* object2) { return equal_(object1, object2) != 0; } virtual SimpleString valueToString(void* object) { return SimpleString(toString_(object)); } MockCFunctionComparatorNode* next_; MockTypeEqualFunction_c equal_; MockTypeValueToStringFunction_c toString_; }; static MockCFunctionComparatorNode* comparatorList_ = NULL; extern "C" { MockFunctionCall_c* expectOneCall_c(const char* name); MockFunctionCall_c* actualCall_c(const char* name); void disable_c(void); void enable_c(void); void setIntData_c(const char* name, int value); void setDoubleData_c(const char* name, double value); void setStringData_c(const char* name, const char* value); void setPointerData_c(const char* name, void* value); void setDataObject_c(const char* name, const char* type, void* value); MockValue_c getData_c(const char* name); void checkExpectations_c(); int expectedCallsLeft_c(); void clear_c(); MockFunctionCall_c* withIntParameters_c(const char* name, int value); MockFunctionCall_c* withDoubleParameters_c(const char* name, double value); MockFunctionCall_c* withStringParameters_c(const char* name, const char* value); MockFunctionCall_c* withPointerParameters_c(const char* name, void* value); MockFunctionCall_c* withParameterOfType_c(const char* type, const char* name, void* value); MockFunctionCall_c* andReturnIntValue_c(int value); MockFunctionCall_c* andReturnDoubleValue_c(double value); MockFunctionCall_c* andReturnStringValue_c(const char* value); MockFunctionCall_c* andReturnPointerValue_c(void* value); MockValue_c returnValue_c(); static void installComparator_c (const char* typeName, MockTypeEqualFunction_c isEqual, MockTypeValueToStringFunction_c valueToString) { comparatorList_ = new MockCFunctionComparatorNode(comparatorList_, isEqual, valueToString); currentMockSupport->installComparator(typeName, *comparatorList_); } static void removeAllComparators_c() { while (comparatorList_) { MockCFunctionComparatorNode *next = comparatorList_->next_; delete comparatorList_; comparatorList_ = next; } currentMockSupport->removeAllComparators(); } static MockFunctionCall_c gFunctionCall = { withIntParameters_c, withDoubleParameters_c, withStringParameters_c, withPointerParameters_c, withParameterOfType_c, andReturnIntValue_c, andReturnDoubleValue_c, andReturnStringValue_c, andReturnPointerValue_c, returnValue_c }; static MockSupport_c gMockSupport = { expectOneCall_c, actualCall_c, returnValue_c, enable_c, disable_c, setIntData_c, setDoubleData_c, setStringData_c, setPointerData_c, setDataObject_c, getData_c, checkExpectations_c, expectedCallsLeft_c, clear_c, installComparator_c, removeAllComparators_c }; MockFunctionCall_c* withIntParameters_c(const char* name, int value) { currentCall = ¤tCall->withParameter(name, value); return &gFunctionCall; } MockFunctionCall_c* withDoubleParameters_c(const char* name, double value) { currentCall = ¤tCall->withParameter(name, value); return &gFunctionCall; } MockFunctionCall_c* withStringParameters_c(const char* name, const char* value) { currentCall = ¤tCall->withParameter(name, value); return &gFunctionCall; } MockFunctionCall_c* withPointerParameters_c(const char* name, void* value) { currentCall = ¤tCall->withParameter(name, value); return &gFunctionCall; } MockFunctionCall_c* withParameterOfType_c(const char* type, const char* name, void* value) { currentCall = ¤tCall->withParameterOfType(type, name, value); return &gFunctionCall; } MockFunctionCall_c* andReturnIntValue_c(int value) { currentCall = ¤tCall->andReturnValue(value); return &gFunctionCall; } MockFunctionCall_c* andReturnDoubleValue_c(double value) { currentCall = ¤tCall->andReturnValue(value); return &gFunctionCall; } MockFunctionCall_c* andReturnStringValue_c(const char* value) { currentCall = ¤tCall->andReturnValue(value); return &gFunctionCall; } MockFunctionCall_c* andReturnPointerValue_c(void* value) { currentCall = ¤tCall->andReturnValue(value); return &gFunctionCall; } static MockValue_c getMockValueCFromNamedValue(const MockNamedValue& namedValue) { MockValue_c returnValue; if (PlatformSpecificStrCmp(namedValue.getType().asCharString(), "int") == 0) { returnValue.type = MOCKVALUETYPE_INTEGER; returnValue.value.intValue = namedValue.getIntValue(); } else if (PlatformSpecificStrCmp(namedValue.getType().asCharString(), "double") == 0) { returnValue.type = MOCKVALUETYPE_DOUBLE; returnValue.value.doubleValue = namedValue.getDoubleValue(); } else if (PlatformSpecificStrCmp(namedValue.getType().asCharString(), "char*") == 0) { returnValue.type = MOCKVALUETYPE_STRING; returnValue.value.stringValue = namedValue.getStringValue(); } else if (PlatformSpecificStrCmp(namedValue.getType().asCharString(), "void*") == 0) { returnValue.type = MOCKVALUETYPE_POINTER; returnValue.value.pointerValue = namedValue.getPointerValue(); } else { returnValue.type = MOCKVALUETYPE_OBJECT; returnValue.value.objectValue = namedValue.getObjectPointer(); } return returnValue; } MockValue_c returnValue_c() { return getMockValueCFromNamedValue(currentCall->returnValue()); } MockFunctionCall_c* expectOneCall_c(const char* name) { currentCall = ¤tMockSupport->expectOneCall(name); return &gFunctionCall; } MockFunctionCall_c* actualCall_c(const char* name) { currentCall = ¤tMockSupport->actualCall(name); return &gFunctionCall; } void disable_c(void) { currentMockSupport->disable(); } void enable_c(void) { currentMockSupport->enable(); } void setIntData_c(const char* name, int value) { return currentMockSupport->setData(name, value); } void setDoubleData_c(const char* name, double value) { return currentMockSupport->setData(name, value); } void setStringData_c(const char* name, const char* value) { return currentMockSupport->setData(name, value); } void setPointerData_c(const char* name, void* value) { return currentMockSupport->setData(name, value); } void setDataObject_c(const char* name, const char* type, void* value) { return currentMockSupport->setDataObject(name, type, value); } MockValue_c getData_c(const char* name) { return getMockValueCFromNamedValue(currentMockSupport->getData(name)); } void checkExpectations_c() { currentMockSupport->checkExpectations(); } int expectedCallsLeft_c() { return currentMockSupport->expectedCallsLeft(); } void clear_c() { currentMockSupport->clear(); } MockSupport_c* mock_c() { currentMockSupport = &mock(); return &gMockSupport; } MockSupport_c* mock_scope_c(const char* scope) { currentMockSupport = &mock(scope); return &gMockSupport; } } cpputest-3.4/src/CppUTestExt/MemoryReportAllocator.cpp0000644000175300017530000000575412023251675020164 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" #include "CppUTestExt/MemoryReportAllocator.h" #include "CppUTestExt/MemoryReportFormatter.h" MemoryReportAllocator::MemoryReportAllocator() : result_(NULL), realAllocator_(NULL), formatter_(NULL) { } MemoryReportAllocator::~MemoryReportAllocator() { } const char* MemoryReportAllocator::name() { return realAllocator_->name(); } const char* MemoryReportAllocator::alloc_name() { return realAllocator_->alloc_name(); } const char* MemoryReportAllocator::free_name() { return realAllocator_->free_name(); } void MemoryReportAllocator::setRealAllocator(TestMemoryAllocator* allocator) { realAllocator_ = allocator; } TestMemoryAllocator* MemoryReportAllocator::getRealAllocator() { return realAllocator_; } void MemoryReportAllocator::setTestResult(TestResult* result) { result_ = result; } void MemoryReportAllocator::setFormatter(MemoryReportFormatter* formatter) { formatter_ = formatter; } char* MemoryReportAllocator::alloc_memory(size_t size, const char* file, int line) { char* memory = realAllocator_->alloc_memory(size, file, line); if (result_ && formatter_) formatter_->report_alloc_memory(result_, this, size, memory, file, line); return memory; } void MemoryReportAllocator::free_memory(char* memory, const char* file, int line) { realAllocator_->free_memory(memory, file, line); if (result_ && formatter_) formatter_->report_free_memory(result_, this, memory, file, line); } cpputest-3.4/src/CppUTestExt/MockExpectedFunctionCall.cpp0000644000175300017530000002240312023251675020522 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" #include "CppUTestExt/MockExpectedFunctionCall.h" SimpleString StringFrom(const MockNamedValue& parameter) { return parameter.toString(); } MockExpectedFunctionCall::MockExpectedFunctionCall() : ignoreOtherParameters_(false), parametersWereIgnored_(false), callOrder_(0), expectedCallOrder_(NO_EXPECTED_CALL_ORDER), outOfOrder_(true), returnValue_(""), objectPtr_(NULL), wasPassedToObject_(true) { parameters_ = new MockNamedValueList(); } MockExpectedFunctionCall::~MockExpectedFunctionCall() { parameters_->clear(); delete parameters_; } MockFunctionCall& MockExpectedFunctionCall::withName(const SimpleString& name) { setName(name); callOrder_ = NOT_CALLED_YET; return *this; } MockFunctionCall& MockExpectedFunctionCall::withParameter(const SimpleString& name, int value) { MockNamedValue* newParameter = new MockExpectedFunctionParameter(name); parameters_->add(newParameter); newParameter->setValue(value); return *this; } MockFunctionCall& MockExpectedFunctionCall::withParameter(const SimpleString& name, double value) { MockNamedValue* newParameter = new MockExpectedFunctionParameter(name); parameters_->add(newParameter); newParameter->setValue(value); return *this; } MockFunctionCall& MockExpectedFunctionCall::withParameter(const SimpleString& name, const char* value) { MockNamedValue* newParameter = new MockExpectedFunctionParameter(name); parameters_->add(newParameter); newParameter->setValue(value); return *this; } MockFunctionCall& MockExpectedFunctionCall::withParameter(const SimpleString& name, void* value) { MockNamedValue* newParameter = new MockExpectedFunctionParameter(name); parameters_->add(newParameter); newParameter->setValue(value); return *this; } MockFunctionCall& MockExpectedFunctionCall::withParameterOfType(const SimpleString& type, const SimpleString& name, void* value) { MockNamedValue* newParameter = new MockExpectedFunctionParameter(name); parameters_->add(newParameter); newParameter->setObjectPointer(type, value); newParameter->setComparator(getComparatorForType(type)); return *this; } SimpleString MockExpectedFunctionCall::getParameterType(const SimpleString& name) { MockNamedValue * p = parameters_->getValueByName(name); return (p) ? p->getType() : ""; } bool MockExpectedFunctionCall::hasParameterWithName(const SimpleString& name) { MockNamedValue * p = parameters_->getValueByName(name); return p != NULL; } MockNamedValue MockExpectedFunctionCall::getParameter(const SimpleString& name) { MockNamedValue * p = parameters_->getValueByName(name); return (p) ? *p : MockNamedValue(""); } bool MockExpectedFunctionCall::areParametersFulfilled() { for (MockNamedValueListNode* p = parameters_->begin(); p; p = p->next()) if (! item(p)->isFulfilled()) return false; return true; } bool MockExpectedFunctionCall::areIgnoredParametersFulfilled() { if (ignoreOtherParameters_) return parametersWereIgnored_; return true; } MockFunctionCall& MockExpectedFunctionCall::ignoreOtherParameters() { ignoreOtherParameters_ = true; return *this; } bool MockExpectedFunctionCall::isFulfilled() { return isFulfilledWithoutIgnoredParameters() && areIgnoredParametersFulfilled(); } bool MockExpectedFunctionCall::isFulfilledWithoutIgnoredParameters() { return callOrder_ != NOT_CALLED_YET && areParametersFulfilled() && wasPassedToObject_; } void MockExpectedFunctionCall::callWasMade(int callOrder) { callOrder_ = callOrder; if (expectedCallOrder_ == NO_EXPECTED_CALL_ORDER) outOfOrder_ = false; else if (callOrder_ == expectedCallOrder_) outOfOrder_ = false; else outOfOrder_ = true; } void MockExpectedFunctionCall::parametersWereIgnored() { parametersWereIgnored_ = true; } void MockExpectedFunctionCall::wasPassedToObject() { wasPassedToObject_ = true; } void MockExpectedFunctionCall::resetExpectation() { callOrder_ = NOT_CALLED_YET; wasPassedToObject_ = (objectPtr_ == NULL); for (MockNamedValueListNode* p = parameters_->begin(); p; p = p->next()) item(p)->setFulfilled(false); } void MockExpectedFunctionCall::parameterWasPassed(const SimpleString& name) { for (MockNamedValueListNode* p = parameters_->begin(); p; p = p->next()) { if (p->getName() == name) item(p)->setFulfilled(true); } } SimpleString MockExpectedFunctionCall::getParameterValueString(const SimpleString& name) { MockNamedValue * p = parameters_->getValueByName(name); return (p) ? StringFrom(*p) : "failed"; } bool MockExpectedFunctionCall::hasParameter(const MockNamedValue& parameter) { MockNamedValue * p = parameters_->getValueByName(parameter.getName()); return (p) ? p->equals(parameter) : ignoreOtherParameters_; } SimpleString MockExpectedFunctionCall::callToString() { SimpleString str; if (objectPtr_) str = StringFromFormat("(object address: %p)::", objectPtr_); str += getName(); str += " -> "; if (expectedCallOrder_ != NO_EXPECTED_CALL_ORDER) { str += StringFromFormat("expected call order: <%d> -> ", expectedCallOrder_); } if (parameters_->begin() == NULL) { str += (ignoreOtherParameters_) ? "all parameters ignored" : "no parameters"; return str; } for (MockNamedValueListNode* p = parameters_->begin(); p; p = p->next()) { str += StringFromFormat("%s %s: <%s>", p->getType().asCharString(), p->getName().asCharString(), getParameterValueString(p->getName()).asCharString()); if (p->next()) str += ", "; } if (ignoreOtherParameters_) str += ", other parameters are ignored"; return str; } SimpleString MockExpectedFunctionCall::missingParametersToString() { SimpleString str; for (MockNamedValueListNode* p = parameters_->begin(); p; p = p->next()) { if (! item(p)->isFulfilled()) { if (str != "") str += ", "; str += StringFromFormat("%s %s", p->getType().asCharString(), p->getName().asCharString()); } } return str; } bool MockExpectedFunctionCall::relatesTo(const SimpleString& functionName) { return functionName == getName(); } bool MockExpectedFunctionCall::relatesToObject(void*objectPtr) const { return objectPtr_ == objectPtr; } MockExpectedFunctionCall::MockExpectedFunctionParameter* MockExpectedFunctionCall::item(MockNamedValueListNode* node) { return (MockExpectedFunctionParameter*) node->item(); } MockExpectedFunctionCall::MockExpectedFunctionParameter::MockExpectedFunctionParameter(const SimpleString& name) : MockNamedValue(name), fulfilled_(false) { } void MockExpectedFunctionCall::MockExpectedFunctionParameter::setFulfilled(bool b) { fulfilled_ = b; } bool MockExpectedFunctionCall::MockExpectedFunctionParameter::isFulfilled() const { return fulfilled_; } MockFunctionCall& MockExpectedFunctionCall::andReturnValue(int value) { returnValue_.setName("returnValue"); returnValue_.setValue(value); return *this; } MockFunctionCall& MockExpectedFunctionCall::andReturnValue(const char* value) { returnValue_.setName("returnValue"); returnValue_.setValue(value); return *this; } MockFunctionCall& MockExpectedFunctionCall::andReturnValue(double value) { returnValue_.setName("returnValue"); returnValue_.setValue(value); return *this; } MockFunctionCall& MockExpectedFunctionCall::andReturnValue(void* value) { returnValue_.setName("returnValue"); returnValue_.setValue(value); return *this; } MockFunctionCall& MockExpectedFunctionCall::onObject(void* objectPtr) { wasPassedToObject_ = false; objectPtr_ = objectPtr; return *this; } bool MockExpectedFunctionCall::hasReturnValue() { return ! returnValue_.getName().isEmpty(); } MockNamedValue MockExpectedFunctionCall::returnValue() { return returnValue_; } int MockExpectedFunctionCall::getCallOrder() const { return callOrder_; } MockFunctionCall& MockExpectedFunctionCall::withCallOrder(int callOrder) { expectedCallOrder_ = callOrder; return *this; } bool MockExpectedFunctionCall::isOutOfOrder() const { return outOfOrder_; } cpputest-3.4/src/CppUTestExt/MockNamedValue.cpp0000644000175300017530000001603512134163705016503 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" #include "CppUTestExt/MockNamedValue.h" #include "CppUTest/PlatformSpecificFunctions.h" MockNamedValue::MockNamedValue(const SimpleString& name) : name_(name), type_("int"), comparator_(NULL) { value_.intValue_ = 0; } MockNamedValue::~MockNamedValue() { } void MockNamedValue::setValue(int value) { type_ = "int"; value_.intValue_ = value; } void MockNamedValue::setValue(double value) { type_ = "double"; value_.doubleValue_ = value; } void MockNamedValue::setValue(void* value) { type_ = "void*"; value_.pointerValue_ = value; } void MockNamedValue::setValue(const char* value) { type_ = "char*"; value_.stringValue_ = value; } void MockNamedValue::setObjectPointer(const SimpleString& type, void* objectPtr) { type_ = type; value_.objectPointerValue_ = objectPtr; } void MockNamedValue::setName(const char* name) { name_ = name; } SimpleString MockNamedValue::getName() const { return name_; } SimpleString MockNamedValue::getType() const { return type_; } int MockNamedValue::getIntValue() const { STRCMP_EQUAL("int", type_.asCharString()); return value_.intValue_; } double MockNamedValue::getDoubleValue() const { STRCMP_EQUAL("double", type_.asCharString()); return value_.doubleValue_; } const char* MockNamedValue::getStringValue() const { STRCMP_EQUAL("char*", type_.asCharString()); return value_.stringValue_; } void* MockNamedValue::getPointerValue() const { STRCMP_EQUAL("void*", type_.asCharString()); return value_.pointerValue_; } void* MockNamedValue::getObjectPointer() const { return value_.objectPointerValue_; } void MockNamedValue::setComparator(MockNamedValueComparator* comparator) { comparator_ = comparator; } bool MockNamedValue::equals(const MockNamedValue& p) const { if (type_ != p.type_) return false; if (type_ == "int") return value_.intValue_ == p.value_.intValue_; else if (type_ == "char*") return SimpleString(value_.stringValue_) == SimpleString(p.value_.stringValue_); else if (type_ == "void*") return value_.pointerValue_ == p.value_.pointerValue_; else if (type_ == "double") return (doubles_equal(value_.doubleValue_, p.value_.doubleValue_, 0.005)); if (comparator_) return comparator_->isEqual(value_.objectPointerValue_, p.value_.objectPointerValue_); return false; } SimpleString MockNamedValue::toString() const { if (type_ == "int") return StringFrom(value_.intValue_); else if (type_ == "char*") return value_.stringValue_; else if (type_ == "void*") return StringFrom(value_.pointerValue_); else if (type_ == "double") return StringFrom(value_.doubleValue_); if (comparator_) return comparator_->valueToString(value_.objectPointerValue_); return StringFromFormat("No comparator found for type: \"%s\"", type_.asCharString()); } void MockNamedValueListNode::setNext(MockNamedValueListNode* node) { next_ = node; } MockNamedValueListNode* MockNamedValueListNode::next() { return next_; } MockNamedValue* MockNamedValueListNode::item() { return data_; } void MockNamedValueListNode::destroy() { delete data_; } MockNamedValueListNode::MockNamedValueListNode(MockNamedValue* newValue) : data_(newValue), next_(NULL) { } SimpleString MockNamedValueListNode::getName() const { return data_->getName(); } SimpleString MockNamedValueListNode::getType() const { return data_->getType(); } MockNamedValueList::MockNamedValueList() : head_(NULL) { } void MockNamedValueList::clear() { while (head_) { MockNamedValueListNode* n = head_->next(); head_->destroy(); delete head_; head_ = n; } } void MockNamedValueList::add(MockNamedValue* newValue) { MockNamedValueListNode* newNode = new MockNamedValueListNode(newValue); if (head_ == NULL) head_ = newNode; else { MockNamedValueListNode* lastNode = head_; while (lastNode->next()) lastNode = lastNode->next(); lastNode->setNext(newNode); } } MockNamedValue* MockNamedValueList::getValueByName(const SimpleString& name) { for (MockNamedValueListNode * p = head_; p; p = p->next()) if (p->getName() == name) return p->item(); return NULL; } MockNamedValueListNode* MockNamedValueList::begin() { return head_; } struct MockNamedValueComparatorRepositoryNode { MockNamedValueComparatorRepositoryNode(const SimpleString& name, MockNamedValueComparator& comparator, MockNamedValueComparatorRepositoryNode* next) : name_(name), comparator_(comparator), next_(next) {} SimpleString name_; MockNamedValueComparator& comparator_; MockNamedValueComparatorRepositoryNode* next_; }; MockNamedValueComparatorRepository::MockNamedValueComparatorRepository() : head_(NULL) { } MockNamedValueComparatorRepository::~MockNamedValueComparatorRepository() { clear(); } void MockNamedValueComparatorRepository::clear() { while (head_) { MockNamedValueComparatorRepositoryNode* next = head_->next_; delete head_; head_ = next; } } void MockNamedValueComparatorRepository::installComparator(const SimpleString& name, MockNamedValueComparator& comparator) { head_ = new MockNamedValueComparatorRepositoryNode(name, comparator, head_); } MockNamedValueComparator* MockNamedValueComparatorRepository::getComparatorForType(const SimpleString& name) { for (MockNamedValueComparatorRepositoryNode* p = head_; p; p = p->next_) if (p->name_ == name) return &p->comparator_; return NULL;; } void MockNamedValueComparatorRepository::installComparators(const MockNamedValueComparatorRepository& repository) { for (MockNamedValueComparatorRepositoryNode* p = repository.head_; p; p = p->next_) installComparator(p->name_, p->comparator_); } cpputest-3.4/src/CppUTestExt/OrderedTest.cpp0000644000175300017530000001026712023251675016076 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" #include "CppUTest/TestRegistry.h" #include "CppUTestExt/OrderedTest.h" OrderedTestShell* OrderedTestShell::_orderedTestsHead = 0; OrderedTestShell::OrderedTestShell() : _nextOrderedTest(0) { } OrderedTestShell::~OrderedTestShell() { } int OrderedTestShell::getLevel() { return _level; } void OrderedTestShell::setLevel(int level) { _level = level; } void OrderedTestShell::setOrderedTestHead(OrderedTestShell* test) { _orderedTestsHead = test; } OrderedTestShell* OrderedTestShell::getOrderedTestHead() { return _orderedTestsHead; } bool OrderedTestShell::firstOrderedTest() { return (getOrderedTestHead() == 0); } OrderedTestShell* OrderedTestShell::addOrderedTest(OrderedTestShell* test) { UtestShell::addTest(test); _nextOrderedTest = test; return this; } void OrderedTestShell::addOrderedTestToHead(OrderedTestShell* test) { TestRegistry *reg = TestRegistry::getCurrentRegistry(); if (reg->getFirstTest()->isNull() || getOrderedTestHead() == reg->getFirstTest()) reg->addTest(test); else reg->getTestWithNext(getOrderedTestHead())->addTest(test); test->_nextOrderedTest = getOrderedTestHead(); setOrderedTestHead(test); } OrderedTestShell* OrderedTestShell::getNextOrderedTest() { return _nextOrderedTest; } OrderedTestInstaller::OrderedTestInstaller(OrderedTestShell& test, const char* groupName, const char* testName, const char* fileName, int lineNumber, int level) { test.setTestName(testName); test.setGroupName(groupName); test.setFileName(fileName); test.setLineNumber(lineNumber); test.setLevel(level); if (OrderedTestShell::firstOrderedTest()) OrderedTestShell::addOrderedTestToHead(&test); else addOrderedTestInOrder(&test); } void OrderedTestInstaller::addOrderedTestInOrder(OrderedTestShell* test) { if (test->getLevel() < OrderedTestShell::getOrderedTestHead()->getLevel()) OrderedTestShell::addOrderedTestToHead( test); else addOrderedTestInOrderNotAtHeadPosition(test); } void OrderedTestInstaller::addOrderedTestInOrderNotAtHeadPosition( OrderedTestShell* test) { OrderedTestShell* current = OrderedTestShell::getOrderedTestHead(); while (current->getNextOrderedTest()) { if (current->getNextOrderedTest()->getLevel() > test->getLevel()) { test->addOrderedTest(current->getNextOrderedTest()); current->addOrderedTest(test); return; } current = current->getNextOrderedTest(); } test->addOrderedTest(current->getNextOrderedTest()); current->addOrderedTest(test); } OrderedTestInstaller::~OrderedTestInstaller() { } cpputest-3.4/src/CppUTestExt/MemoryReportFormatter.cpp0000644000175300017530000000646412023251675020206 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" #include "CppUTestExt/MemoryReportAllocator.h" #include "CppUTestExt/MemoryReportFormatter.h" NormalMemoryReportFormatter::NormalMemoryReportFormatter() { } NormalMemoryReportFormatter::~NormalMemoryReportFormatter() { } void NormalMemoryReportFormatter::report_test_start(TestResult* result, UtestShell& test) { result->print(StringFromFormat("TEST(%s, %s)\n", test.getGroup().asCharString(), test.getName().asCharString()).asCharString()); } void NormalMemoryReportFormatter::report_test_end(TestResult* result, UtestShell& test) { result->print(StringFromFormat("ENDTEST(%s, %s)\n", test.getGroup().asCharString(), test.getName().asCharString()).asCharString()); } void NormalMemoryReportFormatter::report_alloc_memory(TestResult* result, TestMemoryAllocator* allocator, size_t size, char* memory, const char* file, int line) { result->print(StringFromFormat("\tAllocation using %s of size: %d pointer: %p at %s:%d\n", allocator->alloc_name(), size, memory, file, line).asCharString()); } void NormalMemoryReportFormatter::report_free_memory(TestResult* result, TestMemoryAllocator* allocator, char* memory, const char* file, int line) { result->print(StringFromFormat("\tDeallocation using %s of pointer: %p at %s:%d\n", allocator->free_name(), memory, file, line).asCharString()); } void NormalMemoryReportFormatter::report_testgroup_start(TestResult* result, UtestShell& test) { const size_t line_size = 80; SimpleString groupName = StringFromFormat("TEST GROUP(%s)", test.getGroup().asCharString()); size_t beginPos = (line_size/2) - (groupName.size()/2); SimpleString line("-", beginPos); line += groupName; line += SimpleString("-", line_size - line.size()); line += "\n"; result->print(line.asCharString()); } cpputest-3.4/src/CppUTestExt/MockExpectedFunctionsList.cpp0000664000175300017530000002477412066727207020772 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" #include "CppUTestExt/MockExpectedFunctionsList.h" #include "CppUTestExt/MockExpectedFunctionCall.h" MockExpectedFunctionsList::MockExpectedFunctionsList() : head_(NULL) { } MockExpectedFunctionsList::~MockExpectedFunctionsList() { while (head_) { MockExpectedFunctionsListNode* next = head_->next_; delete head_; head_ = next; } } bool MockExpectedFunctionsList::hasCallsOutOfOrder() const { for (MockExpectedFunctionsListNode* p = head_; p; p = p->next_) if (p->expectedCall_->isOutOfOrder()) return true; return false; } int MockExpectedFunctionsList::size() const { int count = 0; for (MockExpectedFunctionsListNode* p = head_; p; p = p->next_) count++; return count; } bool MockExpectedFunctionsList::isEmpty() const { return size() == 0; } int MockExpectedFunctionsList::amountOfExpectationsFor(const SimpleString& name) const { int count = 0; for (MockExpectedFunctionsListNode* p = head_; p; p = p->next_) if (p->expectedCall_->relatesTo(name)) count++; return count; } int MockExpectedFunctionsList::amountOfUnfulfilledExpectations() const { int count = 0; for (MockExpectedFunctionsListNode* p = head_; p; p = p->next_) if (! p->expectedCall_->isFulfilled()) count++; return count; } bool MockExpectedFunctionsList::hasFulfilledExpectations() const { return (size() - amountOfUnfulfilledExpectations()) != 0; } bool MockExpectedFunctionsList::hasUnfullfilledExpectations() const { return amountOfUnfulfilledExpectations() != 0; } bool MockExpectedFunctionsList::hasExpectationWithName(const SimpleString& name) const { for (MockExpectedFunctionsListNode* p = head_; p; p = p->next_) if (p->expectedCall_->relatesTo(name)) return true; return false; } void MockExpectedFunctionsList::addExpectedCall(MockExpectedFunctionCall* call) { MockExpectedFunctionsListNode* newCall = new MockExpectedFunctionsListNode(call); if (head_ == NULL) head_ = newCall; else { MockExpectedFunctionsListNode* lastCall = head_; while (lastCall->next_) lastCall = lastCall->next_; lastCall->next_ = newCall; } } void MockExpectedFunctionsList::addUnfilfilledExpectations(const MockExpectedFunctionsList& list) { for (MockExpectedFunctionsListNode* p = list.head_; p; p = p->next_) if (! p->expectedCall_->isFulfilled()) addExpectedCall(p->expectedCall_); } void MockExpectedFunctionsList::addExpectationsRelatedTo(const SimpleString& name, const MockExpectedFunctionsList& list) { for (MockExpectedFunctionsListNode* p = list.head_; p; p = p->next_) if (p->expectedCall_->relatesTo(name)) addExpectedCall(p->expectedCall_); } void MockExpectedFunctionsList::addExpectations(const MockExpectedFunctionsList& list) { for (MockExpectedFunctionsListNode* p = list.head_; p; p = p->next_) addExpectedCall(p->expectedCall_); } void MockExpectedFunctionsList::onlyKeepExpectationsRelatedTo(const SimpleString& name) { for (MockExpectedFunctionsListNode* p = head_; p; p = p->next_) if (! p->expectedCall_->relatesTo(name)) p->expectedCall_ = NULL; pruneEmptyNodeFromList(); } void MockExpectedFunctionsList::onlyKeepUnfulfilledExpectations() { for (MockExpectedFunctionsListNode* p = head_; p; p = p->next_) if (p->expectedCall_->isFulfilled()) p->expectedCall_ = NULL; pruneEmptyNodeFromList(); } void MockExpectedFunctionsList::onlyKeepUnfulfilledExpectationsRelatedTo(const SimpleString& name) { onlyKeepUnfulfilledExpectations(); onlyKeepExpectationsRelatedTo(name); } void MockExpectedFunctionsList::onlyKeepExpectationsWithParameterName(const SimpleString& name) { for (MockExpectedFunctionsListNode* p = head_; p; p = p->next_) if (! p->expectedCall_->hasParameterWithName(name)) p->expectedCall_ = NULL; pruneEmptyNodeFromList(); } void MockExpectedFunctionsList::onlyKeepExpectationsWithParameter(const MockNamedValue& parameter) { for (MockExpectedFunctionsListNode* p = head_; p; p = p->next_) if (! p->expectedCall_->hasParameter(parameter)) p->expectedCall_ = NULL; pruneEmptyNodeFromList(); } void MockExpectedFunctionsList::onlyKeepExpectationsOnObject(void* objectPtr) { for (MockExpectedFunctionsListNode* p = head_; p; p = p->next_) if (! p->expectedCall_->relatesToObject(objectPtr)) p->expectedCall_ = NULL; pruneEmptyNodeFromList(); } void MockExpectedFunctionsList::onlyKeepUnfulfilledExpectationsWithParameter(const MockNamedValue& parameter) { onlyKeepUnfulfilledExpectations(); onlyKeepExpectationsWithParameter(parameter); } void MockExpectedFunctionsList::onlyKeepUnfulfilledExpectationsOnObject(void* objectPtr) { onlyKeepUnfulfilledExpectations(); onlyKeepExpectationsOnObject(objectPtr); } MockExpectedFunctionCall* MockExpectedFunctionsList::removeOneFulfilledExpectation() { for (MockExpectedFunctionsListNode* p = head_; p; p = p->next_) { if (p->expectedCall_->isFulfilled()) { MockExpectedFunctionCall* fulfilledCall = p->expectedCall_; p->expectedCall_ = NULL; pruneEmptyNodeFromList(); return fulfilledCall; } } return NULL; } MockExpectedFunctionCall* MockExpectedFunctionsList::removeOneFulfilledExpectationWithIgnoredParameters() { for (MockExpectedFunctionsListNode* p = head_; p; p = p->next_) { if (p->expectedCall_->isFulfilledWithoutIgnoredParameters()) { MockExpectedFunctionCall* fulfilledCall = p->expectedCall_; p->expectedCall_->parametersWereIgnored(); p->expectedCall_ = NULL; pruneEmptyNodeFromList(); return fulfilledCall; } } return NULL; } void MockExpectedFunctionsList::pruneEmptyNodeFromList() { MockExpectedFunctionsListNode* current = head_; MockExpectedFunctionsListNode* previous = NULL; MockExpectedFunctionsListNode* toBeDeleted = NULL; while (current) { if (current->expectedCall_ == NULL) { toBeDeleted = current; if (previous == NULL) head_ = current = current->next_; else current = previous->next_ = current->next_; delete toBeDeleted; } else { previous = current; current = current->next_; } } } void MockExpectedFunctionsList::deleteAllExpectationsAndClearList() { while (head_) { MockExpectedFunctionsListNode* next = head_->next_; delete head_->expectedCall_; delete head_; head_ = next; } } void MockExpectedFunctionsList::resetExpectations() { for (MockExpectedFunctionsListNode* p = head_; p; p = p->next_) p->expectedCall_->resetExpectation(); } void MockExpectedFunctionsList::callWasMade(int callOrder) { for (MockExpectedFunctionsListNode* p = head_; p; p = p->next_) p->expectedCall_->callWasMade(callOrder); } void MockExpectedFunctionsList::wasPassedToObject() { for (MockExpectedFunctionsListNode* p = head_; p; p = p->next_) p->expectedCall_->wasPassedToObject(); } void MockExpectedFunctionsList::parameterWasPassed(const SimpleString& parameterName) { for (MockExpectedFunctionsListNode* p = head_; p; p = p->next_) p->expectedCall_->parameterWasPassed(parameterName); } MockExpectedFunctionsList::MockExpectedFunctionsListNode* MockExpectedFunctionsList::findNodeWithCallOrderOf(int callOrder) const { for (MockExpectedFunctionsListNode* p = head_; p; p = p->next_) if (p->expectedCall_->getCallOrder() == callOrder && p->expectedCall_->isFulfilled()) return p; return NULL; } static SimpleString stringOrNoneTextWhenEmpty(const SimpleString& inputString, const SimpleString& linePrefix) { SimpleString str = inputString; if (str == "") { str += linePrefix; str += ""; } return str; } static SimpleString appendStringOnANewLine(const SimpleString& inputString, const SimpleString& linePrefix, const SimpleString& stringToAppend) { SimpleString str = inputString; if (str != "") str += "\n"; str += linePrefix; str += stringToAppend; return str; } SimpleString MockExpectedFunctionsList::unfulfilledFunctionsToString(const SimpleString& linePrefix) const { SimpleString str; for (MockExpectedFunctionsListNode* p = head_; p; p = p->next_) if (!p->expectedCall_->isFulfilled()) str = appendStringOnANewLine(str, linePrefix, p->expectedCall_->callToString()); return stringOrNoneTextWhenEmpty(str, linePrefix); } SimpleString MockExpectedFunctionsList::fulfilledFunctionsToString(const SimpleString& linePrefix) const { SimpleString str; MockExpectedFunctionsListNode* nextNodeInOrder = head_; for (int callOrder = 1; (nextNodeInOrder = findNodeWithCallOrderOf(callOrder)); callOrder++) if (nextNodeInOrder) str = appendStringOnANewLine(str, linePrefix, nextNodeInOrder->expectedCall_->callToString()); return stringOrNoneTextWhenEmpty(str, linePrefix); } SimpleString MockExpectedFunctionsList::missingParametersToString() const { SimpleString str; for (MockExpectedFunctionsListNode* p = head_; p; p = p->next_) if (! p->expectedCall_->isFulfilled()) str = appendStringOnANewLine(str, "", p->expectedCall_->missingParametersToString()); return stringOrNoneTextWhenEmpty(str, ""); } bool MockExpectedFunctionsList::hasUnfulfilledExpectationsBecauseOfMissingParameters() const { for (MockExpectedFunctionsListNode* p = head_; p; p = p->next_) if (! p->expectedCall_->areParametersFulfilled()) return true; return false; } cpputest-3.4/src/CppUTestExt/MockSupport.cpp0000664000175300017530000002704112066727207016146 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" #include "CppUTestExt/MockSupport.h" #include "CppUTestExt/MockActualFunctionCall.h" #include "CppUTestExt/MockExpectedFunctionCall.h" #include "CppUTestExt/MockFailure.h" #define MOCK_SUPPORT_SCOPE_PREFIX "!!!$$$MockingSupportScope$$$!!!" static MockSupport global_mock; int MockSupport::callOrder_ = 0; int MockSupport::expectedCallOrder_ = 0; MockSupport& mock(const SimpleString& mockName) { if (mockName != "") return *global_mock.getMockSupportScope(mockName); return global_mock; } MockSupport::MockSupport() : strictOrdering_(false), reporter_(&defaultReporter_), ignoreOtherCalls_(false), enabled_(true), lastActualFunctionCall_(NULL), tracing_(false) { } MockSupport::~MockSupport() { } void MockSupport::crashOnFailure() { reporter_->crashOnFailure(); } void MockSupport::setMockFailureReporter(MockFailureReporter* reporter) { reporter_ = (reporter != NULL) ? reporter : &defaultReporter_; if (lastActualFunctionCall_) lastActualFunctionCall_->setMockFailureReporter(reporter_); for (MockNamedValueListNode* p = data_.begin(); p; p = p->next()) if (getMockSupport(p)) getMockSupport(p)->setMockFailureReporter(reporter_); } void MockSupport::installComparator(const SimpleString& typeName, MockNamedValueComparator& comparator) { comparatorRepository_.installComparator(typeName, comparator); for (MockNamedValueListNode* p = data_.begin(); p; p = p->next()) if (getMockSupport(p)) getMockSupport(p)->installComparator(typeName, comparator); } void MockSupport::installComparators(const MockNamedValueComparatorRepository& repository) { comparatorRepository_.installComparators(repository); for (MockNamedValueListNode* p = data_.begin(); p; p = p->next()) if (getMockSupport(p)) getMockSupport(p)->installComparators(repository); } void MockSupport::removeAllComparators() { comparatorRepository_.clear(); for (MockNamedValueListNode* p = data_.begin(); p; p = p->next()) if (getMockSupport(p)) getMockSupport(p)->removeAllComparators(); } void MockSupport::clear() { delete lastActualFunctionCall_; lastActualFunctionCall_ = NULL; tracing_ = false; MockFunctionCallTrace::instance().clear(); expectations_.deleteAllExpectationsAndClearList(); compositeCalls_.clear(); ignoreOtherCalls_ = false; enabled_ = true; callOrder_ = 0; expectedCallOrder_ = 0; strictOrdering_ = false; for (MockNamedValueListNode* p = data_.begin(); p; p = p->next()) { MockSupport* support = getMockSupport(p); if (support) { support->clear(); delete support; } } data_.clear(); } void MockSupport::strictOrder() { strictOrdering_ = true; } MockFunctionCall& MockSupport::expectOneCall(const SimpleString& functionName) { if (!enabled_) return MockIgnoredCall::instance(); MockExpectedFunctionCall* call = new MockExpectedFunctionCall; call->setComparatorRepository(&comparatorRepository_); call->withName(functionName); if (strictOrdering_) call->withCallOrder(++expectedCallOrder_); expectations_.addExpectedCall(call); return *call; } MockFunctionCall& MockSupport::expectNCalls(int amount, const SimpleString& functionName) { compositeCalls_.clear(); for (int i = 0; i < amount; i++) compositeCalls_.add(expectOneCall(functionName)); return compositeCalls_; } MockActualFunctionCall* MockSupport::createActualFunctionCall() { lastActualFunctionCall_ = new MockActualFunctionCall(++callOrder_, reporter_, expectations_); return lastActualFunctionCall_; } MockFunctionCall& MockSupport::actualCall(const SimpleString& functionName) { if (lastActualFunctionCall_) { lastActualFunctionCall_->checkExpectations(); delete lastActualFunctionCall_; lastActualFunctionCall_ = NULL; } if (!enabled_) return MockIgnoredCall::instance(); if (tracing_) return MockFunctionCallTrace::instance().withName(functionName); if (!expectations_.hasExpectationWithName(functionName) && ignoreOtherCalls_) { return MockIgnoredCall::instance(); } MockActualFunctionCall* call = createActualFunctionCall(); call->setComparatorRepository(&comparatorRepository_); call->withName(functionName); return *call; } void MockSupport::ignoreOtherCalls() { ignoreOtherCalls_ = true; for (MockNamedValueListNode* p = data_.begin(); p; p = p->next()) if (getMockSupport(p)) getMockSupport(p)->ignoreOtherCalls(); } void MockSupport::disable() { enabled_ = false; for (MockNamedValueListNode* p = data_.begin(); p; p = p->next()) if (getMockSupport(p)) getMockSupport(p)->disable(); } void MockSupport::enable() { enabled_ = true; for (MockNamedValueListNode* p = data_.begin(); p; p = p->next()) if (getMockSupport(p)) getMockSupport(p)->enable(); } void MockSupport::tracing(bool enabled) { tracing_ = enabled; for (MockNamedValueListNode* p = data_.begin(); p; p = p->next()) if (getMockSupport(p)) getMockSupport(p)->tracing(enabled); } const char* MockSupport::getTraceOutput() { return MockFunctionCallTrace::instance().getTraceOutput(); } bool MockSupport::expectedCallsLeft() { int callsLeft = expectations_.hasUnfullfilledExpectations(); for (MockNamedValueListNode* p = data_.begin(); p; p = p->next()) if (getMockSupport(p)) callsLeft += getMockSupport(p)->expectedCallsLeft(); return callsLeft != 0; } bool MockSupport::wasLastCallFulfilled() { if (lastActualFunctionCall_ && !lastActualFunctionCall_->isFulfilled()) return false; for (MockNamedValueListNode* p = data_.begin(); p; p = p->next()) if (getMockSupport(p) && !getMockSupport(p)->wasLastCallFulfilled()) return false; return true; } void MockSupport::failTestWithUnexpectedCalls() { MockExpectedFunctionsList expectationsList; expectationsList.addExpectations(expectations_); for(MockNamedValueListNode *p = data_.begin();p;p = p->next()) if(getMockSupport(p)) expectationsList.addExpectations(getMockSupport(p)->expectations_); MockExpectedCallsDidntHappenFailure failure(reporter_->getTestToFail(), expectationsList); clear(); failTest(failure); } void MockSupport::failTestWithOutOfOrderCalls() { MockExpectedFunctionsList expectationsList; expectationsList.addExpectations(expectations_); for(MockNamedValueListNode *p = data_.begin();p;p = p->next()) if(getMockSupport(p)) expectationsList.addExpectations(getMockSupport(p)->expectations_); MockCallOrderFailure failure(reporter_->getTestToFail(), expectationsList); clear(); failTest(failure); } void MockSupport::failTest(MockFailure& failure) { if (reporter_->getAmountOfTestFailures() == 0) reporter_->failTest(failure); } void MockSupport::checkExpectationsOfLastCall() { if(lastActualFunctionCall_) lastActualFunctionCall_->checkExpectations(); for(MockNamedValueListNode *p = data_.begin();p;p = p->next()) if(getMockSupport(p) && getMockSupport(p)->lastActualFunctionCall_) getMockSupport(p)->lastActualFunctionCall_->checkExpectations(); } void MockSupport::checkExpectations() { checkExpectationsOfLastCall(); if (wasLastCallFulfilled() && expectedCallsLeft()) failTestWithUnexpectedCalls(); if (expectations_.hasCallsOutOfOrder()) failTestWithOutOfOrderCalls(); } bool MockSupport::hasData(const SimpleString& name) { return data_.getValueByName(name) != NULL; } MockNamedValue* MockSupport::retrieveDataFromStore(const SimpleString& name) { MockNamedValue* newData = data_.getValueByName(name); if (newData == NULL) { newData = new MockNamedValue(name); data_.add(newData); } return newData; } void MockSupport::setData(const SimpleString& name, int value) { MockNamedValue* newData = retrieveDataFromStore(name); newData->setValue(value); } void MockSupport::setData(const SimpleString& name, const char* value) { MockNamedValue* newData = retrieveDataFromStore(name); newData->setValue(value); } void MockSupport::setData(const SimpleString& name, double value) { MockNamedValue* newData = retrieveDataFromStore(name); newData->setValue(value); } void MockSupport::setData(const SimpleString& name, void* value) { MockNamedValue* newData = retrieveDataFromStore(name); newData->setValue(value); } void MockSupport::setDataObject(const SimpleString& name, const SimpleString& type, void* value) { MockNamedValue* newData = retrieveDataFromStore(name); newData->setObjectPointer(type, value); } MockNamedValue MockSupport::getData(const SimpleString& name) { MockNamedValue* value = data_.getValueByName(name); if (value == NULL) return MockNamedValue(""); return *value; } MockSupport* MockSupport::clone() { MockSupport* newMock = new MockSupport; newMock->setMockFailureReporter(reporter_); if (ignoreOtherCalls_) newMock->ignoreOtherCalls(); if (!enabled_) newMock->disable(); if (strictOrdering_) newMock->strictOrder(); newMock->tracing(tracing_); newMock->installComparators(comparatorRepository_); return newMock; } MockSupport* MockSupport::getMockSupportScope(const SimpleString& name) { SimpleString mockingSupportName = MOCK_SUPPORT_SCOPE_PREFIX; mockingSupportName += name; if (hasData(mockingSupportName)) { STRCMP_EQUAL("MockSupport", getData(mockingSupportName).getType().asCharString()); return (MockSupport*) getData(mockingSupportName).getObjectPointer(); } MockSupport *newMock = clone(); setDataObject(mockingSupportName, "MockSupport", newMock); return newMock; } MockSupport* MockSupport::getMockSupport(MockNamedValueListNode* node) { if (node->getType() == "MockSupport" && node->getName().contains(MOCK_SUPPORT_SCOPE_PREFIX)) return (MockSupport*) node->item()->getObjectPointer(); return NULL; } MockNamedValue MockSupport::returnValue() { if (lastActualFunctionCall_) return lastActualFunctionCall_->returnValue(); return MockNamedValue(""); } int MockSupport::intReturnValue() { return returnValue().getIntValue(); } const char* MockSupport::stringReturnValue() { return returnValue().getStringValue(); } double MockSupport::doubleReturnValue() { return returnValue().getDoubleValue(); } void* MockSupport::pointerReturnValue() { return returnValue().getPointerValue(); } bool MockSupport::hasReturnValue() { if (lastActualFunctionCall_) return lastActualFunctionCall_->hasReturnValue(); return false; } cpputest-3.4/src/CppUTestExt/CMakeLists.txt0000644000175300017530000000332312134163705015700 00000000000000set(CppUTestExt_src CodeMemoryReportFormatter.cpp MemoryReporterPlugin.cpp MockFailure.cpp MockSupportPlugin.cpp GTestConvertor.cpp MockActualFunctionCall.cpp MockFunctionCall.cpp MockSupport_c.cpp MemoryReportAllocator.cpp MockExpectedFunctionCall.cpp MockNamedValue.cpp OrderedTest.cpp MemoryReportFormatter.cpp MockExpectedFunctionsList.cpp MockSupport.cpp ) set(CppUTestExt_headers ${CppUTestRootDirectory}/include/CppUTestExt/MemoryReportAllocator.h ${CppUTestRootDirectory}/include/CppUTestExt/MockExpectedFunctionsList.h ${CppUTestRootDirectory}/include/CppUTestExt/MockSupportPlugin.h ${CppUTestRootDirectory}/include/CppUTestExt/MemoryReportFormatter.h ${CppUTestRootDirectory}/include/CppUTestExt/MockFailure.h ${CppUTestRootDirectory}/include/CppUTestExt/MockSupport_c.h ${CppUTestRootDirectory}/include/CppUTestExt/GMock.h ${CppUTestRootDirectory}/include/CppUTestExt/MemoryReporterPlugin.h ${CppUTestRootDirectory}/include/CppUTestExt/MockFunctionCall.h ${CppUTestRootDirectory}/include/CppUTestExt/OrderedTest.h ${CppUTestRootDirectory}/include/CppUTestExt/GTestConvertor.h ${CppUTestRootDirectory}/include/CppUTestExt/MockActualFunctionCall.h ${CppUTestRootDirectory}/include/CppUTestExt/MockNamedValue.h ) add_library(CppUTestExt STATIC ${CppUTestExt_src}) target_link_libraries(CppUTestExt ${CPPUNIT_EXTERNAL_LIBRARIES}) install(FILES ${CppUTestExt_headers} DESTINATION include/CppUTestExt) install(TARGETS CppUTestExt RUNTIME DESTINATION bin LIBRARY DESTINATION lib ARCHIVE DESTINATION lib) cpputest-3.4/src/Platforms/0000755000175300017530000000000012143642712012776 500000000000000cpputest-3.4/src/Platforms/Gcc/0000755000175300017530000000000012143642713013473 500000000000000cpputest-3.4/src/Platforms/Gcc/UtestPlatform.cpp0000644000175300017530000001541312140134154016724 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include #include "CppUTest/TestHarness.h" #undef malloc #undef free #undef calloc #undef realloc #include "CppUTest/TestRegistry.h" #include #include #include #include #include #include #include #include #include #ifndef __MINGW32__ #include #endif #include "CppUTest/PlatformSpecificFunctions.h" static jmp_buf test_exit_jmp_buf[10]; static int jmp_buf_index = 0; void PlatformSpecificRunTestInASeperateProcess(UtestShell* shell, TestPlugin* plugin, TestResult* result) { #ifdef __MINGW32__ printf("-p doesn't work on MinGW as it is lacking fork. Running inside the process\b"); shell->runOneTest(plugin, *result); #else int info; pid_t pid = fork(); if (pid) { wait(&info); if (WIFEXITED(info) && WEXITSTATUS(info) > result->getFailureCount()) result->addFailure(TestFailure(shell, "failed in seperate process")); else if (!WIFEXITED(info)) result->addFailure(TestFailure(shell, "failed in seperate process")); } else { shell->runOneTest(plugin, *result); exit(result->getFailureCount() ); } #endif } TestOutput::WorkingEnvironment PlatformSpecificGetWorkingEnvironment() { return TestOutput::eclipse; } extern "C" { int PlatformSpecificSetJmp(void (*function) (void* data), void* data) { if (0 == setjmp(test_exit_jmp_buf[jmp_buf_index])) { jmp_buf_index++; function(data); jmp_buf_index--; return 1; } return 0; } /* * MacOSX clang 3.0 doesn't seem to recognize longjmp and thus complains about __no_return_. * The later clang compilers complain when it isn't there. So only way is to check the clang compiler here :( */ #if !((__clang_major__ == 3) && (__clang_minor__ == 0)) __no_return__ #endif void PlatformSpecificLongJmp() { jmp_buf_index--; longjmp(test_exit_jmp_buf[jmp_buf_index], 1); } void PlatformSpecificRestoreJumpBuffer() { jmp_buf_index--; } ///////////// Time in millis static long TimeInMillisImplementation() { struct timeval tv; struct timezone tz; gettimeofday(&tv, &tz); return (tv.tv_sec * 1000) + (long)((double)tv.tv_usec * 0.001); } static long (*timeInMillisFp) () = TimeInMillisImplementation; long GetPlatformSpecificTimeInMillis() { return timeInMillisFp(); } void SetPlatformSpecificTimeInMillisMethod(long (*platformSpecific) ()) { timeInMillisFp = (platformSpecific == 0) ? TimeInMillisImplementation : platformSpecific; } ///////////// Time in String static const char* TimeStringImplementation() { time_t tm = time(NULL); return ctime(&tm); } static const char* (*timeStringFp) () = TimeStringImplementation; const char* GetPlatformSpecificTimeString() { return timeStringFp(); } void SetPlatformSpecificTimeStringMethod(const char* (*platformMethod) ()) { timeStringFp = (platformMethod == 0) ? TimeStringImplementation : platformMethod; } int PlatformSpecificAtoI(const char*str) { return atoi(str); } size_t PlatformSpecificStrLen(const char* str) { return strlen(str); } char* PlatformSpecificStrCat(char* s1, const char* s2) { return strcat(s1, s2); } char* PlatformSpecificStrCpy(char* s1, const char* s2) { return strcpy(s1, s2); } char* PlatformSpecificStrNCpy(char* s1, const char* s2, size_t size) { return strncpy(s1, s2, size); } int PlatformSpecificStrCmp(const char* s1, const char* s2) { return strcmp(s1, s2); } int PlatformSpecificStrNCmp(const char* s1, const char* s2, size_t size) { return strncmp(s1, s2, size); } char* PlatformSpecificStrStr(const char* s1, const char* s2) { return (char*) strstr(s1, s2); } /* Wish we could add an attribute to the format for discovering mis-use... but the __attribute__(format) seems to not work on va_list */ #ifdef __clang__ #pragma clang diagnostic ignored "-Wformat-nonliteral" #endif int PlatformSpecificVSNprintf(char *str, size_t size, const char* format, va_list args) { return vsnprintf( str, size, format, args); } char PlatformSpecificToLower(char c) { return (char) tolower((char) c); } PlatformSpecificFile PlatformSpecificFOpen(const char* filename, const char* flag) { return fopen(filename, flag); } void PlatformSpecificFPuts(const char* str, PlatformSpecificFile file) { fputs(str, (FILE*)file); } void PlatformSpecificFClose(PlatformSpecificFile file) { fclose((FILE*)file); } void PlatformSpecificFlush() { fflush(stdout); } int PlatformSpecificPutchar(int c) { return putchar(c); } void* PlatformSpecificMalloc(size_t size) { return malloc(size); } void* PlatformSpecificRealloc (void* memory, size_t size) { return realloc(memory, size); } void PlatformSpecificFree(void* memory) { free(memory); } void* PlatformSpecificMemCpy(void* s1, const void* s2, size_t size) { return memcpy(s1, s2, size); } void* PlatformSpecificMemset(void* mem, int c, size_t size) { return memset(mem, c, size); } double PlatformSpecificFabs(double d) { return fabs(d); } int PlatformSpecificIsNan(double d) { return isnan((float)d); } } cpputest-3.4/src/Platforms/GccNoStdC/0000755000175300017530000000000012143642714014547 500000000000000cpputest-3.4/src/Platforms/GccNoStdC/UtestPlatform.cpp0000644000175300017530000001312412023251675020004 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" #undef malloc #undef free #undef calloc #undef realloc #include "CppUTest/TestRegistry.h" #include "CppUTest/PlatformSpecificFunctions.h" int PlatformSpecificSetJmp(void (*function) (void* data), void* data) { (void) data; (void) function; /* To be implemented */ return 0; } void PlatformSpecificLongJmp() { /* To be implemented */ } void PlatformSpecificRestoreJumpBuffer() { /* To be implemented */ } void PlatformSpecificRunTestInASeperateProcess(UtestShell* shell, TestPlugin* plugin, TestResult* result) { (void) shell; (void) plugin; (void) result; /* To be implemented */ } long GetPlatformSpecificTimeInMillis() { /* To be implemented */ return 0; } void SetPlatformSpecificTimeInMillisMethod(long (*platformSpecific) ()) { (void) platformSpecific; } TestOutput::WorkingEnvironment PlatformSpecificGetWorkingEnvironment() { return TestOutput::eclipse; } ///////////// Time in String const char* GetPlatformSpecificTimeString() { /* To be implemented */ return NULL; } void SetPlatformSpecificTimeStringMethod(const char* (*platformMethod) ()) { /* To be implemented */ (void) platformMethod; } int PlatformSpecificAtoI(const char*str) { /* To be implemented */ (void) str; return 0; } size_t PlatformSpecificStrLen(const char* str) { /* To be implemented */ (void) str; return 0; } char* PlatformSpecificStrCat(char* s1, const char* s2) { /* To be implemented */ (void) s1; (void) s2; return NULL; } char* PlatformSpecificStrCpy(char* s1, const char* s2) { /* To be implemented */ (void) s1; (void) s2; return NULL; } char* PlatformSpecificStrNCpy(char* s1, const char* s2, size_t size) { /* To be implemented */ (void) s1; (void) s2; (void) size; return NULL; } int PlatformSpecificStrCmp(const char* s1, const char* s2) { /* To be implemented */ (void) s1; (void) s2; return 0; } int PlatformSpecificStrNCmp(const char* s1, const char* s2, size_t size) { /* To be implemented */ (void) s1; (void) s2; (void) size; return 0; } char* PlatformSpecificStrStr(const char* s1, const char* s2) { /* To be implemented */ (void) s1; (void) s2; return NULL; } int PlatformSpecificVSNprintf(char *str, size_t size, const char* format, va_list args) { /* To be implemented */ (void) size; (void) args; (void) format; (void) args; (void) str; return 0; } char PlatformSpecificToLower(char c) { /* To be implemented */ (void) c; return 0; } PlatformSpecificFile PlatformSpecificFOpen(const char* filename, const char* flag) { /* To be implemented */ (void) filename; (void) flag; return NULL; } void PlatformSpecificFPuts(const char* str, PlatformSpecificFile file) { /* To be implemented */ (void) str; (void) file; } void PlatformSpecificFClose(PlatformSpecificFile file) { /* To be implemented */ (void) file; } void PlatformSpecificFlush() { /* To be implemented */ } int PlatformSpecificPutchar(int c) { /* To be implemented */ (void) c; return 0; } void* PlatformSpecificMalloc(size_t size) { /* To be implemented */ (void) size; return NULL; } void* PlatformSpecificRealloc (void* memory, size_t size) { /* To be implemented */ (void) memory; (void) size; return NULL; } void PlatformSpecificFree(void* memory) { /* To be implemented */ (void) memory; } void* PlatformSpecificMemCpy(void* s1, const void* s2, size_t size) { /* To be implemented */ (void) size; (void) s1; (void) s2; return NULL; } void* PlatformSpecificMemset(void* mem, int c, size_t size) { /* To be implemented */ (void) mem; (void) c; (void) size; return NULL; } double PlatformSpecificFabs(double d) { /* To be implemented */ (void) d; return 0.0; } int PlatformSpecificIsNan(double d) { /* To be implemented */ (void) d; return 0; } void* malloc(size_t) { return NULL; } void free(void *) { } cpputest-3.4/src/Platforms/Iar/0000755000175300017530000000000012143642714013513 500000000000000cpputest-3.4/src/Platforms/Iar/UtestPlatform.cpp0000644000175300017530000001301212023251675016744 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include #include #include #include #include #include #include #include #include "CppUTest/TestHarness.h" #undef malloc #undef calloc #undef realloc #undef free #include "CppUTest/TestRegistry.h" #include "CppUTest/PlatformSpecificFunctions.h" static jmp_buf test_exit_jmp_buf[10]; static int jmp_buf_index = 0; int PlatformSpecificSetJmp(void (*function) (void* data), void* data) { if (0 == setjmp(test_exit_jmp_buf[jmp_buf_index])) { jmp_buf_index++; function(data); jmp_buf_index--; return 1; } return 0; } void PlatformSpecificLongJmp() { jmp_buf_index--; longjmp(test_exit_jmp_buf[jmp_buf_index], 1); } void PlatformSpecificRestoreJumpBuffer() { jmp_buf_index--; } void PlatformSpecificRunTestInASeperateProcess(UtestShell* shell, TestPlugin* plugin, TestResult* result) { printf("-p doesn't work on this platform as it is not implemented. Running inside the process\b"); shell->runOneTest(plugin, *result); } TestOutput::WorkingEnvironment PlatformSpecificGetWorkingEnvironment() { return TestOutput::eclipse; } ///////////// Time in millis static long TimeInMillisImplementation() { clock_t t = clock(); t = t * 10; return 1; } static long (*timeInMillisFp) () = TimeInMillisImplementation; long GetPlatformSpecificTimeInMillis() { return timeInMillisFp(); } void SetPlatformSpecificTimeInMillisMethod(long (*platformSpecific) ()) { timeInMillisFp = (platformSpecific == 0) ? TimeInMillisImplementation : platformSpecific; } ///////////// Time in String static const char* TimeStringImplementation() { time_t tm = time(NULL); return ctime(&tm); } static const char* (*timeStringFp) () = TimeStringImplementation; const char* GetPlatformSpecificTimeString() { return timeStringFp(); } void SetPlatformSpecificTimeStringMethod(const char* (*platformMethod) ()) { timeStringFp = (platformMethod == 0) ? TimeStringImplementation : platformMethod; } int PlatformSpecificAtoI(const char*str) { return atoi(str); } size_t PlatformSpecificStrLen(const char* str) { return strlen(str); } char* PlatformSpecificStrCat(char* s1, const char* s2) { return strcat(s1, s2); } char* PlatformSpecificStrCpy(char* s1, const char* s2) { return strcpy(s1, s2); } char* PlatformSpecificStrNCpy(char* s1, const char* s2, size_t size) { return strncpy(s1, s2, size); } int PlatformSpecificStrCmp(const char* s1, const char* s2) { return strcmp(s1, s2); } int PlatformSpecificStrNCmp(const char* s1, const char* s2, size_t size) { return strncmp(s1, s2, size); } char* PlatformSpecificStrStr(const char* s1, const char* s2) { return strstr((char*)s1, (char*)s2); } int PlatformSpecificVSNprintf(char *str, size_t size, const char* format, va_list args) { return vsnprintf( str, size, format, args); } char PlatformSpecificToLower(char c) { return tolower(c); } PlatformSpecificFile PlatformSpecificFOpen(const char* filename, const char* flag) { return 0; } void PlatformSpecificFPuts(const char* str, PlatformSpecificFile file) { } void PlatformSpecificFClose(PlatformSpecificFile file) { } void PlatformSpecificFlush() { } int PlatformSpecificPutchar(int c) { return putchar(c); } void* PlatformSpecificMalloc(size_t size) { return malloc(size); } void* PlatformSpecificRealloc (void* memory, size_t size) { return realloc(memory, size); } void PlatformSpecificFree(void* memory) { free(memory); } void* PlatformSpecificMemCpy(void* s1, const void* s2, size_t size) { return memcpy(s1, s2, size); } void* PlatformSpecificMemset(void* mem, int c, size_t size) { return memset(mem, c, size); } double PlatformSpecificFabs(double d) { return fabs(d); } int PlatformSpecificIsNan(double d) { return isnan(d); } cpputest-3.4/src/Platforms/StarterKit/0000755000175300017530000000000012143642714015074 500000000000000cpputest-3.4/src/Platforms/StarterKit/StarterMemoryLeakWarning.cpp0000644000175300017530000001505012023251675022460 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/MemoryLeakWarning.h" #include #include /* Static since we REALLY can have only one of these! */ static int allocatedBlocks = 0; static int allocatedArrays = 0; static int firstInitialBlocks = 0; static int firstInitialArrays = 0; static bool reporterRegistered = false; class MemoryLeakWarningData { public: MemoryLeakWarningData(); int initialBlocksUsed; int initialArraysUsed; int blockUsageCheckPoint; int arrayUsageCheckPoint; int expectCount; char message[100]; }; void MemoryLeakWarning::CreateData() { _impl = (MemoryLeakWarningData*) malloc(sizeof(MemoryLeakWarningData)); _impl->initialBlocksUsed = 0; _impl->initialArraysUsed = 0; _impl->blockUsageCheckPoint = 0; _impl->arrayUsageCheckPoint = 0; _impl->expectCount = 0; _impl->message_[0] = '\0'; } void MemoryLeakWarning::DestroyData() { free(_impl); } extern "C" { void reportMemoryBallance(); } void reportMemoryBallance() { int blockBalance = allocatedBlocks - firstInitialBlocks; int arrayBalance = allocatedArrays - firstInitialArrays; if (blockBalance == 0 && arrayBalance == 0) ; else if (blockBalance + arrayBalance == 0) printf("No leaks but some arrays were deleted without []\n"); else { if (blockBalance > 0) printf("Memory leak! %d blocks not deleted\n", blockBalance); if (arrayBalance > 0) printf("Memory leak! %d arrays not deleted\n", arrayBalance); if (blockBalance < 0) printf("More blocks deleted than newed! %d extra deletes\n", blockBalance); if (arrayBalance < 0) printf("More arrays deleted than newed! %d extra deletes\n", arrayBalance); printf("NOTE - some memory leaks appear to be allocated statics that are not released\n" " - by the standard library\n" " - Use the -r switch on your unit tests to repeat the test sequence\n" " - If no leaks are reported on the second pass, it is likely a static\n" " - that is not released\n"); } } MemoryLeakWarning* MemoryLeakWarning::_latest = NULL; MemoryLeakWarning::MemoryLeakWarning() { _latest = this; CreateData(); } MemoryLeakWarning::~MemoryLeakWarning() { DestroyData(); } MemoryLeakWarning* MemoryLeakWarning::GetLatest() { return _latest; } void MemoryLeakWarning::SetLatest(MemoryLeakWarning* latest) { _latest = latest; } void MemoryLeakWarning::Enable() { _impl->initialBlocksUsed = allocatedBlocks; _impl->initialArraysUsed = allocatedArrays; if (!reporterRegistered) { firstInitialBlocks = allocatedBlocks; firstInitialArrays = allocatedArrays; reporterRegistered = true; } } const char* MemoryLeakWarning::FinalReport(int toBeDeletedLeaks) { if (_impl->initialBlocksUsed != (allocatedBlocks-toBeDeletedLeaks) || _impl->initialArraysUsed != allocatedArrays ) { printf("initial blocks=%d, allocated blocks=%d\ninitial arrays=%d, allocated arrays=%d\n", _impl->initialBlocksUsed, allocatedBlocks, _impl->initialArraysUsed, allocatedArrays); return "Memory new/delete imbalance after running tests\n"; } else return ""; } void MemoryLeakWarning::CheckPointUsage() { _impl->blockUsageCheckPoint = allocatedBlocks; _impl->arrayUsageCheckPoint = allocatedArrays; } bool MemoryLeakWarning::UsageIsNotBalanced() { int arrayBalance = allocatedArrays - _impl->arrayUsageCheckPoint; int blockBalance = allocatedBlocks - _impl->blockUsageCheckPoint; if (_impl->expectCount != 0 && blockBalance + arrayBalance == _impl->expectCount) return false; if (blockBalance == 0 && arrayBalance == 0) return false; else if (blockBalance + arrayBalance == 0) sprintf(_impl->message_, "No leaks but some arrays were deleted without []\n"); else { int nchars = 0; if (_impl->blockUsageCheckPoint != allocatedBlocks) nchars = sprintf(_impl->message_, "this test leaks %d blocks", allocatedBlocks - _impl->blockUsageCheckPoint); if (_impl->arrayUsageCheckPoint != allocatedArrays) sprintf(_impl->message_ + nchars, "this test leaks %d arrays", allocatedArrays - _impl->arrayUsageCheckPoint); } return true; } const char* MemoryLeakWarning::Message() { return _impl->message_; } void MemoryLeakWarning::ExpectLeaks(int n) { _impl->expectCount = n; } /* Global overloaded operators */ void* operator new(size_t size) { allocatedBlocks++; return malloc(size); } void operator delete(void* mem) { allocatedBlocks--; free(mem); } void* operator new[](size_t size) { allocatedArrays++; return malloc(size); } void operator delete[](void* mem) { allocatedArrays--; free(mem); } void* operator new(size_t size, const char* file, int line) { allocatedBlocks++; return malloc(size); } cpputest-3.4/src/Platforms/StarterKit/UtestPlatform.cpp0000644000175300017530000000324712023251675020336 00000000000000 #include "CppUTest/TestHarness.h" #include "CppUTest/TestResult.h" #include #include void executePlatformSpecificTestBody(Utest* test) { test->testBody(); } ///////////// Time in millis static long TimeInMillisImplementation() { struct timeval tv; struct timezone tz; ::gettimeofday(&tv, &tz); return (tv.tv_sec * 1000) + (long)(tv.tv_usec * 0.001); } static long (*timeInMillisFp) () = TimeInMillisImplementation; long GetPlatformSpecificTimeInMillis() { return timeInMillisFp(); } void SetPlatformSpecificTimeInMillisMethod(long (*platformSpecific) ()) { timeInMillisFp = (platformSpecific == 0) ? TimeInMillisImplementation : platformSpecific; } ///////////// Time in String static SimpleString TimeStringImplementation() { time_t tm = time(NULL); return ctime(&tm); } static SimpleString (*timeStringFp) () = TimeStringImplementation; SimpleString GetPlatformSpecificTimeString() { return timeStringFp(); } void SetPlatformSpecificTimeStringMethod(SimpleString (*platformMethod) ()) { timeStringFp = (platformMethod == 0) ? TimeStringImplementation : platformMethod; } ///////////// Run one test with exit on first error, using setjmp/longjmp #include static jmp_buf test_exit_jmp_buf; void TestRegistry::platformSpecificRunOneTest(Utest* test, TestResult& result) { if (0 == setjmp(test_exit_jmp_buf)) runOneTest(test, result) ; } void PlatformSpecificExitCurrentTestImpl() { longjmp(test_exit_jmp_buf, 1); } void FakePlatformSpecificExitCurrentTest() { } void (*PlatformSpecificExitCurrentTest)() = PlatformSpecificExitCurrentTestImpl; cpputest-3.4/src/Platforms/Symbian/0000755000175300017530000000000012143642714014402 500000000000000cpputest-3.4/src/Platforms/Symbian/README_Symbian.txt0000644000175300017530000000250512143637532017506 00000000000000CppUTest on Symbian Compliling To compile CppUTest you need to have Symbian Posix libraries installed. On S60 it's recommended to use S60 Open C. On other platforms one can use Symbian PIPS. Compiling is in standard way, by issuing from command line commands bldmake bldfiles && abld build in build-directory. You can also import the project's bld.inf file into Carbide in normal way. Writing tests CppUTest exports the needed header files into \epoc32\include\CppUTest -directory. Add the directory to the include-path of the test project. One needs to include TestHarness.h file into test source file. The test project must link against cpputest.lib using STATICLIBRARY statement in MMP-file. CppUTest depends also on standard C-library so the tests must be linked against libc as well. The entry point file of the tests is normally the following: #include #include // This is a GCCE toolchain workaround needed when compiling with GCCE // and using main() entry point #ifdef __GCCE__ #include #endif int main(int argc, char** argv) { CommandLineTestRunner::RunAllTests(argc, argv); } The test must be statically linked against libcrt0.lib if standard main (not E32Main) is used as above. For the further example, please consult alltests.mmp in build directory. cpputest-3.4/src/Platforms/Symbian/SymbianMemoryLeakWarning.cpp0000644000175300017530000000712612023251675021751 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning, Bas Vodde and Timo Puronen * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "MemoryLeakWarning.h" #include MemoryLeakWarning* MemoryLeakWarning::_latest = NULL; // naming convention due to CppUTest generic class name class MemoryLeakWarningData : public CBase { public: TInt iInitialAllocCells; TInt iExpectedLeaks; TInt iInitialThreadHandleCount; TInt iInitialProcessHandleCount; }; MemoryLeakWarning::MemoryLeakWarning() { _latest = this; CreateData(); } MemoryLeakWarning::~MemoryLeakWarning() { DestroyData(); } void MemoryLeakWarning::Enable() { } const char* MemoryLeakWarning::FinalReport(int toBeDeletedLeaks) { TInt cellDifference(User::CountAllocCells() - _impl->iInitialAllocCells); if( cellDifference != toBeDeletedLeaks ) { return "Heap imbalance after test\n"; } TInt processHandles; TInt threadHandles; RThread().HandleCount(processHandles, threadHandles); if(_impl->iInitialProcessHandleCount != processHandles || _impl->iInitialThreadHandleCount != threadHandles) { return "Handle count imbalance after test\n"; } return ""; } void MemoryLeakWarning::CheckPointUsage() { _impl->iInitialAllocCells = User::CountAllocCells(); RThread().HandleCount(_impl->iInitialProcessHandleCount, _impl->iInitialThreadHandleCount); } bool MemoryLeakWarning::UsageIsNotBalanced() { TInt allocatedCells(User::CountAllocCells()); if(_impl->iExpectedLeaks != 0) { TInt difference(Abs(_impl->iInitialAllocCells - allocatedCells)); return difference != _impl->iExpectedLeaks; } return allocatedCells != _impl->iInitialAllocCells; } const char* MemoryLeakWarning::Message() { return ""; } void MemoryLeakWarning::ExpectLeaks(int n) { _impl->iExpectedLeaks = n; } // this method leaves (no naming convention followed due to CppUTest framework void MemoryLeakWarning::CreateData() { _impl = new(ELeave) MemoryLeakWarningData(); } void MemoryLeakWarning::DestroyData() { delete _impl; _impl = NULL; } MemoryLeakWarning* MemoryLeakWarning::GetLatest() { return _latest; } void MemoryLeakWarning::SetLatest(MemoryLeakWarning* latest) { _latest = latest; } cpputest-3.4/src/Platforms/Symbian/UtestPlatform.cpp0000644000175300017530000001274212023251675017644 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning, Bas Vodde and Timo Puronen * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" #include #include #include #include #include #include #include #include #include "CppUTest/PlatformSpecificFunctions.h" static jmp_buf test_exit_jmp_buf[10]; static int jmp_buf_index = 0; int PlatformSpecificSetJmp(void (*function) (void* data), void* data) { if (0 == setjmp(test_exit_jmp_buf[jmp_buf_index])) { jmp_buf_index++; function(data); jmp_buf_index--; return 1; } return 0; } void PlatformSpecificLongJmp() { jmp_buf_index--; longjmp(test_exit_jmp_buf[jmp_buf_index], 1); } void PlatformSpecificRestoreJumpBuffer() { jmp_buf_index--; } void PlatformSpecificRunTestInASeperateProcess(UtestShell* shell, TestPlugin* plugin, TestResult* result) { printf("-p doesn't work on this platform as it is not implemented. Running inside the process\b"); shell->runOneTest(plugin, *result); } static long TimeInMillisImplementation() { struct timeval tv; struct timezone tz; ::gettimeofday(&tv, &tz); return (tv.tv_sec * 1000) + (long)(tv.tv_usec * 0.001); } static long (*timeInMillisFp) () = TimeInMillisImplementation; long GetPlatformSpecificTimeInMillis() { return timeInMillisFp(); } void SetPlatformSpecificTimeInMillisMethod(long (*platformSpecific) ()) { timeInMillisFp = (platformSpecific == 0) ? TimeInMillisImplementation : platformSpecific; } TestOutput::WorkingEnvironment PlatformSpecificGetWorkingEnvironment() { return TestOutput::eclipse; } ///////////// Time in String static SimpleString TimeStringImplementation() { time_t tm = time(NULL); return ctime(&tm); } static SimpleString (*timeStringFp) () = TimeStringImplementation; SimpleString GetPlatformSpecificTimeString() { return timeStringFp(); } void SetPlatformSpecificTimeStringMethod(SimpleString (*platformMethod) ()) { timeStringFp = (platformMethod == 0) ? TimeStringImplementation : platformMethod; } int PlatformSpecificVSNprintf(char* str, size_t size, const char* format, va_list args) { return vsnprintf(str, size, format, args); } char PlatformSpecificToLower(char c) { return tolower(c); } void PlatformSpecificFlush() { fflush(stdout); } int PlatformSpecificPutchar(int c) { return putchar(c); } char* PlatformSpecificStrCpy(char* s1, const char* s2) { return strcpy(s1, s2); } size_t PlatformSpecificStrLen(const char* s) { return strlen(s); } char* PlatformSpecificStrStr(const char* s1, const char* s2) { return strstr(s1, s2); } int PlatformSpecificStrCmp(const char* s1, const char* s2) { return strcmp(s1, s2); } char* PlatformSpecificStrNCpy(char* s1, const char* s2, size_t size) { return strncpy(s1, s2, size); } int PlatformSpecificStrNCmp(const char* s1, const char* s2, size_t size) { return strncmp(s1, s2, size); } char* PlatformSpecificStrCat(char* s1, const char* s2) { return strcat(s1, s2); } double PlatformSpecificFabs(double d) { return fabs(d); } void* PlatformSpecificMalloc(size_t size) { return malloc(size); } void* PlatformSpecificRealloc (void* memory, size_t size) { return realloc(memory, size); } void PlatformSpecificFree(void* memory) { free(memory); } void* PlatformSpecificMemCpy(void* s1, const void* s2, size_t size) { return memcpy(s1, s2, size); } void* PlatformSpecificMemset(void* mem, int c, size_t size) { return memset(mem, c, size); } PlatformSpecificFile PlatformSpecificFOpen(const char* filename, const char* flag) { return fopen(filename, flag); } void PlatformSpecificFPuts(const char* str, PlatformSpecificFile file) { fputs(str, (FILE*)file); } void PlatformSpecificFClose(PlatformSpecificFile file) { fclose((FILE*)file); } int PlatformSpecificAtoI(const char*str) { return atoi(str); } cpputest-3.4/src/Platforms/VisualCpp/0000755000175300017530000000000012143642714014706 500000000000000cpputest-3.4/src/Platforms/VisualCpp/UtestPlatform.cpp0000644000175300017530000001101712023251675020142 00000000000000#include "Platform.h" #include #include "CppUTest/TestHarness.h" #undef malloc #undef free #undef calloc #undef realloc #include "CppUTest/TestRegistry.h" #include #include #include #include #include #include #include "CppUTest/PlatformSpecificFunctions.h" #include #include #include static jmp_buf test_exit_jmp_buf[10]; static int jmp_buf_index = 0; int PlatformSpecificSetJmp(void (*function) (void* data), void* data) { if (0 == setjmp(test_exit_jmp_buf[jmp_buf_index])) { jmp_buf_index++; function(data); jmp_buf_index--; return 1; } return 0; } void PlatformSpecificLongJmp() { jmp_buf_index--; longjmp(test_exit_jmp_buf[jmp_buf_index], 1); } void PlatformSpecificRestoreJumpBuffer() { jmp_buf_index--; } void PlatformSpecificRunTestInASeperateProcess(UtestShell* shell, TestPlugin* plugin, TestResult* result) { printf("-p doesn't work on this platform as it is not implemented. Running inside the process\b"); shell->runOneTest(plugin, *result); } TestOutput::WorkingEnvironment PlatformSpecificGetWorkingEnvironment() { return TestOutput::vistualStudio; } ///////////// Time in millis static long TimeInMillisImplementation() { return timeGetTime()/1000; } static long (*timeInMillisFp) () = TimeInMillisImplementation; long GetPlatformSpecificTimeInMillis() { return timeInMillisFp(); } void SetPlatformSpecificTimeInMillisMethod(long (*platformSpecific) ()) { timeInMillisFp = (platformSpecific == 0) ? TimeInMillisImplementation : platformSpecific; } ///////////// Time in String static const char* TimeStringImplementation() { return "Windows time needs work"; } static const char* (*timeStringFp) () = TimeStringImplementation; const char* GetPlatformSpecificTimeString() { return timeStringFp(); } void SetPlatformSpecificTimeStringMethod(const char* (*platformMethod) ()) { timeStringFp = (platformMethod == 0) ? TimeStringImplementation : platformMethod; } ////// taken from gcc int PlatformSpecificAtoI(const char*str) { return atoi(str); } size_t PlatformSpecificStrLen(const char* str) { return strlen(str); } char* PlatformSpecificStrCat(char* s1, const char* s2) { return strcat(s1, s2); } char* PlatformSpecificStrCpy(char* s1, const char* s2) { return strcpy(s1, s2); } char* PlatformSpecificStrNCpy(char* s1, const char* s2, size_t size) { return strncpy(s1, s2, size); } int PlatformSpecificStrCmp(const char* s1, const char* s2) { return strcmp(s1, s2); } int PlatformSpecificStrNCmp(const char* s1, const char* s2, size_t size) { return strncmp(s1, s2, size); } char* PlatformSpecificStrStr(const char* s1, const char* s2) { return (char*) strstr(s1, s2); } int PlatformSpecificVSNprintf(char *str, size_t size, const char* format, va_list args) { char* buf = 0; int sizeGuess = size; int result = _vsnprintf( str, size, format, args); str[size-1] = 0; while (result == -1) { if (buf != 0) free(buf); sizeGuess += 10; buf = (char*)malloc(sizeGuess); result = _vsnprintf( buf, sizeGuess, format, args); } if (buf != 0) free(buf); return result; } PlatformSpecificFile PlatformSpecificFOpen(const char* filename, const char* flag) { return fopen(filename, flag); } void PlatformSpecificFPuts(const char* str, PlatformSpecificFile file) { fputs(str, (FILE*)file); } void PlatformSpecificFClose(PlatformSpecificFile file) { fclose((FILE*)file); } void PlatformSpecificFlush() { fflush(stdout); } int PlatformSpecificPutchar(int c) { return putchar(c); } void* PlatformSpecificMalloc(size_t size) { return malloc(size); } void* PlatformSpecificRealloc (void* memory, size_t size) { return realloc(memory, size); } void PlatformSpecificFree(void* memory) { free(memory); } void* PlatformSpecificMemCpy(void* s1, const void* s2, size_t size) { return memcpy(s1, s2, size); } void* PlatformSpecificMemset(void* mem, int c, size_t size) { return memset(mem, c, size); } double PlatformSpecificFabs(double d) { return fabs(d); } int PlatformSpecificIsNan(double d) { return _isnan(d); } int PlatformSpecificVSNprintf(char *str, unsigned int size, const char* format, void* args) { return _vsnprintf( str, size, format, (va_list) args); } char PlatformSpecificToLower(char c) { return tolower(c); } cpputest-3.4/tests/0000755000175300017530000000000012143642714011404 500000000000000cpputest-3.4/tests/CppUTestExt/0000755000175300017530000000000012143642714013574 500000000000000cpputest-3.4/tests/CppUTestExt/AllTests.cpp0000644000175300017530000000430412023251675015753 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/CommandLineTestRunner.h" #include "CppUTest/TestRegistry.h" #include "CppUTestExt/MemoryReporterPlugin.h" #include "CppUTestExt/MockSupportPlugin.h" #include "CppUTestExt/GTestConvertor.h" int main(int ac, const char** av) { #ifdef CPPUTEST_USE_REAL_GTEST GTestConvertor convertor; convertor.addAllGTestToTestRegistry(); #endif MemoryReporterPlugin plugin; MockSupportPlugin mockPlugin; TestRegistry::getCurrentRegistry()->installPlugin(&plugin); TestRegistry::getCurrentRegistry()->installPlugin(&mockPlugin); return CommandLineTestRunner::RunAllTests(ac, av); } cpputest-3.4/tests/CppUTestExt/TestMockActualFunctionCall.cpp0000644000175300017530000000722412023251675021411 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" #include "CppUTestExt/MockActualFunctionCall.h" #include "CppUTestExt/MockExpectedFunctionCall.h" #include "CppUTestExt/MockExpectedFunctionsList.h" #include "CppUTestExt/MockFailure.h" #include "TestMockFailure.h" TEST_GROUP(MockActualFunctionCall) { MockExpectedFunctionsList* emptyList; MockExpectedFunctionsList* list; MockFailureReporter* reporter; void setup() { emptyList = new MockExpectedFunctionsList; list = new MockExpectedFunctionsList; reporter = MockFailureReporterForTest::getReporter(); } void teardown() { CHECK_NO_MOCK_FAILURE(); delete emptyList; delete list; } }; TEST(MockActualFunctionCall, unExpectedCall) { MockActualFunctionCall actualCall(1, reporter, *emptyList); actualCall.withName("unexpected"); MockUnexpectedCallHappenedFailure expectedFailure(mockFailureTest(), "unexpected", *list); CHECK_EXPECTED_MOCK_FAILURE(expectedFailure); } TEST(MockActualFunctionCall, unExpectedParameterName) { MockExpectedFunctionCall call1; call1.withName("func"); list->addExpectedCall(&call1); MockActualFunctionCall actualCall(1, reporter, *list); actualCall.withName("func").withParameter("integer", 1); MockNamedValue parameter("integer"); parameter.setValue(1); MockUnexpectedParameterFailure expectedFailure(mockFailureTest(), "func", parameter, *list); CHECK_EXPECTED_MOCK_FAILURE(expectedFailure); } TEST(MockActualFunctionCall, multipleSameFunctionsExpectingAndHappenGradually) { MockExpectedFunctionCall* call1 = new MockExpectedFunctionCall(); MockExpectedFunctionCall* call2 = new MockExpectedFunctionCall(); call1->withName("func"); call2->withName("func"); list->addExpectedCall(call1); list->addExpectedCall(call2); MockActualFunctionCall actualCall1(1, reporter, *list); MockActualFunctionCall actualCall2(2, reporter, *list); LONGS_EQUAL(2, list->amountOfUnfulfilledExpectations()); actualCall1.withName("func"); LONGS_EQUAL(1, list->amountOfUnfulfilledExpectations()); actualCall2.withName("func"); LONGS_EQUAL(0, list->amountOfUnfulfilledExpectations()); list->deleteAllExpectationsAndClearList(); } cpputest-3.4/tests/CppUTestExt/TestMockSupport.cpp0000644000175300017530000007476312134163705017365 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" #include "CppUTestExt/MockSupport.h" #include "CppUTestExt/MockExpectedFunctionCall.h" #include "CppUTestExt/MockFailure.h" #include "TestMockFailure.h" TEST_GROUP(MockSupportTest) { MockExpectedFunctionsList *expectationsList; void setup() { mock().setMockFailureReporter(MockFailureReporterForTest::getReporter()); expectationsList = new MockExpectedFunctionsList; } void teardown() { mock().checkExpectations(); CHECK_NO_MOCK_FAILURE(); expectationsList->deleteAllExpectationsAndClearList(); delete expectationsList; mock().setMockFailureReporter(NULL); } MockExpectedFunctionCall* addFunctionToExpectationsList(const SimpleString& name) { MockExpectedFunctionCall* newCall = new MockExpectedFunctionCall; newCall->withName(name); expectationsList->addExpectedCall(newCall); return newCall; } MockExpectedFunctionCall* addFunctionToExpectationsList(const SimpleString& name, int order) { MockExpectedFunctionCall* newCall = new MockExpectedFunctionCall; newCall->withName(name); newCall->withCallOrder(order); expectationsList->addExpectedCall(newCall); return newCall; } }; TEST(MockSupportTest, clear) { mock().expectOneCall("func"); mock().clear(); CHECK(! mock().expectedCallsLeft()); } TEST(MockSupportTest, checkExpectationsDoesntFail) { mock().checkExpectations(); } TEST(MockSupportTest, checkExpectationsClearsTheExpectations) { addFunctionToExpectationsList("foobar"); MockExpectedCallsDidntHappenFailure expectedFailure(mockFailureTest(), *expectationsList); mock().expectOneCall("foobar"); mock().checkExpectations(); CHECK(! mock().expectedCallsLeft()); CHECK_EXPECTED_MOCK_FAILURE(expectedFailure); } TEST(MockSupportTest, exceptACallThatHappens) { mock().expectOneCall("func"); mock().actualCall("func"); CHECK(! mock().expectedCallsLeft()); } TEST(MockSupportTest, exceptACallInceasesExpectedCallsLeft) { mock().expectOneCall("func"); CHECK(mock().expectedCallsLeft()); mock().clear(); } TEST(MockSupportTest, unexpectedCallHappened) { MockUnexpectedCallHappenedFailure expectedFailure(mockFailureTest(), "func", *expectationsList); mock().actualCall("func"); CHECK_EXPECTED_MOCK_FAILURE(expectedFailure); } TEST(MockSupportTest, ignoreOtherCallsExceptForTheExpectedOne) { mock().expectOneCall("foo"); mock().ignoreOtherCalls(); mock().actualCall("bar").withParameter("foo", 1);; CHECK_NO_MOCK_FAILURE(); mock().clear(); } TEST(MockSupportTest, ignoreOtherCallsDoesntIgnoreMultipleCallsOfTheSameFunction) { mock().expectOneCall("foo"); mock().ignoreOtherCalls(); mock().actualCall("bar"); mock().actualCall("foo"); mock().actualCall("foo"); addFunctionToExpectationsList("foo")->callWasMade(1); MockUnexpectedCallHappenedFailure expectedFailure(mockFailureTest(), "foo", *expectationsList); CHECK_EXPECTED_MOCK_FAILURE(expectedFailure); } TEST(MockSupportTest, ignoreOtherStillFailsIfExpectedOneDidntHappen) { mock().expectOneCall("foo"); mock().ignoreOtherCalls(); mock().checkExpectations(); addFunctionToExpectationsList("foo"); MockExpectedCallsDidntHappenFailure expectedFailure(mockFailureTest(), *expectationsList); CHECK_EXPECTED_MOCK_FAILURE(expectedFailure); } TEST(MockSupportTest, expectMultipleCallsThatHappen) { mock().expectOneCall("foo"); mock().expectOneCall("foo"); mock().actualCall("foo"); mock().actualCall("foo"); mock().checkExpectations(); CHECK_NO_MOCK_FAILURE(); } TEST(MockSupportTest, strictOrderObserved) { mock().strictOrder(); mock().expectOneCall("foo1"); mock().expectOneCall("foo2"); mock().actualCall("foo1"); mock().actualCall("foo2"); mock().checkExpectations(); CHECK_NO_MOCK_FAILURE(); } TEST(MockSupportTest, someStrictOrderObserved) { mock().expectOneCall("foo3").withCallOrder(3); mock().expectOneCall("foo1"); mock().expectOneCall("foo2"); mock().actualCall("foo2"); mock().actualCall("foo1"); mock().actualCall("foo3"); mock().checkExpectations(); CHECK_NO_MOCK_FAILURE(); } TEST(MockSupportTest, strictOrderViolated) { mock().strictOrder(); addFunctionToExpectationsList("foo1", 1)->callWasMade(1); addFunctionToExpectationsList("foo1", 2)->callWasMade(3); addFunctionToExpectationsList("foo2", 3)->callWasMade(2); MockCallOrderFailure expectedFailure(mockFailureTest(), *expectationsList); mock().expectOneCall("foo1"); mock().expectOneCall("foo1"); mock().expectOneCall("foo2"); mock().actualCall("foo1"); mock().actualCall("foo2"); mock().actualCall("foo1"); mock().checkExpectations(); CHECK_EXPECTED_MOCK_FAILURE(expectedFailure); } TEST(MockSupportTest, strictOrderViolatedWithinAScope) { mock().strictOrder(); addFunctionToExpectationsList("foo1", 1)->callWasMade(2); addFunctionToExpectationsList("foo2", 2)->callWasMade(1); MockCallOrderFailure expectedFailure(mockFailureTest(), *expectationsList); mock("scope").expectOneCall("foo1"); mock("scope").expectOneCall("foo2"); mock("scope").actualCall("foo2"); mock("scope").actualCall("foo1"); mock("scope").checkExpectations(); CHECK_EXPECTED_MOCK_FAILURE(expectedFailure); } TEST(MockSupportTest, strictOrderNotViolatedWithTwoMocks) { mock("mock1").strictOrder(); mock("mock2").strictOrder(); mock("mock1").expectOneCall("foo1"); mock("mock2").expectOneCall("foo2"); mock("mock1").actualCall("foo1"); mock("mock2").actualCall("foo2"); mock("mock1").checkExpectations(); mock("mock2").checkExpectations(); CHECK_NO_MOCK_FAILURE(); } IGNORE_TEST(MockSupportTest, strictOrderViolatedWithTwoMocks) { //this test and scenario needs a decent failure message. mock("mock1").strictOrder(); mock("mock2").strictOrder(); mock("mock1").expectOneCall("foo1"); mock("mock2").expectOneCall("foo2"); mock("mock2").actualCall("foo2"); mock("mock1").actualCall("foo1"); mock("mock1").checkExpectations(); mock("mock2").checkExpectations(); CHECK_NO_MOCK_FAILURE(); } TEST(MockSupportTest, usingNCalls) { mock().strictOrder(); mock().expectOneCall("foo1"); mock().expectNCalls(2, "foo2"); mock().expectOneCall("foo1"); mock().actualCall("foo1"); mock().actualCall("foo2"); mock().actualCall("foo2"); mock().actualCall("foo1"); mock().checkExpectations(); CHECK_NO_MOCK_FAILURE(); } TEST(MockSupportTest, expectOneCallHoweverMultipleHappened) { addFunctionToExpectationsList("foo")->callWasMade(1); addFunctionToExpectationsList("foo")->callWasMade(2); MockUnexpectedCallHappenedFailure expectedFailure(mockFailureTest(), "foo", *expectationsList); mock().expectOneCall("foo"); mock().expectOneCall("foo"); mock().actualCall("foo"); mock().actualCall("foo"); mock().actualCall("foo"); CHECK_EXPECTED_MOCK_FAILURE(expectedFailure); } TEST(MockSupportTest, expectOneIntegerParameterAndValue) { mock().expectOneCall("foo").withParameter("parameter", 10); mock().actualCall("foo").withParameter("parameter", 10); mock().checkExpectations(); CHECK_NO_MOCK_FAILURE(); } TEST(MockSupportTest, expectOneDoubleParameterAndValue) { mock().expectOneCall("foo").withParameter("parameter", 1.0); mock().actualCall("foo").withParameter("parameter", 1.0); mock().checkExpectations(); CHECK_NO_MOCK_FAILURE(); } TEST(MockSupportTest, expectOneStringParameterAndValue) { mock().expectOneCall("foo").withParameter("parameter", "string"); mock().actualCall("foo").withParameter("parameter", "string"); mock().checkExpectations(); CHECK_NO_MOCK_FAILURE(); } TEST(MockSupportTest, expectOnePointerParameterAndValue) { mock().expectOneCall("foo").withParameter("parameter", (void*) 0x01); mock().actualCall("foo").withParameter("parameter", (void*) 0x01); mock().checkExpectations(); CHECK_NO_MOCK_FAILURE(); } TEST(MockSupportTest, expectOneStringParameterAndValueFails) { MockNamedValue parameter("parameter"); parameter.setValue("different"); addFunctionToExpectationsList("foo")->withParameter("parameter", "string"); MockUnexpectedParameterFailure expectedFailure(mockFailureTest(), "foo", parameter, *expectationsList); mock().expectOneCall("foo").withParameter("parameter", "string"); mock().actualCall("foo").withParameter("parameter", "different"); CHECK_EXPECTED_MOCK_FAILURE(expectedFailure); } TEST(MockSupportTest, expectOneIntegerParameterAndFailsDueToParameterName) { MockNamedValue parameter("different"); parameter.setValue(10); addFunctionToExpectationsList("foo")->withParameter("parameter", 10); MockUnexpectedParameterFailure expectedFailure(mockFailureTest(), "foo", parameter, *expectationsList); mock().expectOneCall("foo").withParameter("parameter", 10); mock().actualCall("foo").withParameter("different", 10); CHECK_EXPECTED_MOCK_FAILURE(expectedFailure); } TEST(MockSupportTest, expectOneIntegerParameterAndFailsDueToValue) { MockNamedValue parameter("parameter"); parameter.setValue(8); addFunctionToExpectationsList("foo")->withParameter("parameter", 10); MockUnexpectedParameterFailure expectedFailure(mockFailureTest(), "foo", parameter, *expectationsList); mock().expectOneCall("foo").withParameter("parameter", 10); mock().actualCall("foo").withParameter("parameter", 8); CHECK_EXPECTED_MOCK_FAILURE(expectedFailure); } TEST(MockSupportTest, expectOneIntegerParameterAndFailsDueToTypes) { MockNamedValue parameter("parameter"); parameter.setValue("heh"); addFunctionToExpectationsList("foo")->withParameter("parameter", 10); MockUnexpectedParameterFailure expectedFailure(mockFailureTest(), "foo", parameter, *expectationsList); mock().expectOneCall("foo").withParameter("parameter", 10); mock().actualCall("foo").withParameter("parameter", "heh"); CHECK_EXPECTED_MOCK_FAILURE(expectedFailure); } TEST(MockSupportTest, expectMultipleCallsWithDifferentParametersThatHappenOutOfOrder) { mock().expectOneCall("foo").withParameter("p1", 1); mock().expectOneCall("foo").withParameter("p1", 2); mock().actualCall("foo").withParameter("p1", 2); mock().actualCall("foo").withParameter("p1", 1); mock().checkExpectations(); CHECK_NO_MOCK_FAILURE(); } TEST(MockSupportTest, expectMultipleCallsWithMultipleDifferentParametersThatHappenOutOfOrder) { mock().expectOneCall("foo").withParameter("p1", 1).withParameter("p2", 2); mock().expectOneCall("foo").withParameter("p1", 1).withParameter("p2", 20); mock().actualCall("foo").withParameter("p1", 1).withParameter("p2", 20); mock().actualCall("foo").withParameter("p1", 1).withParameter("p2", 2); mock().checkExpectations(); CHECK_NO_MOCK_FAILURE(); } TEST(MockSupportTest, twiceCalledWithSameParameters) { mock().expectOneCall("foo").withParameter("p1", 1).withParameter("p2", 2); mock().expectOneCall("foo").withParameter("p1", 1).withParameter("p2", 2); mock().actualCall("foo").withParameter("p1", 1).withParameter("p2", 2); mock().actualCall("foo").withParameter("p1", 1).withParameter("p2", 2); mock().checkExpectations(); CHECK_NO_MOCK_FAILURE(); } TEST(MockSupportTest, calledWithoutParameters) { addFunctionToExpectationsList("foo")->withParameter("p1", 1); MockExpectedParameterDidntHappenFailure expectedFailure(mockFailureTest(), "foo", *expectationsList); mock().expectOneCall("foo").withParameter("p1", 1); mock().actualCall("foo"); mock().checkExpectations(); CHECK_EXPECTED_MOCK_FAILURE(expectedFailure); } TEST(MockSupportTest, ignoreOtherParameters) { mock().expectOneCall("foo").withParameter("p1", 1).ignoreOtherParameters(); mock().actualCall("foo").withParameter("p1", 1).withParameter("p2", 2); mock().checkExpectations(); CHECK_NO_MOCK_FAILURE(); } TEST(MockSupportTest, ignoreOtherParametersButStillPassAll) { mock().expectOneCall("foo").withParameter("p1", 1).ignoreOtherParameters(); mock().actualCall("foo").withParameter("p1", 1); mock().checkExpectations(); CHECK_NO_MOCK_FAILURE(); } TEST(MockSupportTest, ignoreOtherParametersButExpectedParameterDidntHappen) { addFunctionToExpectationsList("foo")->withParameter("p1", 1).ignoreOtherParameters(); MockExpectedParameterDidntHappenFailure expectedFailure(mockFailureTest(), "foo", *expectationsList); mock().expectOneCall("foo").withParameter("p1", 1).ignoreOtherParameters(); mock().actualCall("foo").withParameter("p2", 2).withParameter("p3", 3).withParameter("p4", 4); mock().checkExpectations(); CHECK_EXPECTED_MOCK_FAILURE(expectedFailure); } TEST(MockSupportTest, ignoreOtherParametersMultipleCalls) { mock().expectOneCall("foo").ignoreOtherParameters(); mock().expectOneCall("foo").ignoreOtherParameters(); mock().actualCall("foo").withParameter("p2", 2).withParameter("p3", 3).withParameter("p4", 4); LONGS_EQUAL(1, mock().expectedCallsLeft()); mock().actualCall("foo").withParameter("p2", 2).withParameter("p3", 3).withParameter("p4", 4); mock().checkExpectations(); CHECK_NO_MOCK_FAILURE(); } TEST(MockSupportTest, ignoreOtherParametersMultipleCallsButOneDidntHappen) { MockExpectedFunctionCall* call = addFunctionToExpectationsList("boo"); call->ignoreOtherParameters(); call->callWasMade(1); call->parametersWereIgnored(); call->ignoreOtherParameters(); addFunctionToExpectationsList("boo")->ignoreOtherParameters(); mock().expectOneCall("boo").ignoreOtherParameters(); mock().expectOneCall("boo").ignoreOtherParameters(); mock().actualCall("boo"); mock().checkExpectations(); MockExpectedCallsDidntHappenFailure expectedFailure(mockFailureTest(), *expectationsList); CHECK_EXPECTED_MOCK_FAILURE(expectedFailure); } TEST(MockSupportTest, newCallStartsWhileNotAllParametersWerePassed) { addFunctionToExpectationsList("foo")->withParameter("p1", 1); MockExpectedParameterDidntHappenFailure expectedFailure(mockFailureTest(), "foo", *expectationsList); mock().expectOneCall("foo").withParameter("p1", 1); mock().actualCall("foo"); mock().actualCall("foo").withParameter("p1", 1);; CHECK_EXPECTED_MOCK_FAILURE(expectedFailure); } TEST(MockSupportTest, threeExpectedAndActual) { mock().expectOneCall("function1"); mock().expectOneCall("function2"); mock().expectOneCall("function3"); mock().actualCall("function1"); mock().actualCall("function2"); mock().actualCall("function3"); mock().checkExpectations(); CHECK_NO_MOCK_FAILURE(); } class MyTypeForTesting { public: MyTypeForTesting(int val) : value(val){} int value; }; class MyTypeForTestingComparator : public MockNamedValueComparator { public: virtual bool isEqual(void* object1, void* object2) { return ((MyTypeForTesting*)object1)->value == ((MyTypeForTesting*)object2)->value; } virtual SimpleString valueToString(void* object) { return StringFrom(((MyTypeForTesting*)object)->value); } }; TEST(MockSupportTest, customObjectParameterFailsWhenNotHavingAComparisonRepository) { MyTypeForTesting object(1); mock().expectOneCall("function").withParameterOfType("MyTypeForTesting", "parameterName", &object); mock().actualCall("function").withParameterOfType("MyTypeForTesting", "parameterName", &object); MockNoWayToCompareCustomTypeFailure expectedFailure(mockFailureTest(), "MyTypeForTesting"); CHECK_EXPECTED_MOCK_FAILURE(expectedFailure); } TEST(MockSupportTest, customObjectParameterSucceeds) { MyTypeForTesting object(1); MyTypeForTestingComparator comparator; mock().installComparator("MyTypeForTesting", comparator); mock().expectOneCall("function").withParameterOfType("MyTypeForTesting", "parameterName", &object); mock().actualCall("function").withParameterOfType("MyTypeForTesting", "parameterName", &object); mock().checkExpectations(); CHECK_NO_MOCK_FAILURE(); mock().removeAllComparators(); } static bool myTypeIsEqual(void* object1, void* object2) { return ((MyTypeForTesting*)object1)->value == ((MyTypeForTesting*)object2)->value; } static SimpleString myTypeValueToString(void* object) { return StringFrom(((MyTypeForTesting*)object)->value); } TEST(MockSupportTest, customObjectWithFunctionComparator) { MyTypeForTesting object(1); MockFunctionComparator comparator(myTypeIsEqual, myTypeValueToString); mock().installComparator("MyTypeForTesting", comparator); mock().expectOneCall("function").withParameterOfType("MyTypeForTesting", "parameterName", &object); mock().actualCall("function").withParameterOfType("MyTypeForTesting", "parameterName", &object); mock().checkExpectations(); CHECK_NO_MOCK_FAILURE(); mock().removeAllComparators(); } TEST(MockSupportTest, disableEnable) { mock().disable(); mock().expectOneCall("function"); mock().actualCall("differenFunction"); CHECK(! mock().expectedCallsLeft()); mock().enable(); mock().expectOneCall("function"); CHECK(mock().expectedCallsLeft()); mock().actualCall("function"); CHECK_NO_MOCK_FAILURE(); } TEST(MockSupportTest, setDataForIntegerValues) { mock().setData("data", 10); LONGS_EQUAL(10, mock().getData("data").getIntValue()); } TEST(MockSupportTest, hasDataBeenSet) { CHECK(!mock().hasData("data")); mock().setData("data", 10); CHECK(mock().hasData("data")); } TEST(MockSupportTest, dataCanBeChanged) { mock().setData("data", 10); mock().setData("data", 15); LONGS_EQUAL(15, mock().getData("data").getIntValue()); } TEST(MockSupportTest, uninitializedData) { LONGS_EQUAL(0, mock().getData("nonexisting").getIntValue()); STRCMP_EQUAL("int", mock().getData("nonexisting").getType().asCharString()); } TEST(MockSupportTest, setMultipleData) { mock().setData("data", 1); mock().setData("data2", 10); LONGS_EQUAL(1, mock().getData("data").getIntValue()); LONGS_EQUAL(10, mock().getData("data2").getIntValue()); } TEST(MockSupportTest, setDataString) { mock().setData("data", "string"); STRCMP_EQUAL("string", mock().getData("data").getStringValue()); } TEST(MockSupportTest, setDataDouble) { mock().setData("data", 1.0); DOUBLES_EQUAL(1.0, mock().getData("data").getDoubleValue(), 0.05); } TEST(MockSupportTest, setDataPointer) { void * ptr = (void*) 0x001; mock().setData("data", ptr); POINTERS_EQUAL(ptr, mock().getData("data").getPointerValue()); } TEST(MockSupportTest, setDataObject) { void * ptr = (void*) 0x001; mock().setDataObject("data", "type", ptr); POINTERS_EQUAL(ptr, mock().getData("data").getObjectPointer()); STRCMP_EQUAL("type", mock().getData("data").getType().asCharString()); } TEST(MockSupportTest, getMockSupportScope) { MockSupport* mock1 = mock().getMockSupportScope("name"); MockSupport* mock2 = mock().getMockSupportScope("differentName"); CHECK(!mock().hasData("name")); CHECK(mock1 != mock2); POINTERS_EQUAL(mock1, mock().getMockSupportScope("name")); CHECK(mock1 != &mock()); } TEST(MockSupportTest, usingTwoMockSupportsByName) { mock("first").expectOneCall("boo"); LONGS_EQUAL(0, mock("other").expectedCallsLeft()); LONGS_EQUAL(1, mock("first").expectedCallsLeft()); mock("first").clear(); } TEST(MockSupportTest, EnableDisableWorkHierarchically) { mock("first"); mock().disable(); mock("first").expectOneCall("boo"); LONGS_EQUAL(0, mock("first").expectedCallsLeft()); mock().enable(); mock("first").expectOneCall("boo"); LONGS_EQUAL(1, mock("first").expectedCallsLeft()); mock("first").clear(); } TEST(MockSupportTest, EnableDisableWorkHierarchicallyWhenSupportIsDynamicallyCreated) { mock().disable(); mock("first").expectOneCall("boo"); LONGS_EQUAL(0, mock("first").expectedCallsLeft()); mock().enable(); mock("second").expectOneCall("boo"); LONGS_EQUAL(1, mock("second").expectedCallsLeft()); mock().clear(); } TEST(MockSupportTest, ExpectedCallsLeftWorksHierarchically) { mock("first").expectOneCall("foobar"); LONGS_EQUAL(1, mock().expectedCallsLeft()); mock().clear(); } TEST(MockSupportTest, checkExpectationsWorksHierarchically) { mock("first").expectOneCall("foobar"); mock("second").expectOneCall("helloworld"); addFunctionToExpectationsList("foobar"); addFunctionToExpectationsList("helloworld"); MockExpectedCallsDidntHappenFailure expectedFailure(mockFailureTest(), *expectationsList); mock().checkExpectations(); CHECK_EXPECTED_MOCK_FAILURE(expectedFailure); } TEST(MockSupportTest, ignoreOtherCallsWorksHierarchically) { mock("first"); mock().ignoreOtherCalls(); mock("first").actualCall("boo"); CHECK_NO_MOCK_FAILURE(); } TEST(MockSupportTest, ignoreOtherCallsWorksHierarchicallyWhenDynamicallyCreated) { mock().ignoreOtherCalls(); mock("first").actualCall("boo"); CHECK_NO_MOCK_FAILURE(); } TEST(MockSupportTest, checkExpectationsWorksHierarchicallyForLastCallNotFinished) { mock("first").expectOneCall("foobar").withParameter("boo", 1); mock("first").actualCall("foobar"); addFunctionToExpectationsList("foobar")->withParameter("boo", 1); MockExpectedParameterDidntHappenFailure expectedFailure(mockFailureTest(), "foobar", *expectationsList); mock().checkExpectations(); CHECK_EXPECTED_MOCK_FAILURE(expectedFailure); } TEST(MockSupportTest, reporterIsInheritedInHierarchicalMocks) { mock("differentScope").actualCall("foobar"); MockUnexpectedCallHappenedFailure expectedFailure(mockFailureTest(), "foobar", *expectationsList); CHECK_EXPECTED_MOCK_FAILURE(expectedFailure); } TEST(MockSupportTest, installComparatorWorksHierarchicalOnBothExistingAndDynamicallyCreatedMockSupports) { MyTypeForTesting object(1); MyTypeForTestingComparator comparator; mock("existing"); mock().installComparator("MyTypeForTesting", comparator); mock("existing").expectOneCall("function").withParameterOfType("MyTypeForTesting", "parameterName", &object); mock("existing").actualCall("function").withParameterOfType("MyTypeForTesting", "parameterName", &object); mock("dynamic").expectOneCall("function").withParameterOfType("MyTypeForTesting", "parameterName", &object); mock("dynamic").actualCall("function").withParameterOfType("MyTypeForTesting", "parameterName", &object); mock().checkExpectations(); CHECK_NO_MOCK_FAILURE(); mock().removeAllComparators(); } TEST(MockSupportTest, installComparatorsWorksHierarchical) { MyTypeForTesting object(1); MyTypeForTestingComparator comparator; MockNamedValueComparatorRepository repos; repos.installComparator("MyTypeForTesting", comparator); mock("existing"); mock().installComparators(repos); mock("existing").expectOneCall("function").withParameterOfType("MyTypeForTesting", "parameterName", &object); mock("existing").actualCall("function").withParameterOfType("MyTypeForTesting", "parameterName", &object); mock().checkExpectations(); CHECK_NO_MOCK_FAILURE(); mock().removeAllComparators(); } TEST(MockSupportTest, removeComparatorsWorksHierachically) { MyTypeForTesting object(1); MyTypeForTestingComparator comparator; mock("scope").installComparator("MyTypeForTesting", comparator); mock().removeAllComparators(); mock("scope").expectOneCall("function").withParameterOfType("MyTypeForTesting", "parameterName", &object); mock("scope").actualCall("function").withParameterOfType("MyTypeForTesting", "parameterName", &object); MockNoWayToCompareCustomTypeFailure expectedFailure(mockFailureTest(), "MyTypeForTesting"); CHECK_EXPECTED_MOCK_FAILURE(expectedFailure); } TEST(MockSupportTest, hasReturnValue) { CHECK(!mock().hasReturnValue()); mock().expectOneCall("foo"); CHECK(!mock().actualCall("foo").hasReturnValue()); CHECK(!mock().hasReturnValue()); mock().expectOneCall("foo2").andReturnValue(1); CHECK(mock().actualCall("foo2").hasReturnValue()); CHECK(mock().hasReturnValue()); } TEST(MockSupportTest, IntegerReturnValue) { mock().expectOneCall("foo").andReturnValue(1); LONGS_EQUAL(1, mock().actualCall("foo").returnValue().getIntValue()); LONGS_EQUAL(1, mock().returnValue().getIntValue()); LONGS_EQUAL(1, mock().intReturnValue()); } TEST(MockSupportTest, IntegerReturnValueSetsDifferentValues) { mock().expectOneCall("foo").andReturnValue(1); mock().expectOneCall("foo").andReturnValue(2); LONGS_EQUAL(1, mock().actualCall("foo").returnValue().getIntValue()); LONGS_EQUAL(1, mock().returnValue().getIntValue()); LONGS_EQUAL(2, mock().actualCall("foo").returnValue().getIntValue()); LONGS_EQUAL(2, mock().returnValue().getIntValue()); } TEST(MockSupportTest, IntegerReturnValueSetsDifferentValuesWhileParametersAreIgnored) { mock().expectOneCall("foo").withParameter("p1", 1).ignoreOtherParameters().andReturnValue(1); mock().expectOneCall("foo").withParameter("p1", 1).ignoreOtherParameters().andReturnValue(2); LONGS_EQUAL(1, mock().actualCall("foo").withParameter("p1", 1).returnValue().getIntValue()); LONGS_EQUAL(1, mock().returnValue().getIntValue()); LONGS_EQUAL(2, mock().actualCall("foo").withParameter("p1", 1).returnValue().getIntValue()); LONGS_EQUAL(2, mock().returnValue().getIntValue()); } TEST(MockSupportTest, MatchingReturnValueOnWhileSignature) { mock().expectOneCall("foo").withParameter("p1", 1).andReturnValue(1); mock().expectOneCall("foo").withParameter("p1", 2).andReturnValue(2); mock().expectOneCall("foo").withParameter("p1", 3).andReturnValue(3); mock().expectOneCall("foo").ignoreOtherParameters().andReturnValue(4); LONGS_EQUAL(3, mock().actualCall("foo").withParameter("p1", 3).returnValue().getIntValue()); LONGS_EQUAL(4, mock().actualCall("foo").withParameter("p1", 4).returnValue().getIntValue()); LONGS_EQUAL(1, mock().actualCall("foo").withParameter("p1", 1).returnValue().getIntValue()); LONGS_EQUAL(2, mock().actualCall("foo").withParameter("p1", 2).returnValue().getIntValue()); } TEST(MockSupportTest, StringReturnValue) { mock().expectOneCall("foo").andReturnValue("hello world"); STRCMP_EQUAL("hello world", mock().actualCall("foo").returnValue().getStringValue()); STRCMP_EQUAL("hello world", mock().stringReturnValue()); } TEST(MockSupportTest, DoubleReturnValue) { mock().expectOneCall("foo").andReturnValue(1.0); DOUBLES_EQUAL(1.0, mock().actualCall("foo").returnValue().getDoubleValue(), 0.05); DOUBLES_EQUAL(1.0, mock().doubleReturnValue(), 0.05); } TEST(MockSupportTest, PointerReturnValue) { void* ptr = (void*) 0x001; mock().expectOneCall("foo").andReturnValue(ptr); POINTERS_EQUAL(ptr, mock().actualCall("foo").returnValue().getPointerValue()); POINTERS_EQUAL(ptr, mock().pointerReturnValue()); } TEST(MockSupportTest, OnObject) { void* objectPtr = (void*) 0x001; mock().expectOneCall("boo").onObject(objectPtr); mock().actualCall("boo").onObject(objectPtr); } TEST(MockSupportTest, OnObjectFails) { void* objectPtr = (void*) 0x001; void* objectPtr2 = (void*) 0x002; addFunctionToExpectationsList("boo")->onObject(objectPtr); mock().expectOneCall("boo").onObject(objectPtr); mock().actualCall("boo").onObject(objectPtr2); MockUnexpectedObjectFailure expectedFailure(mockFailureTest(), "boo", objectPtr2, *expectationsList); CHECK_EXPECTED_MOCK_FAILURE(expectedFailure); } TEST(MockSupportTest, OnObjectExpectedButNotCalled) { void* objectPtr = (void*) 0x001; addFunctionToExpectationsList("boo")->onObject(objectPtr); addFunctionToExpectationsList("boo")->onObject(objectPtr); mock().expectOneCall("boo").onObject(objectPtr); mock().expectOneCall("boo").onObject(objectPtr); mock().actualCall("boo"); mock().actualCall("boo"); MockExpectedObjectDidntHappenFailure expectedFailure(mockFailureTest(), "boo", *expectationsList); CHECK_EXPECTED_MOCK_FAILURE(expectedFailure); mock().checkExpectations(); CHECK_EXPECTED_MOCK_FAILURE(expectedFailure); } TEST(MockSupportTest, expectMultipleCalls) { mock().expectNCalls(2, "boo"); mock().actualCall("boo"); mock().actualCall("boo"); mock().checkExpectations(); CHECK_NO_MOCK_FAILURE(); } TEST(MockSupportTest, expectMultipleCallsWithParameters) { mock().expectNCalls(2, "boo").withParameter("double", 1.0).withParameter("int", 1).withParameter("string", "string"); mock().actualCall("boo").withParameter("double", 1.0).withParameter("int", 1).withParameter("string", "string"); mock().actualCall("boo").withParameter("double", 1.0).withParameter("int", 1).withParameter("string", "string"); mock().checkExpectations(); CHECK_NO_MOCK_FAILURE(); } TEST(MockSupportTest, expectMultipleMultipleCallsWithParameters) { mock().expectNCalls(2, "boo").withParameter("double", 1.0).ignoreOtherParameters(); mock().expectNCalls(2, "boo").withParameter("double", 1.0).ignoreOtherParameters(); mock().actualCall("boo").withParameter("double", 1.0).withParameter("int", 1).withParameter("string", "string"); mock().actualCall("boo").withParameter("double", 1.0).withParameter("int", 1).withParameter("string", "string"); mock().actualCall("boo").withParameter("double", 1.0).withParameter("int", 1).withParameter("string", "string"); mock().actualCall("boo").withParameter("double", 1.0).withParameter("int", 1).withParameter("string", "string"); mock().checkExpectations(); CHECK_NO_MOCK_FAILURE(); } TEST(MockSupportTest, whenCallingDisabledOrIgnoredActualCallsThenTheyDontReturnPreviousCallsValues) { mock().expectOneCall("boo").ignoreOtherParameters().andReturnValue(10); mock().ignoreOtherCalls(); mock().actualCall("boo"); mock().actualCall("An Ignored Call"); CHECK(!mock().hasReturnValue()); } TEST(MockSupportTest, tracing) { mock().tracing(true); mock().actualCall("boo").withParameter("double", 1.0).withParameter("int", 1).withParameter("string", "string"); mock("scope").actualCall("foo").withParameter("double", 1.0).withParameter("int", 1).withParameter("string", "string"); mock().checkExpectations(); STRCMP_CONTAINS("boo", mock().getTraceOutput()); STRCMP_CONTAINS("foo", mock().getTraceOutput()); } TEST(MockSupportTest, shouldntFailTwice) { mock().expectOneCall("foo"); mock().actualCall("bar"); mock().checkExpectations(); LONGS_EQUAL(1, MockFailureReporterForTest::getReporter()->getAmountOfTestFailures()); CLEAR_MOCK_FAILURE(); } IGNORE_TEST(MockSupportTest, testForPerformanceProfiling) { /* TO fix! */ mock().expectNCalls(1000, "SimpleFunction"); for (int i = 0; i < 1000; i++) { mock().actualCall("SimpleFunction"); } } cpputest-3.4/tests/CppUTestExt/TestCodeMemoryReportFormatter.cpp0000644000175300017530000001625612023251675022214 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" #include "CppUTest/TestOutput.h" #include "CppUTestExt/MemoryReportAllocator.h" #include "CppUTestExt/CodeMemoryReportFormatter.h" #define TESTOUPUT_EQUAL(a) STRCMP_EQUAL_LOCATION(a, testOutput.getOutput().asCharString(), __FILE__, __LINE__); #define TESTOUPUT_CONTAINS(a) STRCMP_CONTAINS_LOCATION(a, testOutput.getOutput().asCharString(), __FILE__, __LINE__); TEST_GROUP(CodeMemoryReportFormatter) { TestMemoryAllocator* cAllocator; TestMemoryAllocator* newAllocator; TestMemoryAllocator* newArrayAllocator; char* memory01; char* memory02; StringBufferTestOutput testOutput; TestResult* testResult; CodeMemoryReportFormatter* formatter; void setup() { cAllocator = defaultMallocAllocator(); newAllocator = defaultNewAllocator(); newArrayAllocator= defaultNewArrayAllocator(); memory01 = (char*) 0x01; memory02 = (char*) 0x02; formatter = new CodeMemoryReportFormatter(cAllocator); testResult = new TestResult(testOutput); } void teardown() { delete testResult; delete formatter; } }; TEST(CodeMemoryReportFormatter, mallocCreatesAnMallocCall) { formatter->report_alloc_memory(testResult, cAllocator, 10, memory01, "file", 9); TESTOUPUT_EQUAL("\tvoid* file_9_1 = malloc(10);\n"); } TEST(CodeMemoryReportFormatter, freeCreatesAnFreeCall) { formatter->report_alloc_memory(testResult, cAllocator, 10, memory01, "file", 9); testOutput.flush(); formatter->report_free_memory(testResult, cAllocator, memory01, "boo", 6); TESTOUPUT_EQUAL("\tfree(file_9_1); /* at boo:6 */\n"); } TEST(CodeMemoryReportFormatter, twoMallocAndTwoFree) { formatter->report_alloc_memory(testResult, cAllocator, 10, memory01, "file", 2); formatter->report_alloc_memory(testResult, cAllocator, 10, memory02, "boo", 4); testOutput.flush(); formatter->report_free_memory(testResult, cAllocator, memory01, "foo", 6); formatter->report_free_memory(testResult, cAllocator, memory02, "bar", 8); TESTOUPUT_CONTAINS("\tfree(file_2_1); /* at foo:6 */\n"); TESTOUPUT_CONTAINS("\tfree(boo_4_1); /* at bar:8 */\n"); } TEST(CodeMemoryReportFormatter, variableNamesShouldNotContainSlahses) { formatter->report_alloc_memory(testResult, cAllocator, 10, memory01, "dir/file", 2); TESTOUPUT_CONTAINS("\tvoid* file_2"); } TEST(CodeMemoryReportFormatter, variableNamesShouldNotContainDotButUseUnderscore) { formatter->report_alloc_memory(testResult, cAllocator, 10, memory01, "foo.cpp", 2); TESTOUPUT_CONTAINS("foo_cpp"); } TEST(CodeMemoryReportFormatter, newArrayAllocatorGeneratesNewArrayCode) { formatter->report_alloc_memory(testResult, newArrayAllocator, 10, memory01, "file", 8); TESTOUPUT_CONTAINS("char* file_8_1 = new char[10]; /* using new [] */"); } TEST(CodeMemoryReportFormatter, newArrayGeneratesNewCode) { formatter->report_alloc_memory(testResult, newAllocator, 6, memory01, "file", 4); TESTOUPUT_CONTAINS("new char[6]; /* using new */"); } TEST(CodeMemoryReportFormatter, NewAllocatorGeneratesDeleteCode) { formatter->report_alloc_memory(testResult, newAllocator, 10, memory01, "file", 8); testOutput.flush(); formatter->report_free_memory(testResult, newAllocator, memory01, "boo", 4); TESTOUPUT_CONTAINS("delete [] file_8_1; /* using delete at boo:4 */"); } TEST(CodeMemoryReportFormatter, DeleteNullWorksFine) { formatter->report_free_memory(testResult, newAllocator, NULL, "boo", 4); TESTOUPUT_CONTAINS("delete [] NULL; /* using delete at boo:4 */"); } TEST(CodeMemoryReportFormatter, NewArrayAllocatorGeneratesDeleteArrayCode) { formatter->report_alloc_memory(testResult, newArrayAllocator, 10, memory01, "file", 8); testOutput.flush(); formatter->report_free_memory(testResult, newArrayAllocator, memory01, "boo", 4); TESTOUPUT_CONTAINS("delete [] file_8_1; /* using delete [] at boo:4 */"); } TEST(CodeMemoryReportFormatter, allocationUsingMallocOnTheSameLineDoesntGenerateTheSameVariableTwice) { formatter->report_alloc_memory(testResult, cAllocator, 10, memory01, "file", 8); testOutput.flush(); formatter->report_alloc_memory(testResult, cAllocator, 10, memory02, "file", 8); CHECK(testOutput.getOutput().contains("2")); } TEST(CodeMemoryReportFormatter, allocationUsingNewcOnTheSameLineDoesntGenerateTheSameVariableTwice) { formatter->report_alloc_memory(testResult, newAllocator, 10, memory01, "file", 8); testOutput.flush(); formatter->report_alloc_memory(testResult, newAllocator, 10, memory01, "file", 8); CHECK(testOutput.getOutput().contains("2")); } TEST(CodeMemoryReportFormatter, allocationUsingNewcOnTheSameLineDoesntGenerateVariableTwiceExceptWhenInANewTest) { formatter->report_alloc_memory(testResult, newAllocator, 10, memory01, "file", 8); formatter->report_test_start(testResult, *UtestShell::getCurrent()); testOutput.flush(); formatter->report_alloc_memory(testResult, newAllocator, 10, memory01, "file", 8); CHECK(testOutput.getOutput().contains("char*")); } TEST(CodeMemoryReportFormatter, testStartGeneratesTESTcode) { UtestShell test("groupName", "testName", "fileName", 1); formatter->report_test_start(testResult, test); TESTOUPUT_EQUAL("*/\nTEST(groupName_memoryReport, testName)\n{ /* at fileName:1 */\n"); } TEST(CodeMemoryReportFormatter, testEndGeneratesTESTcode) { UtestShell test("groupName", "testName", "fileName", 1); formatter->report_test_end(testResult, test); TESTOUPUT_EQUAL("}/*"); } TEST(CodeMemoryReportFormatter, TestGroupGeneratesTestGroupCode) { UtestShell test("groupName", "testName", "fileName", 1); formatter->report_testgroup_start(testResult, test); TESTOUPUT_EQUAL("*/TEST_GROUP(groupName_memoryReport)\n{\n};\n/*"); } // TODO: do! /* Dealloc without alloc */ /* Remove the ugly comments by controlling the output! */ /* Write tests for the variable name lengths */ cpputest-3.4/tests/CppUTestExt/TestMockCheatSheet.cpp0000664000175300017530000000332512066727207017721 00000000000000 /* Additional include from CppUTestExt */ #include "CppUTest/TestHarness.h" #include "CppUTestExt/MockSupport.h" /* Stubbed out product code using linker, function pointer, or overriding */ static int foo(const char* param_string, int param_int) { /* Tell CppUTest Mocking what we mock. Also return recorded value */ return mock().actualCall("Foo") .withParameter("param_string", param_string) .withParameter("param_int", param_int) .returnValue().getIntValue(); } static void bar(double param_double, const char* param_string) { mock().actualCall("Bar") .withParameter("param_double", param_double) .withParameter("param_string", param_string); } /* Production code calls to the methods we stubbed */ static int productionCodeFooCalls() { int return_value; return_value = foo("value_string", 10); return_value = foo("value_string", 10); return return_value; } static void productionCodeBarCalls() { bar(1.5, "more"); bar(1.5, "more"); } /* Actual test */ TEST_GROUP(MockCheatSheet) { void teardown() { /* Check expectations. Alternatively use MockSupportPlugin */ mock().checkExpectations(); } }; TEST(MockCheatSheet, foo) { /* Record 2 calls to Foo. Return different values on each call */ mock().expectOneCall("Foo") .withParameter("param_string", "value_string") .withParameter("param_int", 10) .andReturnValue(30); mock().expectOneCall("Foo") .ignoreOtherParameters() .andReturnValue(50); /* Call production code */ productionCodeFooCalls(); } TEST(MockCheatSheet, bar) { /* Expect 2 calls on Bar. Check only one parameter */ mock().expectNCalls(2, "Bar") .withParameter("param_double", 1.5) .ignoreOtherParameters(); /* And the production code call */ productionCodeBarCalls(); } cpputest-3.4/tests/CppUTestExt/TestMockSupport_c.cpp0000664000175300017530000001203012066727207017653 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" #include "CppUTest/TestHarness_c.h" #include "CppUTestExt/MockSupport_c.h" #include "TestMockSupport_cCFile.h" TEST_GROUP(MockSupport_c) { }; TEST(MockSupport_c, expectAndActualOneCall) { mock_c()->expectOneCall("boo"); mock_c()->actualCall("boo"); mock_c()->checkExpectations(); } TEST(MockSupport_c, expectAndActualParameters) { mock_c()->expectOneCall("boo")->withIntParameters("integer", 1)->withDoubleParameters("doube", 1.0)-> withStringParameters("string", "string")->withPointerParameters("pointer", (void*) 1); mock_c()->actualCall("boo")->withIntParameters("integer", 1)->withDoubleParameters("doube", 1.0)-> withStringParameters("string", "string")->withPointerParameters("pointer", (void*) 1); } static int typeNameIsEqual(void* object1, void* object2) { return object1 == object2; } static char* typeNameValueToString(void* PUNUSED(object)) { return (char*) "valueToString"; } TEST(MockSupport_c, expectAndActualParametersOnObject) { mock_c()->installComparator("typeName", typeNameIsEqual, typeNameValueToString); mock_c()->expectOneCall("boo")->withParameterOfType("typeName", "name", (void*) 1); mock_c()->actualCall("boo")->withParameterOfType("typeName", "name", (void*) 1); mock_c()->checkExpectations(); mock_c()->removeAllComparators(); } TEST(MockSupport_c, returnIntValue) { mock_c()->expectOneCall("boo")->andReturnIntValue(10); LONGS_EQUAL(10, mock_c()->actualCall("boo")->returnValue().value.intValue); LONGS_EQUAL(MOCKVALUETYPE_INTEGER, mock_c()->returnValue().type); } TEST(MockSupport_c, returnDoubleValue) { mock_c()->expectOneCall("boo")->andReturnDoubleValue(1.0); DOUBLES_EQUAL(1.0, mock_c()->actualCall("boo")->returnValue().value.doubleValue, 0.005); LONGS_EQUAL(MOCKVALUETYPE_DOUBLE, mock_c()->returnValue().type); } TEST(MockSupport_c, returnStringValue) { mock_c()->expectOneCall("boo")->andReturnStringValue("hello world"); STRCMP_EQUAL("hello world", mock_c()->actualCall("boo")->returnValue().value.stringValue); LONGS_EQUAL(MOCKVALUETYPE_STRING, mock_c()->returnValue().type); } TEST(MockSupport_c, returnPointerValue) { mock_c()->expectOneCall("boo")->andReturnPointerValue((void*) 10); POINTERS_EQUAL((void*) 10, mock_c()->actualCall("boo")->returnValue().value.pointerValue); LONGS_EQUAL(MOCKVALUETYPE_POINTER, mock_c()->returnValue().type); } TEST(MockSupport_c, MockSupportWithScope) { mock_scope_c("scope")->expectOneCall("boo"); LONGS_EQUAL(0, mock_scope_c("other")->expectedCallsLeft()); LONGS_EQUAL(1, mock_scope_c("scope")->expectedCallsLeft()); mock_scope_c("scope")->actualCall("boo"); } TEST(MockSupport_c, MockSupportSetIntData) { mock_c()->setIntData("integer", 10); LONGS_EQUAL(10, mock_c()->getData("integer").value.intValue); } TEST(MockSupport_c, MockSupportSetDoubleData) { mock_c()->setDoubleData("double", 1.0); DOUBLES_EQUAL(1.00, mock_c()->getData("double").value.doubleValue, 0.05); } TEST(MockSupport_c, MockSupportSetStringData) { mock_c()->setStringData("string", "hello world"); STRCMP_EQUAL("hello world", mock_c()->getData("string").value.stringValue); } TEST(MockSupport_c, MockSupportSetPointerData) { mock_c()->setPointerData("pointer", (void*) 1); POINTERS_EQUAL((void*) 1, mock_c()->getData("pointer").value.pointerValue); } TEST(MockSupport_c, MockSupportSetDataObject) { mock_c()->setDataObject("name", "type", (void*) 1); POINTERS_EQUAL((void*) 1, mock_c()->getData("name").value.objectValue); } TEST(MockSupport_c, WorksInCFile) { all_mock_support_c_calls(); } cpputest-3.4/tests/CppUTestExt/TestGMock.cpp0000644000175300017530000000526612023251675016070 00000000000000/* * Copyright (c) 2011, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTestExt/GMock.h" #include "CppUTest/TestHarness.h" #include "CppUTest/TestOutput.h" #include "CppUTest/TestRegistry.h" #include "CppUTest/TestTestingFixture.h" #ifdef CPPUTEST_USE_REAL_GMOCK TEST_GROUP(GMock) { TestTestingFixture *fixture; void setup() { fixture = new TestTestingFixture; } void teardown() { delete fixture; } }; class myMock { public: MOCK_METHOD0(methodName, int()); }; static void failedMockCall() { myMock mock; EXPECT_CALL(mock, methodName()).WillOnce(Return(1)); } TEST(GMock, GMockFailuresWorkAsExpected) { fixture->setTestFunction(failedMockCall); fixture->runAllTests(); LONGS_EQUAL(1, fixture->getFailureCount()); } static void failedMockCallAfterOneSuccess() { myMock mock; EXPECT_CALL(mock, methodName()).Times(2).WillRepeatedly(Return(1)); mock.methodName(); } TEST(GMock, GMockFailuresWorkAsExpectedWithTwoExpectedCallButJustOneActual) { fixture->setTestFunction(failedMockCallAfterOneSuccess); fixture->runAllTests(); LONGS_EQUAL(1, fixture->getFailureCount()); } TEST(GMock, GMockNiceMocksWorkFine) { NiceMock mock; mock.methodName(); } #endif cpputest-3.4/tests/CppUTestExt/TestMockExpectedFunctionCall.cpp0000644000175300017530000002673612134163705021751 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" #include "CppUTestExt/MockExpectedFunctionCall.h" #include "CppUTestExt/MockFailure.h" #include "TestMockFailure.h" class TypeForTestingExpectedFunctionCall { public: TypeForTestingExpectedFunctionCall(int val) : value(val) {} int value; }; class TypeForTestingExpectedFunctionCallComparator : public MockNamedValueComparator { public: TypeForTestingExpectedFunctionCallComparator() {} virtual ~TypeForTestingExpectedFunctionCallComparator() {} virtual bool isEqual(void* object1, void* object2) { return ((TypeForTestingExpectedFunctionCall*)object1)->value == ((TypeForTestingExpectedFunctionCall*)object2)->value; } virtual SimpleString valueToString(void* object) { return StringFrom(((TypeForTestingExpectedFunctionCall*)object)->value); } }; TEST_GROUP(MockNamedValueComparatorRepository) { void teardown() { CHECK_NO_MOCK_FAILURE(); } }; TEST(MockNamedValueComparatorRepository, getComparatorForNonExistingName) { MockNamedValueComparatorRepository repository; POINTERS_EQUAL(NULL, repository.getComparatorForType("typeName")); } TEST(MockNamedValueComparatorRepository, installComparator) { TypeForTestingExpectedFunctionCallComparator comparator; MockNamedValueComparatorRepository repository; repository.installComparator("typeName", comparator); POINTERS_EQUAL(&comparator, repository.getComparatorForType("typeName")); } TEST(MockNamedValueComparatorRepository, installMultipleComparator) { TypeForTestingExpectedFunctionCallComparator comparator1, comparator2, comparator3; MockNamedValueComparatorRepository repository; repository.installComparator("type1", comparator1); repository.installComparator("type2", comparator2); repository.installComparator("type3", comparator3); POINTERS_EQUAL(&comparator3, repository.getComparatorForType("type3")); POINTERS_EQUAL(&comparator2, repository.getComparatorForType("type2")); POINTERS_EQUAL(&comparator1, repository.getComparatorForType("type1")); } TEST_GROUP(MockExpectedFunctionCall) { MockExpectedFunctionCall* call; void setup () { call = new MockExpectedFunctionCall; } void teardown() { delete call; CHECK_NO_MOCK_FAILURE(); } }; TEST(MockExpectedFunctionCall, callWithoutParameterSetOrNotFound) { STRCMP_EQUAL("", call->getParameterType("nonexisting").asCharString()); LONGS_EQUAL(0, call->getParameter("nonexisting").getIntValue()); CHECK(!call->hasParameterWithName("nonexisting")); } TEST(MockExpectedFunctionCall, callWithIntegerParameter) { call->withParameter("integer", 1); STRCMP_EQUAL("int", call->getParameterType("integer").asCharString()); LONGS_EQUAL(1, call->getParameter("integer").getIntValue()); CHECK(call->hasParameterWithName("integer")); } TEST(MockExpectedFunctionCall, callWithDoubleParameter) { call->withParameter("double", 1.2); STRCMP_EQUAL("double", call->getParameterType("double").asCharString()); DOUBLES_EQUAL(1.2, call->getParameter("double").getDoubleValue(), 0.05); } TEST(MockExpectedFunctionCall, callWithStringParameter) { call->withParameter("string", "hello world"); STRCMP_EQUAL("char*", call->getParameterType("string").asCharString()); STRCMP_EQUAL("hello world", call->getParameter("string").getStringValue()); } TEST(MockExpectedFunctionCall, callWithPointerParameter) { void* ptr = (void*) 0x123; call->withParameter("pointer", ptr); STRCMP_EQUAL("void*", call->getParameterType("pointer").asCharString()); POINTERS_EQUAL(ptr, call->getParameter("pointer").getPointerValue()); } TEST(MockExpectedFunctionCall, callWithObjectParameter) { void* ptr = (void*) 0x123; call->withParameterOfType("class", "object", ptr); POINTERS_EQUAL(ptr, call->getParameter("object").getObjectPointer()); STRCMP_EQUAL("class", call->getParameterType("object").asCharString()); } TEST(MockExpectedFunctionCall, callWithObjectParameterUnequalComparison) { TypeForTestingExpectedFunctionCall type(1), unequalType(2); MockNamedValue parameter ("name"); parameter.setObjectPointer("type", &unequalType); call->withParameterOfType("type", "name", &type); CHECK (!call->hasParameter(parameter)); } TEST(MockExpectedFunctionCall, callWithObjectParameterEqualComparisonButFailsWithoutRepository) { TypeForTestingExpectedFunctionCall type(1), equalType(1); MockNamedValue parameter ("name"); parameter.setObjectPointer("type", &equalType); call->withParameterOfType("type", "name", &type); CHECK (!call->hasParameter(parameter)); } TEST(MockExpectedFunctionCall, callWithObjectParameterEqualComparisonButFailsWithoutComparator) { MockNamedValueComparatorRepository repository; call->setComparatorRepository(&repository); TypeForTestingExpectedFunctionCall type(1), equalType(1); MockNamedValue parameter ("name"); parameter.setObjectPointer("type", &equalType); call->withParameterOfType("type", "name", &type); CHECK (!call->hasParameter(parameter)); } TEST(MockExpectedFunctionCall, callWithObjectParameterEqualComparison) { TypeForTestingExpectedFunctionCallComparator comparator; MockNamedValueComparatorRepository repository; repository.installComparator("type", comparator); TypeForTestingExpectedFunctionCall type(1), equalType(1); MockNamedValue parameter ("name"); parameter.setObjectPointer("type", &equalType); call->setComparatorRepository(&repository); call->withParameterOfType("type", "name", &type); CHECK (call->hasParameter(parameter)); } TEST(MockExpectedFunctionCall, getParameterValueOfObjectType) { TypeForTestingExpectedFunctionCallComparator comparator; MockNamedValueComparatorRepository repository; repository.installComparator("type", comparator); TypeForTestingExpectedFunctionCall type(1); call->setComparatorRepository(&repository); call->withParameterOfType("type", "name", &type); POINTERS_EQUAL(&type, call->getParameter("name").getObjectPointer()); STRCMP_EQUAL("1", call->getParameterValueString("name").asCharString()); } TEST(MockExpectedFunctionCall, getParameterValueOfObjectTypeWithoutRepository) { TypeForTestingExpectedFunctionCall type(1); call->withParameterOfType("type", "name", &type); STRCMP_EQUAL("No comparator found for type: \"type\"", call->getParameterValueString("name").asCharString()); } TEST(MockExpectedFunctionCall, getParameterValueOfObjectTypeWithoutComparator) { TypeForTestingExpectedFunctionCall type(1); MockNamedValueComparatorRepository repository; call->setComparatorRepository(&repository); call->withParameterOfType("type", "name", &type); STRCMP_EQUAL("No comparator found for type: \"type\"", call->getParameterValueString("name").asCharString()); } TEST(MockExpectedFunctionCall, callWithTwoIntegerParameter) { call->withParameter("integer1", 1); call->withParameter("integer2", 2); STRCMP_EQUAL("int", call->getParameterType("integer1").asCharString()); STRCMP_EQUAL("int", call->getParameterType("integer2").asCharString()); LONGS_EQUAL(1, call->getParameter("integer1").getIntValue()); LONGS_EQUAL(2, call->getParameter("integer2").getIntValue()); } TEST(MockExpectedFunctionCall, callWithThreeDifferentParameter) { call->withParameter("integer", 1); call->withParameter("string", "hello world"); call->withParameter("double", 0.12); STRCMP_EQUAL("int", call->getParameterType("integer").asCharString()); STRCMP_EQUAL("char*", call->getParameterType("string").asCharString()); STRCMP_EQUAL("double", call->getParameterType("double").asCharString()); LONGS_EQUAL(1, call->getParameter("integer").getIntValue()); STRCMP_EQUAL("hello world", call->getParameter("string").getStringValue()); DOUBLES_EQUAL(0.12, call->getParameter("double").getDoubleValue(), 0.05); } TEST(MockExpectedFunctionCall, withoutANameItsFulfilled) { CHECK(call->isFulfilled()); } TEST(MockExpectedFunctionCall, withANameItsNotFulfilled) { call->withName("name"); CHECK(!call->isFulfilled()); } TEST(MockExpectedFunctionCall, afterSettingCallFulfilledItsFulFilled) { call->withName("name"); call->callWasMade(1); CHECK(call->isFulfilled()); } TEST(MockExpectedFunctionCall, calledButNotWithParameterIsNotFulFilled) { call->withName("name").withParameter("para", 1); call->callWasMade(1); CHECK(!call->isFulfilled()); } TEST(MockExpectedFunctionCall, calledAndParametersAreFulfilled) { call->withName("name").withParameter("para", 1); call->callWasMade(1); call->parameterWasPassed("para"); CHECK(call->isFulfilled()); } TEST(MockExpectedFunctionCall, calledButNotAllParametersAreFulfilled) { call->withName("name").withParameter("para", 1).withParameter("two", 2); call->callWasMade(1); call->parameterWasPassed("para"); CHECK(! call->isFulfilled()); } TEST(MockExpectedFunctionCall, toStringForNoParameters) { call->withName("name"); STRCMP_EQUAL("name -> no parameters", call->callToString().asCharString()); } TEST(MockExpectedFunctionCall, toStringForIgnoredParameters) { call->withName("name"); call->ignoreOtherParameters(); STRCMP_EQUAL("name -> all parameters ignored", call->callToString().asCharString()); } TEST(MockExpectedFunctionCall, toStringForMultipleParameters) { call->withName("name"); call->withParameter("string", "value"); call->withParameter("integer", 10); STRCMP_EQUAL("name -> char* string: , int integer: <10>", call->callToString().asCharString()); } TEST(MockExpectedFunctionCall, toStringForParameterAndIgnored) { call->withName("name"); call->withParameter("string", "value"); call->ignoreOtherParameters(); STRCMP_EQUAL("name -> char* string: , other parameters are ignored", call->callToString().asCharString()); } TEST(MockExpectedFunctionCall, toStringForCallOrder) { call->withName("name"); call->withCallOrder(2); STRCMP_EQUAL("name -> expected call order: <2> -> no parameters", call->callToString().asCharString()); } TEST(MockExpectedFunctionCall, callOrderIsNotFulfilledWithWrongOrder) { call->withName("name"); call->withCallOrder(2); call->callWasMade(1); CHECK(call->isFulfilled()); CHECK(call->isOutOfOrder()); } TEST(MockExpectedFunctionCall, callOrderIsFulfilled) { call->withName("name"); call->withCallOrder(1); call->callWasMade(1); CHECK(call->isFulfilled()); CHECK_FALSE(call->isOutOfOrder()); } cpputest-3.4/tests/CppUTestExt/TestMockSupport_cCFile.c0000664000175300017530000000666712066727207020241 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTestExt/MockSupport_c.h" #include "TestMockSupport_cCFile.h" static int typeNameIsEqual(void* object1, void* object2) { return object1 == object2; } static char* typeNameValueToString(void* object) { return (char*) object; } void all_mock_support_c_calls(void) { mock_c()->expectOneCall("boo"); mock_c()->actualCall("boo"); mock_c()->checkExpectations(); mock_c()->expectOneCall("boo")->withIntParameters("integer", 1)->withDoubleParameters("doube", 1.0)-> withStringParameters("string", "string")->withPointerParameters("pointer", (void*) 1); mock_c()->actualCall("boo")->withIntParameters("integer", 1)->withDoubleParameters("doube", 1.0)-> withStringParameters("string", "string")->withPointerParameters("pointer", (void*) 1); mock_c()->installComparator("typeName", typeNameIsEqual, typeNameValueToString); mock_c()->expectOneCall("boo")->withParameterOfType("typeName", "name", (void*) 1); mock_c()->actualCall("boo")->withParameterOfType("typeName", "name", (void*) 1); mock_c()->clear(); mock_c()->removeAllComparators(); mock_c()->expectOneCall("boo")->andReturnIntValue(10); mock_c()->actualCall("boo")->returnValue(); mock_c()->returnValue(); mock_c()->expectOneCall("boo2")->andReturnDoubleValue(1.0); mock_c()->actualCall("boo2")->returnValue(); mock_c()->returnValue(); mock_c()->expectOneCall("boo3")->andReturnStringValue("hello world"); mock_c()->actualCall("boo3")->returnValue(); mock_c()->returnValue(); mock_c()->expectOneCall("boo4")->andReturnPointerValue((void*) 10); mock_c()->actualCall("boo4")->returnValue(); mock_c()->returnValue(); mock_c()->disable(); mock_c()->actualCall("disabled"); mock_c()->enable(); mock_c()->checkExpectations(); mock_scope_c("scope")->expectOneCall("boo"); mock_scope_c("other")->expectedCallsLeft(); mock_scope_c("scope")->expectedCallsLeft(); mock_scope_c("scope")->actualCall("boo"); } cpputest-3.4/tests/CppUTestExt/TestGTest.cpp0000644000175300017530000001443012134202450016075 00000000000000/* * Copyright (c) 2011, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifdef CPPUTEST_USE_REAL_GTEST #undef new #endif #include "gtest/gtest.h" static bool g_GTestEqual_has_been_called = false; TEST(GTestSimpleTest, GTestEqual) { EXPECT_EQ(1, 1); g_GTestEqual_has_been_called = true; } TEST(GTestSimpleTest, GTestAssertEq) { ASSERT_EQ(1, 1); } TEST(GTestSimpleTest, GTestExpectTrue) { EXPECT_TRUE(true); } TEST(GTestSimpleTest, GTestAssertTrue) { ASSERT_TRUE(true); } TEST(GTestSimpleTest, GTestExpectFalse) { EXPECT_FALSE(false); } TEST(GTestSimpleTest, GTestExpectStreq) { EXPECT_STREQ("hello world", "hello world"); } #ifdef CPPUTEST_USE_REAL_GTEST /* Death tests are IMHO not a good idea at all. But for compatibility reason, we'll support it */ static void crashMe () { fprintf(stderr, "Crash me!"); *((int*) 0) = 10; } TEST(GTestSimpleTest, GTestDeathTest) { ASSERT_DEATH(crashMe(), "Crash me!"); } #endif class GTestTestingFixtureTest : public testing::Test { protected: bool setup_was_called; char* freed_during_teardown; void SetUp() { setup_was_called = true; freed_during_teardown = NULL; } void TearDown() { delete [] freed_during_teardown; } }; TEST_F(GTestTestingFixtureTest, setupBeenCalled) { EXPECT_TRUE(setup_was_called); } TEST_F(GTestTestingFixtureTest, teardownMustBeCalledOrElseThisWillLeak) { freed_during_teardown = new char[100]; } #undef TEST #undef RUN_ALL_TESTS #undef FAIL #include "CppUTest/TestHarness.h" #include "CppUTest/TestRegistry.h" #include "CppUTest/TestOutput.h" #include "CppUTest/TestTestingFixture.h" #include "CppUTestExt/GTestConvertor.h" #ifdef CPPUTEST_USE_REAL_GTEST TEST_GROUP(GTestConvertor) { }; TEST(GTestConvertor, correctNumberOfTestCases) { LONGS_EQUAL(2, ::testing::UnitTest::GetInstance()->total_test_case_count()); CHECK(::testing::UnitTest::GetInstance()->GetTestCase(0)); CHECK(::testing::UnitTest::GetInstance()->GetTestCase(1)); CHECK(::testing::UnitTest::GetInstance()->GetTestCase(2) == NULL); } TEST(GTestConvertor, correctNumberOfTestsInTheTestCases) { const ::testing::TestCase* firstTestCase = ::testing::UnitTest::GetInstance()->GetTestCase(0); const ::testing::TestCase* secondTestCase = ::testing::UnitTest::GetInstance()->GetTestCase(1); STRCMP_EQUAL("GTestSimpleTest", firstTestCase->name()); STRCMP_EQUAL("GTestTestingFixtureTest", secondTestCase->name()); LONGS_EQUAL(7, firstTestCase->total_test_count()); LONGS_EQUAL(2, secondTestCase->total_test_count()); } TEST(GTestConvertor, testsGetAddedToCurrentTestRegistry) { TestTestingFixture fixture; TestRegistry::getCurrentRegistry()->unDoLastAddTest(); GTestConvertor convertor(false); convertor.addAllGTestToTestRegistry(); LONGS_EQUAL(9, TestRegistry::getCurrentRegistry()->countTests()); } #endif TEST_GROUP(gtest) { }; TEST(gtest, SimpleGoogleTestExists) { TestRegistry* registry = TestRegistry::getCurrentRegistry(); CHECK(registry->findTestWithName("GTestEqual")); } TEST(gtest, SimpleGoogleTestGroupExists) { TestRegistry* registry = TestRegistry::getCurrentRegistry(); CHECK(registry->findTestWithGroup("GTestSimpleTest")); } TEST(gtest, SimpleGoogleTestGetCalled) { StringBufferTestOutput output; TestResult result(output); TestPlugin plugin("dummy"); TestRegistry* registry = TestRegistry::getCurrentRegistry(); UtestShell * shell = registry->findTestWithName("GTestEqual"); g_GTestEqual_has_been_called = false; shell->runOneTest(&plugin, result); CHECK(g_GTestEqual_has_been_called); } static bool afterCheck; static void _failMethodEXPECT_EQ() { EXPECT_EQ(1, 2); afterCheck = true; } static void _failMethodASSERT_EQ() { ASSERT_EQ(1, 2); afterCheck = true; } static void _failMethodEXPECT_TRUE() { EXPECT_TRUE(false); afterCheck = true; } static void _failMethodASSERT_TRUE() { ASSERT_TRUE(false); afterCheck = true; } static void _failMethodEXPECT_FALSE() { EXPECT_FALSE(true); afterCheck = true; } static void _failMethodEXPECT_STREQ() { EXPECT_STREQ("hello", "world"); afterCheck = true; } TEST_GROUP(gtestMacros) { TestTestingFixture* fixture; void setup() { fixture = new TestTestingFixture(); afterCheck = false; } void teardown() { delete fixture; } void testFailureWith(void(*method)()) { fixture->setTestFunction(method); fixture->runAllTests(); LONGS_EQUAL(1, fixture->getFailureCount()); CHECK(!afterCheck); } }; TEST(gtestMacros, EXPECT_EQFails) { testFailureWith(_failMethodEXPECT_EQ); } TEST(gtestMacros, EXPECT_TRUEFails) { testFailureWith(_failMethodEXPECT_TRUE); } TEST(gtestMacros, EXPECT_FALSEFails) { testFailureWith(_failMethodEXPECT_FALSE); } TEST(gtestMacros, EXPECT_STREQFails) { testFailureWith(_failMethodEXPECT_STREQ); } TEST(gtestMacros, ASSERT_EQFails) { testFailureWith(_failMethodASSERT_EQ); } TEST(gtestMacros, ASSERT_TRUEFails) { testFailureWith(_failMethodASSERT_TRUE); } cpputest-3.4/tests/CppUTestExt/TestMockExpectedFunctionsList.cpp0000644000175300017530000002015512023251675022162 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" #include "CppUTestExt/MockExpectedFunctionsList.h" #include "CppUTestExt/MockExpectedFunctionCall.h" #include "CppUTestExt/MockFailure.h" #include "TestMockFailure.h" TEST_GROUP(MockExpectedFunctionsList) { MockExpectedFunctionsList * list; MockExpectedFunctionCall* call1; MockExpectedFunctionCall* call2; MockExpectedFunctionCall* call3; MockExpectedFunctionCall* call4; void setup() { list = new MockExpectedFunctionsList; call1 = new MockExpectedFunctionCall; call2 = new MockExpectedFunctionCall; call3 = new MockExpectedFunctionCall; call4 = new MockExpectedFunctionCall; call1->withName("foo"); call2->withName("bar"); call3->withName("boo"); } void teardown() { delete call1; delete call2; delete call3; delete call4; delete list; CHECK_NO_MOCK_FAILURE(); } }; TEST(MockExpectedFunctionsList, emptyList) { CHECK(! list->hasUnfullfilledExpectations()); CHECK(! list->hasFulfilledExpectations()); LONGS_EQUAL(0, list->size()); } TEST(MockExpectedFunctionsList, addingCalls) { list->addExpectedCall(call1); list->addExpectedCall(call2); LONGS_EQUAL(2, list->size()); } TEST(MockExpectedFunctionsList, listWithFulfilledExpectationHasNoUnfillfilledOnes) { call1->callWasMade(1); call2->callWasMade(2); list->addExpectedCall(call1); list->addExpectedCall(call2); CHECK(! list->hasUnfullfilledExpectations()); } TEST(MockExpectedFunctionsList, listWithFulfilledExpectationButOutOfOrder) { call1->withCallOrder(1); call2->withCallOrder(2); list->addExpectedCall(call1); list->addExpectedCall(call2); call2->callWasMade(1); call1->callWasMade(2); CHECK(! list->hasUnfullfilledExpectations()); CHECK(list->hasCallsOutOfOrder()); } TEST(MockExpectedFunctionsList, listWithUnFulfilledExpectationHasNoUnfillfilledOnes) { call1->callWasMade(1); call3->callWasMade(2); list->addExpectedCall(call1); list->addExpectedCall(call2); list->addExpectedCall(call3); CHECK(list->hasUnfullfilledExpectations()); } TEST(MockExpectedFunctionsList, deleteAllExpectationsAndClearList) { list->addExpectedCall(new MockExpectedFunctionCall); list->addExpectedCall(new MockExpectedFunctionCall); list->deleteAllExpectationsAndClearList(); } TEST(MockExpectedFunctionsList, onlyKeepUnfulfilledExpectationsRelatedTo) { call1->withName("relate"); call2->withName("unrelate"); call3->withName("relate"); call3->callWasMade(1); list->addExpectedCall(call1); list->addExpectedCall(call2); list->addExpectedCall(call3); list->onlyKeepUnfulfilledExpectationsRelatedTo("relate"); LONGS_EQUAL(1, list->size()); } TEST(MockExpectedFunctionsList, removeAllExpectationsExceptThisThatRelateToTheWoleList) { call1->withName("relate"); call2->withName("relate"); call3->withName("relate"); list->addExpectedCall(call1); list->addExpectedCall(call2); list->addExpectedCall(call3); list->onlyKeepUnfulfilledExpectationsRelatedTo("unrelate"); LONGS_EQUAL(0, list->size()); } TEST(MockExpectedFunctionsList, removeAllExpectationsExceptThisThatRelateToFirstOne) { call1->withName("relate"); call2->withName("unrelate"); list->addExpectedCall(call1); list->addExpectedCall(call2); list->onlyKeepUnfulfilledExpectationsRelatedTo("unrelate"); LONGS_EQUAL(1, list->size()); } TEST(MockExpectedFunctionsList, removeAllExpectationsExceptThisThatRelateToLastOne) { call1->withName("unrelate"); call2->withName("relate"); list->addExpectedCall(call1); list->addExpectedCall(call2); list->onlyKeepUnfulfilledExpectationsRelatedTo("unrelate"); LONGS_EQUAL(1, list->size()); } TEST(MockExpectedFunctionsList, onlyKeepExpectationsWithParameterName) { call1->withName("func").withParameter("param", 1); call2->withName("func").withParameter("diffname", 1); call3->withName("func").withParameter("diffname", 1); list->addExpectedCall(call1); list->addExpectedCall(call2); list->addExpectedCall(call3); list->onlyKeepExpectationsWithParameterName("diffname"); LONGS_EQUAL(2, list->size()); } TEST(MockExpectedFunctionsList, onlyKeepUnfulfilledExpectationsWithParameter) { MockNamedValue parameter("diffname"); parameter.setValue(1); call1->withName("func").withParameter("param", 1); call2->withName("func").withParameter("diffname", 1); call3->withName("func").withParameter("diffname", 1); call4->withName("func").withParameter("diffname", 2); call3->callWasMade(1); call3->parameterWasPassed("diffname"); list->addExpectedCall(call1); list->addExpectedCall(call2); list->addExpectedCall(call3); list->addExpectedCall(call4); list->onlyKeepUnfulfilledExpectationsWithParameter(parameter); LONGS_EQUAL(1, list->size()); } TEST(MockExpectedFunctionsList, addUnfilfilledExpectationsWithEmptyList) { MockExpectedFunctionsList newList; newList.addUnfilfilledExpectations(*list); LONGS_EQUAL(0, newList.size()); } TEST(MockExpectedFunctionsList, addUnfilfilledExpectationsMultipleUnfulfilledExpectations) { call2->callWasMade(1); list->addExpectedCall(call1); list->addExpectedCall(call2); list->addExpectedCall(call3); MockExpectedFunctionsList newList; newList.addUnfilfilledExpectations(*list); LONGS_EQUAL(2, newList.size()); } TEST(MockExpectedFunctionsList, amountOfExpectationsFor) { call1->withName("foo"); call2->withName("bar"); list->addExpectedCall(call1); list->addExpectedCall(call2); LONGS_EQUAL(1, list->amountOfExpectationsFor("bar")); } TEST(MockExpectedFunctionsList, amountOfExpectationsForHasNone) { call1->withName("foo"); list->addExpectedCall(call1); LONGS_EQUAL(0, list->amountOfExpectationsFor("bar")); } TEST(MockExpectedFunctionsList, callToStringForUnfulfilledFunctions) { call1->withName("foo"); call2->withName("bar"); call3->withName("blah"); call3->callWasMade(1); list->addExpectedCall(call1); list->addExpectedCall(call2); list->addExpectedCall(call3); SimpleString expectedString; expectedString = StringFromFormat("%s\n%s", call1->callToString().asCharString(), call2->callToString().asCharString()); STRCMP_EQUAL(expectedString.asCharString(), list->unfulfilledFunctionsToString().asCharString()); } TEST(MockExpectedFunctionsList, callToStringForFulfilledFunctions) { call1->withName("foo"); call2->withName("bar"); call2->callWasMade(1); call1->callWasMade(2); list->addExpectedCall(call1); list->addExpectedCall(call2); SimpleString expectedString; expectedString = StringFromFormat("%s\n%s", call2->callToString().asCharString(), call1->callToString().asCharString()); STRCMP_EQUAL(expectedString.asCharString(), list->fulfilledFunctionsToString().asCharString()); } TEST(MockExpectedFunctionsList, toStringOnEmptyList) { STRCMP_EQUAL("", list->unfulfilledFunctionsToString().asCharString()); } cpputest-3.4/tests/CppUTestExt/TestMemoryReportAllocator.cpp0000644000175300017530000000374612023251675021376 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" #include "CppUTest/TestOutput.h" #include "CppUTestExt/MemoryReportAllocator.h" #include "CppUTestExt/MemoryReportFormatter.h" TEST_GROUP(MemoryReportAllocator) { }; TEST(MemoryReportAllocator, FunctionsAreForwardedForMallocAllocator) { MemoryReportAllocator allocator; allocator.setRealAllocator(getCurrentMallocAllocator()); STRCMP_EQUAL("malloc", allocator.alloc_name()); } cpputest-3.4/tests/CppUTestExt/TestMockFailure.cpp0000644000175300017530000002062312023251675017263 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" #include "CppUTestExt/MockFailure.h" #include "CppUTestExt/MockExpectedFunctionCall.h" #include "CppUTestExt/MockExpectedFunctionsList.h" #include "TestMockFailure.h" TEST_GROUP(MockFailureTest) { MockFailureReporter reporter; MockExpectedFunctionsList *list; MockExpectedFunctionCall* call1; MockExpectedFunctionCall* call2; MockExpectedFunctionCall* call3; void setup () { list = new MockExpectedFunctionsList; call1 = new MockExpectedFunctionCall; call2 = new MockExpectedFunctionCall; call3 = new MockExpectedFunctionCall; } void teardown () { delete list; delete call1; delete call2; delete call3; CHECK_NO_MOCK_FAILURE(); } void addAllToList() { list->addExpectedCall(call1); list->addExpectedCall(call2); list->addExpectedCall(call3); } }; TEST(MockFailureTest, noErrorFailureSomethingGoneWrong) { MockFailure failure(UtestShell::getCurrent()); STRCMP_EQUAL("Test failed with MockFailure without an error! Something went seriously wrong.", failure.getMessage().asCharString()); } TEST(MockFailureTest, unexpectedCallHappened) { MockUnexpectedCallHappenedFailure failure(UtestShell::getCurrent(), "foobar", *list); STRCMP_EQUAL("Mock Failure: Unexpected call to function: foobar\n" "\tEXPECTED calls that did NOT happen:\n" "\t\t\n" "\tACTUAL calls that did happen (in call order):\n" "\t\t", failure.getMessage().asCharString()); } TEST(MockFailureTest, expectedCallDidNotHappen) { call1->withName("foobar"); call2->withName("world").withParameter("boo", 2).withParameter("hello", "world"); call3->withName("haphaphap"); call3->callWasMade(1); addAllToList(); MockExpectedCallsDidntHappenFailure failure(UtestShell::getCurrent(), *list); STRCMP_EQUAL("Mock Failure: Expected call did not happen.\n" "\tEXPECTED calls that did NOT happen:\n" "\t\tfoobar -> no parameters\n" "\t\tworld -> int boo: <2>, char* hello: \n" "\tACTUAL calls that did happen (in call order):\n" "\t\thaphaphap -> no parameters", failure.getMessage().asCharString()); } TEST(MockFailureTest, MockUnexpectedAdditionalCallFailure) { call1->withName("bar"); call1->callWasMade(1); list->addExpectedCall(call1); MockUnexpectedCallHappenedFailure failure(UtestShell::getCurrent(), "bar", *list); STRCMP_CONTAINS("Mock Failure: Unexpected additional (2th) call to function: bar\n\tEXPECTED", failure.getMessage().asCharString()); } TEST(MockFailureTest, MockUnexpectedParameterFailure) { call1->withName("foo").withParameter("boo", 2); call2->withName("foo").withParameter("boo", 10); call3->withName("unrelated"); addAllToList(); MockNamedValue actualParameter("bar"); actualParameter.setValue(2); MockUnexpectedParameterFailure failure(UtestShell::getCurrent(), "foo", actualParameter, *list); STRCMP_EQUAL("Mock Failure: Unexpected parameter name to function \"foo\": bar\n" "\tEXPECTED calls that DID NOT happen related to function: foo\n" "\t\tfoo -> int boo: <2>\n" "\t\tfoo -> int boo: <10>\n" "\tACTUAL calls that DID happen related to function: foo\n" "\t\t\n" "\tACTUAL unexpected parameter passed to function: foo\n" "\t\tint bar: <2>", failure.getMessage().asCharString()); } TEST(MockFailureTest, MockUnexpectedParameterValueFailure) { call1->withName("foo").withParameter("boo", 2); call2->withName("foo").withParameter("boo", 10); call3->withName("unrelated"); addAllToList(); MockNamedValue actualParameter("boo"); actualParameter.setValue(20); MockUnexpectedParameterFailure failure(UtestShell::getCurrent(), "foo", actualParameter, *list); STRCMP_EQUAL("Mock Failure: Unexpected parameter value to parameter \"boo\" to function \"foo\": <20>\n" "\tEXPECTED calls that DID NOT happen related to function: foo\n" "\t\tfoo -> int boo: <2>\n" "\t\tfoo -> int boo: <10>\n" "\tACTUAL calls that DID happen related to function: foo\n" "\t\t\n" "\tACTUAL unexpected parameter passed to function: foo\n" "\t\tint boo: <20>", failure.getMessage().asCharString()); } TEST(MockFailureTest, MockExpectedParameterDidntHappenFailure) { call1->withName("foo").withParameter("bar", 2).withParameter("boo", "str"); call2->withName("foo").withParameter("bar", 10).withParameter("boo", "bleh"); call2->callWasMade(1); call2->parameterWasPassed("bar"); call2->parameterWasPassed("boo"); call3->withName("unrelated"); addAllToList(); MockExpectedParameterDidntHappenFailure failure(UtestShell::getCurrent(), "foo", *list); STRCMP_EQUAL("Mock Failure: Expected parameter for function \"foo\" did not happen.\n" "\tEXPECTED calls that DID NOT happen related to function: foo\n" "\t\tfoo -> int bar: <2>, char* boo: \n" "\tACTUAL calls that DID happen related to function: foo\n" "\t\tfoo -> int bar: <10>, char* boo: \n" "\tMISSING parameters that didn't happen:\n" "\t\tint bar, char* boo", failure.getMessage().asCharString()); } TEST(MockFailureTest, MockNoWayToCompareCustomTypeFailure) { MockNoWayToCompareCustomTypeFailure failure(UtestShell::getCurrent(), "myType"); STRCMP_EQUAL("MockFailure: No way to compare type . Please install a ParameterTypeComparator.", failure.getMessage().asCharString()); } TEST(MockFailureTest, MockUnexpectedObjectFailure) { call1->withName("foo").onObject((void*) 0x02); call2->withName("foo").onObject((void*) 0x03); call2->callWasMade(1); call2->wasPassedToObject(); call3->withName("unrelated"); addAllToList(); MockUnexpectedObjectFailure failure(UtestShell::getCurrent(), "foo", (void*)0x1, *list); STRCMP_EQUAL(StringFromFormat ( "MockFailure: Function called on a unexpected object: foo\n" "\tActual object for call has address: <%p>\n" "\tEXPECTED calls that DID NOT happen related to function: foo\n" "\t\t(object address: %p)::foo -> no parameters\n" "\tACTUAL calls that DID happen related to function: foo\n" "\t\t(object address: %p)::foo -> no parameters", (void*) 0x01, (void*) 0x02, (void*) 0x03).asCharString(), failure.getMessage().asCharString()); } TEST(MockFailureTest, MockExpectedObjectDidntHappenFailure) { call1->withName("foo").onObject((void*) 0x02); call2->withName("foo").onObject((void*) 0x03); call2->callWasMade(1); call2->wasPassedToObject(); call3->withName("unrelated"); addAllToList(); MockExpectedObjectDidntHappenFailure failure(UtestShell::getCurrent(), "foo", *list); STRCMP_EQUAL(StringFromFormat( "Mock Failure: Expected call on object for function \"foo\" but it did not happen.\n" "\tEXPECTED calls that DID NOT happen related to function: foo\n" "\t\t(object address: %p)::foo -> no parameters\n" "\tACTUAL calls that DID happen related to function: foo\n" "\t\t(object address: %p)::foo -> no parameters", (void*) 0x2, (void*) 0x3).asCharString(), failure.getMessage().asCharString()); } cpputest-3.4/tests/CppUTestExt/TestOrderedTest.cpp0000644000175300017530000001251112023251675017303 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" #include "CppUTest/TestOutput.h" #include "CppUTest/TestRegistry.h" #include "CppUTest/TestTestingFixture.h" #include "CppUTestExt/OrderedTest.h" TEST_GROUP(TestOrderedTest) { TestTestingFixture* fixture; OrderedTestShell orderedTest; OrderedTestShell orderedTest2; OrderedTestShell orderedTest3; ExecFunctionTestShell normalTest; ExecFunctionTestShell normalTest2; ExecFunctionTestShell normalTest3; OrderedTestShell* orderedTestCache; void setup() { orderedTestCache = OrderedTestShell::getOrderedTestHead(); OrderedTestShell::setOrderedTestHead(0); fixture = new TestTestingFixture(); fixture->registry_->unDoLastAddTest(); } void teardown() { delete fixture; OrderedTestShell::setOrderedTestHead(orderedTestCache); } void InstallOrderedTest(OrderedTestShell& test, int level) { OrderedTestInstaller(test, "testgroup", "testname", __FILE__, __LINE__, level); } void InstallNormalTest(UtestShell& test) { TestInstaller(test, "testgroup", "testname", __FILE__, __LINE__); } UtestShell* firstTest() { return fixture->registry_->getFirstTest(); } UtestShell* secondTest() { return fixture->registry_->getFirstTest()->getNext(); } }; TEST(TestOrderedTest, TestInstallerSetsFields) { OrderedTestInstaller(orderedTest, "testgroup", "testname", "this.cpp", 10, 5); STRCMP_EQUAL("testgroup", orderedTest.getGroup().asCharString()); STRCMP_EQUAL("testname", orderedTest.getName().asCharString()); STRCMP_EQUAL("this.cpp", orderedTest.getFile().asCharString()); LONGS_EQUAL(10, orderedTest.getLineNumber()); LONGS_EQUAL(5, orderedTest.getLevel()); } TEST(TestOrderedTest, InstallOneText) { InstallOrderedTest(orderedTest, 5); CHECK(firstTest() == &orderedTest); } TEST(TestOrderedTest, OrderedTestsAreLast) { InstallNormalTest(normalTest); InstallOrderedTest(orderedTest, 5); CHECK(firstTest() == &normalTest); CHECK(secondTest() == &orderedTest); } TEST(TestOrderedTest, TwoTestsAddedInReverseOrder) { InstallOrderedTest(orderedTest, 5); InstallOrderedTest(orderedTest2, 3); CHECK(firstTest() == &orderedTest2); CHECK(secondTest() == &orderedTest); } TEST(TestOrderedTest, TwoTestsAddedInOrder) { InstallOrderedTest(orderedTest2, 3); InstallOrderedTest(orderedTest, 5); CHECK(firstTest() == &orderedTest2); CHECK(secondTest() == &orderedTest); } TEST(TestOrderedTest, MultipleOrderedTests) { InstallNormalTest(normalTest); InstallOrderedTest(orderedTest2, 3); InstallNormalTest(normalTest2); InstallOrderedTest(orderedTest, 5); InstallNormalTest(normalTest3); InstallOrderedTest(orderedTest3, 7); UtestShell * firstOrderedTest = firstTest()->getNext()->getNext()->getNext(); CHECK(firstOrderedTest == &orderedTest2); CHECK(firstOrderedTest->getNext() == &orderedTest); CHECK(firstOrderedTest->getNext()->getNext() == &orderedTest3); } TEST(TestOrderedTest, MultipleOrderedTests2) { InstallOrderedTest(orderedTest, 3); InstallOrderedTest(orderedTest2, 1); InstallOrderedTest(orderedTest3, 2); CHECK(firstTest() == &orderedTest2); CHECK(secondTest() == &orderedTest3); CHECK(secondTest()->getNext() == &orderedTest); } TEST_GROUP(TestOrderedTestMacros) { }; static int testNumber = 0; TEST(TestOrderedTestMacros, NormalTest) { CHECK(testNumber == 0); testNumber++; } TEST_ORDERED(TestOrderedTestMacros, Test2, 2) { CHECK(testNumber == 2); testNumber++; } TEST_ORDERED(TestOrderedTestMacros, Test1, 1) { CHECK(testNumber == 1); testNumber++; } TEST_ORDERED(TestOrderedTestMacros, Test4, 4) { CHECK(testNumber == 4); testNumber++; } TEST_ORDERED(TestOrderedTestMacros, Test3, 3) { CHECK(testNumber == 3); testNumber++; } cpputest-3.4/tests/CppUTestExt/TestMemoryReportFormatter.cpp0000664000175300017530000000651412066727207021425 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" #include "CppUTest/TestOutput.h" #include "CppUTestExt/MemoryReportAllocator.h" #include "CppUTestExt/MemoryReportFormatter.h" #define TESTOUPUT_EQUAL(a) STRCMP_EQUAL_LOCATION(a, testOutput.getOutput().asCharString(), __FILE__, __LINE__); TEST_GROUP(NormalMemoryReportFormatter) { char* memory01; StringBufferTestOutput testOutput; TestResult* testResult; NormalMemoryReportFormatter formatter; void setup() { memory01 = (char*) 0x01; testResult = new TestResult(testOutput); } void teardown() { delete testResult; } }; TEST(NormalMemoryReportFormatter, mallocCreatesAnMallocCall) { formatter.report_alloc_memory(testResult, defaultMallocAllocator(), 10, memory01, "file", 9); TESTOUPUT_EQUAL(StringFromFormat("\tAllocation using malloc of size: 10 pointer: %p at file:9\n", memory01).asCharString()); } TEST(NormalMemoryReportFormatter, freeCreatesAnFreeCall) { formatter.report_free_memory(testResult, defaultMallocAllocator(), memory01, "boo", 6); TESTOUPUT_EQUAL(StringFromFormat("\tDeallocation using free of pointer: %p at boo:6\n", memory01).asCharString()); } TEST(NormalMemoryReportFormatter, testStarts) { UtestShell test("groupName", "TestName", "file", 1); formatter.report_test_start(testResult, test); TESTOUPUT_EQUAL("TEST(groupName, TestName)\n"); } TEST(NormalMemoryReportFormatter, testEnds) { UtestShell test("groupName", "TestName", "file", 1); formatter.report_test_end(testResult, test); TESTOUPUT_EQUAL("ENDTEST(groupName, TestName)\n"); } TEST(NormalMemoryReportFormatter, testGroupStarts) { UtestShell test("groupName", "TestName", "file", 1); formatter.report_testgroup_start(testResult, test); TESTOUPUT_EQUAL("------------------------------TEST GROUP(groupName)-----------------------------\n"); } cpputest-3.4/tests/CppUTestExt/TestMemoryReporterPlugin.cpp0000644000175300017530000002741512023251675021242 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" #include "CppUTest/TestOutput.h" #include "CppUTestExt/MemoryReporterPlugin.h" #include "CppUTestExt/MemoryReportFormatter.h" #include "CppUTestExt/MockSupport.h" #include "CppUTestExt/MockNamedValue.h" static TestMemoryAllocator* previousNewAllocator; class TemporaryDefaultNewAllocator { TestMemoryAllocator* newAllocator; public: TemporaryDefaultNewAllocator(TestMemoryAllocator* oldAllocator) { newAllocator = getCurrentNewAllocator(); setCurrentNewAllocator(oldAllocator); } ~TemporaryDefaultNewAllocator() { setCurrentNewAllocator(newAllocator); } }; class MockMemoryReportFormatter : public MemoryReportFormatter { public: virtual void report_testgroup_start(TestResult* result, UtestShell& test) { TemporaryDefaultNewAllocator tempAlloc(previousNewAllocator); mock("formatter").actualCall("report_testgroup_start").withParameter("result", result).withParameter("test", &test); } virtual void report_testgroup_end(TestResult* result, UtestShell& test) { TemporaryDefaultNewAllocator tempAlloc(previousNewAllocator); mock("formatter").actualCall("report_testgroup_end").withParameter("result", result).withParameter("test", &test); } virtual void report_test_start(TestResult* result, UtestShell& test) { TemporaryDefaultNewAllocator tempAlloc(previousNewAllocator); mock("formatter").actualCall("report_test_start").withParameter("result", result).withParameter("test", &test); } virtual void report_test_end(TestResult* result, UtestShell& test) { TemporaryDefaultNewAllocator tempAlloc(previousNewAllocator); mock("formatter").actualCall("report_test_end").withParameter("result", result).withParameter("test", &test); } virtual void report_alloc_memory(TestResult* result, TestMemoryAllocator* allocator, size_t, char* , const char* , int ) { TemporaryDefaultNewAllocator tempAlloc(previousNewAllocator); mock("formatter").actualCall("report_alloc_memory").withParameter("result", result).withParameterOfType("TestMemoryAllocator", "allocator", allocator); } virtual void report_free_memory(TestResult* result, TestMemoryAllocator* allocator, char* , const char* , int ) { TemporaryDefaultNewAllocator tempAlloc(previousNewAllocator); mock("formatter").actualCall("report_free_memory").withParameter("result", result).withParameterOfType("TestMemoryAllocator", "allocator", allocator); } }; static MockMemoryReportFormatter formatterForPluginTest; class MemoryReporterPluginUnderTest : public MemoryReporterPlugin { public: MemoryReportFormatter* createMemoryFormatter(const SimpleString& type) { mock("reporter").actualCall("createMemoryFormatter").onObject(this).withParameter("type", type.asCharString()); return new MockMemoryReportFormatter; } }; class TestMemoryAllocatorComparator : public MockNamedValueComparator { public: bool isEqual(void* object1, void* object2) { return ((TestMemoryAllocator*)object1)->name() == ((TestMemoryAllocator*)object2)->name(); } SimpleString valueToString(void* object) { return ((TestMemoryAllocator*)object)->name(); } }; TEST_GROUP(MemoryReporterPlugin) { MemoryReporterPluginUnderTest* reporter; StringBufferTestOutput output; TestMemoryAllocatorComparator memLeakAllocatorComparator; TestResult* result; UtestShell* test; void setup() { previousNewAllocator = getCurrentNewAllocator(); result = new TestResult(output); test = new UtestShell("groupname", "testname", "filename", 1); reporter = new MemoryReporterPluginUnderTest; mock("formatter").installComparator("TestMemoryAllocator", memLeakAllocatorComparator); mock("reporter").disable(); const char *cmd_line[] = {"-pmemoryreport=normal"}; reporter->parseArguments(1, cmd_line, 0); mock("reporter").enable(); // mock.crashOnFailure(); } void teardown() { delete reporter; delete test; delete result; } }; TEST(MemoryReporterPlugin, offReportsNothing) { MemoryReporterPluginUnderTest freshReporter; freshReporter.preTestAction(*test, *result); char* memory = new char; delete memory; freshReporter.postTestAction(*test, *result); } TEST(MemoryReporterPlugin, meaninglessArgumentsAreIgnored) { const char *cmd_line[] = {"-nothing", "-pnotmemoryreport=normal", "alsomeaningless", "-pmemoryreportnonsensebutnotus"}; CHECK(reporter->parseArguments(3, cmd_line, 1) == false); } TEST(MemoryReporterPlugin, commandLineParameterTurnsOnNormalLogging) { mock("reporter").expectOneCall("createMemoryFormatter").onObject(reporter).withParameter("type", "normal"); const char *cmd_line[] = {"-nothing", "-pmemoryreport=normal", "alsomeaningless" }; CHECK(reporter->parseArguments(3, cmd_line, 1)); } TEST(MemoryReporterPlugin, preTestActionReportsTest) { mock("formatter").expectOneCall("report_testgroup_start").withParameter("result", result).withParameter("test", test); mock("formatter").expectOneCall("report_test_start").withParameter("result", result).withParameter("test", test); reporter->preTestAction(*test, *result); } TEST(MemoryReporterPlugin, postTestActionReportsTest) { mock("formatter").expectOneCall("report_test_end").withParameter("result", result).withParameter("test", test);; mock("formatter").expectOneCall("report_testgroup_end").withParameter("result", result).withParameter("test", test);; reporter->postTestAction(*test, *result); } TEST(MemoryReporterPlugin, newAllocationsAreReportedTest) { mock("formatter").expectOneCall("report_alloc_memory").withParameter("result", result).withParameterOfType("TestMemoryAllocator", "allocator", defaultNewAllocator()); mock("formatter").expectOneCall("report_free_memory").withParameter("result", result).withParameterOfType("TestMemoryAllocator", "allocator", defaultNewAllocator()); mock("formatter").ignoreOtherCalls(); reporter->preTestAction(*test, *result); char *memory = getCurrentNewAllocator()->allocMemoryLeakNode(100); getCurrentNewAllocator()->free_memory(memory, "unknown", 1); } TEST(MemoryReporterPlugin, whenUsingOnlyMallocAllocatorNoOtherOfTheAllocatorsAreUsed) { mock("formatter").expectOneCall("report_test_start").withParameter("result", result).withParameter("test", test); mock("formatter").expectOneCall("report_alloc_memory").withParameter("result", result).withParameterOfType("TestMemoryAllocator", "allocator", defaultMallocAllocator()); mock("formatter").expectOneCall("report_free_memory").withParameter("result", result).withParameterOfType("TestMemoryAllocator", "allocator", defaultMallocAllocator()); mock("formatter").ignoreOtherCalls(); reporter->preTestAction(*test, *result); char *memory = getCurrentMallocAllocator()->allocMemoryLeakNode(100); getCurrentMallocAllocator()->free_memory(memory, "unknown", 1); } TEST(MemoryReporterPlugin, newArrayAllocationsAreReportedTest) { mock("formatter").expectOneCall("report_alloc_memory").withParameter("result", result).withParameterOfType("TestMemoryAllocator", "allocator", defaultNewArrayAllocator()); mock("formatter").expectOneCall("report_free_memory").withParameter("result", result).withParameterOfType("TestMemoryAllocator", "allocator", defaultNewArrayAllocator()); mock("formatter").ignoreOtherCalls(); reporter->preTestAction(*test, *result); char *memory = getCurrentNewArrayAllocator()->allocMemoryLeakNode(100); getCurrentNewArrayAllocator()->free_memory(memory, "unknown", 1); } TEST(MemoryReporterPlugin, mallocAllocationsAreReportedTest) { mock("formatter").expectOneCall("report_alloc_memory").withParameter("result", result).withParameterOfType("TestMemoryAllocator", "allocator", defaultMallocAllocator()); mock("formatter").expectOneCall("report_free_memory").withParameter("result", result).withParameterOfType("TestMemoryAllocator", "allocator", defaultMallocAllocator()); mock("formatter").ignoreOtherCalls(); reporter->preTestAction(*test, *result); char *memory = getCurrentMallocAllocator()->allocMemoryLeakNode(100); getCurrentMallocAllocator()->free_memory(memory, "unknown", 1); } TEST(MemoryReporterPlugin, startOfANewTestWillReportTheTestGroupStart) { mock("formatter").expectOneCall("report_testgroup_start").withParameter("result", result).withParameter("test", test); mock("formatter").expectOneCall("report_test_start").withParameter("result", result).withParameter("test", test); mock("formatter").expectOneCall("report_test_end").withParameter("result", result).withParameter("test", test); mock("formatter").expectOneCall("report_test_start").withParameter("result", result).withParameter("test", test); mock("formatter").expectOneCall("report_test_end").withParameter("result", result).withParameter("test", test); mock("formatter").ignoreOtherCalls(); reporter->preTestAction(*test, *result); reporter->postTestAction(*test, *result); reporter->preTestAction(*test, *result); reporter->postTestAction(*test, *result); } class UtestForMemoryReportingPlugingTest : public UtestShell { public: UtestForMemoryReportingPlugingTest(const char* groupname, UtestShell* test) : UtestShell(groupname, "testname", "filename", 1, test) { } }; TEST(MemoryReporterPlugin, endOfaTestGroupWillReportSo) { UtestForMemoryReportingPlugingTest fourthTest("differentGroupName", NULL); UtestForMemoryReportingPlugingTest thirdTest("differentGroupName", &fourthTest); UtestForMemoryReportingPlugingTest secondTest("groupname", &thirdTest); UtestForMemoryReportingPlugingTest firstTest("groupname", &secondTest); mock("formatter").expectOneCall("report_testgroup_end").withParameter("result", result).withParameter("test", &secondTest); mock("formatter").ignoreOtherCalls(); reporter->preTestAction(firstTest, *result); reporter->postTestAction(firstTest, *result); reporter->preTestAction(secondTest, *result); reporter->postTestAction(secondTest, *result); reporter->preTestAction(thirdTest, *result); reporter->postTestAction(thirdTest, *result); } TEST(MemoryReporterPlugin, preActionReplacesAllocators) { mock("formatter").ignoreOtherCalls(); TestMemoryAllocator* allocator = getCurrentMallocAllocator(); reporter->preTestAction(*test, *result); CHECK(allocator != getCurrentMallocAllocator()); } TEST(MemoryReporterPlugin, postActionRestoresAllocators) { mock("formatter").ignoreOtherCalls(); TestMemoryAllocator* allocator = getCurrentMallocAllocator(); reporter->preTestAction(*test, *result); reporter->postTestAction(*test, *result); CHECK(allocator == getCurrentMallocAllocator()); } cpputest-3.4/tests/CppUTestExt/TestMockPlugin.cpp0000644000175300017530000001134112023251675017127 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" #include "CppUTest/TestOutput.h" #include "CppUTestExt/MockSupport.h" #include "CppUTestExt/MockSupportPlugin.h" #include "TestMockFailure.h" TEST_GROUP(MockPlugin) { UtestShell *test; StringBufferTestOutput *output; TestResult *result; MockExpectedFunctionsList *expectationsList; MockExpectedFunctionCall *call; MockSupportPlugin *plugin; void setup() { mock().setMockFailureReporter(MockFailureReporterForTest::getReporter()); test = new UtestShell("group", "name", "file", 1); output = new StringBufferTestOutput; result = new TestResult(*output); expectationsList = new MockExpectedFunctionsList; call = new MockExpectedFunctionCall; expectationsList->addExpectedCall(call); plugin = new MockSupportPlugin;; } void teardown() { delete test; delete output; delete result; delete expectationsList; delete call; delete plugin; CHECK_NO_MOCK_FAILURE(); mock().setMockFailureReporter(NULL); } }; TEST(MockPlugin, checkExpectationsAndClearAtEnd) { call->withName("foobar"); MockExpectedCallsDidntHappenFailure expectedFailure(test, *expectationsList); mock().expectOneCall("foobar"); plugin->postTestAction(*test, *result); STRCMP_CONTAINS(expectedFailure.getMessage().asCharString(), output->getOutput().asCharString()) LONGS_EQUAL(0, mock().expectedCallsLeft()); // clear makes sure there are no memory leaks. } TEST(MockPlugin, checkExpectationsWorksAlsoWithHierachicalObjects) { call->withName("foobar").onObject((void*) 1); MockExpectedObjectDidntHappenFailure expectedFailure(test, "foobar", *expectationsList); mock("differentScope").expectOneCall("foobar").onObject((void*) 1); mock("differentScope").actualCall("foobar"); plugin->postTestAction(*test, *result); STRCMP_CONTAINS(expectedFailure.getMessage().asCharString(), output->getOutput().asCharString()) } class DummyComparator : public MockNamedValueComparator { public: bool isEqual(void* object1, void* object2) { return object1 == object2; } SimpleString valueToString(void*) { return "string"; } }; TEST(MockPlugin, installComparatorRecordsTheComparatorButNotInstallsItYet) { DummyComparator comparator; plugin->installComparator("myType", comparator); mock().expectOneCall("foo").withParameterOfType("myType", "name", &comparator); mock().actualCall("foo").withParameterOfType("myType", "name", &comparator); MockNoWayToCompareCustomTypeFailure failure(test, "myType"); CHECK_EXPECTED_MOCK_FAILURE(failure); } TEST(MockPlugin, preTestActionWillEnableMultipleComparatorsToTheGlobalMockSupportSpace) { DummyComparator comparator; DummyComparator comparator2; plugin->installComparator("myType", comparator); plugin->installComparator("myOtherType", comparator2); plugin->preTestAction(*test, *result); mock().expectOneCall("foo").withParameterOfType("myType", "name", &comparator); mock().expectOneCall("foo").withParameterOfType("myOtherType", "name", &comparator); mock().actualCall("foo").withParameterOfType("myType", "name", &comparator); mock().actualCall("foo").withParameterOfType("myOtherType", "name", &comparator); mock().checkExpectations(); CHECK_NO_MOCK_FAILURE(); LONGS_EQUAL(0, result->getFailureCount()); } cpputest-3.4/tests/CppUTestExt/CMakeLists.txt0000644000175300017530000000137712134163705016262 00000000000000set(CppUTestExtTests_src AllTests.cpp TestMockActualFunctionCall.cpp TestMockSupport.cpp TestCodeMemoryReportFormatter.cpp TestMockCheatSheet.cpp TestMockSupport_c.cpp TestGMock.cpp TestMockExpectedFunctionCall.cpp TestMockSupport_cCFile.c TestGTest.cpp TestMockExpectedFunctionsList.cpp TestMemoryReportAllocator.cpp TestMockFailure.cpp TestOrderedTest.cpp TestMemoryReportFormatter.cpp TestMemoryReporterPlugin.cpp TestMockPlugin.cpp ) add_executable(CppUTestExtTests ${CppUTestExtTests_src}) target_link_libraries(CppUTestExtTests CppUTest CppUTestExt ${CPPUNIT_EXTERNAL_LIBRARIES}) add_test(CppUTestExtTests CppUTestExtTests) cpputest-3.4/tests/CppUTestExt/TestMockFailure.h0000644000175300017530000000711412134163705016727 00000000000000 /* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef D_TestMockFailure_h #define D_TestMockFailure_h #define CHECK_EXPECTED_MOCK_FAILURE(expectedFailure) CHECK_EXPECTED_MOCK_FAILURE_LOCATION(expectedFailure, __FILE__, __LINE__) #define CHECK_NO_MOCK_FAILURE() CHECK_NO_MOCK_FAILURE_LOCATION(__FILE__, __LINE__) class MockFailureReporterForTest : public MockFailureReporter { public: SimpleString mockFailureString; int amountOfFailures; MockFailureReporterForTest() : amountOfFailures(0) {} virtual void failTest(const MockFailure& failure) { amountOfFailures++; mockFailureString = failure.getMessage(); } virtual int getAmountOfTestFailures() { return amountOfFailures; } static MockFailureReporterForTest* getReporter() { static MockFailureReporterForTest reporter; return &reporter; } }; inline UtestShell* mockFailureTest() { return MockFailureReporterForTest::getReporter()->getTestToFail(); } inline SimpleString mockFailureString() { return MockFailureReporterForTest::getReporter()->mockFailureString; } inline void CLEAR_MOCK_FAILURE() { MockFailureReporterForTest::getReporter()->mockFailureString = ""; MockFailureReporterForTest::getReporter()->amountOfFailures = 0; } inline void CHECK_EXPECTED_MOCK_FAILURE_LOCATION(const MockFailure& expectedFailure, const char* file, int line) { SimpleString expectedFailureString = expectedFailure.getMessage(); SimpleString actualFailureString = mockFailureString(); CLEAR_MOCK_FAILURE(); if (expectedFailureString != actualFailureString) { SimpleString error = "MockFailures are different.\n"; error += "Expected MockFailure:\n\t"; error += expectedFailureString; error += "\nActual MockFailure:\n\t"; error += actualFailureString; FAIL_LOCATION(error.asCharString(), file, line); } } inline void CHECK_NO_MOCK_FAILURE_LOCATION(const char* file, int line) { if (mockFailureString() != "") { SimpleString error = "Unexpected mock failure:\n"; error += mockFailureString(); CLEAR_MOCK_FAILURE(); FAIL_LOCATION(error.asCharString(), file, line); } CLEAR_MOCK_FAILURE(); } #endif cpputest-3.4/tests/CppUTestExt/TestMockSupport_cCFile.h0000664000175300017530000000340712066727207020233 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef __TestMockSupportc_CFile__h #define __TestMockSupportc_CFile__h #ifdef __cplusplus extern "C" { #endif extern void all_mock_support_c_calls(void); #ifdef __cplusplus } #endif #endif cpputest-3.4/tests/AllTests.cpp0000644000175300017530000000355012023251675013565 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/CommandLineTestRunner.h" int main(int ac, const char** av) { /* These checks are here to make sure assertions outside test runs don't crash */ CHECK(true); LONGS_EQUAL(1, 1); return CommandLineTestRunner::RunAllTests(ac, av); } cpputest-3.4/tests/SetPluginTest.cpp0000644000175300017530000000507112134176151014602 00000000000000#include "CppUTest/TestHarness.h" #include "CppUTest/TestRegistry.h" #include "CppUTest/TestOutput.h" #include "CppUTest/TestPlugin.h" static void orig_func1() { } static void stub_func1() { } static void orig_func2() { } static void stub_func2() { } static void (*fp1)(); static void (*fp2)(); TEST_GROUP(SetPointerPluginTest) { SetPointerPlugin* plugin_; TestRegistry* myRegistry_; StringBufferTestOutput* output_; TestResult* result_; void setup() { myRegistry_ = new TestRegistry(); plugin_ = new SetPointerPlugin("TestSetPlugin"); myRegistry_->setCurrentRegistry(myRegistry_); myRegistry_->installPlugin(plugin_); output_ = new StringBufferTestOutput(); result_ = new TestResult(*output_); } void teardown() { myRegistry_->setCurrentRegistry(0); delete myRegistry_; delete plugin_; delete output_; delete result_; } }; class FunctionPointerUtest: public UtestShell { public: void setup() { UT_PTR_SET(fp1, stub_func1); UT_PTR_SET(fp2, stub_func2); UT_PTR_SET(fp2, stub_func2); } void testBody() { CHECK(fp1 == stub_func1); CHECK(fp2 == stub_func2); } }; TEST(SetPointerPluginTest, installTwoFunctionPointer) { FunctionPointerUtest *tst = new FunctionPointerUtest(); ; fp1 = orig_func1; fp2 = orig_func2; myRegistry_->addTest(tst); myRegistry_->runAllTests(*result_); CHECK(fp1 == orig_func1); CHECK(fp2 == orig_func2); LONGS_EQUAL(0, result_->getFailureCount()); delete tst; } class MaxFunctionPointerUtest: public UtestShell { public: int numOfFpSets; MaxFunctionPointerUtest(int num) : numOfFpSets(num) { } void setup() { for (int i = 0; i < numOfFpSets; ++i) UT_PTR_SET(fp1, stub_func1); } }; IGNORE_TEST(SetPointerPluginTest, installTooMuchFunctionPointer) { MaxFunctionPointerUtest *tst = new MaxFunctionPointerUtest(SetPointerPlugin::MAX_SET + 1); myRegistry_->addTest(tst); myRegistry_->runAllTests(*result_); LONGS_EQUAL(1, result_->getFailureCount()); delete tst; } static double orig_double = 3.0; static double* orig_double_ptr = &orig_double; static double stub_double = 4.0; class SetDoublePointerUtest: public UtestShell { public: void setup() { UT_PTR_SET(orig_double_ptr, &stub_double); } void testBody() { CHECK(orig_double_ptr == &stub_double); } }; TEST(SetPointerPluginTest, doublePointer) { SetDoublePointerUtest *doubletst = new SetDoublePointerUtest(); myRegistry_->addTest(doubletst); CHECK(orig_double_ptr == &orig_double); delete doubletst; } cpputest-3.4/tests/CheatSheetTest.cpp0000644000175300017530000000132712023251675014707 00000000000000 static void (*real_one) (); static void stub(){} /* in CheatSheetTest.cpp */ #include "CppUTest/TestHarness.h" /* Declare TestGroup with name CheatSheet */ TEST_GROUP(CheatSheet) { /* declare a setup method for the test group. Optional. */ void setup () { /* Set method real_one to stub. Automatically restore in teardown */ UT_PTR_SET(real_one, stub); } /* Declare a teardown method for the test group. Optional */ void teardown() { } }; /* Do not forget semicolumn */ /* Declare one test within the test group */ TEST(CheatSheet, TestName) { /* Check two longs are equal */ LONGS_EQUAL(1, 1); /* Check a condition */ CHECK(true == true); /* Check a string */ STRCMP_EQUAL("HelloWorld", "HelloWorld"); } cpputest-3.4/tests/SimpleStringTest.cpp0000644000175300017530000003471012143637532015317 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" #include "CppUTest/SimpleString.h" #include "CppUTest/PlatformSpecificFunctions.h" #include "CppUTest/TestMemoryAllocator.h" TEST_GROUP(SimpleString) { }; TEST(SimpleString, defaultAllocatorIsNewArrayAllocator) { POINTERS_EQUAL(getCurrentNewArrayAllocator(), SimpleString::getStringAllocator()); } class MyOwnStringAllocator : public TestMemoryAllocator { public: MyOwnStringAllocator() : memoryWasAllocated(false) {} virtual ~MyOwnStringAllocator() {} bool memoryWasAllocated; char* alloc_memory(size_t size, const char* file, int line) { memoryWasAllocated = true; return TestMemoryAllocator::alloc_memory(size, file, line); } }; TEST(SimpleString, allocatorForSimpleStringCanBeReplaced) { MyOwnStringAllocator myOwnAllocator; SimpleString::setStringAllocator(&myOwnAllocator); SimpleString simpleString; CHECK(myOwnAllocator.memoryWasAllocated); SimpleString::setStringAllocator(NULL); } TEST(SimpleString, CreateSequence) { SimpleString expected("hellohello"); SimpleString actual("hello", 2); CHECK_EQUAL(expected, actual); } TEST(SimpleString, CreateSequenceOfZero) { SimpleString expected(""); SimpleString actual("hello", 0); CHECK_EQUAL(expected, actual); } TEST(SimpleString, Copy) { SimpleString s1("hello"); SimpleString s2(s1); CHECK_EQUAL(s1, s2); } TEST(SimpleString, Assignment) { SimpleString s1("hello"); SimpleString s2("goodbye"); s2 = s1; CHECK_EQUAL(s1, s2); } TEST(SimpleString, Equality) { SimpleString s1("hello"); SimpleString s2("hello"); CHECK(s1 == s2); } TEST(SimpleString, InEquality) { SimpleString s1("hello"); SimpleString s2("goodbye"); CHECK(s1 != s2); } TEST(SimpleString, CompareNoCaseWithoutCase) { SimpleString s1("hello"); SimpleString s2("hello"); CHECK(s1.equalsNoCase(s2)); } TEST(SimpleString, CompareNoCaseWithCase) { SimpleString s1("hello"); SimpleString s2("HELLO"); CHECK(s1.equalsNoCase(s2)); } TEST(SimpleString, CompareNoCaseWithCaseNotEqual) { SimpleString s1("hello"); SimpleString s2("WORLD"); CHECK(!s1.equalsNoCase(s2)); } TEST(SimpleString, asCharString) { SimpleString s1("hello"); STRCMP_EQUAL("hello", s1.asCharString()); } TEST(SimpleString, Size) { SimpleString s1("hello!"); LONGS_EQUAL(6, s1.size()); } TEST(SimpleString, toLower) { SimpleString s1("AbCdEfG"); SimpleString s2(s1.toLower()); STRCMP_EQUAL("abcdefg", s2.asCharString()); STRCMP_EQUAL("AbCdEfG", s1.asCharString()); } TEST(SimpleString, Addition) { SimpleString s1("hello!"); SimpleString s2("goodbye!"); SimpleString s3("hello!goodbye!"); SimpleString s4; s4 = s1 + s2; CHECK_EQUAL(s3, s4); } TEST(SimpleString, Concatenation) { SimpleString s1("hello!"); SimpleString s2("goodbye!"); SimpleString s3("hello!goodbye!"); SimpleString s4; s4 += s1; s4 += s2; CHECK_EQUAL(s3, s4); SimpleString s5("hello!goodbye!hello!goodbye!"); s4 += s4; CHECK_EQUAL(s5, s4); } TEST(SimpleString, Contains) { SimpleString s("hello!"); SimpleString empty(""); SimpleString beginning("hello"); SimpleString end("lo!"); SimpleString mid("l"); SimpleString notPartOfString("xxxx"); CHECK(s.contains(empty)); CHECK(s.contains(beginning)); CHECK(s.contains(end)); CHECK(s.contains(mid)); CHECK(!s.contains(notPartOfString)); CHECK(empty.contains(empty)); CHECK(!empty.contains(s)); } TEST(SimpleString, startsWith) { SimpleString hi("Hi you!"); SimpleString part("Hi"); SimpleString diff("Hrrm Hi you! ffdsfd"); CHECK(hi.startsWith(part)); CHECK(!part.startsWith(hi)); CHECK(!diff.startsWith(hi)); } TEST(SimpleString, split) { SimpleString hi("hello\nworld\nhow\ndo\nyou\ndo\n\n"); SimpleStringCollection collection; hi.split("\n", collection); LONGS_EQUAL(7, collection.size()); STRCMP_EQUAL("hello\n", collection[0].asCharString()); STRCMP_EQUAL("world\n", collection[1].asCharString()); STRCMP_EQUAL("how\n", collection[2].asCharString()); STRCMP_EQUAL("do\n", collection[3].asCharString()); STRCMP_EQUAL("you\n", collection[4].asCharString()); STRCMP_EQUAL("do\n", collection[5].asCharString()); STRCMP_EQUAL("\n", collection[6].asCharString()); } TEST(SimpleString, splitNoTokenOnTheEnd) { SimpleString string("Bah Yah oops"); SimpleStringCollection collection; string.split(" ", collection); LONGS_EQUAL(3, collection.size()); STRCMP_EQUAL("Bah ", collection[0].asCharString()); STRCMP_EQUAL("Yah ", collection[1].asCharString()); STRCMP_EQUAL("oops", collection[2].asCharString()); } TEST(SimpleString, count) { SimpleString str("ha ha ha ha"); LONGS_EQUAL(4, str.count("ha")); } TEST(SimpleString, countTogether) { SimpleString str("hahahaha"); LONGS_EQUAL(4, str.count("ha")); } TEST(SimpleString, endsWith) { SimpleString str("Hello World"); CHECK(str.endsWith("World")); CHECK(!str.endsWith("Worl")); CHECK(!str.endsWith("Hello")); SimpleString str2("ah"); CHECK(str2.endsWith("ah")); CHECK(!str2.endsWith("baah")); SimpleString str3(""); CHECK(!str3.endsWith("baah")); SimpleString str4("ha ha ha ha"); CHECK(str4.endsWith("ha")); } TEST(SimpleString, replaceCharWithChar) { SimpleString str("abcabcabca"); str.replace('a', 'b'); STRCMP_EQUAL("bbcbbcbbcb", str.asCharString()); } TEST(SimpleString, replaceStringWithString) { SimpleString str("boo baa boo baa boo"); str.replace("boo", "boohoo"); STRCMP_EQUAL("boohoo baa boohoo baa boohoo", str.asCharString()); } TEST(SimpleString, subStringFromEmptyString) { SimpleString str(""); STRCMP_EQUAL("", str.subString(0, 1).asCharString()); } TEST(SimpleString, subStringFromSmallString) { SimpleString str("H"); STRCMP_EQUAL("H", str.subString(0, 1).asCharString()); } TEST(SimpleString, subStringFromPos0) { SimpleString str("Hello World"); STRCMP_EQUAL("Hello", str.subString(0, 5).asCharString()); } TEST(SimpleString, subStringFromPos1) { SimpleString str("Hello World"); STRCMP_EQUAL("ello ", str.subString(1, 5).asCharString()); } TEST(SimpleString, subStringFromPos5WithAmountLargerThanString) { SimpleString str("Hello World"); STRCMP_EQUAL("World", str.subString(6, 10).asCharString()); } TEST(SimpleString, subStringBeginPosOutOfBounds) { SimpleString str("Hello World"); STRCMP_EQUAL("", str.subString(13, 5).asCharString()); } TEST(SimpleString, subStringFromTillNormal) { SimpleString str("Hello World"); STRCMP_EQUAL("Hello", str.subStringFromTill('H', ' ').asCharString()); } TEST(SimpleString, subStringFromTillOutOfBounds) { SimpleString str("Hello World"); STRCMP_EQUAL("World", str.subStringFromTill('W', '!').asCharString()); } TEST(SimpleString, subStringFromTillStartDoesntExist) { SimpleString str("Hello World"); STRCMP_EQUAL("", str.subStringFromTill('!', ' ').asCharString()); } TEST(SimpleString, subStringFromTillWhenTheEndAppearsBeforeTheStart) { SimpleString str("Hello World"); STRCMP_EQUAL("World", str.subStringFromTill('W', 'H').asCharString()); } TEST(SimpleString, findNormal) { SimpleString str("Hello World"); LONGS_EQUAL(0, str.find('H')); LONGS_EQUAL(1, str.find('e')); LONGS_EQUAL(-1, str.find('!')); } TEST(SimpleString, at) { SimpleString str("Hello World"); BYTES_EQUAL('H', str.at(0)); } TEST(SimpleString, copyInBufferNormal) { SimpleString str("Hello World"); size_t bufferSize = str.size()+1; char* buffer = (char*) malloc(bufferSize); str.copyToBuffer(buffer, bufferSize); STRCMP_EQUAL(str.asCharString(), buffer); free(buffer); } TEST(SimpleString, copyInBufferWithEmptyBuffer) { SimpleString str("Hello World"); char* buffer= NULL; str.copyToBuffer(buffer, 0); POINTERS_EQUAL(NULL, buffer); } TEST(SimpleString, copyInBufferWithBiggerBufferThanNeeded) { SimpleString str("Hello"); size_t bufferSize = 20; char* buffer= (char*) malloc(bufferSize); str.copyToBuffer(buffer, bufferSize); STRCMP_EQUAL(str.asCharString(), buffer); free(buffer); } TEST(SimpleString, ContainsNull) { SimpleString s(0); CHECK(!s.contains("something")); } TEST(SimpleString, NULLReportsNullString) { STRCMP_EQUAL("(null)", StringFromOrNull((char*) NULL).asCharString()); } TEST(SimpleString, Characters) { SimpleString s(StringFrom('a')); SimpleString s2(StringFrom('a')); CHECK(s == s2); } TEST(SimpleString, Doubles) { SimpleString s(StringFrom(1.2)); STRCMP_EQUAL("1.2", s.asCharString()); } TEST(SimpleString, SmallDoubles) { SimpleString s(StringFrom(1.2e-10)); STRCMP_CONTAINS("1.2e", s.asCharString()); } TEST(SimpleString, Sizes) { size_t size = 10; STRCMP_EQUAL("10", StringFrom((int) size).asCharString()); } TEST(SimpleString, HexStrings) { SimpleString h1 = HexStringFrom(0xffff); STRCMP_EQUAL("ffff", h1.asCharString()); } TEST(SimpleString, StringFromFormat) { SimpleString h1 = StringFromFormat("%s %s! %d", "Hello", "World", 2009); STRCMP_EQUAL("Hello World! 2009", h1.asCharString()); } TEST(SimpleString, StringFromFormatpointer) { //this is not a great test. but %p is odd on mingw and even more odd on Solaris. SimpleString h1 = StringFromFormat("%p", 1); if (h1.size() == 3) STRCMP_EQUAL("0x1", h1.asCharString()) else if (h1.size() == 8) STRCMP_EQUAL("00000001", h1.asCharString()) else if (h1.size() == 1) STRCMP_EQUAL("1", h1.asCharString()) else FAIL("Off %p behavior") } TEST(SimpleString, StringFromFormatLarge) { const char* s = "ThisIsAPrettyLargeStringAndIfWeAddThisManyTimesToABufferItWillbeFull"; SimpleString h1 = StringFromFormat("%s%s%s%s%s%s%s%s%s%s", s, s, s, s, s, s, s, s, s, s); LONGS_EQUAL(10, h1.count(s)); } static int WrappedUpVSNPrintf(char* buf, size_t n, const char* format, ...) { va_list arguments; va_start(arguments, format); int result = PlatformSpecificVSNprintf(buf, n, format, arguments); va_end(arguments); return result; } TEST(SimpleString, PlatformSpecificSprintf_fits) { char buf[10]; int count = WrappedUpVSNPrintf(buf, sizeof(buf), "%s", "12345"); STRCMP_EQUAL("12345", buf); LONGS_EQUAL(5, count); } TEST(SimpleString, PlatformSpecificSprintf_doesNotFit) { char buf[10]; int count = WrappedUpVSNPrintf(buf, sizeof(buf), "%s", "12345678901"); STRCMP_EQUAL("123456789", buf); LONGS_EQUAL(11, count); } TEST(SimpleString, PadStringsToSameLengthString1Larger) { SimpleString str1("1"); SimpleString str2("222"); SimpleString::padStringsToSameLength(str1, str2, '4'); STRCMP_EQUAL("441", str1.asCharString()); STRCMP_EQUAL("222", str2.asCharString()); } TEST(SimpleString, PadStringsToSameLengthString2Larger) { SimpleString str1(" "); SimpleString str2(""); SimpleString::padStringsToSameLength(str1, str2, ' '); STRCMP_EQUAL(" ", str1.asCharString()); STRCMP_EQUAL(" ", str2.asCharString()); } TEST(SimpleString, PadStringsToSameLengthWithSameLengthStrings) { SimpleString str1("123"); SimpleString str2("123"); SimpleString::padStringsToSameLength(str1, str2, ' '); STRCMP_EQUAL("123", str1.asCharString()); STRCMP_EQUAL("123", str2.asCharString()); } TEST(SimpleString, NullParameters2) { SimpleString* arr = new SimpleString[100]; delete[] arr; } TEST(SimpleString, CollectionMultipleAllocateNoLeaksMemory) { SimpleStringCollection col; col.allocate(5); col.allocate(5); // CHECK no memory leak } TEST(SimpleString, CollectionReadOutOfBoundsReturnsEmptyString) { SimpleStringCollection col; col.allocate(3); STRCMP_EQUAL("", col[3].asCharString()); } TEST(SimpleString, CollectionWritingToEmptyString) { SimpleStringCollection col; col.allocate(3); col[3] = SimpleString("HAH"); STRCMP_EQUAL("", col[3].asCharString()); } #if CPPUTEST_USE_STD_CPP_LIB TEST(SimpleString, fromStdString) { std::string s("hello"); SimpleString s1(StringFrom(s)); STRCMP_EQUAL("hello", s1.asCharString()); } TEST(SimpleString, CHECK_EQUAL_unsigned_long) { unsigned long i = 0xffffffffUL; CHECK_EQUAL(i, i); } TEST(SimpleString, CHECK_EQUAL_Uint32_t) { uint32_t i = 0xffffffff; CHECK_EQUAL(i, i); } TEST(SimpleString, CHECK_EQUAL_Uint16_t) { uint16_t i = 0xffff; CHECK_EQUAL(i, i); } TEST(SimpleString, CHECK_EQUAL_Uint8_t) { uint8_t i = 0xff; CHECK_EQUAL(i, i); } TEST(SimpleString, unsigned_long) { unsigned long i = 0xffffffffUL; SimpleString result = StringFrom(i); CHECK_EQUAL("4294967295 (0xffffffff)", result); } TEST(SimpleString, Uint32_t) { uint32_t i = 0xffffffff; SimpleString result = StringFrom(i); CHECK_EQUAL("4294967295 (0xffffffff)", result); } TEST(SimpleString, Uint16_t) { uint16_t i = 0xffff; SimpleString result = StringFrom(i); CHECK_EQUAL("65535 (0xffff)", result); } TEST(SimpleString, Uint8_t) { uint8_t i = 0xff; SimpleString result = StringFrom(i); CHECK_EQUAL("255 (0xff)", result); } #endif cpputest-3.4/tests/CommandLineArgumentsTest.cpp0000644000175300017530000001715612023251675016755 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" #include "CppUTest/CommandLineArguments.h" #include "CppUTest/TestRegistry.h" class OptionsPlugin: public TestPlugin { public: OptionsPlugin(const SimpleString& name) : TestPlugin(name) { } ~OptionsPlugin() { } bool parseArguments(int /*ac*/, const char** /*av*/, int /*index*/) { return true; } }; TEST_GROUP(CommandLineArguments) { CommandLineArguments* args; OptionsPlugin* plugin; void setup() { plugin = new OptionsPlugin("options"); args = NULL; } void teardown() { delete args; delete plugin; } bool newArgumentParser(int argc, const char** argv) { args = new CommandLineArguments(argc, argv); return args->parse(plugin); } }; TEST(CommandLineArguments, Create) { } TEST(CommandLineArguments, verboseSetMultipleParameters) { const char* argv[] = { "tests.exe", "-v" }; CHECK(newArgumentParser(2, argv)); CHECK(args->isVerbose()); } TEST(CommandLineArguments, repeatSet) { int argc = 2; const char* argv[] = { "tests.exe", "-r3" }; CHECK(newArgumentParser(argc, argv)); LONGS_EQUAL(3, args->getRepeatCount()); } TEST(CommandLineArguments, repeatSetDifferentParameter) { int argc = 3; const char* argv[] = { "tests.exe", "-r", "4" }; CHECK(newArgumentParser(argc, argv)); LONGS_EQUAL(4, args->getRepeatCount()); } TEST(CommandLineArguments, repeatSetDefaultsToTwo) { int argc = 2; const char* argv[] = { "tests.exe", "-r" }; CHECK(newArgumentParser(argc, argv)); LONGS_EQUAL(2, args->getRepeatCount()); } TEST(CommandLineArguments, runningTestsInSeperateProcesses) { int argc = 2; const char* argv[] = { "tests.exe", "-p" }; CHECK(newArgumentParser(argc, argv)); CHECK(args->runTestsInSeperateProcess()); } TEST(CommandLineArguments, setGroupFilter) { int argc = 3; const char* argv[] = { "tests.exe", "-g", "group" }; CHECK(newArgumentParser(argc, argv)); CHECK_EQUAL(TestFilter("group"), args->getGroupFilter()); } TEST(CommandLineArguments, setGroupFilterSameParameter) { int argc = 2; const char* argv[] = { "tests.exe", "-ggroup" }; CHECK(newArgumentParser(argc, argv)); CHECK_EQUAL(TestFilter("group"), args->getGroupFilter()); } TEST(CommandLineArguments, setStrictGroupFilter) { int argc = 3; const char* argv[] = { "tests.exe", "-sg", "group" }; CHECK(newArgumentParser(argc, argv)); TestFilter groupFilter("group"); groupFilter.strictMatching(); CHECK_EQUAL(groupFilter, args->getGroupFilter()); } TEST(CommandLineArguments, setStrictGroupFilterSameParameter) { int argc = 2; const char* argv[] = { "tests.exe", "-sggroup" }; CHECK(newArgumentParser(argc, argv)); TestFilter groupFilter("group"); groupFilter.strictMatching(); CHECK_EQUAL(groupFilter, args->getGroupFilter()); } TEST(CommandLineArguments, setNameFilter) { int argc = 3; const char* argv[] = { "tests.exe", "-n", "name" }; CHECK(newArgumentParser(argc, argv)); CHECK_EQUAL(TestFilter("name"), args->getNameFilter()); } TEST(CommandLineArguments, setStrictNameFilter) { int argc = 3; const char* argv[] = { "tests.exe", "-sn", "name" }; CHECK(newArgumentParser(argc, argv)); TestFilter nameFilter("name"); nameFilter.strictMatching(); CHECK_EQUAL(nameFilter, args->getNameFilter()); } TEST(CommandLineArguments, setNameFilterSameParameter) { int argc = 2; const char* argv[] = { "tests.exe", "-nname" }; CHECK(newArgumentParser(argc, argv)); CHECK_EQUAL(TestFilter("name"), args->getNameFilter()); } TEST(CommandLineArguments, setTestToRunUsingVerboseOutput) { int argc = 2; const char* argv[] = { "tests.exe", "TEST(testgroup, testname) - stuff" }; CHECK(newArgumentParser(argc, argv)); TestFilter nameFilter("testname"); TestFilter groupFilter("testgroup"); nameFilter.strictMatching(); groupFilter.strictMatching(); CHECK_EQUAL(nameFilter, args->getNameFilter()); CHECK_EQUAL(groupFilter, args->getGroupFilter()); } TEST(CommandLineArguments, setTestToRunUsingVerboseOutputOfIgnoreTest) { int argc = 2; const char* argv[] = { "tests.exe", "IGNORE_TEST(testgroup, testname) - stuff" }; CHECK(newArgumentParser(argc, argv)); TestFilter nameFilter("testname"); TestFilter groupFilter("testgroup"); nameFilter.strictMatching(); groupFilter.strictMatching(); CHECK_EQUAL(nameFilter, args->getNameFilter()); CHECK_EQUAL(groupFilter, args->getGroupFilter()); } TEST(CommandLineArguments, setNormalOutput) { int argc = 2; const char* argv[] = { "tests.exe", "-onormal" }; CHECK(newArgumentParser(argc, argv)); CHECK(args->isEclipseOutput()); } TEST(CommandLineArguments, setEclipseOutput) { int argc = 2; const char* argv[] = { "tests.exe", "-oeclipse" }; CHECK(newArgumentParser(argc, argv)); CHECK(args->isEclipseOutput()); } TEST(CommandLineArguments, setNormalOutputDifferentParameter) { int argc = 3; const char* argv[] = { "tests.exe", "-o", "normal" }; CHECK(newArgumentParser(argc, argv)); CHECK(args->isEclipseOutput()); } TEST(CommandLineArguments, setJUnitOutputDifferentParameter) { int argc = 3; const char* argv[] = { "tests.exe", "-o", "junit" }; CHECK(newArgumentParser(argc, argv)); CHECK(args->isJUnitOutput()); } TEST(CommandLineArguments, setOutputToGarbage) { int argc = 3; const char* argv[] = { "tests.exe", "-o", "garbage" }; CHECK(!newArgumentParser(argc, argv)); } TEST(CommandLineArguments, weirdParamatersPrintsUsageAndReturnsFalse) { int argc = 2; const char* argv[] = { "tests.exe", "-SomethingWeird" }; CHECK(!newArgumentParser(argc, argv)); STRCMP_EQUAL("usage [-v] [-r#] [-g|sg groupName] [-n|sn testName] [-o{normal, junit}]\n", args->usage()); } TEST(CommandLineArguments, pluginKnowsOption) { int argc = 2; const char* argv[] = { "tests.exe", "-pPluginOption" }; TestRegistry::getCurrentRegistry()->installPlugin(plugin); CHECK(newArgumentParser(argc, argv)); TestRegistry::getCurrentRegistry()->removePluginByName("options"); } TEST(CommandLineArguments, checkDefaultArguments) { int argc = 1; const char* argv[] = { "tests.exe" }; CHECK(newArgumentParser(argc, argv)); CHECK(!args->isVerbose()); LONGS_EQUAL(1, args->getRepeatCount()); CHECK(TestFilter() == args->getGroupFilter()); CHECK(TestFilter() == args->getNameFilter()); CHECK(args->isEclipseOutput()); } cpputest-3.4/tests/TestFailureTest.cpp0000664000175300017530000001772112066727207015136 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" #include "CppUTest/TestOutput.h" namespace { const int failLineNumber = 2; const char* failFileName = "fail.cpp"; } static double zero = 0.0; static const double not_a_number = zero / zero; TEST_GROUP(TestFailure) { UtestShell* test; void setup() { test = new NullTestShell(failFileName, failLineNumber-1); } void teardown() { delete test; } }; #define FAILURE_EQUAL(a, b) STRCMP_EQUAL_LOCATION(a, b.getMessage().asCharString(), __FILE__, __LINE__) TEST(TestFailure, CreateFailure) { TestFailure f1(test, failFileName, failLineNumber, "the failure message"); TestFailure f2(test, "the failure message"); TestFailure f3(test, failFileName, failLineNumber); } TEST(TestFailure, GetTestFileAndLineFromFailure) { TestFailure f1(test, failFileName, failLineNumber, "the failure message"); STRCMP_EQUAL(failFileName, f1.getTestFileName().asCharString()); LONGS_EQUAL(1, f1.getTestLineNumber()); } TEST(TestFailure, CreatePassingEqualsFailure) { EqualsFailure f(test, failFileName, failLineNumber, "expected", "actual"); FAILURE_EQUAL("expected \n\tbut was ", f); } TEST(TestFailure, EqualsFailureWithNullAsActual) { EqualsFailure f(test, failFileName, failLineNumber, "expected", NULL); FAILURE_EQUAL("expected \n\tbut was <(null)>", f); } TEST(TestFailure, EqualsFailureWithNullAsExpected) { EqualsFailure f(test, failFileName, failLineNumber, NULL, "actual"); FAILURE_EQUAL("expected <(null)>\n\tbut was ", f); } TEST(TestFailure, CheckEqualFailure) { CheckEqualFailure f(test, failFileName, failLineNumber, "expected", "actual"); FAILURE_EQUAL("expected \n" "\tbut was \n" "\tdifference starts at position 0 at: < actual >\n" "\t ^", f); } TEST(TestFailure, CheckFailure) { CheckFailure f(test, failFileName, failLineNumber, "CHECK", "chk"); FAILURE_EQUAL("CHECK(chk) failed", f); } TEST(TestFailure, CheckFailureWithText) { CheckFailure f(test, failFileName, failLineNumber, "CHECK", "chk", "text"); FAILURE_EQUAL("Message: text\n" "\tCHECK(chk) failed", f); } TEST(TestFailure, FailFailure) { FailFailure f(test, failFileName, failLineNumber, "chk"); FAILURE_EQUAL("chk", f); } TEST(TestFailure, LongsEqualFailure) { LongsEqualFailure f(test, failFileName, failLineNumber, 1, 2); FAILURE_EQUAL("expected <1 0x1>\n\tbut was <2 0x2>", f); } TEST(TestFailure, StringsEqualFailure) { StringEqualFailure f(test, failFileName, failLineNumber, "abc", "abd"); FAILURE_EQUAL("expected \n" "\tbut was \n" "\tdifference starts at position 2 at: < abd >\n" "\t ^", f); } TEST(TestFailure, StringsEqualFailureAtTheEnd) { StringEqualFailure f(test, failFileName, failLineNumber, "abc", "ab"); FAILURE_EQUAL("expected \n" "\tbut was \n" "\tdifference starts at position 2 at: < ab >\n" "\t ^", f); } TEST(TestFailure, StringsEqualFailureNewVariantAtTheEnd) { StringEqualFailure f(test, failFileName, failLineNumber, "EndOfALongerString", "EndOfALongerStrinG"); FAILURE_EQUAL("expected \n" "\tbut was \n" "\tdifference starts at position 17 at: \n" "\t ^", f); } TEST(TestFailure, StringsEqualFailureWithNewLinesAndTabs) { StringEqualFailure f(test, failFileName, failLineNumber, "StringWith\t\nDifferentString", "StringWith\t\ndifferentString"); FAILURE_EQUAL("expected \n" "\tbut was \n" "\tdifference starts at position 12 at: \n" "\t \t\n^", f); } TEST(TestFailure, StringsEqualFailureInTheMiddle) { StringEqualFailure f(test, failFileName, failLineNumber, "aa", "ab"); FAILURE_EQUAL("expected \n" "\tbut was \n" "\tdifference starts at position 1 at: < ab >\n" "\t ^", f); } TEST(TestFailure, StringsEqualFailureAtTheBeginning) { StringEqualFailure f(test, failFileName, failLineNumber, "aaa", "bbb"); FAILURE_EQUAL("expected \n" "\tbut was \n" "\tdifference starts at position 0 at: < bbb >\n" "\t ^", f); } TEST(TestFailure, StringsEqualNoCaseFailure) { StringEqualNoCaseFailure f(test, failFileName, failLineNumber, "ABC", "abd"); FAILURE_EQUAL("expected \n" "\tbut was \n" "\tdifference starts at position 2 at: < abd >\n" "\t ^", f); } TEST(TestFailure, StringsEqualNoCaseFailure2) { StringEqualNoCaseFailure f(test, failFileName, failLineNumber, "ac", "AB"); FAILURE_EQUAL("expected \n" "\tbut was \n" "\tdifference starts at position 1 at: < AB >\n" "\t ^", f); } TEST(TestFailure, DoublesEqualNormal) { DoublesEqualFailure f(test, failFileName, failLineNumber, 1.0, 2.0, 3.0); FAILURE_EQUAL("expected <1>\n" "\tbut was <2> threshold used was <3>", f); } TEST(TestFailure, DoublesEqualExpectedIsNaN) { DoublesEqualFailure f(test, failFileName, failLineNumber, not_a_number, 2.0, 3.0); FAILURE_EQUAL("expected \n" "\tbut was <2> threshold used was <3>\n" "\tCannot make comparisons with Nan", f); } TEST(TestFailure, DoublesEqualActualIsNaN) { DoublesEqualFailure f(test, failFileName, failLineNumber, 1.0, not_a_number, 3.0); FAILURE_EQUAL("expected <1>\n" "\tbut was threshold used was <3>\n" "\tCannot make comparisons with Nan", f); } TEST(TestFailure, DoublesEqualThresholdIsNaN) { DoublesEqualFailure f(test, failFileName, failLineNumber, 1.0, 2.0, not_a_number); FAILURE_EQUAL("expected <1>\n" "\tbut was <2> threshold used was \n" "\tCannot make comparisons with Nan", f); } cpputest-3.4/tests/CommandLineTestRunnerTest.cpp0000644000175300017530000000662112134163705017113 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" #include "CppUTest/CommandLineTestRunner.h" #include "CppUTest/TestRegistry.h" #include "CppUTest/TestTestingFixture.h" #include "CppUTest/TestPlugin.h" class DummyPluginWhichCountsThePlugins : public TestPlugin { public: bool returnValue; int amountOfPlugins; DummyPluginWhichCountsThePlugins(const SimpleString& name, TestRegistry* registry) : TestPlugin(name), returnValue(true), amountOfPlugins(0), registry_(registry) { } virtual bool parseArguments(int, const char**, int) { /* Remove ourselves from the count */ amountOfPlugins = registry_->countPlugins() - 1; return returnValue; } private: TestRegistry* registry_; }; TEST_GROUP(CommandLineTestRunner) { TestRegistry registry; StringBufferTestOutput output; DummyPluginWhichCountsThePlugins* pluginCountingPlugin; void setup() { pluginCountingPlugin = new DummyPluginWhichCountsThePlugins("PluginCountingPlugin", ®istry); } void teardown() { delete pluginCountingPlugin; } }; TEST(CommandLineTestRunner, OnePluginGetsInstalledDuringTheRunningTheTests) { const char* argv[] = { "tests.exe", "-psomething"}; registry.installPlugin(pluginCountingPlugin); CommandLineTestRunner commandLineTestRunner(2, argv, &output, ®istry); commandLineTestRunner.runAllTestsMain(); registry.removePluginByName("PluginCountingPlugin"); LONGS_EQUAL(0, registry.countPlugins()); LONGS_EQUAL(1, pluginCountingPlugin->amountOfPlugins); } TEST(CommandLineTestRunner, NoPluginsAreInstalledAtTheEndOfARunWhenTheArgumentsAreInvalid) { const char* argv[] = { "tests.exe", "-fdskjnfkds"}; CommandLineTestRunner commandLineTestRunner(2, argv, &output, ®istry); commandLineTestRunner.runAllTestsMain(); LONGS_EQUAL(0, registry.countPlugins()); } cpputest-3.4/tests/TestFilterTest.cpp0000644000175300017530000000612112023251675014754 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" #include "CppUTest/TestFilter.h" TEST_GROUP(TestFilter) { }; TEST(TestFilter, emptyFilterMatchesEverything) { TestFilter filter; CHECK(filter.match("random_name")); CHECK(filter.match("")); CHECK(filter.match("*&%#^&%$(*&^@#(&*@#^(&*$^@#")); } TEST(TestFilter, defaultAbsoluteMismatches) { TestFilter filter("filtername"); CHECK(!filter.match("notevenclose")); CHECK(!filter.match("filterrname")); CHECK(!filter.match("")); } TEST(TestFilter, strictMatching) { TestFilter filter("filter"); filter.strictMatching(); CHECK(filter.match("filter")); CHECK(!filter.match("filterr")); CHECK(!filter.match(" filter")); } TEST(TestFilter, equality) { TestFilter filter1("filter"); TestFilter filter2("filter"); TestFilter filter3("filter3"); CHECK(filter1 == filter2); CHECK(! (filter1 == filter3)); } TEST(TestFilter, equalityWithStrictness) { TestFilter filter1("filter"); TestFilter filter2("filter"); filter2.strictMatching(); CHECK(! (filter1 == filter2)); } TEST(TestFilter, notEqual) { TestFilter filter1("filter"); TestFilter filter2("filter"); TestFilter filter3("filter3"); CHECK(filter1 != filter3); CHECK(! (filter1 != filter2)); } TEST(TestFilter, stringFrom) { TestFilter filter("filter"); STRCMP_EQUAL("TestFilter: \"filter\"", StringFrom(filter).asCharString()); } TEST(TestFilter, stringFromWithStrictMatching) { TestFilter filter("filter"); filter.strictMatching(); STRCMP_EQUAL("TestFilter: \"filter\" with strict matching", StringFrom(filter).asCharString()); } cpputest-3.4/tests/TestHarness_cTest.cpp0000664000175300017530000001474312066727207015455 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness_c.h" #include "CppUTest/TestHarness.h" #include "CppUTest/TestRegistry.h" #include "CppUTest/TestOutput.h" #include "CppUTest/TestTestingFixture.h" #include "CppUTest/PlatformSpecificFunctions.h" TEST_GROUP(TestHarness_c) { TestTestingFixture* fixture; TEST_SETUP() { fixture = new TestTestingFixture(); } TEST_TEARDOWN() { delete fixture; } }; static void _failIntMethod() { CHECK_EQUAL_C_INT(1, 2); } TEST(TestHarness_c, checkInt) { CHECK_EQUAL_C_INT(2, 2); fixture->setTestFunction(_failIntMethod); fixture->runAllTests(); fixture->assertPrintContains("expected <1>\n but was <2>"); fixture->assertPrintContains("arness_c"); } static void _failRealMethod() { CHECK_EQUAL_C_REAL(1.0, 2.0, 0.5); } TEST(TestHarness_c, checkReal) { CHECK_EQUAL_C_REAL(1.0, 1.1, 0.5); fixture->setTestFunction(_failRealMethod); fixture->runAllTests(); fixture->assertPrintContains("expected <1>\n but was <2>"); fixture->assertPrintContains("arness_c"); } static void _failCharMethod() { CHECK_EQUAL_C_CHAR('a', 'c'); } TEST(TestHarness_c, checkChar) { CHECK_EQUAL_C_CHAR('a', 'a'); fixture->setTestFunction(_failCharMethod); fixture->runAllTests(); fixture->assertPrintContains("expected
\n but was "); fixture->assertPrintContains("arness_c"); } static void _failStringMethod() { CHECK_EQUAL_C_STRING("Hello", "Hello World"); } TEST(TestHarness_c, checkString) { CHECK_EQUAL_C_STRING("Hello", "Hello"); fixture->setTestFunction(_failStringMethod); fixture->runAllTests(); StringEqualFailure failure(UtestShell::getCurrent(), "file", 1, "Hello", "Hello World"); fixture->assertPrintContains(failure.getMessage()); fixture->assertPrintContains("arness_c"); } static void _failTextMethod() { FAIL_TEXT_C("Booo"); } TEST(TestHarness_c, checkFailText) { fixture->setTestFunction(_failTextMethod); fixture->runAllTests(); fixture->assertPrintContains("Booo"); fixture->assertPrintContains("arness_c"); } static void _failMethod() { FAIL_C(); } TEST(TestHarness_c, checkFail) { fixture->setTestFunction(_failMethod); fixture->runAllTests(); LONGS_EQUAL(1, fixture->getFailureCount()); fixture->assertPrintContains("arness_c"); } static void _CheckMethod() { CHECK_C(false); } TEST(TestHarness_c, checkCheck) { CHECK_C(true); fixture->setTestFunction(_CheckMethod); fixture->runAllTests(); LONGS_EQUAL(1, fixture->getFailureCount()); } #if CPPUTEST_USE_MEM_LEAK_DETECTION TEST(TestHarness_c, cpputest_malloc_out_of_memory) { cpputest_malloc_set_out_of_memory(); CHECK(0 == cpputest_malloc(100)); cpputest_malloc_set_not_out_of_memory(); void * mem = cpputest_malloc(100); CHECK(0 != mem); cpputest_free(mem); } TEST(TestHarness_c, cpputest_malloc_out_of_memory_after_n_mallocs) { cpputest_malloc_set_out_of_memory_countdown(3); void * m1 = cpputest_malloc(10); void * m2 = cpputest_malloc(11); void * m3 = cpputest_malloc(12); CHECK(m1); CHECK(m2); POINTERS_EQUAL(0, m3); cpputest_malloc_set_not_out_of_memory(); cpputest_free(m1); cpputest_free(m2); } TEST(TestHarness_c, cpputest_malloc_out_of_memory_after_0_mallocs) { cpputest_malloc_set_out_of_memory_countdown(0); void * m1 = cpputest_malloc(10); CHECK(m1 == 0); cpputest_malloc_set_not_out_of_memory(); } TEST(TestHarness_c, count_mallocs) { cpputest_malloc_count_reset(); void * m1 = cpputest_malloc(10); void * m2 = cpputest_malloc(11); void * m3 = cpputest_malloc(12); cpputest_free(m1); cpputest_free(m2); cpputest_free(m3); LONGS_EQUAL(3, cpputest_malloc_get_count()); } TEST(TestHarness_c, cpputest_calloc) { void * mem = cpputest_calloc(10, 10); CHECK(0 != mem); cpputest_free(mem); } TEST(TestHarness_c, cpputest_realloc_larger) { const char* number_string = "123456789"; char* mem1 = (char*) cpputest_malloc(10); PlatformSpecificStrCpy(mem1, number_string); CHECK(mem1 != 0); char* mem2 = (char*) cpputest_realloc(mem1, 1000); CHECK(mem2 != 0); STRCMP_EQUAL(number_string, mem2); cpputest_free(mem2); } #include "CppUTest/MemoryLeakDetector.h" TEST(TestHarness_c, macros) { MemoryLeakDetector* memLeakDetector = MemoryLeakWarningPlugin::getGlobalDetector(); int memLeaks = memLeakDetector->totalMemoryLeaks(mem_leak_period_checking); void* mem1 = malloc(10); void* mem2 = calloc(10, 20); void* mem3 = realloc(mem2, 100); #if CPPUTEST_USE_MALLOC_MACROS LONGS_EQUAL(memLeaks + 2, memLeakDetector->totalMemoryLeaks(mem_leak_period_checking)); #endif free(mem1); free(mem3); #if CPPUTEST_USE_MALLOC_MACROS LONGS_EQUAL(memLeaks, memLeakDetector->totalMemoryLeaks(mem_leak_period_checking)); #endif } TEST(TestHarness_c, callocInitializedToZero) { char* mem = (char*) calloc(20, sizeof(char)); for (int i = 0; i < 20; i++) CHECK(mem[i] == 0); free(mem); } #endif cpputest-3.4/tests/JUnitOutputTest.cpp0000644000175300017530000002565712134163705015157 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" #include "CppUTest/JUnitTestOutput.h" #include "CppUTest/TestResult.h" #include "CppUTest/PlatformSpecificFunctions.h" static long millisTime; static const char* theTime = "1978-10-03T00:00:00"; static long MockGetPlatformSpecificTimeInMillis() { return millisTime; } static const char* MockGetPlatformSpecificTimeString() { return theTime; } TEST_GROUP(JUnitOutputTest) { class MockJUnitTestOutput: public JUnitTestOutput { public: enum { testGroupSize = 10 }; enum { defaultSize = 7 }; int filesOpened; int fileBalance; SimpleString fileName_; SimpleString buffer_; TestResult* res_; struct TestData { TestData() : tst_(0), testName_(0), failure_(0) { } UtestShell* tst_; SimpleString* testName_; TestFailure* failure_; }; struct TestGroupData { TestGroupData() : numberTests_(0), totalFailures_(0), name_(""), testData_(0) { } size_t numberTests_; size_t totalFailures_; SimpleString name_; TestData* testData_; }; TestGroupData testGroupData_[testGroupSize]; TestGroupData& currentGroup() { return testGroupData_[filesOpened - 1]; } void resetXmlFile() { buffer_ = ""; } MockJUnitTestOutput() : filesOpened(0), fileBalance(0), res_(0) { for (int i = 0; i < testGroupSize; i++) { testGroupData_[i].numberTests_ = 0; testGroupData_[i].totalFailures_ = 0; } } void setResult(TestResult* testRes) { res_ = testRes; } virtual ~MockJUnitTestOutput() { for (size_t i = 0; i < testGroupSize; i++) { for (size_t j = 0; j < testGroupData_[i].numberTests_; j++) { delete testGroupData_[i].testData_[j].tst_; delete testGroupData_[i].testData_[j].testName_; if (testGroupData_[i].testData_[j].failure_) delete testGroupData_[i].testData_[j].failure_; } if (testGroupData_[i].testData_) delete[] testGroupData_[i].testData_; } LONGS_EQUAL(0, fileBalance); } void writeToFile(const SimpleString& buf) { buffer_ += buf; } void openFileForWrite(const SimpleString& in_FileName) { filesOpened++; fileBalance++; fileName_ = in_FileName; } void closeFile() { CHECK_XML_FILE(); resetXmlFile(); fileBalance--; } void createTestsInGroup(int index, size_t amount, const char* group, const char* basename) { testGroupData_[index].name_ = group; testGroupData_[index].numberTests_ = amount; testGroupData_[index].testData_ = new TestData[amount]; for (size_t i = 0; i < amount; i++) { TestData& testData = testGroupData_[index].testData_[i]; testData.testName_ = new SimpleString(basename); *testData.testName_ += StringFrom((long) i); testData.tst_ = new UtestShell(group, testData.testName_->asCharString(), "file", 1); } } void runTests() { res_->testsStarted(); for (int i = 0; i < testGroupSize; i++) { TestGroupData& data = testGroupData_[i]; if (data.numberTests_ == 0) continue; millisTime = 0; res_->currentGroupStarted(data.testData_[0].tst_); for (size_t j = 0; j < data.numberTests_; j++) { TestData& testData = data.testData_[j]; millisTime = 0; res_->currentTestStarted(testData.tst_); if (testData.failure_) print(*testData.failure_); millisTime = 10; res_->currentTestEnded(testData.tst_); } millisTime = 50; res_->currentGroupEnded(data.testData_[0].tst_); } res_->testsEnded(); } void setFailure(int groupIndex, int testIndex, const char* fileName, int lineNumber, const char* message) { TestData& data = testGroupData_[groupIndex].testData_[testIndex]; data.failure_ = new TestFailure(data.tst_, fileName, lineNumber, message); testGroupData_[groupIndex].totalFailures_++; } void CHECK_HAS_XML_HEADER(SimpleString string) { STRCMP_EQUAL("\n", string.asCharString()); } void CHECK_TEST_SUITE_START(SimpleString out) { TestGroupData& group = currentGroup(); SimpleString buf = StringFromFormat("\n", group.totalFailures_, group.name_.asCharString(), group.numberTests_, theTime); CHECK_EQUAL(buf, out); } void CHECK_XML_FILE() { size_t totalSize = currentGroup().numberTests_ + defaultSize + (currentGroup().totalFailures_ * 2); SimpleStringCollection col; buffer_.split("\n", col); CHECK(col.size() >= totalSize); CHECK_HAS_XML_HEADER(col[0]); CHECK_TEST_SUITE_START(col[1]); CHECK_PROPERTIES_START(col[2]); CHECK_PROPERTIES_END(col[3]); CHECK_TESTS(&col[4]); CHECK_SYSTEM_OUT(col[col.size() - 3]); CHECK_SYSTEM_ERR(col[col.size() - 2]); CHECK_TEST_SUITE_END(col[col.size() - 1]); } void CHECK_PROPERTIES_START(const SimpleString& out) { STRCMP_EQUAL("\n", out.asCharString()); } void CHECK_PROPERTIES_END(const SimpleString& out) { STRCMP_EQUAL("\n", out.asCharString()); } void CHECK_SYSTEM_OUT(const SimpleString& out) { STRCMP_EQUAL("\n", out.asCharString()); } void CHECK_SYSTEM_ERR(const SimpleString& out) { STRCMP_EQUAL("\n", out.asCharString()); } void CHECK_TEST_SUITE_END(const SimpleString& out) { STRCMP_EQUAL("", out.asCharString()); } void CHECK_TESTS(SimpleString* arr) { for (size_t index = 0, curTest = 0; curTest < currentGroup().numberTests_; curTest++, index++) { SimpleString buf = StringFromFormat("\n", currentGroup().name_.asCharString(), currentGroup().testData_[curTest].tst_->getName().asCharString()); CHECK_EQUAL(buf, arr[index]); if (currentGroup().testData_[curTest].failure_) { CHECK_FAILURE(arr, index, curTest); } buf = "\n"; CHECK_EQUAL(buf, arr[++index]); } } void CHECK_FAILURE(SimpleString* arr, size_t& i, size_t curTest) { TestFailure& f = *currentGroup().testData_[curTest].failure_; i++; SimpleString message = f.getMessage().asCharString(); message.replace('"', '\''); message.replace('<', '['); message.replace('>', ']'); message.replace("\n", "{newline}"); SimpleString buf = StringFromFormat("\n", f.getFileName().asCharString(), f.getFailureLineNumber(), message.asCharString()); CHECK_EQUAL(buf, arr[i]); i++; STRCMP_EQUAL("\n", arr[i].asCharString()); } }; MockJUnitTestOutput * output; TestResult *res; void setup() { output = new MockJUnitTestOutput(); res = new TestResult(*output); output->setResult(res); SetPlatformSpecificTimeInMillisMethod(MockGetPlatformSpecificTimeInMillis); SetPlatformSpecificTimeStringMethod(MockGetPlatformSpecificTimeString); } void teardown() { delete output; delete res; SetPlatformSpecificTimeInMillisMethod(0); SetPlatformSpecificTimeStringMethod(0); } void runTests() { output->printTestsStarted(); output->runTests(); output->printTestsEnded(*res); } }; TEST(JUnitOutputTest, oneTestInOneGroupAllPass) { output->createTestsInGroup(0, 1, "group", "name"); runTests(); STRCMP_EQUAL("cpputest_group.xml", output->fileName_.asCharString()); LONGS_EQUAL(1, output->filesOpened); } TEST(JUnitOutputTest, fiveTestsInOneGroupAllPass) { output->createTestsInGroup(0, 5, "group", "name"); runTests(); } TEST(JUnitOutputTest, multipleTestsInTwoGroupAllPass) { output->createTestsInGroup(0, 3, "group", "name"); output->createTestsInGroup(1, 8, "secondGroup", "secondName"); runTests(); LONGS_EQUAL(2, output->filesOpened); } TEST(JUnitOutputTest, oneTestInOneGroupFailed) { output->createTestsInGroup(0, 1, "failedGroup", "failedName"); output->setFailure(0, 0, "file", 1, "Test <\"just\"> failed"); runTests(); } TEST(JUnitOutputTest, fiveTestsInOneGroupAndThreeFail) { output->printTestsStarted(); output->createTestsInGroup(0, 5, "failedGroup", "failedName"); output->setFailure(0, 0, "file", 1, "Test just failed"); output->setFailure(0, 1, "file", 5, "Also failed"); output->setFailure(0, 4, "file", 8, "And failed again"); runTests(); } TEST(JUnitOutputTest, fourGroupsAndSomePassAndSomeFail) { output->printTestsStarted(); output->createTestsInGroup(0, 5, "group1", "firstName"); output->createTestsInGroup(1, 50, "group2", "secondName"); output->createTestsInGroup(2, 3, "group3", "thirdName"); output->createTestsInGroup(3, 5, "group4", "fourthName"); output->setFailure(0, 0, "file", 1, "Test just failed"); output->printTestsEnded(*res); runTests(); } TEST(JUnitOutputTest, messageWithNewLine) { output->createTestsInGroup(0, 1, "failedGroup", "failedName"); output->setFailure(0, 0, "file", 1, "Test \n failed"); runTests(); } TEST(JUnitOutputTest, createNormalFilename) { STRCMP_EQUAL("cpputest_group.xml", output->createFileName("group").asCharString()); } TEST(JUnitOutputTest, escapeSlashesInFilenames) { STRCMP_EQUAL("cpputest_group_weird_name.xml", output->createFileName("group/weird/name").asCharString()); } cpputest-3.4/tests/TestHarness_cTestCFile.c0000664000175300017530000000035012066727207016005 00000000000000 #include "CppUTest/TestHarness_c.h" #include "CppUTest/PlatformSpecificFunctions_c.h" extern void functionWithUnusedParameter(void* PUNUSED(unlessParamater)); void functionWithUnusedParameter(void* PUNUSED(unlessParamater)) { } cpputest-3.4/tests/MemoryLeakDetectorTest.cpp0000644000175300017530000004703612134163705016437 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" #include "CppUTest/MemoryLeakDetector.h" #include "CppUTest/TestMemoryAllocator.h" #include "CppUTest/PlatformSpecificFunctions.h" class MemoryLeakFailureForTest: public MemoryLeakFailure { public: virtual ~MemoryLeakFailureForTest() { } virtual void fail(char* fail_string) { *message = fail_string; } SimpleString *message; }; class NewAllocatorForMemoryLeakDetectionTest: public TestMemoryAllocator { public: NewAllocatorForMemoryLeakDetectionTest() : TestMemoryAllocator("Standard New Allocator", "new", "delete"), alloc_called(0), free_called(0) { } int alloc_called; int free_called; char* alloc_memory(size_t size, const char*, int) { alloc_called++; return TestMemoryAllocator::alloc_memory(size, "file", 1); } void free_memory(char* memory, const char* file, int line) { free_called++; TestMemoryAllocator::free_memory(memory, file, line); } }; class AllocatorForMemoryLeakDetectionTest: public TestMemoryAllocator { public: AllocatorForMemoryLeakDetectionTest() : alloc_called(0), free_called(0), allocMemoryLeakNodeCalled(0), freeMemoryLeakNodeCalled(0) { } int alloc_called; int free_called; int allocMemoryLeakNodeCalled; int freeMemoryLeakNodeCalled; char* alloc_memory(size_t size, const char* file, int line) { alloc_called++; return TestMemoryAllocator::alloc_memory(size, file, line); } void free_memory(char* memory, const char* file, int line) { free_called++; TestMemoryAllocator::free_memory(memory, file, line); } char* allocMemoryLeakNode(size_t size) { allocMemoryLeakNodeCalled++; return TestMemoryAllocator::alloc_memory(size, __FILE__, __LINE__); } void freeMemoryLeakNode(char* memory) { freeMemoryLeakNodeCalled++; TestMemoryAllocator::free_memory(memory, __FILE__, __LINE__); } }; TEST_GROUP(MemoryLeakDetectorTest) { MemoryLeakDetector* detector; MemoryLeakFailureForTest *reporter; AllocatorForMemoryLeakDetectionTest* testAllocator; void setup() { reporter = new MemoryLeakFailureForTest; detector = new MemoryLeakDetector(reporter); testAllocator = new AllocatorForMemoryLeakDetectionTest; detector->enable(); detector->startChecking(); reporter->message = new SimpleString(); } void teardown() { delete reporter->message; delete detector; delete reporter; delete testAllocator; } }; TEST(MemoryLeakDetectorTest, OneLeak) { char* mem = detector->allocMemory(testAllocator, 3); detector->stopChecking(); SimpleString output = detector->report(mem_leak_period_checking); STRCMP_CONTAINS(MEM_LEAK_HEADER, output.asCharString()); STRCMP_CONTAINS("size: 3", output.asCharString()); STRCMP_CONTAINS("alloc", output.asCharString()); STRCMP_CONTAINS(StringFromFormat("%p", mem).asCharString(), output.asCharString()); STRCMP_CONTAINS(MEM_LEAK_FOOTER, output.asCharString()); PlatformSpecificFree(mem); LONGS_EQUAL(1, testAllocator->alloc_called); LONGS_EQUAL(0, testAllocator->free_called); } TEST(MemoryLeakDetectorTest, sequenceNumbersOfMemoryLeaks) { char* mem = detector->allocMemory(defaultNewAllocator(), 1); char* mem2 = detector->allocMemory(defaultNewAllocator(), 2); char* mem3 = detector->allocMemory(defaultNewAllocator(), 3); SimpleString output = detector->report(mem_leak_period_checking); STRCMP_CONTAINS("Alloc num (1)", output.asCharString()); STRCMP_CONTAINS("Alloc num (2)", output.asCharString()); STRCMP_CONTAINS("Alloc num (3)", output.asCharString()); PlatformSpecificFree(mem); PlatformSpecificFree(mem2); PlatformSpecificFree(mem3); } TEST(MemoryLeakDetectorTest, OneHundredLeaks) { const int amount_alloc = 100; char *mem[amount_alloc]; for (int i = 0; i < amount_alloc; i++) mem[i] = detector->allocMemory(defaultMallocAllocator(), 3); detector->stopChecking(); SimpleString output = detector->report(mem_leak_period_checking); STRCMP_CONTAINS(MEM_LEAK_HEADER, output.asCharString()); STRCMP_CONTAINS(MEM_LEAK_FOOTER, output.asCharString()); STRCMP_CONTAINS(MEM_LEAK_ADDITION_MALLOC_WARNING, output.asCharString()); //don't reuse i for vc6 compatibility for (int j = 0; j < amount_alloc; j++) PlatformSpecificFree(mem[j]); } TEST(MemoryLeakDetectorTest, OneLeakOutsideCheckingPeriod) { detector->stopChecking(); char* mem = detector->allocMemory(defaultNewAllocator(), 4); SimpleString output = detector->report(mem_leak_period_all); CHECK(output.contains(MEM_LEAK_HEADER)); CHECK(output.contains("size: 4")); CHECK(output.contains("new")); CHECK(output.contains(MEM_LEAK_FOOTER)); PlatformSpecificFree(mem); } TEST(MemoryLeakDetectorTest, NoLeaksWhatsoever) { detector->stopChecking(); STRCMP_EQUAL(MEM_LEAK_NONE, detector->report(mem_leak_period_checking)); STRCMP_EQUAL(MEM_LEAK_NONE, detector->report(mem_leak_period_all)); } TEST(MemoryLeakDetectorTest, TwoLeaksUsingOperatorNew) { char* mem = detector->allocMemory(defaultNewAllocator(), 4); char* mem2 = detector->allocMemory(defaultNewAllocator(), 8); detector->stopChecking(); SimpleString output = detector->report(mem_leak_period_checking); LONGS_EQUAL(2, detector->totalMemoryLeaks(mem_leak_period_checking)); CHECK(output.contains("size: 8")); CHECK(output.contains("size: 4")); PlatformSpecificFree(mem); PlatformSpecificFree(mem2); } TEST(MemoryLeakDetectorTest, OneAllocButNoLeak) { char* mem = detector->allocMemory(testAllocator, 4); detector->deallocMemory(testAllocator, mem); detector->stopChecking(); STRCMP_EQUAL(MEM_LEAK_NONE, detector->report(mem_leak_period_checking)); LONGS_EQUAL(1, testAllocator->alloc_called); LONGS_EQUAL(1, testAllocator->free_called); } TEST(MemoryLeakDetectorTest, TwoAllocOneFreeOneLeak) { char* mem = detector->allocMemory(testAllocator, 4); char* mem2 = detector->allocMemory(testAllocator, 12); detector->deallocMemory(testAllocator, mem); detector->stopChecking(); SimpleString output = detector->report(mem_leak_period_checking); LONGS_EQUAL(1, detector->totalMemoryLeaks(mem_leak_period_checking)); CHECK(output.contains("size: 12")); CHECK(!output.contains("size: 4")); PlatformSpecificFree(mem2); LONGS_EQUAL(2, testAllocator->alloc_called); LONGS_EQUAL(1, testAllocator->free_called); } TEST(MemoryLeakDetectorTest, TwoAllocOneFreeOneLeakReverseOrder) { char* mem = detector->allocMemory(defaultNewAllocator(), 4); char* mem2 = detector->allocMemory(defaultNewAllocator(), 12); detector->deallocMemory(defaultNewAllocator(), mem2); detector->stopChecking(); SimpleString output = detector->report(mem_leak_period_checking); LONGS_EQUAL(1, detector->totalMemoryLeaks(mem_leak_period_checking)); CHECK(!output.contains("size: 12")); CHECK(output.contains("size: 4")); PlatformSpecificFree(mem); } TEST(MemoryLeakDetectorTest, DeleteNonAlocatedMemory) { char a; char* pa = &a; detector->deallocMemory(defaultMallocAllocator(), pa, "FREE.c", 100); detector->stopChecking(); CHECK(reporter->message->contains(MEM_LEAK_DEALLOC_NON_ALLOCATED)); CHECK(reporter->message->contains(" allocated at file: line: 0 size: 0 type: unknown")); CHECK(reporter->message->contains(" deallocated at file: FREE.c line: 100 type: free")); } TEST(MemoryLeakDetectorTest, IgnoreMemoryAllocatedOutsideCheckingPeriod) { detector->stopChecking(); char* mem = detector->allocMemory(defaultNewAllocator(), 4); LONGS_EQUAL(0, detector->totalMemoryLeaks(mem_leak_period_checking)); LONGS_EQUAL(1, detector->totalMemoryLeaks(mem_leak_period_all)); detector->deallocMemory(defaultNewAllocator(), mem); } TEST(MemoryLeakDetectorTest, IgnoreMemoryAllocatedOutsideCheckingPeriodComplicatedCase) { char* mem = detector->allocMemory(defaultNewAllocator(), 4); detector->stopChecking(); char* mem2 = detector->allocMemory(defaultNewAllocator(), 8); LONGS_EQUAL(1, detector->totalMemoryLeaks(mem_leak_period_checking)); detector->clearAllAccounting(mem_leak_period_checking); PlatformSpecificFree(mem); LONGS_EQUAL(0, detector->totalMemoryLeaks(mem_leak_period_checking)); LONGS_EQUAL(1, detector->totalMemoryLeaks(mem_leak_period_all)); detector->startChecking(); char* mem3 = detector->allocMemory(defaultNewAllocator(), 4); detector->stopChecking(); LONGS_EQUAL(1, detector->totalMemoryLeaks(mem_leak_period_checking)); LONGS_EQUAL(2, detector->totalMemoryLeaks(mem_leak_period_all)); detector->clearAllAccounting(mem_leak_period_checking); LONGS_EQUAL(0, detector->totalMemoryLeaks(mem_leak_period_checking)); LONGS_EQUAL(1, detector->totalMemoryLeaks(mem_leak_period_all)); detector->clearAllAccounting(mem_leak_period_all); LONGS_EQUAL(0, detector->totalMemoryLeaks(mem_leak_period_all)); PlatformSpecificFree(mem2); PlatformSpecificFree(mem3); } TEST(MemoryLeakDetectorTest, OneLeakUsingOperatorNewWithFileLine) { char* mem = detector->allocMemory(defaultNewAllocator(), 4, "file.cpp", 1234); detector->stopChecking(); SimpleString output = detector->report(mem_leak_period_checking); CHECK(output.contains("file.cpp")); CHECK(output.contains("1234")); PlatformSpecificFree(mem); } TEST(MemoryLeakDetectorTest, OneAllocAndFreeUsingArrayNew) { char* mem = detector->allocMemory(defaultNewArrayAllocator(), 10, "file.cpp", 1234); char* mem2 = detector->allocMemory(defaultNewArrayAllocator(), 12); LONGS_EQUAL(2, detector->totalMemoryLeaks(mem_leak_period_all)); SimpleString output = detector->report(mem_leak_period_checking); CHECK(output.contains("new []")); detector->deallocMemory(defaultNewArrayAllocator(), mem); detector->deallocMemory(defaultNewArrayAllocator(), mem2); LONGS_EQUAL(0, detector->totalMemoryLeaks(mem_leak_period_all)); detector->stopChecking(); } TEST(MemoryLeakDetectorTest, OneAllocAndFree) { char* mem = detector->allocMemory(defaultMallocAllocator(), 10, "file.cpp", 1234); char* mem2 = detector->allocMemory(defaultMallocAllocator(), 12); LONGS_EQUAL(2, detector->totalMemoryLeaks(mem_leak_period_checking)); SimpleString output = detector->report(mem_leak_period_checking); CHECK(output.contains("malloc")); detector->deallocMemory(defaultMallocAllocator(), mem); detector->deallocMemory(defaultMallocAllocator(), mem2, "file.c", 5678); LONGS_EQUAL(0, detector->totalMemoryLeaks(mem_leak_period_all)); detector->stopChecking(); } TEST(MemoryLeakDetectorTest, OneRealloc) { char* mem1 = detector->allocMemory(testAllocator, 10, "file.cpp", 1234, true); char* mem2 = detector->reallocMemory(testAllocator, mem1, 1000, "other.cpp", 5678, true); LONGS_EQUAL(1, detector->totalMemoryLeaks(mem_leak_period_checking)); SimpleString output = detector->report(mem_leak_period_checking); CHECK(output.contains("other.cpp")); detector->deallocMemory(testAllocator, mem2, true); LONGS_EQUAL(0, detector->totalMemoryLeaks(mem_leak_period_all)); detector->stopChecking(); LONGS_EQUAL(1, testAllocator->alloc_called); LONGS_EQUAL(1, testAllocator->free_called); LONGS_EQUAL(2, testAllocator->allocMemoryLeakNodeCalled); LONGS_EQUAL(2, testAllocator->freeMemoryLeakNodeCalled); } TEST(MemoryLeakDetectorTest, AllocOneTypeFreeAnotherType) { char* mem = detector->allocMemory(defaultNewArrayAllocator(), 100, "ALLOC.c", 10); detector->deallocMemory(defaultMallocAllocator(), mem, "FREE.c", 100); detector->stopChecking(); CHECK(reporter->message->contains(MEM_LEAK_ALLOC_DEALLOC_MISMATCH)); CHECK(reporter->message->contains(" allocated at file: ALLOC.c line: 10 size: 100 type: new []")); CHECK(reporter->message->contains(" deallocated at file: FREE.c line: 100 type: free")); } TEST(MemoryLeakDetectorTest, AllocOneTypeFreeAnotherTypeWithCheckingDisabled) { detector->disableAllocationTypeChecking(); char* mem = detector->allocMemory(defaultNewArrayAllocator(), 100, "ALLOC.c", 10); detector->deallocMemory(defaultNewAllocator(), mem, "FREE.c", 100); detector->stopChecking(); STRCMP_EQUAL("", reporter->message->asCharString()); detector->enableAllocationTypeChecking(); } TEST(MemoryLeakDetectorTest, mallocLeakGivesAdditionalWarning) { char* mem = detector->allocMemory(defaultMallocAllocator(), 100, "ALLOC.c", 10); detector->stopChecking(); SimpleString output = detector->report(mem_leak_period_checking); STRCMP_CONTAINS("Memory leak reports about malloc and free can be caused by allocating using the cpputest version of malloc", output.asCharString()); PlatformSpecificFree(mem); } TEST(MemoryLeakDetectorTest, newLeakDoesNotGiveAdditionalWarning) { char* mem = detector->allocMemory(defaultNewAllocator(), 100, "ALLOC.c", 10); detector->stopChecking(); SimpleString output = detector->report(mem_leak_period_checking); CHECK(! output.contains("Memory leak reports about malloc and free")); PlatformSpecificFree(mem); } TEST(MemoryLeakDetectorTest, MarkCheckingPeriodLeaksAsNonCheckingPeriod) { char* mem = detector->allocMemory(defaultNewArrayAllocator(), 100); char* mem2 = detector->allocMemory(defaultNewArrayAllocator(), 100); detector->stopChecking(); LONGS_EQUAL(2, detector->totalMemoryLeaks(mem_leak_period_checking)); LONGS_EQUAL(2, detector->totalMemoryLeaks(mem_leak_period_all)); detector->markCheckingPeriodLeaksAsNonCheckingPeriod(); LONGS_EQUAL(0, detector->totalMemoryLeaks(mem_leak_period_checking)); LONGS_EQUAL(2, detector->totalMemoryLeaks(mem_leak_period_all)); PlatformSpecificFree(mem); PlatformSpecificFree(mem2); } TEST(MemoryLeakDetectorTest, memoryCorruption) { char* mem = detector->allocMemory(defaultMallocAllocator(), 10, "ALLOC.c", 10); mem[10] = 'O'; mem[11] = 'H'; detector->deallocMemory(defaultMallocAllocator(), mem, "FREE.c", 100); detector->stopChecking(); CHECK(reporter->message->contains(MEM_LEAK_MEMORY_CORRUPTION)); CHECK(reporter->message->contains(" allocated at file: ALLOC.c line: 10 size: 10 type: malloc")); CHECK(reporter->message->contains(" deallocated at file: FREE.c line: 100 type: free")); } TEST(MemoryLeakDetectorTest, safelyDeleteNULL) { detector->deallocMemory(defaultNewAllocator(), 0); STRCMP_EQUAL("", reporter->message->asCharString()); } TEST(MemoryLeakDetectorTest, periodDisabled) { detector->disable(); char* mem = detector->allocMemory(defaultMallocAllocator(), 2); LONGS_EQUAL(1, detector->totalMemoryLeaks(mem_leak_period_all)); LONGS_EQUAL(1, detector->totalMemoryLeaks(mem_leak_period_disabled)); LONGS_EQUAL(0, detector->totalMemoryLeaks(mem_leak_period_enabled)); LONGS_EQUAL(0, detector->totalMemoryLeaks(mem_leak_period_checking)); detector->deallocMemory(defaultMallocAllocator(), mem); } TEST(MemoryLeakDetectorTest, periodEnabled) { detector->enable(); char* mem = detector->allocMemory(defaultMallocAllocator(), 2); LONGS_EQUAL(1, detector->totalMemoryLeaks(mem_leak_period_all)); LONGS_EQUAL(0, detector->totalMemoryLeaks(mem_leak_period_disabled)); LONGS_EQUAL(1, detector->totalMemoryLeaks(mem_leak_period_enabled)); LONGS_EQUAL(0, detector->totalMemoryLeaks(mem_leak_period_checking)); detector->deallocMemory(defaultMallocAllocator(), mem); } TEST(MemoryLeakDetectorTest, periodChecking) { char* mem = detector->allocMemory(defaultMallocAllocator(), 2); LONGS_EQUAL(1, detector->totalMemoryLeaks(mem_leak_period_all)); LONGS_EQUAL(0, detector->totalMemoryLeaks(mem_leak_period_disabled)); LONGS_EQUAL(1, detector->totalMemoryLeaks(mem_leak_period_enabled)); LONGS_EQUAL(1, detector->totalMemoryLeaks(mem_leak_period_checking)); detector->deallocMemory(defaultMallocAllocator(), mem); } TEST(MemoryLeakDetectorTest, allocateWithANullAllocatorCausesNoProblems) { char* mem = detector->allocMemory(NullUnknownAllocator::defaultAllocator(), 2); detector->deallocMemory(NullUnknownAllocator::defaultAllocator(), mem); } TEST(MemoryLeakDetectorTest, invalidateMemory) { unsigned char* mem = (unsigned char*)detector->allocMemory(defaultMallocAllocator(), 2); detector->invalidateMemory((char*)mem); CHECK(mem[0] == 0xCD); CHECK(mem[1] == 0xCD); detector->deallocMemory(defaultMallocAllocator(), mem); } TEST(MemoryLeakDetectorTest, invalidateMemoryNULLShouldWork) { detector->invalidateMemory(NULL); } TEST_GROUP(SimpleStringBuffer) { }; TEST(SimpleStringBuffer, simpleTest) { SimpleStringBuffer buffer; buffer.add("Hello"); buffer.add(" World"); STRCMP_EQUAL("Hello World", buffer.toString()); } TEST(SimpleStringBuffer, writePastLimit) { SimpleStringBuffer buffer; for (int i = 0; i < SimpleStringBuffer::SIMPLE_STRING_BUFFER_LEN * 2; i++) buffer.add("h"); SimpleString str("h", SimpleStringBuffer::SIMPLE_STRING_BUFFER_LEN-1); STRCMP_EQUAL(str.asCharString(), buffer.toString()); } TEST(SimpleStringBuffer, setWriteLimit) { SimpleStringBuffer buffer; buffer.setWriteLimit(10); for (int i = 0; i < SimpleStringBuffer::SIMPLE_STRING_BUFFER_LEN ; i++) buffer.add("h"); SimpleString str("h", 10); STRCMP_EQUAL(str.asCharString(), buffer.toString()); } TEST(SimpleStringBuffer, setWriteLimitTooHighIsIgnored) { SimpleStringBuffer buffer; buffer.setWriteLimit(SimpleStringBuffer::SIMPLE_STRING_BUFFER_LEN+10); for (int i = 0; i < SimpleStringBuffer::SIMPLE_STRING_BUFFER_LEN+10; i++) buffer.add("h"); SimpleString str("h", SimpleStringBuffer::SIMPLE_STRING_BUFFER_LEN-1); STRCMP_EQUAL(str.asCharString(), buffer.toString()); } TEST(SimpleStringBuffer, resetWriteLimit) { SimpleStringBuffer buffer; buffer.setWriteLimit(10); for (int i = 0; i < SimpleStringBuffer::SIMPLE_STRING_BUFFER_LEN ; i++) buffer.add("h"); buffer.resetWriteLimit(); buffer.add(SimpleString("h", 10).asCharString()); SimpleString str("h", 20); STRCMP_EQUAL(str.asCharString(), buffer.toString()); } TEST_GROUP(ReallocBugReported) { }; TEST(ReallocBugReported, ThisSituationShouldntCrash) { TestMemoryAllocator allocator; MemoryLeakFailureForTest reporter; MemoryLeakDetector detector(&reporter); char* mem = detector.allocMemory(&allocator, 5, "file", 1); mem = detector.reallocMemory(&allocator, mem, 19, "file", 1); detector.deallocMemory(&allocator, mem); } cpputest-3.4/tests/TestInstallerTest.cpp0000644000175300017530000000457012023251675015472 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" #include "CppUTest/TestRegistry.h" class TestInstallerTestUtestShell : public UtestShell { }; // this is file scope because the test is installed // with all other tests, which also happen to be // created as static instances at file scope TEST_GROUP(TestInstaller) { TestInstaller* testInstaller; TestRegistry* myRegistry; TestInstallerTestUtestShell shell; void setup() { myRegistry = new TestRegistry(); myRegistry->setCurrentRegistry(myRegistry); testInstaller = new TestInstaller(shell, "TestInstaller", "test", __FILE__, __LINE__); } void teardown() { myRegistry->setCurrentRegistry(0); testInstaller->unDo(); delete testInstaller; delete myRegistry; } }; TEST(TestInstaller, Create) { } cpputest-3.4/tests/AllocLetTestFree.c0000644000175300017530000000075312023251675014635 00000000000000 #include "CppUTest/StandardCLibrary.h" #if CPPUTEST_USE_STD_C_LIB #include "AllocLetTestFree.h" typedef struct AllocLetTestFreeStruct { int placeHolderForHiddenStructElements; } AllocLetTestFreeStruct; AllocLetTestFree AllocLetTestFree_Create(void) { size_t count = 1; AllocLetTestFree self = calloc(count, sizeof(AllocLetTestFreeStruct)); return self; } void AllocLetTestFree_Destroy(AllocLetTestFree self) { void* no_use = self; self = NULL; self = no_use; } #endif cpputest-3.4/tests/MemoryLeakOperatorOverloadsTest.cpp0000644000175300017530000002457312137414545020345 00000000000000#include "CppUTest/TestHarness.h" #include "CppUTest/TestMemoryAllocator.h" #include "CppUTest/MemoryLeakDetector.h" #include "CppUTest/TestOutput.h" #include "CppUTest/TestRegistry.h" #include "CppUTest/PlatformSpecificFunctions.h" #include "CppUTest/TestTestingFixture.h" #include "AllocationInCppFile.h" #include "CppUTest/TestHarness_c.h" #include "AllocationInCFile.h" TEST_GROUP(BasicBehavior) { }; TEST(BasicBehavior, CanDeleteNullPointers) { delete (char*) NULL; delete [] (char*) NULL; } #ifndef CPPUTEST_MEM_LEAK_DETECTION_DISABLED TEST(BasicBehavior, deleteArrayInvalidatesMemory) { unsigned char* memory = new unsigned char[10]; PlatformSpecificMemset(memory, 0xAB, 10); delete [] memory; CHECK(memory[5] != 0xCB); } TEST(BasicBehavior, deleteInvalidatesMemory) { unsigned char* memory = new unsigned char; *memory = 0xAD; delete memory; CHECK(*memory != 0xAD); } static void deleteUnallocatedMemory() { delete (char*) 0x1234678; FAIL("Should never come here"); } TEST(BasicBehavior, deleteWillNotThrowAnExceptionWhenDeletingUnallocatedMemoryButCanStillCauseTestFailures) { /* * Test failure might cause an exception. But according to C++ standard, you aren't allowed * to throw exceptions in the delete function. If you do that, it will call std::terminate. * Therefore, the delete will need to fail without exceptions. */ MemoryLeakFailure* defaultReporter = MemoryLeakWarningPlugin::getGlobalFailureReporter(); TestTestingFixture fixture; fixture.setTestFunction(deleteUnallocatedMemory); fixture.runAllTests(); LONGS_EQUAL(1, fixture.getFailureCount()); POINTERS_EQUAL(defaultReporter, MemoryLeakWarningPlugin::getGlobalFailureReporter()); } #endif #ifdef CPPUTEST_USE_MALLOC_MACROS /* This include is added because *sometimes* the cstdlib does an #undef. This should have been prevented */ #if CPPUTEST_USE_STD_CPP_LIB #include #endif TEST(BasicBehavior, bothMallocAndFreeAreOverloaded) { void* memory = cpputest_malloc_location(sizeof(char), "file", 10); free(memory); memory = malloc(sizeof(unsigned char)); cpputest_free_location(memory, "file", 10); } #endif #if CPPUTEST_USE_MEM_LEAK_DETECTION TEST(BasicBehavior, freeInvalidatesMemory) { unsigned char* memory = (unsigned char*) cpputest_malloc(sizeof(unsigned char)); *memory = 0xAD; cpputest_free(memory); CHECK(*memory != 0xAD); } #endif TEST_GROUP(MemoryLeakOverridesToBeUsedInProductionCode) { MemoryLeakDetector* memLeakDetector; void setup() { memLeakDetector = MemoryLeakWarningPlugin::getGlobalDetector(); } }; #ifdef CPPUTEST_USE_MALLOC_MACROS TEST(MemoryLeakOverridesToBeUsedInProductionCode, MallocOverrideIsUsed) { int memLeaks = memLeakDetector->totalMemoryLeaks(mem_leak_period_checking); void* memory = malloc(10); LONGS_EQUAL(memLeaks+1, memLeakDetector->totalMemoryLeaks(mem_leak_period_checking)); free (memory); } #endif TEST(MemoryLeakOverridesToBeUsedInProductionCode, UseNativeMallocByTemporarlySwitchingOffMalloc) { int memLeaks = memLeakDetector->totalMemoryLeaks(mem_leak_period_checking); #ifdef CPPUTEST_USE_MALLOC_MACROS #undef malloc #undef free #endif void* memory = malloc(10); LONGS_EQUAL(memLeaks, memLeakDetector->totalMemoryLeaks(mem_leak_period_checking)); free (memory); #ifdef CPPUTEST_USE_MALLOC_MACROS #include "CppUTest/MemoryLeakDetectorMallocMacros.h" #endif } /* TEST... allowing for a new overload in a class */ class NewDummyClass { public: static bool overloaded_new_called; #ifdef CPPUTEST_USE_NEW_MACROS #undef new #endif void* operator new (size_t size) #ifdef CPPUTEST_USE_NEW_MACROS #include "CppUTest/MemoryLeakDetectorNewMacros.h" #endif { overloaded_new_called = true; return malloc(size); } void dummyFunction() { char* memory = new char; delete memory; } }; bool NewDummyClass::overloaded_new_called = false; TEST(MemoryLeakOverridesToBeUsedInProductionCode, NoSideEffectsFromTurningOffNewMacros) { /* * Interesting effect of wrapping the operator new around the macro is * that the actual new that is called is a different one than expected. * * The overloaded operator new doesn't actually ever get called. * * This might come as a surprise, so it is important to realize! */ NewDummyClass dummy; dummy.dummyFunction(); // CHECK(dummy.overloaded_new_called); } TEST(MemoryLeakOverridesToBeUsedInProductionCode, UseNativeNewByTemporarlySwitchingOffNew) { #ifdef CPPUTEST_USE_NEW_MACROS #undef new #undef delete #endif char* memory = new char[10]; delete [] memory; #ifdef CPPUTEST_USE_NEW_MACROS #include "CppUTest/MemoryLeakDetectorNewMacros.h" #endif } #if CPPUTEST_USE_MEM_LEAK_DETECTION TEST(MemoryLeakOverridesToBeUsedInProductionCode, OperatorNewMacroOverloadViaIncludeFileWorks) { char* leak = newAllocation(); STRCMP_NOCASE_CONTAINS("AllocationInCppFile.cpp", memLeakDetector->report(mem_leak_period_checking)); delete leak; } TEST(MemoryLeakOverridesToBeUsedInProductionCode, OperatorNewArrayMacroOverloadViaIncludeFileWorks) { char* leak = newArrayAllocation(); STRCMP_NOCASE_CONTAINS("AllocationInCppFile.cpp", memLeakDetector->report(mem_leak_period_checking)); delete[] leak; } TEST(MemoryLeakOverridesToBeUsedInProductionCode, MallocOverrideWorks) { char* leak = mallocAllocation(); STRCMP_NOCASE_CONTAINS("AllocationInCFile.c", memLeakDetector->report(mem_leak_period_checking)); freeAllocation(leak); } TEST(MemoryLeakOverridesToBeUsedInProductionCode, MallocWithButFreeWithoutLeakDetectionDoesntCrash) { char* leak = mallocAllocation(); freeAllocationWithoutMacro(leak); STRCMP_CONTAINS("Memory leak reports about malloc and free can be caused", memLeakDetector->report(mem_leak_period_checking)); memLeakDetector->removeMemoryLeakInformationWithoutCheckingOrDeallocating(leak); } TEST(MemoryLeakOverridesToBeUsedInProductionCode, OperatorNewOverloadingWithoutMacroWorks) { char* leak = newAllocationWithoutMacro(); STRCMP_CONTAINS("unknown", memLeakDetector->report(mem_leak_period_checking)); delete leak; } TEST(MemoryLeakOverridesToBeUsedInProductionCode, OperatorNewArrayOverloadingWithoutMacroWorks) { char* leak = newArrayAllocationWithoutMacro(); STRCMP_CONTAINS("unknown", memLeakDetector->report(mem_leak_period_checking)); delete[] leak; } #else TEST(MemoryLeakOverridesToBeUsedInProductionCode, MemoryOverridesAreDisabled) { char* leak = newAllocation(); STRCMP_EQUAL("No memory leaks were detected.", memLeakDetector->report(mem_leak_period_checking)); delete leak; } #endif TEST_GROUP(OutOfMemoryTestsForOperatorNew) { TestMemoryAllocator* no_memory_allocator; void setup() { no_memory_allocator = new NullUnknownAllocator; setCurrentNewAllocator(no_memory_allocator); setCurrentNewArrayAllocator(no_memory_allocator); } void teardown() { setCurrentNewAllocatorToDefault(); setCurrentNewArrayAllocatorToDefault(); delete no_memory_allocator; } }; #if CPPUTEST_USE_MEM_LEAK_DETECTION #if CPPUTEST_USE_STD_CPP_LIB TEST(OutOfMemoryTestsForOperatorNew, FailingNewOperatorThrowsAnExceptionWhenUsingStdCppNew) { CHECK_THROWS(std::bad_alloc, new char); } TEST(OutOfMemoryTestsForOperatorNew, FailingNewArrayOperatorThrowsAnExceptionWhenUsingStdCppNew) { CHECK_THROWS(std::bad_alloc, new char[10]); } class ClassThatThrowsAnExceptionInTheConstructor { public: ClassThatThrowsAnExceptionInTheConstructor() __no_return__ { throw 1; } }; TEST_GROUP(TestForExceptionsInConstructor) { }; TEST(TestForExceptionsInConstructor,ConstructorThrowsAnException) { CHECK_THROWS(int, new ClassThatThrowsAnExceptionInTheConstructor); } TEST(TestForExceptionsInConstructor,ConstructorThrowsAnExceptionAllocatedAsArray) { CHECK_THROWS(int, new ClassThatThrowsAnExceptionInTheConstructor[10]); } #else TEST(OutOfMemoryTestsForOperatorNew, FailingNewOperatorReturnsNull) { POINTERS_EQUAL(NULL, new char); } TEST(OutOfMemoryTestsForOperatorNew, FailingNewArrayOperatorReturnsNull) { POINTERS_EQUAL(NULL, new char[10]); } #endif #undef new #if CPPUTEST_USE_STD_CPP_LIB /* * CLang 4.2 and memory allocation. * * Clang 4.2 has done some optimizations to their memory management that actually causes slightly different behavior than what the C++ Standard defines. * Usually this is not a problem... but in this case, it is a problem. * * More information about the optimization can be found at: http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2012/n3433.html * We've done a bug-report to clang to fix some of this non-standard behavior, which is open at: http://llvm.org/bugs/show_bug.cgi?id=15541 * * I very much hope that nobody would actually ever hit this bug/optimization as it is hard to figure out what is going on. * * The original test simply did "new char". Because the memory wasn't assigned to anything and is local in context, the optimization *doesn't* call * the operator new overload. Because it doesn't call the operator new (optimizing away a call to operator new), therefore the method wouldn't throw an exception * and therefore this test failed. * * The first attempt to fix this is to create a local variable and assigned the memory to that. Also this doesn't work as it still detects the allocation is * local and optimizes away the memory call. * * Now, we assign the memory on some static global which fools the optimizer to believe that it isn't local and it stops optimizing the operator new call. * * We (Bas Vodde and Terry Yin) suspect that in a real product, you wouldn't be able to detect the optimization and it's breaking of Standard C++. Therefore, * for now, we keep this hack in the test to fool the optimizer and hope nobody will ever notice this 'optimizer behavior' in a real product. * */ static char* some_memory; TEST(OutOfMemoryTestsForOperatorNew, FailingNewOperatorThrowsAnExceptionWhenUsingStdCppNewWithoutOverride) { CHECK_THROWS(std::bad_alloc, some_memory = new char); } TEST(OutOfMemoryTestsForOperatorNew, FailingNewArrayOperatorThrowsAnExceptionWhenUsingStdCppNewWithoutOverride) { CHECK_THROWS(std::bad_alloc, some_memory = new char[10]); } TEST(OutOfMemoryTestsForOperatorNew, FailingNewOperatorReturnsNullWithoutOverride) { POINTERS_EQUAL(NULL, new (std::nothrow) char); } TEST(OutOfMemoryTestsForOperatorNew, FailingNewArrayOperatorReturnsNullWithoutOverride) { POINTERS_EQUAL(NULL, new (std::nothrow) char[10]); } #else TEST(OutOfMemoryTestsForOperatorNew, FailingNewOperatorReturnsNullWithoutOverride) { POINTERS_EQUAL(NULL, new char); } TEST(OutOfMemoryTestsForOperatorNew, FailingNewArrayOperatorReturnsNullWithoutOverride) { POINTERS_EQUAL(NULL, new char[10]); } #endif #endif cpputest-3.4/tests/TestMemoryAllocatorTest.cpp0000644000175300017530000001040212023251675016635 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" #include "CppUTest/TestMemoryAllocator.h" #include "CppUTest/PlatformSpecificFunctions.h" TEST_GROUP(TestMemoryAllocatorTest) { TestMemoryAllocator* allocator; void setup() { allocator = NULL; } void teardown() { if (allocator) delete allocator; } }; TEST(TestMemoryAllocatorTest, SetCurrentNewAllocator) { allocator = new TestMemoryAllocator("new allocator for test"); setCurrentNewAllocator(allocator); POINTERS_EQUAL(allocator, getCurrentNewAllocator()); setCurrentNewAllocatorToDefault(); POINTERS_EQUAL(defaultNewAllocator(), getCurrentNewAllocator()); } TEST(TestMemoryAllocatorTest, SetCurrentNewArrayAllocator) { allocator = new TestMemoryAllocator("new array allocator for test"); setCurrentNewArrayAllocator(allocator); POINTERS_EQUAL(allocator, getCurrentNewArrayAllocator()); setCurrentNewArrayAllocatorToDefault(); POINTERS_EQUAL(defaultNewArrayAllocator(), getCurrentNewArrayAllocator()); } TEST(TestMemoryAllocatorTest, SetCurrentMallocAllocator) { allocator = new TestMemoryAllocator("malloc_allocator"); setCurrentMallocAllocator(allocator); POINTERS_EQUAL(allocator, getCurrentMallocAllocator()); setCurrentMallocAllocatorToDefault(); POINTERS_EQUAL(defaultMallocAllocator(), getCurrentMallocAllocator()); } TEST(TestMemoryAllocatorTest, MemoryAllocation) { allocator = new TestMemoryAllocator(); allocator->free_memory(allocator->alloc_memory(100, "file", 1), "file", 1); } TEST(TestMemoryAllocatorTest, MallocNames) { STRCMP_EQUAL("Standard Malloc Allocator", defaultMallocAllocator()->name()); STRCMP_EQUAL("malloc", defaultMallocAllocator()->alloc_name()); STRCMP_EQUAL("free", defaultMallocAllocator()->free_name()); } TEST(TestMemoryAllocatorTest, NewNames) { STRCMP_EQUAL("Standard New Allocator", defaultNewAllocator()->name()); STRCMP_EQUAL("new", defaultNewAllocator()->alloc_name()); STRCMP_EQUAL("delete", defaultNewAllocator()->free_name()); } TEST(TestMemoryAllocatorTest, NewArrayNames) { STRCMP_EQUAL("Standard New [] Allocator", defaultNewArrayAllocator()->name()); STRCMP_EQUAL("new []", defaultNewArrayAllocator()->alloc_name()); STRCMP_EQUAL("delete []", defaultNewArrayAllocator()->free_name()); } TEST(TestMemoryAllocatorTest, NullUnknownAllocation) { allocator = new NullUnknownAllocator; allocator->free_memory(allocator->alloc_memory(100, "file", 1), "file", 1); } TEST(TestMemoryAllocatorTest, NullUnknownNames) { allocator = new NullUnknownAllocator; STRCMP_EQUAL("Null Allocator", allocator->name()); STRCMP_EQUAL("unknown", allocator->alloc_name()); STRCMP_EQUAL("unknown", allocator->free_name()); } cpputest-3.4/tests/MemoryLeakWarningTest.cpp0000644000175300017530000002065112134202450016254 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" #include "CppUTest/TestRegistry.h" #include "CppUTest/TestOutput.h" #include "CppUTest/MemoryLeakWarningPlugin.h" #include "CppUTest/MemoryLeakDetector.h" #include "CppUTest/TestMemoryAllocator.h" #include "CppUTest/TestTestingFixture.h" #include "CppUTest/TestHarness_c.h" static char* leak1; static long* leak2; class DummyReporter: public MemoryLeakFailure { public: virtual ~DummyReporter() { } virtual void fail(char* /*fail_string*/) { } }; static MemoryLeakDetector* detector; static MemoryLeakWarningPlugin* memPlugin; static DummyReporter dummy; static TestMemoryAllocator* allocator; TEST_GROUP(MemoryLeakWarningTest) { TestTestingFixture* fixture; void setup() { fixture = new TestTestingFixture(); detector = new MemoryLeakDetector(&dummy); allocator = new TestMemoryAllocator; memPlugin = new MemoryLeakWarningPlugin("TestMemoryLeakWarningPlugin", detector); fixture->registry_->installPlugin(memPlugin); memPlugin->enable(); leak1 = 0; leak2 = 0; } void teardown() { detector->deallocMemory(allocator, leak1); detector->deallocMemory(allocator, leak2); delete fixture; delete memPlugin; delete detector; delete allocator; } }; static void _testTwoLeaks() { leak1 = detector->allocMemory(allocator, 10); leak2 = (long*) (void*) detector->allocMemory(allocator, 4); } TEST(MemoryLeakWarningTest, TwoLeaks) { fixture->setTestFunction(_testTwoLeaks); fixture->runAllTests(); LONGS_EQUAL(1, fixture->getFailureCount()); fixture->assertPrintContains("Total number of leaks: 2"); } static void _testIgnore2() { memPlugin->expectLeaksInTest(2); leak1 = detector->allocMemory(allocator, 10); leak2 = (long*) (void*) detector->allocMemory(allocator, 4); } TEST(MemoryLeakWarningTest, Ignore2) { fixture->setTestFunction(_testIgnore2); fixture->runAllTests(); LONGS_EQUAL(0, fixture->getFailureCount()); } static void _failAndLeakMemory() { leak1 = detector->allocMemory(allocator, 10); FAIL(""); } TEST(MemoryLeakWarningTest, FailingTestDoesNotReportMemoryLeaks) { fixture->setTestFunction(_failAndLeakMemory); fixture->runAllTests(); LONGS_EQUAL(1, fixture->getFailureCount()); } static bool memoryLeakDetectorWasDeleted = false; static bool memoryLeakFailureWasDelete = false; class DummyMemoryLeakDetector : public MemoryLeakDetector { public: DummyMemoryLeakDetector(MemoryLeakFailure* reporter) : MemoryLeakDetector(reporter) {} virtual ~DummyMemoryLeakDetector() { memoryLeakDetectorWasDeleted = true; } }; class DummyMemoryLeakFailure : public MemoryLeakFailure { virtual ~DummyMemoryLeakFailure() { memoryLeakFailureWasDelete = true; } virtual void fail(char*) { } }; static bool cpputestHasCrashed; TEST_GROUP(MemoryLeakWarningGlobalDetectorTest) { MemoryLeakDetector* detector; MemoryLeakFailure* failureReporter; DummyMemoryLeakDetector * dummyDetector; MemoryLeakFailure* dummyReporter; static void crashMethod() { cpputestHasCrashed = true; } void setup() { detector = MemoryLeakWarningPlugin::getGlobalDetector(); failureReporter = MemoryLeakWarningPlugin::getGlobalFailureReporter(); memoryLeakDetectorWasDeleted = false; memoryLeakFailureWasDelete = false; MemoryLeakWarningPlugin::turnOffNewDeleteOverloads(); dummyReporter = new DummyMemoryLeakFailure; dummyDetector = new DummyMemoryLeakDetector(dummyReporter); UtestShell::setCrashMethod(crashMethod); cpputestHasCrashed = false; } void teardown() { if (!memoryLeakDetectorWasDeleted) delete dummyDetector; if (!memoryLeakFailureWasDelete) delete dummyReporter; MemoryLeakWarningPlugin::setGlobalDetector(detector, failureReporter); MemoryLeakWarningPlugin::turnOnNewDeleteOverloads(); UtestShell::resetCrashMethod(); setCurrentMallocAllocatorToDefault(); setCurrentNewAllocatorToDefault(); setCurrentNewArrayAllocatorToDefault(); } }; TEST(MemoryLeakWarningGlobalDetectorTest, turnOffNewOverloadsCausesNoAdditionalLeaks) { int storedAmountOfLeaks = detector->totalMemoryLeaks(mem_leak_period_all); char* arrayMemory = new char[100]; char* nonArrayMemory = new char; char* mallocMemory = (char*) cpputest_malloc_location_with_leak_detection(10, "file", 10); char* reallocMemory = (char*) cpputest_realloc_location_with_leak_detection(NULL, 10, "file", 10); LONGS_EQUAL(storedAmountOfLeaks, detector->totalMemoryLeaks(mem_leak_period_all)); cpputest_free_location_with_leak_detection(mallocMemory, "file", 10); cpputest_free_location_with_leak_detection(reallocMemory, "file", 10); delete [] arrayMemory; delete nonArrayMemory; } TEST(MemoryLeakWarningGlobalDetectorTest, destroyGlobalDetector) { MemoryLeakWarningPlugin::setGlobalDetector(dummyDetector, dummyReporter); MemoryLeakWarningPlugin::destroyGlobalDetector(); CHECK(memoryLeakDetectorWasDeleted); CHECK(memoryLeakFailureWasDelete); } TEST(MemoryLeakWarningGlobalDetectorTest, MemoryWarningPluginCanBeSetToDestroyTheGlobalDetector) { MemoryLeakWarningPlugin* plugin = new MemoryLeakWarningPlugin("dummy"); plugin->destroyGlobalDetectorAndTurnOffMemoryLeakDetectionInDestructor(true); MemoryLeakWarningPlugin::setGlobalDetector(dummyDetector, dummyReporter); delete plugin; CHECK(memoryLeakDetectorWasDeleted); } #ifndef CPPUTEST_MEM_LEAK_DETECTION_DISABLED TEST(MemoryLeakWarningGlobalDetectorTest, crashOnLeakWithOperatorNew) { MemoryLeakWarningPlugin::setGlobalDetector(dummyDetector, dummyReporter); MemoryLeakWarningPlugin::turnOnNewDeleteOverloads(); crash_on_allocation_number(1); char* memory = new char[100]; CHECK(cpputestHasCrashed); delete memory; MemoryLeakWarningPlugin::turnOffNewDeleteOverloads(); } TEST(MemoryLeakWarningGlobalDetectorTest, crashOnLeakWithOperatorNewArray) { MemoryLeakWarningPlugin::setGlobalDetector(dummyDetector, dummyReporter); MemoryLeakWarningPlugin::turnOnNewDeleteOverloads(); crash_on_allocation_number(1); char* memory = new char; CHECK(cpputestHasCrashed); delete memory; MemoryLeakWarningPlugin::turnOffNewDeleteOverloads(); } TEST(MemoryLeakWarningGlobalDetectorTest, crashOnLeakWithOperatorMalloc) { MemoryLeakWarningPlugin::setGlobalDetector(dummyDetector, dummyReporter); MemoryLeakWarningPlugin::turnOnNewDeleteOverloads(); crash_on_allocation_number(1); char* memory = (char*) cpputest_malloc(10); CHECK(cpputestHasCrashed); cpputest_free(memory); MemoryLeakWarningPlugin::turnOffNewDeleteOverloads(); } #endif #if CPPUTEST_USE_STD_CPP_LIB TEST(MemoryLeakWarningGlobalDetectorTest, turnOffNewOverloadsNoThrowCausesNoAdditionalLeaks) { #undef new int storedAmountOfLeaks = detector->totalMemoryLeaks(mem_leak_period_all); char* nonMemoryNoThrow = new (std::nothrow) char; char* nonArrayMemoryNoThrow = new (std::nothrow) char[10]; LONGS_EQUAL(storedAmountOfLeaks, detector->totalMemoryLeaks(mem_leak_period_all)); delete nonMemoryNoThrow; delete nonArrayMemoryNoThrow; #ifdef CPPUTEST_USE_NEW_MACROS #include "CppUTest/MemoryLeakDetectorNewMacros.h" #endif } #endif cpputest-3.4/tests/TestOutputTest.cpp0000644000175300017530000001437212023251675015036 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" #include "CppUTest/TestOutput.h" #include "CppUTest/TestResult.h" #include "CppUTest/PlatformSpecificFunctions.h" static long millisTime; static long MockGetPlatformSpecificTimeInMillis() { return millisTime; } TEST_GROUP(TestOutput) { TestOutput* printer; StringBufferTestOutput* mock; UtestShell* tst; TestFailure *f; TestFailure *f2; TestFailure *f3; TestResult* result; void setup() { mock = new StringBufferTestOutput(); printer = mock; tst = new UtestShell("group", "test", "file", 10); f = new TestFailure(tst, "failfile", 20, "message"); f2 = new TestFailure(tst, "file", 20, "message"); f3 = new TestFailure(tst, "file", 2, "message"); result = new TestResult(*mock); result->setTotalExecutionTime(10); millisTime = 0; SetPlatformSpecificTimeInMillisMethod(MockGetPlatformSpecificTimeInMillis); TestOutput::setWorkingEnvironment(TestOutput::eclipse); } void teardown() { TestOutput::setWorkingEnvironment(TestOutput::detectEnvironment); delete printer; delete tst; delete f; delete f2; delete f3; delete result; SetPlatformSpecificTimeInMillisMethod(0); } }; TEST(TestOutput, PrintConstCharStar) { printer->print("hello"); printer->print("hello\n"); STRCMP_EQUAL("hellohello\n", mock->getOutput().asCharString()); } TEST(TestOutput, PrintLong) { printer->print(1234); STRCMP_EQUAL("1234", mock->getOutput().asCharString()); } TEST(TestOutput, PrintDouble) { printer->printDouble(12.34); STRCMP_EQUAL("12.34", mock->getOutput().asCharString()); } TEST(TestOutput, StreamOperators) { *printer << "n=" << 1234; STRCMP_EQUAL("n=1234", mock->getOutput().asCharString()); } TEST(TestOutput, PrintTestEnded) { printer->printCurrentTestEnded(*result); STRCMP_EQUAL(".", mock->getOutput().asCharString()); } TEST(TestOutput, PrintTestALot) { for (int i = 0; i < 60; ++i) { printer->printCurrentTestEnded(*result); } STRCMP_EQUAL("..................................................\n..........", mock->getOutput().asCharString()); } TEST(TestOutput, SetProgressIndicator) { result->setProgressIndicator("."); printer->printCurrentTestEnded(*result); result->setProgressIndicator("!"); printer->printCurrentTestEnded(*result); result->setProgressIndicator("."); printer->printCurrentTestEnded(*result); STRCMP_EQUAL(".!.", mock->getOutput().asCharString()); } TEST(TestOutput, PrintTestVerboseStarted) { mock->verbose(); printer->printCurrentTestStarted(*tst); STRCMP_EQUAL("TEST(group, test)", mock->getOutput().asCharString()); } TEST(TestOutput, PrintTestVerboseEnded) { mock->verbose(); result->currentTestStarted(tst); millisTime = 5; result->currentTestEnded(tst); STRCMP_EQUAL("TEST(group, test) - 5 ms\n", mock->getOutput().asCharString()); } TEST(TestOutput, PrintTestRun) { printer->printTestRun(2, 3); STRCMP_EQUAL("Test run 2 of 3\n", mock->getOutput().asCharString()); } TEST(TestOutput, PrintTestRunOnlyOne) { printer->printTestRun(1, 1); STRCMP_EQUAL("", mock->getOutput().asCharString()); } TEST(TestOutput, PrintWithFailureInSameFile) { printer->print(*f2); STRCMP_EQUAL("\nfile:20: error: Failure in TEST(group, test)\n\tmessage\n\n", mock->getOutput().asCharString()); } TEST(TestOutput, PrintFailureWithFailInDifferentFile) { printer->print(*f); const char* expected = "\nfile:10: error: Failure in TEST(group, test)" "\nfailfile:20: error:\n\tmessage\n\n"; STRCMP_EQUAL(expected, mock->getOutput().asCharString()); } TEST(TestOutput, PrintFailureWithFailInHelper) { printer->print(*f3); const char* expected = "\nfile:10: error: Failure in TEST(group, test)" "\nfile:2: error:\n\tmessage\n\n"; STRCMP_EQUAL(expected, mock->getOutput().asCharString()); } TEST(TestOutput, PrintInVisualStudioFormat) { TestOutput::setWorkingEnvironment(TestOutput::vistualStudio); printer->print(*f3); const char* expected = "\nfile(10): error: Failure in TEST(group, test)" "\nfile(2): error:\n\tmessage\n\n"; STRCMP_EQUAL(expected, mock->getOutput().asCharString()); } TEST(TestOutput, PrintTestStarts) { printer->printTestsStarted(); STRCMP_EQUAL("", mock->getOutput().asCharString()); } TEST(TestOutput, printTestsEnded) { result->countTest(); result->countCheck(); result->countIgnored(); result->countIgnored(); result->countRun(); result->countRun(); result->countRun(); printer->printTestsEnded(*result); STRCMP_EQUAL("\nOK (1 tests, 3 ran, 1 checks, 2 ignored, 0 filtered out, 10 ms)\n\n", mock->getOutput().asCharString()); } TEST(TestOutput, printTestsEndedWithFailures) { result->addFailure(*f); printer->flush(); printer->printTestsEnded(*result); STRCMP_EQUAL("\nErrors (1 failures, 0 tests, 0 ran, 0 checks, 0 ignored, 0 filtered out, 10 ms)\n\n", mock->getOutput().asCharString()); } cpputest-3.4/tests/AllocLetTestFreeTest.cpp0000644000175300017530000000101312023251675016023 00000000000000 #include "CppUTest/StandardCLibrary.h" extern "C" { #include "AllocLetTestFree.h" } #include "CppUTest/TestHarness.h" #if CPPUTEST_USE_STD_C_LIB /* * This test makes sure that memory leak malloc macros are forced into .cpp and .c files */ TEST_GROUP(AllocLetTestFree) { AllocLetTestFree allocLetTestFree; void setup() { allocLetTestFree = AllocLetTestFree_Create(); } void teardown() { AllocLetTestFree_Destroy(allocLetTestFree); } }; TEST(AllocLetTestFree, Create) { free(allocLetTestFree); } #endif cpputest-3.4/tests/NullTestTest.cpp0000644000175300017530000000420012023251675014435 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" TEST_GROUP(NullTestShell) { NullTestShell* nullTest; TEST_SETUP() { nullTest = new NullTestShell(); } TEST_TEARDOWN() { delete nullTest; } }; TEST(NullTestShell, Create) { } TEST(NullTestShell, InstanceAlwaysTheSame) { NullTestShell& _instance = NullTestShell::instance(); CHECK(&_instance == &NullTestShell::instance()); } TEST(NullTestShell, NullTestsDontCount) { NullTestShell& _instance = NullTestShell::instance(); CHECK(_instance.countTests() == 0); } cpputest-3.4/tests/TestRegistryTest.cpp0000644000175300017530000001641312023251675015344 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" #include "CppUTest/TestRegistry.h" #include "CppUTest/TestOutput.h" namespace { const int testLineNumber = 1; } class MockTest: public UtestShell { public: MockTest(const char* group = "Group") : UtestShell(group, "Name", "File", testLineNumber), hasRun_(false) { } virtual void runOneTestWithPlugins(TestPlugin*, TestResult&) { hasRun_ = true; } bool hasRun_; }; class MockTestResult: public TestResult { public: int countTestsStarted; int countTestsEnded; int countCurrentTestStarted; int countCurrentTestEnded; int countCurrentGroupStarted; int countCurrentGroupEnded; MockTestResult(TestOutput& p) : TestResult(p) { resetCount(); } virtual ~MockTestResult() { } void resetCount() { countTestsStarted = 0; countTestsEnded = 0; countCurrentTestStarted = 0; countCurrentTestEnded = 0; countCurrentGroupStarted = 0; countCurrentGroupEnded = 0; } virtual void testsStarted() { countTestsStarted++; } virtual void testsEnded() { countTestsEnded++; } virtual void currentTestStarted(UtestShell* /*test*/) { countCurrentTestStarted++; } virtual void currentTestEnded(UtestShell* /*test*/) { countCurrentTestEnded++; } virtual void currentGroupStarted(UtestShell* /*test*/) { countCurrentGroupStarted++; } virtual void currentGroupEnded(UtestShell* /*test*/) { countCurrentGroupEnded++; } }; TEST_GROUP(TestRegistry) { TestRegistry* myRegistry; StringBufferTestOutput* output; MockTest* test1; MockTest* test2; MockTest* test3; TestResult *result; MockTestResult *mockResult; void setup() { output = new StringBufferTestOutput(); mockResult = new MockTestResult(*output); result = mockResult; test1 = new MockTest(); test2 = new MockTest(); test3 = new MockTest("group2"); myRegistry = new TestRegistry(); myRegistry->setCurrentRegistry(myRegistry); } void teardown() { myRegistry->setCurrentRegistry(0); delete myRegistry; delete test1; delete test2; delete test3; delete result; delete output; } void addAndRunAllTests() { myRegistry->addTest(test1); myRegistry->addTest(test2); myRegistry->addTest(test3); myRegistry->runAllTests(*result); } }; TEST(TestRegistry, registryMyRegistryAndReset) { CHECK(myRegistry->getCurrentRegistry() == myRegistry); } TEST(TestRegistry, emptyRegistryIsEmpty) { CHECK(myRegistry->countTests() == 0); } TEST(TestRegistry, addOneTestIsNotEmpty) { myRegistry->addTest(test1); CHECK(myRegistry->countTests() == 1); } TEST(TestRegistry, addOneTwoTests) { myRegistry->addTest(test1); myRegistry->addTest(test2); CHECK(myRegistry->countTests() == 2); } TEST(TestRegistry, runTwoTests) { myRegistry->addTest(test1); myRegistry->addTest(test2); CHECK(!test1->hasRun_); CHECK(!test2->hasRun_); myRegistry->runAllTests(*result); CHECK(test1->hasRun_); CHECK(test2->hasRun_); } TEST(TestRegistry, runTwoTestsCheckResultFunctionsCalled) { myRegistry->addTest(test1); myRegistry->addTest(test2); myRegistry->runAllTests(*result); LONGS_EQUAL(1, mockResult->countTestsStarted); LONGS_EQUAL(1, mockResult->countTestsEnded); LONGS_EQUAL(1, mockResult->countCurrentGroupStarted); LONGS_EQUAL(1, mockResult->countCurrentGroupEnded); LONGS_EQUAL(2, mockResult->countCurrentTestStarted); LONGS_EQUAL(2, mockResult->countCurrentTestEnded); } TEST(TestRegistry, runThreeTestsandTwoGroupsCheckResultFunctionsCalled) { addAndRunAllTests(); LONGS_EQUAL(2, mockResult->countCurrentGroupStarted); LONGS_EQUAL(2, mockResult->countCurrentGroupEnded); LONGS_EQUAL(3, mockResult->countCurrentTestStarted); LONGS_EQUAL(3, mockResult->countCurrentTestEnded); } TEST(TestRegistry, unDoTest) { myRegistry->addTest(test1); CHECK(myRegistry->countTests() == 1); myRegistry->unDoLastAddTest(); CHECK(myRegistry->countTests() == 0); } TEST(TestRegistry, unDoButNoTest) { CHECK(myRegistry->countTests() == 0); myRegistry->unDoLastAddTest(); CHECK(myRegistry->countTests() == 0); } TEST(TestRegistry, reallyUndoLastTest) { myRegistry->addTest(test1); myRegistry->addTest(test2); CHECK(myRegistry->countTests() == 2); myRegistry->unDoLastAddTest(); CHECK(myRegistry->countTests() == 1); myRegistry->runAllTests(*result); CHECK(test1->hasRun_); CHECK(!test2->hasRun_); } TEST(TestRegistry, findTestWithNameDoesntExist) { CHECK(myRegistry->findTestWithName("ThisTestDoesntExists") == NULL); } TEST(TestRegistry, findTestWithName) { test1->setTestName("NameOfATestThatDoesExist"); myRegistry->addTest(test1); CHECK(myRegistry->findTestWithName("NameOfATestThatDoesExist")); } TEST(TestRegistry, findTestWithGroupDoesntExist) { CHECK(myRegistry->findTestWithGroup("ThisTestGroupDoesntExists") == NULL); } TEST(TestRegistry, findTestWithGroup) { test1->setGroupName("GroupOfATestThatDoesExist"); myRegistry->addTest(test1); CHECK(myRegistry->findTestWithGroup("GroupOfATestThatDoesExist")); } TEST(TestRegistry, nameFilterWorks) { test1->setTestName("testname"); test2->setTestName("noname"); myRegistry->nameFilter("testname"); addAndRunAllTests(); CHECK(test1->hasRun_); CHECK(!test2->hasRun_); } TEST(TestRegistry, groupFilterWorks) { test1->setGroupName("groupname"); test2->setGroupName("noname"); myRegistry->groupFilter("groupname"); addAndRunAllTests(); CHECK(test1->hasRun_); CHECK(!test2->hasRun_); } TEST(TestRegistry, runTestInSeperateProcess) { myRegistry->setRunTestsInSeperateProcess(); myRegistry->addTest(test1); myRegistry->runAllTests(*result); CHECK(test1->isRunInSeperateProcess()); } cpputest-3.4/tests/AllocationInCFile.c0000644000175300017530000000056412023251675014753 00000000000000#include "AllocationInCFile.h" #include "CppUTest/MemoryLeakDetectorMallocMacros.h" #include "CppUTest/StandardCLibrary.h" /* This file is for simulating overloads of malloc */ char* mallocAllocation() { return (char*) malloc(10UL); } void freeAllocation(void* memory) { free(memory); } #undef free void freeAllocationWithoutMacro(void* memory) { free(memory); } cpputest-3.4/tests/PluginTest.cpp0000644000175300017530000001265712134163705014137 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" #include "CppUTest/TestRegistry.h" #include "CppUTest/TestOutput.h" #include "CppUTest/TestTestingFixture.h" #define GENERIC_PLUGIN "GenericPlugin" #define GENERIC_PLUGIN2 "GenericPlugin2" #define GENERIC_PLUGIN3 "GenericPlugin3" static int sequenceNumber; class DummyPlugin: public TestPlugin { public: DummyPlugin(const SimpleString& name) : TestPlugin(name), preAction(0), postAction(0) { } virtual ~DummyPlugin() { } virtual void preTestAction(UtestShell&, TestResult&) { preAction++; preActionSequence = sequenceNumber++; } virtual void postTestAction(UtestShell&, TestResult&) { postAction++; postActionSequence = sequenceNumber++; } int preAction; int preActionSequence; int postAction; int postActionSequence; }; class DummyPluginWhichAcceptsParameters: public DummyPlugin { public: DummyPluginWhichAcceptsParameters(const SimpleString& name) : DummyPlugin(name) { } virtual bool parseArguments(int ac, const char** av, int index) { SimpleString argument (av[index]); if (argument == "-paccept") return true; return TestPlugin::parseArguments(ac, av, index); } }; TEST_GROUP(PluginTest) { DummyPlugin* firstPlugin; DummyPluginWhichAcceptsParameters* secondPlugin; DummyPlugin* thirdPlugin; TestTestingFixture *genFixture; TestRegistry *registry; void setup() { firstPlugin = new DummyPlugin(GENERIC_PLUGIN); secondPlugin = new DummyPluginWhichAcceptsParameters(GENERIC_PLUGIN2); thirdPlugin = new DummyPlugin(GENERIC_PLUGIN3); genFixture = new TestTestingFixture; registry = genFixture->registry_; registry->installPlugin(firstPlugin); sequenceNumber = 1; } void teardown() { delete firstPlugin; delete secondPlugin; delete thirdPlugin; delete genFixture; } }; #define GENERIC_PLUGIN "GenericPlugin" TEST(PluginTest, PluginHasName) { CHECK_EQUAL(GENERIC_PLUGIN, firstPlugin->getName()); } TEST(PluginTest, InstallPlugin) { CHECK_EQUAL(firstPlugin, registry->getFirstPlugin()); CHECK_EQUAL(firstPlugin, registry->getPluginByName(GENERIC_PLUGIN)); LONGS_EQUAL(1, registry->countPlugins()); } TEST(PluginTest, InstallMultiplePlugins) { registry->installPlugin(thirdPlugin); CHECK_EQUAL(firstPlugin, registry->getPluginByName(GENERIC_PLUGIN)); CHECK_EQUAL(thirdPlugin, registry->getPluginByName(GENERIC_PLUGIN3)); CHECK_EQUAL(0, registry->getPluginByName("I do not exist")); } TEST(PluginTest, ActionsAllRun) { genFixture->runAllTests(); genFixture->runAllTests(); CHECK_EQUAL(2, firstPlugin->preAction); CHECK_EQUAL(2, firstPlugin->postAction); } TEST(PluginTest, Sequence) { registry->installPlugin(thirdPlugin); genFixture->runAllTests(); CHECK_EQUAL(1, thirdPlugin->preActionSequence); CHECK_EQUAL(2, firstPlugin->preActionSequence); CHECK_EQUAL(3, firstPlugin->postActionSequence); CHECK_EQUAL(4, thirdPlugin->postActionSequence); LONGS_EQUAL(2, registry->countPlugins()); } TEST(PluginTest, DisablesPluginsDontRun) { registry->installPlugin(thirdPlugin); thirdPlugin->disable(); genFixture->runAllTests(); CHECK(!thirdPlugin->isEnabled()); thirdPlugin->enable(); genFixture->runAllTests(); CHECK_EQUAL(2, firstPlugin->preAction); CHECK_EQUAL(1, thirdPlugin->preAction); CHECK(thirdPlugin->isEnabled()); } TEST(PluginTest, ParseArgumentsForUnknownArgumentsFails) { registry->installPlugin(secondPlugin); const char *cmd_line[] = {"nonsense", "andmorenonsense"}; CHECK(registry->getFirstPlugin()->parseAllArguments(2, cmd_line, 0) == false ); } TEST(PluginTest, ParseArgumentsContinuesAndSucceedsWhenAPluginCanParse) { registry->installPlugin(secondPlugin); const char *cmd_line[] = {"-paccept", "andmorenonsense"}; CHECK(registry->getFirstPlugin()->parseAllArguments(2, cmd_line, 0)); } cpputest-3.4/tests/TestResultTest.cpp0000644000175300017530000000450112023251675015005 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" #include "CppUTest/PlatformSpecificFunctions.h" #include "CppUTest/TestOutput.h" static long MockGetPlatformSpecificTimeInMillis() { return 10; } TEST_GROUP(TestResult) { TestOutput* printer; StringBufferTestOutput* mock; TestResult* res; void setup() { mock = new StringBufferTestOutput(); printer = mock; res = new TestResult(*printer); SetPlatformSpecificTimeInMillisMethod(MockGetPlatformSpecificTimeInMillis); } void teardown() { SetPlatformSpecificTimeInMillisMethod(0); delete printer; delete res; } }; TEST(TestResult, TestEndedWillPrintResultsAndExecutionTime) { res->testsEnded(); CHECK(mock->getOutput().contains("10 ms")); } cpputest-3.4/tests/PreprocessorTest.cpp0000644000175300017530000000360012023251675015354 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" TEST_GROUP(PreprocessorTest) { }; /* TODO: Need to fix this on all platforms! */ #if 0 #ifndef CPPUTEST_COMPILATION TEST(PreprocessorTest, FailWhenCPPUTEST_COMPILATIONIsNotDefined) { FAIL("CPPUTEST_COMPILATION should always be defined when compiling CppUTest"); } #endif #endif cpputest-3.4/tests/TestUTestMacro.cpp0000644000175300017530000002611412134163705014720 00000000000000 /* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" #include "CppUTest/TestOutput.h" #include "CppUTest/TestTestingFixture.h" static bool lineOfCodeExecutedAfterCheck; #define CHECK_TEST_FAILS_PROPER_WITH_TEXT(text) CHECK_TEST_FAILS_PROPER_WITH_TEXT_LOCATION(text, fixture, __FILE__, __LINE__) static void CHECK_TEST_FAILS_PROPER_WITH_TEXT_LOCATION(const char* text, TestTestingFixture& fixture, const char* file, int line) { if (fixture.getFailureCount() != 1) FAIL_LOCATION(StringFromFormat("Expected one test failure, but got %d amount of test failures", fixture.getFailureCount()).asCharString(), file, line); STRCMP_CONTAINS_LOCATION(text, fixture.output_->getOutput().asCharString(), file, line); if (lineOfCodeExecutedAfterCheck) FAIL_LOCATION("The test should jump/throw on failure and not execute the next line. However, the next line was executed.", file, line) } TEST_GROUP(UnitTestMacros) { TestTestingFixture fixture; void setup() { lineOfCodeExecutedAfterCheck = false; } void runTestWithMethod(void(*method)()) { fixture.setTestFunction(method); fixture.runAllTests(); } }; static void _failingTestMethodWithFAIL() { FAIL("This test fails"); lineOfCodeExecutedAfterCheck = true; } TEST(UnitTestMacros, FAILMakesTheTestFailPrintsTheRightResultAndStopsExecuting) { runTestWithMethod(_failingTestMethodWithFAIL); CHECK_TEST_FAILS_PROPER_WITH_TEXT("This test fails"); } TEST(UnitTestMacros, FAILWillPrintTheFileThatItFailed) { runTestWithMethod(_failingTestMethodWithFAIL); CHECK_TEST_FAILS_PROPER_WITH_TEXT(__FILE__); } TEST(UnitTestMacros, FAILBehavesAsAProperMacro) { if (this == 0) FAIL("") else CHECK(true) if (this != 0) CHECK(true) else FAIL("") } IGNORE_TEST(UnitTestMacros, FAILworksInAnIngoredTest) { FAIL("die!"); } static void _failingTestMethodWithCHECK() { CHECK(false); lineOfCodeExecutedAfterCheck = true; } TEST(UnitTestMacros, FailureWithCHECK) { runTestWithMethod(_failingTestMethodWithCHECK); CHECK_TEST_FAILS_PROPER_WITH_TEXT("false"); } TEST(UnitTestMacros, CHECKBehavesAsProperMacro) { if (this == 0) CHECK(false) else CHECK(true) } static void _failingTestMethodWithCHECK_TEXT() { CHECK_TEXT(false, "Failed because it failed"); lineOfCodeExecutedAfterCheck = true; } TEST(UnitTestMacros, FailureWithCHECK_TEXT) { runTestWithMethod(_failingTestMethodWithCHECK_TEXT); CHECK_TEST_FAILS_PROPER_WITH_TEXT("Failed because it failed"); } TEST(UnitTestMacros, CHECK_TEXTBehavesAsProperMacro) { if (this == 0) CHECK_TEXT(false, "false") else CHECK_TEXT(true, "true") } IGNORE_TEST(UnitTestMacros, CHECKWorksInAnIgnoredTest) { CHECK_TEXT(false, "false"); } static void _failingTestMethodWithCHECK_TRUE() { CHECK_TRUE(false); lineOfCodeExecutedAfterCheck = true; } TEST(UnitTestMacros, FailureWithCHECK_TRUE) { runTestWithMethod(_failingTestMethodWithCHECK_TRUE); CHECK_TEST_FAILS_PROPER_WITH_TEXT("CHECK_TRUE"); } TEST(UnitTestMacros, CHECK_TRUEBehavesAsProperMacro) { if (this == 0) CHECK_TRUE(false) else CHECK_TRUE(true) } IGNORE_TEST(UnitTestMacros, CHECK_TRUEWorksInAnIgnoredTest) { CHECK_TRUE(false) } static void _failingTestMethodWithCHECK_FALSE() { CHECK_FALSE(true); lineOfCodeExecutedAfterCheck = true; } TEST(UnitTestMacros, FailureWithCHECK_FALSE) { runTestWithMethod(_failingTestMethodWithCHECK_FALSE); CHECK_TEST_FAILS_PROPER_WITH_TEXT("CHECK_FALSE"); } TEST(UnitTestMacros, CHECK_FALSEBehavesAsProperMacro) { if (this == 0) CHECK_FALSE(true) else CHECK_FALSE(false) } IGNORE_TEST(UnitTestMacros, CHECK_FALSEWorksInAnIgnoredTest) { CHECK_FALSE(true) } static void _failingTestMethodWithCHECK_EQUAL() { CHECK_EQUAL(1, 2); lineOfCodeExecutedAfterCheck = true; } TEST(UnitTestMacros, FailureWithCHECK_EQUAL) { runTestWithMethod(_failingTestMethodWithCHECK_EQUAL); CHECK_TEST_FAILS_PROPER_WITH_TEXT("expected <1>"); } TEST(UnitTestMacros, CHECK_EQUALBehavesAsProperMacro) { if (this == 0) CHECK_EQUAL(1, 2) else CHECK_EQUAL(1, 1) } IGNORE_TEST(UnitTestMacros, CHECK_EQUALWorksInAnIgnoredTest) { CHECK_EQUAL(1, 2) } static void _failingTestMethodWithSTRCMP_CONTAINS() { STRCMP_CONTAINS("hello", "world"); lineOfCodeExecutedAfterCheck = true; } TEST(UnitTestMacros, FailureWithSTRCMP_CONTAINS) { runTestWithMethod(_failingTestMethodWithSTRCMP_CONTAINS); CHECK_TEST_FAILS_PROPER_WITH_TEXT("actual "); } TEST(UnitTestMacros, STRCMP_CONTAINSBehavesAsProperMacro) { if (this == 0) STRCMP_CONTAINS("1", "2") else STRCMP_CONTAINS("1", "1") } IGNORE_TEST(UnitTestMacros, STRCMP_CONTAINSWorksInAnIgnoredTest) { STRCMP_CONTAINS("Hello", "World") } static void _failingTestMethodWithSTRCMP_NOCASE_CONTAINS() { STRCMP_NOCASE_CONTAINS("hello", "WORLD"); lineOfCodeExecutedAfterCheck = true; } TEST(UnitTestMacros, FailureWithSTRCMP_NOCASE_CONTAINS) { runTestWithMethod(_failingTestMethodWithSTRCMP_NOCASE_CONTAINS); CHECK_TEST_FAILS_PROPER_WITH_TEXT(""); } TEST(UnitTestMacros, STRCMP_NOCASE_CONTAINSBehavesAsProperMacro) { if (this == 0) STRCMP_NOCASE_CONTAINS("never", "executed") else STRCMP_NOCASE_CONTAINS("hello", "HELLO WORLD") } IGNORE_TEST(UnitTestMacros, STRCMP_NO_CASE_CONTAINSWorksInAnIgnoredTest) { STRCMP_NOCASE_CONTAINS("Hello", "World") } static void _failingTestMethodWithLONGS_EQUAL() { LONGS_EQUAL(1, 0xff); lineOfCodeExecutedAfterCheck = true; } TEST(UnitTestMacros, FailurePrintHexOutputForLongInts) { runTestWithMethod(_failingTestMethodWithLONGS_EQUAL); CHECK_TEST_FAILS_PROPER_WITH_TEXT("expected < 1 0x01>"); CHECK_TEST_FAILS_PROPER_WITH_TEXT("but was <255 0xff>"); } TEST(UnitTestMacros, LONGS_EQUALBehavesAsProperMacro) { if (this == 0) LONGS_EQUAL(1, 2) else LONGS_EQUAL(10, 10) } IGNORE_TEST(UnitTestMacros, LONGS_EQUALWorksInAnIgnoredTest) { LONGS_EQUAL(11, 22) } static void _failingTestMethodWithBYTES_EQUAL() { BYTES_EQUAL('a', 'b'); lineOfCodeExecutedAfterCheck = true; } TEST(UnitTestMacros, FailureWithBYTES_EQUAL) { runTestWithMethod(_failingTestMethodWithBYTES_EQUAL); CHECK_TEST_FAILS_PROPER_WITH_TEXT("<97 0x61>"); } TEST(UnitTestMacros, BYTES_EQUALBehavesAsProperMacro) { if (this == 0) BYTES_EQUAL('a', 'b') else BYTES_EQUAL('c', 'c') } IGNORE_TEST(UnitTestMacros, BYTES_EQUALWorksInAnIgnoredTest) { BYTES_EQUAL('q', 'w') } static void _failingTestMethodWithPOINTERS_EQUAL() { POINTERS_EQUAL((void*)0xa5a5, (void*)0xf0f0); lineOfCodeExecutedAfterCheck = true; } TEST(UnitTestMacros, FailurePrintHexOutputForPointers) { runTestWithMethod(_failingTestMethodWithPOINTERS_EQUAL); CHECK_TEST_FAILS_PROPER_WITH_TEXT("expected <0xa5a5>"); CHECK_TEST_FAILS_PROPER_WITH_TEXT("but was <0xf0f0>"); } TEST(UnitTestMacros, POINTERS_EQUALBehavesAsProperMacro) { if (this == 0) POINTERS_EQUAL(0, (void*) 0xbeefbeef) else POINTERS_EQUAL((void*)0xdeadbeef, (void*)0xdeadbeef) } IGNORE_TEST(UnitTestMacros, POINTERS_EQUALWorksInAnIgnoredTest) { POINTERS_EQUAL((void*) 0xbeef, (void*) 0xdead) } static void _failingTestMethodWithDOUBLES_EQUAL() { DOUBLES_EQUAL(0.12, 44.1, 0.3); lineOfCodeExecutedAfterCheck = true; } TEST(UnitTestMacros, FailureWithDOUBLES_EQUAL) { runTestWithMethod(_failingTestMethodWithDOUBLES_EQUAL); CHECK_TEST_FAILS_PROPER_WITH_TEXT("0.12"); CHECK_TEST_FAILS_PROPER_WITH_TEXT("44.1"); } TEST(UnitTestMacros, DOUBLES_EQUALBehavesAsProperMacro) { if (this == 0) DOUBLES_EQUAL(0.0, 1.1, 0.0005) else DOUBLES_EQUAL(0.1, 0.2, 0.2) } IGNORE_TEST(UnitTestMacros, DOUBLES_EQUALWorksInAnIgnoredTest) { DOUBLES_EQUAL(100.0, 0.0, 0.2) } static void _passingTestMethod() { CHECK(true); lineOfCodeExecutedAfterCheck = true; } TEST(UnitTestMacros, SuccessPrintsNothing) { runTestWithMethod(_passingTestMethod); LONGS_EQUAL(0, fixture.getFailureCount()); fixture.assertPrintContains(".\nOK (1 tests"); CHECK(lineOfCodeExecutedAfterCheck); } static void _methodThatOnlyPrints() { UT_PRINT("Hello World!"); } TEST(UnitTestMacros, PrintPrintsWhateverPrintPrints) { runTestWithMethod(_methodThatOnlyPrints); LONGS_EQUAL(0, fixture.getFailureCount()); fixture.assertPrintContains("Hello World!"); fixture.assertPrintContains(__FILE__); } static void _methodThatOnlyPrintsUsingSimpleStringFromFormat() { UT_PRINT(StringFromFormat("Hello %s %d", "World!", 2009)); } TEST(UnitTestMacros, PrintPrintsSimpleStringsForExampleThoseReturnedByFromString) { runTestWithMethod(_methodThatOnlyPrintsUsingSimpleStringFromFormat); fixture.assertPrintContains("Hello World! 2009"); } static int functionThatReturnsAValue() { CHECK(0 == 0); LONGS_EQUAL(1,1); BYTES_EQUAL(0xab,0xab); CHECK_EQUAL(100,100); STRCMP_EQUAL("THIS", "THIS"); DOUBLES_EQUAL(1.0, 1.0, .01); POINTERS_EQUAL(0, 0); return 0; } TEST(UnitTestMacros, allMacrosFromFunctionThatReturnsAValue) { functionThatReturnsAValue(); } #if CPPUTEST_USE_STD_CPP_LIB static void _failingTestMethod_NoThrowWithCHECK_THROWS() { CHECK_THROWS(int, (void) (1+2)); lineOfCodeExecutedAfterCheck = true; } TEST(UnitTestMacros, FailureWithCHECK_THROWS_whenDoesntThrow) { runTestWithMethod(_failingTestMethod_NoThrowWithCHECK_THROWS); CHECK_TEST_FAILS_PROPER_WITH_TEXT("expected to throw int"); CHECK_TEST_FAILS_PROPER_WITH_TEXT("but threw nothing"); } TEST(UnitTestMacros, SuccessWithCHECK_THROWS) { CHECK_THROWS(int, throw 4); } static void _failingTestMethod_WrongThrowWithCHECK_THROWS() { CHECK_THROWS(int, throw 4.3); lineOfCodeExecutedAfterCheck = true; } TEST(UnitTestMacros, FailureWithCHECK_THROWS_whenWrongThrow) { runTestWithMethod(_failingTestMethod_WrongThrowWithCHECK_THROWS); CHECK_TEST_FAILS_PROPER_WITH_TEXT("expected to throw int"); CHECK_TEST_FAILS_PROPER_WITH_TEXT("but threw a different type"); } TEST(UnitTestMacros, MultipleCHECK_THROWS_inOneScope) { CHECK_THROWS(int, throw 4); CHECK_THROWS(int, throw 4); } #endif cpputest-3.4/tests/AllocationInCppFile.cpp0000664000175300017530000000073612066727207015664 00000000000000/* This file is for emulating allocations in a C++ file. * It is used simulating the use of the memory leak detector on production code in C++ */ #undef new #include "CppUTest/MemoryLeakDetectorNewMacros.h" #include "AllocationInCppFile.h" char* newAllocation() { return new char; } char* newArrayAllocation() { return new char[100]; } #undef new char* newAllocationWithoutMacro() { return new char; } char* newArrayAllocationWithoutMacro() { return new char[100]; } cpputest-3.4/tests/UtestTest.cpp0000664000175300017530000001350512066727207014007 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" #include "CppUTest/TestOutput.h" #include "CppUTest/TestTestingFixture.h" #include "CppUTest/PlatformSpecificFunctions.h" TEST_GROUP(UtestShell) { TestTestingFixture fixture; }; static void _failMethod() { FAIL("This test fails"); } static void _passingTestMethod() { CHECK(true); } TEST(UtestShell, compareDoubles) { double zero = 0.0; double not_a_number = zero / zero; CHECK(doubles_equal(1.0, 1.001, 0.01)); CHECK(!doubles_equal(not_a_number, 1.001, 0.01)); CHECK(!doubles_equal(1.0, not_a_number, 0.01)); CHECK(!doubles_equal(1.0, 1.001, not_a_number)); CHECK(!doubles_equal(1.0, 1.1, 0.05)); double a = 1.2345678; CHECK(doubles_equal(a, a, 0.000000001)); } IGNORE_TEST(UtestShell, IgnoreTestAccessingFixture) { CHECK(&fixture != 0); } TEST(UtestShell, MacrosUsedInSetup) { IGNORE_ALL_LEAKS_IN_TEST(); fixture.setSetup(_failMethod); fixture.setTestFunction(_passingTestMethod); fixture.runAllTests(); LONGS_EQUAL(1, fixture.getFailureCount()); } TEST(UtestShell, MacrosUsedInTearDown) { IGNORE_ALL_LEAKS_IN_TEST(); fixture.setTeardown(_failMethod); fixture.setTestFunction(_passingTestMethod); fixture.runAllTests(); LONGS_EQUAL(1, fixture.getFailureCount()); } static int teardownCalled = 0; static void _teardownMethod() { teardownCalled++; } TEST(UtestShell, TeardownCalledAfterTestFailure) { teardownCalled = 0; IGNORE_ALL_LEAKS_IN_TEST(); fixture.setTeardown(_teardownMethod); fixture.setTestFunction(_failMethod); fixture.runAllTests(); LONGS_EQUAL(1, fixture.getFailureCount()); LONGS_EQUAL(1, teardownCalled); } static int stopAfterFailure = 0; static void _stopAfterFailureMethod() { FAIL("fail"); stopAfterFailure++; } TEST(UtestShell, TestStopsAfterTestFailure) { IGNORE_ALL_LEAKS_IN_TEST(); stopAfterFailure = 0; fixture.setTestFunction(_stopAfterFailureMethod); fixture.runAllTests(); LONGS_EQUAL(1, fixture.getFailureCount()); LONGS_EQUAL(0, stopAfterFailure); } TEST(UtestShell, TestStopsAfterSetupFailure) { stopAfterFailure = 0; fixture.setSetup(_stopAfterFailureMethod); fixture.setTeardown(_stopAfterFailureMethod); fixture.setTestFunction(_failMethod); fixture.runAllTests(); LONGS_EQUAL(2, fixture.getFailureCount()); LONGS_EQUAL(0, stopAfterFailure); } static bool destructorWasCalledOnFailedTest = false; class DestructorOughtToBeCalled { public: virtual ~DestructorOughtToBeCalled() { destructorWasCalledOnFailedTest = true; } }; #if CPPUTEST_USE_STD_CPP_LIB static void _destructorCalledForLocalObjects() { DestructorOughtToBeCalled pleaseCallTheDestructor; destructorWasCalledOnFailedTest = false; FAIL("fail"); } TEST(UtestShell, DestructorIsCalledForLocalObjectsWhenTheTestFails) { fixture.setTestFunction(_destructorCalledForLocalObjects); fixture.runAllTests(); CHECK(destructorWasCalledOnFailedTest); } #endif TEST_BASE(MyOwnTest) { MyOwnTest() : inTest(false) { } bool inTest; void setup() { CHECK(!inTest); inTest = true; } void teardown() { CHECK(inTest); inTest = false; } }; TEST_GROUP_BASE(UtestMyOwn, MyOwnTest) { }; TEST(UtestMyOwn, test) { CHECK(inTest); } class NullParameterTest: public UtestShell { }; TEST(UtestMyOwn, NullParameters) { NullParameterTest nullTest; /* Bug fix tests for creating a test without a name, fix in SimpleString */ TestRegistry* reg = TestRegistry::getCurrentRegistry(); nullTest.shouldRun(reg->getGroupFilter(), reg->getNameFilter()); } class AllocateAndDeallocateInConstructorAndDestructor { char* memory_; char* morememory_; public: AllocateAndDeallocateInConstructorAndDestructor() { memory_ = new char[100]; morememory_ = NULL; } void allocateMoreMemory() { morememory_ = new char[123]; } ~AllocateAndDeallocateInConstructorAndDestructor() { delete [] memory_; delete [] morememory_; } }; TEST_GROUP(CanHaveMemberVariablesInTestGroupThatAllocateMemoryWithoutCausingMemoryLeaks) { AllocateAndDeallocateInConstructorAndDestructor dummy; }; TEST(CanHaveMemberVariablesInTestGroupThatAllocateMemoryWithoutCausingMemoryLeaks, testInTestGroupName) { dummy.allocateMoreMemory(); } cpputest-3.4/tests/AllTests.dep0000644000175300017530000000012412023251675013545 00000000000000# Microsoft Developer Studio Generated Dependency File, included by AllTests.mak cpputest-3.4/tests/AllTests.dsp0000644000175300017530000001447112023251675013575 00000000000000# Microsoft Developer Studio Project File - Name="AllTests" - Package Owner=<4> # Microsoft Developer Studio Generated Build File, Format Version 6.00 # ** DO NOT EDIT ** # TARGTYPE "Win32 (x86) Console Application" 0x0103 CFG=AllTests - Win32 Debug !MESSAGE This is not a valid makefile. To build this project using NMAKE, !MESSAGE use the Export Makefile command and run !MESSAGE !MESSAGE NMAKE /f "AllTests.mak". !MESSAGE !MESSAGE You can specify a configuration when running NMAKE !MESSAGE by defining the macro CFG on the command line. For example: !MESSAGE !MESSAGE NMAKE /f "AllTests.mak" CFG="AllTests - Win32 Debug" !MESSAGE !MESSAGE Possible choices for configuration are: !MESSAGE !MESSAGE "AllTests - Win32 Release" (based on "Win32 (x86) Console Application") !MESSAGE "AllTests - Win32 Debug" (based on "Win32 (x86) Console Application") !MESSAGE # Begin Project # PROP AllowPerConfigDependencies 0 # PROP Scc_ProjName "" # PROP Scc_LocalPath "" CPP=cl.exe RSC=rc.exe !IF "$(CFG)" == "AllTests - Win32 Release" # PROP BASE Use_MFC 0 # PROP BASE Use_Debug_Libraries 0 # PROP BASE Output_Dir "Release" # PROP BASE Intermediate_Dir "Release" # PROP BASE Target_Dir "" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 0 # PROP Output_Dir "Release" # PROP Intermediate_Dir "Release" # PROP Target_Dir "" # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c # ADD CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c # ADD BASE RSC /l 0x409 /d "NDEBUG" # ADD RSC /l 0x409 /d "NDEBUG" BSC32=bscmake.exe # ADD BASE BSC32 /nologo # ADD BSC32 /nologo LINK32=link.exe # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 !ELSEIF "$(CFG)" == "AllTests - Win32 Debug" # PROP BASE Use_MFC 0 # PROP BASE Use_Debug_Libraries 1 # PROP BASE Output_Dir "Debug" # PROP BASE Intermediate_Dir "Debug" # PROP BASE Target_Dir "" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 1 # PROP Output_Dir "Debug" # PROP Intermediate_Dir "Debug" # PROP Ignore_Export_Lib 0 # PROP Target_Dir "" # ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c # ADD CPP /nologo /MDd /W3 /GX /ZI /Od /I "..\include" /I "..\include\Platforms\VisualCpp" /D "_CONSOLE" /D "WIN32" /D "_DEBUG" /D "_MBCS" /FR /FD /GZ /c # SUBTRACT CPP /YX # ADD BASE RSC /l 0x409 /d "_DEBUG" # ADD RSC /l 0x409 /d "_DEBUG" BSC32=bscmake.exe # ADD BASE BSC32 /nologo # ADD BSC32 /nologo LINK32=link.exe # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept # ADD LINK32 ..\lib\CppUTest.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib winmm.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept # SUBTRACT LINK32 /incremental:no !ENDIF # Begin Target # Name "AllTests - Win32 Release" # Name "AllTests - Win32 Debug" # Begin Group "Source Files" # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" # Begin Source File SOURCE=.\AllocationInCFile.c # End Source File # Begin Source File SOURCE=.\AllocationInCppFile.cpp # End Source File # Begin Source File SOURCE=.\AllTests.cpp # End Source File # Begin Source File SOURCE=.\CheatSheetTest.cpp # End Source File # Begin Source File SOURCE=.\CommandLineArgumentsTest.cpp # End Source File # Begin Source File SOURCE=.\CommandLineTestRunnerTest.cpp # End Source File # Begin Source File SOURCE=.\JUnitOutputTest.cpp # End Source File # Begin Source File SOURCE=.\MemoryLeakDetectorTest.cpp # End Source File # Begin Source File SOURCE=.\MemoryLeakOperatorOverloadsTest.cpp # End Source File # Begin Source File SOURCE=.\MemoryLeakWarningTest.cpp # End Source File # Begin Source File SOURCE=.\NullTestTest.cpp # End Source File # Begin Source File SOURCE=.\PluginTest.cpp # End Source File # Begin Source File SOURCE=.\PreprocessorTest.cpp # End Source File # Begin Source File SOURCE=.\SetPluginTest.cpp # End Source File # Begin Source File SOURCE=.\SimpleStringTest.cpp # End Source File # Begin Source File SOURCE=.\TestFailureTest.cpp # End Source File # Begin Source File SOURCE=.\TestFilterTest.cpp # End Source File # Begin Source File SOURCE=.\TestHarness_cTest.cpp # End Source File # Begin Source File SOURCE=.\TestHarness_cTestCFile.c # End Source File # Begin Source File SOURCE=.\TestInstallerTest.cpp # End Source File # Begin Source File SOURCE=.\TestMemoryAllocatorTest.cpp # End Source File # Begin Source File SOURCE=.\TestOutputTest.cpp # End Source File # Begin Source File SOURCE=.\TestRegistryTest.cpp # End Source File # Begin Source File SOURCE=.\TestResultTest.cpp # End Source File # Begin Source File SOURCE=.\UtestTest.cpp # End Source File # End Group # Begin Group "Header Files" # PROP Default_Filter "h;hpp;hxx;hm;inl" # Begin Source File SOURCE=.\AllocationInCFile.h # End Source File # Begin Source File SOURCE=.\AllocationInCppFile.h # End Source File # Begin Source File SOURCE=.\AllTests.h # End Source File # End Group # Begin Group "Resource Files" # PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" # End Group # End Target # End Project cpputest-3.4/tests/AllTests.h0000644000175300017530000000414112023251675013227 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ //Include this in the test main to execute these tests IMPORT_TEST_GROUP( Utest); IMPORT_TEST_GROUP( Failure); IMPORT_TEST_GROUP( TestOutput); IMPORT_TEST_GROUP( SimpleString); IMPORT_TEST_GROUP( TestInstaller); IMPORT_TEST_GROUP( NullTest); IMPORT_TEST_GROUP( MemoryLeakWarningTest); IMPORT_TEST_GROUP( TestHarness_c); IMPORT_TEST_GROUP( CommandLineTestRunner); IMPORT_TEST_GROUP( JUnitOutputTest); IMPORT_TEST_GROUP( MemoryLeakDetectorTest); /* In allTest.cpp */ IMPORT_TEST_GROUP(CheatSheet); cpputest-3.4/tests/AllTests.mak0000644000175300017530000004237712023251675013565 00000000000000# Microsoft Developer Studio Generated NMAKE File, Based on AllTests.dsp !IF "$(CFG)" == "" CFG=AllTests - Win32 Debug !MESSAGE No configuration specified. Defaulting to AllTests - Win32 Debug. !ENDIF !IF "$(CFG)" != "AllTests - Win32 Release" && "$(CFG)" != "AllTests - Win32 Debug" !MESSAGE Invalid configuration "$(CFG)" specified. !MESSAGE You can specify a configuration when running NMAKE !MESSAGE by defining the macro CFG on the command line. For example: !MESSAGE !MESSAGE NMAKE /f "AllTests.mak" CFG="AllTests - Win32 Debug" !MESSAGE !MESSAGE Possible choices for configuration are: !MESSAGE !MESSAGE "AllTests - Win32 Release" (based on "Win32 (x86) Console Application") !MESSAGE "AllTests - Win32 Debug" (based on "Win32 (x86) Console Application") !MESSAGE !ERROR An invalid configuration is specified. !ENDIF !IF "$(OS)" == "Windows_NT" NULL= !ELSE NULL=nul !ENDIF CPP=cl.exe RSC=rc.exe !IF "$(CFG)" == "AllTests - Win32 Release" OUTDIR=.\Release INTDIR=.\Release # Begin Custom Macros OutDir=.\Release # End Custom Macros !IF "$(RECURSE)" == "0" ALL : "$(OUTDIR)\AllTests.exe" !ELSE ALL : "CppUTest - Win32 Release" "$(OUTDIR)\AllTests.exe" !ENDIF !IF "$(RECURSE)" == "1" CLEAN :"CppUTest - Win32 ReleaseCLEAN" !ELSE CLEAN : !ENDIF -@erase "$(INTDIR)\AllocationInCFile.obj" -@erase "$(INTDIR)\AllocationInCppFile.obj" -@erase "$(INTDIR)\AllTests.obj" -@erase "$(INTDIR)\CommandLineArgumentsTest.obj" -@erase "$(INTDIR)\CommandLineTestRunnerTest.obj" -@erase "$(INTDIR)\FailureTest.obj" -@erase "$(INTDIR)\JUnitOutputTest.obj" -@erase "$(INTDIR)\MemoryLeakAllocator.obj" -@erase "$(INTDIR)\MemoryLeakAllocatorTest.obj" -@erase "$(INTDIR)\MemoryLeakDetectorTest.obj" -@erase "$(INTDIR)\MemoryLeakOperatorOverloadsTest.obj" -@erase "$(INTDIR)\MemoryLeakWarningTest.obj" -@erase "$(INTDIR)\NullTestTest.obj" -@erase "$(INTDIR)\PluginTest.obj" -@erase "$(INTDIR)\SetPluginTest.obj" -@erase "$(INTDIR)\SimpleStringTest.obj" -@erase "$(INTDIR)\TestHarness_cTest.obj" -@erase "$(INTDIR)\TestInstallerTest.obj" -@erase "$(INTDIR)\TestOutputTest.obj" -@erase "$(INTDIR)\TestRegistryTest.obj" -@erase "$(INTDIR)\TestResultTest.obj" -@erase "$(INTDIR)\UtestTest.obj" -@erase "$(INTDIR)\vc60.idb" -@erase "$(OUTDIR)\AllTests.exe" "$(OUTDIR)" : if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)" CPP_PROJ=/nologo /ML /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /Fp"$(INTDIR)\AllTests.pch" /YX /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\\" /FD /c BSC32=bscmake.exe BSC32_FLAGS=/nologo /o"$(OUTDIR)\AllTests.bsc" BSC32_SBRS= \ LINK32=link.exe LINK32_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /incremental:no /pdb:"$(OUTDIR)\AllTests.pdb" /machine:I386 /out:"$(OUTDIR)\AllTests.exe" LINK32_OBJS= \ "$(INTDIR)\AllTests.obj" \ "$(INTDIR)\CommandLineArgumentsTest.obj" \ "$(INTDIR)\CommandLineTestRunnerTest.obj" \ "$(INTDIR)\FailureTest.obj" \ "$(INTDIR)\JUnitOutputTest.obj" \ "$(INTDIR)\MemoryLeakAllocator.obj" \ "$(INTDIR)\MemoryLeakAllocatorTest.obj" \ "$(INTDIR)\MemoryLeakDetectorTest.obj" \ "$(INTDIR)\MemoryLeakWarningTest.obj" \ "$(INTDIR)\NullTestTest.obj" \ "$(INTDIR)\PluginTest.obj" \ "$(INTDIR)\SetPluginTest.obj" \ "$(INTDIR)\SimpleStringTest.obj" \ "$(INTDIR)\TestHarness_cTest.obj" \ "$(INTDIR)\TestInstallerTest.obj" \ "$(INTDIR)\TestOutputTest.obj" \ "$(INTDIR)\TestRegistryTest.obj" \ "$(INTDIR)\TestResultTest.obj" \ "$(INTDIR)\UtestTest.obj" \ "$(INTDIR)\AllocationInCppFile.obj" \ "$(INTDIR)\MemoryLeakOperatorOverloadsTest.obj" \ "$(INTDIR)\AllocationInCFile.obj" \ "..\Release\CppUTest.lib" "$(OUTDIR)\AllTests.exe" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS) $(LINK32) @<< $(LINK32_FLAGS) $(LINK32_OBJS) << !ELSEIF "$(CFG)" == "AllTests - Win32 Debug" OUTDIR=.\Debug INTDIR=.\Debug # Begin Custom Macros OutDir=.\Debug # End Custom Macros !IF "$(RECURSE)" == "0" ALL : "$(OUTDIR)\AllTests.exe" "$(OUTDIR)\AllTests.bsc" !ELSE ALL : "CppUTest - Win32 Debug" "$(OUTDIR)\AllTests.exe" "$(OUTDIR)\AllTests.bsc" !ENDIF !IF "$(RECURSE)" == "1" CLEAN :"CppUTest - Win32 DebugCLEAN" !ELSE CLEAN : !ENDIF -@erase "$(INTDIR)\AllocationInCFile.obj" -@erase "$(INTDIR)\AllocationInCFile.sbr" -@erase "$(INTDIR)\AllocationInCppFile.obj" -@erase "$(INTDIR)\AllocationInCppFile.sbr" -@erase "$(INTDIR)\AllTests.obj" -@erase "$(INTDIR)\AllTests.sbr" -@erase "$(INTDIR)\CommandLineArgumentsTest.obj" -@erase "$(INTDIR)\CommandLineArgumentsTest.sbr" -@erase "$(INTDIR)\CommandLineTestRunnerTest.obj" -@erase "$(INTDIR)\CommandLineTestRunnerTest.sbr" -@erase "$(INTDIR)\FailureTest.obj" -@erase "$(INTDIR)\FailureTest.sbr" -@erase "$(INTDIR)\JUnitOutputTest.obj" -@erase "$(INTDIR)\JUnitOutputTest.sbr" -@erase "$(INTDIR)\MemoryLeakAllocator.obj" -@erase "$(INTDIR)\MemoryLeakAllocator.sbr" -@erase "$(INTDIR)\MemoryLeakAllocatorTest.obj" -@erase "$(INTDIR)\MemoryLeakAllocatorTest.sbr" -@erase "$(INTDIR)\MemoryLeakDetectorTest.obj" -@erase "$(INTDIR)\MemoryLeakDetectorTest.sbr" -@erase "$(INTDIR)\MemoryLeakOperatorOverloadsTest.obj" -@erase "$(INTDIR)\MemoryLeakOperatorOverloadsTest.sbr" -@erase "$(INTDIR)\MemoryLeakWarningTest.obj" -@erase "$(INTDIR)\MemoryLeakWarningTest.sbr" -@erase "$(INTDIR)\NullTestTest.obj" -@erase "$(INTDIR)\NullTestTest.sbr" -@erase "$(INTDIR)\PluginTest.obj" -@erase "$(INTDIR)\PluginTest.sbr" -@erase "$(INTDIR)\SetPluginTest.obj" -@erase "$(INTDIR)\SetPluginTest.sbr" -@erase "$(INTDIR)\SimpleStringTest.obj" -@erase "$(INTDIR)\SimpleStringTest.sbr" -@erase "$(INTDIR)\TestHarness_cTest.obj" -@erase "$(INTDIR)\TestHarness_cTest.sbr" -@erase "$(INTDIR)\TestInstallerTest.obj" -@erase "$(INTDIR)\TestInstallerTest.sbr" -@erase "$(INTDIR)\TestOutputTest.obj" -@erase "$(INTDIR)\TestOutputTest.sbr" -@erase "$(INTDIR)\TestRegistryTest.obj" -@erase "$(INTDIR)\TestRegistryTest.sbr" -@erase "$(INTDIR)\TestResultTest.obj" -@erase "$(INTDIR)\TestResultTest.sbr" -@erase "$(INTDIR)\UtestTest.obj" -@erase "$(INTDIR)\UtestTest.sbr" -@erase "$(INTDIR)\vc60.idb" -@erase "$(INTDIR)\vc60.pdb" -@erase "$(OUTDIR)\AllTests.bsc" -@erase "$(OUTDIR)\AllTests.exe" -@erase "$(OUTDIR)\AllTests.ilk" -@erase "$(OUTDIR)\AllTests.pdb" "$(OUTDIR)" : if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)" CPP_PROJ=/nologo /MDd /W3 /GX /ZI /Od /I "..\include" /I "..\include\Platforms\VisualCpp" /D "_CONSOLE" /D "WIN32" /D "_DEBUG" /D "_MBCS" /FR"$(INTDIR)\\" /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\\" /FD /GZ /c BSC32=bscmake.exe BSC32_FLAGS=/nologo /o"$(OUTDIR)\AllTests.bsc" BSC32_SBRS= \ "$(INTDIR)\AllTests.sbr" \ "$(INTDIR)\CommandLineArgumentsTest.sbr" \ "$(INTDIR)\CommandLineTestRunnerTest.sbr" \ "$(INTDIR)\FailureTest.sbr" \ "$(INTDIR)\JUnitOutputTest.sbr" \ "$(INTDIR)\MemoryLeakAllocator.sbr" \ "$(INTDIR)\MemoryLeakAllocatorTest.sbr" \ "$(INTDIR)\MemoryLeakDetectorTest.sbr" \ "$(INTDIR)\MemoryLeakWarningTest.sbr" \ "$(INTDIR)\NullTestTest.sbr" \ "$(INTDIR)\PluginTest.sbr" \ "$(INTDIR)\SetPluginTest.sbr" \ "$(INTDIR)\SimpleStringTest.sbr" \ "$(INTDIR)\TestHarness_cTest.sbr" \ "$(INTDIR)\TestInstallerTest.sbr" \ "$(INTDIR)\TestOutputTest.sbr" \ "$(INTDIR)\TestRegistryTest.sbr" \ "$(INTDIR)\TestResultTest.sbr" \ "$(INTDIR)\UtestTest.sbr" \ "$(INTDIR)\AllocationInCppFile.sbr" \ "$(INTDIR)\MemoryLeakOperatorOverloadsTest.sbr" \ "$(INTDIR)\AllocationInCFile.sbr" "$(OUTDIR)\AllTests.bsc" : "$(OUTDIR)" $(BSC32_SBRS) $(BSC32) @<< $(BSC32_FLAGS) $(BSC32_SBRS) << LINK32=link.exe LINK32_FLAGS=..\lib\CppUTest.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib winmm.lib /nologo /subsystem:console /incremental:yes /pdb:"$(OUTDIR)\AllTests.pdb" /debug /machine:I386 /out:"$(OUTDIR)\AllTests.exe" /pdbtype:sept LINK32_OBJS= \ "$(INTDIR)\AllTests.obj" \ "$(INTDIR)\CommandLineArgumentsTest.obj" \ "$(INTDIR)\CommandLineTestRunnerTest.obj" \ "$(INTDIR)\FailureTest.obj" \ "$(INTDIR)\JUnitOutputTest.obj" \ "$(INTDIR)\MemoryLeakAllocator.obj" \ "$(INTDIR)\MemoryLeakAllocatorTest.obj" \ "$(INTDIR)\MemoryLeakDetectorTest.obj" \ "$(INTDIR)\MemoryLeakWarningTest.obj" \ "$(INTDIR)\NullTestTest.obj" \ "$(INTDIR)\PluginTest.obj" \ "$(INTDIR)\SetPluginTest.obj" \ "$(INTDIR)\SimpleStringTest.obj" \ "$(INTDIR)\TestHarness_cTest.obj" \ "$(INTDIR)\TestInstallerTest.obj" \ "$(INTDIR)\TestOutputTest.obj" \ "$(INTDIR)\TestRegistryTest.obj" \ "$(INTDIR)\TestResultTest.obj" \ "$(INTDIR)\UtestTest.obj" \ "$(INTDIR)\AllocationInCppFile.obj" \ "$(INTDIR)\MemoryLeakOperatorOverloadsTest.obj" \ "$(INTDIR)\AllocationInCFile.obj" \ "..\lib\CppUTest.lib" "$(OUTDIR)\AllTests.exe" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS) $(LINK32) @<< $(LINK32_FLAGS) $(LINK32_OBJS) << !ENDIF .c{$(INTDIR)}.obj:: $(CPP) @<< $(CPP_PROJ) $< << .cpp{$(INTDIR)}.obj:: $(CPP) @<< $(CPP_PROJ) $< << .cxx{$(INTDIR)}.obj:: $(CPP) @<< $(CPP_PROJ) $< << .c{$(INTDIR)}.sbr:: $(CPP) @<< $(CPP_PROJ) $< << .cpp{$(INTDIR)}.sbr:: $(CPP) @<< $(CPP_PROJ) $< << .cxx{$(INTDIR)}.sbr:: $(CPP) @<< $(CPP_PROJ) $< << !IF "$(NO_EXTERNAL_DEPS)" != "1" !IF EXISTS("AllTests.dep") !INCLUDE "AllTests.dep" !ELSE !MESSAGE Warning: cannot find "AllTests.dep" !ENDIF !ENDIF !IF "$(CFG)" == "AllTests - Win32 Release" || "$(CFG)" == "AllTests - Win32 Debug" SOURCE=.\AllocationInCFile.c !IF "$(CFG)" == "AllTests - Win32 Release" "$(INTDIR)\AllocationInCFile.obj" : $(SOURCE) "$(INTDIR)" !ELSEIF "$(CFG)" == "AllTests - Win32 Debug" "$(INTDIR)\AllocationInCFile.obj" "$(INTDIR)\AllocationInCFile.sbr" : $(SOURCE) "$(INTDIR)" !ENDIF SOURCE=.\AllocationInCppFile.cpp !IF "$(CFG)" == "AllTests - Win32 Release" "$(INTDIR)\AllocationInCppFile.obj" : $(SOURCE) "$(INTDIR)" !ELSEIF "$(CFG)" == "AllTests - Win32 Debug" "$(INTDIR)\AllocationInCppFile.obj" "$(INTDIR)\AllocationInCppFile.sbr" : $(SOURCE) "$(INTDIR)" !ENDIF SOURCE=.\AllTests.cpp !IF "$(CFG)" == "AllTests - Win32 Release" "$(INTDIR)\AllTests.obj" : $(SOURCE) "$(INTDIR)" !ELSEIF "$(CFG)" == "AllTests - Win32 Debug" "$(INTDIR)\AllTests.obj" "$(INTDIR)\AllTests.sbr" : $(SOURCE) "$(INTDIR)" !ENDIF SOURCE=.\CommandLineArgumentsTest.cpp !IF "$(CFG)" == "AllTests - Win32 Release" "$(INTDIR)\CommandLineArgumentsTest.obj" : $(SOURCE) "$(INTDIR)" !ELSEIF "$(CFG)" == "AllTests - Win32 Debug" "$(INTDIR)\CommandLineArgumentsTest.obj" "$(INTDIR)\CommandLineArgumentsTest.sbr" : $(SOURCE) "$(INTDIR)" !ENDIF SOURCE=.\CommandLineTestRunnerTest.cpp !IF "$(CFG)" == "AllTests - Win32 Release" "$(INTDIR)\CommandLineTestRunnerTest.obj" : $(SOURCE) "$(INTDIR)" !ELSEIF "$(CFG)" == "AllTests - Win32 Debug" "$(INTDIR)\CommandLineTestRunnerTest.obj" "$(INTDIR)\CommandLineTestRunnerTest.sbr" : $(SOURCE) "$(INTDIR)" !ENDIF SOURCE=.\FailureTest.cpp !IF "$(CFG)" == "AllTests - Win32 Release" "$(INTDIR)\FailureTest.obj" : $(SOURCE) "$(INTDIR)" !ELSEIF "$(CFG)" == "AllTests - Win32 Debug" "$(INTDIR)\FailureTest.obj" "$(INTDIR)\FailureTest.sbr" : $(SOURCE) "$(INTDIR)" !ENDIF SOURCE=.\JUnitOutputTest.cpp !IF "$(CFG)" == "AllTests - Win32 Release" "$(INTDIR)\JUnitOutputTest.obj" : $(SOURCE) "$(INTDIR)" !ELSEIF "$(CFG)" == "AllTests - Win32 Debug" "$(INTDIR)\JUnitOutputTest.obj" "$(INTDIR)\JUnitOutputTest.sbr" : $(SOURCE) "$(INTDIR)" !ENDIF SOURCE=..\src\CppUTest\MemoryLeakAllocator.cpp !IF "$(CFG)" == "AllTests - Win32 Release" "$(INTDIR)\MemoryLeakAllocator.obj" : $(SOURCE) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) !ELSEIF "$(CFG)" == "AllTests - Win32 Debug" "$(INTDIR)\MemoryLeakAllocator.obj" "$(INTDIR)\MemoryLeakAllocator.sbr" : $(SOURCE) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) !ENDIF SOURCE=.\MemoryLeakAllocatorTest.cpp !IF "$(CFG)" == "AllTests - Win32 Release" "$(INTDIR)\MemoryLeakAllocatorTest.obj" : $(SOURCE) "$(INTDIR)" !ELSEIF "$(CFG)" == "AllTests - Win32 Debug" "$(INTDIR)\MemoryLeakAllocatorTest.obj" "$(INTDIR)\MemoryLeakAllocatorTest.sbr" : $(SOURCE) "$(INTDIR)" !ENDIF SOURCE=.\MemoryLeakDetectorTest.cpp !IF "$(CFG)" == "AllTests - Win32 Release" "$(INTDIR)\MemoryLeakDetectorTest.obj" : $(SOURCE) "$(INTDIR)" !ELSEIF "$(CFG)" == "AllTests - Win32 Debug" "$(INTDIR)\MemoryLeakDetectorTest.obj" "$(INTDIR)\MemoryLeakDetectorTest.sbr" : $(SOURCE) "$(INTDIR)" !ENDIF SOURCE=.\MemoryLeakOperatorOverloadsTest.cpp !IF "$(CFG)" == "AllTests - Win32 Release" "$(INTDIR)\MemoryLeakOperatorOverloadsTest.obj" : $(SOURCE) "$(INTDIR)" !ELSEIF "$(CFG)" == "AllTests - Win32 Debug" "$(INTDIR)\MemoryLeakOperatorOverloadsTest.obj" "$(INTDIR)\MemoryLeakOperatorOverloadsTest.sbr" : $(SOURCE) "$(INTDIR)" !ENDIF SOURCE=.\MemoryLeakWarningTest.cpp !IF "$(CFG)" == "AllTests - Win32 Release" "$(INTDIR)\MemoryLeakWarningTest.obj" : $(SOURCE) "$(INTDIR)" !ELSEIF "$(CFG)" == "AllTests - Win32 Debug" "$(INTDIR)\MemoryLeakWarningTest.obj" "$(INTDIR)\MemoryLeakWarningTest.sbr" : $(SOURCE) "$(INTDIR)" !ENDIF SOURCE=.\NullTestTest.cpp !IF "$(CFG)" == "AllTests - Win32 Release" "$(INTDIR)\NullTestTest.obj" : $(SOURCE) "$(INTDIR)" !ELSEIF "$(CFG)" == "AllTests - Win32 Debug" "$(INTDIR)\NullTestTest.obj" "$(INTDIR)\NullTestTest.sbr" : $(SOURCE) "$(INTDIR)" !ENDIF SOURCE=.\PluginTest.cpp !IF "$(CFG)" == "AllTests - Win32 Release" "$(INTDIR)\PluginTest.obj" : $(SOURCE) "$(INTDIR)" !ELSEIF "$(CFG)" == "AllTests - Win32 Debug" "$(INTDIR)\PluginTest.obj" "$(INTDIR)\PluginTest.sbr" : $(SOURCE) "$(INTDIR)" !ENDIF SOURCE=.\SetPluginTest.cpp !IF "$(CFG)" == "AllTests - Win32 Release" "$(INTDIR)\SetPluginTest.obj" : $(SOURCE) "$(INTDIR)" !ELSEIF "$(CFG)" == "AllTests - Win32 Debug" "$(INTDIR)\SetPluginTest.obj" "$(INTDIR)\SetPluginTest.sbr" : $(SOURCE) "$(INTDIR)" !ENDIF SOURCE=.\SimpleStringTest.cpp !IF "$(CFG)" == "AllTests - Win32 Release" "$(INTDIR)\SimpleStringTest.obj" : $(SOURCE) "$(INTDIR)" !ELSEIF "$(CFG)" == "AllTests - Win32 Debug" "$(INTDIR)\SimpleStringTest.obj" "$(INTDIR)\SimpleStringTest.sbr" : $(SOURCE) "$(INTDIR)" !ENDIF SOURCE=.\TestHarness_cTest.cpp !IF "$(CFG)" == "AllTests - Win32 Release" "$(INTDIR)\TestHarness_cTest.obj" : $(SOURCE) "$(INTDIR)" !ELSEIF "$(CFG)" == "AllTests - Win32 Debug" "$(INTDIR)\TestHarness_cTest.obj" "$(INTDIR)\TestHarness_cTest.sbr" : $(SOURCE) "$(INTDIR)" !ENDIF SOURCE=.\TestInstallerTest.cpp !IF "$(CFG)" == "AllTests - Win32 Release" "$(INTDIR)\TestInstallerTest.obj" : $(SOURCE) "$(INTDIR)" !ELSEIF "$(CFG)" == "AllTests - Win32 Debug" "$(INTDIR)\TestInstallerTest.obj" "$(INTDIR)\TestInstallerTest.sbr" : $(SOURCE) "$(INTDIR)" !ENDIF SOURCE=.\TestOutputTest.cpp !IF "$(CFG)" == "AllTests - Win32 Release" "$(INTDIR)\TestOutputTest.obj" : $(SOURCE) "$(INTDIR)" !ELSEIF "$(CFG)" == "AllTests - Win32 Debug" "$(INTDIR)\TestOutputTest.obj" "$(INTDIR)\TestOutputTest.sbr" : $(SOURCE) "$(INTDIR)" !ENDIF SOURCE=.\TestRegistryTest.cpp !IF "$(CFG)" == "AllTests - Win32 Release" "$(INTDIR)\TestRegistryTest.obj" : $(SOURCE) "$(INTDIR)" !ELSEIF "$(CFG)" == "AllTests - Win32 Debug" "$(INTDIR)\TestRegistryTest.obj" "$(INTDIR)\TestRegistryTest.sbr" : $(SOURCE) "$(INTDIR)" !ENDIF SOURCE=.\TestResultTest.cpp !IF "$(CFG)" == "AllTests - Win32 Release" "$(INTDIR)\TestResultTest.obj" : $(SOURCE) "$(INTDIR)" !ELSEIF "$(CFG)" == "AllTests - Win32 Debug" "$(INTDIR)\TestResultTest.obj" "$(INTDIR)\TestResultTest.sbr" : $(SOURCE) "$(INTDIR)" !ENDIF SOURCE=.\UtestTest.cpp !IF "$(CFG)" == "AllTests - Win32 Release" "$(INTDIR)\UtestTest.obj" : $(SOURCE) "$(INTDIR)" !ELSEIF "$(CFG)" == "AllTests - Win32 Debug" "$(INTDIR)\UtestTest.obj" "$(INTDIR)\UtestTest.sbr" : $(SOURCE) "$(INTDIR)" !ENDIF !IF "$(CFG)" == "AllTests - Win32 Release" "CppUTest - Win32 Release" : cd "\workspace\CppUTest" $(MAKE) /$(MAKEFLAGS) /F .\CppUTest.mak CFG="CppUTest - Win32 Release" cd ".\tests" "CppUTest - Win32 ReleaseCLEAN" : cd "\workspace\CppUTest" $(MAKE) /$(MAKEFLAGS) /F .\CppUTest.mak CFG="CppUTest - Win32 Release" RECURSE=1 CLEAN cd ".\tests" !ELSEIF "$(CFG)" == "AllTests - Win32 Debug" "CppUTest - Win32 Debug" : cd "\workspace\CppUTest" $(MAKE) /$(MAKEFLAGS) /F .\CppUTest.mak CFG="CppUTest - Win32 Debug" cd ".\tests" "CppUTest - Win32 DebugCLEAN" : cd "\workspace\CppUTest" $(MAKE) /$(MAKEFLAGS) /F .\CppUTest.mak CFG="CppUTest - Win32 Debug" RECURSE=1 CLEAN cd ".\tests" !ENDIF !ENDIF cpputest-3.4/tests/AllTests.vcproj0000644000175300017530000002155012134163705014305 00000000000000 cpputest-3.4/tests/AllTests.vcxproj0000644000175300017530000002362012023251675014476 00000000000000 Debug Win32 Release Win32 {913088F6-37C0-4195-80E9-548C7C5303CB} Application false MultiByte Application false MultiByte <_ProjectFileVersion>10.0.30319.1 .\Release\ .\Release\ false .\Debug\ .\Debug\ true .\Release/AllTests.tlb MaxSpeed OnlyExplicitInline WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) true MultiThreaded true .\Release/AllTests.pch .\Release/ .\Release/ .\Release/ Level3 true NDEBUG;%(PreprocessorDefinitions) 0x0409 $(OutDir)AllTests.exe true .\Release/AllTests.pdb Console false MachineX86 true .\Release/AllTests.bsc "$(TargetPath)" .\Debug/AllTests.tlb Disabled ..\include;..\include\CppUTestExt\CppUTestGTest;..\include\CppUTestExt\CppUTestGMock;..\include\Platforms\VisualCpp;%(AdditionalIncludeDirectories) _CONSOLE;WIN32;_DEBUG;%(PreprocessorDefinitions) EnableFastChecks MultiThreadedDebugDLL .\Debug/AllTests.pch .\Debug/ .\Debug/ .\Debug/ true Level3 true EditAndContinue ..\include\Platforms\VisualCpp\Platform.h;..\include\CppUTest\MemoryLeakDetectorMallocMacros.h;%(ForcedIncludeFiles) _DEBUG;%(PreprocessorDefinitions) 0x0409 $(OutDir)AllTests.exe true true .\Debug/AllTests.pdb Console false MachineX86 true .\Debug/AllTests.bsc "$(TargetPath)" {f468f539-27bd-468e-be64-dde641400b51} false cpputest-3.4/tests/AllocLetTestFree.h0000664000175300017530000000050612066727207014646 00000000000000 #ifndef D_AllocLetTestFree_H #define D_AllocLetTestFree_H #ifdef __cplusplus extern "C" { #endif typedef struct AllocLetTestFreeStruct * AllocLetTestFree; AllocLetTestFree AllocLetTestFree_Create(void); void AllocLetTestFree_Destroy(AllocLetTestFree); #ifdef __cplusplus } #endif #endif /* D_FakeAllocLetTestFree_H */ cpputest-3.4/tests/AllocationInCFile.h0000664000175300017530000000041312066727207014761 00000000000000#ifndef ALLOCATIONINCFILE_H #define ALLOCATIONINCFILE_H #ifdef __cplusplus extern "C" { #endif extern char* mallocAllocation(void); extern void freeAllocation(void* memory); extern void freeAllocationWithoutMacro(void* memory); #ifdef __cplusplus } #endif #endif cpputest-3.4/tests/AllocationInCppFile.h0000644000175300017530000000030412023251675015310 00000000000000#ifndef ALLOCATIONINCPPFILE_H #define ALLOCATIONINCPPFILE_H char* newAllocation(); char* newArrayAllocation(); char* newAllocationWithoutMacro(); char* newArrayAllocationWithoutMacro(); #endif cpputest-3.4/tests/CMakeLists.txt0000644000175300017530000000225612134163705014067 00000000000000enable_testing() set(CppUTestTests_src AllTests.cpp SetPluginTest.cpp CheatSheetTest.cpp SimpleStringTest.cpp CommandLineArgumentsTest.cpp TestFailureTest.cpp CommandLineTestRunnerTest.cpp TestFilterTest.cpp TestHarness_cTest.cpp JUnitOutputTest.cpp TestHarness_cTestCFile.c MemoryLeakDetectorTest.cpp TestInstallerTest.cpp AllocLetTestFree.c MemoryLeakOperatorOverloadsTest.cpp TestMemoryAllocatorTest.cpp MemoryLeakWarningTest.cpp TestOutputTest.cpp AllocLetTestFreeTest.cpp NullTestTest.cpp TestRegistryTest.cpp AllocationInCFile.c PluginTest.cpp TestResultTest.cpp PreprocessorTest.cpp TestUTestMacro.cpp AllocationInCppFile.cpp UtestTest.cpp ) if (MSVC) set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /wd4723") set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /wd4723") endif (MSVC) add_executable(CppUTestTests ${CppUTestTests_src}) target_link_libraries(CppUTestTests CppUTest) add_test(CppUTestTests CppUTestTests) if (TESTS) add_subdirectory(CppUTestExt) endif (TESTS) cpputest-3.4/tests/RunAllTests.sh0000755000175300017530000000013312023251675014077 00000000000000#/bin/bash #put any pre-test execution commands here. echo Running all tests ./AllTests $1 cpputest-3.4/README0000644000175300017530000000012512143637532011042 00000000000000 Please see the README.md. This file exists to be compliant to GNU coding standards. cpputest-3.4/configure.ac0000644000175300017530000003743112143637532012462 00000000000000 AC_PREREQ([2.68]) AC_INIT([CppUTest], [3.4], [https://github.com/cpputest/cpputest]) AM_INIT_AUTOMAKE AC_CONFIG_SRCDIR([src/CppUTest/Utest.cpp]) AC_CONFIG_HEADERS([config.h]) AC_CONFIG_FILES([cpputest.pc]) AC_CONFIG_MACRO_DIR([m4]) AC_CANONICAL_HOST AM_MAINTAINER_MODE([enable]) case "x$build_os" in *darwin*) AC_SUBST([CPPUTEST_ON_MACOSX], [yes]) ;; esac AC_PROG_CC AC_PROG_CPP AC_PROG_CXX AC_PROG_LN_S AC_PROG_MAKE_SET AM_PROG_CC_C_O AM_SILENT_RULES([yes]) ACX_PTHREAD([LIBS="$PTHREAD_LIBS $LIBS"]) # This additional -lpthread was added due to a bug on gcc for MacOSX: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42159 # According to the bug report, a workaround is to link -lpthread. Even the ACX_PTHREAD doesn't do that, so we add an # additional check if that it possible, and if it is, then we link pthread saved_libs="$LIBS" LIBS=-lpthread AC_MSG_CHECKING([We're on MacOSX. Lets check if we can link -lpthread to work around a gcc bug]) AC_LINK_IFELSE([AC_LANG_PROGRAM([])], [AC_MSG_RESULT([yes]); HACK_TO_USE_PTHREAD_LIBS+=" -lpthread"], [AC_MSG_RESULT([no])]) LIBS="$saved_libs $HACK_TO_USE_PTHREAD_LIBS" AC_CHECK_HEADERS([stddef.h stdint.h stdlib.h string.h sys/time.h unistd.h]) AC_C_INLINE AC_TYPE_INT16_T AC_TYPE_INT32_T AC_TYPE_INT64_T AC_TYPE_INT8_T AC_TYPE_PID_T AC_TYPE_SIZE_T AC_TYPE_UINT16_T AC_TYPE_UINT32_T AC_TYPE_UINT64_T AC_TYPE_UINT8_T # Checks for library functions. AC_FUNC_FORK AC_FUNC_MALLOC AC_FUNC_REALLOC AC_CHECK_FUNCS([gettimeofday memset strstr]) AC_CHECK_PROG([CPPUTEST_HAS_GCC], [gcc], [yes], [no]) AC_CHECK_PROG([CPPUTEST_HAS_CLANG], [clang], [yes], [no]) AC_CHECK_PROG([CPPUTEST_HAS_LCOV], [lcov], [yes], [no]) # Checking for warning flags on the compiler saved_cflags="$CFLAGS" saved_cxxflags="$CXXFLAGS" saved_ldflags="$LDFLAGS" # FLag -Werror. CFLAGS=-Werror AC_MSG_CHECKING([whether CC and CXX supports -Werror]) AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])], [AC_MSG_RESULT([yes]); CPPUTEST_CWARNINGFLAGS+=" -Werror"; CPPUTEST_CXXWARNINGFLAGS+=" -Werror" ], [AC_MSG_RESULT([no])]) CFLAGS="$saved_cflags" # FLag -Weverything. CFLAGS="-Werror -Weverything -Wno-unused-macros" AC_MSG_CHECKING([whether CC and CXX supports -Weverything]) AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])], [AC_MSG_RESULT([yes]); CPPUTEST_CWARNINGFLAGS+=" -Weverything"; CPPUTEST_CXXWARNINGFLAGS+=" -Weverything" ], [AC_MSG_RESULT([no])]) CFLAGS="$saved_cflags" # FLag -Wall. CFLAGS="-Werror -Wall" AC_MSG_CHECKING([whether CC and CXX supports -Wall]) AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])], [AC_MSG_RESULT([yes]); CPPUTEST_CWARNINGFLAGS+=" -Wall"; CPPUTEST_CXXWARNINGFLAGS+=" -Wall" ], [AC_MSG_RESULT([no])]) CFLAGS="$saved_cflags" # FLag -Wextra. CFLAGS="-Werror -Wextra" AC_MSG_CHECKING([whether CC and CXX supports -Wextra]) AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])], [AC_MSG_RESULT([yes]); CPPUTEST_CWARNINGFLAGS+=" -Wextra"; CPPUTEST_CXXWARNINGFLAGS+=" -Wextra" ], [AC_MSG_RESULT([no])]) CFLAGS="$saved_cflags" # FLag -Wshadow. CFLAGS="-Werror -Wshadow" AC_MSG_CHECKING([whether CC and CXX supports -Wshadow]) AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])], [AC_MSG_RESULT([yes]); CPPUTEST_CWARNINGFLAGS+=" -Wshadow"; CPPUTEST_CXXWARNINGFLAGS+=" -Wshadow" ], [AC_MSG_RESULT([no])]) CFLAGS="$saved_cflags" # FLag -Wswitch-default CFLAGS="-Werror -Wswitch-default" AC_MSG_CHECKING([whether CC and CXX supports -Wswitch-default]) AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])], [AC_MSG_RESULT([yes]); CPPUTEST_CWARNINGFLAGS+=" -Wswitch-default"; CPPUTEST_CXXWARNINGFLAGS+=" -Wswitch-default" ], [AC_MSG_RESULT([no])]) CFLAGS="$saved_cflags" # FLag -Wswitch-enum CFLAGS="-Werror -Wswitch-enum" AC_MSG_CHECKING([whether CC and CXX supports -Wswitch-enum]) AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])], [AC_MSG_RESULT([yes]); CPPUTEST_CWARNINGFLAGS+=" -Wswitch-enum"; CPPUTEST_CXXWARNINGFLAGS+=" -Wswitch-enum" ], [AC_MSG_RESULT([no])]) CFLAGS="$saved_cflags" # FLag -Wconversion CFLAGS="-Werror -Wconversion" AC_MSG_CHECKING([whether CC and CXX supports -Wconversion]) AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])], [AC_MSG_RESULT([yes]); CPPUTEST_CWARNINGFLAGS+=" -Wconversion"; CPPUTEST_CXXWARNINGFLAGS+=" -Wconversion" ], [AC_MSG_RESULT([no])]) CFLAGS="$saved_cflags" # FLag -pedantic-errors CFLAGS="-Werror -pedantic-errors" AC_MSG_CHECKING([whether CC and CXX supports -pedantic-errors]) AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])], [AC_MSG_RESULT([yes]); CPPUTEST_CWARNINGFLAGS+=" -pedantic-errors"; CPPUTEST_CXXWARNINGFLAGS+=" -pedantic-errors" ], [AC_MSG_RESULT([no])]) CFLAGS="$saved_cflags" # FLag -Wsign-conversion CFLAGS="-Werror -Wsign-conversion" AC_MSG_CHECKING([whether CC and CXX supports -Wsign-conversion]) AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])], [AC_MSG_RESULT([yes]); CPPUTEST_CWARNINGFLAGS+=" -Wsign-conversion"; CPPUTEST_CXXWARNINGFLAGS+=" -Wsign-conversion" ], [AC_MSG_RESULT([no])]) CFLAGS="$saved_cflags" # FLag -Woverloaded-virtual AC_LANG_PUSH([C++]) CXXFLAGS="-Werror -Woverloaded-virtual" AC_MSG_CHECKING([whether CXX supports -Woverloaded-virtual]) AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])], [AC_MSG_RESULT([yes]); CPPUTEST_CXXWARNINGFLAGS+=" -Woverloaded-virtual" ], [AC_MSG_RESULT([no])]) CXXFLAGS="$saved_cxxflags" AC_LANG_POP # FLag -Wstrict-prototypes CFLAGS="-Werror -Wstrict-prototypes" AC_MSG_CHECKING([whether CC supports -Wstrict-prototypes]) AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])], [AC_MSG_RESULT([yes]); CPPUTEST_CWARNINGFLAGS+=" -Wstrict-prototypes" ], [AC_MSG_RESULT([no])]) CFLAGS="$saved_cflags" # Disable some warnings as CppUTest has this and can't be prevented at the moment. # FLag -Wno-disabled-macro-expansion. CFLAGS="-Werror -Wno-disabled-macro-expansion" AC_MSG_CHECKING([whether CC and CXX supports -Wno-disabled-macro-expansion]) AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])], [AC_MSG_RESULT([yes]); CPPUTEST_CWARNINGFLAGS+=" -Wno-disabled-macro-expansion"; CPPUTEST_CXXWARNINGFLAGS+=" -Wno-disabled-macro-expansion" ], [AC_MSG_RESULT([no])]) CFLAGS="$saved_cflags" # FLag -Wno-padded. CFLAGS="-Werror -Wno-padded" AC_MSG_CHECKING([whether CC and CXX supports -Wno-padded]) AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])], [AC_MSG_RESULT([yes]); CPPUTEST_CWARNINGFLAGS+=" -Wno-padded"; CPPUTEST_CXXWARNINGFLAGS+=" -Wno-padded" ], [AC_MSG_RESULT([no])]) CFLAGS="$saved_cflags" # FLag -Wno-global-constructors. AC_LANG_PUSH([C++]) CXXFLAGS="-Werror -Wno-global-constructors" AC_MSG_CHECKING([whether CXX supports -Wno-global-constructors]) AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])], [AC_MSG_RESULT([yes]); CPPUTEST_CXXWARNINGFLAGS+=" -Wno-global-constructors" ], [AC_MSG_RESULT([no])]) CXXFLAGS="$saved_cxxflags" AC_LANG_POP # FLag -Wno-exit-time-destructors. AC_LANG_PUSH([C++]) CXXFLAGS="-Werror -Wno-exit-time-destructors" AC_MSG_CHECKING([whether CXX supports -Wno-exit-time-destructors]) AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])], [AC_MSG_RESULT([yes]); CPPUTEST_CXXWARNINGFLAGS+=" -Wno-exit-time-destructors" ], [AC_MSG_RESULT([no])]) CXXFLAGS="$saved_cxxflags" AC_LANG_POP # FLag -Wno-weak-vtables. AC_LANG_PUSH([C++]) CXXFLAGS="-Werror -Wno-weak-vtables" AC_MSG_CHECKING([whether CXX supports -Wno-weak-vtables]) AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])], [AC_MSG_RESULT([yes]); CPPUTEST_CXXWARNINGFLAGS+=" -Wno-weak-vtables" ], [AC_MSG_RESULT([no])]) CXXFLAGS="$saved_cxxflags" AC_LANG_POP ##### Linker checking. # # TBD! # Things that need to be fixed! # # The below code is checking for the -Qunused-arguments which is a linker flag. However, it says gcc supports it, while in fact, it doesn't. # As a workaround, we'll just check whether it is clang hardcoded, this is not in the automake spirit and will need to be fixed. # # LDFLAGS= # AC_MSG_CHECKING([whether LD supports -Qunused-arguments]) # AC_LINK_IFELSE([AC_LANG_PROGRAM([])], [AC_MSG_RESULT([yes]); CPPUTEST_NO_UNUSED_ARGUMENT_WARNING+=" -Qunused-arguments" ], [AC_MSG_RESULT([no])]) # LDFLAGS="$saved_ldflags" AC_MSG_CHECKING([whether CXXLD supports -Qunused-arguments linker option]) OUTPUT_WHEN_CLANG_COMPILER=`${CXX} --version | grep clang` AM_CONDITIONAL([TEST_COMPILER_IS_CLANG], [ ! test -z "$OUTPUT_WHEN_CLANG_COMPILER]") AM_COND_IF([TEST_COMPILER_IS_CLANG], [AC_MSG_RESULT([yes]); CPPUTEST_NO_UNUSED_ARGUMENT_WARNING+=" -Qunused-arguments"], [AC_MSG_RESULT([no])]; CPPUTEST_NO_UNUSED_ARGUMENT_WARNING+=" ") # Checking for options for creating map files LDFLAGS=" -Wl,-map,$<.map.txt" AC_MSG_CHECKING([whether LD supports -Wl,-map]) AC_LINK_IFELSE([AC_LANG_PROGRAM([])], [AC_MSG_RESULT([yes]); CPPUTEST_LD_MAP_GENERATION+=" -Wl,-map,$<.map.txt" ], [AC_MSG_RESULT([no])]) LDFLAGS="$saved_ldflags" # Different features AC_ARG_ENABLE([std-c], [AC_HELP_STRING([--disable-std-c], [disable the use of Standard C Library (warning: requires implementing Platforms/GccNoStdC) ])], [use_std_c=${enableval}], [use_std_c=yes]) AC_ARG_ENABLE([std-cpp], [AC_HELP_STRING([--disable-std-cpp], [disable the use of Standard C++ Library])], [use_std_cpp=${enableval}], [use_std_cpp=yes]) AC_ARG_ENABLE([cpputest-flags], [AC_HELP_STRING([--disable-cpputest-flags], [disable CFLAGS/CPPFLAGS/CXXFLAGS set by CppUTest])], [cpputest_flags=${enableval}], [cpputest_flags=yes]) AC_ARG_ENABLE([memory-leak-detection], [AC_HELP_STRING([--disable-memory-leak-detection], [disable memory leak detection])], [memory_leak_detection=${enableval}], [memory_leak_detection=yes]) AC_ARG_ENABLE([extensions], [AC_HELP_STRING([--disable-extensions], [disable CppUTest extension library])], [cpputest_ext=${enableval}], [cpputest_ext=yes]) AC_ARG_ENABLE([generate-map-file], [AC_HELP_STRING([--enable-generate-map-file], [enable the creation of a map file])], [generate_map_file=${enableval}], [generate_map_file=no]) AC_ARG_ENABLE([coverage], [AC_HELP_STRING([--enable-coverage], [enable running with coverage])], [coverage=${enableval}], [coverage=no]) AC_ARG_ENABLE([real-gtest], [AC_HELP_STRING([--enable-real-gtest], [enable using real GTest rather than faking it. Requires GTEST_HOME to be set])], [real_gtest=${enableval}], [real_gtest=no]) AC_ARG_ENABLE([gmock], [AC_HELP_STRING([--enable-gmock], [enable using GMock. Requires GMOCK_HOME to be set])], [use_gmock=${enableval}], [use_gmock=no]) ############################## Setting options ############################### AM_CONDITIONAL([INCLUDE_CPPUTEST_EXT], [test "x${cpputest_ext}" = xyes]) # Dealing with not having a Standard C library... (usually for Kernel development) if test "x${use_std_c}" = xno; then use_std_cpp=no memory_leak_detection=no CPPUTEST_CPPFLAGS+=" -nostdinc" CPPUTEST_LDFLAGS+=" -nostdlib" AC_DEFINE([CPPUTEST_STD_C_LIB_DISABLED], [1], [Standard C library disabled]) CPP_PLATFORM="GccNoStdC" else CPP_PLATFORM="Gcc" fi # Using standard C++ if test "x${use_std_cpp}" = xno; then AC_DEFINE([CPPUTEST_STD_CPP_LIB_DISABLED], 1, [Standard C++ library disabled]) if test "x${use_std_c}" = xyes; then CPPUTEST_CXXFLAGS+=" -nostdinc++" # Since automake passes the CXXFLAGS to the linker, this will cause warnings with clang 3.2 (which become errors) CPPUTEST_LDFLAGS+=$CPPUTEST_NO_UNUSED_ARGUMENT_WARNING fi fi # Dealing with memory leak detection if test "x${memory_leak_detection}" = xno; then AC_DEFINE([CPPUTEST_MEM_LEAK_DETECTION_DISABLED], 1, [memory leak detection disabled]) else CPPUTEST_CXXFLAGS+=" -include ${srcdir}/include/CppUTest/MemoryLeakDetectorNewMacros.h" CPPUTEST_CPPFLAGS+=" -include ${srcdir}/include/CppUTest/MemoryLeakDetectorMallocMacros.h" fi # Generating map files. if test "x${generate_map_file}" = xyes; then CPPUTEST_LDFLAGS+=$CPPUTEST_LD_MAP_GENERATION MOSTLYCLEANFILES+=" *.map.txt" fi if test "x${coverage}" = xyes; then CPPUTEST_CXXFLAGS+=" --coverage" CPPUTEST_CFLAGS+=" --coverage" MOSTLYCLEANFILES+=" *.gcda *.gcno" fi if test "x${use_gmock}" = xyes; then AC_ARG_VAR([GMOCK_HOME], [Location of the GMock]) if test -z ${GMOCK_HOME}; then AC_MSG_ERROR([ ------------------------------------- Compiling with --enable-gmock will require the GMOCK_HOME to be set. -------------------------------------]) fi real_gtest=yes GTEST_HOME=${GMOCK_HOME}/gtest CPPUTEST_CPPFLAGS+=" -I${GMOCK_HOME}/include" if test -e ${GMOCK_HOME}/lib/libgmock.la; then \ CPPUTEST_LDADD+=" ${GMOCK_HOME}/lib/libgmock.la"; \ elif test -e ${GMOCK_HOME}/libgmock.a; then \ CPPUTEST_LDADD+=" ${GMOCK_HOME}/libgmock.a"; \ else \ AC_MSG_ERROR([ ------------------------------------- GMOCK_HOME was set, but couldn't find the compiled library. Did you compile it? -------------------------------------]); fi AC_DEFINE([CPPUTEST_USE_REAL_GMOCK], [1], [Use GMock]) else CPPUTEST_CPPFLAGS+=" -I${srcdir}/include/CppUTestExt/CppUTestGMock" fi if test "x${real_gtest}" = xyes; then AC_ARG_VAR([GTEST_HOME], [Location of the GTest source]) if test -z ${GTEST_HOME}; then AC_MSG_ERROR([ ------------------------------------- Compiling with --enable-real-gtest requires you to set the GTEST_HOME to the GTest source directory -------------------------------------]) fi CPPUTEST_CPPFLAGS+=" -I${GTEST_HOME}/include -I${GTEST_HOME} -Isomething" if test -e ${GTEST_HOME}/lib/libgtest.la; then \ CPPUTEST_LDADD+=" ${GTEST_HOME}/lib/libgtest.la"; \ elif test -e ${GTEST_HOME}/libgtest.a; then \ CPPUTEST_LDADD+=" ${GTEST_HOME}/libgtest.a"; \ else \ AC_MSG_ERROR([ ------------------------------------- GTEST_HOME was set, but couldn't find the compiled library. Did you compile it? -------------------------------------]); fi AC_DEFINE([CPPUTEST_USE_REAL_GTEST], [1], [Using the real gtest]) # Turn warnings off. Gtest doesn't like it! CPPUTEST_CWARNINGFLAGS="" CPPUTEST_CXXWARNINGFLAGS="" else CPPUTEST_CPPFLAGS+=" -I${srcdir}/include/CppUTestExt/CppUTestGTest" fi CPPUTEST_CFLAGS+=" ${CPPUTEST_CWARNINGFLAGS}" CPPUTEST_CXXFLAGS+=" ${CPPUTEST_CXXWARNINGFLAGS}" CPPUTEST_CPPFLAGS+=" -I ${srcdir}/include ${CPPUTEST_CPPWARNINGFLAGS}" if test "x${cpputest_flags}" = xno; then CPPUTEST_CFLAGS="" CPPUTEST_CXXFLAGS="" CPPUTEST_CPPFLAGS="" fi ############################## Values ######################################## ### All files in git if test -e "${srcdir}/.git"; then ALL_FILES_IN_GIT="`git --git-dir=${srcdir}/.git ls-files | tr '[ \n]' ' '`" fi # Variables to substitute AC_SUBST([CPP_PLATFORM]) AC_SUBST([INCLUDE_CPPUTEST_EXT]) # Replacement of tool flags AC_SUBST([CPPUTEST_CFLAGS]) AC_SUBST([CPPUTEST_ADDITIONAL_CFLAGS]) AC_SUBST([CPPUTEST_CXXFLAGS]) AC_SUBST([CPPUTEST_ADDITIONAL_CXXFLAGS]) AC_SUBST([CPPUTEST_CPPFLAGS]) AC_SUBST([CPPUTEST_ADDITIONAL_CPPFLAGS]) AC_SUBST([CPPUTEST_LDADD]) AC_SUBST([CPPUTEST_LDFLAGS]) AC_SUBST([MOSTLYCLEANFILES]) AC_SUBST([CPPUTEST_HAS_GCC]) AC_SUBST([CPPUTEST_HAS_CLANG]) AC_SUBST([ALL_FILES_IN_GIT]) AC_DEFINE([CPPUTEST_COMPILATION], [1], [Compiling CppUTest itself]) LT_INIT AC_CONFIG_FILES([Makefile]) AC_OUTPUT echo \ "---------------------------------------------------------------- ${PACKAGE_NAME} Version ${PACKAGE_VERSION} Current compiler options: CC: ${CC} CXX: ${CXX} LD: ${LD} Default CFLAGS: ${CFLAGS} Default CXXFLAGS: ${CXXFLAGS} CppUTest CFLAGS: ${CPPUTEST_CFLAGS} CppUTest CXXFLAGS: ${CPPUTEST_CXXFLAGS} CppUTest CPPFLAGS: ${CPPUTEST_CPPFLAGS} CppUTest LDFLAGS: ${CPPUTEST_LDFLAGS} CppUTest LIB: ${LIBS} Features configured in ${PACKAGE_NAME}: Memory Leak Detection: ${memory_leak_detection} Compiling extensions: ${cpputest_ext} Disable CppUTest compile/link flags: ${cpputest_flags} Using Standard C++ Library: ${use_std_cpp} Using Standard C Library: ${use_std_c} Generating map file: ${generate_map_file} Compiling w coverage info: ${coverage} Use 'real' GTest: ${real_gtest} Able to use GMock: ${use_gmock} ----------------------------------------------------------------" cpputest-3.4/aclocal.m40000644000175300017530000011554212143637555012041 00000000000000# generated automatically by aclocal 1.11.1 -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, # 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.68],, [m4_warning([this file was generated for autoconf 2.68. You have another version of autoconf. It may work, but is not guaranteed to. If you have problems, you may need to regenerate the build system entirely. To do so, use the procedure documented by the package, typically `autoreconf'.])]) # Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_AUTOMAKE_VERSION(VERSION) # ---------------------------- # Automake X.Y traces this macro to ensure aclocal.m4 has been # generated from the m4 files accompanying Automake X.Y. # (This private macro should not be called outside this file.) AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.11' dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to dnl require some minimum version. Point them to the right macro. m4_if([$1], [1.11.1], [], [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl ]) # _AM_AUTOCONF_VERSION(VERSION) # ----------------------------- # aclocal traces this macro to find the Autoconf version. # This is a private macro too. Using m4_define simplifies # the logic in aclocal, which can simply ignore this definition. m4_define([_AM_AUTOCONF_VERSION], []) # AM_SET_CURRENT_AUTOMAKE_VERSION # ------------------------------- # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. # This function is AC_REQUIREd by AM_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.11.1])dnl m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) # AM_AUX_DIR_EXPAND -*- Autoconf -*- # Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets # $ac_aux_dir to `$srcdir/foo'. In other projects, it is set to # `$srcdir', `$srcdir/..', or `$srcdir/../..'. # # Of course, Automake must honor this variable whenever it calls a # tool from the auxiliary directory. The problem is that $srcdir (and # therefore $ac_aux_dir as well) can be either absolute or relative, # depending on how configure is run. This is pretty annoying, since # it makes $ac_aux_dir quite unusable in subdirectories: in the top # source directory, any form will work fine, but in subdirectories a # relative path needs to be adjusted first. # # $ac_aux_dir/missing # fails when called from a subdirectory if $ac_aux_dir is relative # $top_srcdir/$ac_aux_dir/missing # fails if $ac_aux_dir is absolute, # fails when called from a subdirectory in a VPATH build with # a relative $ac_aux_dir # # The reason of the latter failure is that $top_srcdir and $ac_aux_dir # are both prefixed by $srcdir. In an in-source build this is usually # harmless because $srcdir is `.', but things will broke when you # start a VPATH build or use an absolute $srcdir. # # So we could use something similar to $top_srcdir/$ac_aux_dir/missing, # iff we strip the leading $srcdir from $ac_aux_dir. That would be: # am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"` # and then we would define $MISSING as # MISSING="\${SHELL} $am_aux_dir/missing" # This will work as long as MISSING is not called from configure, because # unfortunately $(top_srcdir) has no meaning in configure. # However there are other variables, like CC, which are often used in # configure, and could therefore not use this "fixed" $ac_aux_dir. # # Another solution, used here, is to always expand $ac_aux_dir to an # absolute PATH. The drawback is that using absolute paths prevent a # configured tree to be moved without reconfiguration. AC_DEFUN([AM_AUX_DIR_EXPAND], [dnl Rely on autoconf to set up CDPATH properly. AC_PREREQ([2.50])dnl # expand $ac_aux_dir to an absolute path am_aux_dir=`cd $ac_aux_dir && pwd` ]) # AM_COND_IF -*- Autoconf -*- # Copyright (C) 2008 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 1 # _AM_COND_IF # _AM_COND_ELSE # _AM_COND_ENDIF # -------------- # These macros are only used for tracing. m4_define([_AM_COND_IF]) m4_define([_AM_COND_ELSE]) m4_define([_AM_COND_ENDIF]) # AM_COND_IF(COND, [IF-TRUE], [IF-FALSE]) # --------------------------------------- # If the shell condition matching COND is true, execute IF-TRUE, # otherwise execute IF-FALSE. Allow automake to learn about conditional # instantiating macros (the AC_CONFIG_FOOS). AC_DEFUN([AM_COND_IF], [m4_ifndef([_AM_COND_VALUE_$1], [m4_fatal([$0: no such condition "$1"])])dnl _AM_COND_IF([$1])dnl if _AM_COND_VALUE_$1; then m4_default([$2], [:]) m4_ifval([$3], [_AM_COND_ELSE([$1])dnl else $3 ])dnl _AM_COND_ENDIF([$1])dnl fi[]dnl ]) # AM_CONDITIONAL -*- Autoconf -*- # Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006, 2008 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 9 # AM_CONDITIONAL(NAME, SHELL-CONDITION) # ------------------------------------- # Define a conditional. AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ(2.52)dnl ifelse([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl AC_SUBST([$1_TRUE])dnl AC_SUBST([$1_FALSE])dnl _AM_SUBST_NOTMAKE([$1_TRUE])dnl _AM_SUBST_NOTMAKE([$1_FALSE])dnl m4_define([_AM_COND_VALUE_$1], [$2])dnl if $2; then $1_TRUE= $1_FALSE='#' else $1_TRUE='#' $1_FALSE= fi AC_CONFIG_COMMANDS_PRE( [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then AC_MSG_ERROR([[conditional "$1" was never defined. Usually this means the macro was only invoked conditionally.]]) fi])]) # Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 10 # There are a few dirty hacks below to avoid letting `AC_PROG_CC' be # written in clear, in which case automake, when reading aclocal.m4, # will think it sees a *use*, and therefore will trigger all it's # C support machinery. Also note that it means that autoscan, seeing # CC etc. in the Makefile, will ask for an AC_PROG_CC use... # _AM_DEPENDENCIES(NAME) # ---------------------- # See how the compiler implements dependency checking. # NAME is "CC", "CXX", "GCJ", or "OBJC". # We try a few techniques and use that to set a single cache variable. # # We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was # modified to invoke _AM_DEPENDENCIES(CC); we would have a circular # dependency, and given that the user is not expected to run this macro, # just rely on AC_PROG_CC. AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl AC_REQUIRE([AM_MAKE_INCLUDE])dnl AC_REQUIRE([AM_DEP_TRACK])dnl ifelse([$1], CC, [depcc="$CC" am_compiler_list=], [$1], CXX, [depcc="$CXX" am_compiler_list=], [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'], [$1], UPC, [depcc="$UPC" am_compiler_list=], [$1], GCJ, [depcc="$GCJ" am_compiler_list='gcc3 gcc'], [depcc="$$1" am_compiler_list=]) AC_CACHE_CHECK([dependency style of $depcc], [am_cv_$1_dependencies_compiler_type], [if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named `D' -- because `-MD' means `put the output # in D'. mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_$1_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp` fi am__universal=false m4_case([$1], [CC], [case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac], [CXX], [case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac]) for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with # Solaris 8's {/usr,}/bin/sh. touch sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with `-c' and `-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle `-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # after this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvisualcpp | msvcmsys) # This compiler won't grok `-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_$1_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_$1_dependencies_compiler_type=none fi ]) AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type]) AM_CONDITIONAL([am__fastdep$1], [ test "x$enable_dependency_tracking" != xno \ && test "$am_cv_$1_dependencies_compiler_type" = gcc3]) ]) # AM_SET_DEPDIR # ------------- # Choose a directory name for dependency files. # This macro is AC_REQUIREd in _AM_DEPENDENCIES AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl ]) # AM_DEP_TRACK # ------------ AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE(dependency-tracking, [ --disable-dependency-tracking speeds up one-time build --enable-dependency-tracking do not reject slow dependency extractors]) if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' fi AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) AC_SUBST([AMDEPBACKSLASH])dnl _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl ]) # Generate code to set up dependency tracking. -*- Autoconf -*- # Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2008 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. #serial 5 # _AM_OUTPUT_DEPENDENCY_COMMANDS # ------------------------------ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [{ # Autoconf 2.62 quotes --file arguments for eval, but not when files # are listed without --file. Let's play safe and only enable the eval # if we detect the quoting. case $CONFIG_FILES in *\'*) eval set x "$CONFIG_FILES" ;; *) set x $CONFIG_FILES ;; esac shift for mf do # Strip MF so we end up with the name of the file. mf=`echo "$mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile or not. # We used to match only the files named `Makefile.in', but # some people rename them; so instead we look at the file content. # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. # Grep'ing the whole file is not good either: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then dirpart=`AS_DIRNAME("$mf")` else continue fi # Extract the definition of DEPDIR, am__include, and am__quote # from the Makefile without running `make'. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` test -z "$DEPDIR" && continue am__include=`sed -n 's/^am__include = //p' < "$mf"` test -z "am__include" && continue am__quote=`sed -n 's/^am__quote = //p' < "$mf"` # When using ansi2knr, U may be empty or an underscore; expand it U=`sed -n 's/^U = //p' < "$mf"` # Find all dependency output files, they are included files with # $(DEPDIR) in their names. We invoke sed twice because it is the # simplest approach to changing $(DEPDIR) to its actual value in the # expansion. for file in `sed -n " s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do # Make sure the directory exists. test -f "$dirpart/$file" && continue fdir=`AS_DIRNAME(["$file"])` AS_MKDIR_P([$dirpart/$fdir]) # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done } ])# _AM_OUTPUT_DEPENDENCY_COMMANDS # AM_OUTPUT_DEPENDENCY_COMMANDS # ----------------------------- # This macro should only be invoked once -- use via AC_REQUIRE. # # This code is only required when automatic dependency tracking # is enabled. FIXME. This creates each `.P' file that we will # need in order to bootstrap the dependency handling code. AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles], [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"]) ]) # Do all the work for Automake. -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, # 2005, 2006, 2008, 2009 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 16 # This macro actually does too much. Some checks are only needed if # your package does certain things. But this isn't really a big deal. # AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE]) # AM_INIT_AUTOMAKE([OPTIONS]) # ----------------------------------------------- # The call with PACKAGE and VERSION arguments is the old style # call (pre autoconf-2.50), which is being phased out. PACKAGE # and VERSION should now be passed to AC_INIT and removed from # the call to AM_INIT_AUTOMAKE. # We support both call styles for the transition. After # the next Automake release, Autoconf can make the AC_INIT # arguments mandatory, and then we can depend on a new Autoconf # release and drop the old call support. AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.62])dnl dnl Autoconf wants to disallow AM_ names. We explicitly allow dnl the ones we care about. m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl AC_REQUIRE([AC_PROG_INSTALL])dnl if test "`cd $srcdir && pwd`" != "`pwd`"; then # Use -I$(srcdir) only when $(srcdir) != ., so that make's output # is not polluted with repeated "-I." AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl # test to see if srcdir already configured if test -f $srcdir/config.status; then AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) fi fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi AC_SUBST([CYGPATH_W]) # Define the identity of the package. dnl Distinguish between old-style and new-style calls. m4_ifval([$2], [m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl AC_SUBST([PACKAGE], [$1])dnl AC_SUBST([VERSION], [$2])], [_AM_SET_OPTIONS([$1])dnl dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT. m4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,, [m4_fatal([AC_INIT should be called with package and version arguments])])dnl AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl _AM_IF_OPTION([no-define],, [AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package]) AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl # Some tools Automake needs. AC_REQUIRE([AM_SANITY_CHECK])dnl AC_REQUIRE([AC_ARG_PROGRAM])dnl AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version}) AM_MISSING_PROG(AUTOCONF, autoconf) AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version}) AM_MISSING_PROG(AUTOHEADER, autoheader) AM_MISSING_PROG(MAKEINFO, makeinfo) AC_REQUIRE([AM_PROG_INSTALL_SH])dnl AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl AC_REQUIRE([AM_PROG_MKDIR_P])dnl # We need awk for the "check" target. The system "awk" is bad on # some platforms. AC_REQUIRE([AC_PROG_AWK])dnl AC_REQUIRE([AC_PROG_MAKE_SET])dnl AC_REQUIRE([AM_SET_LEADING_DOT])dnl _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])])]) _AM_IF_OPTION([no-dependencies],, [AC_PROVIDE_IFELSE([AC_PROG_CC], [_AM_DEPENDENCIES(CC)], [define([AC_PROG_CC], defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl AC_PROVIDE_IFELSE([AC_PROG_CXX], [_AM_DEPENDENCIES(CXX)], [define([AC_PROG_CXX], defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl AC_PROVIDE_IFELSE([AC_PROG_OBJC], [_AM_DEPENDENCIES(OBJC)], [define([AC_PROG_OBJC], defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl ]) _AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])dnl dnl The `parallel-tests' driver may need to know about EXEEXT, so add the dnl `am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This macro dnl is hooked onto _AC_COMPILER_EXEEXT early, see below. AC_CONFIG_COMMANDS_PRE(dnl [m4_provide_if([_AM_COMPILER_EXEEXT], [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl ]) dnl Hook into `_AC_COMPILER_EXEEXT' early to learn its expansion. Do not dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further dnl mangled by Autoconf and run in a shell conditional statement. m4_define([_AC_COMPILER_EXEEXT], m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])]) # When config.status generates a header, we must update the stamp-h file. # This file resides in the same directory as the config header # that is generated. The stamp files are numbered to have different names. # Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the # loop where config.status creates the headers, so we can generate # our stamp files there. AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers. _am_arg=$1 _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $_am_arg | $_am_arg:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) # Copyright (C) 2001, 2003, 2005, 2008 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_INSTALL_SH # ------------------ # Define $install_sh. AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl if test x"${install_sh}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; *) install_sh="\${SHELL} $am_aux_dir/install-sh" esac fi AC_SUBST(install_sh)]) # Copyright (C) 2003, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 2 # Check whether the underlying file-system supports filenames # with a leading dot. For instance MS-DOS doesn't. AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null AC_SUBST([am__leading_dot])]) # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- # From Jim Meyering # Copyright (C) 1996, 1998, 2000, 2001, 2002, 2003, 2004, 2005, 2008 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 5 # AM_MAINTAINER_MODE([DEFAULT-MODE]) # ---------------------------------- # Control maintainer-specific portions of Makefiles. # Default is to disable them, unless `enable' is passed literally. # For symmetry, `disable' may be passed as well. Anyway, the user # can override the default with the --enable/--disable switch. AC_DEFUN([AM_MAINTAINER_MODE], [m4_case(m4_default([$1], [disable]), [enable], [m4_define([am_maintainer_other], [disable])], [disable], [m4_define([am_maintainer_other], [enable])], [m4_define([am_maintainer_other], [enable]) m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])]) AC_MSG_CHECKING([whether to am_maintainer_other maintainer-specific portions of Makefiles]) dnl maintainer-mode's default is 'disable' unless 'enable' is passed AC_ARG_ENABLE([maintainer-mode], [ --][am_maintainer_other][-maintainer-mode am_maintainer_other make rules and dependencies not useful (and sometimes confusing) to the casual installer], [USE_MAINTAINER_MODE=$enableval], [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes])) AC_MSG_RESULT([$USE_MAINTAINER_MODE]) AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) MAINT=$MAINTAINER_MODE_TRUE AC_SUBST([MAINT])dnl ] ) AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE]) # Check to see how 'make' treats includes. -*- Autoconf -*- # Copyright (C) 2001, 2002, 2003, 2005, 2009 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 4 # AM_MAKE_INCLUDE() # ----------------- # Check to see how make treats includes. AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo this is the am__doit target .PHONY: am__doit END # If we don't find an include directive, just comment out the code. AC_MSG_CHECKING([for style of include used by $am_make]) am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # Ignore all kinds of additional output from `make'. case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=include am__quote= _am_result=GNU ;; esac # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=.include am__quote="\"" _am_result=BSD ;; esac fi AC_SUBST([am__include]) AC_SUBST([am__quote]) AC_MSG_RESULT([$_am_result]) rm -f confinc confmf ]) # Copyright (C) 1999, 2000, 2001, 2003, 2004, 2005, 2008 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 6 # AM_PROG_CC_C_O # -------------- # Like AC_PROG_CC_C_O, but changed for automake. AC_DEFUN([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC_C_O])dnl AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl AC_REQUIRE_AUX_FILE([compile])dnl # FIXME: we rely on the cache variable name because # there is no other way. set dummy $CC am_cc=`echo $[2] | sed ['s/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/']` eval am_t=\$ac_cv_prog_cc_${am_cc}_c_o if test "$am_t" != 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 dnl Make sure AC_PROG_CC is never called again, or it will override our dnl setting of CC. m4_define([AC_PROG_CC], [m4_fatal([AC_PROG_CC cannot be called after AM_PROG_CC_C_O])]) ]) # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- # Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005, 2008 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 6 # AM_MISSING_PROG(NAME, PROGRAM) # ------------------------------ AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN]) $1=${$1-"${am_missing_run}$2"} AC_SUBST($1)]) # AM_MISSING_HAS_RUN # ------------------ # Define MISSING if not defined so far and test if it supports --run. # If it does, set am_missing_run to use it, otherwise, to nothing. AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl AC_REQUIRE_AUX_FILE([missing])dnl if test x"${MISSING+set}" != xset; then case $am_aux_dir in *\ * | *\ *) MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; *) MISSING="\${SHELL} $am_aux_dir/missing" ;; esac fi # Use eval to expand $SHELL if eval "$MISSING --run true"; then am_missing_run="$MISSING --run " else am_missing_run= AC_MSG_WARN([`missing' script is too old or missing]) fi ]) # Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_MKDIR_P # --------------- # Check for `mkdir -p'. AC_DEFUN([AM_PROG_MKDIR_P], [AC_PREREQ([2.60])dnl AC_REQUIRE([AC_PROG_MKDIR_P])dnl dnl Automake 1.8 to 1.9.6 used to define mkdir_p. We now use MKDIR_P, dnl while keeping a definition of mkdir_p for backward compatibility. dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile. dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of dnl Makefile.ins that do not define MKDIR_P, so we do our own dnl adjustment using top_builddir (which is defined more often than dnl MKDIR_P). AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl case $mkdir_p in [[\\/$]]* | ?:[[\\/]]*) ;; */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; esac ]) # Helper functions for option handling. -*- Autoconf -*- # Copyright (C) 2001, 2002, 2003, 2005, 2008 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 4 # _AM_MANGLE_OPTION(NAME) # ----------------------- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) # _AM_SET_OPTION(NAME) # ------------------------------ # Set option NAME. Presently that only means defining a flag for this option. AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), 1)]) # _AM_SET_OPTIONS(OPTIONS) # ---------------------------------- # OPTIONS is a space-separated list of Automake options. AC_DEFUN([_AM_SET_OPTIONS], [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) # _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) # ------------------------------------------- # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) # Check to make sure that the build environment is sane. -*- Autoconf -*- # Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005, 2008 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 5 # AM_SANITY_CHECK # --------------- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane]) # Just in case sleep 1 echo timestamp > conftest.file # Reject unsafe characters in $srcdir or the absolute working directory # name. Accept space and tab only in the latter. am_lf=' ' case `pwd` in *[[\\\"\#\$\&\'\`$am_lf]]*) AC_MSG_ERROR([unsafe absolute working directory name]);; esac case $srcdir in *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*) AC_MSG_ERROR([unsafe srcdir value: `$srcdir']);; esac # Do `set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` if test "$[*]" = "X"; then # -L didn't work. set X `ls -t "$srcdir/configure" conftest.file` fi rm -f conftest.file if test "$[*]" != "X $srcdir/configure conftest.file" \ && test "$[*]" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken alias in your environment]) fi test "$[2]" = conftest.file ) then # Ok. : else AC_MSG_ERROR([newly created file is older than distributed files! Check your system clock]) fi AC_MSG_RESULT(yes)]) # Copyright (C) 2009 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 1 # AM_SILENT_RULES([DEFAULT]) # -------------------------- # Enable less verbose build rules; with the default set to DEFAULT # (`yes' being less verbose, `no' or empty being verbose). AC_DEFUN([AM_SILENT_RULES], [AC_ARG_ENABLE([silent-rules], [ --enable-silent-rules less verbose build output (undo: `make V=1') --disable-silent-rules verbose build output (undo: `make V=0')]) case $enable_silent_rules in yes) AM_DEFAULT_VERBOSITY=0;; no) AM_DEFAULT_VERBOSITY=1;; *) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);; esac AC_SUBST([AM_DEFAULT_VERBOSITY])dnl AM_BACKSLASH='\' AC_SUBST([AM_BACKSLASH])dnl _AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl ]) # Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_INSTALL_STRIP # --------------------- # One issue with vendor `install' (even GNU) is that you can't # specify the program used to strip binaries. This is especially # annoying in cross-compiling environments, where the build's strip # is unlikely to handle the host's binaries. # Fortunately install-sh will honor a STRIPPROG variable, so we # always use install-sh in `make install-strip', and initialize # STRIPPROG with the value of the STRIP variable (set by the user). AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl # Installed binaries are usually stripped using `strip' when the user # run `make install-strip'. However `strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the `STRIP' environment variable to overrule this program. dnl Don't test for $cross_compiling = yes, because it might be `maybe'. if test "$cross_compiling" != no; then AC_CHECK_TOOL([STRIP], [strip], :) fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" AC_SUBST([INSTALL_STRIP_PROGRAM])]) # Copyright (C) 2006, 2008 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 2 # _AM_SUBST_NOTMAKE(VARIABLE) # --------------------------- # Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in. # This macro is traced by Automake. AC_DEFUN([_AM_SUBST_NOTMAKE]) # AM_SUBST_NOTMAKE(VARIABLE) # --------------------------- # Public sister of _AM_SUBST_NOTMAKE. AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) # Check how to create a tarball. -*- Autoconf -*- # Copyright (C) 2004, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 2 # _AM_PROG_TAR(FORMAT) # -------------------- # Check how to create a tarball in format FORMAT. # FORMAT should be one of `v7', `ustar', or `pax'. # # Substitute a variable $(am__tar) that is a command # writing to stdout a FORMAT-tarball containing the directory # $tardir. # tardir=directory && $(am__tar) > result.tar # # Substitute a variable $(am__untar) that extract such # a tarball read from stdin. # $(am__untar) < result.tar AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility. AM_MISSING_PROG([AMTAR], [tar]) m4_if([$1], [v7], [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'], [m4_case([$1], [ustar],, [pax],, [m4_fatal([Unknown tar format])]) AC_MSG_CHECKING([how to create a $1 tar archive]) # Loop over all known methods to create a tar archive until one works. _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' _am_tools=${am_cv_prog_tar_$1-$_am_tools} # Do not fold the above two line into one, because Tru64 sh and # Solaris sh will not grok spaces in the rhs of `-'. for _am_tool in $_am_tools do case $_am_tool in gnutar) for _am_tar in tar gnutar gtar; do AM_RUN_LOG([$_am_tar --version]) && break done am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' am__untar="$_am_tar -xf -" ;; plaintar) # Must skip GNU tar: if it does not support --format= it doesn't create # ustar tarball either. (tar --version) >/dev/null 2>&1 && continue am__tar='tar chf - "$$tardir"' am__tar_='tar chf - "$tardir"' am__untar='tar xf -' ;; pax) am__tar='pax -L -x $1 -w "$$tardir"' am__tar_='pax -L -x $1 -w "$tardir"' am__untar='pax -r' ;; cpio) am__tar='find "$$tardir" -print | cpio -o -H $1 -L' am__tar_='find "$tardir" -print | cpio -o -H $1 -L' am__untar='cpio -i -H $1 -d' ;; none) am__tar=false am__tar_=false am__untar=false ;; esac # If the value was cached, stop now. We just wanted to have am__tar # and am__untar set. test -n "${am_cv_prog_tar_$1}" && break # tar/untar a dummy directory, and stop if the command works rm -rf conftest.dir mkdir conftest.dir echo GrepMe > conftest.dir/file AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) rm -rf conftest.dir if test -s conftest.tar; then AM_RUN_LOG([$am__untar /dev/null 2>&1 && break fi done rm -rf conftest.dir AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) AC_MSG_RESULT([$am_cv_prog_tar_$1])]) AC_SUBST([am__tar]) AC_SUBST([am__untar]) ]) # _AM_PROG_TAR m4_include([m4/acx_pthread.m4]) 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]) cpputest-3.4/Makefile.am0000644000175300017530000002275312137414545012231 00000000000000 ACLOCAL_AMFLAGS = -I m4 CPPUTEST_TESTS = CppUTestTests EXTRA_LIBRARIES = libCppUTestExt.a EXTRA_PROGRAMS = CppUTestExtTests lib_LIBRARIES = libCppUTest.a check_PROGRAMS = $(CPPUTEST_TESTS) if INCLUDE_CPPUTEST_EXT lib_LIBRARIES+= libCppUTestExt.a check_PROGRAMS += CppUTestExtTests endif TESTS = $(check_PROGRAMS) pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = cpputest.pc EXTRA_DIST = \ cpputest.pc.in \ $(ALL_FILES_IN_GIT) libCppUTest_a_CPPFLAGS = $(AM_CPPFLAGS) $(CPPUTEST_CPPFLAGS) $(CPPUTEST_ADDITIONAL_CPPFLAGS) libCppUTest_a_CFLAGS = $(AM_CFLAGS) $(CPPUTEST_CFLAGS) $(CPPUTEST_ADDITIONAL_CFLAGS) libCppUTest_a_CXXFLAGS = $(AM_CXXFLAGS) $(CPPUTEST_CXXFLAGS) $(CPPUTEST_ADDITIONAL_CXXFLAGS) libCppUTest_a_SOURCES = \ src/CppUTest/CommandLineArguments.cpp \ src/CppUTest/MemoryLeakWarningPlugin.cpp \ src/CppUTest/TestHarness_c.cpp \ src/CppUTest/TestRegistry.cpp \ src/CppUTest/CommandLineTestRunner.cpp \ src/CppUTest/SimpleString.cpp \ src/CppUTest/TestMemoryAllocator.cpp \ src/CppUTest/TestResult.cpp \ src/CppUTest/JUnitTestOutput.cpp \ src/CppUTest/TestFailure.cpp \ src/CppUTest/TestOutput.cpp \ src/CppUTest/MemoryLeakDetector.cpp \ src/CppUTest/TestFilter.cpp \ src/CppUTest/TestPlugin.cpp \ src/CppUTest/Utest.cpp \ src/Platforms/$(CPP_PLATFORM)/UtestPlatform.cpp include_cpputestdir = $(includedir)/CppUTest include_cpputest_HEADERS = \ include/CppUTest/CommandLineArguments.h \ include/CppUTest/PlatformSpecificFunctions.h \ include/CppUTest/TestMemoryAllocator.h \ include/CppUTest/CommandLineTestRunner.h \ include/CppUTest/PlatformSpecificFunctions_c.h \ include/CppUTest/TestOutput.h \ include/CppUTest/CppUTestConfig.h \ include/CppUTest/SimpleString.h \ include/CppUTest/TestPlugin.h \ include/CppUTest/JUnitTestOutput.h \ include/CppUTest/StandardCLibrary.h \ include/CppUTest/TestRegistry.h \ include/CppUTest/MemoryLeakDetector.h \ include/CppUTest/TestFailure.h \ include/CppUTest/TestResult.h \ include/CppUTest/MemoryLeakDetectorMallocMacros.h \ include/CppUTest/TestFilter.h \ include/CppUTest/TestTestingFixture.h \ include/CppUTest/MemoryLeakDetectorNewMacros.h \ include/CppUTest/TestHarness.h \ include/CppUTest/Utest.h \ include/CppUTest/MemoryLeakWarningPlugin.h \ include/CppUTest/TestHarness_c.h \ include/CppUTest/UtestMacros.h libCppUTestExt_a_CPPFLAGS = $(libCppUTest_a_CPPFLAGS) libCppUTestExt_a_CFLAGS = $(libCppUTest_a_CFLAGS) libCppUTestExt_a_CXXFLAGS = $(libCppUTest_a_CXXFLAGS) libCppUTestExt_a_SOURCES = \ src/CppUTestExt/CodeMemoryReportFormatter.cpp \ src/CppUTestExt/MemoryReporterPlugin.cpp \ src/CppUTestExt/MockFailure.cpp \ src/CppUTestExt/MockSupportPlugin.cpp \ src/CppUTestExt/GTestConvertor.cpp \ src/CppUTestExt/MockActualFunctionCall.cpp \ src/CppUTestExt/MockFunctionCall.cpp \ src/CppUTestExt/MockSupport_c.cpp \ src/CppUTestExt/MemoryReportAllocator.cpp \ src/CppUTestExt/MockExpectedFunctionCall.cpp \ src/CppUTestExt/MockNamedValue.cpp \ src/CppUTestExt/OrderedTest.cpp \ src/CppUTestExt/MemoryReportFormatter.cpp \ src/CppUTestExt/MockExpectedFunctionsList.cpp \ src/CppUTestExt/MockSupport.cpp if INCLUDE_CPPUTEST_EXT include_cpputestextdir = $(includedir)/CppUTestExt include_cpputestext_HEADERS = \ include/CppUTestExt/MemoryReportAllocator.h \ include/CppUTestExt/MockExpectedFunctionsList.h \ include/CppUTestExt/MockSupportPlugin.h \ include/CppUTestExt/MockSupport.h \ include/CppUTestExt/MockExpectedFunctionCall.h \ include/CppUTestExt/MemoryReportFormatter.h \ include/CppUTestExt/MockFailure.h \ include/CppUTestExt/MockSupport_c.h \ include/CppUTestExt/GMock.h \ include/CppUTestExt/MemoryReporterPlugin.h \ include/CppUTestExt/MockFunctionCall.h \ include/CppUTestExt/OrderedTest.h \ include/CppUTestExt/GTestConvertor.h \ include/CppUTestExt/MockActualFunctionCall.h \ include/CppUTestExt/MockNamedValue.h endif CppUTestTests_CPPFLAGS = $(libCppUTest_a_CPPFLAGS) CppUTestTests_CFLAGS = $(libCppUTest_a_CFLAGS) CppUTestTests_CXXFLAGS = $(libCppUTest_a_CXXFLAGS) CppUTestTests_LDADD = libCppUTest.a $(CPPUTEST_LDADD) CppUTestTests_LDFLAGS = $(AM_LDFLAGS) $(CPPUTEST_LDFLAGS) $(CPPUTEST_ADDITIONAL_LDFLAGS) CppUTestTests_SOURCES = \ tests/AllTests.cpp \ tests/SetPluginTest.cpp \ tests/CheatSheetTest.cpp \ tests/SimpleStringTest.cpp \ tests/CommandLineArgumentsTest.cpp \ tests/TestFailureTest.cpp \ tests/CommandLineTestRunnerTest.cpp \ tests/TestFilterTest.cpp \ tests/TestHarness_cTest.cpp \ tests/JUnitOutputTest.cpp \ tests/TestHarness_cTestCFile.c \ tests/MemoryLeakDetectorTest.cpp \ tests/TestInstallerTest.cpp \ tests/AllocLetTestFree.c \ tests/MemoryLeakOperatorOverloadsTest.cpp \ tests/TestMemoryAllocatorTest.cpp \ tests/MemoryLeakWarningTest.cpp \ tests/TestOutputTest.cpp \ tests/AllocLetTestFreeTest.cpp \ tests/NullTestTest.cpp \ tests/TestRegistryTest.cpp \ tests/AllocationInCFile.c \ tests/PluginTest.cpp \ tests/TestResultTest.cpp \ tests/PreprocessorTest.cpp \ tests/TestUTestMacro.cpp \ tests/AllocationInCppFile.cpp \ tests/UtestTest.cpp CppUTestExtTests_CPPFLAGS = $(libCppUTestExt_a_CPPFLAGS) CppUTestExtTests_CFLAGS = $(libCppUTestExt_a_CFLAGS) CppUTestExtTests_CXXFLAGS = $(libCppUTestExt_a_CXXFLAGS) CppUTestExtTests_LDADD = libCppUTestExt.a libCppUTest.a $(CPPUTEST_LDADD) CppUTestExtTests_LDFLAGS = $(CppUTestTests_LDFLAGS) CppUTestExtTests_SOURCES = \ tests/CppUTestExt/AllTests.cpp \ tests/CppUTestExt/TestMockActualFunctionCall.cpp \ tests/CppUTestExt/TestMockSupport.cpp \ tests/CppUTestExt/TestCodeMemoryReportFormatter.cpp \ tests/CppUTestExt/TestMockCheatSheet.cpp \ tests/CppUTestExt/TestMockSupport_c.cpp \ tests/CppUTestExt/TestGMock.cpp \ tests/CppUTestExt/TestMockExpectedFunctionCall.cpp \ tests/CppUTestExt/TestMockSupport_cCFile.c \ tests/CppUTestExt/TestGTest.cpp \ tests/CppUTestExt/TestMockExpectedFunctionsList.cpp \ tests/CppUTestExt/TestMemoryReportAllocator.cpp \ tests/CppUTestExt/TestMockFailure.cpp \ tests/CppUTestExt/TestOrderedTest.cpp \ tests/CppUTestExt/TestMemoryReportFormatter.cpp \ tests/CppUTestExt/TestMemoryReporterPlugin.cpp \ tests/CppUTestExt/TestMockPlugin.cpp RUN_CPPUTEST_TESTS = ./$(CPPUTEST_TESTS) -r #RUN_CPPUTEST_EXT_TESTS = ./$(CPPUTEST_EXT_TESTS) -r check_all: @echo "Building without extensions" make distclean; $(srcdir)/configure --disable-extensions; make check @echo "Building without the Standard C library" make distclean; $(srcdir)/configure --disable-std-c; make @echo "Building without the Standard C++ library" make distclean; $(srcdir)/configure --disable-std-cpp; make check @echo "Building without memory leak detection" make distclean; $(srcdir)/configure --disable-memory-leak-detection; make check @echo "Building without memory leak detection and without Standard C++" make distclean; $(srcdir)/configure --disable-memory-leak-detection --disable--std-cpp; make check @echo "Generate a map file while building" make distclean; $(srcdir)/configure -enable-generate-map-file; make check if [ -s CppUTest.o.map.txt ]; then echo "Generating map file failed. Build failed!"; exit 1; fi @echo "Does the system have gcc? $(CPPUTEST_HAS_GCC)" if test "x$(CPPUTEST_HAS_GCC)" = xyes; then echo "Compiling with gcc"; make distclean; ../configure CC="gcc" CXX="g++"; make check; fi @echo "Does the system have clang and is a Mac? $(CPPUTEST_HAS_CLANG)" if test "x$(CPPUTEST_HAS_CLANG)" = xyes && test "x$(CPPUTEST_ON_MACOSX)" = xyes; then \ echo "Compiling with clang"; make distclean; ../configure CC="clang" CXX="clang++"; make check; \ fi @echo Testing JUnit output make distclean; $(srcdir)/configure; make check ./$(CPPUTEST_TESTS) -ojunit > junit_run_output if [ -s junit_run_output ]; then echo "JUnit run has output. Build failed!"; exit 1; fi rm junit_run_output; rm cpputest_*.xml @echo "Compile with coverage (switch to clang for Mac OSX)" if test "x$(CPPUTEST_HAS_CLANG)" = xyes && test "x$(CPPUTEST_ON_MACOSX)" = xyes; then \ echo "Compiling with clang"; make distclean; ../configure CC="clang" CXX="clang++" --enable-coverage; make check; \ else \ make distclean; $(srcdir)/configure -enable-coverage; make check; \ fi ./$(CPPUTEST_TESTS) >> test_output.txt; $(CPPUTESTEXT_TESTS) >> test_output.txt $(SILENCE)for f in `ls *.gcno` ; do \ gcov $(CppUTestExtTests_SOURCES) $(CppUTestTests_SOURCES) $(libCppUTest_a_SOURCES) $(libCppUTestExt_a_SOURCES) -o $$f 1>>gcov_output.txt 2>>gcov_error.txt; \ done $(srcdir)/scripts/filterGcov.sh gcov_output.txt gcov_error.txt gcov_report.txt test_output.txt cat gcov_report.txt if test "x$(CPPUTEST_HAS_LCOV)" = xyes; then lcov -c -d . -o coverage.info; genhtml -o test_coverage coverage.info; fi rm -f gcov_output.txt gcov_error.txt gcov_report.txt test_output.txt gcov_report.txt.html coverage.info rm -rf test_coverage @echo "Compiling and running the examples. This will use the old Makefile" make distclean; ../configure; make; $(MAKE) -C $(srcdir)/examples all clean CPPUTEST_LIB_LINK_DIR="`pwd`" @echo "Build using real gtest" make distclean; $(srcdir)/configure --enable-real-gtest; make check @echo "Build using gmock" make distclean; $(srcdir)/configure --enable-gmock; make check @echo "Building with all flags turned off" make distclean; $(srcdir)/configure --disable-cpputest-flags CFLAGS="" CXXFLAGS="" CPPFLAGS="-I $(srcdir)/include -I$(srcdir)/include/CppUTestExt/CppUTestGTest -I$(srcdir)/include/CppUTestExt/CppUTestGMock" --disable-dependency-tracking; make check @echo "Last... one normal build and test" make distclean; $(srcdir)/configure; make check; $(RUN_CPPUTEST_TESTS); $(RUN_CPPUTEST_EXT_TESTS) cpputest-3.4/Makefile.in0000644000175300017530000074617512143637565012263 00000000000000# 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@ EXTRA_PROGRAMS = CppUTestExtTests$(EXEEXT) check_PROGRAMS = $(am__EXEEXT_1) $(am__EXEEXT_2) @INCLUDE_CPPUTEST_EXT_TRUE@am__append_1 = libCppUTestExt.a @INCLUDE_CPPUTEST_EXT_TRUE@am__append_2 = CppUTestExtTests subdir = . DIST_COMMON = README $(am__configure_deps) \ $(am__include_cpputestext_HEADERS_DIST) \ $(include_cpputest_HEADERS) $(srcdir)/Makefile.am \ $(srcdir)/Makefile.in $(srcdir)/config.h.in \ $(srcdir)/cpputest.pc.in $(top_srcdir)/configure AUTHORS \ COPYING ChangeLog INSTALL NEWS compile config.guess config.sub \ depcomp install-sh ltmain.sh missing ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/acx_pthread.m4 \ $(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)/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 = cpputest.pc CONFIG_CLEAN_VPATH_FILES = am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkgconfigdir)" \ "$(DESTDIR)$(include_cpputestdir)" \ "$(DESTDIR)$(include_cpputestextdir)" LIBRARIES = $(lib_LIBRARIES) ARFLAGS = cru AM_V_AR = $(am__v_AR_$(V)) am__v_AR_ = $(am__v_AR_$(AM_DEFAULT_VERBOSITY)) am__v_AR_0 = @echo " AR " $@; AM_V_at = $(am__v_at_$(V)) am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) am__v_at_0 = @ libCppUTest_a_AR = $(AR) $(ARFLAGS) libCppUTest_a_LIBADD = am_libCppUTest_a_OBJECTS = \ libCppUTest_a-CommandLineArguments.$(OBJEXT) \ libCppUTest_a-MemoryLeakWarningPlugin.$(OBJEXT) \ libCppUTest_a-TestHarness_c.$(OBJEXT) \ libCppUTest_a-TestRegistry.$(OBJEXT) \ libCppUTest_a-CommandLineTestRunner.$(OBJEXT) \ libCppUTest_a-SimpleString.$(OBJEXT) \ libCppUTest_a-TestMemoryAllocator.$(OBJEXT) \ libCppUTest_a-TestResult.$(OBJEXT) \ libCppUTest_a-JUnitTestOutput.$(OBJEXT) \ libCppUTest_a-TestFailure.$(OBJEXT) \ libCppUTest_a-TestOutput.$(OBJEXT) \ libCppUTest_a-MemoryLeakDetector.$(OBJEXT) \ libCppUTest_a-TestFilter.$(OBJEXT) \ libCppUTest_a-TestPlugin.$(OBJEXT) \ libCppUTest_a-Utest.$(OBJEXT) \ libCppUTest_a-UtestPlatform.$(OBJEXT) libCppUTest_a_OBJECTS = $(am_libCppUTest_a_OBJECTS) libCppUTestExt_a_AR = $(AR) $(ARFLAGS) libCppUTestExt_a_LIBADD = am_libCppUTestExt_a_OBJECTS = \ libCppUTestExt_a-CodeMemoryReportFormatter.$(OBJEXT) \ libCppUTestExt_a-MemoryReporterPlugin.$(OBJEXT) \ libCppUTestExt_a-MockFailure.$(OBJEXT) \ libCppUTestExt_a-MockSupportPlugin.$(OBJEXT) \ libCppUTestExt_a-GTestConvertor.$(OBJEXT) \ libCppUTestExt_a-MockActualFunctionCall.$(OBJEXT) \ libCppUTestExt_a-MockFunctionCall.$(OBJEXT) \ libCppUTestExt_a-MockSupport_c.$(OBJEXT) \ libCppUTestExt_a-MemoryReportAllocator.$(OBJEXT) \ libCppUTestExt_a-MockExpectedFunctionCall.$(OBJEXT) \ libCppUTestExt_a-MockNamedValue.$(OBJEXT) \ libCppUTestExt_a-OrderedTest.$(OBJEXT) \ libCppUTestExt_a-MemoryReportFormatter.$(OBJEXT) \ libCppUTestExt_a-MockExpectedFunctionsList.$(OBJEXT) \ libCppUTestExt_a-MockSupport.$(OBJEXT) libCppUTestExt_a_OBJECTS = $(am_libCppUTestExt_a_OBJECTS) am__EXEEXT_1 = CppUTestTests$(EXEEXT) @INCLUDE_CPPUTEST_EXT_TRUE@am__EXEEXT_2 = CppUTestExtTests$(EXEEXT) am_CppUTestExtTests_OBJECTS = CppUTestExtTests-AllTests.$(OBJEXT) \ CppUTestExtTests-TestMockActualFunctionCall.$(OBJEXT) \ CppUTestExtTests-TestMockSupport.$(OBJEXT) \ CppUTestExtTests-TestCodeMemoryReportFormatter.$(OBJEXT) \ CppUTestExtTests-TestMockCheatSheet.$(OBJEXT) \ CppUTestExtTests-TestMockSupport_c.$(OBJEXT) \ CppUTestExtTests-TestGMock.$(OBJEXT) \ CppUTestExtTests-TestMockExpectedFunctionCall.$(OBJEXT) \ CppUTestExtTests-TestMockSupport_cCFile.$(OBJEXT) \ CppUTestExtTests-TestGTest.$(OBJEXT) \ CppUTestExtTests-TestMockExpectedFunctionsList.$(OBJEXT) \ CppUTestExtTests-TestMemoryReportAllocator.$(OBJEXT) \ CppUTestExtTests-TestMockFailure.$(OBJEXT) \ CppUTestExtTests-TestOrderedTest.$(OBJEXT) \ CppUTestExtTests-TestMemoryReportFormatter.$(OBJEXT) \ CppUTestExtTests-TestMemoryReporterPlugin.$(OBJEXT) \ CppUTestExtTests-TestMockPlugin.$(OBJEXT) CppUTestExtTests_OBJECTS = $(am_CppUTestExtTests_OBJECTS) am__DEPENDENCIES_1 = CppUTestExtTests_DEPENDENCIES = libCppUTestExt.a libCppUTest.a \ $(am__DEPENDENCIES_1) AM_V_lt = $(am__v_lt_$(V)) am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY)) am__v_lt_0 = --silent CppUTestExtTests_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \ $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) \ $(CppUTestExtTests_LDFLAGS) $(LDFLAGS) -o $@ am_CppUTestTests_OBJECTS = CppUTestTests-AllTests.$(OBJEXT) \ CppUTestTests-SetPluginTest.$(OBJEXT) \ CppUTestTests-CheatSheetTest.$(OBJEXT) \ CppUTestTests-SimpleStringTest.$(OBJEXT) \ CppUTestTests-CommandLineArgumentsTest.$(OBJEXT) \ CppUTestTests-TestFailureTest.$(OBJEXT) \ CppUTestTests-CommandLineTestRunnerTest.$(OBJEXT) \ CppUTestTests-TestFilterTest.$(OBJEXT) \ CppUTestTests-TestHarness_cTest.$(OBJEXT) \ CppUTestTests-JUnitOutputTest.$(OBJEXT) \ CppUTestTests-TestHarness_cTestCFile.$(OBJEXT) \ CppUTestTests-MemoryLeakDetectorTest.$(OBJEXT) \ CppUTestTests-TestInstallerTest.$(OBJEXT) \ CppUTestTests-AllocLetTestFree.$(OBJEXT) \ CppUTestTests-MemoryLeakOperatorOverloadsTest.$(OBJEXT) \ CppUTestTests-TestMemoryAllocatorTest.$(OBJEXT) \ CppUTestTests-MemoryLeakWarningTest.$(OBJEXT) \ CppUTestTests-TestOutputTest.$(OBJEXT) \ CppUTestTests-AllocLetTestFreeTest.$(OBJEXT) \ CppUTestTests-NullTestTest.$(OBJEXT) \ CppUTestTests-TestRegistryTest.$(OBJEXT) \ CppUTestTests-AllocationInCFile.$(OBJEXT) \ CppUTestTests-PluginTest.$(OBJEXT) \ CppUTestTests-TestResultTest.$(OBJEXT) \ CppUTestTests-PreprocessorTest.$(OBJEXT) \ CppUTestTests-TestUTestMacro.$(OBJEXT) \ CppUTestTests-AllocationInCppFile.$(OBJEXT) \ CppUTestTests-UtestTest.$(OBJEXT) CppUTestTests_OBJECTS = $(am_CppUTestTests_OBJECTS) CppUTestTests_DEPENDENCIES = libCppUTest.a $(am__DEPENDENCIES_1) CppUTestTests_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \ $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) $(CppUTestTests_LDFLAGS) \ $(LDFLAGS) -o $@ DEFAULT_INCLUDES = -I.@am__isrc@ depcomp = $(SHELL) $(top_srcdir)/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_$(V)) am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY)) am__v_CC_0 = @echo " CC " $@; CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_$(V)) am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY)) am__v_CCLD_0 = @echo " CCLD " $@; 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_$(V)) am__v_CXX_ = $(am__v_CXX_$(AM_DEFAULT_VERBOSITY)) am__v_CXX_0 = @echo " CXX " $@; 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_$(V)) am__v_CXXLD_ = $(am__v_CXXLD_$(AM_DEFAULT_VERBOSITY)) am__v_CXXLD_0 = @echo " CXXLD " $@; AM_V_GEN = $(am__v_GEN_$(V)) am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY)) am__v_GEN_0 = @echo " GEN " $@; SOURCES = $(libCppUTest_a_SOURCES) $(libCppUTestExt_a_SOURCES) \ $(CppUTestExtTests_SOURCES) $(CppUTestTests_SOURCES) DIST_SOURCES = $(libCppUTest_a_SOURCES) $(libCppUTestExt_a_SOURCES) \ $(CppUTestExtTests_SOURCES) $(CppUTestTests_SOURCES) DATA = $(pkgconfig_DATA) am__include_cpputestext_HEADERS_DIST = \ include/CppUTestExt/MemoryReportAllocator.h \ include/CppUTestExt/MockExpectedFunctionsList.h \ include/CppUTestExt/MockSupportPlugin.h \ include/CppUTestExt/MockSupport.h \ include/CppUTestExt/MockExpectedFunctionCall.h \ include/CppUTestExt/MemoryReportFormatter.h \ include/CppUTestExt/MockFailure.h \ include/CppUTestExt/MockSupport_c.h \ include/CppUTestExt/GMock.h \ include/CppUTestExt/MemoryReporterPlugin.h \ include/CppUTestExt/MockFunctionCall.h \ include/CppUTestExt/OrderedTest.h \ include/CppUTestExt/GTestConvertor.h \ include/CppUTestExt/MockActualFunctionCall.h \ include/CppUTestExt/MockNamedValue.h HEADERS = $(include_cpputest_HEADERS) $(include_cpputestext_HEADERS) ETAGS = etags CTAGS = ctags am__tty_colors = \ red=; grn=; lgn=; blu=; std= DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) distdir = $(PACKAGE)-$(VERSION) top_distdir = $(distdir) am__remove_distdir = \ { test ! -d "$(distdir)" \ || { find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \ && rm -fr "$(distdir)"; }; } DIST_ARCHIVES = $(distdir).tar.gz GZIP_ENV = --best distuninstallcheck_listfiles = find . -type f -print distcleancheck_listfiles = find . -type f -print ACLOCAL = @ACLOCAL@ ALL_FILES_IN_GIT = @ALL_FILES_IN_GIT@ 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@ CPPUTEST_ADDITIONAL_CFLAGS = @CPPUTEST_ADDITIONAL_CFLAGS@ CPPUTEST_ADDITIONAL_CPPFLAGS = @CPPUTEST_ADDITIONAL_CPPFLAGS@ CPPUTEST_ADDITIONAL_CXXFLAGS = @CPPUTEST_ADDITIONAL_CXXFLAGS@ CPPUTEST_CFLAGS = @CPPUTEST_CFLAGS@ CPPUTEST_CPPFLAGS = @CPPUTEST_CPPFLAGS@ CPPUTEST_CXXFLAGS = @CPPUTEST_CXXFLAGS@ CPPUTEST_HAS_CLANG = @CPPUTEST_HAS_CLANG@ CPPUTEST_HAS_GCC = @CPPUTEST_HAS_GCC@ CPPUTEST_HAS_LCOV = @CPPUTEST_HAS_LCOV@ CPPUTEST_LDADD = @CPPUTEST_LDADD@ CPPUTEST_LDFLAGS = @CPPUTEST_LDFLAGS@ CPPUTEST_ON_MACOSX = @CPPUTEST_ON_MACOSX@ CPP_PLATFORM = @CPP_PLATFORM@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GMOCK_HOME = @GMOCK_HOME@ GREP = @GREP@ GTEST_HOME = @GTEST_HOME@ INCLUDE_CPPUTEST_EXT = @INCLUDE_CPPUTEST_EXT@ 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@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MOSTLYCLEANFILES = @MOSTLYCLEANFILES@ 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@ PTHREAD_CC = @PTHREAD_CC@ PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ PTHREAD_LIBS = @PTHREAD_LIBS@ 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@ acx_pthread_config = @acx_pthread_config@ 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@ ACLOCAL_AMFLAGS = -I m4 CPPUTEST_TESTS = CppUTestTests EXTRA_LIBRARIES = libCppUTestExt.a lib_LIBRARIES = libCppUTest.a $(am__append_1) TESTS = $(check_PROGRAMS) pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = cpputest.pc EXTRA_DIST = \ cpputest.pc.in \ $(ALL_FILES_IN_GIT) libCppUTest_a_CPPFLAGS = $(AM_CPPFLAGS) $(CPPUTEST_CPPFLAGS) $(CPPUTEST_ADDITIONAL_CPPFLAGS) libCppUTest_a_CFLAGS = $(AM_CFLAGS) $(CPPUTEST_CFLAGS) $(CPPUTEST_ADDITIONAL_CFLAGS) libCppUTest_a_CXXFLAGS = $(AM_CXXFLAGS) $(CPPUTEST_CXXFLAGS) $(CPPUTEST_ADDITIONAL_CXXFLAGS) libCppUTest_a_SOURCES = \ src/CppUTest/CommandLineArguments.cpp \ src/CppUTest/MemoryLeakWarningPlugin.cpp \ src/CppUTest/TestHarness_c.cpp \ src/CppUTest/TestRegistry.cpp \ src/CppUTest/CommandLineTestRunner.cpp \ src/CppUTest/SimpleString.cpp \ src/CppUTest/TestMemoryAllocator.cpp \ src/CppUTest/TestResult.cpp \ src/CppUTest/JUnitTestOutput.cpp \ src/CppUTest/TestFailure.cpp \ src/CppUTest/TestOutput.cpp \ src/CppUTest/MemoryLeakDetector.cpp \ src/CppUTest/TestFilter.cpp \ src/CppUTest/TestPlugin.cpp \ src/CppUTest/Utest.cpp \ src/Platforms/$(CPP_PLATFORM)/UtestPlatform.cpp include_cpputestdir = $(includedir)/CppUTest include_cpputest_HEADERS = \ include/CppUTest/CommandLineArguments.h \ include/CppUTest/PlatformSpecificFunctions.h \ include/CppUTest/TestMemoryAllocator.h \ include/CppUTest/CommandLineTestRunner.h \ include/CppUTest/PlatformSpecificFunctions_c.h \ include/CppUTest/TestOutput.h \ include/CppUTest/CppUTestConfig.h \ include/CppUTest/SimpleString.h \ include/CppUTest/TestPlugin.h \ include/CppUTest/JUnitTestOutput.h \ include/CppUTest/StandardCLibrary.h \ include/CppUTest/TestRegistry.h \ include/CppUTest/MemoryLeakDetector.h \ include/CppUTest/TestFailure.h \ include/CppUTest/TestResult.h \ include/CppUTest/MemoryLeakDetectorMallocMacros.h \ include/CppUTest/TestFilter.h \ include/CppUTest/TestTestingFixture.h \ include/CppUTest/MemoryLeakDetectorNewMacros.h \ include/CppUTest/TestHarness.h \ include/CppUTest/Utest.h \ include/CppUTest/MemoryLeakWarningPlugin.h \ include/CppUTest/TestHarness_c.h \ include/CppUTest/UtestMacros.h libCppUTestExt_a_CPPFLAGS = $(libCppUTest_a_CPPFLAGS) libCppUTestExt_a_CFLAGS = $(libCppUTest_a_CFLAGS) libCppUTestExt_a_CXXFLAGS = $(libCppUTest_a_CXXFLAGS) libCppUTestExt_a_SOURCES = \ src/CppUTestExt/CodeMemoryReportFormatter.cpp \ src/CppUTestExt/MemoryReporterPlugin.cpp \ src/CppUTestExt/MockFailure.cpp \ src/CppUTestExt/MockSupportPlugin.cpp \ src/CppUTestExt/GTestConvertor.cpp \ src/CppUTestExt/MockActualFunctionCall.cpp \ src/CppUTestExt/MockFunctionCall.cpp \ src/CppUTestExt/MockSupport_c.cpp \ src/CppUTestExt/MemoryReportAllocator.cpp \ src/CppUTestExt/MockExpectedFunctionCall.cpp \ src/CppUTestExt/MockNamedValue.cpp \ src/CppUTestExt/OrderedTest.cpp \ src/CppUTestExt/MemoryReportFormatter.cpp \ src/CppUTestExt/MockExpectedFunctionsList.cpp \ src/CppUTestExt/MockSupport.cpp @INCLUDE_CPPUTEST_EXT_TRUE@include_cpputestextdir = $(includedir)/CppUTestExt @INCLUDE_CPPUTEST_EXT_TRUE@include_cpputestext_HEADERS = \ @INCLUDE_CPPUTEST_EXT_TRUE@ include/CppUTestExt/MemoryReportAllocator.h \ @INCLUDE_CPPUTEST_EXT_TRUE@ include/CppUTestExt/MockExpectedFunctionsList.h \ @INCLUDE_CPPUTEST_EXT_TRUE@ include/CppUTestExt/MockSupportPlugin.h \ @INCLUDE_CPPUTEST_EXT_TRUE@ include/CppUTestExt/MockSupport.h \ @INCLUDE_CPPUTEST_EXT_TRUE@ include/CppUTestExt/MockExpectedFunctionCall.h \ @INCLUDE_CPPUTEST_EXT_TRUE@ include/CppUTestExt/MemoryReportFormatter.h \ @INCLUDE_CPPUTEST_EXT_TRUE@ include/CppUTestExt/MockFailure.h \ @INCLUDE_CPPUTEST_EXT_TRUE@ include/CppUTestExt/MockSupport_c.h \ @INCLUDE_CPPUTEST_EXT_TRUE@ include/CppUTestExt/GMock.h \ @INCLUDE_CPPUTEST_EXT_TRUE@ include/CppUTestExt/MemoryReporterPlugin.h \ @INCLUDE_CPPUTEST_EXT_TRUE@ include/CppUTestExt/MockFunctionCall.h \ @INCLUDE_CPPUTEST_EXT_TRUE@ include/CppUTestExt/OrderedTest.h \ @INCLUDE_CPPUTEST_EXT_TRUE@ include/CppUTestExt/GTestConvertor.h \ @INCLUDE_CPPUTEST_EXT_TRUE@ include/CppUTestExt/MockActualFunctionCall.h \ @INCLUDE_CPPUTEST_EXT_TRUE@ include/CppUTestExt/MockNamedValue.h CppUTestTests_CPPFLAGS = $(libCppUTest_a_CPPFLAGS) CppUTestTests_CFLAGS = $(libCppUTest_a_CFLAGS) CppUTestTests_CXXFLAGS = $(libCppUTest_a_CXXFLAGS) CppUTestTests_LDADD = libCppUTest.a $(CPPUTEST_LDADD) CppUTestTests_LDFLAGS = $(AM_LDFLAGS) $(CPPUTEST_LDFLAGS) $(CPPUTEST_ADDITIONAL_LDFLAGS) CppUTestTests_SOURCES = \ tests/AllTests.cpp \ tests/SetPluginTest.cpp \ tests/CheatSheetTest.cpp \ tests/SimpleStringTest.cpp \ tests/CommandLineArgumentsTest.cpp \ tests/TestFailureTest.cpp \ tests/CommandLineTestRunnerTest.cpp \ tests/TestFilterTest.cpp \ tests/TestHarness_cTest.cpp \ tests/JUnitOutputTest.cpp \ tests/TestHarness_cTestCFile.c \ tests/MemoryLeakDetectorTest.cpp \ tests/TestInstallerTest.cpp \ tests/AllocLetTestFree.c \ tests/MemoryLeakOperatorOverloadsTest.cpp \ tests/TestMemoryAllocatorTest.cpp \ tests/MemoryLeakWarningTest.cpp \ tests/TestOutputTest.cpp \ tests/AllocLetTestFreeTest.cpp \ tests/NullTestTest.cpp \ tests/TestRegistryTest.cpp \ tests/AllocationInCFile.c \ tests/PluginTest.cpp \ tests/TestResultTest.cpp \ tests/PreprocessorTest.cpp \ tests/TestUTestMacro.cpp \ tests/AllocationInCppFile.cpp \ tests/UtestTest.cpp CppUTestExtTests_CPPFLAGS = $(libCppUTestExt_a_CPPFLAGS) CppUTestExtTests_CFLAGS = $(libCppUTestExt_a_CFLAGS) CppUTestExtTests_CXXFLAGS = $(libCppUTestExt_a_CXXFLAGS) CppUTestExtTests_LDADD = libCppUTestExt.a libCppUTest.a $(CPPUTEST_LDADD) CppUTestExtTests_LDFLAGS = $(CppUTestTests_LDFLAGS) CppUTestExtTests_SOURCES = \ tests/CppUTestExt/AllTests.cpp \ tests/CppUTestExt/TestMockActualFunctionCall.cpp \ tests/CppUTestExt/TestMockSupport.cpp \ tests/CppUTestExt/TestCodeMemoryReportFormatter.cpp \ tests/CppUTestExt/TestMockCheatSheet.cpp \ tests/CppUTestExt/TestMockSupport_c.cpp \ tests/CppUTestExt/TestGMock.cpp \ tests/CppUTestExt/TestMockExpectedFunctionCall.cpp \ tests/CppUTestExt/TestMockSupport_cCFile.c \ tests/CppUTestExt/TestGTest.cpp \ tests/CppUTestExt/TestMockExpectedFunctionsList.cpp \ tests/CppUTestExt/TestMemoryReportAllocator.cpp \ tests/CppUTestExt/TestMockFailure.cpp \ tests/CppUTestExt/TestOrderedTest.cpp \ tests/CppUTestExt/TestMemoryReportFormatter.cpp \ tests/CppUTestExt/TestMemoryReporterPlugin.cpp \ tests/CppUTestExt/TestMockPlugin.cpp RUN_CPPUTEST_TESTS = ./$(CPPUTEST_TESTS) -r all: config.h $(MAKE) $(AM_MAKEFLAGS) all-am .SUFFIXES: .SUFFIXES: .c .cpp .lo .o .obj am--refresh: @: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ echo ' cd $(srcdir) && $(AUTOMAKE) --gnu'; \ $(am__cd) $(srcdir) && $(AUTOMAKE) --gnu \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ echo ' $(SHELL) ./config.status'; \ $(SHELL) ./config.status;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) $(SHELL) ./config.status --recheck $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) $(am__cd) $(srcdir) && $(AUTOCONF) $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) $(am__aclocal_m4_deps): config.h: stamp-h1 @if test ! -f $@; then \ rm -f stamp-h1; \ $(MAKE) $(AM_MAKEFLAGS) stamp-h1; \ else :; fi 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: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ($(am__cd) $(top_srcdir) && $(AUTOHEADER)) rm -f stamp-h1 touch $@ distclean-hdr: -rm -f config.h stamp-h1 cpputest.pc: $(top_builddir)/config.status $(srcdir)/cpputest.pc.in cd $(top_builddir) && $(SHELL) ./config.status $@ install-libLIBRARIES: $(lib_LIBRARIES) @$(NORMAL_INSTALL) test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)" @list='$(lib_LIBRARIES)'; test -n "$(libdir)" || list=; \ list2=; for p in $$list; do \ if test -f $$p; then \ list2="$$list2 $$p"; \ else :; fi; \ done; \ test -z "$$list2" || { \ echo " $(INSTALL_DATA) $$list2 '$(DESTDIR)$(libdir)'"; \ $(INSTALL_DATA) $$list2 "$(DESTDIR)$(libdir)" || exit $$?; } @$(POST_INSTALL) @list='$(lib_LIBRARIES)'; test -n "$(libdir)" || list=; \ for p in $$list; do \ if test -f $$p; then \ $(am__strip_dir) \ echo " ( cd '$(DESTDIR)$(libdir)' && $(RANLIB) $$f )"; \ ( cd "$(DESTDIR)$(libdir)" && $(RANLIB) $$f ) || exit $$?; \ else :; fi; \ done uninstall-libLIBRARIES: @$(NORMAL_UNINSTALL) @list='$(lib_LIBRARIES)'; test -n "$(libdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ test -n "$$files" || exit 0; \ echo " ( cd '$(DESTDIR)$(libdir)' && rm -f "$$files" )"; \ cd "$(DESTDIR)$(libdir)" && rm -f $$files clean-libLIBRARIES: -test -z "$(lib_LIBRARIES)" || rm -f $(lib_LIBRARIES) libCppUTest.a: $(libCppUTest_a_OBJECTS) $(libCppUTest_a_DEPENDENCIES) $(AM_V_at)-rm -f libCppUTest.a $(AM_V_AR)$(libCppUTest_a_AR) libCppUTest.a $(libCppUTest_a_OBJECTS) $(libCppUTest_a_LIBADD) $(AM_V_at)$(RANLIB) libCppUTest.a libCppUTestExt.a: $(libCppUTestExt_a_OBJECTS) $(libCppUTestExt_a_DEPENDENCIES) $(AM_V_at)-rm -f libCppUTestExt.a $(AM_V_AR)$(libCppUTestExt_a_AR) libCppUTestExt.a $(libCppUTestExt_a_OBJECTS) $(libCppUTestExt_a_LIBADD) $(AM_V_at)$(RANLIB) libCppUTestExt.a clean-checkPROGRAMS: @list='$(check_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 CppUTestExtTests$(EXEEXT): $(CppUTestExtTests_OBJECTS) $(CppUTestExtTests_DEPENDENCIES) @rm -f CppUTestExtTests$(EXEEXT) $(AM_V_CXXLD)$(CppUTestExtTests_LINK) $(CppUTestExtTests_OBJECTS) $(CppUTestExtTests_LDADD) $(LIBS) CppUTestTests$(EXEEXT): $(CppUTestTests_OBJECTS) $(CppUTestTests_DEPENDENCIES) @rm -f CppUTestTests$(EXEEXT) $(AM_V_CXXLD)$(CppUTestTests_LINK) $(CppUTestTests_OBJECTS) $(CppUTestTests_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CppUTestExtTests-AllTests.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CppUTestExtTests-TestCodeMemoryReportFormatter.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CppUTestExtTests-TestGMock.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CppUTestExtTests-TestGTest.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CppUTestExtTests-TestMemoryReportAllocator.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CppUTestExtTests-TestMemoryReportFormatter.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CppUTestExtTests-TestMemoryReporterPlugin.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CppUTestExtTests-TestMockActualFunctionCall.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CppUTestExtTests-TestMockCheatSheet.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CppUTestExtTests-TestMockExpectedFunctionCall.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CppUTestExtTests-TestMockExpectedFunctionsList.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CppUTestExtTests-TestMockFailure.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CppUTestExtTests-TestMockPlugin.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CppUTestExtTests-TestMockSupport.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CppUTestExtTests-TestMockSupport_c.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CppUTestExtTests-TestMockSupport_cCFile.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CppUTestExtTests-TestOrderedTest.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CppUTestTests-AllTests.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CppUTestTests-AllocLetTestFree.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CppUTestTests-AllocLetTestFreeTest.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CppUTestTests-AllocationInCFile.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CppUTestTests-AllocationInCppFile.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CppUTestTests-CheatSheetTest.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CppUTestTests-CommandLineArgumentsTest.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CppUTestTests-CommandLineTestRunnerTest.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CppUTestTests-JUnitOutputTest.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CppUTestTests-MemoryLeakDetectorTest.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CppUTestTests-MemoryLeakOperatorOverloadsTest.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CppUTestTests-MemoryLeakWarningTest.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CppUTestTests-NullTestTest.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CppUTestTests-PluginTest.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CppUTestTests-PreprocessorTest.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CppUTestTests-SetPluginTest.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CppUTestTests-SimpleStringTest.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CppUTestTests-TestFailureTest.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CppUTestTests-TestFilterTest.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CppUTestTests-TestHarness_cTest.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CppUTestTests-TestHarness_cTestCFile.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CppUTestTests-TestInstallerTest.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CppUTestTests-TestMemoryAllocatorTest.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CppUTestTests-TestOutputTest.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CppUTestTests-TestRegistryTest.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CppUTestTests-TestResultTest.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CppUTestTests-TestUTestMacro.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CppUTestTests-UtestTest.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libCppUTestExt_a-CodeMemoryReportFormatter.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libCppUTestExt_a-GTestConvertor.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libCppUTestExt_a-MemoryReportAllocator.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libCppUTestExt_a-MemoryReportFormatter.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libCppUTestExt_a-MemoryReporterPlugin.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libCppUTestExt_a-MockActualFunctionCall.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libCppUTestExt_a-MockExpectedFunctionCall.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libCppUTestExt_a-MockExpectedFunctionsList.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libCppUTestExt_a-MockFailure.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libCppUTestExt_a-MockFunctionCall.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libCppUTestExt_a-MockNamedValue.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libCppUTestExt_a-MockSupport.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libCppUTestExt_a-MockSupportPlugin.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libCppUTestExt_a-MockSupport_c.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libCppUTestExt_a-OrderedTest.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libCppUTest_a-CommandLineArguments.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libCppUTest_a-CommandLineTestRunner.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libCppUTest_a-JUnitTestOutput.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libCppUTest_a-MemoryLeakDetector.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libCppUTest_a-MemoryLeakWarningPlugin.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libCppUTest_a-SimpleString.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libCppUTest_a-TestFailure.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libCppUTest_a-TestFilter.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libCppUTest_a-TestHarness_c.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libCppUTest_a-TestMemoryAllocator.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libCppUTest_a-TestOutput.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libCppUTest_a-TestPlugin.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libCppUTest_a-TestRegistry.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libCppUTest_a-TestResult.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libCppUTest_a-Utest.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libCppUTest_a-UtestPlatform.Po@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< CppUTestExtTests-TestMockSupport_cCFile.o: tests/CppUTestExt/TestMockSupport_cCFile.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CFLAGS) $(CFLAGS) -MT CppUTestExtTests-TestMockSupport_cCFile.o -MD -MP -MF $(DEPDIR)/CppUTestExtTests-TestMockSupport_cCFile.Tpo -c -o CppUTestExtTests-TestMockSupport_cCFile.o `test -f 'tests/CppUTestExt/TestMockSupport_cCFile.c' || echo '$(srcdir)/'`tests/CppUTestExt/TestMockSupport_cCFile.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestExtTests-TestMockSupport_cCFile.Tpo $(DEPDIR)/CppUTestExtTests-TestMockSupport_cCFile.Po @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/CppUTestExt/TestMockSupport_cCFile.c' object='CppUTestExtTests-TestMockSupport_cCFile.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CFLAGS) $(CFLAGS) -c -o CppUTestExtTests-TestMockSupport_cCFile.o `test -f 'tests/CppUTestExt/TestMockSupport_cCFile.c' || echo '$(srcdir)/'`tests/CppUTestExt/TestMockSupport_cCFile.c CppUTestExtTests-TestMockSupport_cCFile.obj: tests/CppUTestExt/TestMockSupport_cCFile.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CFLAGS) $(CFLAGS) -MT CppUTestExtTests-TestMockSupport_cCFile.obj -MD -MP -MF $(DEPDIR)/CppUTestExtTests-TestMockSupport_cCFile.Tpo -c -o CppUTestExtTests-TestMockSupport_cCFile.obj `if test -f 'tests/CppUTestExt/TestMockSupport_cCFile.c'; then $(CYGPATH_W) 'tests/CppUTestExt/TestMockSupport_cCFile.c'; else $(CYGPATH_W) '$(srcdir)/tests/CppUTestExt/TestMockSupport_cCFile.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestExtTests-TestMockSupport_cCFile.Tpo $(DEPDIR)/CppUTestExtTests-TestMockSupport_cCFile.Po @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/CppUTestExt/TestMockSupport_cCFile.c' object='CppUTestExtTests-TestMockSupport_cCFile.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CFLAGS) $(CFLAGS) -c -o CppUTestExtTests-TestMockSupport_cCFile.obj `if test -f 'tests/CppUTestExt/TestMockSupport_cCFile.c'; then $(CYGPATH_W) 'tests/CppUTestExt/TestMockSupport_cCFile.c'; else $(CYGPATH_W) '$(srcdir)/tests/CppUTestExt/TestMockSupport_cCFile.c'; fi` CppUTestTests-TestHarness_cTestCFile.o: tests/TestHarness_cTestCFile.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CFLAGS) $(CFLAGS) -MT CppUTestTests-TestHarness_cTestCFile.o -MD -MP -MF $(DEPDIR)/CppUTestTests-TestHarness_cTestCFile.Tpo -c -o CppUTestTests-TestHarness_cTestCFile.o `test -f 'tests/TestHarness_cTestCFile.c' || echo '$(srcdir)/'`tests/TestHarness_cTestCFile.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestTests-TestHarness_cTestCFile.Tpo $(DEPDIR)/CppUTestTests-TestHarness_cTestCFile.Po @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/TestHarness_cTestCFile.c' object='CppUTestTests-TestHarness_cTestCFile.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CFLAGS) $(CFLAGS) -c -o CppUTestTests-TestHarness_cTestCFile.o `test -f 'tests/TestHarness_cTestCFile.c' || echo '$(srcdir)/'`tests/TestHarness_cTestCFile.c CppUTestTests-TestHarness_cTestCFile.obj: tests/TestHarness_cTestCFile.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CFLAGS) $(CFLAGS) -MT CppUTestTests-TestHarness_cTestCFile.obj -MD -MP -MF $(DEPDIR)/CppUTestTests-TestHarness_cTestCFile.Tpo -c -o CppUTestTests-TestHarness_cTestCFile.obj `if test -f 'tests/TestHarness_cTestCFile.c'; then $(CYGPATH_W) 'tests/TestHarness_cTestCFile.c'; else $(CYGPATH_W) '$(srcdir)/tests/TestHarness_cTestCFile.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestTests-TestHarness_cTestCFile.Tpo $(DEPDIR)/CppUTestTests-TestHarness_cTestCFile.Po @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/TestHarness_cTestCFile.c' object='CppUTestTests-TestHarness_cTestCFile.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CFLAGS) $(CFLAGS) -c -o CppUTestTests-TestHarness_cTestCFile.obj `if test -f 'tests/TestHarness_cTestCFile.c'; then $(CYGPATH_W) 'tests/TestHarness_cTestCFile.c'; else $(CYGPATH_W) '$(srcdir)/tests/TestHarness_cTestCFile.c'; fi` CppUTestTests-AllocLetTestFree.o: tests/AllocLetTestFree.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CFLAGS) $(CFLAGS) -MT CppUTestTests-AllocLetTestFree.o -MD -MP -MF $(DEPDIR)/CppUTestTests-AllocLetTestFree.Tpo -c -o CppUTestTests-AllocLetTestFree.o `test -f 'tests/AllocLetTestFree.c' || echo '$(srcdir)/'`tests/AllocLetTestFree.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestTests-AllocLetTestFree.Tpo $(DEPDIR)/CppUTestTests-AllocLetTestFree.Po @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/AllocLetTestFree.c' object='CppUTestTests-AllocLetTestFree.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CFLAGS) $(CFLAGS) -c -o CppUTestTests-AllocLetTestFree.o `test -f 'tests/AllocLetTestFree.c' || echo '$(srcdir)/'`tests/AllocLetTestFree.c CppUTestTests-AllocLetTestFree.obj: tests/AllocLetTestFree.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CFLAGS) $(CFLAGS) -MT CppUTestTests-AllocLetTestFree.obj -MD -MP -MF $(DEPDIR)/CppUTestTests-AllocLetTestFree.Tpo -c -o CppUTestTests-AllocLetTestFree.obj `if test -f 'tests/AllocLetTestFree.c'; then $(CYGPATH_W) 'tests/AllocLetTestFree.c'; else $(CYGPATH_W) '$(srcdir)/tests/AllocLetTestFree.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestTests-AllocLetTestFree.Tpo $(DEPDIR)/CppUTestTests-AllocLetTestFree.Po @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/AllocLetTestFree.c' object='CppUTestTests-AllocLetTestFree.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CFLAGS) $(CFLAGS) -c -o CppUTestTests-AllocLetTestFree.obj `if test -f 'tests/AllocLetTestFree.c'; then $(CYGPATH_W) 'tests/AllocLetTestFree.c'; else $(CYGPATH_W) '$(srcdir)/tests/AllocLetTestFree.c'; fi` CppUTestTests-AllocationInCFile.o: tests/AllocationInCFile.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CFLAGS) $(CFLAGS) -MT CppUTestTests-AllocationInCFile.o -MD -MP -MF $(DEPDIR)/CppUTestTests-AllocationInCFile.Tpo -c -o CppUTestTests-AllocationInCFile.o `test -f 'tests/AllocationInCFile.c' || echo '$(srcdir)/'`tests/AllocationInCFile.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestTests-AllocationInCFile.Tpo $(DEPDIR)/CppUTestTests-AllocationInCFile.Po @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/AllocationInCFile.c' object='CppUTestTests-AllocationInCFile.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CFLAGS) $(CFLAGS) -c -o CppUTestTests-AllocationInCFile.o `test -f 'tests/AllocationInCFile.c' || echo '$(srcdir)/'`tests/AllocationInCFile.c CppUTestTests-AllocationInCFile.obj: tests/AllocationInCFile.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CFLAGS) $(CFLAGS) -MT CppUTestTests-AllocationInCFile.obj -MD -MP -MF $(DEPDIR)/CppUTestTests-AllocationInCFile.Tpo -c -o CppUTestTests-AllocationInCFile.obj `if test -f 'tests/AllocationInCFile.c'; then $(CYGPATH_W) 'tests/AllocationInCFile.c'; else $(CYGPATH_W) '$(srcdir)/tests/AllocationInCFile.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestTests-AllocationInCFile.Tpo $(DEPDIR)/CppUTestTests-AllocationInCFile.Po @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/AllocationInCFile.c' object='CppUTestTests-AllocationInCFile.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CFLAGS) $(CFLAGS) -c -o CppUTestTests-AllocationInCFile.obj `if test -f 'tests/AllocationInCFile.c'; then $(CYGPATH_W) 'tests/AllocationInCFile.c'; else $(CYGPATH_W) '$(srcdir)/tests/AllocationInCFile.c'; fi` .cpp.o: @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< .cpp.obj: @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< libCppUTest_a-CommandLineArguments.o: src/CppUTest/CommandLineArguments.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTest_a-CommandLineArguments.o -MD -MP -MF $(DEPDIR)/libCppUTest_a-CommandLineArguments.Tpo -c -o libCppUTest_a-CommandLineArguments.o `test -f 'src/CppUTest/CommandLineArguments.cpp' || echo '$(srcdir)/'`src/CppUTest/CommandLineArguments.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTest_a-CommandLineArguments.Tpo $(DEPDIR)/libCppUTest_a-CommandLineArguments.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/CppUTest/CommandLineArguments.cpp' object='libCppUTest_a-CommandLineArguments.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTest_a-CommandLineArguments.o `test -f 'src/CppUTest/CommandLineArguments.cpp' || echo '$(srcdir)/'`src/CppUTest/CommandLineArguments.cpp libCppUTest_a-CommandLineArguments.obj: src/CppUTest/CommandLineArguments.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTest_a-CommandLineArguments.obj -MD -MP -MF $(DEPDIR)/libCppUTest_a-CommandLineArguments.Tpo -c -o libCppUTest_a-CommandLineArguments.obj `if test -f 'src/CppUTest/CommandLineArguments.cpp'; then $(CYGPATH_W) 'src/CppUTest/CommandLineArguments.cpp'; else $(CYGPATH_W) '$(srcdir)/src/CppUTest/CommandLineArguments.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTest_a-CommandLineArguments.Tpo $(DEPDIR)/libCppUTest_a-CommandLineArguments.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/CppUTest/CommandLineArguments.cpp' object='libCppUTest_a-CommandLineArguments.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTest_a-CommandLineArguments.obj `if test -f 'src/CppUTest/CommandLineArguments.cpp'; then $(CYGPATH_W) 'src/CppUTest/CommandLineArguments.cpp'; else $(CYGPATH_W) '$(srcdir)/src/CppUTest/CommandLineArguments.cpp'; fi` libCppUTest_a-MemoryLeakWarningPlugin.o: src/CppUTest/MemoryLeakWarningPlugin.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTest_a-MemoryLeakWarningPlugin.o -MD -MP -MF $(DEPDIR)/libCppUTest_a-MemoryLeakWarningPlugin.Tpo -c -o libCppUTest_a-MemoryLeakWarningPlugin.o `test -f 'src/CppUTest/MemoryLeakWarningPlugin.cpp' || echo '$(srcdir)/'`src/CppUTest/MemoryLeakWarningPlugin.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTest_a-MemoryLeakWarningPlugin.Tpo $(DEPDIR)/libCppUTest_a-MemoryLeakWarningPlugin.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/CppUTest/MemoryLeakWarningPlugin.cpp' object='libCppUTest_a-MemoryLeakWarningPlugin.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTest_a-MemoryLeakWarningPlugin.o `test -f 'src/CppUTest/MemoryLeakWarningPlugin.cpp' || echo '$(srcdir)/'`src/CppUTest/MemoryLeakWarningPlugin.cpp libCppUTest_a-MemoryLeakWarningPlugin.obj: src/CppUTest/MemoryLeakWarningPlugin.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTest_a-MemoryLeakWarningPlugin.obj -MD -MP -MF $(DEPDIR)/libCppUTest_a-MemoryLeakWarningPlugin.Tpo -c -o libCppUTest_a-MemoryLeakWarningPlugin.obj `if test -f 'src/CppUTest/MemoryLeakWarningPlugin.cpp'; then $(CYGPATH_W) 'src/CppUTest/MemoryLeakWarningPlugin.cpp'; else $(CYGPATH_W) '$(srcdir)/src/CppUTest/MemoryLeakWarningPlugin.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTest_a-MemoryLeakWarningPlugin.Tpo $(DEPDIR)/libCppUTest_a-MemoryLeakWarningPlugin.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/CppUTest/MemoryLeakWarningPlugin.cpp' object='libCppUTest_a-MemoryLeakWarningPlugin.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTest_a-MemoryLeakWarningPlugin.obj `if test -f 'src/CppUTest/MemoryLeakWarningPlugin.cpp'; then $(CYGPATH_W) 'src/CppUTest/MemoryLeakWarningPlugin.cpp'; else $(CYGPATH_W) '$(srcdir)/src/CppUTest/MemoryLeakWarningPlugin.cpp'; fi` libCppUTest_a-TestHarness_c.o: src/CppUTest/TestHarness_c.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTest_a-TestHarness_c.o -MD -MP -MF $(DEPDIR)/libCppUTest_a-TestHarness_c.Tpo -c -o libCppUTest_a-TestHarness_c.o `test -f 'src/CppUTest/TestHarness_c.cpp' || echo '$(srcdir)/'`src/CppUTest/TestHarness_c.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTest_a-TestHarness_c.Tpo $(DEPDIR)/libCppUTest_a-TestHarness_c.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/CppUTest/TestHarness_c.cpp' object='libCppUTest_a-TestHarness_c.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTest_a-TestHarness_c.o `test -f 'src/CppUTest/TestHarness_c.cpp' || echo '$(srcdir)/'`src/CppUTest/TestHarness_c.cpp libCppUTest_a-TestHarness_c.obj: src/CppUTest/TestHarness_c.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTest_a-TestHarness_c.obj -MD -MP -MF $(DEPDIR)/libCppUTest_a-TestHarness_c.Tpo -c -o libCppUTest_a-TestHarness_c.obj `if test -f 'src/CppUTest/TestHarness_c.cpp'; then $(CYGPATH_W) 'src/CppUTest/TestHarness_c.cpp'; else $(CYGPATH_W) '$(srcdir)/src/CppUTest/TestHarness_c.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTest_a-TestHarness_c.Tpo $(DEPDIR)/libCppUTest_a-TestHarness_c.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/CppUTest/TestHarness_c.cpp' object='libCppUTest_a-TestHarness_c.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTest_a-TestHarness_c.obj `if test -f 'src/CppUTest/TestHarness_c.cpp'; then $(CYGPATH_W) 'src/CppUTest/TestHarness_c.cpp'; else $(CYGPATH_W) '$(srcdir)/src/CppUTest/TestHarness_c.cpp'; fi` libCppUTest_a-TestRegistry.o: src/CppUTest/TestRegistry.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTest_a-TestRegistry.o -MD -MP -MF $(DEPDIR)/libCppUTest_a-TestRegistry.Tpo -c -o libCppUTest_a-TestRegistry.o `test -f 'src/CppUTest/TestRegistry.cpp' || echo '$(srcdir)/'`src/CppUTest/TestRegistry.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTest_a-TestRegistry.Tpo $(DEPDIR)/libCppUTest_a-TestRegistry.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/CppUTest/TestRegistry.cpp' object='libCppUTest_a-TestRegistry.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTest_a-TestRegistry.o `test -f 'src/CppUTest/TestRegistry.cpp' || echo '$(srcdir)/'`src/CppUTest/TestRegistry.cpp libCppUTest_a-TestRegistry.obj: src/CppUTest/TestRegistry.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTest_a-TestRegistry.obj -MD -MP -MF $(DEPDIR)/libCppUTest_a-TestRegistry.Tpo -c -o libCppUTest_a-TestRegistry.obj `if test -f 'src/CppUTest/TestRegistry.cpp'; then $(CYGPATH_W) 'src/CppUTest/TestRegistry.cpp'; else $(CYGPATH_W) '$(srcdir)/src/CppUTest/TestRegistry.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTest_a-TestRegistry.Tpo $(DEPDIR)/libCppUTest_a-TestRegistry.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/CppUTest/TestRegistry.cpp' object='libCppUTest_a-TestRegistry.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTest_a-TestRegistry.obj `if test -f 'src/CppUTest/TestRegistry.cpp'; then $(CYGPATH_W) 'src/CppUTest/TestRegistry.cpp'; else $(CYGPATH_W) '$(srcdir)/src/CppUTest/TestRegistry.cpp'; fi` libCppUTest_a-CommandLineTestRunner.o: src/CppUTest/CommandLineTestRunner.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTest_a-CommandLineTestRunner.o -MD -MP -MF $(DEPDIR)/libCppUTest_a-CommandLineTestRunner.Tpo -c -o libCppUTest_a-CommandLineTestRunner.o `test -f 'src/CppUTest/CommandLineTestRunner.cpp' || echo '$(srcdir)/'`src/CppUTest/CommandLineTestRunner.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTest_a-CommandLineTestRunner.Tpo $(DEPDIR)/libCppUTest_a-CommandLineTestRunner.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/CppUTest/CommandLineTestRunner.cpp' object='libCppUTest_a-CommandLineTestRunner.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTest_a-CommandLineTestRunner.o `test -f 'src/CppUTest/CommandLineTestRunner.cpp' || echo '$(srcdir)/'`src/CppUTest/CommandLineTestRunner.cpp libCppUTest_a-CommandLineTestRunner.obj: src/CppUTest/CommandLineTestRunner.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTest_a-CommandLineTestRunner.obj -MD -MP -MF $(DEPDIR)/libCppUTest_a-CommandLineTestRunner.Tpo -c -o libCppUTest_a-CommandLineTestRunner.obj `if test -f 'src/CppUTest/CommandLineTestRunner.cpp'; then $(CYGPATH_W) 'src/CppUTest/CommandLineTestRunner.cpp'; else $(CYGPATH_W) '$(srcdir)/src/CppUTest/CommandLineTestRunner.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTest_a-CommandLineTestRunner.Tpo $(DEPDIR)/libCppUTest_a-CommandLineTestRunner.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/CppUTest/CommandLineTestRunner.cpp' object='libCppUTest_a-CommandLineTestRunner.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTest_a-CommandLineTestRunner.obj `if test -f 'src/CppUTest/CommandLineTestRunner.cpp'; then $(CYGPATH_W) 'src/CppUTest/CommandLineTestRunner.cpp'; else $(CYGPATH_W) '$(srcdir)/src/CppUTest/CommandLineTestRunner.cpp'; fi` libCppUTest_a-SimpleString.o: src/CppUTest/SimpleString.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTest_a-SimpleString.o -MD -MP -MF $(DEPDIR)/libCppUTest_a-SimpleString.Tpo -c -o libCppUTest_a-SimpleString.o `test -f 'src/CppUTest/SimpleString.cpp' || echo '$(srcdir)/'`src/CppUTest/SimpleString.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTest_a-SimpleString.Tpo $(DEPDIR)/libCppUTest_a-SimpleString.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/CppUTest/SimpleString.cpp' object='libCppUTest_a-SimpleString.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTest_a-SimpleString.o `test -f 'src/CppUTest/SimpleString.cpp' || echo '$(srcdir)/'`src/CppUTest/SimpleString.cpp libCppUTest_a-SimpleString.obj: src/CppUTest/SimpleString.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTest_a-SimpleString.obj -MD -MP -MF $(DEPDIR)/libCppUTest_a-SimpleString.Tpo -c -o libCppUTest_a-SimpleString.obj `if test -f 'src/CppUTest/SimpleString.cpp'; then $(CYGPATH_W) 'src/CppUTest/SimpleString.cpp'; else $(CYGPATH_W) '$(srcdir)/src/CppUTest/SimpleString.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTest_a-SimpleString.Tpo $(DEPDIR)/libCppUTest_a-SimpleString.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/CppUTest/SimpleString.cpp' object='libCppUTest_a-SimpleString.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTest_a-SimpleString.obj `if test -f 'src/CppUTest/SimpleString.cpp'; then $(CYGPATH_W) 'src/CppUTest/SimpleString.cpp'; else $(CYGPATH_W) '$(srcdir)/src/CppUTest/SimpleString.cpp'; fi` libCppUTest_a-TestMemoryAllocator.o: src/CppUTest/TestMemoryAllocator.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTest_a-TestMemoryAllocator.o -MD -MP -MF $(DEPDIR)/libCppUTest_a-TestMemoryAllocator.Tpo -c -o libCppUTest_a-TestMemoryAllocator.o `test -f 'src/CppUTest/TestMemoryAllocator.cpp' || echo '$(srcdir)/'`src/CppUTest/TestMemoryAllocator.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTest_a-TestMemoryAllocator.Tpo $(DEPDIR)/libCppUTest_a-TestMemoryAllocator.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/CppUTest/TestMemoryAllocator.cpp' object='libCppUTest_a-TestMemoryAllocator.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTest_a-TestMemoryAllocator.o `test -f 'src/CppUTest/TestMemoryAllocator.cpp' || echo '$(srcdir)/'`src/CppUTest/TestMemoryAllocator.cpp libCppUTest_a-TestMemoryAllocator.obj: src/CppUTest/TestMemoryAllocator.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTest_a-TestMemoryAllocator.obj -MD -MP -MF $(DEPDIR)/libCppUTest_a-TestMemoryAllocator.Tpo -c -o libCppUTest_a-TestMemoryAllocator.obj `if test -f 'src/CppUTest/TestMemoryAllocator.cpp'; then $(CYGPATH_W) 'src/CppUTest/TestMemoryAllocator.cpp'; else $(CYGPATH_W) '$(srcdir)/src/CppUTest/TestMemoryAllocator.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTest_a-TestMemoryAllocator.Tpo $(DEPDIR)/libCppUTest_a-TestMemoryAllocator.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/CppUTest/TestMemoryAllocator.cpp' object='libCppUTest_a-TestMemoryAllocator.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTest_a-TestMemoryAllocator.obj `if test -f 'src/CppUTest/TestMemoryAllocator.cpp'; then $(CYGPATH_W) 'src/CppUTest/TestMemoryAllocator.cpp'; else $(CYGPATH_W) '$(srcdir)/src/CppUTest/TestMemoryAllocator.cpp'; fi` libCppUTest_a-TestResult.o: src/CppUTest/TestResult.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTest_a-TestResult.o -MD -MP -MF $(DEPDIR)/libCppUTest_a-TestResult.Tpo -c -o libCppUTest_a-TestResult.o `test -f 'src/CppUTest/TestResult.cpp' || echo '$(srcdir)/'`src/CppUTest/TestResult.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTest_a-TestResult.Tpo $(DEPDIR)/libCppUTest_a-TestResult.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/CppUTest/TestResult.cpp' object='libCppUTest_a-TestResult.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTest_a-TestResult.o `test -f 'src/CppUTest/TestResult.cpp' || echo '$(srcdir)/'`src/CppUTest/TestResult.cpp libCppUTest_a-TestResult.obj: src/CppUTest/TestResult.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTest_a-TestResult.obj -MD -MP -MF $(DEPDIR)/libCppUTest_a-TestResult.Tpo -c -o libCppUTest_a-TestResult.obj `if test -f 'src/CppUTest/TestResult.cpp'; then $(CYGPATH_W) 'src/CppUTest/TestResult.cpp'; else $(CYGPATH_W) '$(srcdir)/src/CppUTest/TestResult.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTest_a-TestResult.Tpo $(DEPDIR)/libCppUTest_a-TestResult.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/CppUTest/TestResult.cpp' object='libCppUTest_a-TestResult.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTest_a-TestResult.obj `if test -f 'src/CppUTest/TestResult.cpp'; then $(CYGPATH_W) 'src/CppUTest/TestResult.cpp'; else $(CYGPATH_W) '$(srcdir)/src/CppUTest/TestResult.cpp'; fi` libCppUTest_a-JUnitTestOutput.o: src/CppUTest/JUnitTestOutput.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTest_a-JUnitTestOutput.o -MD -MP -MF $(DEPDIR)/libCppUTest_a-JUnitTestOutput.Tpo -c -o libCppUTest_a-JUnitTestOutput.o `test -f 'src/CppUTest/JUnitTestOutput.cpp' || echo '$(srcdir)/'`src/CppUTest/JUnitTestOutput.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTest_a-JUnitTestOutput.Tpo $(DEPDIR)/libCppUTest_a-JUnitTestOutput.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/CppUTest/JUnitTestOutput.cpp' object='libCppUTest_a-JUnitTestOutput.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTest_a-JUnitTestOutput.o `test -f 'src/CppUTest/JUnitTestOutput.cpp' || echo '$(srcdir)/'`src/CppUTest/JUnitTestOutput.cpp libCppUTest_a-JUnitTestOutput.obj: src/CppUTest/JUnitTestOutput.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTest_a-JUnitTestOutput.obj -MD -MP -MF $(DEPDIR)/libCppUTest_a-JUnitTestOutput.Tpo -c -o libCppUTest_a-JUnitTestOutput.obj `if test -f 'src/CppUTest/JUnitTestOutput.cpp'; then $(CYGPATH_W) 'src/CppUTest/JUnitTestOutput.cpp'; else $(CYGPATH_W) '$(srcdir)/src/CppUTest/JUnitTestOutput.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTest_a-JUnitTestOutput.Tpo $(DEPDIR)/libCppUTest_a-JUnitTestOutput.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/CppUTest/JUnitTestOutput.cpp' object='libCppUTest_a-JUnitTestOutput.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTest_a-JUnitTestOutput.obj `if test -f 'src/CppUTest/JUnitTestOutput.cpp'; then $(CYGPATH_W) 'src/CppUTest/JUnitTestOutput.cpp'; else $(CYGPATH_W) '$(srcdir)/src/CppUTest/JUnitTestOutput.cpp'; fi` libCppUTest_a-TestFailure.o: src/CppUTest/TestFailure.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTest_a-TestFailure.o -MD -MP -MF $(DEPDIR)/libCppUTest_a-TestFailure.Tpo -c -o libCppUTest_a-TestFailure.o `test -f 'src/CppUTest/TestFailure.cpp' || echo '$(srcdir)/'`src/CppUTest/TestFailure.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTest_a-TestFailure.Tpo $(DEPDIR)/libCppUTest_a-TestFailure.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/CppUTest/TestFailure.cpp' object='libCppUTest_a-TestFailure.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTest_a-TestFailure.o `test -f 'src/CppUTest/TestFailure.cpp' || echo '$(srcdir)/'`src/CppUTest/TestFailure.cpp libCppUTest_a-TestFailure.obj: src/CppUTest/TestFailure.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTest_a-TestFailure.obj -MD -MP -MF $(DEPDIR)/libCppUTest_a-TestFailure.Tpo -c -o libCppUTest_a-TestFailure.obj `if test -f 'src/CppUTest/TestFailure.cpp'; then $(CYGPATH_W) 'src/CppUTest/TestFailure.cpp'; else $(CYGPATH_W) '$(srcdir)/src/CppUTest/TestFailure.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTest_a-TestFailure.Tpo $(DEPDIR)/libCppUTest_a-TestFailure.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/CppUTest/TestFailure.cpp' object='libCppUTest_a-TestFailure.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTest_a-TestFailure.obj `if test -f 'src/CppUTest/TestFailure.cpp'; then $(CYGPATH_W) 'src/CppUTest/TestFailure.cpp'; else $(CYGPATH_W) '$(srcdir)/src/CppUTest/TestFailure.cpp'; fi` libCppUTest_a-TestOutput.o: src/CppUTest/TestOutput.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTest_a-TestOutput.o -MD -MP -MF $(DEPDIR)/libCppUTest_a-TestOutput.Tpo -c -o libCppUTest_a-TestOutput.o `test -f 'src/CppUTest/TestOutput.cpp' || echo '$(srcdir)/'`src/CppUTest/TestOutput.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTest_a-TestOutput.Tpo $(DEPDIR)/libCppUTest_a-TestOutput.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/CppUTest/TestOutput.cpp' object='libCppUTest_a-TestOutput.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTest_a-TestOutput.o `test -f 'src/CppUTest/TestOutput.cpp' || echo '$(srcdir)/'`src/CppUTest/TestOutput.cpp libCppUTest_a-TestOutput.obj: src/CppUTest/TestOutput.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTest_a-TestOutput.obj -MD -MP -MF $(DEPDIR)/libCppUTest_a-TestOutput.Tpo -c -o libCppUTest_a-TestOutput.obj `if test -f 'src/CppUTest/TestOutput.cpp'; then $(CYGPATH_W) 'src/CppUTest/TestOutput.cpp'; else $(CYGPATH_W) '$(srcdir)/src/CppUTest/TestOutput.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTest_a-TestOutput.Tpo $(DEPDIR)/libCppUTest_a-TestOutput.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/CppUTest/TestOutput.cpp' object='libCppUTest_a-TestOutput.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTest_a-TestOutput.obj `if test -f 'src/CppUTest/TestOutput.cpp'; then $(CYGPATH_W) 'src/CppUTest/TestOutput.cpp'; else $(CYGPATH_W) '$(srcdir)/src/CppUTest/TestOutput.cpp'; fi` libCppUTest_a-MemoryLeakDetector.o: src/CppUTest/MemoryLeakDetector.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTest_a-MemoryLeakDetector.o -MD -MP -MF $(DEPDIR)/libCppUTest_a-MemoryLeakDetector.Tpo -c -o libCppUTest_a-MemoryLeakDetector.o `test -f 'src/CppUTest/MemoryLeakDetector.cpp' || echo '$(srcdir)/'`src/CppUTest/MemoryLeakDetector.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTest_a-MemoryLeakDetector.Tpo $(DEPDIR)/libCppUTest_a-MemoryLeakDetector.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/CppUTest/MemoryLeakDetector.cpp' object='libCppUTest_a-MemoryLeakDetector.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTest_a-MemoryLeakDetector.o `test -f 'src/CppUTest/MemoryLeakDetector.cpp' || echo '$(srcdir)/'`src/CppUTest/MemoryLeakDetector.cpp libCppUTest_a-MemoryLeakDetector.obj: src/CppUTest/MemoryLeakDetector.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTest_a-MemoryLeakDetector.obj -MD -MP -MF $(DEPDIR)/libCppUTest_a-MemoryLeakDetector.Tpo -c -o libCppUTest_a-MemoryLeakDetector.obj `if test -f 'src/CppUTest/MemoryLeakDetector.cpp'; then $(CYGPATH_W) 'src/CppUTest/MemoryLeakDetector.cpp'; else $(CYGPATH_W) '$(srcdir)/src/CppUTest/MemoryLeakDetector.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTest_a-MemoryLeakDetector.Tpo $(DEPDIR)/libCppUTest_a-MemoryLeakDetector.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/CppUTest/MemoryLeakDetector.cpp' object='libCppUTest_a-MemoryLeakDetector.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTest_a-MemoryLeakDetector.obj `if test -f 'src/CppUTest/MemoryLeakDetector.cpp'; then $(CYGPATH_W) 'src/CppUTest/MemoryLeakDetector.cpp'; else $(CYGPATH_W) '$(srcdir)/src/CppUTest/MemoryLeakDetector.cpp'; fi` libCppUTest_a-TestFilter.o: src/CppUTest/TestFilter.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTest_a-TestFilter.o -MD -MP -MF $(DEPDIR)/libCppUTest_a-TestFilter.Tpo -c -o libCppUTest_a-TestFilter.o `test -f 'src/CppUTest/TestFilter.cpp' || echo '$(srcdir)/'`src/CppUTest/TestFilter.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTest_a-TestFilter.Tpo $(DEPDIR)/libCppUTest_a-TestFilter.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/CppUTest/TestFilter.cpp' object='libCppUTest_a-TestFilter.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTest_a-TestFilter.o `test -f 'src/CppUTest/TestFilter.cpp' || echo '$(srcdir)/'`src/CppUTest/TestFilter.cpp libCppUTest_a-TestFilter.obj: src/CppUTest/TestFilter.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTest_a-TestFilter.obj -MD -MP -MF $(DEPDIR)/libCppUTest_a-TestFilter.Tpo -c -o libCppUTest_a-TestFilter.obj `if test -f 'src/CppUTest/TestFilter.cpp'; then $(CYGPATH_W) 'src/CppUTest/TestFilter.cpp'; else $(CYGPATH_W) '$(srcdir)/src/CppUTest/TestFilter.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTest_a-TestFilter.Tpo $(DEPDIR)/libCppUTest_a-TestFilter.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/CppUTest/TestFilter.cpp' object='libCppUTest_a-TestFilter.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTest_a-TestFilter.obj `if test -f 'src/CppUTest/TestFilter.cpp'; then $(CYGPATH_W) 'src/CppUTest/TestFilter.cpp'; else $(CYGPATH_W) '$(srcdir)/src/CppUTest/TestFilter.cpp'; fi` libCppUTest_a-TestPlugin.o: src/CppUTest/TestPlugin.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTest_a-TestPlugin.o -MD -MP -MF $(DEPDIR)/libCppUTest_a-TestPlugin.Tpo -c -o libCppUTest_a-TestPlugin.o `test -f 'src/CppUTest/TestPlugin.cpp' || echo '$(srcdir)/'`src/CppUTest/TestPlugin.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTest_a-TestPlugin.Tpo $(DEPDIR)/libCppUTest_a-TestPlugin.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/CppUTest/TestPlugin.cpp' object='libCppUTest_a-TestPlugin.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTest_a-TestPlugin.o `test -f 'src/CppUTest/TestPlugin.cpp' || echo '$(srcdir)/'`src/CppUTest/TestPlugin.cpp libCppUTest_a-TestPlugin.obj: src/CppUTest/TestPlugin.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTest_a-TestPlugin.obj -MD -MP -MF $(DEPDIR)/libCppUTest_a-TestPlugin.Tpo -c -o libCppUTest_a-TestPlugin.obj `if test -f 'src/CppUTest/TestPlugin.cpp'; then $(CYGPATH_W) 'src/CppUTest/TestPlugin.cpp'; else $(CYGPATH_W) '$(srcdir)/src/CppUTest/TestPlugin.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTest_a-TestPlugin.Tpo $(DEPDIR)/libCppUTest_a-TestPlugin.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/CppUTest/TestPlugin.cpp' object='libCppUTest_a-TestPlugin.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTest_a-TestPlugin.obj `if test -f 'src/CppUTest/TestPlugin.cpp'; then $(CYGPATH_W) 'src/CppUTest/TestPlugin.cpp'; else $(CYGPATH_W) '$(srcdir)/src/CppUTest/TestPlugin.cpp'; fi` libCppUTest_a-Utest.o: src/CppUTest/Utest.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTest_a-Utest.o -MD -MP -MF $(DEPDIR)/libCppUTest_a-Utest.Tpo -c -o libCppUTest_a-Utest.o `test -f 'src/CppUTest/Utest.cpp' || echo '$(srcdir)/'`src/CppUTest/Utest.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTest_a-Utest.Tpo $(DEPDIR)/libCppUTest_a-Utest.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/CppUTest/Utest.cpp' object='libCppUTest_a-Utest.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTest_a-Utest.o `test -f 'src/CppUTest/Utest.cpp' || echo '$(srcdir)/'`src/CppUTest/Utest.cpp libCppUTest_a-Utest.obj: src/CppUTest/Utest.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTest_a-Utest.obj -MD -MP -MF $(DEPDIR)/libCppUTest_a-Utest.Tpo -c -o libCppUTest_a-Utest.obj `if test -f 'src/CppUTest/Utest.cpp'; then $(CYGPATH_W) 'src/CppUTest/Utest.cpp'; else $(CYGPATH_W) '$(srcdir)/src/CppUTest/Utest.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTest_a-Utest.Tpo $(DEPDIR)/libCppUTest_a-Utest.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/CppUTest/Utest.cpp' object='libCppUTest_a-Utest.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTest_a-Utest.obj `if test -f 'src/CppUTest/Utest.cpp'; then $(CYGPATH_W) 'src/CppUTest/Utest.cpp'; else $(CYGPATH_W) '$(srcdir)/src/CppUTest/Utest.cpp'; fi` libCppUTest_a-UtestPlatform.o: src/Platforms/$(CPP_PLATFORM)/UtestPlatform.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTest_a-UtestPlatform.o -MD -MP -MF $(DEPDIR)/libCppUTest_a-UtestPlatform.Tpo -c -o libCppUTest_a-UtestPlatform.o `test -f 'src/Platforms/$(CPP_PLATFORM)/UtestPlatform.cpp' || echo '$(srcdir)/'`src/Platforms/$(CPP_PLATFORM)/UtestPlatform.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTest_a-UtestPlatform.Tpo $(DEPDIR)/libCppUTest_a-UtestPlatform.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/Platforms/$(CPP_PLATFORM)/UtestPlatform.cpp' object='libCppUTest_a-UtestPlatform.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTest_a-UtestPlatform.o `test -f 'src/Platforms/$(CPP_PLATFORM)/UtestPlatform.cpp' || echo '$(srcdir)/'`src/Platforms/$(CPP_PLATFORM)/UtestPlatform.cpp libCppUTest_a-UtestPlatform.obj: src/Platforms/$(CPP_PLATFORM)/UtestPlatform.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTest_a-UtestPlatform.obj -MD -MP -MF $(DEPDIR)/libCppUTest_a-UtestPlatform.Tpo -c -o libCppUTest_a-UtestPlatform.obj `if test -f 'src/Platforms/$(CPP_PLATFORM)/UtestPlatform.cpp'; then $(CYGPATH_W) 'src/Platforms/$(CPP_PLATFORM)/UtestPlatform.cpp'; else $(CYGPATH_W) '$(srcdir)/src/Platforms/$(CPP_PLATFORM)/UtestPlatform.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTest_a-UtestPlatform.Tpo $(DEPDIR)/libCppUTest_a-UtestPlatform.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/Platforms/$(CPP_PLATFORM)/UtestPlatform.cpp' object='libCppUTest_a-UtestPlatform.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTest_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTest_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTest_a-UtestPlatform.obj `if test -f 'src/Platforms/$(CPP_PLATFORM)/UtestPlatform.cpp'; then $(CYGPATH_W) 'src/Platforms/$(CPP_PLATFORM)/UtestPlatform.cpp'; else $(CYGPATH_W) '$(srcdir)/src/Platforms/$(CPP_PLATFORM)/UtestPlatform.cpp'; fi` libCppUTestExt_a-CodeMemoryReportFormatter.o: src/CppUTestExt/CodeMemoryReportFormatter.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTestExt_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTestExt_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTestExt_a-CodeMemoryReportFormatter.o -MD -MP -MF $(DEPDIR)/libCppUTestExt_a-CodeMemoryReportFormatter.Tpo -c -o libCppUTestExt_a-CodeMemoryReportFormatter.o `test -f 'src/CppUTestExt/CodeMemoryReportFormatter.cpp' || echo '$(srcdir)/'`src/CppUTestExt/CodeMemoryReportFormatter.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTestExt_a-CodeMemoryReportFormatter.Tpo $(DEPDIR)/libCppUTestExt_a-CodeMemoryReportFormatter.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/CppUTestExt/CodeMemoryReportFormatter.cpp' object='libCppUTestExt_a-CodeMemoryReportFormatter.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTestExt_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTestExt_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTestExt_a-CodeMemoryReportFormatter.o `test -f 'src/CppUTestExt/CodeMemoryReportFormatter.cpp' || echo '$(srcdir)/'`src/CppUTestExt/CodeMemoryReportFormatter.cpp libCppUTestExt_a-CodeMemoryReportFormatter.obj: src/CppUTestExt/CodeMemoryReportFormatter.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTestExt_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTestExt_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTestExt_a-CodeMemoryReportFormatter.obj -MD -MP -MF $(DEPDIR)/libCppUTestExt_a-CodeMemoryReportFormatter.Tpo -c -o libCppUTestExt_a-CodeMemoryReportFormatter.obj `if test -f 'src/CppUTestExt/CodeMemoryReportFormatter.cpp'; then $(CYGPATH_W) 'src/CppUTestExt/CodeMemoryReportFormatter.cpp'; else $(CYGPATH_W) '$(srcdir)/src/CppUTestExt/CodeMemoryReportFormatter.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTestExt_a-CodeMemoryReportFormatter.Tpo $(DEPDIR)/libCppUTestExt_a-CodeMemoryReportFormatter.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/CppUTestExt/CodeMemoryReportFormatter.cpp' object='libCppUTestExt_a-CodeMemoryReportFormatter.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTestExt_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTestExt_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTestExt_a-CodeMemoryReportFormatter.obj `if test -f 'src/CppUTestExt/CodeMemoryReportFormatter.cpp'; then $(CYGPATH_W) 'src/CppUTestExt/CodeMemoryReportFormatter.cpp'; else $(CYGPATH_W) '$(srcdir)/src/CppUTestExt/CodeMemoryReportFormatter.cpp'; fi` libCppUTestExt_a-MemoryReporterPlugin.o: src/CppUTestExt/MemoryReporterPlugin.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTestExt_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTestExt_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTestExt_a-MemoryReporterPlugin.o -MD -MP -MF $(DEPDIR)/libCppUTestExt_a-MemoryReporterPlugin.Tpo -c -o libCppUTestExt_a-MemoryReporterPlugin.o `test -f 'src/CppUTestExt/MemoryReporterPlugin.cpp' || echo '$(srcdir)/'`src/CppUTestExt/MemoryReporterPlugin.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTestExt_a-MemoryReporterPlugin.Tpo $(DEPDIR)/libCppUTestExt_a-MemoryReporterPlugin.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/CppUTestExt/MemoryReporterPlugin.cpp' object='libCppUTestExt_a-MemoryReporterPlugin.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTestExt_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTestExt_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTestExt_a-MemoryReporterPlugin.o `test -f 'src/CppUTestExt/MemoryReporterPlugin.cpp' || echo '$(srcdir)/'`src/CppUTestExt/MemoryReporterPlugin.cpp libCppUTestExt_a-MemoryReporterPlugin.obj: src/CppUTestExt/MemoryReporterPlugin.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTestExt_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTestExt_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTestExt_a-MemoryReporterPlugin.obj -MD -MP -MF $(DEPDIR)/libCppUTestExt_a-MemoryReporterPlugin.Tpo -c -o libCppUTestExt_a-MemoryReporterPlugin.obj `if test -f 'src/CppUTestExt/MemoryReporterPlugin.cpp'; then $(CYGPATH_W) 'src/CppUTestExt/MemoryReporterPlugin.cpp'; else $(CYGPATH_W) '$(srcdir)/src/CppUTestExt/MemoryReporterPlugin.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTestExt_a-MemoryReporterPlugin.Tpo $(DEPDIR)/libCppUTestExt_a-MemoryReporterPlugin.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/CppUTestExt/MemoryReporterPlugin.cpp' object='libCppUTestExt_a-MemoryReporterPlugin.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTestExt_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTestExt_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTestExt_a-MemoryReporterPlugin.obj `if test -f 'src/CppUTestExt/MemoryReporterPlugin.cpp'; then $(CYGPATH_W) 'src/CppUTestExt/MemoryReporterPlugin.cpp'; else $(CYGPATH_W) '$(srcdir)/src/CppUTestExt/MemoryReporterPlugin.cpp'; fi` libCppUTestExt_a-MockFailure.o: src/CppUTestExt/MockFailure.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTestExt_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTestExt_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTestExt_a-MockFailure.o -MD -MP -MF $(DEPDIR)/libCppUTestExt_a-MockFailure.Tpo -c -o libCppUTestExt_a-MockFailure.o `test -f 'src/CppUTestExt/MockFailure.cpp' || echo '$(srcdir)/'`src/CppUTestExt/MockFailure.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTestExt_a-MockFailure.Tpo $(DEPDIR)/libCppUTestExt_a-MockFailure.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/CppUTestExt/MockFailure.cpp' object='libCppUTestExt_a-MockFailure.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTestExt_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTestExt_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTestExt_a-MockFailure.o `test -f 'src/CppUTestExt/MockFailure.cpp' || echo '$(srcdir)/'`src/CppUTestExt/MockFailure.cpp libCppUTestExt_a-MockFailure.obj: src/CppUTestExt/MockFailure.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTestExt_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTestExt_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTestExt_a-MockFailure.obj -MD -MP -MF $(DEPDIR)/libCppUTestExt_a-MockFailure.Tpo -c -o libCppUTestExt_a-MockFailure.obj `if test -f 'src/CppUTestExt/MockFailure.cpp'; then $(CYGPATH_W) 'src/CppUTestExt/MockFailure.cpp'; else $(CYGPATH_W) '$(srcdir)/src/CppUTestExt/MockFailure.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTestExt_a-MockFailure.Tpo $(DEPDIR)/libCppUTestExt_a-MockFailure.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/CppUTestExt/MockFailure.cpp' object='libCppUTestExt_a-MockFailure.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTestExt_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTestExt_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTestExt_a-MockFailure.obj `if test -f 'src/CppUTestExt/MockFailure.cpp'; then $(CYGPATH_W) 'src/CppUTestExt/MockFailure.cpp'; else $(CYGPATH_W) '$(srcdir)/src/CppUTestExt/MockFailure.cpp'; fi` libCppUTestExt_a-MockSupportPlugin.o: src/CppUTestExt/MockSupportPlugin.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTestExt_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTestExt_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTestExt_a-MockSupportPlugin.o -MD -MP -MF $(DEPDIR)/libCppUTestExt_a-MockSupportPlugin.Tpo -c -o libCppUTestExt_a-MockSupportPlugin.o `test -f 'src/CppUTestExt/MockSupportPlugin.cpp' || echo '$(srcdir)/'`src/CppUTestExt/MockSupportPlugin.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTestExt_a-MockSupportPlugin.Tpo $(DEPDIR)/libCppUTestExt_a-MockSupportPlugin.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/CppUTestExt/MockSupportPlugin.cpp' object='libCppUTestExt_a-MockSupportPlugin.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTestExt_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTestExt_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTestExt_a-MockSupportPlugin.o `test -f 'src/CppUTestExt/MockSupportPlugin.cpp' || echo '$(srcdir)/'`src/CppUTestExt/MockSupportPlugin.cpp libCppUTestExt_a-MockSupportPlugin.obj: src/CppUTestExt/MockSupportPlugin.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTestExt_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTestExt_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTestExt_a-MockSupportPlugin.obj -MD -MP -MF $(DEPDIR)/libCppUTestExt_a-MockSupportPlugin.Tpo -c -o libCppUTestExt_a-MockSupportPlugin.obj `if test -f 'src/CppUTestExt/MockSupportPlugin.cpp'; then $(CYGPATH_W) 'src/CppUTestExt/MockSupportPlugin.cpp'; else $(CYGPATH_W) '$(srcdir)/src/CppUTestExt/MockSupportPlugin.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTestExt_a-MockSupportPlugin.Tpo $(DEPDIR)/libCppUTestExt_a-MockSupportPlugin.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/CppUTestExt/MockSupportPlugin.cpp' object='libCppUTestExt_a-MockSupportPlugin.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTestExt_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTestExt_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTestExt_a-MockSupportPlugin.obj `if test -f 'src/CppUTestExt/MockSupportPlugin.cpp'; then $(CYGPATH_W) 'src/CppUTestExt/MockSupportPlugin.cpp'; else $(CYGPATH_W) '$(srcdir)/src/CppUTestExt/MockSupportPlugin.cpp'; fi` libCppUTestExt_a-GTestConvertor.o: src/CppUTestExt/GTestConvertor.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTestExt_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTestExt_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTestExt_a-GTestConvertor.o -MD -MP -MF $(DEPDIR)/libCppUTestExt_a-GTestConvertor.Tpo -c -o libCppUTestExt_a-GTestConvertor.o `test -f 'src/CppUTestExt/GTestConvertor.cpp' || echo '$(srcdir)/'`src/CppUTestExt/GTestConvertor.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTestExt_a-GTestConvertor.Tpo $(DEPDIR)/libCppUTestExt_a-GTestConvertor.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/CppUTestExt/GTestConvertor.cpp' object='libCppUTestExt_a-GTestConvertor.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTestExt_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTestExt_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTestExt_a-GTestConvertor.o `test -f 'src/CppUTestExt/GTestConvertor.cpp' || echo '$(srcdir)/'`src/CppUTestExt/GTestConvertor.cpp libCppUTestExt_a-GTestConvertor.obj: src/CppUTestExt/GTestConvertor.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTestExt_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTestExt_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTestExt_a-GTestConvertor.obj -MD -MP -MF $(DEPDIR)/libCppUTestExt_a-GTestConvertor.Tpo -c -o libCppUTestExt_a-GTestConvertor.obj `if test -f 'src/CppUTestExt/GTestConvertor.cpp'; then $(CYGPATH_W) 'src/CppUTestExt/GTestConvertor.cpp'; else $(CYGPATH_W) '$(srcdir)/src/CppUTestExt/GTestConvertor.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTestExt_a-GTestConvertor.Tpo $(DEPDIR)/libCppUTestExt_a-GTestConvertor.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/CppUTestExt/GTestConvertor.cpp' object='libCppUTestExt_a-GTestConvertor.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTestExt_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTestExt_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTestExt_a-GTestConvertor.obj `if test -f 'src/CppUTestExt/GTestConvertor.cpp'; then $(CYGPATH_W) 'src/CppUTestExt/GTestConvertor.cpp'; else $(CYGPATH_W) '$(srcdir)/src/CppUTestExt/GTestConvertor.cpp'; fi` libCppUTestExt_a-MockActualFunctionCall.o: src/CppUTestExt/MockActualFunctionCall.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTestExt_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTestExt_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTestExt_a-MockActualFunctionCall.o -MD -MP -MF $(DEPDIR)/libCppUTestExt_a-MockActualFunctionCall.Tpo -c -o libCppUTestExt_a-MockActualFunctionCall.o `test -f 'src/CppUTestExt/MockActualFunctionCall.cpp' || echo '$(srcdir)/'`src/CppUTestExt/MockActualFunctionCall.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTestExt_a-MockActualFunctionCall.Tpo $(DEPDIR)/libCppUTestExt_a-MockActualFunctionCall.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/CppUTestExt/MockActualFunctionCall.cpp' object='libCppUTestExt_a-MockActualFunctionCall.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTestExt_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTestExt_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTestExt_a-MockActualFunctionCall.o `test -f 'src/CppUTestExt/MockActualFunctionCall.cpp' || echo '$(srcdir)/'`src/CppUTestExt/MockActualFunctionCall.cpp libCppUTestExt_a-MockActualFunctionCall.obj: src/CppUTestExt/MockActualFunctionCall.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTestExt_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTestExt_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTestExt_a-MockActualFunctionCall.obj -MD -MP -MF $(DEPDIR)/libCppUTestExt_a-MockActualFunctionCall.Tpo -c -o libCppUTestExt_a-MockActualFunctionCall.obj `if test -f 'src/CppUTestExt/MockActualFunctionCall.cpp'; then $(CYGPATH_W) 'src/CppUTestExt/MockActualFunctionCall.cpp'; else $(CYGPATH_W) '$(srcdir)/src/CppUTestExt/MockActualFunctionCall.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTestExt_a-MockActualFunctionCall.Tpo $(DEPDIR)/libCppUTestExt_a-MockActualFunctionCall.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/CppUTestExt/MockActualFunctionCall.cpp' object='libCppUTestExt_a-MockActualFunctionCall.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTestExt_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTestExt_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTestExt_a-MockActualFunctionCall.obj `if test -f 'src/CppUTestExt/MockActualFunctionCall.cpp'; then $(CYGPATH_W) 'src/CppUTestExt/MockActualFunctionCall.cpp'; else $(CYGPATH_W) '$(srcdir)/src/CppUTestExt/MockActualFunctionCall.cpp'; fi` libCppUTestExt_a-MockFunctionCall.o: src/CppUTestExt/MockFunctionCall.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTestExt_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTestExt_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTestExt_a-MockFunctionCall.o -MD -MP -MF $(DEPDIR)/libCppUTestExt_a-MockFunctionCall.Tpo -c -o libCppUTestExt_a-MockFunctionCall.o `test -f 'src/CppUTestExt/MockFunctionCall.cpp' || echo '$(srcdir)/'`src/CppUTestExt/MockFunctionCall.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTestExt_a-MockFunctionCall.Tpo $(DEPDIR)/libCppUTestExt_a-MockFunctionCall.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/CppUTestExt/MockFunctionCall.cpp' object='libCppUTestExt_a-MockFunctionCall.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTestExt_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTestExt_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTestExt_a-MockFunctionCall.o `test -f 'src/CppUTestExt/MockFunctionCall.cpp' || echo '$(srcdir)/'`src/CppUTestExt/MockFunctionCall.cpp libCppUTestExt_a-MockFunctionCall.obj: src/CppUTestExt/MockFunctionCall.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTestExt_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTestExt_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTestExt_a-MockFunctionCall.obj -MD -MP -MF $(DEPDIR)/libCppUTestExt_a-MockFunctionCall.Tpo -c -o libCppUTestExt_a-MockFunctionCall.obj `if test -f 'src/CppUTestExt/MockFunctionCall.cpp'; then $(CYGPATH_W) 'src/CppUTestExt/MockFunctionCall.cpp'; else $(CYGPATH_W) '$(srcdir)/src/CppUTestExt/MockFunctionCall.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTestExt_a-MockFunctionCall.Tpo $(DEPDIR)/libCppUTestExt_a-MockFunctionCall.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/CppUTestExt/MockFunctionCall.cpp' object='libCppUTestExt_a-MockFunctionCall.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTestExt_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTestExt_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTestExt_a-MockFunctionCall.obj `if test -f 'src/CppUTestExt/MockFunctionCall.cpp'; then $(CYGPATH_W) 'src/CppUTestExt/MockFunctionCall.cpp'; else $(CYGPATH_W) '$(srcdir)/src/CppUTestExt/MockFunctionCall.cpp'; fi` libCppUTestExt_a-MockSupport_c.o: src/CppUTestExt/MockSupport_c.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTestExt_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTestExt_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTestExt_a-MockSupport_c.o -MD -MP -MF $(DEPDIR)/libCppUTestExt_a-MockSupport_c.Tpo -c -o libCppUTestExt_a-MockSupport_c.o `test -f 'src/CppUTestExt/MockSupport_c.cpp' || echo '$(srcdir)/'`src/CppUTestExt/MockSupport_c.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTestExt_a-MockSupport_c.Tpo $(DEPDIR)/libCppUTestExt_a-MockSupport_c.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/CppUTestExt/MockSupport_c.cpp' object='libCppUTestExt_a-MockSupport_c.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTestExt_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTestExt_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTestExt_a-MockSupport_c.o `test -f 'src/CppUTestExt/MockSupport_c.cpp' || echo '$(srcdir)/'`src/CppUTestExt/MockSupport_c.cpp libCppUTestExt_a-MockSupport_c.obj: src/CppUTestExt/MockSupport_c.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTestExt_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTestExt_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTestExt_a-MockSupport_c.obj -MD -MP -MF $(DEPDIR)/libCppUTestExt_a-MockSupport_c.Tpo -c -o libCppUTestExt_a-MockSupport_c.obj `if test -f 'src/CppUTestExt/MockSupport_c.cpp'; then $(CYGPATH_W) 'src/CppUTestExt/MockSupport_c.cpp'; else $(CYGPATH_W) '$(srcdir)/src/CppUTestExt/MockSupport_c.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTestExt_a-MockSupport_c.Tpo $(DEPDIR)/libCppUTestExt_a-MockSupport_c.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/CppUTestExt/MockSupport_c.cpp' object='libCppUTestExt_a-MockSupport_c.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTestExt_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTestExt_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTestExt_a-MockSupport_c.obj `if test -f 'src/CppUTestExt/MockSupport_c.cpp'; then $(CYGPATH_W) 'src/CppUTestExt/MockSupport_c.cpp'; else $(CYGPATH_W) '$(srcdir)/src/CppUTestExt/MockSupport_c.cpp'; fi` libCppUTestExt_a-MemoryReportAllocator.o: src/CppUTestExt/MemoryReportAllocator.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTestExt_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTestExt_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTestExt_a-MemoryReportAllocator.o -MD -MP -MF $(DEPDIR)/libCppUTestExt_a-MemoryReportAllocator.Tpo -c -o libCppUTestExt_a-MemoryReportAllocator.o `test -f 'src/CppUTestExt/MemoryReportAllocator.cpp' || echo '$(srcdir)/'`src/CppUTestExt/MemoryReportAllocator.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTestExt_a-MemoryReportAllocator.Tpo $(DEPDIR)/libCppUTestExt_a-MemoryReportAllocator.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/CppUTestExt/MemoryReportAllocator.cpp' object='libCppUTestExt_a-MemoryReportAllocator.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTestExt_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTestExt_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTestExt_a-MemoryReportAllocator.o `test -f 'src/CppUTestExt/MemoryReportAllocator.cpp' || echo '$(srcdir)/'`src/CppUTestExt/MemoryReportAllocator.cpp libCppUTestExt_a-MemoryReportAllocator.obj: src/CppUTestExt/MemoryReportAllocator.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTestExt_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTestExt_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTestExt_a-MemoryReportAllocator.obj -MD -MP -MF $(DEPDIR)/libCppUTestExt_a-MemoryReportAllocator.Tpo -c -o libCppUTestExt_a-MemoryReportAllocator.obj `if test -f 'src/CppUTestExt/MemoryReportAllocator.cpp'; then $(CYGPATH_W) 'src/CppUTestExt/MemoryReportAllocator.cpp'; else $(CYGPATH_W) '$(srcdir)/src/CppUTestExt/MemoryReportAllocator.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTestExt_a-MemoryReportAllocator.Tpo $(DEPDIR)/libCppUTestExt_a-MemoryReportAllocator.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/CppUTestExt/MemoryReportAllocator.cpp' object='libCppUTestExt_a-MemoryReportAllocator.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTestExt_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTestExt_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTestExt_a-MemoryReportAllocator.obj `if test -f 'src/CppUTestExt/MemoryReportAllocator.cpp'; then $(CYGPATH_W) 'src/CppUTestExt/MemoryReportAllocator.cpp'; else $(CYGPATH_W) '$(srcdir)/src/CppUTestExt/MemoryReportAllocator.cpp'; fi` libCppUTestExt_a-MockExpectedFunctionCall.o: src/CppUTestExt/MockExpectedFunctionCall.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTestExt_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTestExt_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTestExt_a-MockExpectedFunctionCall.o -MD -MP -MF $(DEPDIR)/libCppUTestExt_a-MockExpectedFunctionCall.Tpo -c -o libCppUTestExt_a-MockExpectedFunctionCall.o `test -f 'src/CppUTestExt/MockExpectedFunctionCall.cpp' || echo '$(srcdir)/'`src/CppUTestExt/MockExpectedFunctionCall.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTestExt_a-MockExpectedFunctionCall.Tpo $(DEPDIR)/libCppUTestExt_a-MockExpectedFunctionCall.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/CppUTestExt/MockExpectedFunctionCall.cpp' object='libCppUTestExt_a-MockExpectedFunctionCall.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTestExt_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTestExt_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTestExt_a-MockExpectedFunctionCall.o `test -f 'src/CppUTestExt/MockExpectedFunctionCall.cpp' || echo '$(srcdir)/'`src/CppUTestExt/MockExpectedFunctionCall.cpp libCppUTestExt_a-MockExpectedFunctionCall.obj: src/CppUTestExt/MockExpectedFunctionCall.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTestExt_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTestExt_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTestExt_a-MockExpectedFunctionCall.obj -MD -MP -MF $(DEPDIR)/libCppUTestExt_a-MockExpectedFunctionCall.Tpo -c -o libCppUTestExt_a-MockExpectedFunctionCall.obj `if test -f 'src/CppUTestExt/MockExpectedFunctionCall.cpp'; then $(CYGPATH_W) 'src/CppUTestExt/MockExpectedFunctionCall.cpp'; else $(CYGPATH_W) '$(srcdir)/src/CppUTestExt/MockExpectedFunctionCall.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTestExt_a-MockExpectedFunctionCall.Tpo $(DEPDIR)/libCppUTestExt_a-MockExpectedFunctionCall.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/CppUTestExt/MockExpectedFunctionCall.cpp' object='libCppUTestExt_a-MockExpectedFunctionCall.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTestExt_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTestExt_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTestExt_a-MockExpectedFunctionCall.obj `if test -f 'src/CppUTestExt/MockExpectedFunctionCall.cpp'; then $(CYGPATH_W) 'src/CppUTestExt/MockExpectedFunctionCall.cpp'; else $(CYGPATH_W) '$(srcdir)/src/CppUTestExt/MockExpectedFunctionCall.cpp'; fi` libCppUTestExt_a-MockNamedValue.o: src/CppUTestExt/MockNamedValue.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTestExt_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTestExt_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTestExt_a-MockNamedValue.o -MD -MP -MF $(DEPDIR)/libCppUTestExt_a-MockNamedValue.Tpo -c -o libCppUTestExt_a-MockNamedValue.o `test -f 'src/CppUTestExt/MockNamedValue.cpp' || echo '$(srcdir)/'`src/CppUTestExt/MockNamedValue.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTestExt_a-MockNamedValue.Tpo $(DEPDIR)/libCppUTestExt_a-MockNamedValue.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/CppUTestExt/MockNamedValue.cpp' object='libCppUTestExt_a-MockNamedValue.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTestExt_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTestExt_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTestExt_a-MockNamedValue.o `test -f 'src/CppUTestExt/MockNamedValue.cpp' || echo '$(srcdir)/'`src/CppUTestExt/MockNamedValue.cpp libCppUTestExt_a-MockNamedValue.obj: src/CppUTestExt/MockNamedValue.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTestExt_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTestExt_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTestExt_a-MockNamedValue.obj -MD -MP -MF $(DEPDIR)/libCppUTestExt_a-MockNamedValue.Tpo -c -o libCppUTestExt_a-MockNamedValue.obj `if test -f 'src/CppUTestExt/MockNamedValue.cpp'; then $(CYGPATH_W) 'src/CppUTestExt/MockNamedValue.cpp'; else $(CYGPATH_W) '$(srcdir)/src/CppUTestExt/MockNamedValue.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTestExt_a-MockNamedValue.Tpo $(DEPDIR)/libCppUTestExt_a-MockNamedValue.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/CppUTestExt/MockNamedValue.cpp' object='libCppUTestExt_a-MockNamedValue.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTestExt_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTestExt_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTestExt_a-MockNamedValue.obj `if test -f 'src/CppUTestExt/MockNamedValue.cpp'; then $(CYGPATH_W) 'src/CppUTestExt/MockNamedValue.cpp'; else $(CYGPATH_W) '$(srcdir)/src/CppUTestExt/MockNamedValue.cpp'; fi` libCppUTestExt_a-OrderedTest.o: src/CppUTestExt/OrderedTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTestExt_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTestExt_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTestExt_a-OrderedTest.o -MD -MP -MF $(DEPDIR)/libCppUTestExt_a-OrderedTest.Tpo -c -o libCppUTestExt_a-OrderedTest.o `test -f 'src/CppUTestExt/OrderedTest.cpp' || echo '$(srcdir)/'`src/CppUTestExt/OrderedTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTestExt_a-OrderedTest.Tpo $(DEPDIR)/libCppUTestExt_a-OrderedTest.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/CppUTestExt/OrderedTest.cpp' object='libCppUTestExt_a-OrderedTest.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTestExt_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTestExt_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTestExt_a-OrderedTest.o `test -f 'src/CppUTestExt/OrderedTest.cpp' || echo '$(srcdir)/'`src/CppUTestExt/OrderedTest.cpp libCppUTestExt_a-OrderedTest.obj: src/CppUTestExt/OrderedTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTestExt_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTestExt_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTestExt_a-OrderedTest.obj -MD -MP -MF $(DEPDIR)/libCppUTestExt_a-OrderedTest.Tpo -c -o libCppUTestExt_a-OrderedTest.obj `if test -f 'src/CppUTestExt/OrderedTest.cpp'; then $(CYGPATH_W) 'src/CppUTestExt/OrderedTest.cpp'; else $(CYGPATH_W) '$(srcdir)/src/CppUTestExt/OrderedTest.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTestExt_a-OrderedTest.Tpo $(DEPDIR)/libCppUTestExt_a-OrderedTest.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/CppUTestExt/OrderedTest.cpp' object='libCppUTestExt_a-OrderedTest.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTestExt_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTestExt_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTestExt_a-OrderedTest.obj `if test -f 'src/CppUTestExt/OrderedTest.cpp'; then $(CYGPATH_W) 'src/CppUTestExt/OrderedTest.cpp'; else $(CYGPATH_W) '$(srcdir)/src/CppUTestExt/OrderedTest.cpp'; fi` libCppUTestExt_a-MemoryReportFormatter.o: src/CppUTestExt/MemoryReportFormatter.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTestExt_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTestExt_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTestExt_a-MemoryReportFormatter.o -MD -MP -MF $(DEPDIR)/libCppUTestExt_a-MemoryReportFormatter.Tpo -c -o libCppUTestExt_a-MemoryReportFormatter.o `test -f 'src/CppUTestExt/MemoryReportFormatter.cpp' || echo '$(srcdir)/'`src/CppUTestExt/MemoryReportFormatter.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTestExt_a-MemoryReportFormatter.Tpo $(DEPDIR)/libCppUTestExt_a-MemoryReportFormatter.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/CppUTestExt/MemoryReportFormatter.cpp' object='libCppUTestExt_a-MemoryReportFormatter.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTestExt_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTestExt_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTestExt_a-MemoryReportFormatter.o `test -f 'src/CppUTestExt/MemoryReportFormatter.cpp' || echo '$(srcdir)/'`src/CppUTestExt/MemoryReportFormatter.cpp libCppUTestExt_a-MemoryReportFormatter.obj: src/CppUTestExt/MemoryReportFormatter.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTestExt_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTestExt_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTestExt_a-MemoryReportFormatter.obj -MD -MP -MF $(DEPDIR)/libCppUTestExt_a-MemoryReportFormatter.Tpo -c -o libCppUTestExt_a-MemoryReportFormatter.obj `if test -f 'src/CppUTestExt/MemoryReportFormatter.cpp'; then $(CYGPATH_W) 'src/CppUTestExt/MemoryReportFormatter.cpp'; else $(CYGPATH_W) '$(srcdir)/src/CppUTestExt/MemoryReportFormatter.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTestExt_a-MemoryReportFormatter.Tpo $(DEPDIR)/libCppUTestExt_a-MemoryReportFormatter.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/CppUTestExt/MemoryReportFormatter.cpp' object='libCppUTestExt_a-MemoryReportFormatter.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTestExt_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTestExt_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTestExt_a-MemoryReportFormatter.obj `if test -f 'src/CppUTestExt/MemoryReportFormatter.cpp'; then $(CYGPATH_W) 'src/CppUTestExt/MemoryReportFormatter.cpp'; else $(CYGPATH_W) '$(srcdir)/src/CppUTestExt/MemoryReportFormatter.cpp'; fi` libCppUTestExt_a-MockExpectedFunctionsList.o: src/CppUTestExt/MockExpectedFunctionsList.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTestExt_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTestExt_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTestExt_a-MockExpectedFunctionsList.o -MD -MP -MF $(DEPDIR)/libCppUTestExt_a-MockExpectedFunctionsList.Tpo -c -o libCppUTestExt_a-MockExpectedFunctionsList.o `test -f 'src/CppUTestExt/MockExpectedFunctionsList.cpp' || echo '$(srcdir)/'`src/CppUTestExt/MockExpectedFunctionsList.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTestExt_a-MockExpectedFunctionsList.Tpo $(DEPDIR)/libCppUTestExt_a-MockExpectedFunctionsList.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/CppUTestExt/MockExpectedFunctionsList.cpp' object='libCppUTestExt_a-MockExpectedFunctionsList.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTestExt_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTestExt_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTestExt_a-MockExpectedFunctionsList.o `test -f 'src/CppUTestExt/MockExpectedFunctionsList.cpp' || echo '$(srcdir)/'`src/CppUTestExt/MockExpectedFunctionsList.cpp libCppUTestExt_a-MockExpectedFunctionsList.obj: src/CppUTestExt/MockExpectedFunctionsList.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTestExt_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTestExt_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTestExt_a-MockExpectedFunctionsList.obj -MD -MP -MF $(DEPDIR)/libCppUTestExt_a-MockExpectedFunctionsList.Tpo -c -o libCppUTestExt_a-MockExpectedFunctionsList.obj `if test -f 'src/CppUTestExt/MockExpectedFunctionsList.cpp'; then $(CYGPATH_W) 'src/CppUTestExt/MockExpectedFunctionsList.cpp'; else $(CYGPATH_W) '$(srcdir)/src/CppUTestExt/MockExpectedFunctionsList.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTestExt_a-MockExpectedFunctionsList.Tpo $(DEPDIR)/libCppUTestExt_a-MockExpectedFunctionsList.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/CppUTestExt/MockExpectedFunctionsList.cpp' object='libCppUTestExt_a-MockExpectedFunctionsList.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTestExt_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTestExt_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTestExt_a-MockExpectedFunctionsList.obj `if test -f 'src/CppUTestExt/MockExpectedFunctionsList.cpp'; then $(CYGPATH_W) 'src/CppUTestExt/MockExpectedFunctionsList.cpp'; else $(CYGPATH_W) '$(srcdir)/src/CppUTestExt/MockExpectedFunctionsList.cpp'; fi` libCppUTestExt_a-MockSupport.o: src/CppUTestExt/MockSupport.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTestExt_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTestExt_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTestExt_a-MockSupport.o -MD -MP -MF $(DEPDIR)/libCppUTestExt_a-MockSupport.Tpo -c -o libCppUTestExt_a-MockSupport.o `test -f 'src/CppUTestExt/MockSupport.cpp' || echo '$(srcdir)/'`src/CppUTestExt/MockSupport.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTestExt_a-MockSupport.Tpo $(DEPDIR)/libCppUTestExt_a-MockSupport.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/CppUTestExt/MockSupport.cpp' object='libCppUTestExt_a-MockSupport.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTestExt_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTestExt_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTestExt_a-MockSupport.o `test -f 'src/CppUTestExt/MockSupport.cpp' || echo '$(srcdir)/'`src/CppUTestExt/MockSupport.cpp libCppUTestExt_a-MockSupport.obj: src/CppUTestExt/MockSupport.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTestExt_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTestExt_a_CXXFLAGS) $(CXXFLAGS) -MT libCppUTestExt_a-MockSupport.obj -MD -MP -MF $(DEPDIR)/libCppUTestExt_a-MockSupport.Tpo -c -o libCppUTestExt_a-MockSupport.obj `if test -f 'src/CppUTestExt/MockSupport.cpp'; then $(CYGPATH_W) 'src/CppUTestExt/MockSupport.cpp'; else $(CYGPATH_W) '$(srcdir)/src/CppUTestExt/MockSupport.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libCppUTestExt_a-MockSupport.Tpo $(DEPDIR)/libCppUTestExt_a-MockSupport.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/CppUTestExt/MockSupport.cpp' object='libCppUTestExt_a-MockSupport.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libCppUTestExt_a_CPPFLAGS) $(CPPFLAGS) $(libCppUTestExt_a_CXXFLAGS) $(CXXFLAGS) -c -o libCppUTestExt_a-MockSupport.obj `if test -f 'src/CppUTestExt/MockSupport.cpp'; then $(CYGPATH_W) 'src/CppUTestExt/MockSupport.cpp'; else $(CYGPATH_W) '$(srcdir)/src/CppUTestExt/MockSupport.cpp'; fi` CppUTestExtTests-AllTests.o: tests/CppUTestExt/AllTests.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestExtTests-AllTests.o -MD -MP -MF $(DEPDIR)/CppUTestExtTests-AllTests.Tpo -c -o CppUTestExtTests-AllTests.o `test -f 'tests/CppUTestExt/AllTests.cpp' || echo '$(srcdir)/'`tests/CppUTestExt/AllTests.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestExtTests-AllTests.Tpo $(DEPDIR)/CppUTestExtTests-AllTests.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/CppUTestExt/AllTests.cpp' object='CppUTestExtTests-AllTests.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestExtTests-AllTests.o `test -f 'tests/CppUTestExt/AllTests.cpp' || echo '$(srcdir)/'`tests/CppUTestExt/AllTests.cpp CppUTestExtTests-AllTests.obj: tests/CppUTestExt/AllTests.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestExtTests-AllTests.obj -MD -MP -MF $(DEPDIR)/CppUTestExtTests-AllTests.Tpo -c -o CppUTestExtTests-AllTests.obj `if test -f 'tests/CppUTestExt/AllTests.cpp'; then $(CYGPATH_W) 'tests/CppUTestExt/AllTests.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/CppUTestExt/AllTests.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestExtTests-AllTests.Tpo $(DEPDIR)/CppUTestExtTests-AllTests.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/CppUTestExt/AllTests.cpp' object='CppUTestExtTests-AllTests.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestExtTests-AllTests.obj `if test -f 'tests/CppUTestExt/AllTests.cpp'; then $(CYGPATH_W) 'tests/CppUTestExt/AllTests.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/CppUTestExt/AllTests.cpp'; fi` CppUTestExtTests-TestMockActualFunctionCall.o: tests/CppUTestExt/TestMockActualFunctionCall.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestExtTests-TestMockActualFunctionCall.o -MD -MP -MF $(DEPDIR)/CppUTestExtTests-TestMockActualFunctionCall.Tpo -c -o CppUTestExtTests-TestMockActualFunctionCall.o `test -f 'tests/CppUTestExt/TestMockActualFunctionCall.cpp' || echo '$(srcdir)/'`tests/CppUTestExt/TestMockActualFunctionCall.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestExtTests-TestMockActualFunctionCall.Tpo $(DEPDIR)/CppUTestExtTests-TestMockActualFunctionCall.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/CppUTestExt/TestMockActualFunctionCall.cpp' object='CppUTestExtTests-TestMockActualFunctionCall.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestExtTests-TestMockActualFunctionCall.o `test -f 'tests/CppUTestExt/TestMockActualFunctionCall.cpp' || echo '$(srcdir)/'`tests/CppUTestExt/TestMockActualFunctionCall.cpp CppUTestExtTests-TestMockActualFunctionCall.obj: tests/CppUTestExt/TestMockActualFunctionCall.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestExtTests-TestMockActualFunctionCall.obj -MD -MP -MF $(DEPDIR)/CppUTestExtTests-TestMockActualFunctionCall.Tpo -c -o CppUTestExtTests-TestMockActualFunctionCall.obj `if test -f 'tests/CppUTestExt/TestMockActualFunctionCall.cpp'; then $(CYGPATH_W) 'tests/CppUTestExt/TestMockActualFunctionCall.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/CppUTestExt/TestMockActualFunctionCall.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestExtTests-TestMockActualFunctionCall.Tpo $(DEPDIR)/CppUTestExtTests-TestMockActualFunctionCall.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/CppUTestExt/TestMockActualFunctionCall.cpp' object='CppUTestExtTests-TestMockActualFunctionCall.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestExtTests-TestMockActualFunctionCall.obj `if test -f 'tests/CppUTestExt/TestMockActualFunctionCall.cpp'; then $(CYGPATH_W) 'tests/CppUTestExt/TestMockActualFunctionCall.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/CppUTestExt/TestMockActualFunctionCall.cpp'; fi` CppUTestExtTests-TestMockSupport.o: tests/CppUTestExt/TestMockSupport.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestExtTests-TestMockSupport.o -MD -MP -MF $(DEPDIR)/CppUTestExtTests-TestMockSupport.Tpo -c -o CppUTestExtTests-TestMockSupport.o `test -f 'tests/CppUTestExt/TestMockSupport.cpp' || echo '$(srcdir)/'`tests/CppUTestExt/TestMockSupport.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestExtTests-TestMockSupport.Tpo $(DEPDIR)/CppUTestExtTests-TestMockSupport.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/CppUTestExt/TestMockSupport.cpp' object='CppUTestExtTests-TestMockSupport.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestExtTests-TestMockSupport.o `test -f 'tests/CppUTestExt/TestMockSupport.cpp' || echo '$(srcdir)/'`tests/CppUTestExt/TestMockSupport.cpp CppUTestExtTests-TestMockSupport.obj: tests/CppUTestExt/TestMockSupport.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestExtTests-TestMockSupport.obj -MD -MP -MF $(DEPDIR)/CppUTestExtTests-TestMockSupport.Tpo -c -o CppUTestExtTests-TestMockSupport.obj `if test -f 'tests/CppUTestExt/TestMockSupport.cpp'; then $(CYGPATH_W) 'tests/CppUTestExt/TestMockSupport.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/CppUTestExt/TestMockSupport.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestExtTests-TestMockSupport.Tpo $(DEPDIR)/CppUTestExtTests-TestMockSupport.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/CppUTestExt/TestMockSupport.cpp' object='CppUTestExtTests-TestMockSupport.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestExtTests-TestMockSupport.obj `if test -f 'tests/CppUTestExt/TestMockSupport.cpp'; then $(CYGPATH_W) 'tests/CppUTestExt/TestMockSupport.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/CppUTestExt/TestMockSupport.cpp'; fi` CppUTestExtTests-TestCodeMemoryReportFormatter.o: tests/CppUTestExt/TestCodeMemoryReportFormatter.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestExtTests-TestCodeMemoryReportFormatter.o -MD -MP -MF $(DEPDIR)/CppUTestExtTests-TestCodeMemoryReportFormatter.Tpo -c -o CppUTestExtTests-TestCodeMemoryReportFormatter.o `test -f 'tests/CppUTestExt/TestCodeMemoryReportFormatter.cpp' || echo '$(srcdir)/'`tests/CppUTestExt/TestCodeMemoryReportFormatter.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestExtTests-TestCodeMemoryReportFormatter.Tpo $(DEPDIR)/CppUTestExtTests-TestCodeMemoryReportFormatter.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/CppUTestExt/TestCodeMemoryReportFormatter.cpp' object='CppUTestExtTests-TestCodeMemoryReportFormatter.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestExtTests-TestCodeMemoryReportFormatter.o `test -f 'tests/CppUTestExt/TestCodeMemoryReportFormatter.cpp' || echo '$(srcdir)/'`tests/CppUTestExt/TestCodeMemoryReportFormatter.cpp CppUTestExtTests-TestCodeMemoryReportFormatter.obj: tests/CppUTestExt/TestCodeMemoryReportFormatter.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestExtTests-TestCodeMemoryReportFormatter.obj -MD -MP -MF $(DEPDIR)/CppUTestExtTests-TestCodeMemoryReportFormatter.Tpo -c -o CppUTestExtTests-TestCodeMemoryReportFormatter.obj `if test -f 'tests/CppUTestExt/TestCodeMemoryReportFormatter.cpp'; then $(CYGPATH_W) 'tests/CppUTestExt/TestCodeMemoryReportFormatter.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/CppUTestExt/TestCodeMemoryReportFormatter.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestExtTests-TestCodeMemoryReportFormatter.Tpo $(DEPDIR)/CppUTestExtTests-TestCodeMemoryReportFormatter.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/CppUTestExt/TestCodeMemoryReportFormatter.cpp' object='CppUTestExtTests-TestCodeMemoryReportFormatter.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestExtTests-TestCodeMemoryReportFormatter.obj `if test -f 'tests/CppUTestExt/TestCodeMemoryReportFormatter.cpp'; then $(CYGPATH_W) 'tests/CppUTestExt/TestCodeMemoryReportFormatter.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/CppUTestExt/TestCodeMemoryReportFormatter.cpp'; fi` CppUTestExtTests-TestMockCheatSheet.o: tests/CppUTestExt/TestMockCheatSheet.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestExtTests-TestMockCheatSheet.o -MD -MP -MF $(DEPDIR)/CppUTestExtTests-TestMockCheatSheet.Tpo -c -o CppUTestExtTests-TestMockCheatSheet.o `test -f 'tests/CppUTestExt/TestMockCheatSheet.cpp' || echo '$(srcdir)/'`tests/CppUTestExt/TestMockCheatSheet.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestExtTests-TestMockCheatSheet.Tpo $(DEPDIR)/CppUTestExtTests-TestMockCheatSheet.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/CppUTestExt/TestMockCheatSheet.cpp' object='CppUTestExtTests-TestMockCheatSheet.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestExtTests-TestMockCheatSheet.o `test -f 'tests/CppUTestExt/TestMockCheatSheet.cpp' || echo '$(srcdir)/'`tests/CppUTestExt/TestMockCheatSheet.cpp CppUTestExtTests-TestMockCheatSheet.obj: tests/CppUTestExt/TestMockCheatSheet.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestExtTests-TestMockCheatSheet.obj -MD -MP -MF $(DEPDIR)/CppUTestExtTests-TestMockCheatSheet.Tpo -c -o CppUTestExtTests-TestMockCheatSheet.obj `if test -f 'tests/CppUTestExt/TestMockCheatSheet.cpp'; then $(CYGPATH_W) 'tests/CppUTestExt/TestMockCheatSheet.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/CppUTestExt/TestMockCheatSheet.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestExtTests-TestMockCheatSheet.Tpo $(DEPDIR)/CppUTestExtTests-TestMockCheatSheet.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/CppUTestExt/TestMockCheatSheet.cpp' object='CppUTestExtTests-TestMockCheatSheet.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestExtTests-TestMockCheatSheet.obj `if test -f 'tests/CppUTestExt/TestMockCheatSheet.cpp'; then $(CYGPATH_W) 'tests/CppUTestExt/TestMockCheatSheet.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/CppUTestExt/TestMockCheatSheet.cpp'; fi` CppUTestExtTests-TestMockSupport_c.o: tests/CppUTestExt/TestMockSupport_c.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestExtTests-TestMockSupport_c.o -MD -MP -MF $(DEPDIR)/CppUTestExtTests-TestMockSupport_c.Tpo -c -o CppUTestExtTests-TestMockSupport_c.o `test -f 'tests/CppUTestExt/TestMockSupport_c.cpp' || echo '$(srcdir)/'`tests/CppUTestExt/TestMockSupport_c.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestExtTests-TestMockSupport_c.Tpo $(DEPDIR)/CppUTestExtTests-TestMockSupport_c.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/CppUTestExt/TestMockSupport_c.cpp' object='CppUTestExtTests-TestMockSupport_c.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestExtTests-TestMockSupport_c.o `test -f 'tests/CppUTestExt/TestMockSupport_c.cpp' || echo '$(srcdir)/'`tests/CppUTestExt/TestMockSupport_c.cpp CppUTestExtTests-TestMockSupport_c.obj: tests/CppUTestExt/TestMockSupport_c.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestExtTests-TestMockSupport_c.obj -MD -MP -MF $(DEPDIR)/CppUTestExtTests-TestMockSupport_c.Tpo -c -o CppUTestExtTests-TestMockSupport_c.obj `if test -f 'tests/CppUTestExt/TestMockSupport_c.cpp'; then $(CYGPATH_W) 'tests/CppUTestExt/TestMockSupport_c.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/CppUTestExt/TestMockSupport_c.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestExtTests-TestMockSupport_c.Tpo $(DEPDIR)/CppUTestExtTests-TestMockSupport_c.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/CppUTestExt/TestMockSupport_c.cpp' object='CppUTestExtTests-TestMockSupport_c.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestExtTests-TestMockSupport_c.obj `if test -f 'tests/CppUTestExt/TestMockSupport_c.cpp'; then $(CYGPATH_W) 'tests/CppUTestExt/TestMockSupport_c.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/CppUTestExt/TestMockSupport_c.cpp'; fi` CppUTestExtTests-TestGMock.o: tests/CppUTestExt/TestGMock.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestExtTests-TestGMock.o -MD -MP -MF $(DEPDIR)/CppUTestExtTests-TestGMock.Tpo -c -o CppUTestExtTests-TestGMock.o `test -f 'tests/CppUTestExt/TestGMock.cpp' || echo '$(srcdir)/'`tests/CppUTestExt/TestGMock.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestExtTests-TestGMock.Tpo $(DEPDIR)/CppUTestExtTests-TestGMock.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/CppUTestExt/TestGMock.cpp' object='CppUTestExtTests-TestGMock.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestExtTests-TestGMock.o `test -f 'tests/CppUTestExt/TestGMock.cpp' || echo '$(srcdir)/'`tests/CppUTestExt/TestGMock.cpp CppUTestExtTests-TestGMock.obj: tests/CppUTestExt/TestGMock.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestExtTests-TestGMock.obj -MD -MP -MF $(DEPDIR)/CppUTestExtTests-TestGMock.Tpo -c -o CppUTestExtTests-TestGMock.obj `if test -f 'tests/CppUTestExt/TestGMock.cpp'; then $(CYGPATH_W) 'tests/CppUTestExt/TestGMock.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/CppUTestExt/TestGMock.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestExtTests-TestGMock.Tpo $(DEPDIR)/CppUTestExtTests-TestGMock.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/CppUTestExt/TestGMock.cpp' object='CppUTestExtTests-TestGMock.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestExtTests-TestGMock.obj `if test -f 'tests/CppUTestExt/TestGMock.cpp'; then $(CYGPATH_W) 'tests/CppUTestExt/TestGMock.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/CppUTestExt/TestGMock.cpp'; fi` CppUTestExtTests-TestMockExpectedFunctionCall.o: tests/CppUTestExt/TestMockExpectedFunctionCall.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestExtTests-TestMockExpectedFunctionCall.o -MD -MP -MF $(DEPDIR)/CppUTestExtTests-TestMockExpectedFunctionCall.Tpo -c -o CppUTestExtTests-TestMockExpectedFunctionCall.o `test -f 'tests/CppUTestExt/TestMockExpectedFunctionCall.cpp' || echo '$(srcdir)/'`tests/CppUTestExt/TestMockExpectedFunctionCall.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestExtTests-TestMockExpectedFunctionCall.Tpo $(DEPDIR)/CppUTestExtTests-TestMockExpectedFunctionCall.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/CppUTestExt/TestMockExpectedFunctionCall.cpp' object='CppUTestExtTests-TestMockExpectedFunctionCall.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestExtTests-TestMockExpectedFunctionCall.o `test -f 'tests/CppUTestExt/TestMockExpectedFunctionCall.cpp' || echo '$(srcdir)/'`tests/CppUTestExt/TestMockExpectedFunctionCall.cpp CppUTestExtTests-TestMockExpectedFunctionCall.obj: tests/CppUTestExt/TestMockExpectedFunctionCall.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestExtTests-TestMockExpectedFunctionCall.obj -MD -MP -MF $(DEPDIR)/CppUTestExtTests-TestMockExpectedFunctionCall.Tpo -c -o CppUTestExtTests-TestMockExpectedFunctionCall.obj `if test -f 'tests/CppUTestExt/TestMockExpectedFunctionCall.cpp'; then $(CYGPATH_W) 'tests/CppUTestExt/TestMockExpectedFunctionCall.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/CppUTestExt/TestMockExpectedFunctionCall.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestExtTests-TestMockExpectedFunctionCall.Tpo $(DEPDIR)/CppUTestExtTests-TestMockExpectedFunctionCall.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/CppUTestExt/TestMockExpectedFunctionCall.cpp' object='CppUTestExtTests-TestMockExpectedFunctionCall.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestExtTests-TestMockExpectedFunctionCall.obj `if test -f 'tests/CppUTestExt/TestMockExpectedFunctionCall.cpp'; then $(CYGPATH_W) 'tests/CppUTestExt/TestMockExpectedFunctionCall.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/CppUTestExt/TestMockExpectedFunctionCall.cpp'; fi` CppUTestExtTests-TestGTest.o: tests/CppUTestExt/TestGTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestExtTests-TestGTest.o -MD -MP -MF $(DEPDIR)/CppUTestExtTests-TestGTest.Tpo -c -o CppUTestExtTests-TestGTest.o `test -f 'tests/CppUTestExt/TestGTest.cpp' || echo '$(srcdir)/'`tests/CppUTestExt/TestGTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestExtTests-TestGTest.Tpo $(DEPDIR)/CppUTestExtTests-TestGTest.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/CppUTestExt/TestGTest.cpp' object='CppUTestExtTests-TestGTest.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestExtTests-TestGTest.o `test -f 'tests/CppUTestExt/TestGTest.cpp' || echo '$(srcdir)/'`tests/CppUTestExt/TestGTest.cpp CppUTestExtTests-TestGTest.obj: tests/CppUTestExt/TestGTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestExtTests-TestGTest.obj -MD -MP -MF $(DEPDIR)/CppUTestExtTests-TestGTest.Tpo -c -o CppUTestExtTests-TestGTest.obj `if test -f 'tests/CppUTestExt/TestGTest.cpp'; then $(CYGPATH_W) 'tests/CppUTestExt/TestGTest.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/CppUTestExt/TestGTest.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestExtTests-TestGTest.Tpo $(DEPDIR)/CppUTestExtTests-TestGTest.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/CppUTestExt/TestGTest.cpp' object='CppUTestExtTests-TestGTest.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestExtTests-TestGTest.obj `if test -f 'tests/CppUTestExt/TestGTest.cpp'; then $(CYGPATH_W) 'tests/CppUTestExt/TestGTest.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/CppUTestExt/TestGTest.cpp'; fi` CppUTestExtTests-TestMockExpectedFunctionsList.o: tests/CppUTestExt/TestMockExpectedFunctionsList.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestExtTests-TestMockExpectedFunctionsList.o -MD -MP -MF $(DEPDIR)/CppUTestExtTests-TestMockExpectedFunctionsList.Tpo -c -o CppUTestExtTests-TestMockExpectedFunctionsList.o `test -f 'tests/CppUTestExt/TestMockExpectedFunctionsList.cpp' || echo '$(srcdir)/'`tests/CppUTestExt/TestMockExpectedFunctionsList.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestExtTests-TestMockExpectedFunctionsList.Tpo $(DEPDIR)/CppUTestExtTests-TestMockExpectedFunctionsList.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/CppUTestExt/TestMockExpectedFunctionsList.cpp' object='CppUTestExtTests-TestMockExpectedFunctionsList.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestExtTests-TestMockExpectedFunctionsList.o `test -f 'tests/CppUTestExt/TestMockExpectedFunctionsList.cpp' || echo '$(srcdir)/'`tests/CppUTestExt/TestMockExpectedFunctionsList.cpp CppUTestExtTests-TestMockExpectedFunctionsList.obj: tests/CppUTestExt/TestMockExpectedFunctionsList.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestExtTests-TestMockExpectedFunctionsList.obj -MD -MP -MF $(DEPDIR)/CppUTestExtTests-TestMockExpectedFunctionsList.Tpo -c -o CppUTestExtTests-TestMockExpectedFunctionsList.obj `if test -f 'tests/CppUTestExt/TestMockExpectedFunctionsList.cpp'; then $(CYGPATH_W) 'tests/CppUTestExt/TestMockExpectedFunctionsList.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/CppUTestExt/TestMockExpectedFunctionsList.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestExtTests-TestMockExpectedFunctionsList.Tpo $(DEPDIR)/CppUTestExtTests-TestMockExpectedFunctionsList.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/CppUTestExt/TestMockExpectedFunctionsList.cpp' object='CppUTestExtTests-TestMockExpectedFunctionsList.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestExtTests-TestMockExpectedFunctionsList.obj `if test -f 'tests/CppUTestExt/TestMockExpectedFunctionsList.cpp'; then $(CYGPATH_W) 'tests/CppUTestExt/TestMockExpectedFunctionsList.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/CppUTestExt/TestMockExpectedFunctionsList.cpp'; fi` CppUTestExtTests-TestMemoryReportAllocator.o: tests/CppUTestExt/TestMemoryReportAllocator.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestExtTests-TestMemoryReportAllocator.o -MD -MP -MF $(DEPDIR)/CppUTestExtTests-TestMemoryReportAllocator.Tpo -c -o CppUTestExtTests-TestMemoryReportAllocator.o `test -f 'tests/CppUTestExt/TestMemoryReportAllocator.cpp' || echo '$(srcdir)/'`tests/CppUTestExt/TestMemoryReportAllocator.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestExtTests-TestMemoryReportAllocator.Tpo $(DEPDIR)/CppUTestExtTests-TestMemoryReportAllocator.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/CppUTestExt/TestMemoryReportAllocator.cpp' object='CppUTestExtTests-TestMemoryReportAllocator.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestExtTests-TestMemoryReportAllocator.o `test -f 'tests/CppUTestExt/TestMemoryReportAllocator.cpp' || echo '$(srcdir)/'`tests/CppUTestExt/TestMemoryReportAllocator.cpp CppUTestExtTests-TestMemoryReportAllocator.obj: tests/CppUTestExt/TestMemoryReportAllocator.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestExtTests-TestMemoryReportAllocator.obj -MD -MP -MF $(DEPDIR)/CppUTestExtTests-TestMemoryReportAllocator.Tpo -c -o CppUTestExtTests-TestMemoryReportAllocator.obj `if test -f 'tests/CppUTestExt/TestMemoryReportAllocator.cpp'; then $(CYGPATH_W) 'tests/CppUTestExt/TestMemoryReportAllocator.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/CppUTestExt/TestMemoryReportAllocator.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestExtTests-TestMemoryReportAllocator.Tpo $(DEPDIR)/CppUTestExtTests-TestMemoryReportAllocator.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/CppUTestExt/TestMemoryReportAllocator.cpp' object='CppUTestExtTests-TestMemoryReportAllocator.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestExtTests-TestMemoryReportAllocator.obj `if test -f 'tests/CppUTestExt/TestMemoryReportAllocator.cpp'; then $(CYGPATH_W) 'tests/CppUTestExt/TestMemoryReportAllocator.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/CppUTestExt/TestMemoryReportAllocator.cpp'; fi` CppUTestExtTests-TestMockFailure.o: tests/CppUTestExt/TestMockFailure.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestExtTests-TestMockFailure.o -MD -MP -MF $(DEPDIR)/CppUTestExtTests-TestMockFailure.Tpo -c -o CppUTestExtTests-TestMockFailure.o `test -f 'tests/CppUTestExt/TestMockFailure.cpp' || echo '$(srcdir)/'`tests/CppUTestExt/TestMockFailure.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestExtTests-TestMockFailure.Tpo $(DEPDIR)/CppUTestExtTests-TestMockFailure.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/CppUTestExt/TestMockFailure.cpp' object='CppUTestExtTests-TestMockFailure.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestExtTests-TestMockFailure.o `test -f 'tests/CppUTestExt/TestMockFailure.cpp' || echo '$(srcdir)/'`tests/CppUTestExt/TestMockFailure.cpp CppUTestExtTests-TestMockFailure.obj: tests/CppUTestExt/TestMockFailure.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestExtTests-TestMockFailure.obj -MD -MP -MF $(DEPDIR)/CppUTestExtTests-TestMockFailure.Tpo -c -o CppUTestExtTests-TestMockFailure.obj `if test -f 'tests/CppUTestExt/TestMockFailure.cpp'; then $(CYGPATH_W) 'tests/CppUTestExt/TestMockFailure.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/CppUTestExt/TestMockFailure.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestExtTests-TestMockFailure.Tpo $(DEPDIR)/CppUTestExtTests-TestMockFailure.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/CppUTestExt/TestMockFailure.cpp' object='CppUTestExtTests-TestMockFailure.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestExtTests-TestMockFailure.obj `if test -f 'tests/CppUTestExt/TestMockFailure.cpp'; then $(CYGPATH_W) 'tests/CppUTestExt/TestMockFailure.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/CppUTestExt/TestMockFailure.cpp'; fi` CppUTestExtTests-TestOrderedTest.o: tests/CppUTestExt/TestOrderedTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestExtTests-TestOrderedTest.o -MD -MP -MF $(DEPDIR)/CppUTestExtTests-TestOrderedTest.Tpo -c -o CppUTestExtTests-TestOrderedTest.o `test -f 'tests/CppUTestExt/TestOrderedTest.cpp' || echo '$(srcdir)/'`tests/CppUTestExt/TestOrderedTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestExtTests-TestOrderedTest.Tpo $(DEPDIR)/CppUTestExtTests-TestOrderedTest.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/CppUTestExt/TestOrderedTest.cpp' object='CppUTestExtTests-TestOrderedTest.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestExtTests-TestOrderedTest.o `test -f 'tests/CppUTestExt/TestOrderedTest.cpp' || echo '$(srcdir)/'`tests/CppUTestExt/TestOrderedTest.cpp CppUTestExtTests-TestOrderedTest.obj: tests/CppUTestExt/TestOrderedTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestExtTests-TestOrderedTest.obj -MD -MP -MF $(DEPDIR)/CppUTestExtTests-TestOrderedTest.Tpo -c -o CppUTestExtTests-TestOrderedTest.obj `if test -f 'tests/CppUTestExt/TestOrderedTest.cpp'; then $(CYGPATH_W) 'tests/CppUTestExt/TestOrderedTest.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/CppUTestExt/TestOrderedTest.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestExtTests-TestOrderedTest.Tpo $(DEPDIR)/CppUTestExtTests-TestOrderedTest.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/CppUTestExt/TestOrderedTest.cpp' object='CppUTestExtTests-TestOrderedTest.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestExtTests-TestOrderedTest.obj `if test -f 'tests/CppUTestExt/TestOrderedTest.cpp'; then $(CYGPATH_W) 'tests/CppUTestExt/TestOrderedTest.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/CppUTestExt/TestOrderedTest.cpp'; fi` CppUTestExtTests-TestMemoryReportFormatter.o: tests/CppUTestExt/TestMemoryReportFormatter.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestExtTests-TestMemoryReportFormatter.o -MD -MP -MF $(DEPDIR)/CppUTestExtTests-TestMemoryReportFormatter.Tpo -c -o CppUTestExtTests-TestMemoryReportFormatter.o `test -f 'tests/CppUTestExt/TestMemoryReportFormatter.cpp' || echo '$(srcdir)/'`tests/CppUTestExt/TestMemoryReportFormatter.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestExtTests-TestMemoryReportFormatter.Tpo $(DEPDIR)/CppUTestExtTests-TestMemoryReportFormatter.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/CppUTestExt/TestMemoryReportFormatter.cpp' object='CppUTestExtTests-TestMemoryReportFormatter.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestExtTests-TestMemoryReportFormatter.o `test -f 'tests/CppUTestExt/TestMemoryReportFormatter.cpp' || echo '$(srcdir)/'`tests/CppUTestExt/TestMemoryReportFormatter.cpp CppUTestExtTests-TestMemoryReportFormatter.obj: tests/CppUTestExt/TestMemoryReportFormatter.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestExtTests-TestMemoryReportFormatter.obj -MD -MP -MF $(DEPDIR)/CppUTestExtTests-TestMemoryReportFormatter.Tpo -c -o CppUTestExtTests-TestMemoryReportFormatter.obj `if test -f 'tests/CppUTestExt/TestMemoryReportFormatter.cpp'; then $(CYGPATH_W) 'tests/CppUTestExt/TestMemoryReportFormatter.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/CppUTestExt/TestMemoryReportFormatter.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestExtTests-TestMemoryReportFormatter.Tpo $(DEPDIR)/CppUTestExtTests-TestMemoryReportFormatter.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/CppUTestExt/TestMemoryReportFormatter.cpp' object='CppUTestExtTests-TestMemoryReportFormatter.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestExtTests-TestMemoryReportFormatter.obj `if test -f 'tests/CppUTestExt/TestMemoryReportFormatter.cpp'; then $(CYGPATH_W) 'tests/CppUTestExt/TestMemoryReportFormatter.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/CppUTestExt/TestMemoryReportFormatter.cpp'; fi` CppUTestExtTests-TestMemoryReporterPlugin.o: tests/CppUTestExt/TestMemoryReporterPlugin.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestExtTests-TestMemoryReporterPlugin.o -MD -MP -MF $(DEPDIR)/CppUTestExtTests-TestMemoryReporterPlugin.Tpo -c -o CppUTestExtTests-TestMemoryReporterPlugin.o `test -f 'tests/CppUTestExt/TestMemoryReporterPlugin.cpp' || echo '$(srcdir)/'`tests/CppUTestExt/TestMemoryReporterPlugin.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestExtTests-TestMemoryReporterPlugin.Tpo $(DEPDIR)/CppUTestExtTests-TestMemoryReporterPlugin.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/CppUTestExt/TestMemoryReporterPlugin.cpp' object='CppUTestExtTests-TestMemoryReporterPlugin.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestExtTests-TestMemoryReporterPlugin.o `test -f 'tests/CppUTestExt/TestMemoryReporterPlugin.cpp' || echo '$(srcdir)/'`tests/CppUTestExt/TestMemoryReporterPlugin.cpp CppUTestExtTests-TestMemoryReporterPlugin.obj: tests/CppUTestExt/TestMemoryReporterPlugin.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestExtTests-TestMemoryReporterPlugin.obj -MD -MP -MF $(DEPDIR)/CppUTestExtTests-TestMemoryReporterPlugin.Tpo -c -o CppUTestExtTests-TestMemoryReporterPlugin.obj `if test -f 'tests/CppUTestExt/TestMemoryReporterPlugin.cpp'; then $(CYGPATH_W) 'tests/CppUTestExt/TestMemoryReporterPlugin.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/CppUTestExt/TestMemoryReporterPlugin.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestExtTests-TestMemoryReporterPlugin.Tpo $(DEPDIR)/CppUTestExtTests-TestMemoryReporterPlugin.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/CppUTestExt/TestMemoryReporterPlugin.cpp' object='CppUTestExtTests-TestMemoryReporterPlugin.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestExtTests-TestMemoryReporterPlugin.obj `if test -f 'tests/CppUTestExt/TestMemoryReporterPlugin.cpp'; then $(CYGPATH_W) 'tests/CppUTestExt/TestMemoryReporterPlugin.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/CppUTestExt/TestMemoryReporterPlugin.cpp'; fi` CppUTestExtTests-TestMockPlugin.o: tests/CppUTestExt/TestMockPlugin.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestExtTests-TestMockPlugin.o -MD -MP -MF $(DEPDIR)/CppUTestExtTests-TestMockPlugin.Tpo -c -o CppUTestExtTests-TestMockPlugin.o `test -f 'tests/CppUTestExt/TestMockPlugin.cpp' || echo '$(srcdir)/'`tests/CppUTestExt/TestMockPlugin.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestExtTests-TestMockPlugin.Tpo $(DEPDIR)/CppUTestExtTests-TestMockPlugin.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/CppUTestExt/TestMockPlugin.cpp' object='CppUTestExtTests-TestMockPlugin.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestExtTests-TestMockPlugin.o `test -f 'tests/CppUTestExt/TestMockPlugin.cpp' || echo '$(srcdir)/'`tests/CppUTestExt/TestMockPlugin.cpp CppUTestExtTests-TestMockPlugin.obj: tests/CppUTestExt/TestMockPlugin.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestExtTests-TestMockPlugin.obj -MD -MP -MF $(DEPDIR)/CppUTestExtTests-TestMockPlugin.Tpo -c -o CppUTestExtTests-TestMockPlugin.obj `if test -f 'tests/CppUTestExt/TestMockPlugin.cpp'; then $(CYGPATH_W) 'tests/CppUTestExt/TestMockPlugin.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/CppUTestExt/TestMockPlugin.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestExtTests-TestMockPlugin.Tpo $(DEPDIR)/CppUTestExtTests-TestMockPlugin.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/CppUTestExt/TestMockPlugin.cpp' object='CppUTestExtTests-TestMockPlugin.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestExtTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestExtTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestExtTests-TestMockPlugin.obj `if test -f 'tests/CppUTestExt/TestMockPlugin.cpp'; then $(CYGPATH_W) 'tests/CppUTestExt/TestMockPlugin.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/CppUTestExt/TestMockPlugin.cpp'; fi` CppUTestTests-AllTests.o: tests/AllTests.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestTests-AllTests.o -MD -MP -MF $(DEPDIR)/CppUTestTests-AllTests.Tpo -c -o CppUTestTests-AllTests.o `test -f 'tests/AllTests.cpp' || echo '$(srcdir)/'`tests/AllTests.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestTests-AllTests.Tpo $(DEPDIR)/CppUTestTests-AllTests.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/AllTests.cpp' object='CppUTestTests-AllTests.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestTests-AllTests.o `test -f 'tests/AllTests.cpp' || echo '$(srcdir)/'`tests/AllTests.cpp CppUTestTests-AllTests.obj: tests/AllTests.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestTests-AllTests.obj -MD -MP -MF $(DEPDIR)/CppUTestTests-AllTests.Tpo -c -o CppUTestTests-AllTests.obj `if test -f 'tests/AllTests.cpp'; then $(CYGPATH_W) 'tests/AllTests.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/AllTests.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestTests-AllTests.Tpo $(DEPDIR)/CppUTestTests-AllTests.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/AllTests.cpp' object='CppUTestTests-AllTests.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestTests-AllTests.obj `if test -f 'tests/AllTests.cpp'; then $(CYGPATH_W) 'tests/AllTests.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/AllTests.cpp'; fi` CppUTestTests-SetPluginTest.o: tests/SetPluginTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestTests-SetPluginTest.o -MD -MP -MF $(DEPDIR)/CppUTestTests-SetPluginTest.Tpo -c -o CppUTestTests-SetPluginTest.o `test -f 'tests/SetPluginTest.cpp' || echo '$(srcdir)/'`tests/SetPluginTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestTests-SetPluginTest.Tpo $(DEPDIR)/CppUTestTests-SetPluginTest.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/SetPluginTest.cpp' object='CppUTestTests-SetPluginTest.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestTests-SetPluginTest.o `test -f 'tests/SetPluginTest.cpp' || echo '$(srcdir)/'`tests/SetPluginTest.cpp CppUTestTests-SetPluginTest.obj: tests/SetPluginTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestTests-SetPluginTest.obj -MD -MP -MF $(DEPDIR)/CppUTestTests-SetPluginTest.Tpo -c -o CppUTestTests-SetPluginTest.obj `if test -f 'tests/SetPluginTest.cpp'; then $(CYGPATH_W) 'tests/SetPluginTest.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/SetPluginTest.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestTests-SetPluginTest.Tpo $(DEPDIR)/CppUTestTests-SetPluginTest.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/SetPluginTest.cpp' object='CppUTestTests-SetPluginTest.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestTests-SetPluginTest.obj `if test -f 'tests/SetPluginTest.cpp'; then $(CYGPATH_W) 'tests/SetPluginTest.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/SetPluginTest.cpp'; fi` CppUTestTests-CheatSheetTest.o: tests/CheatSheetTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestTests-CheatSheetTest.o -MD -MP -MF $(DEPDIR)/CppUTestTests-CheatSheetTest.Tpo -c -o CppUTestTests-CheatSheetTest.o `test -f 'tests/CheatSheetTest.cpp' || echo '$(srcdir)/'`tests/CheatSheetTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestTests-CheatSheetTest.Tpo $(DEPDIR)/CppUTestTests-CheatSheetTest.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/CheatSheetTest.cpp' object='CppUTestTests-CheatSheetTest.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestTests-CheatSheetTest.o `test -f 'tests/CheatSheetTest.cpp' || echo '$(srcdir)/'`tests/CheatSheetTest.cpp CppUTestTests-CheatSheetTest.obj: tests/CheatSheetTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestTests-CheatSheetTest.obj -MD -MP -MF $(DEPDIR)/CppUTestTests-CheatSheetTest.Tpo -c -o CppUTestTests-CheatSheetTest.obj `if test -f 'tests/CheatSheetTest.cpp'; then $(CYGPATH_W) 'tests/CheatSheetTest.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/CheatSheetTest.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestTests-CheatSheetTest.Tpo $(DEPDIR)/CppUTestTests-CheatSheetTest.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/CheatSheetTest.cpp' object='CppUTestTests-CheatSheetTest.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestTests-CheatSheetTest.obj `if test -f 'tests/CheatSheetTest.cpp'; then $(CYGPATH_W) 'tests/CheatSheetTest.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/CheatSheetTest.cpp'; fi` CppUTestTests-SimpleStringTest.o: tests/SimpleStringTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestTests-SimpleStringTest.o -MD -MP -MF $(DEPDIR)/CppUTestTests-SimpleStringTest.Tpo -c -o CppUTestTests-SimpleStringTest.o `test -f 'tests/SimpleStringTest.cpp' || echo '$(srcdir)/'`tests/SimpleStringTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestTests-SimpleStringTest.Tpo $(DEPDIR)/CppUTestTests-SimpleStringTest.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/SimpleStringTest.cpp' object='CppUTestTests-SimpleStringTest.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestTests-SimpleStringTest.o `test -f 'tests/SimpleStringTest.cpp' || echo '$(srcdir)/'`tests/SimpleStringTest.cpp CppUTestTests-SimpleStringTest.obj: tests/SimpleStringTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestTests-SimpleStringTest.obj -MD -MP -MF $(DEPDIR)/CppUTestTests-SimpleStringTest.Tpo -c -o CppUTestTests-SimpleStringTest.obj `if test -f 'tests/SimpleStringTest.cpp'; then $(CYGPATH_W) 'tests/SimpleStringTest.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/SimpleStringTest.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestTests-SimpleStringTest.Tpo $(DEPDIR)/CppUTestTests-SimpleStringTest.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/SimpleStringTest.cpp' object='CppUTestTests-SimpleStringTest.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestTests-SimpleStringTest.obj `if test -f 'tests/SimpleStringTest.cpp'; then $(CYGPATH_W) 'tests/SimpleStringTest.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/SimpleStringTest.cpp'; fi` CppUTestTests-CommandLineArgumentsTest.o: tests/CommandLineArgumentsTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestTests-CommandLineArgumentsTest.o -MD -MP -MF $(DEPDIR)/CppUTestTests-CommandLineArgumentsTest.Tpo -c -o CppUTestTests-CommandLineArgumentsTest.o `test -f 'tests/CommandLineArgumentsTest.cpp' || echo '$(srcdir)/'`tests/CommandLineArgumentsTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestTests-CommandLineArgumentsTest.Tpo $(DEPDIR)/CppUTestTests-CommandLineArgumentsTest.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/CommandLineArgumentsTest.cpp' object='CppUTestTests-CommandLineArgumentsTest.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestTests-CommandLineArgumentsTest.o `test -f 'tests/CommandLineArgumentsTest.cpp' || echo '$(srcdir)/'`tests/CommandLineArgumentsTest.cpp CppUTestTests-CommandLineArgumentsTest.obj: tests/CommandLineArgumentsTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestTests-CommandLineArgumentsTest.obj -MD -MP -MF $(DEPDIR)/CppUTestTests-CommandLineArgumentsTest.Tpo -c -o CppUTestTests-CommandLineArgumentsTest.obj `if test -f 'tests/CommandLineArgumentsTest.cpp'; then $(CYGPATH_W) 'tests/CommandLineArgumentsTest.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/CommandLineArgumentsTest.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestTests-CommandLineArgumentsTest.Tpo $(DEPDIR)/CppUTestTests-CommandLineArgumentsTest.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/CommandLineArgumentsTest.cpp' object='CppUTestTests-CommandLineArgumentsTest.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestTests-CommandLineArgumentsTest.obj `if test -f 'tests/CommandLineArgumentsTest.cpp'; then $(CYGPATH_W) 'tests/CommandLineArgumentsTest.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/CommandLineArgumentsTest.cpp'; fi` CppUTestTests-TestFailureTest.o: tests/TestFailureTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestTests-TestFailureTest.o -MD -MP -MF $(DEPDIR)/CppUTestTests-TestFailureTest.Tpo -c -o CppUTestTests-TestFailureTest.o `test -f 'tests/TestFailureTest.cpp' || echo '$(srcdir)/'`tests/TestFailureTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestTests-TestFailureTest.Tpo $(DEPDIR)/CppUTestTests-TestFailureTest.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/TestFailureTest.cpp' object='CppUTestTests-TestFailureTest.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestTests-TestFailureTest.o `test -f 'tests/TestFailureTest.cpp' || echo '$(srcdir)/'`tests/TestFailureTest.cpp CppUTestTests-TestFailureTest.obj: tests/TestFailureTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestTests-TestFailureTest.obj -MD -MP -MF $(DEPDIR)/CppUTestTests-TestFailureTest.Tpo -c -o CppUTestTests-TestFailureTest.obj `if test -f 'tests/TestFailureTest.cpp'; then $(CYGPATH_W) 'tests/TestFailureTest.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/TestFailureTest.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestTests-TestFailureTest.Tpo $(DEPDIR)/CppUTestTests-TestFailureTest.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/TestFailureTest.cpp' object='CppUTestTests-TestFailureTest.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestTests-TestFailureTest.obj `if test -f 'tests/TestFailureTest.cpp'; then $(CYGPATH_W) 'tests/TestFailureTest.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/TestFailureTest.cpp'; fi` CppUTestTests-CommandLineTestRunnerTest.o: tests/CommandLineTestRunnerTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestTests-CommandLineTestRunnerTest.o -MD -MP -MF $(DEPDIR)/CppUTestTests-CommandLineTestRunnerTest.Tpo -c -o CppUTestTests-CommandLineTestRunnerTest.o `test -f 'tests/CommandLineTestRunnerTest.cpp' || echo '$(srcdir)/'`tests/CommandLineTestRunnerTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestTests-CommandLineTestRunnerTest.Tpo $(DEPDIR)/CppUTestTests-CommandLineTestRunnerTest.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/CommandLineTestRunnerTest.cpp' object='CppUTestTests-CommandLineTestRunnerTest.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestTests-CommandLineTestRunnerTest.o `test -f 'tests/CommandLineTestRunnerTest.cpp' || echo '$(srcdir)/'`tests/CommandLineTestRunnerTest.cpp CppUTestTests-CommandLineTestRunnerTest.obj: tests/CommandLineTestRunnerTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestTests-CommandLineTestRunnerTest.obj -MD -MP -MF $(DEPDIR)/CppUTestTests-CommandLineTestRunnerTest.Tpo -c -o CppUTestTests-CommandLineTestRunnerTest.obj `if test -f 'tests/CommandLineTestRunnerTest.cpp'; then $(CYGPATH_W) 'tests/CommandLineTestRunnerTest.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/CommandLineTestRunnerTest.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestTests-CommandLineTestRunnerTest.Tpo $(DEPDIR)/CppUTestTests-CommandLineTestRunnerTest.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/CommandLineTestRunnerTest.cpp' object='CppUTestTests-CommandLineTestRunnerTest.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestTests-CommandLineTestRunnerTest.obj `if test -f 'tests/CommandLineTestRunnerTest.cpp'; then $(CYGPATH_W) 'tests/CommandLineTestRunnerTest.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/CommandLineTestRunnerTest.cpp'; fi` CppUTestTests-TestFilterTest.o: tests/TestFilterTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestTests-TestFilterTest.o -MD -MP -MF $(DEPDIR)/CppUTestTests-TestFilterTest.Tpo -c -o CppUTestTests-TestFilterTest.o `test -f 'tests/TestFilterTest.cpp' || echo '$(srcdir)/'`tests/TestFilterTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestTests-TestFilterTest.Tpo $(DEPDIR)/CppUTestTests-TestFilterTest.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/TestFilterTest.cpp' object='CppUTestTests-TestFilterTest.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestTests-TestFilterTest.o `test -f 'tests/TestFilterTest.cpp' || echo '$(srcdir)/'`tests/TestFilterTest.cpp CppUTestTests-TestFilterTest.obj: tests/TestFilterTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestTests-TestFilterTest.obj -MD -MP -MF $(DEPDIR)/CppUTestTests-TestFilterTest.Tpo -c -o CppUTestTests-TestFilterTest.obj `if test -f 'tests/TestFilterTest.cpp'; then $(CYGPATH_W) 'tests/TestFilterTest.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/TestFilterTest.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestTests-TestFilterTest.Tpo $(DEPDIR)/CppUTestTests-TestFilterTest.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/TestFilterTest.cpp' object='CppUTestTests-TestFilterTest.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestTests-TestFilterTest.obj `if test -f 'tests/TestFilterTest.cpp'; then $(CYGPATH_W) 'tests/TestFilterTest.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/TestFilterTest.cpp'; fi` CppUTestTests-TestHarness_cTest.o: tests/TestHarness_cTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestTests-TestHarness_cTest.o -MD -MP -MF $(DEPDIR)/CppUTestTests-TestHarness_cTest.Tpo -c -o CppUTestTests-TestHarness_cTest.o `test -f 'tests/TestHarness_cTest.cpp' || echo '$(srcdir)/'`tests/TestHarness_cTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestTests-TestHarness_cTest.Tpo $(DEPDIR)/CppUTestTests-TestHarness_cTest.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/TestHarness_cTest.cpp' object='CppUTestTests-TestHarness_cTest.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestTests-TestHarness_cTest.o `test -f 'tests/TestHarness_cTest.cpp' || echo '$(srcdir)/'`tests/TestHarness_cTest.cpp CppUTestTests-TestHarness_cTest.obj: tests/TestHarness_cTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestTests-TestHarness_cTest.obj -MD -MP -MF $(DEPDIR)/CppUTestTests-TestHarness_cTest.Tpo -c -o CppUTestTests-TestHarness_cTest.obj `if test -f 'tests/TestHarness_cTest.cpp'; then $(CYGPATH_W) 'tests/TestHarness_cTest.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/TestHarness_cTest.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestTests-TestHarness_cTest.Tpo $(DEPDIR)/CppUTestTests-TestHarness_cTest.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/TestHarness_cTest.cpp' object='CppUTestTests-TestHarness_cTest.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestTests-TestHarness_cTest.obj `if test -f 'tests/TestHarness_cTest.cpp'; then $(CYGPATH_W) 'tests/TestHarness_cTest.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/TestHarness_cTest.cpp'; fi` CppUTestTests-JUnitOutputTest.o: tests/JUnitOutputTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestTests-JUnitOutputTest.o -MD -MP -MF $(DEPDIR)/CppUTestTests-JUnitOutputTest.Tpo -c -o CppUTestTests-JUnitOutputTest.o `test -f 'tests/JUnitOutputTest.cpp' || echo '$(srcdir)/'`tests/JUnitOutputTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestTests-JUnitOutputTest.Tpo $(DEPDIR)/CppUTestTests-JUnitOutputTest.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/JUnitOutputTest.cpp' object='CppUTestTests-JUnitOutputTest.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestTests-JUnitOutputTest.o `test -f 'tests/JUnitOutputTest.cpp' || echo '$(srcdir)/'`tests/JUnitOutputTest.cpp CppUTestTests-JUnitOutputTest.obj: tests/JUnitOutputTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestTests-JUnitOutputTest.obj -MD -MP -MF $(DEPDIR)/CppUTestTests-JUnitOutputTest.Tpo -c -o CppUTestTests-JUnitOutputTest.obj `if test -f 'tests/JUnitOutputTest.cpp'; then $(CYGPATH_W) 'tests/JUnitOutputTest.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/JUnitOutputTest.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestTests-JUnitOutputTest.Tpo $(DEPDIR)/CppUTestTests-JUnitOutputTest.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/JUnitOutputTest.cpp' object='CppUTestTests-JUnitOutputTest.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestTests-JUnitOutputTest.obj `if test -f 'tests/JUnitOutputTest.cpp'; then $(CYGPATH_W) 'tests/JUnitOutputTest.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/JUnitOutputTest.cpp'; fi` CppUTestTests-MemoryLeakDetectorTest.o: tests/MemoryLeakDetectorTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestTests-MemoryLeakDetectorTest.o -MD -MP -MF $(DEPDIR)/CppUTestTests-MemoryLeakDetectorTest.Tpo -c -o CppUTestTests-MemoryLeakDetectorTest.o `test -f 'tests/MemoryLeakDetectorTest.cpp' || echo '$(srcdir)/'`tests/MemoryLeakDetectorTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestTests-MemoryLeakDetectorTest.Tpo $(DEPDIR)/CppUTestTests-MemoryLeakDetectorTest.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/MemoryLeakDetectorTest.cpp' object='CppUTestTests-MemoryLeakDetectorTest.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestTests-MemoryLeakDetectorTest.o `test -f 'tests/MemoryLeakDetectorTest.cpp' || echo '$(srcdir)/'`tests/MemoryLeakDetectorTest.cpp CppUTestTests-MemoryLeakDetectorTest.obj: tests/MemoryLeakDetectorTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestTests-MemoryLeakDetectorTest.obj -MD -MP -MF $(DEPDIR)/CppUTestTests-MemoryLeakDetectorTest.Tpo -c -o CppUTestTests-MemoryLeakDetectorTest.obj `if test -f 'tests/MemoryLeakDetectorTest.cpp'; then $(CYGPATH_W) 'tests/MemoryLeakDetectorTest.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/MemoryLeakDetectorTest.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestTests-MemoryLeakDetectorTest.Tpo $(DEPDIR)/CppUTestTests-MemoryLeakDetectorTest.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/MemoryLeakDetectorTest.cpp' object='CppUTestTests-MemoryLeakDetectorTest.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestTests-MemoryLeakDetectorTest.obj `if test -f 'tests/MemoryLeakDetectorTest.cpp'; then $(CYGPATH_W) 'tests/MemoryLeakDetectorTest.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/MemoryLeakDetectorTest.cpp'; fi` CppUTestTests-TestInstallerTest.o: tests/TestInstallerTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestTests-TestInstallerTest.o -MD -MP -MF $(DEPDIR)/CppUTestTests-TestInstallerTest.Tpo -c -o CppUTestTests-TestInstallerTest.o `test -f 'tests/TestInstallerTest.cpp' || echo '$(srcdir)/'`tests/TestInstallerTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestTests-TestInstallerTest.Tpo $(DEPDIR)/CppUTestTests-TestInstallerTest.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/TestInstallerTest.cpp' object='CppUTestTests-TestInstallerTest.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestTests-TestInstallerTest.o `test -f 'tests/TestInstallerTest.cpp' || echo '$(srcdir)/'`tests/TestInstallerTest.cpp CppUTestTests-TestInstallerTest.obj: tests/TestInstallerTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestTests-TestInstallerTest.obj -MD -MP -MF $(DEPDIR)/CppUTestTests-TestInstallerTest.Tpo -c -o CppUTestTests-TestInstallerTest.obj `if test -f 'tests/TestInstallerTest.cpp'; then $(CYGPATH_W) 'tests/TestInstallerTest.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/TestInstallerTest.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestTests-TestInstallerTest.Tpo $(DEPDIR)/CppUTestTests-TestInstallerTest.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/TestInstallerTest.cpp' object='CppUTestTests-TestInstallerTest.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestTests-TestInstallerTest.obj `if test -f 'tests/TestInstallerTest.cpp'; then $(CYGPATH_W) 'tests/TestInstallerTest.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/TestInstallerTest.cpp'; fi` CppUTestTests-MemoryLeakOperatorOverloadsTest.o: tests/MemoryLeakOperatorOverloadsTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestTests-MemoryLeakOperatorOverloadsTest.o -MD -MP -MF $(DEPDIR)/CppUTestTests-MemoryLeakOperatorOverloadsTest.Tpo -c -o CppUTestTests-MemoryLeakOperatorOverloadsTest.o `test -f 'tests/MemoryLeakOperatorOverloadsTest.cpp' || echo '$(srcdir)/'`tests/MemoryLeakOperatorOverloadsTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestTests-MemoryLeakOperatorOverloadsTest.Tpo $(DEPDIR)/CppUTestTests-MemoryLeakOperatorOverloadsTest.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/MemoryLeakOperatorOverloadsTest.cpp' object='CppUTestTests-MemoryLeakOperatorOverloadsTest.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestTests-MemoryLeakOperatorOverloadsTest.o `test -f 'tests/MemoryLeakOperatorOverloadsTest.cpp' || echo '$(srcdir)/'`tests/MemoryLeakOperatorOverloadsTest.cpp CppUTestTests-MemoryLeakOperatorOverloadsTest.obj: tests/MemoryLeakOperatorOverloadsTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestTests-MemoryLeakOperatorOverloadsTest.obj -MD -MP -MF $(DEPDIR)/CppUTestTests-MemoryLeakOperatorOverloadsTest.Tpo -c -o CppUTestTests-MemoryLeakOperatorOverloadsTest.obj `if test -f 'tests/MemoryLeakOperatorOverloadsTest.cpp'; then $(CYGPATH_W) 'tests/MemoryLeakOperatorOverloadsTest.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/MemoryLeakOperatorOverloadsTest.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestTests-MemoryLeakOperatorOverloadsTest.Tpo $(DEPDIR)/CppUTestTests-MemoryLeakOperatorOverloadsTest.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/MemoryLeakOperatorOverloadsTest.cpp' object='CppUTestTests-MemoryLeakOperatorOverloadsTest.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestTests-MemoryLeakOperatorOverloadsTest.obj `if test -f 'tests/MemoryLeakOperatorOverloadsTest.cpp'; then $(CYGPATH_W) 'tests/MemoryLeakOperatorOverloadsTest.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/MemoryLeakOperatorOverloadsTest.cpp'; fi` CppUTestTests-TestMemoryAllocatorTest.o: tests/TestMemoryAllocatorTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestTests-TestMemoryAllocatorTest.o -MD -MP -MF $(DEPDIR)/CppUTestTests-TestMemoryAllocatorTest.Tpo -c -o CppUTestTests-TestMemoryAllocatorTest.o `test -f 'tests/TestMemoryAllocatorTest.cpp' || echo '$(srcdir)/'`tests/TestMemoryAllocatorTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestTests-TestMemoryAllocatorTest.Tpo $(DEPDIR)/CppUTestTests-TestMemoryAllocatorTest.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/TestMemoryAllocatorTest.cpp' object='CppUTestTests-TestMemoryAllocatorTest.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestTests-TestMemoryAllocatorTest.o `test -f 'tests/TestMemoryAllocatorTest.cpp' || echo '$(srcdir)/'`tests/TestMemoryAllocatorTest.cpp CppUTestTests-TestMemoryAllocatorTest.obj: tests/TestMemoryAllocatorTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestTests-TestMemoryAllocatorTest.obj -MD -MP -MF $(DEPDIR)/CppUTestTests-TestMemoryAllocatorTest.Tpo -c -o CppUTestTests-TestMemoryAllocatorTest.obj `if test -f 'tests/TestMemoryAllocatorTest.cpp'; then $(CYGPATH_W) 'tests/TestMemoryAllocatorTest.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/TestMemoryAllocatorTest.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestTests-TestMemoryAllocatorTest.Tpo $(DEPDIR)/CppUTestTests-TestMemoryAllocatorTest.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/TestMemoryAllocatorTest.cpp' object='CppUTestTests-TestMemoryAllocatorTest.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestTests-TestMemoryAllocatorTest.obj `if test -f 'tests/TestMemoryAllocatorTest.cpp'; then $(CYGPATH_W) 'tests/TestMemoryAllocatorTest.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/TestMemoryAllocatorTest.cpp'; fi` CppUTestTests-MemoryLeakWarningTest.o: tests/MemoryLeakWarningTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestTests-MemoryLeakWarningTest.o -MD -MP -MF $(DEPDIR)/CppUTestTests-MemoryLeakWarningTest.Tpo -c -o CppUTestTests-MemoryLeakWarningTest.o `test -f 'tests/MemoryLeakWarningTest.cpp' || echo '$(srcdir)/'`tests/MemoryLeakWarningTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestTests-MemoryLeakWarningTest.Tpo $(DEPDIR)/CppUTestTests-MemoryLeakWarningTest.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/MemoryLeakWarningTest.cpp' object='CppUTestTests-MemoryLeakWarningTest.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestTests-MemoryLeakWarningTest.o `test -f 'tests/MemoryLeakWarningTest.cpp' || echo '$(srcdir)/'`tests/MemoryLeakWarningTest.cpp CppUTestTests-MemoryLeakWarningTest.obj: tests/MemoryLeakWarningTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestTests-MemoryLeakWarningTest.obj -MD -MP -MF $(DEPDIR)/CppUTestTests-MemoryLeakWarningTest.Tpo -c -o CppUTestTests-MemoryLeakWarningTest.obj `if test -f 'tests/MemoryLeakWarningTest.cpp'; then $(CYGPATH_W) 'tests/MemoryLeakWarningTest.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/MemoryLeakWarningTest.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestTests-MemoryLeakWarningTest.Tpo $(DEPDIR)/CppUTestTests-MemoryLeakWarningTest.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/MemoryLeakWarningTest.cpp' object='CppUTestTests-MemoryLeakWarningTest.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestTests-MemoryLeakWarningTest.obj `if test -f 'tests/MemoryLeakWarningTest.cpp'; then $(CYGPATH_W) 'tests/MemoryLeakWarningTest.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/MemoryLeakWarningTest.cpp'; fi` CppUTestTests-TestOutputTest.o: tests/TestOutputTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestTests-TestOutputTest.o -MD -MP -MF $(DEPDIR)/CppUTestTests-TestOutputTest.Tpo -c -o CppUTestTests-TestOutputTest.o `test -f 'tests/TestOutputTest.cpp' || echo '$(srcdir)/'`tests/TestOutputTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestTests-TestOutputTest.Tpo $(DEPDIR)/CppUTestTests-TestOutputTest.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/TestOutputTest.cpp' object='CppUTestTests-TestOutputTest.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestTests-TestOutputTest.o `test -f 'tests/TestOutputTest.cpp' || echo '$(srcdir)/'`tests/TestOutputTest.cpp CppUTestTests-TestOutputTest.obj: tests/TestOutputTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestTests-TestOutputTest.obj -MD -MP -MF $(DEPDIR)/CppUTestTests-TestOutputTest.Tpo -c -o CppUTestTests-TestOutputTest.obj `if test -f 'tests/TestOutputTest.cpp'; then $(CYGPATH_W) 'tests/TestOutputTest.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/TestOutputTest.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestTests-TestOutputTest.Tpo $(DEPDIR)/CppUTestTests-TestOutputTest.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/TestOutputTest.cpp' object='CppUTestTests-TestOutputTest.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestTests-TestOutputTest.obj `if test -f 'tests/TestOutputTest.cpp'; then $(CYGPATH_W) 'tests/TestOutputTest.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/TestOutputTest.cpp'; fi` CppUTestTests-AllocLetTestFreeTest.o: tests/AllocLetTestFreeTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestTests-AllocLetTestFreeTest.o -MD -MP -MF $(DEPDIR)/CppUTestTests-AllocLetTestFreeTest.Tpo -c -o CppUTestTests-AllocLetTestFreeTest.o `test -f 'tests/AllocLetTestFreeTest.cpp' || echo '$(srcdir)/'`tests/AllocLetTestFreeTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestTests-AllocLetTestFreeTest.Tpo $(DEPDIR)/CppUTestTests-AllocLetTestFreeTest.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/AllocLetTestFreeTest.cpp' object='CppUTestTests-AllocLetTestFreeTest.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestTests-AllocLetTestFreeTest.o `test -f 'tests/AllocLetTestFreeTest.cpp' || echo '$(srcdir)/'`tests/AllocLetTestFreeTest.cpp CppUTestTests-AllocLetTestFreeTest.obj: tests/AllocLetTestFreeTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestTests-AllocLetTestFreeTest.obj -MD -MP -MF $(DEPDIR)/CppUTestTests-AllocLetTestFreeTest.Tpo -c -o CppUTestTests-AllocLetTestFreeTest.obj `if test -f 'tests/AllocLetTestFreeTest.cpp'; then $(CYGPATH_W) 'tests/AllocLetTestFreeTest.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/AllocLetTestFreeTest.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestTests-AllocLetTestFreeTest.Tpo $(DEPDIR)/CppUTestTests-AllocLetTestFreeTest.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/AllocLetTestFreeTest.cpp' object='CppUTestTests-AllocLetTestFreeTest.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestTests-AllocLetTestFreeTest.obj `if test -f 'tests/AllocLetTestFreeTest.cpp'; then $(CYGPATH_W) 'tests/AllocLetTestFreeTest.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/AllocLetTestFreeTest.cpp'; fi` CppUTestTests-NullTestTest.o: tests/NullTestTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestTests-NullTestTest.o -MD -MP -MF $(DEPDIR)/CppUTestTests-NullTestTest.Tpo -c -o CppUTestTests-NullTestTest.o `test -f 'tests/NullTestTest.cpp' || echo '$(srcdir)/'`tests/NullTestTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestTests-NullTestTest.Tpo $(DEPDIR)/CppUTestTests-NullTestTest.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/NullTestTest.cpp' object='CppUTestTests-NullTestTest.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestTests-NullTestTest.o `test -f 'tests/NullTestTest.cpp' || echo '$(srcdir)/'`tests/NullTestTest.cpp CppUTestTests-NullTestTest.obj: tests/NullTestTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestTests-NullTestTest.obj -MD -MP -MF $(DEPDIR)/CppUTestTests-NullTestTest.Tpo -c -o CppUTestTests-NullTestTest.obj `if test -f 'tests/NullTestTest.cpp'; then $(CYGPATH_W) 'tests/NullTestTest.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/NullTestTest.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestTests-NullTestTest.Tpo $(DEPDIR)/CppUTestTests-NullTestTest.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/NullTestTest.cpp' object='CppUTestTests-NullTestTest.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestTests-NullTestTest.obj `if test -f 'tests/NullTestTest.cpp'; then $(CYGPATH_W) 'tests/NullTestTest.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/NullTestTest.cpp'; fi` CppUTestTests-TestRegistryTest.o: tests/TestRegistryTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestTests-TestRegistryTest.o -MD -MP -MF $(DEPDIR)/CppUTestTests-TestRegistryTest.Tpo -c -o CppUTestTests-TestRegistryTest.o `test -f 'tests/TestRegistryTest.cpp' || echo '$(srcdir)/'`tests/TestRegistryTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestTests-TestRegistryTest.Tpo $(DEPDIR)/CppUTestTests-TestRegistryTest.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/TestRegistryTest.cpp' object='CppUTestTests-TestRegistryTest.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestTests-TestRegistryTest.o `test -f 'tests/TestRegistryTest.cpp' || echo '$(srcdir)/'`tests/TestRegistryTest.cpp CppUTestTests-TestRegistryTest.obj: tests/TestRegistryTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestTests-TestRegistryTest.obj -MD -MP -MF $(DEPDIR)/CppUTestTests-TestRegistryTest.Tpo -c -o CppUTestTests-TestRegistryTest.obj `if test -f 'tests/TestRegistryTest.cpp'; then $(CYGPATH_W) 'tests/TestRegistryTest.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/TestRegistryTest.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestTests-TestRegistryTest.Tpo $(DEPDIR)/CppUTestTests-TestRegistryTest.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/TestRegistryTest.cpp' object='CppUTestTests-TestRegistryTest.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestTests-TestRegistryTest.obj `if test -f 'tests/TestRegistryTest.cpp'; then $(CYGPATH_W) 'tests/TestRegistryTest.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/TestRegistryTest.cpp'; fi` CppUTestTests-PluginTest.o: tests/PluginTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestTests-PluginTest.o -MD -MP -MF $(DEPDIR)/CppUTestTests-PluginTest.Tpo -c -o CppUTestTests-PluginTest.o `test -f 'tests/PluginTest.cpp' || echo '$(srcdir)/'`tests/PluginTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestTests-PluginTest.Tpo $(DEPDIR)/CppUTestTests-PluginTest.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/PluginTest.cpp' object='CppUTestTests-PluginTest.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestTests-PluginTest.o `test -f 'tests/PluginTest.cpp' || echo '$(srcdir)/'`tests/PluginTest.cpp CppUTestTests-PluginTest.obj: tests/PluginTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestTests-PluginTest.obj -MD -MP -MF $(DEPDIR)/CppUTestTests-PluginTest.Tpo -c -o CppUTestTests-PluginTest.obj `if test -f 'tests/PluginTest.cpp'; then $(CYGPATH_W) 'tests/PluginTest.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/PluginTest.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestTests-PluginTest.Tpo $(DEPDIR)/CppUTestTests-PluginTest.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/PluginTest.cpp' object='CppUTestTests-PluginTest.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestTests-PluginTest.obj `if test -f 'tests/PluginTest.cpp'; then $(CYGPATH_W) 'tests/PluginTest.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/PluginTest.cpp'; fi` CppUTestTests-TestResultTest.o: tests/TestResultTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestTests-TestResultTest.o -MD -MP -MF $(DEPDIR)/CppUTestTests-TestResultTest.Tpo -c -o CppUTestTests-TestResultTest.o `test -f 'tests/TestResultTest.cpp' || echo '$(srcdir)/'`tests/TestResultTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestTests-TestResultTest.Tpo $(DEPDIR)/CppUTestTests-TestResultTest.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/TestResultTest.cpp' object='CppUTestTests-TestResultTest.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestTests-TestResultTest.o `test -f 'tests/TestResultTest.cpp' || echo '$(srcdir)/'`tests/TestResultTest.cpp CppUTestTests-TestResultTest.obj: tests/TestResultTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestTests-TestResultTest.obj -MD -MP -MF $(DEPDIR)/CppUTestTests-TestResultTest.Tpo -c -o CppUTestTests-TestResultTest.obj `if test -f 'tests/TestResultTest.cpp'; then $(CYGPATH_W) 'tests/TestResultTest.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/TestResultTest.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestTests-TestResultTest.Tpo $(DEPDIR)/CppUTestTests-TestResultTest.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/TestResultTest.cpp' object='CppUTestTests-TestResultTest.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestTests-TestResultTest.obj `if test -f 'tests/TestResultTest.cpp'; then $(CYGPATH_W) 'tests/TestResultTest.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/TestResultTest.cpp'; fi` CppUTestTests-PreprocessorTest.o: tests/PreprocessorTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestTests-PreprocessorTest.o -MD -MP -MF $(DEPDIR)/CppUTestTests-PreprocessorTest.Tpo -c -o CppUTestTests-PreprocessorTest.o `test -f 'tests/PreprocessorTest.cpp' || echo '$(srcdir)/'`tests/PreprocessorTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestTests-PreprocessorTest.Tpo $(DEPDIR)/CppUTestTests-PreprocessorTest.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/PreprocessorTest.cpp' object='CppUTestTests-PreprocessorTest.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestTests-PreprocessorTest.o `test -f 'tests/PreprocessorTest.cpp' || echo '$(srcdir)/'`tests/PreprocessorTest.cpp CppUTestTests-PreprocessorTest.obj: tests/PreprocessorTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestTests-PreprocessorTest.obj -MD -MP -MF $(DEPDIR)/CppUTestTests-PreprocessorTest.Tpo -c -o CppUTestTests-PreprocessorTest.obj `if test -f 'tests/PreprocessorTest.cpp'; then $(CYGPATH_W) 'tests/PreprocessorTest.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/PreprocessorTest.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestTests-PreprocessorTest.Tpo $(DEPDIR)/CppUTestTests-PreprocessorTest.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/PreprocessorTest.cpp' object='CppUTestTests-PreprocessorTest.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestTests-PreprocessorTest.obj `if test -f 'tests/PreprocessorTest.cpp'; then $(CYGPATH_W) 'tests/PreprocessorTest.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/PreprocessorTest.cpp'; fi` CppUTestTests-TestUTestMacro.o: tests/TestUTestMacro.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestTests-TestUTestMacro.o -MD -MP -MF $(DEPDIR)/CppUTestTests-TestUTestMacro.Tpo -c -o CppUTestTests-TestUTestMacro.o `test -f 'tests/TestUTestMacro.cpp' || echo '$(srcdir)/'`tests/TestUTestMacro.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestTests-TestUTestMacro.Tpo $(DEPDIR)/CppUTestTests-TestUTestMacro.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/TestUTestMacro.cpp' object='CppUTestTests-TestUTestMacro.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestTests-TestUTestMacro.o `test -f 'tests/TestUTestMacro.cpp' || echo '$(srcdir)/'`tests/TestUTestMacro.cpp CppUTestTests-TestUTestMacro.obj: tests/TestUTestMacro.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestTests-TestUTestMacro.obj -MD -MP -MF $(DEPDIR)/CppUTestTests-TestUTestMacro.Tpo -c -o CppUTestTests-TestUTestMacro.obj `if test -f 'tests/TestUTestMacro.cpp'; then $(CYGPATH_W) 'tests/TestUTestMacro.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/TestUTestMacro.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestTests-TestUTestMacro.Tpo $(DEPDIR)/CppUTestTests-TestUTestMacro.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/TestUTestMacro.cpp' object='CppUTestTests-TestUTestMacro.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestTests-TestUTestMacro.obj `if test -f 'tests/TestUTestMacro.cpp'; then $(CYGPATH_W) 'tests/TestUTestMacro.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/TestUTestMacro.cpp'; fi` CppUTestTests-AllocationInCppFile.o: tests/AllocationInCppFile.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestTests-AllocationInCppFile.o -MD -MP -MF $(DEPDIR)/CppUTestTests-AllocationInCppFile.Tpo -c -o CppUTestTests-AllocationInCppFile.o `test -f 'tests/AllocationInCppFile.cpp' || echo '$(srcdir)/'`tests/AllocationInCppFile.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestTests-AllocationInCppFile.Tpo $(DEPDIR)/CppUTestTests-AllocationInCppFile.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/AllocationInCppFile.cpp' object='CppUTestTests-AllocationInCppFile.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestTests-AllocationInCppFile.o `test -f 'tests/AllocationInCppFile.cpp' || echo '$(srcdir)/'`tests/AllocationInCppFile.cpp CppUTestTests-AllocationInCppFile.obj: tests/AllocationInCppFile.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestTests-AllocationInCppFile.obj -MD -MP -MF $(DEPDIR)/CppUTestTests-AllocationInCppFile.Tpo -c -o CppUTestTests-AllocationInCppFile.obj `if test -f 'tests/AllocationInCppFile.cpp'; then $(CYGPATH_W) 'tests/AllocationInCppFile.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/AllocationInCppFile.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestTests-AllocationInCppFile.Tpo $(DEPDIR)/CppUTestTests-AllocationInCppFile.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/AllocationInCppFile.cpp' object='CppUTestTests-AllocationInCppFile.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestTests-AllocationInCppFile.obj `if test -f 'tests/AllocationInCppFile.cpp'; then $(CYGPATH_W) 'tests/AllocationInCppFile.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/AllocationInCppFile.cpp'; fi` CppUTestTests-UtestTest.o: tests/UtestTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestTests-UtestTest.o -MD -MP -MF $(DEPDIR)/CppUTestTests-UtestTest.Tpo -c -o CppUTestTests-UtestTest.o `test -f 'tests/UtestTest.cpp' || echo '$(srcdir)/'`tests/UtestTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestTests-UtestTest.Tpo $(DEPDIR)/CppUTestTests-UtestTest.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/UtestTest.cpp' object='CppUTestTests-UtestTest.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestTests-UtestTest.o `test -f 'tests/UtestTest.cpp' || echo '$(srcdir)/'`tests/UtestTest.cpp CppUTestTests-UtestTest.obj: tests/UtestTest.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -MT CppUTestTests-UtestTest.obj -MD -MP -MF $(DEPDIR)/CppUTestTests-UtestTest.Tpo -c -o CppUTestTests-UtestTest.obj `if test -f 'tests/UtestTest.cpp'; then $(CYGPATH_W) 'tests/UtestTest.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/UtestTest.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/CppUTestTests-UtestTest.Tpo $(DEPDIR)/CppUTestTests-UtestTest.Po @am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tests/UtestTest.cpp' object='CppUTestTests-UtestTest.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CppUTestTests_CPPFLAGS) $(CPPFLAGS) $(CppUTestTests_CXXFLAGS) $(CXXFLAGS) -c -o CppUTestTests-UtestTest.obj `if test -f 'tests/UtestTest.cpp'; then $(CYGPATH_W) 'tests/UtestTest.cpp'; else $(CYGPATH_W) '$(srcdir)/tests/UtestTest.cpp'; fi` mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs distclean-libtool: -rm -f libtool config.lt 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-include_cpputestHEADERS: $(include_cpputest_HEADERS) @$(NORMAL_INSTALL) test -z "$(include_cpputestdir)" || $(MKDIR_P) "$(DESTDIR)$(include_cpputestdir)" @list='$(include_cpputest_HEADERS)'; test -n "$(include_cpputestdir)" || 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)$(include_cpputestdir)'"; \ $(INSTALL_HEADER) $$files "$(DESTDIR)$(include_cpputestdir)" || exit $$?; \ done uninstall-include_cpputestHEADERS: @$(NORMAL_UNINSTALL) @list='$(include_cpputest_HEADERS)'; test -n "$(include_cpputestdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ test -n "$$files" || exit 0; \ echo " ( cd '$(DESTDIR)$(include_cpputestdir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(include_cpputestdir)" && rm -f $$files install-include_cpputestextHEADERS: $(include_cpputestext_HEADERS) @$(NORMAL_INSTALL) test -z "$(include_cpputestextdir)" || $(MKDIR_P) "$(DESTDIR)$(include_cpputestextdir)" @list='$(include_cpputestext_HEADERS)'; test -n "$(include_cpputestextdir)" || 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)$(include_cpputestextdir)'"; \ $(INSTALL_HEADER) $$files "$(DESTDIR)$(include_cpputestextdir)" || exit $$?; \ done uninstall-include_cpputestextHEADERS: @$(NORMAL_UNINSTALL) @list='$(include_cpputestext_HEADERS)'; test -n "$(include_cpputestextdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ test -n "$$files" || exit 0; \ echo " ( cd '$(DESTDIR)$(include_cpputestextdir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(include_cpputestextdir)" && rm -f $$files ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) set x; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) @failed=0; all=0; xfail=0; xpass=0; skip=0; \ srcdir=$(srcdir); export srcdir; \ list=' $(TESTS) '; \ $(am__tty_colors); \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ elif test -f $$tst; then dir=; \ else dir="$(srcdir)/"; fi; \ if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ *[\ \ ]$$tst[\ \ ]*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ col=$$red; res=XPASS; \ ;; \ *) \ col=$$grn; res=PASS; \ ;; \ esac; \ elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ *[\ \ ]$$tst[\ \ ]*) \ xfail=`expr $$xfail + 1`; \ col=$$lgn; res=XFAIL; \ ;; \ *) \ failed=`expr $$failed + 1`; \ col=$$red; res=FAIL; \ ;; \ esac; \ else \ skip=`expr $$skip + 1`; \ col=$$blu; res=SKIP; \ fi; \ echo "$${col}$$res$${std}: $$tst"; \ done; \ if test "$$all" -eq 1; then \ tests="test"; \ All=""; \ else \ tests="tests"; \ All="All "; \ fi; \ if test "$$failed" -eq 0; then \ if test "$$xfail" -eq 0; then \ banner="$$All$$all $$tests passed"; \ else \ if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \ banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \ fi; \ else \ if test "$$xpass" -eq 0; then \ banner="$$failed of $$all $$tests failed"; \ else \ if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \ banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \ fi; \ fi; \ dashes="$$banner"; \ skipped=""; \ if test "$$skip" -ne 0; then \ if test "$$skip" -eq 1; then \ skipped="($$skip test was not run)"; \ else \ skipped="($$skip tests were not run)"; \ fi; \ test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ dashes="$$skipped"; \ fi; \ report=""; \ if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ report="Please report to $(PACKAGE_BUGREPORT)"; \ test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ dashes="$$report"; \ fi; \ dashes=`echo "$$dashes" | sed s/./=/g`; \ if test "$$failed" -eq 0; then \ echo "$$grn$$dashes"; \ else \ echo "$$red$$dashes"; \ fi; \ echo "$$banner"; \ test -z "$$skipped" || echo "$$skipped"; \ test -z "$$report" || echo "$$report"; \ echo "$$dashes$$std"; \ test "$$failed" -eq 0; \ else :; fi 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 -test -n "$(am__skip_mode_fix)" \ || find "$(distdir)" -type d ! -perm -755 \ -exec chmod u+rwx,go+rx {} \; -o \ ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ || chmod -R a+r "$(distdir)" dist-gzip: distdir tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz $(am__remove_distdir) dist-bzip2: distdir tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2 $(am__remove_distdir) dist-lzma: distdir tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma $(am__remove_distdir) dist-xz: distdir tardir=$(distdir) && $(am__tar) | xz -c >$(distdir).tar.xz $(am__remove_distdir) dist-tarZ: distdir tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z $(am__remove_distdir) dist-shar: distdir shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz $(am__remove_distdir) dist-zip: distdir -rm -f $(distdir).zip zip -rq $(distdir).zip $(distdir) $(am__remove_distdir) dist dist-all: distdir tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz $(am__remove_distdir) # This target untars the dist file and tries a VPATH configuration. Then # it guarantees that the distribution is self-contained by making another # tarfile. distcheck: dist case '$(DIST_ARCHIVES)' in \ *.tar.gz*) \ GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\ *.tar.bz2*) \ bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ *.tar.lzma*) \ lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\ *.tar.xz*) \ xz -dc $(distdir).tar.xz | $(am__untar) ;;\ *.tar.Z*) \ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ *.shar.gz*) \ GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\ *.zip*) \ unzip $(distdir).zip ;;\ esac chmod -R a-w $(distdir); chmod a+w $(distdir) mkdir $(distdir)/_build mkdir $(distdir)/_inst chmod a-w $(distdir) test -d $(distdir)/_build || exit 0; \ dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ && am__cwd=`pwd` \ && $(am__cd) $(distdir)/_build \ && ../configure --srcdir=.. --prefix="$$dc_install_base" \ $(DISTCHECK_CONFIGURE_FLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) dvi \ && $(MAKE) $(AM_MAKEFLAGS) check \ && $(MAKE) $(AM_MAKEFLAGS) install \ && $(MAKE) $(AM_MAKEFLAGS) installcheck \ && $(MAKE) $(AM_MAKEFLAGS) uninstall \ && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \ distuninstallcheck \ && chmod -R a-w "$$dc_install_base" \ && ({ \ (cd ../.. && umask 077 && mkdir "$$dc_destdir") \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \ distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \ } || { rm -rf "$$dc_destdir"; exit 1; }) \ && rm -rf "$$dc_destdir" \ && $(MAKE) $(AM_MAKEFLAGS) dist \ && rm -rf $(DIST_ARCHIVES) \ && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \ && cd "$$am__cwd" \ || exit 1 $(am__remove_distdir) @(echo "$(distdir) archives ready for distribution: "; \ list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' distuninstallcheck: @$(am__cd) '$(distuninstallcheck_dir)' \ && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \ || { echo "ERROR: files left after uninstall:" ; \ if test -n "$(DESTDIR)"; then \ echo " (check DESTDIR support)"; \ fi ; \ $(distuninstallcheck_listfiles) ; \ exit 1; } >&2 distcleancheck: distclean @if test '$(srcdir)' = . ; then \ echo "ERROR: distcleancheck can only run from a VPATH build" ; \ exit 1 ; \ fi @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left in build directory after distclean:" ; \ $(distcleancheck_listfiles) ; \ exit 1; } >&2 check-am: all-am $(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS) $(MAKE) $(AM_MAKEFLAGS) check-TESTS check: check-am all-am: Makefile $(LIBRARIES) $(DATA) $(HEADERS) config.h installdirs: for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(include_cpputestdir)" "$(DESTDIR)$(include_cpputestextdir)"; 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: -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES) clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-checkPROGRAMS clean-generic clean-libLIBRARIES \ clean-libtool mostlyclean-am distclean: distclean-am -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-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-include_cpputestHEADERS \ install-include_cpputestextHEADERS install-pkgconfigDATA install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-libLIBRARIES install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -rf $(top_srcdir)/autom4te.cache -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-include_cpputestHEADERS \ uninstall-include_cpputestextHEADERS uninstall-libLIBRARIES \ uninstall-pkgconfigDATA .MAKE: all check-am install-am install-strip .PHONY: CTAGS GTAGS all all-am am--refresh check check-TESTS check-am \ clean clean-checkPROGRAMS clean-generic clean-libLIBRARIES \ clean-libtool ctags dist dist-all dist-bzip2 dist-gzip \ dist-lzma 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-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-include_cpputestHEADERS \ install-include_cpputestextHEADERS install-info \ install-info-am install-libLIBRARIES install-man install-pdf \ install-pdf-am install-pkgconfigDATA install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ pdf pdf-am ps ps-am tags uninstall uninstall-am \ uninstall-include_cpputestHEADERS \ uninstall-include_cpputestextHEADERS uninstall-libLIBRARIES \ uninstall-pkgconfigDATA #RUN_CPPUTEST_EXT_TESTS = ./$(CPPUTEST_EXT_TESTS) -r check_all: @echo "Building without extensions" make distclean; $(srcdir)/configure --disable-extensions; make check @echo "Building without the Standard C library" make distclean; $(srcdir)/configure --disable-std-c; make @echo "Building without the Standard C++ library" make distclean; $(srcdir)/configure --disable-std-cpp; make check @echo "Building without memory leak detection" make distclean; $(srcdir)/configure --disable-memory-leak-detection; make check @echo "Building without memory leak detection and without Standard C++" make distclean; $(srcdir)/configure --disable-memory-leak-detection --disable--std-cpp; make check @echo "Generate a map file while building" make distclean; $(srcdir)/configure -enable-generate-map-file; make check if [ -s CppUTest.o.map.txt ]; then echo "Generating map file failed. Build failed!"; exit 1; fi @echo "Does the system have gcc? $(CPPUTEST_HAS_GCC)" if test "x$(CPPUTEST_HAS_GCC)" = xyes; then echo "Compiling with gcc"; make distclean; ../configure CC="gcc" CXX="g++"; make check; fi @echo "Does the system have clang and is a Mac? $(CPPUTEST_HAS_CLANG)" if test "x$(CPPUTEST_HAS_CLANG)" = xyes && test "x$(CPPUTEST_ON_MACOSX)" = xyes; then \ echo "Compiling with clang"; make distclean; ../configure CC="clang" CXX="clang++"; make check; \ fi @echo Testing JUnit output make distclean; $(srcdir)/configure; make check ./$(CPPUTEST_TESTS) -ojunit > junit_run_output if [ -s junit_run_output ]; then echo "JUnit run has output. Build failed!"; exit 1; fi rm junit_run_output; rm cpputest_*.xml @echo "Compile with coverage (switch to clang for Mac OSX)" if test "x$(CPPUTEST_HAS_CLANG)" = xyes && test "x$(CPPUTEST_ON_MACOSX)" = xyes; then \ echo "Compiling with clang"; make distclean; ../configure CC="clang" CXX="clang++" --enable-coverage; make check; \ else \ make distclean; $(srcdir)/configure -enable-coverage; make check; \ fi ./$(CPPUTEST_TESTS) >> test_output.txt; $(CPPUTESTEXT_TESTS) >> test_output.txt $(SILENCE)for f in `ls *.gcno` ; do \ gcov $(CppUTestExtTests_SOURCES) $(CppUTestTests_SOURCES) $(libCppUTest_a_SOURCES) $(libCppUTestExt_a_SOURCES) -o $$f 1>>gcov_output.txt 2>>gcov_error.txt; \ done $(srcdir)/scripts/filterGcov.sh gcov_output.txt gcov_error.txt gcov_report.txt test_output.txt cat gcov_report.txt if test "x$(CPPUTEST_HAS_LCOV)" = xyes; then lcov -c -d . -o coverage.info; genhtml -o test_coverage coverage.info; fi rm -f gcov_output.txt gcov_error.txt gcov_report.txt test_output.txt gcov_report.txt.html coverage.info rm -rf test_coverage @echo "Compiling and running the examples. This will use the old Makefile" make distclean; ../configure; make; $(MAKE) -C $(srcdir)/examples all clean CPPUTEST_LIB_LINK_DIR="`pwd`" @echo "Build using real gtest" make distclean; $(srcdir)/configure --enable-real-gtest; make check @echo "Build using gmock" make distclean; $(srcdir)/configure --enable-gmock; make check @echo "Building with all flags turned off" make distclean; $(srcdir)/configure --disable-cpputest-flags CFLAGS="" CXXFLAGS="" CPPFLAGS="-I $(srcdir)/include -I$(srcdir)/include/CppUTestExt/CppUTestGTest -I$(srcdir)/include/CppUTestExt/CppUTestGMock" --disable-dependency-tracking; make check @echo "Last... one normal build and test" make distclean; $(srcdir)/configure; make check; $(RUN_CPPUTEST_TESTS); $(RUN_CPPUTEST_EXT_TESTS) # 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: cpputest-3.4/config.h.in0000644000175300017530000001327512143642712012213 00000000000000/* config.h.in. Generated from configure.ac by autoheader. */ /* Compiling CppUTest itself */ #undef CPPUTEST_COMPILATION /* memory leak detection disabled */ #undef CPPUTEST_MEM_LEAK_DETECTION_DISABLED /* Standard C++ library disabled */ #undef CPPUTEST_STD_CPP_LIB_DISABLED /* Standard C library disabled */ #undef CPPUTEST_STD_C_LIB_DISABLED /* Use GMock */ #undef CPPUTEST_USE_REAL_GMOCK /* Using the real gtest */ #undef CPPUTEST_USE_REAL_GTEST /* Define to 1 if you have the header file. */ #undef HAVE_DLFCN_H /* Define to 1 if you have the `fork' function. */ #undef HAVE_FORK /* Define to 1 if you have the `gettimeofday' function. */ #undef HAVE_GETTIMEOFDAY /* Define to 1 if you have the header file. */ #undef HAVE_INTTYPES_H /* Define to 1 if your system has a GNU libc compatible `malloc' function, and to 0 otherwise. */ #undef HAVE_MALLOC /* Define to 1 if you have the header file. */ #undef HAVE_MEMORY_H /* Define to 1 if you have the `memset' function. */ #undef HAVE_MEMSET /* Define if you have POSIX threads libraries and header files. */ #undef HAVE_PTHREAD /* Define to 1 if your system has a GNU libc compatible `realloc' function, and to 0 otherwise. */ #undef HAVE_REALLOC /* Define to 1 if you have the header file. */ #undef HAVE_STDDEF_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 `strstr' function. */ #undef HAVE_STRSTR /* 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_TIME_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 you have the `vfork' function. */ #undef HAVE_VFORK /* Define to 1 if you have the header file. */ #undef HAVE_VFORK_H /* Define to 1 if `fork' works. */ #undef HAVE_WORKING_FORK /* Define to 1 if `vfork' works. */ #undef HAVE_WORKING_VFORK /* Define to the sub-directory in which libtool stores uninstalled libraries. */ #undef LT_OBJDIR /* Define to 1 if your C compiler doesn't accept -c and -o together. */ #undef NO_MINUS_C_MINUS_O /* 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 necessary symbol if this constant uses a non-standard name on your system. */ #undef PTHREAD_CREATE_JOINABLE /* Define to 1 if you have the ANSI C header files. */ #undef STDC_HEADERS /* Version number of package */ #undef VERSION /* Define for Solaris 2.5.1 so the uint32_t typedef from , , or is not used. If the typedef were allowed, the #define below would cause a syntax error. */ #undef _UINT32_T /* Define for Solaris 2.5.1 so the uint64_t typedef from , , or is not used. If the typedef were allowed, the #define below would cause a syntax error. */ #undef _UINT64_T /* Define for Solaris 2.5.1 so the uint8_t typedef from , , or is not used. If the typedef were allowed, the #define below would cause a syntax error. */ #undef _UINT8_T /* 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 /* Define to the type of a signed integer type of width exactly 16 bits if such a type exists and the standard includes do not define it. */ #undef int16_t /* Define to the type of a signed integer type of width exactly 32 bits if such a type exists and the standard includes do not define it. */ #undef int32_t /* Define to the type of a signed integer type of width exactly 64 bits if such a type exists and the standard includes do not define it. */ #undef int64_t /* Define to the type of a signed integer type of width exactly 8 bits if such a type exists and the standard includes do not define it. */ #undef int8_t /* Define to rpl_malloc if the replacement function should be used. */ #undef malloc /* Define to `int' if does not define. */ #undef pid_t /* Define to rpl_realloc if the replacement function should be used. */ #undef realloc /* Define to `unsigned int' if does not define. */ #undef size_t /* Define to the type of an unsigned integer type of width exactly 16 bits if such a type exists and the standard includes do not define it. */ #undef uint16_t /* Define to the type of an unsigned integer type of width exactly 32 bits if such a type exists and the standard includes do not define it. */ #undef uint32_t /* Define to the type of an unsigned integer type of width exactly 64 bits if such a type exists and the standard includes do not define it. */ #undef uint64_t /* Define to the type of an unsigned integer type of width exactly 8 bits if such a type exists and the standard includes do not define it. */ #undef uint8_t /* Define as `fork' if `vfork' does not work. */ #undef vfork cpputest-3.4/cpputest.pc.in0000644000175300017530000000045212137414545012765 00000000000000prefix=@prefix@ exec_prefix=@exec_prefix@ libdir=@libdir@ includedir=@includedir@ Name: CppUtest URL: https://github.com/cpputest/cpputest Description: Easy to use unit test framework for C/C++ Version: @PACKAGE_VERSION@ Cflags: -I${includedir} Libs: -L${libdir} -lstdc++ -lCppUTest -lCppUTestExt cpputest-3.4/configure0000755000175300017530000224573212143637564012117 00000000000000#! /bin/sh # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.68 for CppUTest 3.4. # # Report bugs to . # # # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, # 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software # Foundation, Inc. # # # This configure script is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi as_nl=' ' export as_nl # Printing a long string crashes Solaris 7 /usr/bin/printf. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo # Prefer a ksh shell builtin over an external printf program on Solaris, # but without wasting forks for bash or zsh. if test -z "$BASH_VERSION$ZSH_VERSION" \ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='print -r --' as_echo_n='print -rn --' elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='printf %s\n' as_echo_n='printf %s' else if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' as_echo_n='/usr/ucb/echo -n' else as_echo_body='eval expr "X$1" : "X\\(.*\\)"' as_echo_n_body='eval arg=$1; case $arg in #( *"$as_nl"*) expr "X$arg" : "X\\(.*\\)$as_nl"; arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; esac; expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ' export as_echo_n_body as_echo_n='sh -c $as_echo_n_body as_echo' fi export as_echo_body as_echo='sh -c $as_echo_body as_echo' fi # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # IFS # We need space, tab and new line, in precisely that order. Quoting is # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # Unset variables that we do not need and which cause bugs (e.g. in # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" # suppresses any "Segmentation fault" message there. '((' could # trigger a bug in pdksh 5.2.14. for as_var in BASH_ENV ENV MAIL MAILPATH do eval test x\${$as_var+set} = xset \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH if test "x$CONFIG_SHELL" = x; then as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which # is contrary to our usage. Disable this feature. alias -g '\${1+\"\$@\"}'='\"\$@\"' setopt NO_GLOB_SUBST else case \`(set -o) 2>/dev/null\` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi " as_required="as_fn_return () { (exit \$1); } as_fn_success () { as_fn_return 0; } as_fn_failure () { as_fn_return 1; } as_fn_ret_success () { return 0; } as_fn_ret_failure () { return 1; } exitcode=0 as_fn_success || { exitcode=1; echo as_fn_success failed.; } as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then : else exitcode=1; echo positional parameters were not saved. fi test x\$exitcode = x0 || exit 1" as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1 test \$(( 1 + 1 )) = 2 || exit 1 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" if (eval "$as_required") 2>/dev/null; then : as_have_required=yes else as_have_required=no fi if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then : else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR as_found=false for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. as_found=: case $as_dir in #( /*) for as_base in sh bash ksh sh5; do # Try only shells that exist, to save several forks. as_shell=$as_dir/$as_base if { test -f "$as_shell" || test -f "$as_shell.exe"; } && { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then : CONFIG_SHELL=$as_shell as_have_required=yes if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then : break 2 fi fi done;; esac as_found=false done $as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } && { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then : CONFIG_SHELL=$SHELL as_have_required=yes fi; } IFS=$as_save_IFS if test "x$CONFIG_SHELL" != x; then : # We cannot yet assume a decent shell, so we have to provide a # neutralization value for shells without unset; and this also # works around shells that cannot unset nonexistent variables. # Preserve -v and -x to the replacement shell. BASH_ENV=/dev/null ENV=/dev/null (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV export CONFIG_SHELL case $- in # (((( *v*x* | *x*v* ) as_opts=-vx ;; *v* ) as_opts=-v ;; *x* ) as_opts=-x ;; * ) as_opts= ;; esac exec "$CONFIG_SHELL" $as_opts "$as_myself" ${1+"$@"} fi if test x$as_have_required = xno; then : $as_echo "$0: This script requires a shell more modern than all" $as_echo "$0: the shells that I found on your system." if test x${ZSH_VERSION+set} = xset ; then $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should" $as_echo "$0: be upgraded to zsh 4.3.4 or later." else $as_echo "$0: Please tell bug-autoconf@gnu.org and $0: https://github.com/cpputest/cpputest about your system, $0: including any error possibly output before this $0: message. Then install a modern shell, or manually run $0: the script under such a shell if you do have one." fi exit 1 fi fi fi SHELL=${CONFIG_SHELL-/bin/sh} export SHELL # Unset more variables known to interfere with behavior of common tools. CLICOLOR_FORCE= GREP_OPTIONS= unset CLICOLOR_FORCE GREP_OPTIONS ## --------------------- ## ## M4sh Shell Functions. ## ## --------------------- ## # as_fn_unset VAR # --------------- # Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset # as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. as_fn_set_status () { return $1 } # as_fn_set_status # as_fn_exit STATUS # ----------------- # Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } # as_fn_exit # as_fn_mkdir_p # ------------- # Create "$as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p # as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : eval 'as_fn_append () { eval $1+=\$2 }' else as_fn_append () { eval $1=\$$1\$2 } fi # as_fn_append # as_fn_arith ARG... # ------------------ # Perform arithmetic evaluation on the ARGs, and store the result in the # global $as_val. Take advantage of shells that can avoid forks. The arguments # must be portable across $(()) and expr. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : eval 'as_fn_arith () { as_val=$(( $* )) }' else as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } fi # as_fn_arith # as_fn_error STATUS ERROR [LINENO LOG_FD] # ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the # script with STATUS, using 1 if that was 0. as_fn_error () { as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi $as_echo "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || $as_echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits as_lineno_1=$LINENO as_lineno_1a=$LINENO as_lineno_2=$LINENO as_lineno_2a=$LINENO eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) sed -n ' p /[$]LINENO/= ' <$as_myself | sed ' s/[$]LINENO.*/&-/ t lineno b :lineno N :loop s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ t loop s/-\n.*// ' >$as_me.lineno && chmod +x "$as_me.lineno" || { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } # Don't try to exec as it changes $[0], causing all sort of problems # (the dirname of $[0] is not the place where we might find the # original and so on. Autoconf is especially sensitive to this). . "./$as_me.lineno" # Exit status is that of the last command. exit } ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in #((((( -n*) case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. xy) ECHO_C='\c';; *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -p'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -p' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -p' fi else as_ln_s='cp -p' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi if test -x / >/dev/null 2>&1; then as_test_x='test -x' else if ls -dL / >/dev/null 2>&1; then as_ls_L_option=L else as_ls_L_option= fi as_test_x=' eval sh -c '\'' if test -d "$1"; then test -d "$1/."; else case $1 in #( -*)set "./$1";; esac; case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #(( ???[sx]*):;;*)false;;esac;fi '\'' sh ' fi as_executable_p=$as_test_x # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" 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='CppUTest' PACKAGE_TARNAME='cpputest' PACKAGE_VERSION='3.4' PACKAGE_STRING='CppUTest 3.4' PACKAGE_BUGREPORT='https://github.com/cpputest/cpputest' PACKAGE_URL='' ac_unique_file="src/CppUTest/Utest.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 CXXCPP OTOOL64 OTOOL LIPO NMEDIT DSYMUTIL MANIFEST_TOOL RANLIB ac_ct_AR AR DLLTOOL OBJDUMP NM ac_ct_DUMPBIN DUMPBIN LD FGREP SED LIBTOOL ALL_FILES_IN_GIT MOSTLYCLEANFILES CPPUTEST_LDFLAGS CPPUTEST_LDADD CPPUTEST_ADDITIONAL_CPPFLAGS CPPUTEST_CPPFLAGS CPPUTEST_ADDITIONAL_CXXFLAGS CPPUTEST_CXXFLAGS CPPUTEST_ADDITIONAL_CFLAGS CPPUTEST_CFLAGS INCLUDE_CPPUTEST_EXT CPP_PLATFORM GTEST_HOME GMOCK_HOME INCLUDE_CPPUTEST_EXT_FALSE INCLUDE_CPPUTEST_EXT_TRUE TEST_COMPILER_IS_CLANG_FALSE TEST_COMPILER_IS_CLANG_TRUE CPPUTEST_HAS_LCOV CPPUTEST_HAS_CLANG CPPUTEST_HAS_GCC LIBOBJS EGREP GREP PTHREAD_CFLAGS PTHREAD_LIBS PTHREAD_CC acx_pthread_config AM_BACKSLASH AM_DEFAULT_VERBOSITY LN_S am__fastdepCXX_FALSE am__fastdepCXX_TRUE CXXDEPMODE ac_ct_CXX CXXFLAGS CXX CPP am__fastdepCC_FALSE am__fastdepCC_TRUE CCDEPMODE AMDEPBACKSLASH AMDEP_FALSE AMDEP_TRUE am__quote am__include DEPDIR OBJEXT EXEEXT ac_ct_CC CPPFLAGS LDFLAGS CFLAGS CC CPPUTEST_ON_MACOSX MAINT MAINTAINER_MODE_FALSE MAINTAINER_MODE_TRUE host_os host_vendor host_cpu host build_os build_vendor build_cpu build am__untar am__tar AMTAR am__leading_dot SET_MAKE AWK mkdir_p MKDIR_P INSTALL_STRIP_PROGRAM STRIP install_sh MAKEINFO AUTOHEADER AUTOMAKE AUTOCONF ACLOCAL VERSION PACKAGE CYGPATH_W am__isrc INSTALL_DATA INSTALL_SCRIPT INSTALL_PROGRAM target_alias host_alias build_alias LIBS ECHO_T ECHO_N ECHO_C DEFS mandir localedir libdir psdir pdfdir dvidir htmldir infodir docdir oldincludedir includedir localstatedir sharedstatedir sysconfdir datadir datarootdir libexecdir sbindir bindir program_transform_name prefix exec_prefix PACKAGE_URL PACKAGE_BUGREPORT PACKAGE_STRING PACKAGE_VERSION PACKAGE_TARNAME PACKAGE_NAME PATH_SEPARATOR SHELL' ac_subst_files='' ac_user_opts=' enable_option_checking enable_maintainer_mode enable_dependency_tracking enable_silent_rules enable_std_c enable_std_cpp enable_cpputest_flags enable_memory_leak_detection enable_extensions enable_generate_map_file enable_coverage enable_real_gtest enable_gmock enable_shared enable_static with_pic enable_fast_install with_gnu_ld with_sysroot enable_libtool_lock ' ac_precious_vars='build_alias host_alias target_alias CC CFLAGS LDFLAGS LIBS CPPFLAGS CPP CXX CXXFLAGS CCC GMOCK_HOME GTEST_HOME 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 $as_echo "$as_me: WARNING: if you wanted to set the --build type, don't use --host. If a cross compiler is detected then cross compile mode will be used" >&2 elif test "x$build_alias" != "x$host_alias"; then cross_compiling=yes fi fi ac_tool_prefix= test -n "$host_alias" && ac_tool_prefix=$host_alias- test "$silent" = yes && exec 6>/dev/null ac_pwd=`pwd` && test -n "$ac_pwd" && ac_ls_di=`ls -di .` && ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || as_fn_error $? "working directory cannot be determined" test "X$ac_ls_di" = "X$ac_pwd_ls_di" || as_fn_error $? "pwd does not report name of working directory" # Find the source files, if location was not specified. if test -z "$srcdir"; then ac_srcdir_defaulted=yes # Try the directory containing this script, then the parent directory. ac_confdir=`$as_dirname -- "$as_myself" || $as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_myself" : 'X\(//\)[^/]' \| \ X"$as_myself" : 'X\(//\)$' \| \ X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_myself" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` srcdir=$ac_confdir if test ! -r "$srcdir/$ac_unique_file"; then srcdir=.. fi else ac_srcdir_defaulted=no fi if test ! -r "$srcdir/$ac_unique_file"; then test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir" fi ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" ac_abs_confdir=`( cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg" pwd)` # When building in place, set srcdir=. if test "$ac_abs_confdir" = "$ac_pwd"; then srcdir=. fi # Remove unnecessary trailing slashes from srcdir. # Double slashes in file names in object file debugging info # mess up M-x gdb in Emacs. case $srcdir in */) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; esac for ac_var in $ac_precious_vars; do eval ac_env_${ac_var}_set=\${${ac_var}+set} eval ac_env_${ac_var}_value=\$${ac_var} eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} eval ac_cv_env_${ac_var}_value=\$${ac_var} done # # Report the --help message. # if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF \`configure' configures CppUTest 3.4 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... To assign environment variables (e.g., CC, CFLAGS...), specify them as VAR=VALUE. See below for descriptions of some of the useful variables. Defaults for the options are specified in brackets. Configuration: -h, --help display this help and exit --help=short display options specific to this package --help=recursive display the short help of all the included packages -V, --version display version information and exit -q, --quiet, --silent do not print \`checking ...' messages --cache-file=FILE cache test results in FILE [disabled] -C, --config-cache alias for \`--cache-file=config.cache' -n, --no-create do not create output files --srcdir=DIR find the sources in DIR [configure dir or \`..'] Installation directories: --prefix=PREFIX install architecture-independent files in PREFIX [$ac_default_prefix] --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX [PREFIX] By default, \`make install' will install all the files in \`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify an installation prefix other than \`$ac_default_prefix' using \`--prefix', for instance \`--prefix=\$HOME'. For better control, use the options below. Fine tuning of the installation directories: --bindir=DIR user executables [EPREFIX/bin] --sbindir=DIR system admin executables [EPREFIX/sbin] --libexecdir=DIR program executables [EPREFIX/libexec] --sysconfdir=DIR read-only single-machine data [PREFIX/etc] --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] --localstatedir=DIR modifiable single-machine data [PREFIX/var] --libdir=DIR object code libraries [EPREFIX/lib] --includedir=DIR C header files [PREFIX/include] --oldincludedir=DIR C header files for non-gcc [/usr/include] --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] --datadir=DIR read-only architecture-independent data [DATAROOTDIR] --infodir=DIR info documentation [DATAROOTDIR/info] --localedir=DIR locale-dependent data [DATAROOTDIR/locale] --mandir=DIR man documentation [DATAROOTDIR/man] --docdir=DIR documentation root [DATAROOTDIR/doc/cpputest] --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 CppUTest 3.4:";; 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] --disable-maintainer-mode disable make rules and dependencies not useful (and sometimes confusing) to the casual installer --disable-dependency-tracking speeds up one-time build --enable-dependency-tracking do not reject slow dependency extractors --enable-silent-rules less verbose build output (undo: `make V=1') --disable-silent-rules verbose build output (undo: `make V=0') --disable-std-c disable the use of Standard C Library (warning: requires implementing Platforms/GccNoStdC) --disable-std-cpp disable the use of Standard C++ Library --disable-cpputest-flags disable CFLAGS/CPPFLAGS/CXXFLAGS set by CppUTest --disable-memory-leak-detection disable memory leak detection --disable-extensions disable CppUTest extension library --enable-generate-map-file enable the creation of a map file --enable-coverage enable running with coverage --enable-real-gtest enable using real GTest rather than faking it. Requires GTEST_HOME to be set --enable-gmock enable using GMock. Requires GMOCK_HOME to be set --enable-shared[=PKGS] build shared libraries [default=yes] --enable-static[=PKGS] build static libraries [default=yes] --enable-fast-install[=PKGS] optimize for fast installation [default=yes] --disable-libtool-lock avoid locking (might break parallel builds) Optional Packages: --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) --with-pic 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 CXX C++ compiler command CXXFLAGS C++ compiler flags GMOCK_HOME Location of the GMock GTEST_HOME Location of the GTest source 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 CppUTest configure 3.4 generated by GNU Autoconf 2.68 Copyright (C) 2010 Free Software Foundation, Inc. This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. _ACEOF exit fi ## ------------------------ ## ## Autoconf initialization. ## ## ------------------------ ## # ac_fn_c_try_compile LINENO # -------------------------- # Try to compile conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_compile # ac_fn_c_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_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_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 || $as_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_mongrel LINENO HEADER VAR INCLUDES # ------------------------------------------------------- # Tests whether HEADER exists, giving a warning if it cannot be compiled using # the include files in INCLUDES and setting the cache variable VAR # accordingly. ac_fn_c_check_header_mongrel () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if eval \${$3+:} false; then : { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } else # Is the header compilable? { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5 $as_echo_n "checking $2 usability... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 #include <$2> _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_header_compiler=yes else ac_header_compiler=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5 $as_echo "$ac_header_compiler" >&6; } # Is the header present? { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5 $as_echo_n "checking $2 presence... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include <$2> _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : ac_header_preproc=yes else ac_header_preproc=no fi rm -f conftest.err conftest.i conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 $as_echo "$ac_header_preproc" >&6; } # So? What about this header? case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in #(( yes:no: ) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5 $as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ;; no:yes:* ) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5 $as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5 $as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5 $as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5 $as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ( $as_echo "## --------------------------------------------------- ## ## Report this to https://github.com/cpputest/cpputest ## ## --------------------------------------------------- ##" ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else eval "$3=\$ac_header_compiler" fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_header_mongrel # ac_fn_c_try_run LINENO # ---------------------- # Try to link conftest.$ac_ext, and return whether this succeeded. Assumes # that executables *can* be run. ac_fn_c_try_run () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { ac_try='./conftest$ac_exeext' { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then : ac_retval=0 else $as_echo "$as_me: program exited with status $ac_status" >&5 $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=$ac_status fi rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_run # ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES # ------------------------------------------------------- # Tests whether HEADER exists and can be compiled using the include files in # INCLUDES, setting the cache variable VAR accordingly. ac_fn_c_check_header_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 #include <$2> _ACEOF if ac_fn_c_try_compile "$LINENO"; then : eval "$3=yes" else eval "$3=no" fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_header_compile # ac_fn_c_find_intX_t LINENO BITS VAR # ----------------------------------- # Finds a signed integer type with width BITS, setting cache variable VAR # accordingly. ac_fn_c_find_intX_t () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for int$2_t" >&5 $as_echo_n "checking for int$2_t... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else eval "$3=no" # Order is important - never check a type that is potentially smaller # than half of the expected target width. for ac_type in int$2_t 'int' 'long int' \ 'long long int' 'short int' 'signed char'; do cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $ac_includes_default enum { N = $2 / 2 - 1 }; int main () { static int test_array [1 - 2 * !(0 < ($ac_type) ((((($ac_type) 1 << N) << N) - 1) * 2 + 1))]; test_array [0] = 0 ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $ac_includes_default enum { N = $2 / 2 - 1 }; int main () { static int test_array [1 - 2 * !(($ac_type) ((((($ac_type) 1 << N) << N) - 1) * 2 + 1) < ($ac_type) ((((($ac_type) 1 << N) << N) - 1) * 2 + 2))]; test_array [0] = 0 ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : else case $ac_type in #( int$2_t) : eval "$3=yes" ;; #( *) : eval "$3=\$ac_type" ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if eval test \"x\$"$3"\" = x"no"; then : else break fi done 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_find_intX_t # 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 # ac_fn_c_find_uintX_t LINENO BITS VAR # ------------------------------------ # Finds an unsigned integer type with width BITS, setting cache variable VAR # accordingly. ac_fn_c_find_uintX_t () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for uint$2_t" >&5 $as_echo_n "checking for uint$2_t... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else eval "$3=no" # Order is important - never check a type that is potentially smaller # than half of the expected target width. for ac_type in uint$2_t 'unsigned int' 'unsigned long int' \ 'unsigned long long int' 'unsigned short int' 'unsigned char'; do cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $ac_includes_default int main () { static int test_array [1 - 2 * !((($ac_type) -1 >> ($2 / 2 - 1)) >> ($2 / 2 - 1) == 3)]; test_array [0] = 0 ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : case $ac_type in #( uint$2_t) : eval "$3=yes" ;; #( *) : eval "$3=\$ac_type" ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if eval test \"x\$"$3"\" = x"no"; then : else break fi done 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_find_uintX_t # 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_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 || $as_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 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 CppUTest $as_me 3.4, which was generated by GNU Autoconf 2.68. Invocation command line was $ $0 $@ _ACEOF exec 5>>config.log { cat <<_ASUNAME ## --------- ## ## Platform. ## ## --------- ## hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` uname -m = `(uname -m) 2>/dev/null || echo unknown` uname -r = `(uname -r) 2>/dev/null || echo unknown` uname -s = `(uname -s) 2>/dev/null || echo unknown` uname -v = `(uname -v) 2>/dev/null || echo unknown` /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` /bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` /bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` /usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` /bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` /bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` _ASUNAME as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. $as_echo "PATH: $as_dir" done IFS=$as_save_IFS } >&5 cat >&5 <<_ACEOF ## ----------- ## ## Core tests. ## ## ----------- ## _ACEOF # Keep a trace of the command line. # Strip out --no-create and --no-recursion so they do not pile up. # Strip out --silent because we don't want to record it for future runs. # Also quote any args containing shell meta-characters. # Make two passes to allow for proper duplicate-argument suppression. ac_configure_args= ac_configure_args0= ac_configure_args1= ac_must_keep_next=false for ac_pass in 1 2 do for ac_arg do case $ac_arg in -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) continue ;; *\'*) ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; esac case $ac_pass in 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; 2) as_fn_append ac_configure_args1 " '$ac_arg'" if test $ac_must_keep_next = true; then ac_must_keep_next=false # Got value, back to normal. else case $ac_arg in *=* | --config-cache | -C | -disable-* | --disable-* \ | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ | -with-* | --with-* | -without-* | --without-* | --x) case "$ac_configure_args0 " in "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; esac ;; -* ) ac_must_keep_next=true ;; esac fi as_fn_append ac_configure_args " '$ac_arg'" ;; esac done done { ac_configure_args0=; unset ac_configure_args0;} { ac_configure_args1=; unset ac_configure_args1;} # When interrupted or exit'd, cleanup temporary files, and complete # config.log. We remove comments because anyway the quotes in there # would cause problems or look ugly. # WARNING: Use '\'' to represent an apostrophe within the trap. # WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. trap 'exit_status=$? # Save into config.log some information that might help in debugging. { echo $as_echo "## ---------------- ## ## Cache variables. ## ## ---------------- ##" echo # The following way of writing the cache mishandles newlines in values, ( for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( *${as_nl}ac_space=\ *) sed -n \ "s/'\''/'\''\\\\'\'''\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" ;; #( *) sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) echo $as_echo "## ----------------- ## ## Output variables. ## ## ----------------- ##" echo for ac_var in $ac_subst_vars do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac $as_echo "$ac_var='\''$ac_val'\''" done | sort echo if test -n "$ac_subst_files"; then $as_echo "## ------------------- ## ## File substitutions. ## ## ------------------- ##" echo for ac_var in $ac_subst_files do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac $as_echo "$ac_var='\''$ac_val'\''" done | sort echo fi if test -s confdefs.h; then $as_echo "## ----------- ## ## confdefs.h. ## ## ----------- ##" echo cat confdefs.h echo fi test "$ac_signal" != 0 && $as_echo "$as_me: caught signal $ac_signal" $as_echo "$as_me: exit $exit_status" } >&5 rm -f core *.core core.conftest.* && rm -f -r conftest* confdefs* conf$$* $ac_clean_files && exit $exit_status ' 0 for ac_signal in 1 2 13 15; do trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal done ac_signal=0 # confdefs.h avoids OS command line length limits that DEFS can exceed. rm -f -r conftest* confdefs.h $as_echo "/* confdefs.h */" > confdefs.h # Predefined preprocessor variables. cat >>confdefs.h <<_ACEOF #define PACKAGE_NAME "$PACKAGE_NAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_TARNAME "$PACKAGE_TARNAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_VERSION "$PACKAGE_VERSION" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_STRING "$PACKAGE_STRING" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_URL "$PACKAGE_URL" _ACEOF # Let the site file select an alternate cache file if it wants to. # Prefer an explicitly selected file to automatically selected ones. ac_site_file1=NONE ac_site_file2=NONE if test -n "$CONFIG_SITE"; then # We do not want a PATH search for config.site. case $CONFIG_SITE in #(( -*) ac_site_file1=./$CONFIG_SITE;; */*) ac_site_file1=$CONFIG_SITE;; *) ac_site_file1=./$CONFIG_SITE;; esac elif test "x$prefix" != xNONE; then ac_site_file1=$prefix/share/config.site ac_site_file2=$prefix/etc/config.site else ac_site_file1=$ac_default_prefix/share/config.site ac_site_file2=$ac_default_prefix/etc/config.site fi for ac_site_file in "$ac_site_file1" "$ac_site_file2" do test "x$ac_site_file" = xNONE && continue if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 $as_echo "$as_me: loading site script $ac_site_file" >&6;} sed 's/^/| /' "$ac_site_file" >&5 . "$ac_site_file" \ || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "failed to load site script $ac_site_file See \`config.log' for more details" "$LINENO" 5; } fi done if test -r "$cache_file"; then # Some versions of bash will fail to source /dev/null (special files # actually), so we avoid doing that. DJGPP emulates it as a regular file. if test /dev/null != "$cache_file" && test -f "$cache_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 $as_echo "$as_me: loading cache $cache_file" >&6;} case $cache_file in [\\/]* | ?:[\\/]* ) . "$cache_file";; *) . "./$cache_file";; esac fi else { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 $as_echo "$as_me: creating cache $cache_file" >&6;} >$cache_file fi # Check that the precious variables saved in the cache have kept the same # value. ac_cache_corrupted=false for ac_var in $ac_precious_vars; do eval ac_old_set=\$ac_cv_env_${ac_var}_set eval ac_new_set=\$ac_env_${ac_var}_set eval ac_old_val=\$ac_cv_env_${ac_var}_value eval ac_new_val=\$ac_env_${ac_var}_value case $ac_old_set,$ac_new_set in set,) { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 $as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} ac_cache_corrupted=: ;; ,set) { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5 $as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} ac_cache_corrupted=: ;; ,);; *) if test "x$ac_old_val" != "x$ac_new_val"; then # differences in whitespace do not lead to failure. ac_old_val_w=`echo x $ac_old_val` ac_new_val_w=`echo x $ac_new_val` if test "$ac_old_val_w" != "$ac_new_val_w"; then { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 $as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} ac_cache_corrupted=: else { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 $as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} eval $ac_var=\$ac_old_val fi { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 $as_echo "$as_me: former value: \`$ac_old_val'" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 $as_echo "$as_me: current value: \`$ac_new_val'" >&2;} fi;; esac # Pass precious variables to config.status. if test "$ac_new_set" = set; then case $ac_new_val in *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; *) ac_arg=$ac_var=$ac_new_val ;; esac case " $ac_configure_args " in *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. *) as_fn_append ac_configure_args " '$ac_arg'" ;; esac fi done if $ac_cache_corrupted; then { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 $as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 fi ## -------------------- ## ## Main body of script. ## ## -------------------- ## ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu am__api_version='1.11' ac_aux_dir= for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do if test -f "$ac_dir/install-sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install-sh -c" break elif test -f "$ac_dir/install.sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install.sh -c" break elif test -f "$ac_dir/shtool"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/shtool install -c" break fi done if test -z "$ac_aux_dir"; then as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5 fi # These three variables are undocumented and unsupported, # and are intended to be withdrawn in a future Autoconf release. # They can cause serious problems if a builder's source tree is in a directory # whose full name contains unusual characters. ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. # Find a good install program. We prefer a C program (faster), # so one script is as good as another. But avoid the broken or # incompatible versions: # SysV /etc/install, /usr/sbin/install # SunOS /usr/etc/install # IRIX /sbin/install # AIX /bin/install # AmigaOS /C/install, which installs bootblocks on floppy discs # AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag # AFS /usr/afsws/bin/install, which mishandles nonexistent args # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" # OS/2's system install, which has a completely different semantic # ./install, which can be erroneously created by make from ./install.sh. # Reject install programs that cannot install multiple files. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 $as_echo_n "checking for a BSD-compatible install... " >&6; } if test -z "$INSTALL"; then if ${ac_cv_path_install+:} false; then : $as_echo_n "(cached) " >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. # Account for people who put trailing slashes in PATH elements. case $as_dir/ in #(( ./ | .// | /[cC]/* | \ /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \ /usr/ucb/* ) ;; *) # OSF1 and SCO ODT 3.0 have their own names for install. # Don't use installbsd from OSF since it installs stuff as root # by default. for ac_prog in ginstall scoinst install; do for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; }; then if test $ac_prog = install && grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # AIX install. It has an incompatible calling convention. : elif test $ac_prog = install && grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # program-specific install script used by HP pwplus--don't use. : else rm -rf conftest.one conftest.two conftest.dir echo one > conftest.one echo two > conftest.two mkdir conftest.dir if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && test -s conftest.one && test -s conftest.two && test -s conftest.dir/conftest.one && test -s conftest.dir/conftest.two then ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" break 3 fi fi fi done done ;; esac done IFS=$as_save_IFS rm -rf conftest.one conftest.two conftest.dir fi if test "${ac_cv_path_install+set}" = set; then INSTALL=$ac_cv_path_install else # As a last resort, use the slow shell script. Don't cache a # value for INSTALL within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. INSTALL=$ac_install_sh fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 $as_echo "$INSTALL" >&6; } # Use test -z because SunOS4 sh mishandles braces in ${var-val}. # It thinks the first close brace ends the variable substitution. test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 $as_echo_n "checking whether build environment is sane... " >&6; } # Just in case sleep 1 echo timestamp > conftest.file # Reject unsafe characters in $srcdir or the absolute working directory # name. Accept space and tab only in the latter. am_lf=' ' case `pwd` in *[\\\"\#\$\&\'\`$am_lf]*) as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;; esac case $srcdir in *[\\\"\#\$\&\'\`$am_lf\ \ ]*) as_fn_error $? "unsafe srcdir value: \`$srcdir'" "$LINENO" 5;; esac # Do `set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` if test "$*" = "X"; then # -L didn't work. set X `ls -t "$srcdir/configure" conftest.file` fi rm -f conftest.file if test "$*" != "X $srcdir/configure conftest.file" \ && test "$*" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". as_fn_error $? "ls -t appears to fail. Make sure there is not a broken alias in your environment" "$LINENO" 5 fi test "$2" = conftest.file ) then # Ok. : else as_fn_error $? "newly created file is older than distributed files! Check your system clock" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } test "$program_prefix" != NONE && program_transform_name="s&^&$program_prefix&;$program_transform_name" # Use a double $ so make ignores it. test "$program_suffix" != NONE && program_transform_name="s&\$&$program_suffix&;$program_transform_name" # Double any \ or $. # By default was `s,x,x', remove it if useless. ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"` # expand $ac_aux_dir to an absolute path am_aux_dir=`cd $ac_aux_dir && pwd` if test x"${MISSING+set}" != xset; then case $am_aux_dir in *\ * | *\ *) MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; *) MISSING="\${SHELL} $am_aux_dir/missing" ;; esac fi # Use eval to expand $SHELL if eval "$MISSING --run true"; then am_missing_run="$MISSING --run " else am_missing_run= { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`missing' script is too old or missing" >&5 $as_echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;} fi if test x"${install_sh}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; *) install_sh="\${SHELL} $am_aux_dir/install-sh" esac fi # Installed binaries are usually stripped using `strip' when the user # run `make install-strip'. However `strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the `STRIP' environment variable to overrule this program. if test "$cross_compiling" != no; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$STRIP"; then ac_cv_prog_STRIP="$STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_STRIP="${ac_tool_prefix}strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi STRIP=$ac_cv_prog_STRIP if test -n "$STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 $as_echo "$STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_STRIP"; then ac_ct_STRIP=$STRIP # Extract the first word of "strip", so it can be a program name with args. set dummy strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_STRIP"; then ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_STRIP="strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP if test -n "$ac_ct_STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 $as_echo "$ac_ct_STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_STRIP" = x; then STRIP=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac STRIP=$ac_ct_STRIP fi else STRIP="$ac_cv_prog_STRIP" fi fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5 $as_echo_n "checking for a thread-safe mkdir -p... " >&6; } if test -z "$MKDIR_P"; then if ${ac_cv_path_mkdir+:} false; then : $as_echo_n "(cached) " >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in mkdir gmkdir; do for ac_exec_ext in '' $ac_executable_extensions; do { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; } || continue case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( 'mkdir (GNU coreutils) '* | \ 'mkdir (coreutils) '* | \ 'mkdir (fileutils) '4.1*) ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext break 3;; esac done done done IFS=$as_save_IFS fi test -d ./--version && rmdir ./--version if test "${ac_cv_path_mkdir+set}" = set; then MKDIR_P="$ac_cv_path_mkdir -p" else # As a last resort, use the slow shell script. Don't cache a # value for MKDIR_P within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. MKDIR_P="$ac_install_sh -d" fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5 $as_echo "$MKDIR_P" >&6; } mkdir_p="$MKDIR_P" case $mkdir_p in [\\/$]* | ?:[\\/]*) ;; */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; esac for ac_prog in gawk mawk nawk awk do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_AWK+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$AWK"; then ac_cv_prog_AWK="$AWK" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_AWK="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi AWK=$ac_cv_prog_AWK if test -n "$AWK"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 $as_echo "$AWK" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$AWK" && break done { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 $as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } set x ${MAKE-make} ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then : $as_echo_n "(cached) " >&6 else cat >conftest.make <<\_ACEOF SHELL = /bin/sh all: @echo '@@@%%%=$(MAKE)=@@@%%%' _ACEOF # GNU make sometimes prints "make[1]: Entering ...", which would confuse us. case `${MAKE-make} -f conftest.make 2>/dev/null` in *@@@%%%=?*=@@@%%%*) eval ac_cv_prog_make_${ac_make}_set=yes;; *) eval ac_cv_prog_make_${ac_make}_set=no;; esac rm -f conftest.make fi if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } SET_MAKE= else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } SET_MAKE="MAKE=${MAKE-make}" fi rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null if test "`cd $srcdir && pwd`" != "`pwd`"; then # Use -I$(srcdir) only when $(srcdir) != ., so that make's output # is not polluted with repeated "-I." am__isrc=' -I$(srcdir)' # test to see if srcdir already configured if test -f $srcdir/config.status; then as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5 fi fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi # Define the identity of the package. PACKAGE='cpputest' VERSION='3.4' cat >>confdefs.h <<_ACEOF #define PACKAGE "$PACKAGE" _ACEOF cat >>confdefs.h <<_ACEOF #define VERSION "$VERSION" _ACEOF # Some tools Automake needs. ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} # We need awk for the "check" target. The system "awk" is bad on # some platforms. # Always define AMTAR for backward compatibility. AMTAR=${AMTAR-"${am_missing_run}tar"} am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -' ac_config_headers="$ac_config_headers config.h" ac_config_files="$ac_config_files cpputest.pc" # Make sure we can run config.sub. $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 $as_echo_n "checking build system type... " >&6; } if ${ac_cv_build+:} false; then : $as_echo_n "(cached) " >&6 else ac_build_alias=$build_alias test "x$ac_build_alias" = x && ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` test "x$ac_build_alias" = x && as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5 ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 $as_echo "$ac_cv_build" >&6; } case $ac_cv_build in *-*-*) ;; *) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;; esac build=$ac_cv_build ac_save_IFS=$IFS; IFS='-' set x $ac_cv_build shift build_cpu=$1 build_vendor=$2 shift; shift # Remember, the first character of IFS is used to create $*, # except with old shells: build_os=$* IFS=$ac_save_IFS case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5 $as_echo_n "checking host system type... " >&6; } if ${ac_cv_host+:} false; then : $as_echo_n "(cached) " >&6 else if test "x$host_alias" = x; then ac_cv_host=$ac_cv_build else ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5 fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5 $as_echo "$ac_cv_host" >&6; } case $ac_cv_host in *-*-*) ;; *) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;; esac host=$ac_cv_host ac_save_IFS=$IFS; IFS='-' set x $ac_cv_host shift host_cpu=$1 host_vendor=$2 shift; shift # Remember, the first character of IFS is used to create $*, # except with old shells: host_os=$* IFS=$ac_save_IFS case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to disable maintainer-specific portions of Makefiles" >&5 $as_echo_n "checking whether to disable maintainer-specific portions of Makefiles... " >&6; } # Check whether --enable-maintainer-mode was given. if test "${enable_maintainer_mode+set}" = set; then : enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval else USE_MAINTAINER_MODE=yes fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5 $as_echo "$USE_MAINTAINER_MODE" >&6; } if test $USE_MAINTAINER_MODE = yes; then MAINTAINER_MODE_TRUE= MAINTAINER_MODE_FALSE='#' else MAINTAINER_MODE_TRUE='#' MAINTAINER_MODE_FALSE= fi MAINT=$MAINTAINER_MODE_TRUE case "x$build_os" in *darwin*) CPPUTEST_ON_MACOSX=yes ;; 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 if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. set dummy ${ac_tool_prefix}gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="${ac_tool_prefix}gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_CC="gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi else CC="$ac_cv_prog_CC" fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. set dummy ${ac_tool_prefix}cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="${ac_tool_prefix}cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi fi if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else ac_prog_rejected=no as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then ac_prog_rejected=yes continue fi ac_cv_prog_CC="cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS if test $ac_prog_rejected = yes; then # We found a bogon in the path, so make sure we never use it. set dummy $ac_cv_prog_CC shift if test $# != 0; then # We chose a different compiler from the bogus one. # However, it has the same basename, so the bogon will be chosen # first if we set CC to just the basename; use the full file name. shift ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" fi fi fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then for ac_prog in cl.exe do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$CC" && break done fi if test -z "$CC"; then ac_ct_CC=$CC for ac_prog in cl.exe do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_CC="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_CC" && break done if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi fi fi test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "no acceptable C compiler found in \$PATH See \`config.log' for more details" "$LINENO" 5; } # Provide some information about the compiler. $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 set X $ac_compile ac_compiler=$2 for ac_option in --version -v -V -qversion; do { { ac_try="$ac_compiler $ac_option >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? if test -s conftest.err; then sed '10a\ ... rest of stderr output deleted ... 10q' conftest.err >conftest.er1 cat conftest.er1 >&5 fi rm -f conftest.er1 conftest.err $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } done cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out" # Try to create an executable without -o first, disregard a.out. # It will help us diagnose broken compilers, and finding out an intuition # of exeext. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5 $as_echo_n "checking whether the C compiler works... " >&6; } ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` # The possible output files: ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*" ac_rmfiles= for ac_file in $ac_files do case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; * ) ac_rmfiles="$ac_rmfiles $ac_file";; esac done rm -f $ac_rmfiles if { { ac_try="$ac_link_default" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link_default") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. # So ignore a value of `no', otherwise this would lead to `EXEEXT = no' # in a Makefile. We should not override ac_cv_exeext if it was cached, # so that the user can short-circuit this test for compilers unknown to # Autoconf. for ac_file in $ac_files '' do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; [ab].out ) # We found the default executable, but exeext='' is most # certainly right. break;; *.* ) if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; then :; else ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` fi # We set ac_cv_exeext here because the later test for it is not # safe: cross compilers may not add the suffix if given an `-o' # argument, so we may need to know it at that point already. # Even if this section looks crufty: it has the advantage of # actually working. break;; * ) break;; esac done test "$ac_cv_exeext" = no && ac_cv_exeext= else ac_file='' fi if test -z "$ac_file"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error 77 "C compiler cannot create executables See \`config.log' for more details" "$LINENO" 5; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5 $as_echo_n "checking for C compiler default output file name... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 $as_echo "$ac_file" >&6; } ac_exeext=$ac_cv_exeext rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out ac_clean_files=$ac_clean_files_save { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 $as_echo_n "checking for suffix of executables... " >&6; } if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : # If both `conftest.exe' and `conftest' are `present' (well, observable) # catch `conftest.exe'. For instance with Cygwin, `ls conftest' will # work properly (i.e., refer to `conftest.exe'), while it won't with # `rm'. for ac_file in conftest.exe conftest conftest.*; do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` break;; * ) break;; esac done else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot compute suffix of executables: cannot compile and link See \`config.log' for more details" "$LINENO" 5; } fi rm -f conftest conftest$ac_cv_exeext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 $as_echo "$ac_cv_exeext" >&6; } rm -f conftest.$ac_ext EXEEXT=$ac_cv_exeext ac_exeext=$EXEEXT cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { FILE *f = fopen ("conftest.out", "w"); return ferror (f) || fclose (f) != 0; ; return 0; } _ACEOF ac_clean_files="$ac_clean_files conftest.out" # Check that the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 $as_echo_n "checking whether we are cross compiling... " >&6; } if test "$cross_compiling" != yes; then { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if { ac_try='./conftest$ac_cv_exeext' { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then cross_compiling=no else if test "$cross_compiling" = maybe; then cross_compiling=yes else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot run C compiled programs. If you meant to cross compile, use \`--host'. See \`config.log' for more details" "$LINENO" 5; } fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 $as_echo "$cross_compiling" >&6; } rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out ac_clean_files=$ac_clean_files_save { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 $as_echo_n "checking for suffix of object files... " >&6; } if ${ac_cv_objext+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.o conftest.obj if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : for ac_file in conftest.o conftest.obj conftest.*; do test -f "$ac_file" || continue; case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;; *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` break;; esac done else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot compute suffix of object files: cannot compile See \`config.log' for more details" "$LINENO" 5; } fi rm -f conftest.$ac_cv_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 $as_echo "$ac_cv_objext" >&6; } OBJEXT=$ac_cv_objext ac_objext=$OBJEXT { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 $as_echo_n "checking whether we are using the GNU C compiler... " >&6; } if ${ac_cv_c_compiler_gnu+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_compiler_gnu=yes else ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 $as_echo "$ac_cv_c_compiler_gnu" >&6; } if test $ac_compiler_gnu = yes; then GCC=yes else GCC= fi ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 $as_echo_n "checking whether $CC accepts -g... " >&6; } if ${ac_cv_prog_cc_g+:} false; then : $as_echo_n "(cached) " >&6 else ac_save_c_werror_flag=$ac_c_werror_flag ac_c_werror_flag=yes ac_cv_prog_cc_g=no CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes else CFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : else ac_c_werror_flag=$ac_save_c_werror_flag CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_c_werror_flag=$ac_save_c_werror_flag fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 $as_echo "$ac_cv_prog_cc_g" >&6; } if test "$ac_test_CFLAGS" = set; then CFLAGS=$ac_save_CFLAGS elif test $ac_cv_prog_cc_g = yes; then if test "$GCC" = yes; then CFLAGS="-g -O2" else CFLAGS="-g" fi else if test "$GCC" = yes; then CFLAGS="-O2" else CFLAGS= fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 $as_echo_n "checking for $CC option to accept ISO C89... " >&6; } if ${ac_cv_prog_cc_c89+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_prog_cc_c89=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include #include /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ struct buf { int x; }; FILE * (*rcsopen) (struct buf *, struct stat *, int); static char *e (p, i) char **p; int i; { return p[i]; } static char *f (char * (*g) (char **, int), char **p, ...) { char *s; va_list v; va_start (v,p); s = g (p, va_arg (v,int)); va_end (v); return s; } /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has function prototypes and stuff, but not '\xHH' hex character constants. These don't provoke an error unfortunately, instead are silently treated as 'x'. The following induces an error, until -std is added to get proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an array size at least. It's necessary to write '\x00'==0 to get something that's true only with -std. */ int osf4_cc_array ['\x00' == 0 ? 1 : -1]; /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters inside strings and character constants. */ #define FOO(x) 'x' int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; int test (int i, double x); struct s1 {int (*f) (int a);}; struct s2 {int (*f) (double a);}; int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); int argc; char **argv; int main () { return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; ; return 0; } _ACEOF for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_c89=$ac_arg fi rm -f core conftest.err conftest.$ac_objext test "x$ac_cv_prog_cc_c89" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi # AC_CACHE_VAL case "x$ac_cv_prog_cc_c89" in x) { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 $as_echo "none needed" >&6; } ;; xno) { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 $as_echo "unsupported" >&6; } ;; *) CC="$CC $ac_cv_prog_cc_c89" { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 $as_echo "$ac_cv_prog_cc_c89" >&6; } ;; esac if test "x$ac_cv_prog_cc_c89" != xno; then : fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu DEPDIR="${am__leading_dot}deps" ac_config_commands="$ac_config_commands depfiles" am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo this is the am__doit target .PHONY: am__doit END # If we don't find an include directive, just comment out the code. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5 $as_echo_n "checking for style of include used by $am_make... " >&6; } am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # Ignore all kinds of additional output from `make'. case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=include am__quote= _am_result=GNU ;; esac # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=.include am__quote="\"" _am_result=BSD ;; esac fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5 $as_echo "$_am_result" >&6; } rm -f confinc confmf # Check whether --enable-dependency-tracking was given. if test "${enable_dependency_tracking+set}" = set; then : enableval=$enable_dependency_tracking; fi if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' fi if test "x$enable_dependency_tracking" != xno; then AMDEP_TRUE= AMDEP_FALSE='#' else AMDEP_TRUE='#' AMDEP_FALSE= fi depcc="$CC" am_compiler_list= { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 $as_echo_n "checking dependency style of $depcc... " >&6; } if ${am_cv_CC_dependencies_compiler_type+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named `D' -- because `-MD' means `put the output # in D'. mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CC_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi am__universal=false case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with # Solaris 8's {/usr,}/bin/sh. touch sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with `-c' and `-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle `-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # after this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvisualcpp | msvcmsys) # This compiler won't grok `-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CC_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CC_dependencies_compiler_type=none fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 $as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then am__fastdepCC_TRUE= am__fastdepCC_FALSE='#' else am__fastdepCC_TRUE='#' am__fastdepCC_FALSE= fi 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 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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_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'. 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 8's {/usr,}/bin/sh. touch sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with `-c' and `-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle `-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # after this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvisualcpp | msvcmsys) # This compiler won't grok `-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_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 { $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 { $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 if test "x$CC" != xcc; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC and cc understand -c and -o together" >&5 $as_echo_n "checking whether $CC and cc understand -c and -o together... " >&6; } else { $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; } fi set dummy $CC; ac_cc=`$as_echo "$2" | sed 's/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/'` if eval \${ac_cv_prog_cc_${ac_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. # We do the test twice because some compilers refuse to overwrite an # existing .o file with -o, though they will create one. ac_try='$CC -c conftest.$ac_ext -o conftest2.$ac_objext >&5' rm -f conftest2.* if { { 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; } && test -f conftest2.$ac_objext && { { 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 eval ac_cv_prog_cc_${ac_cc}_c_o=yes if test "x$CC" != xcc; then # Test first that cc exists at all. if { ac_try='cc -c conftest.$ac_ext >&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_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then ac_try='cc -c conftest.$ac_ext -o conftest2.$ac_objext >&5' rm -f conftest2.* if { { 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; } && test -f conftest2.$ac_objext && { { 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 # cc works too. : else # cc exists but doesn't like -o. eval ac_cv_prog_cc_${ac_cc}_c_o=no fi fi fi else eval ac_cv_prog_cc_${ac_cc}_c_o=no fi rm -f core conftest* fi if eval test \$ac_cv_prog_cc_${ac_cc}_c_o = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } $as_echo "#define NO_MINUS_C_MINUS_O 1" >>confdefs.h fi # FIXME: we rely on the cache variable name because # there is no other way. set dummy $CC am_cc=`echo $2 | sed 's/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/'` eval am_t=\$ac_cv_prog_cc_${am_cc}_c_o if test "$am_t" != 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 # Check whether --enable-silent-rules was given. if test "${enable_silent_rules+set}" = set; then : enableval=$enable_silent_rules; fi case $enable_silent_rules in yes) AM_DEFAULT_VERBOSITY=0;; no) AM_DEFAULT_VERBOSITY=1;; *) AM_DEFAULT_VERBOSITY=0;; esac AM_BACKSLASH='\' ac_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 acx_pthread_ok=no # We used to check for pthread.h first, but this fails if pthread.h # requires special compiler flags (e.g. on True64 or Sequent). # It gets checked for in the link test anyway. # First of all, check if the user has set any of the PTHREAD_LIBS, # etcetera environment variables, and if threads linking works using # them: if test x"$PTHREAD_LIBS$PTHREAD_CFLAGS" != x; then save_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS $PTHREAD_CFLAGS" save_LIBS="$LIBS" LIBS="$PTHREAD_LIBS $LIBS" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pthread_join in LIBS=$PTHREAD_LIBS with CFLAGS=$PTHREAD_CFLAGS" >&5 $as_echo_n "checking for pthread_join in LIBS=$PTHREAD_LIBS with CFLAGS=$PTHREAD_CFLAGS... " >&6; } 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 pthread_join (); int main () { return pthread_join (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : acx_pthread_ok=yes fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $acx_pthread_ok" >&5 $as_echo "$acx_pthread_ok" >&6; } if test x"$acx_pthread_ok" = xno; then PTHREAD_LIBS="" PTHREAD_CFLAGS="" fi LIBS="$save_LIBS" CFLAGS="$save_CFLAGS" fi # We must check for the threads library under a number of different # names; the ordering is very important because some systems # (e.g. DEC) have both -lpthread and -lpthreads, where one of the # libraries is broken (non-POSIX). # Create a list of thread flags to try. Items starting with a "-" are # C compiler flags, and other items are library names, except for "none" # which indicates that we try without any flags at all, and "pthread-config" # which is a program returning the flags for the Pth emulation library. acx_pthread_flags="pthreads none -Kthread -kthread lthread -pthread -pthreads -mthreads pthread --thread-safe -mt pthread-config" # The ordering *is* (sometimes) important. Some notes on the # individual items follow: # pthreads: AIX (must check this before -lpthread) # none: in case threads are in libc; should be tried before -Kthread and # other compiler flags to prevent continual compiler warnings # -Kthread: Sequent (threads in libc, but -Kthread needed for pthread.h) # -kthread: FreeBSD kernel threads (preferred to -pthread since SMP-able) # lthread: LinuxThreads port on FreeBSD (also preferred to -pthread) # -pthread: Linux/gcc (kernel threads), BSD/gcc (userland threads) # -pthreads: Solaris/gcc # -mthreads: Mingw32/gcc, Lynx/gcc # -mt: Sun Workshop C (may only link SunOS threads [-lthread], but it # doesn't hurt to check since this sometimes defines pthreads too; # also defines -D_REENTRANT) # ... -mt is also the pthreads flag for HP/aCC # pthread: Linux, etcetera # --thread-safe: KAI C++ # pthread-config: use pthread-config program (for GNU Pth library) case "${host_cpu}-${host_os}" in *solaris*) # On Solaris (at least, for some versions), libc contains stubbed # (non-functional) versions of the pthreads routines, so link-based # tests will erroneously succeed. (We need to link with -pthreads/-mt/ # -lpthread.) (The stubs are missing pthread_cleanup_push, or rather # a function called by this macro, so we could check for that, but # who knows whether they'll stub that too in a future libc.) So, # we'll just look for -pthreads and -lpthread first: acx_pthread_flags="-pthreads pthread -mt -pthread $acx_pthread_flags" ;; esac if test x"$acx_pthread_ok" = xno; then for flag in $acx_pthread_flags; do case $flag in none) { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether pthreads work without any flags" >&5 $as_echo_n "checking whether pthreads work without any flags... " >&6; } ;; -*) { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether pthreads work with $flag" >&5 $as_echo_n "checking whether pthreads work with $flag... " >&6; } PTHREAD_CFLAGS="$flag" ;; pthread-config) # Extract the first word of "pthread-config", so it can be a program name with args. set dummy pthread-config; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_acx_pthread_config+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$acx_pthread_config"; then ac_cv_prog_acx_pthread_config="$acx_pthread_config" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_acx_pthread_config="yes" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_prog_acx_pthread_config" && ac_cv_prog_acx_pthread_config="no" fi fi acx_pthread_config=$ac_cv_prog_acx_pthread_config if test -n "$acx_pthread_config"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $acx_pthread_config" >&5 $as_echo "$acx_pthread_config" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test x"$acx_pthread_config" = xno; then continue; fi PTHREAD_CFLAGS="`pthread-config --cflags`" PTHREAD_LIBS="`pthread-config --ldflags` `pthread-config --libs`" ;; *) { $as_echo "$as_me:${as_lineno-$LINENO}: checking for the pthreads library -l$flag" >&5 $as_echo_n "checking for the pthreads library -l$flag... " >&6; } PTHREAD_LIBS="-l$flag" ;; esac save_LIBS="$LIBS" save_CFLAGS="$CFLAGS" LIBS="$PTHREAD_LIBS $LIBS" CFLAGS="$CFLAGS $PTHREAD_CFLAGS" # Check for various functions. We must include pthread.h, # since some functions may be macros. (On the Sequent, we # need a special flag -Kthread to make this header compile.) # We check for pthread_join because it is in -lpthread on IRIX # while pthread_create is in libc. We check for pthread_attr_init # due to DEC craziness with -lpthreads. We check for # pthread_cleanup_push because it is one of the few pthread # functions on Solaris that doesn't have a non-functional libc stub. # We try pthread_create on general principles. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { pthread_t th; pthread_join(th, 0); pthread_attr_init(0); pthread_cleanup_push(0, 0); pthread_create(0,0,0,0); pthread_cleanup_pop(0); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : acx_pthread_ok=yes fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS="$save_LIBS" CFLAGS="$save_CFLAGS" { $as_echo "$as_me:${as_lineno-$LINENO}: result: $acx_pthread_ok" >&5 $as_echo "$acx_pthread_ok" >&6; } if test "x$acx_pthread_ok" = xyes; then break; fi PTHREAD_LIBS="" PTHREAD_CFLAGS="" done fi # Various other checks: if test "x$acx_pthread_ok" = xyes; then save_LIBS="$LIBS" LIBS="$PTHREAD_LIBS $LIBS" save_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS $PTHREAD_CFLAGS" # Detect AIX lossage: JOINABLE attribute is called UNDETACHED. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for joinable pthread attribute" >&5 $as_echo_n "checking for joinable pthread attribute... " >&6; } attr_name=unknown for attr in PTHREAD_CREATE_JOINABLE PTHREAD_CREATE_UNDETACHED; do cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { int attr=$attr; return attr; ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : attr_name=$attr; break fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext done { $as_echo "$as_me:${as_lineno-$LINENO}: result: $attr_name" >&5 $as_echo "$attr_name" >&6; } if test "$attr_name" != PTHREAD_CREATE_JOINABLE; then cat >>confdefs.h <<_ACEOF #define PTHREAD_CREATE_JOINABLE $attr_name _ACEOF fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking if more special flags are required for pthreads" >&5 $as_echo_n "checking if more special flags are required for pthreads... " >&6; } flag=no case "${host_cpu}-${host_os}" in *-aix* | *-freebsd* | *-darwin*) flag="-D_THREAD_SAFE";; *solaris* | *-osf* | *-hpux*) flag="-D_REENTRANT";; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${flag}" >&5 $as_echo "${flag}" >&6; } if test "x$flag" != xno; then PTHREAD_CFLAGS="$flag $PTHREAD_CFLAGS" fi LIBS="$save_LIBS" CFLAGS="$save_CFLAGS" # More AIX lossage: must compile with xlc_r or cc_r if test x"$GCC" != xyes; then for ac_prog in xlc_r cc_r 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_PTHREAD_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$PTHREAD_CC"; then ac_cv_prog_PTHREAD_CC="$PTHREAD_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_PTHREAD_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 PTHREAD_CC=$ac_cv_prog_PTHREAD_CC if test -n "$PTHREAD_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PTHREAD_CC" >&5 $as_echo "$PTHREAD_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$PTHREAD_CC" && break done test -n "$PTHREAD_CC" || PTHREAD_CC="${CC}" else PTHREAD_CC=$CC fi else PTHREAD_CC="$CC" fi # Finally, execute ACTION-IF-FOUND/ACTION-IF-NOT-FOUND: if test x"$acx_pthread_ok" = xyes; then LIBS="$PTHREAD_LIBS $LIBS" : else acx_pthread_ok=no 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 # This additional -lpthread was added due to a bug on gcc for MacOSX: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42159 # According to the bug report, a workaround is to link -lpthread. Even the ACX_PTHREAD doesn't do that, so we add an # additional check if that it possible, and if it is, then we link pthread saved_libs="$LIBS" LIBS=-lpthread { $as_echo "$as_me:${as_lineno-$LINENO}: checking We're on MacOSX. Lets check if we can link -lpthread to work around a gcc bug" >&5 $as_echo_n "checking We're on MacOSX. Lets check if we can link -lpthread to work around a gcc bug... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; }; HACK_TO_USE_PTHREAD_LIBS+=" -lpthread" else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS="$saved_libs $HACK_TO_USE_PTHREAD_LIBS" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 $as_echo_n "checking for grep that handles long lines and -e... " >&6; } if ${ac_cv_path_GREP+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$GREP"; then ac_path_GREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in grep ggrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue # Check for GNU ac_path_GREP and select it if it is found. # Check for GNU $ac_path_GREP case `"$ac_path_GREP" --version 2>&1` in *GNU*) ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo 'GREP' >> "conftest.nl" "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_GREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_GREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_GREP"; then as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_GREP=$GREP fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5 $as_echo "$ac_cv_path_GREP" >&6; } GREP="$ac_cv_path_GREP" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 $as_echo_n "checking for egrep... " >&6; } if ${ac_cv_path_EGREP+:} false; then : $as_echo_n "(cached) " >&6 else if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 then ac_cv_path_EGREP="$GREP -E" else if test -z "$EGREP"; then ac_path_EGREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in egrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue # Check for GNU ac_path_EGREP and select it if it is found. # Check for GNU $ac_path_EGREP case `"$ac_path_EGREP" --version 2>&1` in *GNU*) ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo 'EGREP' >> "conftest.nl" "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_EGREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_EGREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_EGREP"; then as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_EGREP=$EGREP fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5 $as_echo "$ac_cv_path_EGREP" >&6; } EGREP="$ac_cv_path_EGREP" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 $as_echo_n "checking for ANSI C header files... " >&6; } if ${ac_cv_header_stdc+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include #include int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_header_stdc=yes else ac_cv_header_stdc=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "memchr" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "free" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. if test "$cross_compiling" = yes; then : : else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #if ((' ' & 0x0FF) == 0x020) # define ISLOWER(c) ('a' <= (c) && (c) <= 'z') # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) #else # define ISLOWER(c) \ (('a' <= (c) && (c) <= 'i') \ || ('j' <= (c) && (c) <= 'r') \ || ('s' <= (c) && (c) <= 'z')) # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) #endif #define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) int main () { int i; for (i = 0; i < 256; i++) if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) return 2; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : else ac_cv_header_stdc=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 $as_echo "$ac_cv_header_stdc" >&6; } if test $ac_cv_header_stdc = yes; then $as_echo "#define STDC_HEADERS 1" >>confdefs.h fi # On IRIX 5.3, sys/types and inttypes.h are conflicting. for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ inttypes.h stdint.h unistd.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default " if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done for ac_header in stddef.h stdint.h stdlib.h string.h sys/time.h unistd.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done { $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 ac_fn_c_find_intX_t "$LINENO" "16" "ac_cv_c_int16_t" case $ac_cv_c_int16_t in #( no|yes) ;; #( *) cat >>confdefs.h <<_ACEOF #define int16_t $ac_cv_c_int16_t _ACEOF ;; esac ac_fn_c_find_intX_t "$LINENO" "32" "ac_cv_c_int32_t" case $ac_cv_c_int32_t in #( no|yes) ;; #( *) cat >>confdefs.h <<_ACEOF #define int32_t $ac_cv_c_int32_t _ACEOF ;; esac ac_fn_c_find_intX_t "$LINENO" "64" "ac_cv_c_int64_t" case $ac_cv_c_int64_t in #( no|yes) ;; #( *) cat >>confdefs.h <<_ACEOF #define int64_t $ac_cv_c_int64_t _ACEOF ;; esac ac_fn_c_find_intX_t "$LINENO" "8" "ac_cv_c_int8_t" case $ac_cv_c_int8_t in #( no|yes) ;; #( *) cat >>confdefs.h <<_ACEOF #define int8_t $ac_cv_c_int8_t _ACEOF ;; esac ac_fn_c_check_type "$LINENO" "pid_t" "ac_cv_type_pid_t" "$ac_includes_default" if test "x$ac_cv_type_pid_t" = xyes; then : else cat >>confdefs.h <<_ACEOF #define pid_t int _ACEOF fi ac_fn_c_check_type "$LINENO" "size_t" "ac_cv_type_size_t" "$ac_includes_default" if test "x$ac_cv_type_size_t" = xyes; then : else cat >>confdefs.h <<_ACEOF #define size_t unsigned int _ACEOF fi ac_fn_c_find_uintX_t "$LINENO" "16" "ac_cv_c_uint16_t" case $ac_cv_c_uint16_t in #( no|yes) ;; #( *) cat >>confdefs.h <<_ACEOF #define uint16_t $ac_cv_c_uint16_t _ACEOF ;; esac ac_fn_c_find_uintX_t "$LINENO" "32" "ac_cv_c_uint32_t" case $ac_cv_c_uint32_t in #( no|yes) ;; #( *) $as_echo "#define _UINT32_T 1" >>confdefs.h cat >>confdefs.h <<_ACEOF #define uint32_t $ac_cv_c_uint32_t _ACEOF ;; esac ac_fn_c_find_uintX_t "$LINENO" "64" "ac_cv_c_uint64_t" case $ac_cv_c_uint64_t in #( no|yes) ;; #( *) $as_echo "#define _UINT64_T 1" >>confdefs.h cat >>confdefs.h <<_ACEOF #define uint64_t $ac_cv_c_uint64_t _ACEOF ;; esac ac_fn_c_find_uintX_t "$LINENO" "8" "ac_cv_c_uint8_t" case $ac_cv_c_uint8_t in #( no|yes) ;; #( *) $as_echo "#define _UINT8_T 1" >>confdefs.h cat >>confdefs.h <<_ACEOF #define uint8_t $ac_cv_c_uint8_t _ACEOF ;; esac # Checks for library functions. for ac_header in vfork.h do : ac_fn_c_check_header_mongrel "$LINENO" "vfork.h" "ac_cv_header_vfork_h" "$ac_includes_default" if test "x$ac_cv_header_vfork_h" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_VFORK_H 1 _ACEOF fi done for ac_func in fork vfork do : as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" if eval test \"x\$"$as_ac_var"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF fi done if test "x$ac_cv_func_fork" = xyes; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working fork" >&5 $as_echo_n "checking for working fork... " >&6; } if ${ac_cv_func_fork_works+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : ac_cv_func_fork_works=cross else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $ac_includes_default int main () { /* By Ruediger Kuhlmann. */ return fork () < 0; ; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : ac_cv_func_fork_works=yes else ac_cv_func_fork_works=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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_fork_works" >&5 $as_echo "$ac_cv_func_fork_works" >&6; } else ac_cv_func_fork_works=$ac_cv_func_fork fi if test "x$ac_cv_func_fork_works" = xcross; then case $host in *-*-amigaos* | *-*-msdosdjgpp*) # Override, as these systems have only a dummy fork() stub ac_cv_func_fork_works=no ;; *) ac_cv_func_fork_works=yes ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: result $ac_cv_func_fork_works guessed because of cross compilation" >&5 $as_echo "$as_me: WARNING: result $ac_cv_func_fork_works guessed because of cross compilation" >&2;} fi ac_cv_func_vfork_works=$ac_cv_func_vfork if test "x$ac_cv_func_vfork" = xyes; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working vfork" >&5 $as_echo_n "checking for working vfork... " >&6; } if ${ac_cv_func_vfork_works+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : ac_cv_func_vfork_works=cross else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Thanks to Paul Eggert for this test. */ $ac_includes_default #include #ifdef HAVE_VFORK_H # include #endif /* On some sparc systems, changes by the child to local and incoming argument registers are propagated back to the parent. The compiler is told about this with #include , but some compilers (e.g. gcc -O) don't grok . Test for this by using a static variable whose address is put into a register that is clobbered by the vfork. */ static void #ifdef __cplusplus sparc_address_test (int arg) # else sparc_address_test (arg) int arg; #endif { static pid_t child; if (!child) { child = vfork (); if (child < 0) { perror ("vfork"); _exit(2); } if (!child) { arg = getpid(); write(-1, "", 0); _exit (arg); } } } int main () { pid_t parent = getpid (); pid_t child; sparc_address_test (0); child = vfork (); if (child == 0) { /* Here is another test for sparc vfork register problems. This test uses lots of local variables, at least as many local variables as main has allocated so far including compiler temporaries. 4 locals are enough for gcc 1.40.3 on a Solaris 4.1.3 sparc, but we use 8 to be safe. A buggy compiler should reuse the register of parent for one of the local variables, since it will think that parent can't possibly be used any more in this routine. Assigning to the local variable will thus munge parent in the parent process. */ pid_t p = getpid(), p1 = getpid(), p2 = getpid(), p3 = getpid(), p4 = getpid(), p5 = getpid(), p6 = getpid(), p7 = getpid(); /* Convince the compiler that p..p7 are live; otherwise, it might use the same hardware register for all 8 local variables. */ if (p != p1 || p != p2 || p != p3 || p != p4 || p != p5 || p != p6 || p != p7) _exit(1); /* On some systems (e.g. IRIX 3.3), vfork doesn't separate parent from child file descriptors. If the child closes a descriptor before it execs or exits, this munges the parent's descriptor as well. Test for this by closing stdout in the child. */ _exit(close(fileno(stdout)) != 0); } else { int status; struct stat st; while (wait(&status) != child) ; return ( /* Was there some problem with vforking? */ child < 0 /* Did the child fail? (This shouldn't happen.) */ || status /* Did the vfork/compiler bug occur? */ || parent != getpid() /* Did the file descriptor bug occur? */ || fstat(fileno(stdout), &st) != 0 ); } } _ACEOF if ac_fn_c_try_run "$LINENO"; then : ac_cv_func_vfork_works=yes else ac_cv_func_vfork_works=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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_vfork_works" >&5 $as_echo "$ac_cv_func_vfork_works" >&6; } fi; if test "x$ac_cv_func_fork_works" = xcross; then ac_cv_func_vfork_works=$ac_cv_func_vfork { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: result $ac_cv_func_vfork_works guessed because of cross compilation" >&5 $as_echo "$as_me: WARNING: result $ac_cv_func_vfork_works guessed because of cross compilation" >&2;} fi if test "x$ac_cv_func_vfork_works" = xyes; then $as_echo "#define HAVE_WORKING_VFORK 1" >>confdefs.h else $as_echo "#define vfork fork" >>confdefs.h fi if test "x$ac_cv_func_fork_works" = xyes; then $as_echo "#define HAVE_WORKING_FORK 1" >>confdefs.h fi for ac_header in stdlib.h do : ac_fn_c_check_header_mongrel "$LINENO" "stdlib.h" "ac_cv_header_stdlib_h" "$ac_includes_default" if test "x$ac_cv_header_stdlib_h" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_STDLIB_H 1 _ACEOF fi done { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU libc compatible malloc" >&5 $as_echo_n "checking for GNU libc compatible malloc... " >&6; } if ${ac_cv_func_malloc_0_nonnull+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : ac_cv_func_malloc_0_nonnull=no else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #if defined STDC_HEADERS || defined HAVE_STDLIB_H # include #else char *malloc (); #endif int main () { return ! malloc (0); ; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : ac_cv_func_malloc_0_nonnull=yes else ac_cv_func_malloc_0_nonnull=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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_malloc_0_nonnull" >&5 $as_echo "$ac_cv_func_malloc_0_nonnull" >&6; } if test $ac_cv_func_malloc_0_nonnull = yes; then : $as_echo "#define HAVE_MALLOC 1" >>confdefs.h else $as_echo "#define HAVE_MALLOC 0" >>confdefs.h case " $LIBOBJS " in *" malloc.$ac_objext "* ) ;; *) LIBOBJS="$LIBOBJS malloc.$ac_objext" ;; esac $as_echo "#define malloc rpl_malloc" >>confdefs.h fi for ac_header in stdlib.h do : ac_fn_c_check_header_mongrel "$LINENO" "stdlib.h" "ac_cv_header_stdlib_h" "$ac_includes_default" if test "x$ac_cv_header_stdlib_h" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_STDLIB_H 1 _ACEOF fi done { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU libc compatible realloc" >&5 $as_echo_n "checking for GNU libc compatible realloc... " >&6; } if ${ac_cv_func_realloc_0_nonnull+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : ac_cv_func_realloc_0_nonnull=no else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #if defined STDC_HEADERS || defined HAVE_STDLIB_H # include #else char *realloc (); #endif int main () { return ! realloc (0, 0); ; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : ac_cv_func_realloc_0_nonnull=yes else ac_cv_func_realloc_0_nonnull=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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_realloc_0_nonnull" >&5 $as_echo "$ac_cv_func_realloc_0_nonnull" >&6; } if test $ac_cv_func_realloc_0_nonnull = yes; then : $as_echo "#define HAVE_REALLOC 1" >>confdefs.h else $as_echo "#define HAVE_REALLOC 0" >>confdefs.h case " $LIBOBJS " in *" realloc.$ac_objext "* ) ;; *) LIBOBJS="$LIBOBJS realloc.$ac_objext" ;; esac $as_echo "#define realloc rpl_realloc" >>confdefs.h fi for ac_func in gettimeofday memset strstr do : as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" if eval test \"x\$"$as_ac_var"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF fi done # 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_CPPUTEST_HAS_GCC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CPPUTEST_HAS_GCC"; then ac_cv_prog_CPPUTEST_HAS_GCC="$CPPUTEST_HAS_GCC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CPPUTEST_HAS_GCC="yes" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_prog_CPPUTEST_HAS_GCC" && ac_cv_prog_CPPUTEST_HAS_GCC="no" fi fi CPPUTEST_HAS_GCC=$ac_cv_prog_CPPUTEST_HAS_GCC if test -n "$CPPUTEST_HAS_GCC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPPUTEST_HAS_GCC" >&5 $as_echo "$CPPUTEST_HAS_GCC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "clang", so it can be a program name with args. set dummy clang; 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_CPPUTEST_HAS_CLANG+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CPPUTEST_HAS_CLANG"; then ac_cv_prog_CPPUTEST_HAS_CLANG="$CPPUTEST_HAS_CLANG" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CPPUTEST_HAS_CLANG="yes" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_prog_CPPUTEST_HAS_CLANG" && ac_cv_prog_CPPUTEST_HAS_CLANG="no" fi fi CPPUTEST_HAS_CLANG=$ac_cv_prog_CPPUTEST_HAS_CLANG if test -n "$CPPUTEST_HAS_CLANG"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPPUTEST_HAS_CLANG" >&5 $as_echo "$CPPUTEST_HAS_CLANG" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "lcov", so it can be a program name with args. set dummy lcov; 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_CPPUTEST_HAS_LCOV+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CPPUTEST_HAS_LCOV"; then ac_cv_prog_CPPUTEST_HAS_LCOV="$CPPUTEST_HAS_LCOV" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CPPUTEST_HAS_LCOV="yes" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_prog_CPPUTEST_HAS_LCOV" && ac_cv_prog_CPPUTEST_HAS_LCOV="no" fi fi CPPUTEST_HAS_LCOV=$ac_cv_prog_CPPUTEST_HAS_LCOV if test -n "$CPPUTEST_HAS_LCOV"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPPUTEST_HAS_LCOV" >&5 $as_echo "$CPPUTEST_HAS_LCOV" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Checking for warning flags on the compiler saved_cflags="$CFLAGS" saved_cxxflags="$CXXFLAGS" saved_ldflags="$LDFLAGS" # FLag -Werror. CFLAGS=-Werror { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether CC and CXX supports -Werror" >&5 $as_echo_n "checking whether CC and CXX supports -Werror... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; }; CPPUTEST_CWARNINGFLAGS+=" -Werror"; CPPUTEST_CXXWARNINGFLAGS+=" -Werror" else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext CFLAGS="$saved_cflags" # FLag -Weverything. CFLAGS="-Werror -Weverything -Wno-unused-macros" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether CC and CXX supports -Weverything" >&5 $as_echo_n "checking whether CC and CXX supports -Weverything... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; }; CPPUTEST_CWARNINGFLAGS+=" -Weverything"; CPPUTEST_CXXWARNINGFLAGS+=" -Weverything" else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext CFLAGS="$saved_cflags" # FLag -Wall. CFLAGS="-Werror -Wall" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether CC and CXX supports -Wall" >&5 $as_echo_n "checking whether CC and CXX supports -Wall... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; }; CPPUTEST_CWARNINGFLAGS+=" -Wall"; CPPUTEST_CXXWARNINGFLAGS+=" -Wall" else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext CFLAGS="$saved_cflags" # FLag -Wextra. CFLAGS="-Werror -Wextra" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether CC and CXX supports -Wextra" >&5 $as_echo_n "checking whether CC and CXX supports -Wextra... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; }; CPPUTEST_CWARNINGFLAGS+=" -Wextra"; CPPUTEST_CXXWARNINGFLAGS+=" -Wextra" else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext CFLAGS="$saved_cflags" # FLag -Wshadow. CFLAGS="-Werror -Wshadow" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether CC and CXX supports -Wshadow" >&5 $as_echo_n "checking whether CC and CXX supports -Wshadow... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; }; CPPUTEST_CWARNINGFLAGS+=" -Wshadow"; CPPUTEST_CXXWARNINGFLAGS+=" -Wshadow" else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext CFLAGS="$saved_cflags" # FLag -Wswitch-default CFLAGS="-Werror -Wswitch-default" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether CC and CXX supports -Wswitch-default" >&5 $as_echo_n "checking whether CC and CXX supports -Wswitch-default... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; }; CPPUTEST_CWARNINGFLAGS+=" -Wswitch-default"; CPPUTEST_CXXWARNINGFLAGS+=" -Wswitch-default" else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext CFLAGS="$saved_cflags" # FLag -Wswitch-enum CFLAGS="-Werror -Wswitch-enum" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether CC and CXX supports -Wswitch-enum" >&5 $as_echo_n "checking whether CC and CXX supports -Wswitch-enum... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; }; CPPUTEST_CWARNINGFLAGS+=" -Wswitch-enum"; CPPUTEST_CXXWARNINGFLAGS+=" -Wswitch-enum" else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext CFLAGS="$saved_cflags" # FLag -Wconversion CFLAGS="-Werror -Wconversion" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether CC and CXX supports -Wconversion" >&5 $as_echo_n "checking whether CC and CXX supports -Wconversion... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; }; CPPUTEST_CWARNINGFLAGS+=" -Wconversion"; CPPUTEST_CXXWARNINGFLAGS+=" -Wconversion" else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext CFLAGS="$saved_cflags" # FLag -pedantic-errors CFLAGS="-Werror -pedantic-errors" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether CC and CXX supports -pedantic-errors" >&5 $as_echo_n "checking whether CC and CXX supports -pedantic-errors... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; }; CPPUTEST_CWARNINGFLAGS+=" -pedantic-errors"; CPPUTEST_CXXWARNINGFLAGS+=" -pedantic-errors" else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext CFLAGS="$saved_cflags" # FLag -Wsign-conversion CFLAGS="-Werror -Wsign-conversion" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether CC and CXX supports -Wsign-conversion" >&5 $as_echo_n "checking whether CC and CXX supports -Wsign-conversion... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; }; CPPUTEST_CWARNINGFLAGS+=" -Wsign-conversion"; CPPUTEST_CXXWARNINGFLAGS+=" -Wsign-conversion" else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext CFLAGS="$saved_cflags" # FLag -Woverloaded-virtual 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 CXXFLAGS="-Werror -Woverloaded-virtual" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether CXX supports -Woverloaded-virtual" >&5 $as_echo_n "checking whether CXX supports -Woverloaded-virtual... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; }; CPPUTEST_CXXWARNINGFLAGS+=" -Woverloaded-virtual" else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext CXXFLAGS="$saved_cxxflags" 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 # FLag -Wstrict-prototypes CFLAGS="-Werror -Wstrict-prototypes" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether CC supports -Wstrict-prototypes" >&5 $as_echo_n "checking whether CC supports -Wstrict-prototypes... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; }; CPPUTEST_CWARNINGFLAGS+=" -Wstrict-prototypes" else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext CFLAGS="$saved_cflags" # Disable some warnings as CppUTest has this and can't be prevented at the moment. # FLag -Wno-disabled-macro-expansion. CFLAGS="-Werror -Wno-disabled-macro-expansion" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether CC and CXX supports -Wno-disabled-macro-expansion" >&5 $as_echo_n "checking whether CC and CXX supports -Wno-disabled-macro-expansion... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; }; CPPUTEST_CWARNINGFLAGS+=" -Wno-disabled-macro-expansion"; CPPUTEST_CXXWARNINGFLAGS+=" -Wno-disabled-macro-expansion" else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext CFLAGS="$saved_cflags" # FLag -Wno-padded. CFLAGS="-Werror -Wno-padded" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether CC and CXX supports -Wno-padded" >&5 $as_echo_n "checking whether CC and CXX supports -Wno-padded... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; }; CPPUTEST_CWARNINGFLAGS+=" -Wno-padded"; CPPUTEST_CXXWARNINGFLAGS+=" -Wno-padded" else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext CFLAGS="$saved_cflags" # FLag -Wno-global-constructors. 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 CXXFLAGS="-Werror -Wno-global-constructors" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether CXX supports -Wno-global-constructors" >&5 $as_echo_n "checking whether CXX supports -Wno-global-constructors... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; }; CPPUTEST_CXXWARNINGFLAGS+=" -Wno-global-constructors" else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext CXXFLAGS="$saved_cxxflags" 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 # FLag -Wno-exit-time-destructors. 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 CXXFLAGS="-Werror -Wno-exit-time-destructors" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether CXX supports -Wno-exit-time-destructors" >&5 $as_echo_n "checking whether CXX supports -Wno-exit-time-destructors... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; }; CPPUTEST_CXXWARNINGFLAGS+=" -Wno-exit-time-destructors" else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext CXXFLAGS="$saved_cxxflags" 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 # FLag -Wno-weak-vtables. 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 CXXFLAGS="-Werror -Wno-weak-vtables" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether CXX supports -Wno-weak-vtables" >&5 $as_echo_n "checking whether CXX supports -Wno-weak-vtables... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; }; CPPUTEST_CXXWARNINGFLAGS+=" -Wno-weak-vtables" else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext CXXFLAGS="$saved_cxxflags" 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 ##### Linker checking. # # TBD! # Things that need to be fixed! # # The below code is checking for the -Qunused-arguments which is a linker flag. However, it says gcc supports it, while in fact, it doesn't. # As a workaround, we'll just check whether it is clang hardcoded, this is not in the automake spirit and will need to be fixed. # # LDFLAGS= # AC_MSG_CHECKING([whether LD supports -Qunused-arguments]) # AC_LINK_IFELSE([AC_LANG_PROGRAM([])], [AC_MSG_RESULT([yes]); CPPUTEST_NO_UNUSED_ARGUMENT_WARNING+=" -Qunused-arguments" ], [AC_MSG_RESULT([no])]) # LDFLAGS="$saved_ldflags" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether CXXLD supports -Qunused-arguments linker option" >&5 $as_echo_n "checking whether CXXLD supports -Qunused-arguments linker option... " >&6; } OUTPUT_WHEN_CLANG_COMPILER=`${CXX} --version | grep clang` if ! test -z "$OUTPUT_WHEN_CLANG_COMPILER"; then TEST_COMPILER_IS_CLANG_TRUE= TEST_COMPILER_IS_CLANG_FALSE='#' else TEST_COMPILER_IS_CLANG_TRUE='#' TEST_COMPILER_IS_CLANG_FALSE= fi if ! test -z "$OUTPUT_WHEN_CLANG_COMPILER"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; }; CPPUTEST_NO_UNUSED_ARGUMENT_WARNING+=" -Qunused-arguments" else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; }; CPPUTEST_NO_UNUSED_ARGUMENT_WARNING+=" " fi # Checking for options for creating map files LDFLAGS=" -Wl,-map,$<.map.txt" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether LD supports -Wl,-map" >&5 $as_echo_n "checking whether LD supports -Wl,-map... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; }; CPPUTEST_LD_MAP_GENERATION+=" -Wl,-map,$<.map.txt" else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LDFLAGS="$saved_ldflags" # Different features # Check whether --enable-std-c was given. if test "${enable_std_c+set}" = set; then : enableval=$enable_std_c; use_std_c=${enableval} else use_std_c=yes fi # Check whether --enable-std-cpp was given. if test "${enable_std_cpp+set}" = set; then : enableval=$enable_std_cpp; use_std_cpp=${enableval} else use_std_cpp=yes fi # Check whether --enable-cpputest-flags was given. if test "${enable_cpputest_flags+set}" = set; then : enableval=$enable_cpputest_flags; cpputest_flags=${enableval} else cpputest_flags=yes fi # Check whether --enable-memory-leak-detection was given. if test "${enable_memory_leak_detection+set}" = set; then : enableval=$enable_memory_leak_detection; memory_leak_detection=${enableval} else memory_leak_detection=yes fi # Check whether --enable-extensions was given. if test "${enable_extensions+set}" = set; then : enableval=$enable_extensions; cpputest_ext=${enableval} else cpputest_ext=yes fi # Check whether --enable-generate-map-file was given. if test "${enable_generate_map_file+set}" = set; then : enableval=$enable_generate_map_file; generate_map_file=${enableval} else generate_map_file=no fi # Check whether --enable-coverage was given. if test "${enable_coverage+set}" = set; then : enableval=$enable_coverage; coverage=${enableval} else coverage=no fi # Check whether --enable-real-gtest was given. if test "${enable_real_gtest+set}" = set; then : enableval=$enable_real_gtest; real_gtest=${enableval} else real_gtest=no fi # Check whether --enable-gmock was given. if test "${enable_gmock+set}" = set; then : enableval=$enable_gmock; use_gmock=${enableval} else use_gmock=no fi ############################## Setting options ############################### if test "x${cpputest_ext}" = xyes; then INCLUDE_CPPUTEST_EXT_TRUE= INCLUDE_CPPUTEST_EXT_FALSE='#' else INCLUDE_CPPUTEST_EXT_TRUE='#' INCLUDE_CPPUTEST_EXT_FALSE= fi # Dealing with not having a Standard C library... (usually for Kernel development) if test "x${use_std_c}" = xno; then use_std_cpp=no memory_leak_detection=no CPPUTEST_CPPFLAGS+=" -nostdinc" CPPUTEST_LDFLAGS+=" -nostdlib" $as_echo "#define CPPUTEST_STD_C_LIB_DISABLED 1" >>confdefs.h CPP_PLATFORM="GccNoStdC" else CPP_PLATFORM="Gcc" fi # Using standard C++ if test "x${use_std_cpp}" = xno; then $as_echo "#define CPPUTEST_STD_CPP_LIB_DISABLED 1" >>confdefs.h if test "x${use_std_c}" = xyes; then CPPUTEST_CXXFLAGS+=" -nostdinc++" # Since automake passes the CXXFLAGS to the linker, this will cause warnings with clang 3.2 (which become errors) CPPUTEST_LDFLAGS+=$CPPUTEST_NO_UNUSED_ARGUMENT_WARNING fi fi # Dealing with memory leak detection if test "x${memory_leak_detection}" = xno; then $as_echo "#define CPPUTEST_MEM_LEAK_DETECTION_DISABLED 1" >>confdefs.h else CPPUTEST_CXXFLAGS+=" -include ${srcdir}/include/CppUTest/MemoryLeakDetectorNewMacros.h" CPPUTEST_CPPFLAGS+=" -include ${srcdir}/include/CppUTest/MemoryLeakDetectorMallocMacros.h" fi # Generating map files. if test "x${generate_map_file}" = xyes; then CPPUTEST_LDFLAGS+=$CPPUTEST_LD_MAP_GENERATION MOSTLYCLEANFILES+=" *.map.txt" fi if test "x${coverage}" = xyes; then CPPUTEST_CXXFLAGS+=" --coverage" CPPUTEST_CFLAGS+=" --coverage" MOSTLYCLEANFILES+=" *.gcda *.gcno" fi if test "x${use_gmock}" = xyes; then if test -z ${GMOCK_HOME}; then as_fn_error $? " ------------------------------------- Compiling with --enable-gmock will require the GMOCK_HOME to be set. -------------------------------------" "$LINENO" 5 fi real_gtest=yes GTEST_HOME=${GMOCK_HOME}/gtest CPPUTEST_CPPFLAGS+=" -I${GMOCK_HOME}/include" if test -e ${GMOCK_HOME}/lib/libgmock.la; then \ CPPUTEST_LDADD+=" ${GMOCK_HOME}/lib/libgmock.la"; \ elif test -e ${GMOCK_HOME}/libgmock.a; then \ CPPUTEST_LDADD+=" ${GMOCK_HOME}/libgmock.a"; \ else \ as_fn_error $? " ------------------------------------- GMOCK_HOME was set, but couldn't find the compiled library. Did you compile it? -------------------------------------" "$LINENO" 5; fi $as_echo "#define CPPUTEST_USE_REAL_GMOCK 1" >>confdefs.h else CPPUTEST_CPPFLAGS+=" -I${srcdir}/include/CppUTestExt/CppUTestGMock" fi if test "x${real_gtest}" = xyes; then if test -z ${GTEST_HOME}; then as_fn_error $? " ------------------------------------- Compiling with --enable-real-gtest requires you to set the GTEST_HOME to the GTest source directory -------------------------------------" "$LINENO" 5 fi CPPUTEST_CPPFLAGS+=" -I${GTEST_HOME}/include -I${GTEST_HOME} -Isomething" if test -e ${GTEST_HOME}/lib/libgtest.la; then \ CPPUTEST_LDADD+=" ${GTEST_HOME}/lib/libgtest.la"; \ elif test -e ${GTEST_HOME}/libgtest.a; then \ CPPUTEST_LDADD+=" ${GTEST_HOME}/libgtest.a"; \ else \ as_fn_error $? " ------------------------------------- GTEST_HOME was set, but couldn't find the compiled library. Did you compile it? -------------------------------------" "$LINENO" 5; fi $as_echo "#define CPPUTEST_USE_REAL_GTEST 1" >>confdefs.h # Turn warnings off. Gtest doesn't like it! CPPUTEST_CWARNINGFLAGS="" CPPUTEST_CXXWARNINGFLAGS="" else CPPUTEST_CPPFLAGS+=" -I${srcdir}/include/CppUTestExt/CppUTestGTest" fi CPPUTEST_CFLAGS+=" ${CPPUTEST_CWARNINGFLAGS}" CPPUTEST_CXXFLAGS+=" ${CPPUTEST_CXXWARNINGFLAGS}" CPPUTEST_CPPFLAGS+=" -I ${srcdir}/include ${CPPUTEST_CPPWARNINGFLAGS}" if test "x${cpputest_flags}" = xno; then CPPUTEST_CFLAGS="" CPPUTEST_CXXFLAGS="" CPPUTEST_CPPFLAGS="" fi ############################## Values ######################################## ### All files in git if test -e "${srcdir}/.git"; then ALL_FILES_IN_GIT="`git --git-dir=${srcdir}/.git ls-files | tr ' \n' ' '`" fi # Variables to substitute # Replacement of tool flags $as_echo "#define CPPUTEST_COMPILATION 1" >>confdefs.h 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' macro_revision='1.3293' ltmain="$ac_aux_dir/ltmain.sh" # Backslashify metacharacters that are still active within # double-quoted strings. sed_quote_subst='s/\(["`$\\]\)/\\\1/g' # Same as above, but do not quote variable references. double_quote_subst='s/\(["`\\]\)/\\\1/g' # Sed substitution to delay expansion of an escaped shell variable in a # double_quote_subst'ed string. delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' # Sed substitution to delay expansion of an escaped single quote. delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g' # Sed substitution to avoid accidental globbing in evaled expressions no_glob_subst='s/\*/\\\*/g' ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to print strings" >&5 $as_echo_n "checking how to print strings... " >&6; } # Test print first, because it will be a builtin if present. if test "X`( print -r -- -n ) 2>/dev/null`" = X-n && \ test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then ECHO='print -r --' elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then ECHO='printf %s\n' else # Use this function as a fallback that always works. func_fallback_echo () { eval 'cat <<_LTECHO_EOF $1 _LTECHO_EOF' } ECHO='func_fallback_echo' fi # func_echo_all arg... # Invoke $ECHO with all args, space-separated. func_echo_all () { $ECHO "" } case "$ECHO" in printf*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: printf" >&5 $as_echo "printf" >&6; } ;; print*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: print -r" >&5 $as_echo "print -r" >&6; } ;; *) { $as_echo "$as_me:${as_lineno-$LINENO}: result: cat" >&5 $as_echo "cat" >&6; } ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a sed that does not truncate output" >&5 $as_echo_n "checking for a sed that does not truncate output... " >&6; } if ${ac_cv_path_SED+:} false; then : $as_echo_n "(cached) " >&6 else ac_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/ for ac_i in 1 2 3 4 5 6 7; do ac_script="$ac_script$as_nl$ac_script" done echo "$ac_script" 2>/dev/null | sed 99q >conftest.sed { ac_script=; unset ac_script;} if test -z "$SED"; then ac_path_SED_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in sed gsed; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_SED="$as_dir/$ac_prog$ac_exec_ext" { test -f "$ac_path_SED" && $as_test_x "$ac_path_SED"; } || continue # Check for GNU ac_path_SED and select it if it is found. # Check for GNU $ac_path_SED case `"$ac_path_SED" --version 2>&1` in *GNU*) ac_cv_path_SED="$ac_path_SED" ac_path_SED_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo '' >> "conftest.nl" "$ac_path_SED" -f conftest.sed < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_SED_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_SED="$ac_path_SED" ac_path_SED_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_SED_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_SED"; then as_fn_error $? "no acceptable sed could be found in \$PATH" "$LINENO" 5 fi else ac_cv_path_SED=$SED fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_SED" >&5 $as_echo "$ac_cv_path_SED" >&6; } SED="$ac_cv_path_SED" rm -f conftest.sed test -z "$SED" && SED=sed Xsed="$SED -e 1s/^X//" { $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" { test -f "$ac_path_FGREP" && $as_test_x "$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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_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; } # 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 ;; 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"; 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"`func_fallback_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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_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 ;; gnu*) lt_cv_deplibs_check_method=pass_all ;; 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 Linux ELF. linux* | k*bsd*-gnu | kopensolaris*-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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_STRIP="${ac_tool_prefix}strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi STRIP=$ac_cv_prog_STRIP if test -n "$STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 $as_echo "$STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_STRIP"; then ac_ct_STRIP=$STRIP # Extract the first word of "strip", so it can be a program name with args. set dummy strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_STRIP"; then ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_STRIP="strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP if test -n "$ac_ct_STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 $as_echo "$ac_ct_STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_STRIP" = x; then STRIP=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac STRIP=$ac_ct_STRIP fi else STRIP="$ac_cv_prog_STRIP" fi 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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_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 \$oldlib" ;; *) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$oldlib" ;; esac old_archive_cmds="$old_archive_cmds~\$RANLIB \$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};"\ " /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*|ppc*-*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*) LD="${LD-ld} -m elf_i386" ;; ppc64-*linux*|powerpc64-*linux*) 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" ;; ppc*-*linux*|powerpc*-*linux*) 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 ;; sparc*-*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*) LD="${LD-ld} -m elf64_sparc" ;; *) 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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$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 { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_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 test -f libconftest.dylib && test ! -s conftest.err && test $_lt_result = 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 -f conftest && test ! -s conftest.err && test $_lt_result = 0 && $GREP forced_load conftest 2>&1 >/dev/null; 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 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 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 # 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; pic_mode="$withval" 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 ' lt_prog_compiler_pic='-Xcompiler -fPIC' ;; 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) 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\ F* | *Sun*Fortran*) # 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\ C*) # Sun C 5.9 lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' lt_prog_compiler_wl='-Wl,' ;; 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_flag_spec_ld= 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= hardcode_libdir_flag_spec_ld='-rpath $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 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 ;; freebsd1*) ld_shlibs=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_flag_spec_ld='+b $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 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 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 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 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 ;; freebsd1*) dynamic_linker=no ;; 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[123]*) 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 ;; 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 ;; haiku*) version_type=linux 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 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 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 Linux ELF. linux* | k*bsd*-gnu | kopensolaris*-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' 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 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 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 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 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 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 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" 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_flag_spec_ld_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 ;; freebsd[12]*) # 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 ;; gnu*) ;; 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) 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" ;; 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) 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*) ;; *) 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 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 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 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 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 ;; freebsd1*) dynamic_linker=no ;; 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[123]*) 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 ;; 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 ;; haiku*) version_type=linux 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 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 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 Linux ELF. linux* | k*bsd*-gnu | kopensolaris*-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' 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 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 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 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 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 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 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_config_commands="$ac_config_commands libtool" # Only expand once: ac_config_files="$ac_config_files Makefile" cat >confcache <<\_ACEOF # This file is a shell script that caches the results of configure # tests run on this system so they can be shared between configure # scripts and configure runs, see configure's option --config-cache. # It is not useful on other systems. If it contains results you don't # want to keep, you may remove or edit it. # # config.status only pays attention to the cache file if you give it # the --recheck option to rerun configure. # # `ac_cv_env_foo' variables (set or unset) will be overridden when # loading this file, other *unset* `ac_cv_foo' will be assigned the # following values. _ACEOF # The following way of writing the cache mishandles newlines in values, # but we know of no workaround that is simple, portable, and efficient. # So, we kill variables containing newlines. # Ultrix sh set writes to stderr and can't be redirected directly, # and sets the high bit in the cache file unless we assign to the vars. ( for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space=' '; set) 2>&1` in #( *${as_nl}ac_space=\ *) # `set' does not quote correctly, so add quotes: double-quote # substitution turns \\\\ into \\, and sed turns \\ into \. sed -n \ "s/'/'\\\\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" ;; #( *) # `set' quotes correctly as required by POSIX, so do not add quotes. sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) | sed ' /^ac_cv_env_/b end t clear :clear s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ t end s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ :end' >>confcache if diff "$cache_file" confcache >/dev/null 2>&1; then :; else if test -w "$cache_file"; then if test "x$cache_file" != "x/dev/null"; then { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 $as_echo "$as_me: updating cache $cache_file" >&6;} if test ! -f "$cache_file" || test -h "$cache_file"; then cat confcache >"$cache_file" else case $cache_file in #( */* | ?:*) mv -f confcache "$cache_file"$$ && mv -f "$cache_file"$$ "$cache_file" ;; #( *) mv -f confcache "$cache_file" ;; esac fi fi else { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 $as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} fi fi rm -f confcache test "x$prefix" = xNONE && prefix=$ac_default_prefix # Let make expand exec_prefix. test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' 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 if test -n "$EXEEXT"; then am__EXEEXT_TRUE= am__EXEEXT_FALSE='#' else am__EXEEXT_TRUE='#' am__EXEEXT_FALSE= fi if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then as_fn_error $? "conditional \"AMDEP\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then as_fn_error $? "conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi 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 "${TEST_COMPILER_IS_CLANG_TRUE}" && test -z "${TEST_COMPILER_IS_CLANG_FALSE}"; then as_fn_error $? "conditional \"TEST_COMPILER_IS_CLANG\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${INCLUDE_CPPUTEST_EXT_TRUE}" && test -z "${INCLUDE_CPPUTEST_EXT_FALSE}"; then as_fn_error $? "conditional \"INCLUDE_CPPUTEST_EXT\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi : "${CONFIG_STATUS=./config.status}" ac_write_fail=0 ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files $CONFIG_STATUS" { $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 $as_echo "$as_me: creating $CONFIG_STATUS" >&6;} as_write_fail=0 cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 #! $SHELL # Generated by $as_me. # Run this file to recreate the current configuration. # Compiler output produced by configure, useful for debugging # configure, is in config.log if it exists. debug=false ac_cs_recheck=false ac_cs_silent=false SHELL=\${CONFIG_SHELL-$SHELL} export SHELL _ASEOF cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1 ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi as_nl=' ' export as_nl # Printing a long string crashes Solaris 7 /usr/bin/printf. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo # Prefer a ksh shell builtin over an external printf program on Solaris, # but without wasting forks for bash or zsh. if test -z "$BASH_VERSION$ZSH_VERSION" \ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='print -r --' as_echo_n='print -rn --' elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='printf %s\n' as_echo_n='printf %s' else if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' as_echo_n='/usr/ucb/echo -n' else as_echo_body='eval expr "X$1" : "X\\(.*\\)"' as_echo_n_body='eval arg=$1; case $arg in #( *"$as_nl"*) expr "X$arg" : "X\\(.*\\)$as_nl"; arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; esac; expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ' export as_echo_n_body as_echo_n='sh -c $as_echo_n_body as_echo' fi export as_echo_body as_echo='sh -c $as_echo_body as_echo' fi # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # IFS # We need space, tab and new line, in precisely that order. Quoting is # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # Unset variables that we do not need and which cause bugs (e.g. in # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" # suppresses any "Segmentation fault" message there. '((' could # trigger a bug in pdksh 5.2.14. for as_var in BASH_ENV ENV MAIL MAILPATH do eval test x\${$as_var+set} = xset \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # as_fn_error STATUS ERROR [LINENO LOG_FD] # ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the # script with STATUS, using 1 if that was 0. as_fn_error () { as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi $as_echo "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error # as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. as_fn_set_status () { return $1 } # as_fn_set_status # as_fn_exit STATUS # ----------------- # Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } # as_fn_exit # as_fn_unset VAR # --------------- # Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset # as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : eval 'as_fn_append () { eval $1+=\$2 }' else as_fn_append () { eval $1=\$$1\$2 } fi # as_fn_append # as_fn_arith ARG... # ------------------ # Perform arithmetic evaluation on the ARGs, and store the result in the # global $as_val. Take advantage of shells that can avoid forks. The arguments # must be portable across $(()) and expr. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : eval 'as_fn_arith () { as_val=$(( $* )) }' else as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } fi # as_fn_arith if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || $as_echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in #((((( -n*) case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. xy) ECHO_C='\c';; *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -p'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -p' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -p' fi else as_ln_s='cp -p' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null # as_fn_mkdir_p # ------------- # Create "$as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi if test -x / >/dev/null 2>&1; then as_test_x='test -x' else if ls -dL / >/dev/null 2>&1; then as_ls_L_option=L else as_ls_L_option= fi as_test_x=' eval sh -c '\'' if test -d "$1"; then test -d "$1/."; else case $1 in #( -*)set "./$1";; esac; case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #(( ???[sx]*):;;*)false;;esac;fi '\'' sh ' fi as_executable_p=$as_test_x # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" exec 6>&1 ## ----------------------------------- ## ## Main body of $CONFIG_STATUS script. ## ## ----------------------------------- ## _ASEOF test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Save the log message, to keep $0 and so on meaningful, and to # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" This file was extended by CppUTest $as_me 3.4, which was generated by GNU Autoconf 2.68. Invocation command line was CONFIG_FILES = $CONFIG_FILES CONFIG_HEADERS = $CONFIG_HEADERS CONFIG_LINKS = $CONFIG_LINKS CONFIG_COMMANDS = $CONFIG_COMMANDS $ $0 $@ on `(hostname || uname -n) 2>/dev/null | sed 1q` " _ACEOF case $ac_config_files in *" "*) set x $ac_config_files; shift; ac_config_files=$*;; esac 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="\\ CppUTest config.status 3.4 configured by $0, generated by GNU Autoconf 2.68, with options \\"\$ac_cs_config\\" Copyright (C) 2010 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." ac_pwd='$ac_pwd' srcdir='$srcdir' INSTALL='$INSTALL' MKDIR_P='$MKDIR_P' AWK='$AWK' test -n "\$AWK" || AWK=awk _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # The default lists apply if the user does not specify any file. ac_need_defaults=: while test $# != 0 do case $1 in --*=?*) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` ac_shift=: ;; --*=) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg= ac_shift=: ;; *) ac_option=$1 ac_optarg=$2 ac_shift=shift ;; esac case $ac_option in # Handling of the options. -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) ac_cs_recheck=: ;; --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) $as_echo "$ac_cs_version"; exit ;; --config | --confi | --conf | --con | --co | --c ) $as_echo "$ac_cs_config"; exit ;; --debug | --debu | --deb | --de | --d | -d ) debug=: ;; --file | --fil | --fi | --f ) $ac_shift case $ac_optarg in *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; '') as_fn_error $? "missing file argument" ;; esac as_fn_append CONFIG_FILES " '$ac_optarg'" ac_need_defaults=false;; --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"`' 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_flag_spec_ld='`$ECHO "$hardcode_libdir_flag_spec_ld" | $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_flag_spec_ld_CXX='`$ECHO "$hardcode_libdir_flag_spec_ld_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 \ 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_flag_spec_ld \ 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_flag_spec_ld_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" ;; "cpputest.pc") CONFIG_FILES="$CONFIG_FILES cpputest.pc" ;; "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; "libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;; "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"" || { # Autoconf 2.62 quotes --file arguments for eval, but not when files # are listed without --file. Let's play safe and only enable the eval # if we detect the quoting. case $CONFIG_FILES in *\'*) eval set x "$CONFIG_FILES" ;; *) set x $CONFIG_FILES ;; esac shift for mf do # Strip MF so we end up with the name of the file. mf=`echo "$mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile or not. # We used to match only the files named `Makefile.in', but # some people rename them; so instead we look at the file content. # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. # Grep'ing the whole file is not good either: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then dirpart=`$as_dirname -- "$mf" || $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$mf" : 'X\(//\)[^/]' \| \ X"$mf" : 'X\(//\)$' \| \ X"$mf" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$mf" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` else continue fi # Extract the definition of DEPDIR, am__include, and am__quote # from the Makefile without running `make'. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` test -z "$DEPDIR" && continue am__include=`sed -n 's/^am__include = //p' < "$mf"` test -z "am__include" && continue am__quote=`sed -n 's/^am__quote = //p' < "$mf"` # When using ansi2knr, U may be empty or an underscore; expand it U=`sed -n 's/^U = //p' < "$mf"` # Find all dependency output files, they are included files with # $(DEPDIR) in their names. We invoke sed twice because it is the # simplest approach to changing $(DEPDIR) to its actual value in the # expansion. for file in `sed -n " s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do # Make sure the directory exists. test -f "$dirpart/$file" && continue fdir=`$as_dirname -- "$file" || $as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$file" : 'X\(//\)[^/]' \| \ X"$file" : 'X\(//\)$' \| \ X"$file" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` as_dir=$dirpart/$fdir; as_fn_mkdir_p # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done } ;; "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 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 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 # If ld is used when linking, flag to hardcode \$libdir into a binary # during linking. This must work even if \$libdir does not exist. hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld # 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 # If ld is used when linking, flag to hardcode \$libdir into a binary # during linking. This must work even if \$libdir does not exist. hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld_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 echo \ "---------------------------------------------------------------- ${PACKAGE_NAME} Version ${PACKAGE_VERSION} Current compiler options: CC: ${CC} CXX: ${CXX} LD: ${LD} Default CFLAGS: ${CFLAGS} Default CXXFLAGS: ${CXXFLAGS} CppUTest CFLAGS: ${CPPUTEST_CFLAGS} CppUTest CXXFLAGS: ${CPPUTEST_CXXFLAGS} CppUTest CPPFLAGS: ${CPPUTEST_CPPFLAGS} CppUTest LDFLAGS: ${CPPUTEST_LDFLAGS} CppUTest LIB: ${LIBS} Features configured in ${PACKAGE_NAME}: Memory Leak Detection: ${memory_leak_detection} Compiling extensions: ${cpputest_ext} Disable CppUTest compile/link flags: ${cpputest_flags} Using Standard C++ Library: ${use_std_cpp} Using Standard C Library: ${use_std_c} Generating map file: ${generate_map_file} Compiling w coverage info: ${coverage} Use 'real' GTest: ${real_gtest} Able to use GMock: ${use_gmock} ----------------------------------------------------------------" cpputest-3.4/AUTHORS0000664000175300017530000000031112066727207011234 00000000000000 The current main authors of CppUTest are James Grenning and Bas Vodde. Thanks for all the other contributions. You can find them on github at: https://github.com/cpputest/cpputest/graphs/contributorscpputest-3.4/COPYING0000664000175300017530000000275312066727207011233 00000000000000Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. Neither the name of the nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.cpputest-3.4/ChangeLog0000664000175300017530000000014712066727207011745 00000000000000 We don't keep a ChangeLog. Instead, check the revision on Github: https://github.com/cpputest/cpputestcpputest-3.4/INSTALL0000644000175300017530000003633212134202474011215 00000000000000Installation Instructions ************************* Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. Copying and distribution of this file, with or without modification, are permitted in any medium without royalty provided the copyright notice and this notice are preserved. This file is offered as-is, without warranty of any kind. Basic Installation ================== Briefly, the shell commands `./configure; make; make install' should configure, build, and install this package. The following more-detailed instructions are generic; see the `README' file for instructions specific to this package. Some packages provide this `INSTALL' file but do not implement all of the features documented below. The lack of an optional feature in a given package is not necessarily a bug. More recommendations for GNU packages can be found in *note Makefile Conventions: (standards)Makefile Conventions. The `configure' shell script attempts to guess correct values for various system-dependent variables used during compilation. It uses those values to create a `Makefile' in each directory of the package. It may also create one or more `.h' files containing system-dependent definitions. Finally, it creates a shell script `config.status' that you can run in the future to recreate the current configuration, and a file `config.log' containing compiler output (useful mainly for debugging `configure'). It can also use an optional file (typically called `config.cache' and enabled with `--cache-file=config.cache' or simply `-C') that saves the results of its tests to speed up reconfiguring. Caching is disabled by default to prevent problems with accidental use of stale cache files. If you need to do unusual things to compile the package, please try to figure out how `configure' could check whether to do them, and mail diffs or instructions to the address given in the `README' so they can be considered for the next release. If you are using the cache, and at some point `config.cache' contains results you don't want to keep, you may remove or edit it. The file `configure.ac' (or `configure.in') is used to create `configure' by a program called `autoconf'. You need `configure.ac' if you want to change it or regenerate `configure' using a newer version of `autoconf'. The simplest way to compile this package is: 1. `cd' to the directory containing the package's source code and type `./configure' to configure the package for your system. Running `configure' might take a while. While running, it prints some messages telling which features it is checking for. 2. Type `make' to compile the package. 3. Optionally, type `make check' to run any self-tests that come with the package, generally using the just-built uninstalled binaries. 4. Type `make install' to install the programs and any data files and documentation. When installing into a prefix owned by root, it is recommended that the package be configured and built as a regular user, and only the `make install' phase executed with root privileges. 5. Optionally, type `make installcheck' to repeat any self-tests, but this time using the binaries in their final installed location. This target does not install anything. Running this target as a regular user, particularly if the prior `make install' required root privileges, verifies that the installation completed correctly. 6. You can remove the program binaries and object files from the source code directory by typing `make clean'. To also remove the files that `configure' created (so you can compile the package for a different kind of computer), type `make distclean'. There is also a `make maintainer-clean' target, but that is intended mainly for the package's developers. If you use it, you may have to get all sorts of other programs in order to regenerate files that came with the distribution. 7. Often, you can also type `make uninstall' to remove the installed files again. In practice, not all packages have tested that uninstallation works correctly, even though it is required by the GNU Coding Standards. 8. Some packages, particularly those that use Automake, provide `make distcheck', which can by used by developers to test that all other targets like `make install' and `make uninstall' work correctly. This target is generally not run by end users. Compilers and Options ===================== Some systems require unusual options for compilation or linking that the `configure' script does not know about. Run `./configure --help' for details on some of the pertinent environment variables. You can give `configure' initial values for configuration parameters by setting variables in the command line or in the environment. Here is an example: ./configure CC=c99 CFLAGS=-g LIBS=-lposix *Note Defining Variables::, for more details. Compiling For Multiple Architectures ==================================== You can compile the package for more than one kind of computer at the same time, by placing the object files for each architecture in their own directory. To do this, you can use GNU `make'. `cd' to the directory where you want the object files and executables to go and run the `configure' script. `configure' automatically checks for the source code in the directory that `configure' is in and in `..'. This is known as a "VPATH" build. With a non-GNU `make', it is safer to compile the package for one architecture at a time in the source code directory. After you have installed the package for one architecture, use `make distclean' before reconfiguring for another architecture. On MacOS X 10.5 and later systems, you can create libraries and executables that work on multiple system types--known as "fat" or "universal" binaries--by specifying multiple `-arch' options to the compiler but only a single `-arch' option to the preprocessor. Like this: ./configure CC="gcc -arch i386 -arch x86_64 -arch ppc -arch ppc64" \ CXX="g++ -arch i386 -arch x86_64 -arch ppc -arch ppc64" \ CPP="gcc -E" CXXCPP="g++ -E" This is not guaranteed to produce working output in all cases, you may have to build one architecture at a time and combine the results using the `lipo' tool if you have problems. Installation Names ================== By default, `make install' installs the package's commands under `/usr/local/bin', include files under `/usr/local/include', etc. You can specify an installation prefix other than `/usr/local' by giving `configure' the option `--prefix=PREFIX', where PREFIX must be an absolute file name. You can specify separate installation prefixes for architecture-specific files and architecture-independent files. If you pass the option `--exec-prefix=PREFIX' to `configure', the package uses PREFIX as the prefix for installing programs and libraries. Documentation and other data files still use the regular prefix. In addition, if you use an unusual directory layout you can give options like `--bindir=DIR' to specify different values for particular kinds of files. Run `configure --help' for a list of the directories you can set and what kinds of files go in them. In general, the default for these options is expressed in terms of `${prefix}', so that specifying just `--prefix' will affect all of the other directory specifications that were not explicitly provided. The most portable way to affect installation locations is to pass the correct locations to `configure'; however, many packages provide one or both of the following shortcuts of passing variable assignments to the `make install' command line to change installation locations without having to reconfigure or recompile. The first method involves providing an override variable for each affected directory. For example, `make install prefix=/alternate/directory' will choose an alternate location for all directory configuration variables that were expressed in terms of `${prefix}'. Any directories that were specified during `configure', but not in terms of `${prefix}', must each be overridden at install time for the entire installation to be relocated. The approach of makefile variable overrides for each directory variable is required by the GNU Coding Standards, and ideally causes no recompilation. However, some platforms have known limitations with the semantics of shared libraries that end up requiring recompilation when using this method, particularly noticeable in packages that use GNU Libtool. The second method involves providing the `DESTDIR' variable. For example, `make install DESTDIR=/alternate/directory' will prepend `/alternate/directory' before all installation names. The approach of `DESTDIR' overrides is not required by the GNU Coding Standards, and does not work on platforms that have drive letters. On the other hand, it does better at avoiding recompilation issues, and works well even when some directory options were not specified in terms of `${prefix}' at `configure' time. Optional Features ================= If the package supports it, you can cause programs to be installed with an extra prefix or suffix on their names by giving `configure' the option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'. Some packages pay attention to `--enable-FEATURE' options to `configure', where FEATURE indicates an optional part of the package. They may also pay attention to `--with-PACKAGE' options, where PACKAGE is something like `gnu-as' or `x' (for the X Window System). The `README' should mention any `--enable-' and `--with-' options that the package recognizes. For packages that use the X Window System, `configure' can usually find the X include and library files automatically, but if it doesn't, you can use the `configure' options `--x-includes=DIR' and `--x-libraries=DIR' to specify their locations. Some packages offer the ability to configure how verbose the execution of `make' will be. For these packages, running `./configure --enable-silent-rules' sets the default to minimal output, which can be overridden with `make V=1'; while running `./configure --disable-silent-rules' sets the default to verbose, which can be overridden with `make V=0'. Particular systems ================== On HP-UX, the default C compiler is not ANSI C compatible. If GNU CC is not installed, it is recommended to use the following options in order to use an ANSI C compiler: ./configure CC="cc -Ae -D_XOPEN_SOURCE=500" and if that doesn't work, install pre-built binaries of GCC for HP-UX. On OSF/1 a.k.a. Tru64, some versions of the default C compiler cannot parse its `' header file. The option `-nodtk' can be used as a workaround. If GNU CC is not installed, it is therefore recommended to try ./configure CC="cc" and if that doesn't work, try ./configure CC="cc -nodtk" On Solaris, don't put `/usr/ucb' early in your `PATH'. This directory contains several dysfunctional programs; working variants of these programs are available in `/usr/bin'. So, if you need `/usr/ucb' in your `PATH', put it _after_ `/usr/bin'. On Haiku, software installed for all users goes in `/boot/common', not `/usr/local'. It is recommended to use the following options: ./configure --prefix=/boot/common Specifying the System Type ========================== There may be some features `configure' cannot figure out automatically, but needs to determine by the type of machine the package will run on. Usually, assuming the package is built to be run on the _same_ architectures, `configure' can figure that out, but if it prints a message saying it cannot guess the machine type, give it the `--build=TYPE' option. TYPE can either be a short name for the system type, such as `sun4', or a canonical name which has the form: CPU-COMPANY-SYSTEM where SYSTEM can have one of these forms: OS KERNEL-OS See the file `config.sub' for the possible values of each field. If `config.sub' isn't included in this package, then this package doesn't need to know the machine type. If you are _building_ compiler tools for cross-compiling, you should use the option `--target=TYPE' to select the type of system they will produce code for. If you want to _use_ a cross compiler, that generates code for a platform different from the build platform, you should specify the "host" platform (i.e., that on which the generated programs will eventually be run) with `--host=TYPE'. Sharing Defaults ================ If you want to set default values for `configure' scripts to share, you can create a site shell script called `config.site' that gives default values for variables like `CC', `cache_file', and `prefix'. `configure' looks for `PREFIX/share/config.site' if it exists, then `PREFIX/etc/config.site' if it exists. Or, you can set the `CONFIG_SITE' environment variable to the location of the site script. A warning: not all `configure' scripts look for a site script. Defining Variables ================== Variables not defined in a site shell script can be set in the environment passed to `configure'. However, some packages may run configure again during the build, and the customized values of these variables may be lost. In order to avoid this problem, you should set them in the `configure' command line, using `VAR=value'. For example: ./configure CC=/usr/local2/bin/gcc causes the specified `gcc' to be used as the C compiler (unless it is overridden in the site shell script). Unfortunately, this technique does not work for `CONFIG_SHELL' due to an Autoconf bug. Until the bug is fixed you can use this workaround: CONFIG_SHELL=/bin/bash /bin/bash ./configure CONFIG_SHELL=/bin/bash `configure' Invocation ====================== `configure' recognizes the following options to control how it operates. `--help' `-h' Print a summary of all of the options to `configure', and exit. `--help=short' `--help=recursive' Print a summary of the options unique to this package's `configure', and exit. The `short' variant lists options used only in the top level, while the `recursive' variant lists options also present in any nested packages. `--version' `-V' Print the version of Autoconf used to generate the `configure' script, and exit. `--cache-file=FILE' Enable the cache: use and save the results of the tests in FILE, traditionally `config.cache'. FILE defaults to `/dev/null' to disable caching. `--config-cache' `-C' Alias for `--cache-file=config.cache'. `--quiet' `--silent' `-q' Do not print messages saying which checks are being made. To suppress all normal output, redirect it to `/dev/null' (any error messages will still be shown). `--srcdir=DIR' Look for the package's source code in directory DIR. Usually `configure' can determine that directory automatically. `--prefix=DIR' Use DIR as the installation prefix. *note Installation Names:: for more details, including other options available for fine-tuning the installation locations. `--no-create' `-n' Run the configure checks, but stop before creating any output files. `configure' also accepts some other, not widely useful, options. Run `configure --help' for more details. cpputest-3.4/NEWS0000664000175300017530000000010412066727207010663 00000000000000 You can find the main NEWS at: https://github.com/cpputest/cpputestcpputest-3.4/compile0000755000175300017530000000727112134202474011542 00000000000000#! /bin/sh # Wrapper for compilers which do not understand `-c -o'. scriptversion=2009-10-06.20; # UTC # Copyright (C) 1999, 2000, 2003, 2004, 2005, 2009 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 # . 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 $? ;; esac ofile= cfile= eat= 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: cpputest-3.4/config.guess0000755000175300017530000012673012134202474012506 00000000000000#! /bin/sh # Attempt to guess a canonical system name. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, # 2011 Free Software Foundation, Inc. timestamp='2011-05-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 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA # 02110-1301, USA. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Originally written by Per Bothner. Please send patches (context # diff format) to and include a ChangeLog # entry. # # This script attempts to guess a canonical system name similar to # config.sub. If it succeeds, it prints the system name on stdout, and # exits with 0. Otherwise, it exits with 1. # # You can get the latest version of this script from: # http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD me=`echo "$0" | sed -e 's,.*/,,'` usage="\ Usage: $0 [OPTION] Output the configuration name of the system \`$me' is run on. Operation modes: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit Report bugs and patches to ." version="\ GNU config.guess ($timestamp) Originally written by Per Bothner. Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." 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 # Note: order is significant - the case branches are not exclusive. case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in *:NetBSD:*:*) # NetBSD (nbsd) targets should (where applicable) match one or # more of the tupples: *-*-netbsdelf*, *-*-netbsdaout*, # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently # switched to ELF, *-*-netbsd* would select the old # object file format. This provides both forward # compatibility and a consistent mechanism for selecting the # object file format. # # Note: NetBSD doesn't particularly care about the vendor # portion of the name. We always set it to "unknown". sysctl="sysctl -n hw.machine_arch" UNAME_MACHINE_ARCH=`(/sbin/$sysctl 2>/dev/null || \ /usr/sbin/$sysctl 2>/dev/null || echo unknown)` case "${UNAME_MACHINE_ARCH}" in armeb) machine=armeb-unknown ;; arm*) machine=arm-unknown ;; sh3el) machine=shl-unknown ;; sh3eb) machine=sh-unknown ;; sh5el) machine=sh5le-unknown ;; *) machine=${UNAME_MACHINE_ARCH}-unknown ;; esac # The Operating System including object format, if it has switched # to ELF recently, or will in the future. case "${UNAME_MACHINE_ARCH}" in arm*|i386|m68k|ns32k|sh3*|sparc|vax) eval $set_cc_for_build if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ELF__ then # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout). # Return netbsd for either. FIX? os=netbsd else os=netbsdelf fi ;; *) os=netbsd ;; esac # The OS release # Debian GNU/NetBSD machines have a different userland, and # thus, need a distinct triplet. However, they do not need # kernel version information, so it can be replaced with a # suitable tag, in the style of linux-gnu. case "${UNAME_VERSION}" in Debian*) release='-gnu' ;; *) release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` ;; esac # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: # contains redundant information, the shorter form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. echo "${machine}-${os}${release}" exit ;; *:OpenBSD:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE} exit ;; *:ekkoBSD:*:*) echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE} exit ;; *:SolidBSD:*:*) echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE} exit ;; macppc:MirBSD:*:*) echo powerpc-unknown-mirbsd${UNAME_RELEASE} exit ;; *:MirBSD:*:*) echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} exit ;; alpha:OSF1:*:*) case $UNAME_RELEASE in *4.0) UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'` ;; *5.*) UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'` ;; esac # According to Compaq, /usr/sbin/psrinfo has been available on # OSF/1 and Tru64 systems produced since 1995. I hope that # covers most systems running today. This code pipes the CPU # types through head -n 1, so we only detect the type of CPU 0. ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1` case "$ALPHA_CPU_TYPE" in "EV4 (21064)") UNAME_MACHINE="alpha" ;; "EV4.5 (21064)") UNAME_MACHINE="alpha" ;; "LCA4 (21066/21068)") UNAME_MACHINE="alpha" ;; "EV5 (21164)") UNAME_MACHINE="alphaev5" ;; "EV5.6 (21164A)") UNAME_MACHINE="alphaev56" ;; "EV5.6 (21164PC)") UNAME_MACHINE="alphapca56" ;; "EV5.7 (21164PC)") UNAME_MACHINE="alphapca57" ;; "EV6 (21264)") UNAME_MACHINE="alphaev6" ;; "EV6.7 (21264A)") UNAME_MACHINE="alphaev67" ;; "EV6.8CB (21264C)") UNAME_MACHINE="alphaev68" ;; "EV6.8AL (21264B)") UNAME_MACHINE="alphaev68" ;; "EV6.8CX (21264D)") UNAME_MACHINE="alphaev68" ;; "EV6.9A (21264/EV69A)") UNAME_MACHINE="alphaev69" ;; "EV7 (21364)") UNAME_MACHINE="alphaev7" ;; "EV7.9 (21364A)") UNAME_MACHINE="alphaev79" ;; esac # A Pn.n version is a patched version. # A Vn.n version is a released version. # A Tn.n version is a released field test version. # A Xn.n version is an unreleased experimental baselevel. # 1.2 uses "1.2" for uname -r. echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` # 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:*:*) case ${UNAME_MACHINE} in pc98) echo i386-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; amd64) echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; *) echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; esac exit ;; i*:CYGWIN*:*) echo ${UNAME_MACHINE}-pc-cygwin exit ;; *:MINGW*:*) echo ${UNAME_MACHINE}-pc-mingw32 exit ;; i*:windows32*:*) # uname -m includes "-pc" on this system. echo ${UNAME_MACHINE}-mingw32 exit ;; i*:PW*:*) echo ${UNAME_MACHINE}-pc-pw32 exit ;; *:Interix*:*) case ${UNAME_MACHINE} in x86) echo i586-pc-interix${UNAME_RELEASE} exit ;; authenticamd | genuineintel | EM64T) echo x86_64-unknown-interix${UNAME_RELEASE} exit ;; IA64) echo ia64-unknown-interix${UNAME_RELEASE} exit ;; esac ;; [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) echo i${UNAME_MACHINE}-pc-mks exit ;; 8664:Windows_NT:*) echo x86_64-pc-mks exit ;; i*:Windows_NT*:* | Pentium*:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we # UNAME_MACHINE based on the output of uname instead of i386? echo i586-pc-interix exit ;; i*:UWIN*:*) echo ${UNAME_MACHINE}-pc-uwin exit ;; amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*) echo x86_64-unknown-cygwin exit ;; p*:CYGWIN*:*) echo powerpcle-unknown-cygwin exit ;; prep*:SunOS:5.*:*) echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; *:GNU:*:*) # the GNU system echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` exit ;; *:GNU/*:*:*) # other systems with GNU libc and userland echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-gnu exit ;; i*86:Minix:*:*) echo ${UNAME_MACHINE}-pc-minix exit ;; alpha:Linux:*:*) case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in EV5) UNAME_MACHINE=alphaev5 ;; EV56) UNAME_MACHINE=alphaev56 ;; PCA56) UNAME_MACHINE=alphapca56 ;; PCA57) UNAME_MACHINE=alphapca56 ;; EV6) UNAME_MACHINE=alphaev6 ;; EV67) UNAME_MACHINE=alphaev67 ;; EV68*) UNAME_MACHINE=alphaev68 ;; esac objdump --private-headers /bin/sh | grep -q ld.so.1 if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} exit ;; arm*:Linux:*:*) eval $set_cc_for_build if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_EABI__ then echo ${UNAME_MACHINE}-unknown-linux-gnu else if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_PCS_VFP then echo ${UNAME_MACHINE}-unknown-linux-gnueabi else echo ${UNAME_MACHINE}-unknown-linux-gnueabihf fi fi exit ;; avr32*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; cris:Linux:*:*) echo cris-axis-linux-gnu exit ;; crisv32:Linux:*:*) echo crisv32-axis-linux-gnu exit ;; frv:Linux:*:*) echo frv-unknown-linux-gnu exit ;; i*86:Linux:*:*) LIBC=gnu eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #ifdef __dietlibc__ LIBC=dietlibc #endif EOF eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC'` echo "${UNAME_MACHINE}-pc-linux-${LIBC}" exit ;; ia64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; m32r*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; m68*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; mips:Linux:*:* | mips64:Linux:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #undef CPU #undef ${UNAME_MACHINE} #undef ${UNAME_MACHINE}el #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) CPU=${UNAME_MACHINE}el #else #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) CPU=${UNAME_MACHINE} #else CPU= #endif #endif EOF eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'` test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } ;; or32:Linux:*:*) echo or32-unknown-linux-gnu exit ;; padre:Linux:*:*) echo sparc-unknown-linux-gnu exit ;; parisc64:Linux:*:* | hppa64:Linux:*:*) echo hppa64-unknown-linux-gnu exit ;; parisc:Linux:*:* | hppa:Linux:*:*) # Look for CPU level case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in PA7*) echo hppa1.1-unknown-linux-gnu ;; PA8*) echo hppa2.0-unknown-linux-gnu ;; *) echo hppa-unknown-linux-gnu ;; esac exit ;; ppc64:Linux:*:*) echo powerpc64-unknown-linux-gnu exit ;; ppc:Linux:*:*) echo powerpc-unknown-linux-gnu exit ;; s390:Linux:*:* | s390x:Linux:*:*) echo ${UNAME_MACHINE}-ibm-linux exit ;; sh64*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; sh*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; sparc:Linux:*:* | sparc64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; tile*:Linux:*:*) echo ${UNAME_MACHINE}-tilera-linux-gnu exit ;; vax:Linux:*:*) echo ${UNAME_MACHINE}-dec-linux-gnu exit ;; x86_64:Linux:*:*) echo x86_64-unknown-linux-gnu exit ;; xtensa*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; i*86:DYNIX/ptx:4*:*) # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. # earlier versions are messed up and put the nodename in both # sysname and nodename. echo i386-sequent-sysv4 exit ;; i*86:UNIX_SV:4.2MP:2.*) # Unixware is an offshoot of SVR4, but it has its own version # number series starting with 2... # I am not positive that other SVR4 systems won't match this, # I just have to hope. -- rms. # Use sysv4.2uw... so that sysv4* matches it. echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION} exit ;; i*86:OS/2:*:*) # If we were able to find `uname', then EMX Unix compatibility # is probably installed. echo ${UNAME_MACHINE}-pc-os2-emx exit ;; i*86:XTS-300:*:STOP) echo ${UNAME_MACHINE}-unknown-stop exit ;; i*86:atheos:*:*) echo ${UNAME_MACHINE}-unknown-atheos exit ;; i*86:syllable:*:*) echo ${UNAME_MACHINE}-pc-syllable exit ;; i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.[02]*:*) echo i386-unknown-lynxos${UNAME_RELEASE} exit ;; i*86:*DOS:*:*) echo ${UNAME_MACHINE}-pc-msdosdjgpp exit ;; i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*) UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'` if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL} else echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL} fi exit ;; i*86:*:5:[678]*) # UnixWare 7.x, OpenUNIX and OpenServer 6. case `/bin/uname -X | grep "^Machine"` in *486*) UNAME_MACHINE=i486 ;; *Pentium) UNAME_MACHINE=i586 ;; *Pent*|*Celeron) UNAME_MACHINE=i686 ;; esac echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION} exit ;; i*86:*:3.2:*) if test -f /usr/options/cb.name; then UNAME_REL=`sed -n 's/.*Version //p' /dev/null >/dev/null ; then UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')` (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486 (/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \ && UNAME_MACHINE=i586 (/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \ && UNAME_MACHINE=i686 (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \ && UNAME_MACHINE=i686 echo ${UNAME_MACHINE}-pc-sco$UNAME_REL else echo ${UNAME_MACHINE}-pc-sysv32 fi exit ;; pc:*:*:*) # Left here for compatibility: # uname -m prints for DJGPP always 'pc', but it prints nothing about # the processor, so we play safe by assuming i586. # Note: whatever this is, it MUST be the same as what config.sub # prints for the "djgpp" host, or else GDB configury will decide that # this is a cross-build. echo i586-pc-msdosdjgpp exit ;; Intel:Mach:3*:*) echo i386-pc-mach3 exit ;; paragon:*:*:*) echo i860-intel-osf1 exit ;; i860:*:4.*:*) # i860-SVR4 if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4 else # Add other i860-SVR4 vendors below as they are discovered. echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4 fi exit ;; mini*:CTIX:SYS*5:*) # "miniframe" echo m68010-convergent-sysv exit ;; mc68k:UNIX:SYSTEM5:3.51m) echo m68k-convergent-sysv exit ;; M680?0:D-NIX:5.3:*) echo m68k-diab-dnix exit ;; M68*:*:R3V[5678]*:*) test -r /sysV68 && { echo 'm68k-motorola-sysv'; exit; } ;; 3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0) OS_REL='' test -r /etc/.relid \ && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4.3${OS_REL}; exit; } /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4; exit; } ;; NCR*:*:4.2:* | MPRAS*:*:4.2:*) OS_REL='.3' test -r /etc/.relid \ && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4.3${OS_REL}; exit; } /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ && { echo i586-ncr-sysv4.3${OS_REL}; exit; } /bin/uname -p 2>/dev/null | /bin/grep pteron >/dev/null \ && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) echo m68k-unknown-lynxos${UNAME_RELEASE} exit ;; mc68030:UNIX_System_V:4.*:*) echo m68k-atari-sysv4 exit ;; TSUNAMI:LynxOS:2.*:*) echo sparc-unknown-lynxos${UNAME_RELEASE} exit ;; rs6000:LynxOS:2.*:*) echo rs6000-unknown-lynxos${UNAME_RELEASE} exit ;; PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.[02]*:*) echo powerpc-unknown-lynxos${UNAME_RELEASE} exit ;; SM[BE]S:UNIX_SV:*:*) echo mips-dde-sysv${UNAME_RELEASE} exit ;; RM*:ReliantUNIX-*:*:*) echo mips-sni-sysv4 exit ;; RM*:SINIX-*:*:*) echo mips-sni-sysv4 exit ;; *:SINIX-*:*:*) if uname -p 2>/dev/null >/dev/null ; then UNAME_MACHINE=`(uname -p) 2>/dev/null` echo ${UNAME_MACHINE}-sni-sysv4 else echo ns32k-sni-sysv fi exit ;; PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort # says echo i586-unisys-sysv4 exit ;; *:UNIX_System_V:4*:FTX*) # From Gerald Hewes . # How about differentiating between stratus architectures? -djm echo hppa1.1-stratus-sysv4 exit ;; *:*:*:FTX*) # From seanf@swdc.stratus.com. echo i860-stratus-sysv4 exit ;; i*86:VOS:*:*) # From Paul.Green@stratus.com. echo ${UNAME_MACHINE}-stratus-vos exit ;; *:VOS:*:*) # From Paul.Green@stratus.com. echo hppa1.1-stratus-vos exit ;; mc68*:A/UX:*:*) echo m68k-apple-aux${UNAME_RELEASE} exit ;; news*:NEWS-OS:6*:*) echo mips-sony-newsos6 exit ;; R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) if [ -d /usr/nec ]; then echo mips-nec-sysv${UNAME_RELEASE} else echo mips-unknown-sysv${UNAME_RELEASE} fi exit ;; BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. echo powerpc-be-beos exit ;; BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only. echo powerpc-apple-beos exit ;; BePC:BeOS:*:*) # BeOS running on Intel PC compatible. echo i586-pc-beos exit ;; BePC:Haiku:*:*) # Haiku running on Intel PC compatible. echo i586-pc-haiku exit ;; SX-4:SUPER-UX:*:*) echo sx4-nec-superux${UNAME_RELEASE} exit ;; SX-5:SUPER-UX:*:*) echo sx5-nec-superux${UNAME_RELEASE} exit ;; SX-6:SUPER-UX:*:*) echo sx6-nec-superux${UNAME_RELEASE} exit ;; SX-7:SUPER-UX:*:*) echo sx7-nec-superux${UNAME_RELEASE} exit ;; SX-8:SUPER-UX:*:*) echo sx8-nec-superux${UNAME_RELEASE} exit ;; SX-8R:SUPER-UX:*:*) echo sx8r-nec-superux${UNAME_RELEASE} exit ;; Power*:Rhapsody:*:*) echo powerpc-apple-rhapsody${UNAME_RELEASE} exit ;; *:Rhapsody:*:*) echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE} exit ;; *:Darwin:*:*) UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown case $UNAME_PROCESSOR in i386) eval $set_cc_for_build if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ grep IS_64BIT_ARCH >/dev/null then UNAME_PROCESSOR="x86_64" fi fi ;; unknown) UNAME_PROCESSOR=powerpc ;; esac echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} exit ;; *:procnto*:*:* | *:QNX:[0123456789]*:*) UNAME_PROCESSOR=`uname -p` if test "$UNAME_PROCESSOR" = "x86"; then UNAME_PROCESSOR=i386 UNAME_MACHINE=pc fi echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE} exit ;; *:QNX:*:4*) echo i386-pc-qnx exit ;; 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 ;; esac #echo '(No uname command or uname output not recognized.)' 1>&2 #echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2 eval $set_cc_for_build cat >$dummy.c < # include #endif main () { #if defined (sony) #if defined (MIPSEB) /* BFD wants "bsd" instead of "newsos". Perhaps BFD should be changed, I don't know.... */ printf ("mips-sony-bsd\n"); exit (0); #else #include printf ("m68k-sony-newsos%s\n", #ifdef NEWSOS4 "4" #else "" #endif ); exit (0); #endif #endif #if defined (__arm) && defined (__acorn) && defined (__unix) printf ("arm-acorn-riscix\n"); exit (0); #endif #if defined (hp300) && !defined (hpux) printf ("m68k-hp-bsd\n"); exit (0); #endif #if defined (NeXT) #if !defined (__ARCHITECTURE__) #define __ARCHITECTURE__ "m68k" #endif int version; version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`; if (version < 4) printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version); else printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version); exit (0); #endif #if defined (MULTIMAX) || defined (n16) #if defined (UMAXV) printf ("ns32k-encore-sysv\n"); exit (0); #else #if defined (CMU) printf ("ns32k-encore-mach\n"); exit (0); #else printf ("ns32k-encore-bsd\n"); exit (0); #endif #endif #endif #if defined (__386BSD__) printf ("i386-pc-bsd\n"); exit (0); #endif #if defined (sequent) #if defined (i386) printf ("i386-sequent-dynix\n"); exit (0); #endif #if defined (ns32000) printf ("ns32k-sequent-dynix\n"); exit (0); #endif #endif #if defined (_SEQUENT_) struct utsname un; uname(&un); if (strncmp(un.version, "V2", 2) == 0) { printf ("i386-sequent-ptx2\n"); exit (0); } if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */ printf ("i386-sequent-ptx1\n"); exit (0); } printf ("i386-sequent-ptx\n"); exit (0); #endif #if defined (vax) # if !defined (ultrix) # include # if defined (BSD) # if BSD == 43 printf ("vax-dec-bsd4.3\n"); exit (0); # else # if BSD == 199006 printf ("vax-dec-bsd4.3reno\n"); exit (0); # else printf ("vax-dec-bsd\n"); exit (0); # endif # endif # else printf ("vax-dec-bsd\n"); exit (0); # endif # else printf ("vax-dec-ultrix\n"); exit (0); # endif #endif #if defined (alliant) && defined (i860) printf ("i860-alliant-bsd\n"); exit (0); #endif exit (1); } EOF $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && SYSTEM_NAME=`$dummy` && { echo "$SYSTEM_NAME"; exit; } # Apollos put the system type in the environment. test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit; } # Convex versions that predate uname can use getsysinfo(1) if [ -x /usr/convex/getsysinfo ] then case `getsysinfo -f cpu_type` in c1*) echo c1-convex-bsd exit ;; c2*) if getsysinfo -f scalar_acc then echo c32-convex-bsd else echo c2-convex-bsd fi exit ;; c34*) echo c34-convex-bsd exit ;; c38*) echo c38-convex-bsd exit ;; c4*) echo c4-convex-bsd exit ;; esac fi cat >&2 < in order to provide the needed information to handle your system. config.guess timestamp = $timestamp uname -m = `(uname -m) 2>/dev/null || echo unknown` uname -r = `(uname -r) 2>/dev/null || echo unknown` uname -s = `(uname -s) 2>/dev/null || echo unknown` uname -v = `(uname -v) 2>/dev/null || echo unknown` /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null` /bin/uname -X = `(/bin/uname -X) 2>/dev/null` hostinfo = `(hostinfo) 2>/dev/null` /bin/universe = `(/bin/universe) 2>/dev/null` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null` /bin/arch = `(/bin/arch) 2>/dev/null` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null` UNAME_MACHINE = ${UNAME_MACHINE} UNAME_RELEASE = ${UNAME_RELEASE} UNAME_SYSTEM = ${UNAME_SYSTEM} UNAME_VERSION = ${UNAME_VERSION} EOF exit 1 # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: cpputest-3.4/config.sub0000755000175300017530000010460612134202474012147 00000000000000#! /bin/sh # Configuration validation subroutine script. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, # 2011 Free Software Foundation, Inc. timestamp='2011-03-23' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GNU software # can handle that machine. It does not imply ALL GNU software can. # # This file is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA # 02110-1301, USA. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Please send patches to . Submit a context # diff and a properly formatted GNU ChangeLog entry. # # Configuration subroutine to validate and canonicalize a configuration type. # Supply the specified configuration type as an argument. # If it is invalid, we print an error message on stderr and exit with code 1. # Otherwise, we print the canonical config type on stdout and succeed. # You can get the latest version of this script from: # http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD # This file is supposed to be the same for all GNU packages # and recognize all the CPU types, system types and aliases # that are meaningful with *any* GNU software. # Each package is responsible for reporting which valid configurations # it does not support. The user should be able to distinguish # a failure to support a valid configuration from a meaningless # configuration. # The goal of this file is to map all the various variations of a given # machine specification into a single specification in the form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM # or in some cases, the newer four-part form: # CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM # It is wrong to echo any other type of specification. me=`echo "$0" | sed -e 's,.*/,,'` usage="\ Usage: $0 [OPTION] CPU-MFR-OPSYS $0 [OPTION] ALIAS Canonicalize a configuration name. Operation modes: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit Report bugs and patches to ." version="\ GNU config.sub ($timestamp) Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." help=" Try \`$me --help' for more information." # Parse command line while test $# -gt 0 ; do case $1 in --time-stamp | --time* | -t ) echo "$timestamp" ; exit ;; --version | -v ) echo "$version" ; exit ;; --help | --h* | -h ) echo "$usage"; exit ;; -- ) # Stop option processing shift; break ;; - ) # Use stdin as input. break ;; -* ) echo "$me: invalid option $1$help" exit 1 ;; *local*) # First pass through any local machine types. echo $1 exit ;; * ) break ;; esac done case $# in 0) echo "$me: missing argument$help" >&2 exit 1;; 1) ;; *) echo "$me: too many arguments$help" >&2 exit 1;; esac # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). # Here we must recognize all the valid KERNEL-OS combinations. maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` case $maybe_os in nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc | linux-newlib* | \ linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \ knetbsd*-gnu* | netbsd*-gnu* | \ kopensolaris*-gnu* | \ storm-chaos* | os2-emx* | rtmk-nova*) os=-$maybe_os basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` ;; *) basic_machine=`echo $1 | sed 's/-[^-]*$//'` if [ $basic_machine != $1 ] then os=`echo $1 | sed 's/.*-/-/'` else os=; fi ;; esac ### Let's recognize common machines as not being operating systems so ### that things like config.sub decstation-3100 work. We also ### recognize some manufacturers as not being operating systems, so we ### can provide default operating systems below. case $os in -sun*os*) # Prevent following clause from handling this invalid input. ;; -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \ -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \ -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \ -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ -apple | -axis | -knuth | -cray | -microblaze) os= basic_machine=$1 ;; -bluegene*) os=-cnk ;; -sim | -cisco | -oki | -wec | -winbond) os= basic_machine=$1 ;; -scout) ;; -wrs) os=-vxworks basic_machine=$1 ;; -chorusos*) os=-chorusos basic_machine=$1 ;; -chorusrdb) os=-chorusrdb basic_machine=$1 ;; -hiux*) os=-hiuxwe2 ;; -sco6) os=-sco5v6 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco5) os=-sco3.2v5 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco4) os=-sco3.2v4 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco3.2.[4-9]*) os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco3.2v[4-9]*) # Don't forget version if it is 3.2v4 or newer. basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco5v6*) # Don't forget version if it is 3.2v4 or newer. basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco*) os=-sco3.2v2 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -udk*) basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -isc) os=-isc2.2 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -clix*) basic_machine=clipper-intergraph ;; -isc*) basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -lynx*) os=-lynxos ;; -ptx*) basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'` ;; -windowsnt*) os=`echo $os | sed -e 's/windowsnt/winnt/'` ;; -psos*) os=-psos ;; -mint | -mint[0-9]*) basic_machine=m68k-atari os=-mint ;; esac # Decode aliases for certain CPU-COMPANY combinations. case $basic_machine in # Recognize the basic CPU types without company name. # Some are omitted here because they have special meanings below. 1750a | 580 \ | a29k \ | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ | am33_2.0 \ | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr | avr32 \ | bfin \ | c4x | clipper \ | d10v | d30v | dlx | dsp16xx \ | fido | fr30 | frv \ | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ | i370 | i860 | i960 | ia64 \ | ip2k | iq2000 \ | lm32 \ | m32c | m32r | m32rle | m68000 | m68k | m88k \ | maxq | mb | microblaze | mcore | mep | metag \ | mips | mipsbe | mipseb | mipsel | mipsle \ | mips16 \ | mips64 | mips64el \ | mips64octeon | mips64octeonel \ | mips64orion | mips64orionel \ | mips64r5900 | mips64r5900el \ | mips64vr | mips64vrel \ | mips64vr4100 | mips64vr4100el \ | mips64vr4300 | mips64vr4300el \ | mips64vr5000 | mips64vr5000el \ | mips64vr5900 | mips64vr5900el \ | mipsisa32 | mipsisa32el \ | mipsisa32r2 | mipsisa32r2el \ | mipsisa64 | mipsisa64el \ | mipsisa64r2 | mipsisa64r2el \ | mipsisa64sb1 | mipsisa64sb1el \ | mipsisa64sr71k | mipsisa64sr71kel \ | mipstx39 | mipstx39el \ | mn10200 | mn10300 \ | moxie \ | mt \ | msp430 \ | nds32 | nds32le | nds32be \ | nios | nios2 \ | ns16k | ns32k \ | open8 \ | or32 \ | pdp10 | pdp11 | pj | pjl \ | powerpc | powerpc64 | powerpc64le | powerpcle \ | pyramid \ | rx \ | score \ | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ | sh64 | sh64le \ | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \ | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ | spu \ | tahoe | tic4x | tic54x | tic55x | tic6x | tic80 | tron \ | ubicom32 \ | v850 | v850e \ | 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 | picochip) # Motorola 68HC11/12. basic_machine=$basic_machine-unknown os=-none ;; m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k) ;; ms1) basic_machine=mt-unknown ;; strongarm | thumb | xscale) basic_machine=arm-unknown ;; 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-* \ | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ | avr-* | avr32-* \ | bfin-* | bs2000-* \ | c[123]* | c30-* | [cjt]90-* | c4x-* \ | clipper-* | craynv-* | cydra-* \ | d10v-* | d30v-* | dlx-* \ | elxsi-* \ | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \ | h8300-* | h8500-* \ | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ | i*86-* | i860-* | i960-* | ia64-* \ | ip2k-* | iq2000-* \ | lm32-* \ | m32c-* | m32r-* | m32rle-* \ | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ | m88110-* | m88k-* | maxq-* | mcore-* | metag-* | microblaze-* \ | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ | mips16-* \ | mips64-* | mips64el-* \ | mips64octeon-* | mips64octeonel-* \ | mips64orion-* | mips64orionel-* \ | mips64r5900-* | mips64r5900el-* \ | mips64vr-* | mips64vrel-* \ | mips64vr4100-* | mips64vr4100el-* \ | mips64vr4300-* | mips64vr4300el-* \ | mips64vr5000-* | mips64vr5000el-* \ | mips64vr5900-* | mips64vr5900el-* \ | mipsisa32-* | mipsisa32el-* \ | mipsisa32r2-* | mipsisa32r2el-* \ | mipsisa64-* | mipsisa64el-* \ | mipsisa64r2-* | mipsisa64r2el-* \ | mipsisa64sb1-* | mipsisa64sb1el-* \ | mipsisa64sr71k-* | mipsisa64sr71kel-* \ | mipstx39-* | mipstx39el-* \ | mmix-* \ | mt-* \ | msp430-* \ | nds32-* | nds32le-* | nds32be-* \ | nios-* | nios2-* \ | none-* | np1-* | ns16k-* | ns32k-* \ | open8-* \ | orion-* \ | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \ | pyramid-* \ | romp-* | rs6000-* | rx-* \ | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ | sparclite-* \ | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | sv1-* | sx?-* \ | tahoe-* \ | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ | tile-* | tilegx-* \ | tron-* \ | ubicom32-* \ | v850-* | v850e-* | 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'm not sure what "Sysv32" means. Should this be sysv3.2? i*86v32) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv32 ;; i*86v4*) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv4 ;; i*86v) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv ;; i*86sol2) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-solaris2 ;; i386mach) basic_machine=i386-mach os=-mach ;; i386-vsta | vsta) basic_machine=i386-unknown os=-vsta ;; iris | iris4d) basic_machine=mips-sgi case $os in -irix*) ;; *) os=-irix4 ;; esac ;; isi68 | isi) basic_machine=m68k-isi os=-sysv ;; m68knommu) basic_machine=m68k-unknown os=-linux ;; m68knommu-*) basic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'` os=-linux ;; m88k-omron*) basic_machine=m88k-omron ;; magnum | m3230) basic_machine=mips-mips os=-sysv ;; merlin) basic_machine=ns32k-utek os=-sysv ;; microblaze) basic_machine=microblaze-xilinx ;; mingw32) basic_machine=i386-pc os=-mingw32 ;; mingw32ce) basic_machine=arm-unknown os=-mingw32ce ;; miniframe) basic_machine=m68000-convergent ;; *mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*) basic_machine=m68k-atari os=-mint ;; mips3*-*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` ;; mips3*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown ;; monitor) basic_machine=m68k-rom68k os=-coff ;; morphos) basic_machine=powerpc-unknown os=-morphos ;; msdos) basic_machine=i386-pc os=-msdos ;; ms1-*) basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'` ;; mvs) basic_machine=i370-ibm os=-mvs ;; ncr3000) basic_machine=i486-ncr os=-sysv4 ;; netbsd386) basic_machine=i386-unknown os=-netbsd ;; netwinder) basic_machine=armv4l-rebel os=-linux ;; news | news700 | news800 | news900) basic_machine=m68k-sony os=-newsos ;; news1000) basic_machine=m68030-sony os=-newsos ;; news-3600 | risc-news) basic_machine=mips-sony os=-newsos ;; necv70) basic_machine=v70-nec os=-sysv ;; next | m*-next ) basic_machine=m68k-next case $os in -nextstep* ) ;; -ns2*) os=-nextstep2 ;; *) os=-nextstep3 ;; esac ;; nh3000) basic_machine=m68k-harris os=-cxux ;; nh[45]000) basic_machine=m88k-harris os=-cxux ;; nindy960) basic_machine=i960-intel os=-nindy ;; mon960) basic_machine=i960-intel os=-mon960 ;; nonstopux) basic_machine=mips-compaq os=-nonstopux ;; np1) basic_machine=np1-gould ;; neo-tandem) basic_machine=neo-tandem ;; nse-tandem) basic_machine=nse-tandem ;; nsr-tandem) basic_machine=nsr-tandem ;; op50n-* | op60c-*) basic_machine=hppa1.1-oki os=-proelf ;; openrisc | openrisc-*) basic_machine=or32-unknown ;; os400) basic_machine=powerpc-ibm os=-os400 ;; OSE68000 | ose68000) basic_machine=m68000-ericsson os=-ose ;; os68k) basic_machine=m68k-none os=-os68k ;; pa-hitachi) basic_machine=hppa1.1-hitachi os=-hiuxwe2 ;; paragon) basic_machine=i860-intel os=-osf ;; parisc) basic_machine=hppa-unknown os=-linux ;; parisc-*) basic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'` os=-linux ;; pbd) basic_machine=sparc-tti ;; pbb) basic_machine=m68k-tti ;; pc532 | pc532-*) basic_machine=ns32k-pc532 ;; pc98) basic_machine=i386-pc ;; pc98-*) basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentium | p5 | k5 | k6 | nexgen | viac3) basic_machine=i586-pc ;; pentiumpro | p6 | 6x86 | athlon | athlon_*) basic_machine=i686-pc ;; pentiumii | pentium2 | pentiumiii | pentium3) basic_machine=i686-pc ;; pentium4) basic_machine=i786-pc ;; pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentiumpro-* | p6-* | 6x86-* | athlon-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentium4-*) basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pn) basic_machine=pn-gould ;; power) basic_machine=power-ibm ;; ppc | 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) 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 ;; # This must be matched before tile*. tilegx*) basic_machine=tilegx-unknown os=-linux-gnu ;; tile*) basic_machine=tile-unknown os=-linux-gnu ;; tx39) basic_machine=mipstx39-unknown ;; tx39el) basic_machine=mipstx39el-unknown ;; toad1) basic_machine=pdp10-xkl os=-tops20 ;; tower | tower-32) basic_machine=m68k-ncr ;; tpf) basic_machine=s390x-ibm os=-tpf ;; udi29k) basic_machine=a29k-amd os=-udi ;; ultra3) basic_machine=a29k-nyu os=-sym1 ;; v810 | necv810) basic_machine=v810-nec os=-none ;; vaxv) basic_machine=vax-dec os=-sysv ;; vms) basic_machine=vax-dec os=-vms ;; vpp*|vx|vx-*) basic_machine=f301-fujitsu ;; vxworks960) basic_machine=i960-wrs os=-vxworks ;; vxworks68) basic_machine=m68k-wrs os=-vxworks ;; vxworks29k) basic_machine=a29k-wrs os=-vxworks ;; w65*) basic_machine=w65-wdc os=-none ;; w89k-*) basic_machine=hppa1.1-winbond os=-proelf ;; xbox) basic_machine=i686-pc os=-mingw32 ;; xps | xps100) basic_machine=xps100-honeywell ;; 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* \ | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ | -aos* | -aros* \ | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \ | -openbsd* | -solidbsd* \ | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ | -chorusos* | -chorusrdb* | -cegcc* \ | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ | -mingw32* | -linux-gnu* | -linux-android* \ | -linux-newlib* | -linux-uclibc* \ | -uxpv* | -beos* | -mpeix* | -udk* \ | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es*) # Remember, each alternative MUST END IN *, to match a version number. ;; -qnx*) case $basic_machine in x86-* | i*86-*) ;; *) os=-nto$os ;; esac ;; -nto-qnx*) ;; -nto*) os=`echo $os | sed -e 's|nto|nto-qnx|'` ;; -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \ | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) ;; -mac*) os=`echo $os | sed -e 's|mac|macos|'` ;; -linux-dietlibc) os=-linux-dietlibc ;; -linux*) os=`echo $os | sed -e 's|linux|linux-gnu|'` ;; -sunos5*) os=`echo $os | sed -e 's|sunos5|solaris2|'` ;; -sunos6*) os=`echo $os | sed -e 's|sunos6|solaris3|'` ;; -opened*) os=-openedition ;; -os400*) os=-os400 ;; -wince*) os=-wince ;; -osfrose*) os=-osfrose ;; -osf*) os=-osf ;; -utek*) os=-bsd ;; -dynix*) os=-bsd ;; -acis*) os=-aos ;; -atheos*) os=-atheos ;; -syllable*) os=-syllable ;; -386bsd) os=-bsd ;; -ctix* | -uts*) os=-sysv ;; -nova*) os=-rtmk-nova ;; -ns2 ) os=-nextstep2 ;; -nsk*) os=-nsk ;; # Preserve the version number of sinix5. -sinix5.*) os=`echo $os | sed -e 's|sinix|sysv|'` ;; -sinix*) os=-sysv4 ;; -tpf*) os=-tpf ;; -triton*) os=-sysv3 ;; -oss*) os=-sysv3 ;; -svr4) os=-sysv4 ;; -svr3) os=-sysv3 ;; -sysvr4) os=-sysv4 ;; # This must come after -sysvr4. -sysv*) ;; -ose*) os=-ose ;; -es1800*) os=-ose ;; -xenix) os=-xenix ;; -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) os=-mint ;; -aros*) os=-aros ;; -kaos*) os=-kaos ;; -zvmoe) os=-zvmoe ;; -dicos*) os=-dicos ;; -nacl*) ;; -none) ;; *) # Get rid of the `-' at the beginning of $os. os=`echo $os | sed 's/[^-]*-//'` echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2 exit 1 ;; esac else # Here we handle the default operating systems that come with various machines. # The value should be what the vendor currently ships out the door with their # machine or put another way, the most popular os provided with the machine. # Note that if you're going to try to match "-MANUFACTURER" here (say, # "-sun"), then you have to tell the case statement up towards the top # that MANUFACTURER isn't an operating system. Otherwise, code above # will signal an error saying that MANUFACTURER isn't an operating # system, and we'll never get to this point. case $basic_machine in score-*) os=-elf ;; spu-*) os=-elf ;; *-acorn) os=-riscix1.2 ;; arm*-rebel) os=-linux ;; arm*-semi) os=-aout ;; c4x-* | tic4x-*) os=-coff ;; tic54x-*) os=-coff ;; tic55x-*) os=-coff ;; tic6x-*) os=-coff ;; # This must come before the *-dec entry. pdp10-*) os=-tops20 ;; pdp11-*) os=-none ;; *-dec | vax-*) os=-ultrix4.2 ;; m68*-apollo) os=-domain ;; i386-sun) os=-sunos4.0.2 ;; m68000-sun) os=-sunos3 # This also exists in the configure program, but was not the # default. # os=-sunos4 ;; m68*-cisco) os=-aout ;; mep-*) os=-elf ;; mips*-cisco) os=-elf ;; mips*-*) os=-elf ;; or32-*) os=-coff ;; *-tti) # must be before sparc entry or we get the wrong os. os=-sysv3 ;; sparc-* | *-sun) os=-sunos4.1.1 ;; *-be) os=-beos ;; *-haiku) os=-haiku ;; *-ibm) os=-aix ;; *-knuth) os=-mmixware ;; *-wec) os=-proelf ;; *-winbond) os=-proelf ;; *-oki) os=-proelf ;; *-hp) os=-hpux ;; *-hitachi) os=-hiux ;; i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent) os=-sysv ;; *-cbm) os=-amigaos ;; *-dg) os=-dgux ;; *-dolphin) os=-sysv3 ;; m68k-ccur) os=-rtu ;; m88k-omron*) os=-luna ;; *-next ) os=-nextstep ;; *-sequent) os=-ptx ;; *-crds) os=-unos ;; *-ns) os=-genix ;; i370-*) os=-mvs ;; *-next) os=-nextstep3 ;; *-gould) os=-sysv ;; *-highlevel) os=-bsd ;; *-encore) os=-bsd ;; *-sgi) os=-irix ;; *-siemens) os=-sysv4 ;; *-masscomp) os=-rtu ;; f30[01]-fujitsu | f700-fujitsu) os=-uxpv ;; *-rom68k) os=-coff ;; *-*bug) os=-coff ;; *-apple) os=-macos ;; *-atari*) os=-mint ;; *) os=-none ;; esac fi # Here we handle the case where we know the os, and the CPU type, but not the # manufacturer. We pick the logical manufacturer. vendor=unknown case $basic_machine in *-unknown) case $os in -riscix*) vendor=acorn ;; -sunos*) vendor=sun ;; -cnk*|-aix*) vendor=ibm ;; -beos*) vendor=be ;; -hpux*) vendor=hp ;; -mpeix*) vendor=hp ;; -hiux*) vendor=hitachi ;; -unos*) vendor=crds ;; -dgux*) vendor=dg ;; -luna*) vendor=omron ;; -genix*) vendor=ns ;; -mvs* | -opened*) vendor=ibm ;; -os400*) vendor=ibm ;; -ptx*) vendor=sequent ;; -tpf*) vendor=ibm ;; -vxsim* | -vxworks* | -windiss*) vendor=wrs ;; -aux*) vendor=apple ;; -hms*) vendor=hitachi ;; -mpw* | -macos*) vendor=apple ;; -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) vendor=atari ;; -vos*) vendor=stratus ;; esac basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"` ;; esac echo $basic_machine$os exit # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: cpputest-3.4/depcomp0000755000175300017530000004426712134202474011547 00000000000000#! /bin/sh # depcomp - compile a program generating dependencies as side-effects scriptversion=2009-04-28.21; # UTC # Copyright (C) 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2009 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 outputing dependencies. libtool Whether libtool is used (yes/no). Report bugs to . EOF exit $? ;; -v | --v*) echo "depcomp $scriptversion" exit $? ;; esac 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" # 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 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 -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi mv "$tmpdepfile" "$depfile" ;; gcc) ## 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). ## - 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 -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" echo "$object : \\" > "$depfile" alpha=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz ## 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. tr ' ' ' ' < "$tmpdepfile" | ## 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. ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -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 -eq 0; then : else 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 ' ' ' ' < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' | \ tr ' ' ' ' >> "$depfile" echo >> "$depfile" # The second pass generates a dummy entry for each header file. tr ' ' ' ' < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \ >> "$depfile" else # The sourcefile does not contain any dependencies, so just # store a dummy comment line, to avoid errors with the Makefile # "include basename.Plo" scheme. echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; 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. dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` test "x$dir" = "x$object" && dir= base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` 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 -eq 0; then : else rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then # Each line is of the form `foo.o: dependent.h'. # Do two passes, one to just change these to # `$object: dependent.h' and one to simply `dependent.h:'. sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" # That's a tab and a space in the []. sed -e 's,^.*\.[a-z]*:[ ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" else # The sourcefile does not contain any dependencies, so just # store a dummy comment line, to avoid errors with the Makefile # "include basename.Plo" scheme. echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; icc) # Intel's C compiler understands `-MD -MF file'. However on # icc -MD -MF foo.d -c -o sub/foo.o sub/foo.c # ICC 7.0 will fill foo.d with something like # foo.o: sub/foo.c # foo.o: sub/foo.h # which is wrong. We want: # sub/foo.o: sub/foo.c # sub/foo.o: sub/foo.h # sub/foo.c: # sub/foo.h: # ICC 7.1 will output # foo.o: sub/foo.c sub/foo.h # and will wrap long lines using \ : # foo.o: sub/foo.c ... \ # sub/foo.h ... \ # ... "$@" -MD -MF "$tmpdepfile" stat=$? if test $stat -eq 0; then : else 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. dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` test "x$dir" = "x$object" && dir= base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` 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 -eq 0; then : else 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,^.*\.[a-z]*:,$object:," "$tmpdepfile" > "$depfile" # Add `dependent.h:' lines. sed -ne '2,${ s/^ *// s/ \\*$// s/$/:/ p }' "$tmpdepfile" >> "$depfile" else echo "#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. dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` test "x$dir" = "x$object" && dir= base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` if test "$libtool" = yes; then # With Tru64 cc, shared objects can also be used to make a # static library. This mechanism is used in libtool 1.4 series to # handle both shared and static libraries in a single compilation. # With libtool 1.4, dependencies were output in $dir.libs/$base.lo.d. # # With libtool 1.5 this exception was removed, and libtool now # 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.libs/$base.lo.d # libtool 1.4 tmpdepfile2=$dir$base.o.d # libtool 1.5 tmpdepfile3=$dir.libs/$base.o.d # libtool 1.5 tmpdepfile4=$dir.libs/$base.d # Compaq CCC V6.2-504 "$@" -Wc,-MD else tmpdepfile1=$dir$base.o.d tmpdepfile2=$dir$base.d tmpdepfile3=$dir$base.d tmpdepfile4=$dir$base.d "$@" -MD fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" # That's a tab and a space in the []. sed -e 's,^.*\.[a-z]*:[ ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" else echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; #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:^[ ]*[^: ][^:][^:]*\:[ ]*:'"$object"'\: :' > "$tmpdepfile" rm -f "$depfile" cat < "$tmpdepfile" > "$depfile" tr ' ' ' ' < "$tmpdepfile" | \ ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. 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" cat < "$tmpdepfile" > "$depfile" sed '1,2d' "$tmpdepfile" | tr ' ' ' ' | \ ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. 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:: \1 \\:p' >> "$depfile" echo " " >> "$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: cpputest-3.4/install-sh0000755000175300017530000003253712134202474012173 00000000000000#!/bin/sh # install - install a program, script, or datafile scriptversion=2009-04-28.21; # UTC # This originates from X11R5 (mit/util/scripts/install.sh), which was # later released in X11R6 (xc/config/util/install.sh) with the # following copyright and license. # # Copyright (C) 1994 X Consortium # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN # AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- # TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. # # Except as contained in this notice, the name of the X Consortium shall not # be used in advertising or otherwise to promote the sale, use or other deal- # ings in this Software without prior written authorization from the X Consor- # tium. # # # FSF changes to this file are in the public domain. # # Calling this script install-sh is preferred over install.sh, to prevent # `make' implicit rules from creating a file called install from it # when there is no Makefile. # # This script is compatible with the BSD install script, but was written # from scratch. nl=' ' IFS=" "" $nl" # set DOITPROG to echo to test this script # Don't use :- since 4.3BSD and earlier shells don't like it. doit=${DOITPROG-} if test -z "$doit"; then doit_exec=exec else doit_exec=$doit fi # Put in absolute file names if you don't have them in your path; # or use environment vars. chgrpprog=${CHGRPPROG-chgrp} chmodprog=${CHMODPROG-chmod} chownprog=${CHOWNPROG-chown} cmpprog=${CMPPROG-cmp} cpprog=${CPPROG-cp} mkdirprog=${MKDIRPROG-mkdir} mvprog=${MVPROG-mv} rmprog=${RMPROG-rm} stripprog=${STRIPPROG-strip} posix_glob='?' initialize_posix_glob=' test "$posix_glob" != "?" || { if (set -f) 2>/dev/null; then posix_glob= else posix_glob=: fi } ' posix_mkdir= # Desired mode of installed file. mode=0755 chgrpcmd= chmodcmd=$chmodprog chowncmd= mvcmd=$mvprog rmcmd="$rmprog -f" stripcmd= src= dst= dir_arg= dst_arg= copy_on_change=false no_target_directory= usage="\ Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE or: $0 [OPTION]... SRCFILES... DIRECTORY or: $0 [OPTION]... -t DIRECTORY SRCFILES... or: $0 [OPTION]... -d DIRECTORIES... In the 1st form, copy SRCFILE to DSTFILE. In the 2nd and 3rd, copy all SRCFILES to DIRECTORY. In the 4th, create DIRECTORIES. Options: --help display this help and exit. --version display version info and exit. -c (ignored) -C install only if different (preserve the last data modification time) -d create directories instead of installing files. -g GROUP $chgrpprog installed files to GROUP. -m MODE $chmodprog installed files to MODE. -o USER $chownprog installed files to USER. -s $stripprog installed files. -t DIRECTORY install into DIRECTORY. -T report an error if DSTFILE is a directory. Environment variables override the default commands: CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG RMPROG STRIPPROG " while test $# -ne 0; do case $1 in -c) ;; -C) copy_on_change=true;; -d) dir_arg=true;; -g) chgrpcmd="$chgrpprog $2" shift;; --help) echo "$usage"; exit $?;; -m) mode=$2 case $mode in *' '* | *' '* | *' '* | *'*'* | *'?'* | *'['*) echo "$0: invalid mode: $mode" >&2 exit 1;; esac shift;; -o) chowncmd="$chownprog $2" shift;; -s) stripcmd=$stripprog;; -t) dst_arg=$2 shift;; -T) no_target_directory=true;; --version) echo "$0 $scriptversion"; exit $?;; --) shift break;; -*) echo "$0: invalid option: $1" >&2 exit 1;; *) break;; esac shift done if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then # When -d is used, all remaining arguments are directories to create. # When -t is used, the destination is already specified. # Otherwise, the last argument is the destination. Remove it from $@. for arg do if test -n "$dst_arg"; then # $@ is not empty: it contains at least $arg. set fnord "$@" "$dst_arg" shift # fnord fi shift # arg dst_arg=$arg done fi if test $# -eq 0; then if test -z "$dir_arg"; then echo "$0: no input file specified." >&2 exit 1 fi # It's OK to call `install-sh -d' without argument. # This can happen when creating conditional directories. exit 0 fi if test -z "$dir_arg"; then trap '(exit $?); exit' 1 2 13 15 # Set umask so as not to create temps with too-generous modes. # However, 'strip' requires both read and write access to temps. case $mode in # Optimize common cases. *644) cp_umask=133;; *755) cp_umask=22;; *[0-7]) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw='% 200' fi cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;; *) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw=,u+rw fi cp_umask=$mode$u_plus_rw;; esac fi for src do # Protect names starting with `-'. case $src in -*) src=./$src;; esac if test -n "$dir_arg"; then dst=$src dstdir=$dst test -d "$dstdir" dstdir_status=$? else # Waiting for this to be detected by the "$cpprog $src $dsttmp" command # might cause directories to be created, which would be especially bad # if $src (and thus $dsttmp) contains '*'. if test ! -f "$src" && test ! -d "$src"; then echo "$0: $src does not exist." >&2 exit 1 fi if test -z "$dst_arg"; then echo "$0: no destination specified." >&2 exit 1 fi dst=$dst_arg # Protect names starting with `-'. case $dst in -*) dst=./$dst;; esac # If destination is a directory, append the input filename; won't work # if double slashes aren't ignored. if test -d "$dst"; then if test -n "$no_target_directory"; then echo "$0: $dst_arg: Is a directory" >&2 exit 1 fi dstdir=$dst dst=$dstdir/`basename "$src"` dstdir_status=0 else # Prefer dirname, but fall back on a substitute if dirname fails. dstdir=` (dirname "$dst") 2>/dev/null || expr X"$dst" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$dst" : 'X\(//\)[^/]' \| \ X"$dst" : 'X\(//\)$' \| \ X"$dst" : 'X\(/\)' \| . 2>/dev/null || echo X"$dst" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q' ` test -d "$dstdir" dstdir_status=$? fi fi obsolete_mkdir_used=false if test $dstdir_status != 0; then case $posix_mkdir in '') # Create intermediate dirs using mode 755 as modified by the umask. # This is like FreeBSD 'install' as of 1997-10-28. umask=`umask` case $stripcmd.$umask in # Optimize common cases. *[2367][2367]) mkdir_umask=$umask;; .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;; *[0-7]) mkdir_umask=`expr $umask + 22 \ - $umask % 100 % 40 + $umask % 20 \ - $umask % 10 % 4 + $umask % 2 `;; *) mkdir_umask=$umask,go-w;; esac # With -d, create the new directory with the user-specified mode. # Otherwise, rely on $mkdir_umask. if test -n "$dir_arg"; then mkdir_mode=-m$mode else mkdir_mode= fi posix_mkdir=false case $umask in *[123567][0-7][0-7]) # POSIX mkdir -p sets u+wx bits regardless of umask, which # is incompatible with FreeBSD 'install' when (umask & 300) != 0. ;; *) tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0 if (umask $mkdir_umask && exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1 then if test -z "$dir_arg" || { # Check for POSIX incompatibilities with -m. # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or # other-writeable bit of parent directory when it shouldn't. # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. ls_ld_tmpdir=`ls -ld "$tmpdir"` case $ls_ld_tmpdir in d????-?r-*) different_mode=700;; d????-?--*) different_mode=755;; *) false;; esac && $mkdirprog -m$different_mode -p -- "$tmpdir" && { ls_ld_tmpdir_1=`ls -ld "$tmpdir"` test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" } } then posix_mkdir=: fi rmdir "$tmpdir/d" "$tmpdir" else # Remove any dirs left behind by ancient mkdir implementations. rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null fi trap '' 0;; esac;; esac if $posix_mkdir && ( umask $mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir" ) then : else # The umask is ridiculous, or mkdir does not conform to POSIX, # or it failed possibly due to a race condition. Create the # directory the slow way, step by step, checking for races as we go. case $dstdir in /*) prefix='/';; -*) prefix='./';; *) prefix='';; esac eval "$initialize_posix_glob" oIFS=$IFS IFS=/ $posix_glob set -f set fnord $dstdir shift $posix_glob set +f IFS=$oIFS prefixes= for d do test -z "$d" && continue prefix=$prefix$d if test -d "$prefix"; then prefixes= else if $posix_mkdir; then (umask=$mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break # Don't fail if two instances are running concurrently. test -d "$prefix" || exit 1 else case $prefix in *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;; *) qprefix=$prefix;; esac prefixes="$prefixes '$qprefix'" fi fi prefix=$prefix/ done if test -n "$prefixes"; then # Don't fail if two instances are running concurrently. (umask $mkdir_umask && eval "\$doit_exec \$mkdirprog $prefixes") || test -d "$dstdir" || exit 1 obsolete_mkdir_used=true fi fi fi if test -n "$dir_arg"; then { test -z "$chowncmd" || $doit $chowncmd "$dst"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } && { test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false || test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1 else # Make a couple of temp file names in the proper directory. dsttmp=$dstdir/_inst.$$_ rmtmp=$dstdir/_rm.$$_ # Trap to clean up those temp files at exit. trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0 # Copy the file name to the temp name. (umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") && # and set any options; do chmod last to preserve setuid bits. # # If any of these fail, we abort the whole thing. If we want to # ignore errors from any of these, just make sure not to ignore # errors from the above "$doit $cpprog $src $dsttmp" command. # { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } && { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } && { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } && # If -C, don't bother to copy if it wouldn't change the file. if $copy_on_change && old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` && new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` && eval "$initialize_posix_glob" && $posix_glob set -f && set X $old && old=:$2:$4:$5:$6 && set X $new && new=:$2:$4:$5:$6 && $posix_glob set +f && test "$old" = "$new" && $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1 then rm -f "$dsttmp" else # Rename the file to the real destination. $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null || # The rename failed, perhaps because mv can't rename something else # to itself, or perhaps because mv is so ancient that it does not # support -f. { # Now remove or move aside any old file at destination location. # We try this two ways since rm can't unlink itself on some # systems and the destination file might be busy for other # reasons. In this case, the final cleanup might fail but the new # file should still install successfully. { test ! -f "$dst" || $doit $rmcmd -f "$dst" 2>/dev/null || { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null && { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; } } || { echo "$0: cannot unlink or rename $dst" >&2 (exit 1); exit 1 } } && # Now rename the file to the real destination. $doit $mvcmd "$dsttmp" "$dst" } fi || exit 1 trap '' 0 fi done # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: cpputest-3.4/ltmain.sh0000755000175300017530000105052712134202464012011 00000000000000 # libtool (GNU libtool) 2.4 # Written by Gordon Matzigkeit , 1996 # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, # 2007, 2008, 2009, 2010 Free Software Foundation, Inc. # This is free software; see the source for copying conditions. There is NO # warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # GNU Libtool is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # As a special exception to the GNU General Public License, # if you distribute this file as part of a program or library that # is built using GNU Libtool, you may include this file under the # same distribution terms that you use for the rest of that program. # # GNU Libtool is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with GNU Libtool; see the file COPYING. If not, a copy # can be downloaded from http://www.gnu.org/licenses/gpl.html, # or obtained by writing to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # Usage: $progname [OPTION]... [MODE-ARG]... # # Provide generalized library-building support services. # # --config show all configuration variables # --debug enable verbose shell tracing # -n, --dry-run display commands without modifying any files # --features display basic configuration information and exit # --mode=MODE use operation mode MODE # --preserve-dup-deps don't remove duplicate dependency libraries # --quiet, --silent don't print informational messages # --no-quiet, --no-silent # print informational messages (default) # --tag=TAG use configuration variables from tag TAG # -v, --verbose print more informational messages than default # --no-verbose don't print the extra informational messages # --version print version information # -h, --help, --help-all print short, long, or detailed help message # # MODE must be one of the following: # # clean remove files from the build directory # compile compile a source file into a libtool object # execute automatically set library path, then run a program # finish complete the installation of libtool libraries # install install libraries or executables # link create a library or an executable # uninstall remove libraries from an installed directory # # MODE-ARGS vary depending on the MODE. When passed as first option, # `--mode=MODE' may be abbreviated as `MODE' or a unique abbreviation of that. # Try `$progname --help --mode=MODE' for a more detailed description of MODE. # # When reporting a bug, please describe a test case to reproduce it and # include the following information: # # host-triplet: $host # shell: $SHELL # compiler: $LTCC # compiler flags: $LTCFLAGS # linker: $LD (gnu? $with_gnu_ld) # $progname: (GNU libtool) 2.4 Debian-2.4-2ubuntu1 # automake: $automake_version # autoconf: $autoconf_version # # Report bugs to . # GNU libtool home page: . # General help using GNU software: . PROGRAM=libtool PACKAGE=libtool VERSION="2.4 Debian-2.4-2ubuntu1" TIMESTAMP="" package_revision=1.3293 # Be Bourne compatible if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac fi BIN_SH=xpg4; export BIN_SH # for Tru64 DUALCASE=1; export DUALCASE # for MKS sh # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF $1 _LTECHO_EOF' } # NLS nuisances: We save the old values to restore during execute mode. lt_user_locale= lt_safe_locale= for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES do eval "if test \"\${$lt_var+set}\" = set; then save_$lt_var=\$$lt_var $lt_var=C export $lt_var lt_user_locale=\"$lt_var=\\\$save_\$lt_var; \$lt_user_locale\" lt_safe_locale=\"$lt_var=C; \$lt_safe_locale\" fi" done LC_ALL=C LANGUAGE=C export LANGUAGE LC_ALL $lt_unset CDPATH # Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh # is ksh but when the shell is invoked as "sh" and the current value of # the _XPG environment variable is not equal to 1 (one), the special # positional parameter $0, within a function call, is the name of the # function. progpath="$0" : ${CP="cp -f"} test "${ECHO+set}" = set || ECHO=${as_echo-'printf %s\n'} : ${EGREP="/bin/grep -E"} : ${FGREP="/bin/grep -F"} : ${GREP="/bin/grep"} : ${LN_S="ln -s"} : ${MAKE="make"} : ${MKDIR="mkdir"} : ${MV="mv -f"} : ${RM="rm -f"} : ${SED="/bin/sed"} : ${SHELL="${CONFIG_SHELL-/bin/sh}"} : ${Xsed="$SED -e 1s/^X//"} # Global variables: EXIT_SUCCESS=0 EXIT_FAILURE=1 EXIT_MISMATCH=63 # $? = 63 is used to indicate version mismatch to missing. EXIT_SKIP=77 # $? = 77 is used to indicate a skipped test to automake. exit_status=$EXIT_SUCCESS # Make sure IFS has a sensible default lt_nl=' ' IFS=" $lt_nl" dirname="s,/[^/]*$,," basename="s,^.*/,," # func_dirname file append nondir_replacement # Compute the dirname of FILE. If nonempty, add APPEND to the result, # otherwise set result to NONDIR_REPLACEMENT. func_dirname () { func_dirname_result=`$ECHO "${1}" | $SED "$dirname"` if test "X$func_dirname_result" = "X${1}"; then func_dirname_result="${3}" else func_dirname_result="$func_dirname_result${2}" fi } # func_dirname may be replaced by extended shell implementation # func_basename file func_basename () { func_basename_result=`$ECHO "${1}" | $SED "$basename"` } # func_basename may be replaced by extended shell implementation # func_dirname_and_basename file append nondir_replacement # perform func_basename and func_dirname in a single function # call: # dirname: Compute the dirname of FILE. If nonempty, # add APPEND to the result, otherwise set result # to NONDIR_REPLACEMENT. # value returned in "$func_dirname_result" # basename: Compute filename of FILE. # value retuned in "$func_basename_result" # Implementation must be kept synchronized with func_dirname # and func_basename. For efficiency, we do not delegate to # those functions but instead duplicate the functionality here. func_dirname_and_basename () { # Extract subdirectory from the argument. func_dirname_result=`$ECHO "${1}" | $SED -e "$dirname"` if test "X$func_dirname_result" = "X${1}"; then func_dirname_result="${3}" else func_dirname_result="$func_dirname_result${2}" fi func_basename_result=`$ECHO "${1}" | $SED -e "$basename"` } # func_dirname_and_basename may be replaced by extended shell implementation # func_stripname prefix suffix name # strip PREFIX and SUFFIX off of NAME. # PREFIX and SUFFIX must not contain globbing or regex special # characters, hashes, percent signs, but SUFFIX may contain a leading # dot (in which case that matches only a dot). # func_strip_suffix prefix name func_stripname () { case ${2} in .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;; *) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;; esac } # func_stripname may be replaced by extended shell implementation # These SED scripts presuppose an absolute path with a trailing slash. pathcar='s,^/\([^/]*\).*$,\1,' pathcdr='s,^/[^/]*,,' removedotparts=':dotsl s@/\./@/@g t dotsl s,/\.$,/,' collapseslashes='s@/\{1,\}@/@g' finalslash='s,/*$,/,' # func_normal_abspath PATH # Remove doubled-up and trailing slashes, "." path components, # and cancel out any ".." path components in PATH after making # it an absolute path. # value returned in "$func_normal_abspath_result" func_normal_abspath () { # Start from root dir and reassemble the path. func_normal_abspath_result= func_normal_abspath_tpath=$1 func_normal_abspath_altnamespace= case $func_normal_abspath_tpath in "") # Empty path, that just means $cwd. func_stripname '' '/' "`pwd`" func_normal_abspath_result=$func_stripname_result return ;; # The next three entries are used to spot a run of precisely # two leading slashes without using negated character classes; # we take advantage of case's first-match behaviour. ///*) # Unusual form of absolute path, do nothing. ;; //*) # Not necessarily an ordinary path; POSIX reserves leading '//' # and for example Cygwin uses it to access remote file shares # over CIFS/SMB, so we conserve a leading double slash if found. func_normal_abspath_altnamespace=/ ;; /*) # Absolute path, do nothing. ;; *) # Relative path, prepend $cwd. func_normal_abspath_tpath=`pwd`/$func_normal_abspath_tpath ;; esac # Cancel out all the simple stuff to save iterations. We also want # the path to end with a slash for ease of parsing, so make sure # there is one (and only one) here. func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ -e "$removedotparts" -e "$collapseslashes" -e "$finalslash"` while :; do # Processed it all yet? if test "$func_normal_abspath_tpath" = / ; then # If we ascended to the root using ".." the result may be empty now. if test -z "$func_normal_abspath_result" ; then func_normal_abspath_result=/ fi break fi func_normal_abspath_tcomponent=`$ECHO "$func_normal_abspath_tpath" | $SED \ -e "$pathcar"` func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ -e "$pathcdr"` # Figure out what to do with it case $func_normal_abspath_tcomponent in "") # Trailing empty path component, ignore it. ;; ..) # Parent dir; strip last assembled component from result. func_dirname "$func_normal_abspath_result" func_normal_abspath_result=$func_dirname_result ;; *) # Actual path component, append it. func_normal_abspath_result=$func_normal_abspath_result/$func_normal_abspath_tcomponent ;; esac done # Restore leading double-slash if one was found on entry. func_normal_abspath_result=$func_normal_abspath_altnamespace$func_normal_abspath_result } # func_relative_path SRCDIR DSTDIR # generates a relative path from SRCDIR to DSTDIR, with a trailing # slash if non-empty, suitable for immediately appending a filename # without needing to append a separator. # value returned in "$func_relative_path_result" func_relative_path () { func_relative_path_result= func_normal_abspath "$1" func_relative_path_tlibdir=$func_normal_abspath_result func_normal_abspath "$2" func_relative_path_tbindir=$func_normal_abspath_result # Ascend the tree starting from libdir while :; do # check if we have found a prefix of bindir case $func_relative_path_tbindir in $func_relative_path_tlibdir) # found an exact match func_relative_path_tcancelled= break ;; $func_relative_path_tlibdir*) # found a matching prefix func_stripname "$func_relative_path_tlibdir" '' "$func_relative_path_tbindir" func_relative_path_tcancelled=$func_stripname_result if test -z "$func_relative_path_result"; then func_relative_path_result=. fi break ;; *) func_dirname $func_relative_path_tlibdir func_relative_path_tlibdir=${func_dirname_result} if test "x$func_relative_path_tlibdir" = x ; then # Have to descend all the way to the root! func_relative_path_result=../$func_relative_path_result func_relative_path_tcancelled=$func_relative_path_tbindir break fi func_relative_path_result=../$func_relative_path_result ;; esac done # Now calculate path; take care to avoid doubling-up slashes. func_stripname '' '/' "$func_relative_path_result" func_relative_path_result=$func_stripname_result func_stripname '/' '/' "$func_relative_path_tcancelled" if test "x$func_stripname_result" != x ; then func_relative_path_result=${func_relative_path_result}/${func_stripname_result} fi # Normalisation. If bindir is libdir, return empty string, # else relative path ending with a slash; either way, target # file name can be directly appended. if test ! -z "$func_relative_path_result"; then func_stripname './' '' "$func_relative_path_result/" func_relative_path_result=$func_stripname_result fi } # The name of this program: func_dirname_and_basename "$progpath" progname=$func_basename_result # Make sure we have an absolute path for reexecution: case $progpath in [\\/]*|[A-Za-z]:\\*) ;; *[\\/]*) progdir=$func_dirname_result progdir=`cd "$progdir" && pwd` progpath="$progdir/$progname" ;; *) save_IFS="$IFS" IFS=: for progdir in $PATH; do IFS="$save_IFS" test -x "$progdir/$progname" && break done IFS="$save_IFS" test -n "$progdir" || progdir=`pwd` progpath="$progdir/$progname" ;; esac # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. Xsed="${SED}"' -e 1s/^X//' sed_quote_subst='s/\([`"$\\]\)/\\\1/g' # Same as above, but do not quote variable references. double_quote_subst='s/\(["`\\]\)/\\\1/g' # Sed substitution that turns a string into a regex matching for the # string literally. sed_make_literal_regex='s,[].[^$\\*\/],\\&,g' # Sed substitution that converts a w32 file name or path # which contains forward slashes, into one that contains # (escaped) backslashes. A very naive implementation. lt_sed_naive_backslashify='s|\\\\*|\\|g;s|/|\\|g;s|\\|\\\\|g' # Re-`\' parameter expansions in output of double_quote_subst that were # `\'-ed in input to the same. If an odd number of `\' preceded a '$' # in input to double_quote_subst, that '$' was protected from expansion. # Since each input `\' is now two `\'s, look for any number of runs of # four `\'s followed by two `\'s and then a '$'. `\' that '$'. bs='\\' bs2='\\\\' bs4='\\\\\\\\' dollar='\$' sed_double_backslash="\ s/$bs4/&\\ /g s/^$bs2$dollar/$bs&/ s/\\([^$bs]\\)$bs2$dollar/\\1$bs2$bs$dollar/g s/\n//g" # Standard options: opt_dry_run=false opt_help=false opt_quiet=false opt_verbose=false opt_warning=: # func_echo arg... # Echo program name prefixed message, along with the current mode # name if it has been set yet. func_echo () { $ECHO "$progname: ${opt_mode+$opt_mode: }$*" } # func_verbose arg... # Echo program name prefixed message in verbose mode only. func_verbose () { $opt_verbose && func_echo ${1+"$@"} # A bug in bash halts the script if the last line of a function # fails when set -e is in force, so we need another command to # work around that: : } # func_echo_all arg... # Invoke $ECHO with all args, space-separated. func_echo_all () { $ECHO "$*" } # func_error arg... # Echo program name prefixed message to standard error. func_error () { $ECHO "$progname: ${opt_mode+$opt_mode: }"${1+"$@"} 1>&2 } # func_warning arg... # Echo program name prefixed warning message to standard error. func_warning () { $opt_warning && $ECHO "$progname: ${opt_mode+$opt_mode: }warning: "${1+"$@"} 1>&2 # bash bug again: : } # func_fatal_error arg... # Echo program name prefixed message to standard error, and exit. func_fatal_error () { func_error ${1+"$@"} exit $EXIT_FAILURE } # func_fatal_help arg... # Echo program name prefixed message to standard error, followed by # a help hint, and exit. func_fatal_help () { func_error ${1+"$@"} func_fatal_error "$help" } help="Try \`$progname --help' for more information." ## default # func_grep expression filename # Check whether EXPRESSION matches any line of FILENAME, without output. func_grep () { $GREP "$1" "$2" >/dev/null 2>&1 } # func_mkdir_p directory-path # Make sure the entire path to DIRECTORY-PATH is available. func_mkdir_p () { my_directory_path="$1" my_dir_list= if test -n "$my_directory_path" && test "$opt_dry_run" != ":"; then # Protect directory names starting with `-' case $my_directory_path in -*) my_directory_path="./$my_directory_path" ;; esac # While some portion of DIR does not yet exist... while test ! -d "$my_directory_path"; do # ...make a list in topmost first order. Use a colon delimited # list incase some portion of path contains whitespace. my_dir_list="$my_directory_path:$my_dir_list" # If the last portion added has no slash in it, the list is done case $my_directory_path in */*) ;; *) break ;; esac # ...otherwise throw away the child directory and loop my_directory_path=`$ECHO "$my_directory_path" | $SED -e "$dirname"` done my_dir_list=`$ECHO "$my_dir_list" | $SED 's,:*$,,'` save_mkdir_p_IFS="$IFS"; IFS=':' for my_dir in $my_dir_list; do IFS="$save_mkdir_p_IFS" # mkdir can fail with a `File exist' error if two processes # try to create one of the directories concurrently. Don't # stop in that case! $MKDIR "$my_dir" 2>/dev/null || : done IFS="$save_mkdir_p_IFS" # Bail out if we (or some other process) failed to create a directory. test -d "$my_directory_path" || \ func_fatal_error "Failed to create \`$1'" fi } # func_mktempdir [string] # Make a temporary directory that won't clash with other running # libtool processes, and avoids race conditions if possible. If # given, STRING is the basename for that directory. func_mktempdir () { my_template="${TMPDIR-/tmp}/${1-$progname}" if test "$opt_dry_run" = ":"; then # Return a directory name, but don't create it in dry-run mode my_tmpdir="${my_template}-$$" else # If mktemp works, use that first and foremost my_tmpdir=`mktemp -d "${my_template}-XXXXXXXX" 2>/dev/null` if test ! -d "$my_tmpdir"; then # Failing that, at least try and use $RANDOM to avoid a race my_tmpdir="${my_template}-${RANDOM-0}$$" save_mktempdir_umask=`umask` umask 0077 $MKDIR "$my_tmpdir" umask $save_mktempdir_umask fi # If we're not in dry-run mode, bomb out on failure test -d "$my_tmpdir" || \ func_fatal_error "cannot create temporary directory \`$my_tmpdir'" fi $ECHO "$my_tmpdir" } # func_quote_for_eval arg # Aesthetically quote ARG to be evaled later. # This function returns two values: FUNC_QUOTE_FOR_EVAL_RESULT # is double-quoted, suitable for a subsequent eval, whereas # FUNC_QUOTE_FOR_EVAL_UNQUOTED_RESULT has merely all characters # which are still active within double quotes backslashified. func_quote_for_eval () { case $1 in *[\\\`\"\$]*) func_quote_for_eval_unquoted_result=`$ECHO "$1" | $SED "$sed_quote_subst"` ;; *) func_quote_for_eval_unquoted_result="$1" ;; esac case $func_quote_for_eval_unquoted_result in # Double-quote args containing shell metacharacters to delay # word splitting, command substitution and and variable # expansion for a subsequent eval. # Many Bourne shells cannot handle close brackets correctly # in scan sets, so we specify it separately. *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") func_quote_for_eval_result="\"$func_quote_for_eval_unquoted_result\"" ;; *) func_quote_for_eval_result="$func_quote_for_eval_unquoted_result" esac } # func_quote_for_expand arg # Aesthetically quote ARG to be evaled later; same as above, # but do not quote variable references. func_quote_for_expand () { case $1 in *[\\\`\"]*) my_arg=`$ECHO "$1" | $SED \ -e "$double_quote_subst" -e "$sed_double_backslash"` ;; *) my_arg="$1" ;; esac case $my_arg in # Double-quote args containing shell metacharacters to delay # word splitting and command substitution for a subsequent eval. # Many Bourne shells cannot handle close brackets correctly # in scan sets, so we specify it separately. *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") my_arg="\"$my_arg\"" ;; esac func_quote_for_expand_result="$my_arg" } # func_show_eval cmd [fail_exp] # Unless opt_silent is true, then output CMD. Then, if opt_dryrun is # not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP # is given, then evaluate it. func_show_eval () { my_cmd="$1" my_fail_exp="${2-:}" ${opt_silent-false} || { func_quote_for_expand "$my_cmd" eval "func_echo $func_quote_for_expand_result" } if ${opt_dry_run-false}; then :; else eval "$my_cmd" my_status=$? if test "$my_status" -eq 0; then :; else eval "(exit $my_status); $my_fail_exp" fi fi } # func_show_eval_locale cmd [fail_exp] # Unless opt_silent is true, then output CMD. Then, if opt_dryrun is # not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP # is given, then evaluate it. Use the saved locale for evaluation. func_show_eval_locale () { my_cmd="$1" my_fail_exp="${2-:}" ${opt_silent-false} || { func_quote_for_expand "$my_cmd" eval "func_echo $func_quote_for_expand_result" } if ${opt_dry_run-false}; then :; else eval "$lt_user_locale $my_cmd" my_status=$? eval "$lt_safe_locale" if test "$my_status" -eq 0; then :; else eval "(exit $my_status); $my_fail_exp" fi fi } # func_tr_sh # Turn $1 into a string suitable for a shell variable name. # Result is stored in $func_tr_sh_result. All characters # not in the set a-zA-Z0-9_ are replaced with '_'. Further, # if $1 begins with a digit, a '_' is prepended as well. func_tr_sh () { case $1 in [0-9]* | *[!a-zA-Z0-9_]*) func_tr_sh_result=`$ECHO "$1" | $SED 's/^\([0-9]\)/_\1/; s/[^a-zA-Z0-9_]/_/g'` ;; * ) func_tr_sh_result=$1 ;; esac } # func_version # Echo version message to standard output and exit. func_version () { $opt_debug $SED -n '/(C)/!b go :more /\./!{ N s/\n# / / b more } :go /^# '$PROGRAM' (GNU /,/# warranty; / { s/^# // s/^# *$// s/\((C)\)[ 0-9,-]*\( [1-9][0-9]*\)/\1\2/ p }' < "$progpath" exit $? } # func_usage # Echo short help message to standard output and exit. func_usage () { $opt_debug $SED -n '/^# Usage:/,/^# *.*--help/ { s/^# // s/^# *$// s/\$progname/'$progname'/ p }' < "$progpath" echo $ECHO "run \`$progname --help | more' for full usage" exit $? } # func_help [NOEXIT] # Echo long help message to standard output and exit, # unless 'noexit' is passed as argument. func_help () { $opt_debug $SED -n '/^# Usage:/,/# Report bugs to/ { :print s/^# // s/^# *$// s*\$progname*'$progname'* s*\$host*'"$host"'* s*\$SHELL*'"$SHELL"'* s*\$LTCC*'"$LTCC"'* s*\$LTCFLAGS*'"$LTCFLAGS"'* s*\$LD*'"$LD"'* s/\$with_gnu_ld/'"$with_gnu_ld"'/ s/\$automake_version/'"`(automake --version) 2>/dev/null |$SED 1q`"'/ s/\$autoconf_version/'"`(autoconf --version) 2>/dev/null |$SED 1q`"'/ p d } /^# .* home page:/b print /^# General help using/b print ' < "$progpath" ret=$? if test -z "$1"; then exit $ret fi } # func_missing_arg argname # Echo program name prefixed message to standard error and set global # exit_cmd. func_missing_arg () { $opt_debug func_error "missing argument for $1." exit_cmd=exit } # func_split_short_opt shortopt # Set func_split_short_opt_name and func_split_short_opt_arg shell # variables after splitting SHORTOPT after the 2nd character. func_split_short_opt () { my_sed_short_opt='1s/^\(..\).*$/\1/;q' my_sed_short_rest='1s/^..\(.*\)$/\1/;q' func_split_short_opt_name=`$ECHO "$1" | $SED "$my_sed_short_opt"` func_split_short_opt_arg=`$ECHO "$1" | $SED "$my_sed_short_rest"` } # func_split_short_opt may be replaced by extended shell implementation # func_split_long_opt longopt # Set func_split_long_opt_name and func_split_long_opt_arg shell # variables after splitting LONGOPT at the `=' sign. func_split_long_opt () { my_sed_long_opt='1s/^\(--[^=]*\)=.*/\1/;q' my_sed_long_arg='1s/^--[^=]*=//' func_split_long_opt_name=`$ECHO "$1" | $SED "$my_sed_long_opt"` func_split_long_opt_arg=`$ECHO "$1" | $SED "$my_sed_long_arg"` } # func_split_long_opt may be replaced by extended shell implementation exit_cmd=: magic="%%%MAGIC variable%%%" magic_exe="%%%MAGIC EXE variable%%%" # Global variables. nonopt= preserve_args= lo2o="s/\\.lo\$/.${objext}/" o2lo="s/\\.${objext}\$/.lo/" extracted_archives= extracted_serial=0 # If this variable is set in any of the actions, the command in it # will be execed at the end. This prevents here-documents from being # left over by shells. exec_cmd= # func_append var value # Append VALUE to the end of shell variable VAR. func_append () { eval "${1}=\$${1}\${2}" } # func_append may be replaced by extended shell implementation # func_append_quoted var value # Quote VALUE and append to the end of shell variable VAR, separated # by a space. func_append_quoted () { func_quote_for_eval "${2}" eval "${1}=\$${1}\\ \$func_quote_for_eval_result" } # func_append_quoted may be replaced by extended shell implementation # func_arith arithmetic-term... func_arith () { func_arith_result=`expr "${@}"` } # func_arith may be replaced by extended shell implementation # func_len string # STRING may not start with a hyphen. func_len () { func_len_result=`expr "${1}" : ".*" 2>/dev/null || echo $max_cmd_len` } # func_len may be replaced by extended shell implementation # func_lo2o object func_lo2o () { func_lo2o_result=`$ECHO "${1}" | $SED "$lo2o"` } # func_lo2o may be replaced by extended shell implementation # func_xform libobj-or-source func_xform () { func_xform_result=`$ECHO "${1}" | $SED 's/\.[^.]*$/.lo/'` } # func_xform may be replaced by extended shell implementation # func_fatal_configuration arg... # Echo program name prefixed message to standard error, followed by # a configuration failure hint, and exit. func_fatal_configuration () { func_error ${1+"$@"} func_error "See the $PACKAGE documentation for more information." func_fatal_error "Fatal configuration error." } # func_config # Display the configuration for all the tags in this script. func_config () { re_begincf='^# ### BEGIN LIBTOOL' re_endcf='^# ### END LIBTOOL' # Default configuration. $SED "1,/$re_begincf CONFIG/d;/$re_endcf CONFIG/,\$d" < "$progpath" # Now print the configurations for the tags. for tagname in $taglist; do $SED -n "/$re_begincf TAG CONFIG: $tagname\$/,/$re_endcf TAG CONFIG: $tagname\$/p" < "$progpath" done exit $? } # func_features # Display the features supported by this script. func_features () { echo "host: $host" if test "$build_libtool_libs" = yes; then echo "enable shared libraries" else echo "disable shared libraries" fi if test "$build_old_libs" = yes; then echo "enable static libraries" else echo "disable static libraries" fi exit $? } # func_enable_tag tagname # Verify that TAGNAME is valid, and either flag an error and exit, or # enable the TAGNAME tag. We also add TAGNAME to the global $taglist # variable here. func_enable_tag () { # Global variable: tagname="$1" re_begincf="^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\$" re_endcf="^# ### END LIBTOOL TAG CONFIG: $tagname\$" sed_extractcf="/$re_begincf/,/$re_endcf/p" # Validate tagname. case $tagname in *[!-_A-Za-z0-9,/]*) func_fatal_error "invalid tag name: $tagname" ;; esac # Don't test for the "default" C tag, as we know it's # there but not specially marked. case $tagname in CC) ;; *) if $GREP "$re_begincf" "$progpath" >/dev/null 2>&1; then taglist="$taglist $tagname" # Evaluate the configuration. Be careful to quote the path # and the sed script, to avoid splitting on whitespace, but # also don't use non-portable quotes within backquotes within # quotes we have to do it in 2 steps: extractedcf=`$SED -n -e "$sed_extractcf" < "$progpath"` eval "$extractedcf" else func_error "ignoring unknown tag $tagname" fi ;; esac } # func_check_version_match # Ensure that we are using m4 macros, and libtool script from the same # release of libtool. func_check_version_match () { if test "$package_revision" != "$macro_revision"; then if test "$VERSION" != "$macro_version"; then if test -z "$macro_version"; then cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, but the $progname: definition of this LT_INIT comes from an older release. $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION $progname: and run autoconf again. _LT_EOF else cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, but the $progname: definition of this LT_INIT comes from $PACKAGE $macro_version. $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION $progname: and run autoconf again. _LT_EOF fi else cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, revision $package_revision, $progname: but the definition of this LT_INIT comes from revision $macro_revision. $progname: You should recreate aclocal.m4 with macros from revision $package_revision $progname: of $PACKAGE $VERSION and run autoconf again. _LT_EOF fi exit $EXIT_MISMATCH fi } # Shorthand for --mode=foo, only valid as the first argument case $1 in clean|clea|cle|cl) shift; set dummy --mode clean ${1+"$@"}; shift ;; compile|compil|compi|comp|com|co|c) shift; set dummy --mode compile ${1+"$@"}; shift ;; execute|execut|execu|exec|exe|ex|e) shift; set dummy --mode execute ${1+"$@"}; shift ;; finish|finis|fini|fin|fi|f) shift; set dummy --mode finish ${1+"$@"}; shift ;; install|instal|insta|inst|ins|in|i) shift; set dummy --mode install ${1+"$@"}; shift ;; link|lin|li|l) shift; set dummy --mode link ${1+"$@"}; shift ;; uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u) shift; set dummy --mode uninstall ${1+"$@"}; shift ;; esac # Option defaults: opt_debug=: opt_dry_run=false opt_config=false opt_preserve_dup_deps=false opt_features=false opt_finish=false opt_help=false opt_help_all=false opt_silent=: opt_verbose=: opt_silent=false opt_verbose=false # Parse options once, thoroughly. This comes as soon as possible in the # script to make things like `--version' happen as quickly as we can. { # this just eases exit handling while test $# -gt 0; do opt="$1" shift case $opt in --debug|-x) opt_debug='set -x' func_echo "enabling shell trace mode" $opt_debug ;; --dry-run|--dryrun|-n) opt_dry_run=: ;; --config) opt_config=: func_config ;; --dlopen|-dlopen) optarg="$1" opt_dlopen="${opt_dlopen+$opt_dlopen }$optarg" shift ;; --preserve-dup-deps) opt_preserve_dup_deps=: ;; --features) opt_features=: func_features ;; --finish) opt_finish=: set dummy --mode finish ${1+"$@"}; shift ;; --help) opt_help=: ;; --help-all) opt_help_all=: opt_help=': help-all' ;; --mode) test $# = 0 && func_missing_arg $opt && break optarg="$1" opt_mode="$optarg" case $optarg in # Valid mode arguments: clean|compile|execute|finish|install|link|relink|uninstall) ;; # Catch anything else as an error *) func_error "invalid argument for $opt" exit_cmd=exit break ;; esac shift ;; --no-silent|--no-quiet) opt_silent=false func_append preserve_args " $opt" ;; --no-verbose) opt_verbose=false func_append preserve_args " $opt" ;; --silent|--quiet) opt_silent=: func_append preserve_args " $opt" opt_verbose=false ;; --verbose|-v) opt_verbose=: func_append preserve_args " $opt" opt_silent=false ;; --tag) test $# = 0 && func_missing_arg $opt && break optarg="$1" opt_tag="$optarg" func_append preserve_args " $opt $optarg" func_enable_tag "$optarg" shift ;; -\?|-h) func_usage ;; --help) func_help ;; --version) func_version ;; # Separate optargs to long options: --*=*) func_split_long_opt "$opt" set dummy "$func_split_long_opt_name" "$func_split_long_opt_arg" ${1+"$@"} shift ;; # Separate non-argument short options: -\?*|-h*|-n*|-v*) func_split_short_opt "$opt" set dummy "$func_split_short_opt_name" "-$func_split_short_opt_arg" ${1+"$@"} shift ;; --) break ;; -*) func_fatal_help "unrecognized option \`$opt'" ;; *) set dummy "$opt" ${1+"$@"}; shift; break ;; esac done # Validate options: # save first non-option argument if test "$#" -gt 0; then nonopt="$opt" shift fi # preserve --debug test "$opt_debug" = : || func_append preserve_args " --debug" case $host in *cygwin* | *mingw* | *pw32* | *cegcc*) # don't eliminate duplications in $postdeps and $predeps opt_duplicate_compiler_generated_deps=: ;; *) opt_duplicate_compiler_generated_deps=$opt_preserve_dup_deps ;; esac $opt_help || { # Sanity checks first: func_check_version_match if test "$build_libtool_libs" != yes && test "$build_old_libs" != yes; then func_fatal_configuration "not configured to build any kind of library" fi # Darwin sucks eval std_shrext=\"$shrext_cmds\" # Only execute mode is allowed to have -dlopen flags. if test -n "$opt_dlopen" && test "$opt_mode" != execute; then func_error "unrecognized option \`-dlopen'" $ECHO "$help" 1>&2 exit $EXIT_FAILURE fi # Change the help message to a mode-specific one. generic_help="$help" help="Try \`$progname --help --mode=$opt_mode' for more information." } # Bail if the options were screwed $exit_cmd $EXIT_FAILURE } ## ----------- ## ## Main. ## ## ----------- ## # func_lalib_p file # True iff FILE is a libtool `.la' library or `.lo' object file. # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_lalib_p () { test -f "$1" && $SED -e 4q "$1" 2>/dev/null \ | $GREP "^# Generated by .*$PACKAGE" > /dev/null 2>&1 } # func_lalib_unsafe_p file # True iff FILE is a libtool `.la' library or `.lo' object file. # This function implements the same check as func_lalib_p without # resorting to external programs. To this end, it redirects stdin and # closes it afterwards, without saving the original file descriptor. # As a safety measure, use it only where a negative result would be # fatal anyway. Works if `file' does not exist. func_lalib_unsafe_p () { lalib_p=no if test -f "$1" && test -r "$1" && exec 5<&0 <"$1"; then for lalib_p_l in 1 2 3 4 do read lalib_p_line case "$lalib_p_line" in \#\ Generated\ by\ *$PACKAGE* ) lalib_p=yes; break;; esac done exec 0<&5 5<&- fi test "$lalib_p" = yes } # func_ltwrapper_script_p file # True iff FILE is a libtool wrapper script # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_ltwrapper_script_p () { func_lalib_p "$1" } # func_ltwrapper_executable_p file # True iff FILE is a libtool wrapper executable # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_ltwrapper_executable_p () { func_ltwrapper_exec_suffix= case $1 in *.exe) ;; *) func_ltwrapper_exec_suffix=.exe ;; esac $GREP "$magic_exe" "$1$func_ltwrapper_exec_suffix" >/dev/null 2>&1 } # func_ltwrapper_scriptname file # Assumes file is an ltwrapper_executable # uses $file to determine the appropriate filename for a # temporary ltwrapper_script. func_ltwrapper_scriptname () { func_dirname_and_basename "$1" "" "." func_stripname '' '.exe' "$func_basename_result" func_ltwrapper_scriptname_result="$func_dirname_result/$objdir/${func_stripname_result}_ltshwrapper" } # func_ltwrapper_p file # True iff FILE is a libtool wrapper script or wrapper executable # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_ltwrapper_p () { func_ltwrapper_script_p "$1" || func_ltwrapper_executable_p "$1" } # func_execute_cmds commands fail_cmd # Execute tilde-delimited COMMANDS. # If FAIL_CMD is given, eval that upon failure. # FAIL_CMD may read-access the current command in variable CMD! func_execute_cmds () { $opt_debug save_ifs=$IFS; IFS='~' for cmd in $1; do IFS=$save_ifs eval cmd=\"$cmd\" func_show_eval "$cmd" "${2-:}" done IFS=$save_ifs } # func_source file # Source FILE, adding directory component if necessary. # Note that it is not necessary on cygwin/mingw to append a dot to # FILE even if both FILE and FILE.exe exist: automatic-append-.exe # behavior happens only for exec(3), not for open(2)! Also, sourcing # `FILE.' does not work on cygwin managed mounts. func_source () { $opt_debug case $1 in */* | *\\*) . "$1" ;; *) . "./$1" ;; esac } # func_resolve_sysroot PATH # Replace a leading = in PATH with a sysroot. Store the result into # func_resolve_sysroot_result func_resolve_sysroot () { func_resolve_sysroot_result=$1 case $func_resolve_sysroot_result in =*) func_stripname '=' '' "$func_resolve_sysroot_result" func_resolve_sysroot_result=$lt_sysroot$func_stripname_result ;; esac } # func_replace_sysroot PATH # If PATH begins with the sysroot, replace it with = and # store the result into func_replace_sysroot_result. func_replace_sysroot () { case "$lt_sysroot:$1" in ?*:"$lt_sysroot"*) func_stripname "$lt_sysroot" '' "$1" func_replace_sysroot_result="=$func_stripname_result" ;; *) # Including no sysroot. func_replace_sysroot_result=$1 ;; esac } # func_infer_tag arg # Infer tagged configuration to use if any are available and # if one wasn't chosen via the "--tag" command line option. # Only attempt this if the compiler in the base compile # command doesn't match the default compiler. # arg is usually of the form 'gcc ...' func_infer_tag () { $opt_debug if test -n "$available_tags" && test -z "$tagname"; then CC_quoted= for arg in $CC; do func_append_quoted CC_quoted "$arg" done CC_expanded=`func_echo_all $CC` CC_quoted_expanded=`func_echo_all $CC_quoted` case $@ in # Blanks in the command may have been stripped by the calling shell, # but not from the CC environment variable when configure was run. " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) ;; # Blanks at the start of $base_compile will cause this to fail # if we don't check for them as well. *) for z in $available_tags; do if $GREP "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then # Evaluate the configuration. eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`" CC_quoted= for arg in $CC; do # Double-quote args containing other shell metacharacters. func_append_quoted CC_quoted "$arg" done CC_expanded=`func_echo_all $CC` CC_quoted_expanded=`func_echo_all $CC_quoted` case "$@ " in " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) # The compiler in the base compile command matches # the one in the tagged configuration. # Assume this is the tagged configuration we want. tagname=$z break ;; esac fi done # If $tagname still isn't set, then no tagged configuration # was found and let the user know that the "--tag" command # line option must be used. if test -z "$tagname"; then func_echo "unable to infer tagged configuration" func_fatal_error "specify a tag with \`--tag'" # else # func_verbose "using $tagname tagged configuration" fi ;; esac fi } # func_write_libtool_object output_name pic_name nonpic_name # Create a libtool object file (analogous to a ".la" file), # but don't create it if we're doing a dry run. func_write_libtool_object () { write_libobj=${1} if test "$build_libtool_libs" = yes; then write_lobj=\'${2}\' else write_lobj=none fi if test "$build_old_libs" = yes; then write_oldobj=\'${3}\' else write_oldobj=none fi $opt_dry_run || { cat >${write_libobj}T </dev/null` if test "$?" -eq 0 && test -n "${func_convert_core_file_wine_to_w32_tmp}"; then func_convert_core_file_wine_to_w32_result=`$ECHO "$func_convert_core_file_wine_to_w32_tmp" | $SED -e "$lt_sed_naive_backslashify"` else func_convert_core_file_wine_to_w32_result= fi fi } # end: func_convert_core_file_wine_to_w32 # func_convert_core_path_wine_to_w32 ARG # Helper function used by path conversion functions when $build is *nix, and # $host is mingw, cygwin, or some other w32 environment. Relies on a correctly # configured wine environment available, with the winepath program in $build's # $PATH. Assumes ARG has no leading or trailing path separator characters. # # ARG is path to be converted from $build format to win32. # Result is available in $func_convert_core_path_wine_to_w32_result. # Unconvertible file (directory) names in ARG are skipped; if no directory names # are convertible, then the result may be empty. func_convert_core_path_wine_to_w32 () { $opt_debug # unfortunately, winepath doesn't convert paths, only file names func_convert_core_path_wine_to_w32_result="" if test -n "$1"; then oldIFS=$IFS IFS=: for func_convert_core_path_wine_to_w32_f in $1; do IFS=$oldIFS func_convert_core_file_wine_to_w32 "$func_convert_core_path_wine_to_w32_f" if test -n "$func_convert_core_file_wine_to_w32_result" ; then if test -z "$func_convert_core_path_wine_to_w32_result"; then func_convert_core_path_wine_to_w32_result="$func_convert_core_file_wine_to_w32_result" else func_append func_convert_core_path_wine_to_w32_result ";$func_convert_core_file_wine_to_w32_result" fi fi done IFS=$oldIFS fi } # end: func_convert_core_path_wine_to_w32 # func_cygpath ARGS... # Wrapper around calling the cygpath program via LT_CYGPATH. This is used when # when (1) $build is *nix and Cygwin is hosted via a wine environment; or (2) # $build is MSYS and $host is Cygwin, or (3) $build is Cygwin. In case (1) or # (2), returns the Cygwin file name or path in func_cygpath_result (input # file name or path is assumed to be in w32 format, as previously converted # from $build's *nix or MSYS format). In case (3), returns the w32 file name # or path in func_cygpath_result (input file name or path is assumed to be in # Cygwin format). Returns an empty string on error. # # ARGS are passed to cygpath, with the last one being the file name or path to # be converted. # # Specify the absolute *nix (or w32) name to cygpath in the LT_CYGPATH # environment variable; do not put it in $PATH. func_cygpath () { $opt_debug if test -n "$LT_CYGPATH" && test -f "$LT_CYGPATH"; then func_cygpath_result=`$LT_CYGPATH "$@" 2>/dev/null` if test "$?" -ne 0; then # on failure, ensure result is empty func_cygpath_result= fi else func_cygpath_result= func_error "LT_CYGPATH is empty or specifies non-existent file: \`$LT_CYGPATH'" fi } #end: func_cygpath # func_convert_core_msys_to_w32 ARG # Convert file name or path ARG from MSYS format to w32 format. Return # result in func_convert_core_msys_to_w32_result. func_convert_core_msys_to_w32 () { $opt_debug # awkward: cmd appends spaces to result func_convert_core_msys_to_w32_result=`( cmd //c echo "$1" ) 2>/dev/null | $SED -e 's/[ ]*$//' -e "$lt_sed_naive_backslashify"` } #end: func_convert_core_msys_to_w32 # func_convert_file_check ARG1 ARG2 # Verify that ARG1 (a file name in $build format) was converted to $host # format in ARG2. Otherwise, emit an error message, but continue (resetting # func_to_host_file_result to ARG1). func_convert_file_check () { $opt_debug if test -z "$2" && test -n "$1" ; then func_error "Could not determine host file name corresponding to" func_error " \`$1'" func_error "Continuing, but uninstalled executables may not work." # Fallback: func_to_host_file_result="$1" fi } # end func_convert_file_check # func_convert_path_check FROM_PATHSEP TO_PATHSEP FROM_PATH TO_PATH # Verify that FROM_PATH (a path in $build format) was converted to $host # format in TO_PATH. Otherwise, emit an error message, but continue, resetting # func_to_host_file_result to a simplistic fallback value (see below). func_convert_path_check () { $opt_debug if test -z "$4" && test -n "$3"; then func_error "Could not determine the host path corresponding to" func_error " \`$3'" func_error "Continuing, but uninstalled executables may not work." # Fallback. This is a deliberately simplistic "conversion" and # should not be "improved". See libtool.info. if test "x$1" != "x$2"; then lt_replace_pathsep_chars="s|$1|$2|g" func_to_host_path_result=`echo "$3" | $SED -e "$lt_replace_pathsep_chars"` else func_to_host_path_result="$3" fi fi } # end func_convert_path_check # func_convert_path_front_back_pathsep FRONTPAT BACKPAT REPL ORIG # Modifies func_to_host_path_result by prepending REPL if ORIG matches FRONTPAT # and appending REPL if ORIG matches BACKPAT. func_convert_path_front_back_pathsep () { $opt_debug case $4 in $1 ) func_to_host_path_result="$3$func_to_host_path_result" ;; esac case $4 in $2 ) func_append func_to_host_path_result "$3" ;; esac } # end func_convert_path_front_back_pathsep ################################################## # $build to $host FILE NAME CONVERSION FUNCTIONS # ################################################## # invoked via `$to_host_file_cmd ARG' # # In each case, ARG is the path to be converted from $build to $host format. # Result will be available in $func_to_host_file_result. # func_to_host_file ARG # Converts the file name ARG from $build format to $host format. Return result # in func_to_host_file_result. func_to_host_file () { $opt_debug $to_host_file_cmd "$1" } # end func_to_host_file # func_to_tool_file ARG LAZY # converts the file name ARG from $build format to toolchain format. Return # result in func_to_tool_file_result. If the conversion in use is listed # in (the comma separated) LAZY, no conversion takes place. func_to_tool_file () { $opt_debug case ,$2, in *,"$to_tool_file_cmd",*) func_to_tool_file_result=$1 ;; *) $to_tool_file_cmd "$1" func_to_tool_file_result=$func_to_host_file_result ;; esac } # end func_to_tool_file # func_convert_file_noop ARG # Copy ARG to func_to_host_file_result. func_convert_file_noop () { func_to_host_file_result="$1" } # end func_convert_file_noop # func_convert_file_msys_to_w32 ARG # Convert file name ARG from (mingw) MSYS to (mingw) w32 format; automatic # conversion to w32 is not available inside the cwrapper. Returns result in # func_to_host_file_result. func_convert_file_msys_to_w32 () { $opt_debug func_to_host_file_result="$1" if test -n "$1"; then func_convert_core_msys_to_w32 "$1" func_to_host_file_result="$func_convert_core_msys_to_w32_result" fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_msys_to_w32 # func_convert_file_cygwin_to_w32 ARG # Convert file name ARG from Cygwin to w32 format. Returns result in # func_to_host_file_result. func_convert_file_cygwin_to_w32 () { $opt_debug func_to_host_file_result="$1" if test -n "$1"; then # because $build is cygwin, we call "the" cygpath in $PATH; no need to use # LT_CYGPATH in this case. func_to_host_file_result=`cygpath -m "$1"` fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_cygwin_to_w32 # func_convert_file_nix_to_w32 ARG # Convert file name ARG from *nix to w32 format. Requires a wine environment # and a working winepath. Returns result in func_to_host_file_result. func_convert_file_nix_to_w32 () { $opt_debug func_to_host_file_result="$1" if test -n "$1"; then func_convert_core_file_wine_to_w32 "$1" func_to_host_file_result="$func_convert_core_file_wine_to_w32_result" fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_nix_to_w32 # func_convert_file_msys_to_cygwin ARG # Convert file name ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. # Returns result in func_to_host_file_result. func_convert_file_msys_to_cygwin () { $opt_debug func_to_host_file_result="$1" if test -n "$1"; then func_convert_core_msys_to_w32 "$1" func_cygpath -u "$func_convert_core_msys_to_w32_result" func_to_host_file_result="$func_cygpath_result" fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_msys_to_cygwin # func_convert_file_nix_to_cygwin ARG # Convert file name ARG from *nix to Cygwin format. Requires Cygwin installed # in a wine environment, working winepath, and LT_CYGPATH set. Returns result # in func_to_host_file_result. func_convert_file_nix_to_cygwin () { $opt_debug func_to_host_file_result="$1" if test -n "$1"; then # convert from *nix to w32, then use cygpath to convert from w32 to cygwin. func_convert_core_file_wine_to_w32 "$1" func_cygpath -u "$func_convert_core_file_wine_to_w32_result" func_to_host_file_result="$func_cygpath_result" fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_nix_to_cygwin ############################################# # $build to $host PATH CONVERSION FUNCTIONS # ############################################# # invoked via `$to_host_path_cmd ARG' # # In each case, ARG is the path to be converted from $build to $host format. # The result will be available in $func_to_host_path_result. # # Path separators are also converted from $build format to $host format. If # ARG begins or ends with a path separator character, it is preserved (but # converted to $host format) on output. # # All path conversion functions are named using the following convention: # file name conversion function : func_convert_file_X_to_Y () # path conversion function : func_convert_path_X_to_Y () # where, for any given $build/$host combination the 'X_to_Y' value is the # same. If conversion functions are added for new $build/$host combinations, # the two new functions must follow this pattern, or func_init_to_host_path_cmd # will break. # func_init_to_host_path_cmd # Ensures that function "pointer" variable $to_host_path_cmd is set to the # appropriate value, based on the value of $to_host_file_cmd. to_host_path_cmd= func_init_to_host_path_cmd () { $opt_debug if test -z "$to_host_path_cmd"; then func_stripname 'func_convert_file_' '' "$to_host_file_cmd" to_host_path_cmd="func_convert_path_${func_stripname_result}" fi } # func_to_host_path ARG # Converts the path ARG from $build format to $host format. Return result # in func_to_host_path_result. func_to_host_path () { $opt_debug func_init_to_host_path_cmd $to_host_path_cmd "$1" } # end func_to_host_path # func_convert_path_noop ARG # Copy ARG to func_to_host_path_result. func_convert_path_noop () { func_to_host_path_result="$1" } # end func_convert_path_noop # func_convert_path_msys_to_w32 ARG # Convert path ARG from (mingw) MSYS to (mingw) w32 format; automatic # conversion to w32 is not available inside the cwrapper. Returns result in # func_to_host_path_result. func_convert_path_msys_to_w32 () { $opt_debug func_to_host_path_result="$1" if test -n "$1"; then # Remove leading and trailing path separator characters from ARG. MSYS # behavior is inconsistent here; cygpath turns them into '.;' and ';.'; # and winepath ignores them completely. func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" func_to_host_path_result="$func_convert_core_msys_to_w32_result" func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" fi } # end func_convert_path_msys_to_w32 # func_convert_path_cygwin_to_w32 ARG # Convert path ARG from Cygwin to w32 format. Returns result in # func_to_host_file_result. func_convert_path_cygwin_to_w32 () { $opt_debug func_to_host_path_result="$1" if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_to_host_path_result=`cygpath -m -p "$func_to_host_path_tmp1"` func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" fi } # end func_convert_path_cygwin_to_w32 # func_convert_path_nix_to_w32 ARG # Convert path ARG from *nix to w32 format. Requires a wine environment and # a working winepath. Returns result in func_to_host_file_result. func_convert_path_nix_to_w32 () { $opt_debug func_to_host_path_result="$1" if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" func_to_host_path_result="$func_convert_core_path_wine_to_w32_result" func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" fi } # end func_convert_path_nix_to_w32 # func_convert_path_msys_to_cygwin ARG # Convert path ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. # Returns result in func_to_host_file_result. func_convert_path_msys_to_cygwin () { $opt_debug func_to_host_path_result="$1" if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" func_cygpath -u -p "$func_convert_core_msys_to_w32_result" func_to_host_path_result="$func_cygpath_result" func_convert_path_check : : \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" : "$1" fi } # end func_convert_path_msys_to_cygwin # func_convert_path_nix_to_cygwin ARG # Convert path ARG from *nix to Cygwin format. Requires Cygwin installed in a # a wine environment, working winepath, and LT_CYGPATH set. Returns result in # func_to_host_file_result. func_convert_path_nix_to_cygwin () { $opt_debug func_to_host_path_result="$1" if test -n "$1"; then # Remove leading and trailing path separator characters from # ARG. msys behavior is inconsistent here, cygpath turns them # into '.;' and ';.', and winepath ignores them completely. func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" func_cygpath -u -p "$func_convert_core_path_wine_to_w32_result" func_to_host_path_result="$func_cygpath_result" func_convert_path_check : : \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" : "$1" fi } # end func_convert_path_nix_to_cygwin # func_mode_compile arg... func_mode_compile () { $opt_debug # Get the compilation command and the source file. base_compile= srcfile="$nonopt" # always keep a non-empty value in "srcfile" suppress_opt=yes suppress_output= arg_mode=normal libobj= later= pie_flag= for arg do case $arg_mode in arg ) # do not "continue". Instead, add this to base_compile lastarg="$arg" arg_mode=normal ;; target ) libobj="$arg" arg_mode=normal continue ;; normal ) # Accept any command-line options. case $arg in -o) test -n "$libobj" && \ func_fatal_error "you cannot specify \`-o' more than once" arg_mode=target continue ;; -pie | -fpie | -fPIE) func_append pie_flag " $arg" continue ;; -shared | -static | -prefer-pic | -prefer-non-pic) func_append later " $arg" continue ;; -no-suppress) suppress_opt=no continue ;; -Xcompiler) arg_mode=arg # the next one goes into the "base_compile" arg list continue # The current "srcfile" will either be retained or ;; # replaced later. I would guess that would be a bug. -Wc,*) func_stripname '-Wc,' '' "$arg" args=$func_stripname_result lastarg= save_ifs="$IFS"; IFS=',' for arg in $args; do IFS="$save_ifs" func_append_quoted lastarg "$arg" done IFS="$save_ifs" func_stripname ' ' '' "$lastarg" lastarg=$func_stripname_result # Add the arguments to base_compile. func_append base_compile " $lastarg" continue ;; *) # Accept the current argument as the source file. # The previous "srcfile" becomes the current argument. # lastarg="$srcfile" srcfile="$arg" ;; esac # case $arg ;; esac # case $arg_mode # Aesthetically quote the previous argument. func_append_quoted base_compile "$lastarg" done # for arg case $arg_mode in arg) func_fatal_error "you must specify an argument for -Xcompile" ;; target) func_fatal_error "you must specify a target with \`-o'" ;; *) # Get the name of the library object. test -z "$libobj" && { func_basename "$srcfile" libobj="$func_basename_result" } ;; esac # Recognize several different file suffixes. # If the user specifies -o file.o, it is replaced with file.lo case $libobj in *.[cCFSifmso] | \ *.ada | *.adb | *.ads | *.asm | \ *.c++ | *.cc | *.ii | *.class | *.cpp | *.cxx | \ *.[fF][09]? | *.for | *.java | *.obj | *.sx | *.cu | *.cup) func_xform "$libobj" libobj=$func_xform_result ;; esac case $libobj in *.lo) func_lo2o "$libobj"; obj=$func_lo2o_result ;; *) func_fatal_error "cannot determine name of library object from \`$libobj'" ;; esac func_infer_tag $base_compile for arg in $later; do case $arg in -shared) test "$build_libtool_libs" != yes && \ func_fatal_configuration "can not build a shared library" build_old_libs=no continue ;; -static) build_libtool_libs=no build_old_libs=yes continue ;; -prefer-pic) pic_mode=yes continue ;; -prefer-non-pic) pic_mode=no continue ;; esac done func_quote_for_eval "$libobj" test "X$libobj" != "X$func_quote_for_eval_result" \ && $ECHO "X$libobj" | $GREP '[]~#^*{};<>?"'"'"' &()|`$[]' \ && func_warning "libobj name \`$libobj' may not contain shell special characters." func_dirname_and_basename "$obj" "/" "" objname="$func_basename_result" xdir="$func_dirname_result" lobj=${xdir}$objdir/$objname test -z "$base_compile" && \ func_fatal_help "you must specify a compilation command" # Delete any leftover library objects. if test "$build_old_libs" = yes; then removelist="$obj $lobj $libobj ${libobj}T" else removelist="$lobj $libobj ${libobj}T" fi # On Cygwin there's no "real" PIC flag so we must build both object types case $host_os in cygwin* | mingw* | pw32* | os2* | cegcc*) pic_mode=default ;; esac if test "$pic_mode" = no && test "$deplibs_check_method" != pass_all; then # non-PIC code in shared libraries is not supported pic_mode=default fi # Calculate the filename of the output object if compiler does # not support -o with -c if test "$compiler_c_o" = no; then output_obj=`$ECHO "$srcfile" | $SED 's%^.*/%%; s%\.[^.]*$%%'`.${objext} lockfile="$output_obj.lock" else output_obj= need_locks=no lockfile= fi # Lock this critical section if it is needed # We use this script file to make the link, it avoids creating a new file if test "$need_locks" = yes; then until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do func_echo "Waiting for $lockfile to be removed" sleep 2 done elif test "$need_locks" = warn; then if test -f "$lockfile"; then $ECHO "\ *** ERROR, $lockfile exists and contains: `cat $lockfile 2>/dev/null` This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support \`-c' and \`-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $opt_dry_run || $RM $removelist exit $EXIT_FAILURE fi func_append removelist " $output_obj" $ECHO "$srcfile" > "$lockfile" fi $opt_dry_run || $RM $removelist func_append removelist " $lockfile" trap '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' 1 2 15 func_to_tool_file "$srcfile" func_convert_file_msys_to_w32 srcfile=$func_to_tool_file_result func_quote_for_eval "$srcfile" qsrcfile=$func_quote_for_eval_result # Only build a PIC object if we are building libtool libraries. if test "$build_libtool_libs" = yes; then # Without this assignment, base_compile gets emptied. fbsd_hideous_sh_bug=$base_compile if test "$pic_mode" != no; then command="$base_compile $qsrcfile $pic_flag" else # Don't build PIC code command="$base_compile $qsrcfile" fi func_mkdir_p "$xdir$objdir" if test -z "$output_obj"; then # Place PIC objects in $objdir func_append command " -o $lobj" fi func_show_eval_locale "$command" \ 'test -n "$output_obj" && $RM $removelist; exit $EXIT_FAILURE' if test "$need_locks" = warn && test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then $ECHO "\ *** ERROR, $lockfile contains: `cat $lockfile 2>/dev/null` but it should contain: $srcfile This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support \`-c' and \`-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $opt_dry_run || $RM $removelist exit $EXIT_FAILURE fi # Just move the object if needed, then go on to compile the next one if test -n "$output_obj" && test "X$output_obj" != "X$lobj"; then func_show_eval '$MV "$output_obj" "$lobj"' \ 'error=$?; $opt_dry_run || $RM $removelist; exit $error' fi # Allow error messages only from the first compilation. if test "$suppress_opt" = yes; then suppress_output=' >/dev/null 2>&1' fi fi # Only build a position-dependent object if we build old libraries. if test "$build_old_libs" = yes; then if test "$pic_mode" != yes; then # Don't build PIC code command="$base_compile $qsrcfile$pie_flag" else command="$base_compile $qsrcfile $pic_flag" fi if test "$compiler_c_o" = yes; then func_append command " -o $obj" fi # Suppress compiler output if we already did a PIC compilation. func_append command "$suppress_output" func_show_eval_locale "$command" \ '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' if test "$need_locks" = warn && test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then $ECHO "\ *** ERROR, $lockfile contains: `cat $lockfile 2>/dev/null` but it should contain: $srcfile This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support \`-c' and \`-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $opt_dry_run || $RM $removelist exit $EXIT_FAILURE fi # Just move the object if needed if test -n "$output_obj" && test "X$output_obj" != "X$obj"; then func_show_eval '$MV "$output_obj" "$obj"' \ 'error=$?; $opt_dry_run || $RM $removelist; exit $error' fi fi $opt_dry_run || { func_write_libtool_object "$libobj" "$objdir/$objname" "$objname" # Unlock the critical section if it was locked if test "$need_locks" != no; then removelist=$lockfile $RM "$lockfile" fi } exit $EXIT_SUCCESS } $opt_help || { test "$opt_mode" = compile && func_mode_compile ${1+"$@"} } func_mode_help () { # We need to display help for each of the modes. case $opt_mode in "") # Generic help is extracted from the usage comments # at the start of this file. func_help ;; clean) $ECHO \ "Usage: $progname [OPTION]... --mode=clean RM [RM-OPTION]... FILE... Remove files from the build directory. RM is the name of the program to use to delete files associated with each FILE (typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed to RM. If FILE is a libtool library, object or program, all the files associated with it are deleted. Otherwise, only FILE itself is deleted using RM." ;; compile) $ECHO \ "Usage: $progname [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE Compile a source file into a libtool library object. This mode accepts the following additional options: -o OUTPUT-FILE set the output file name to OUTPUT-FILE -no-suppress do not suppress compiler output for multiple passes -prefer-pic try to build PIC objects only -prefer-non-pic try to build non-PIC objects only -shared do not build a \`.o' file suitable for static linking -static only build a \`.o' file suitable for static linking -Wc,FLAG pass FLAG directly to the compiler COMPILE-COMMAND is a command to be used in creating a \`standard' object file from the given SOURCEFILE. The output file name is determined by removing the directory component from SOURCEFILE, then substituting the C source code suffix \`.c' with the library object suffix, \`.lo'." ;; execute) $ECHO \ "Usage: $progname [OPTION]... --mode=execute COMMAND [ARGS]... Automatically set library path, then run a program. This mode accepts the following additional options: -dlopen FILE add the directory containing FILE to the library path This mode sets the library path environment variable according to \`-dlopen' flags. If any of the ARGS are libtool executable wrappers, then they are translated into their corresponding uninstalled binary, and any of their required library directories are added to the library path. Then, COMMAND is executed, with ARGS as arguments." ;; finish) $ECHO \ "Usage: $progname [OPTION]... --mode=finish [LIBDIR]... Complete the installation of libtool libraries. Each LIBDIR is a directory that contains libtool libraries. The commands that this mode executes may require superuser privileges. Use the \`--dry-run' option if you just want to see what would be executed." ;; install) $ECHO \ "Usage: $progname [OPTION]... --mode=install INSTALL-COMMAND... Install executables or libraries. INSTALL-COMMAND is the installation command. The first component should be either the \`install' or \`cp' program. The following components of INSTALL-COMMAND are treated specially: -inst-prefix-dir PREFIX-DIR Use PREFIX-DIR as a staging area for installation The rest of the components are interpreted as arguments to that command (only BSD-compatible install options are recognized)." ;; link) $ECHO \ "Usage: $progname [OPTION]... --mode=link LINK-COMMAND... Link object files or libraries together to form another library, or to create an executable program. LINK-COMMAND is a command using the C compiler that you would use to create a program from several object files. The following components of LINK-COMMAND are treated specially: -all-static do not do any dynamic linking at all -avoid-version do not add a version suffix if possible -bindir BINDIR specify path to binaries directory (for systems where libraries must be found in the PATH setting at runtime) -dlopen FILE \`-dlpreopen' FILE if it cannot be dlopened at runtime -dlpreopen FILE link in FILE and add its symbols to lt_preloaded_symbols -export-dynamic allow symbols from OUTPUT-FILE to be resolved with dlsym(3) -export-symbols SYMFILE try to export only the symbols listed in SYMFILE -export-symbols-regex REGEX try to export only the symbols matching REGEX -LLIBDIR search LIBDIR for required installed libraries -lNAME OUTPUT-FILE requires the installed library libNAME -module build a library that can dlopened -no-fast-install disable the fast-install mode -no-install link a not-installable executable -no-undefined declare that a library does not refer to external symbols -o OUTPUT-FILE create OUTPUT-FILE from the specified objects -objectlist FILE Use a list of object files found in FILE to specify objects -precious-files-regex REGEX don't remove output files matching REGEX -release RELEASE specify package release information -rpath LIBDIR the created library will eventually be installed in LIBDIR -R[ ]LIBDIR add LIBDIR to the runtime path of programs and libraries -shared only do dynamic linking of libtool libraries -shrext SUFFIX override the standard shared library file extension -static do not do any dynamic linking of uninstalled libtool libraries -static-libtool-libs do not do any dynamic linking of libtool libraries -version-info CURRENT[:REVISION[:AGE]] specify library version info [each variable defaults to 0] -weak LIBNAME declare that the target provides the LIBNAME interface -Wc,FLAG -Xcompiler FLAG pass linker-specific FLAG directly to the compiler -Wl,FLAG -Xlinker FLAG pass linker-specific FLAG directly to the linker -XCClinker FLAG pass link-specific FLAG to the compiler driver (CC) All other options (arguments beginning with \`-') are ignored. Every other argument is treated as a filename. Files ending in \`.la' are treated as uninstalled libtool libraries, other files are standard or library object files. If the OUTPUT-FILE ends in \`.la', then a libtool library is created, only library objects (\`.lo' files) may be specified, and \`-rpath' is required, except when creating a convenience library. If OUTPUT-FILE ends in \`.a' or \`.lib', then a standard library is created using \`ar' and \`ranlib', or on Windows using \`lib'. If OUTPUT-FILE ends in \`.lo' or \`.${objext}', then a reloadable object file is created, otherwise an executable program is created." ;; uninstall) $ECHO \ "Usage: $progname [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE... Remove libraries from an installation directory. RM is the name of the program to use to delete files associated with each FILE (typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed to RM. If FILE is a libtool library, all the files associated with it are deleted. Otherwise, only FILE itself is deleted using RM." ;; *) func_fatal_help "invalid operation mode \`$opt_mode'" ;; esac echo $ECHO "Try \`$progname --help' for more information about other modes." } # Now that we've collected a possible --mode arg, show help if necessary if $opt_help; then if test "$opt_help" = :; then func_mode_help else { func_help noexit for opt_mode in compile link execute install finish uninstall clean; do func_mode_help done } | sed -n '1p; 2,$s/^Usage:/ or: /p' { func_help noexit for opt_mode in compile link execute install finish uninstall clean; do echo func_mode_help done } | sed '1d /^When reporting/,/^Report/{ H d } $x /information about other modes/d /more detailed .*MODE/d s/^Usage:.*--mode=\([^ ]*\) .*/Description of \1 mode:/' fi exit $? fi # func_mode_execute arg... func_mode_execute () { $opt_debug # The first argument is the command name. cmd="$nonopt" test -z "$cmd" && \ func_fatal_help "you must specify a COMMAND" # Handle -dlopen flags immediately. for file in $opt_dlopen; do test -f "$file" \ || func_fatal_help "\`$file' is not a file" dir= case $file in *.la) func_resolve_sysroot "$file" file=$func_resolve_sysroot_result # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$file" \ || func_fatal_help "\`$lib' is not a valid libtool archive" # Read the libtool library. dlname= library_names= func_source "$file" # Skip this library if it cannot be dlopened. if test -z "$dlname"; then # Warn if it was a shared library. test -n "$library_names" && \ func_warning "\`$file' was not linked with \`-export-dynamic'" continue fi func_dirname "$file" "" "." dir="$func_dirname_result" if test -f "$dir/$objdir/$dlname"; then func_append dir "/$objdir" else if test ! -f "$dir/$dlname"; then func_fatal_error "cannot find \`$dlname' in \`$dir' or \`$dir/$objdir'" fi fi ;; *.lo) # Just add the directory containing the .lo file. func_dirname "$file" "" "." dir="$func_dirname_result" ;; *) func_warning "\`-dlopen' is ignored for non-libtool libraries and objects" continue ;; esac # Get the absolute pathname. absdir=`cd "$dir" && pwd` test -n "$absdir" && dir="$absdir" # Now add the directory to shlibpath_var. if eval "test -z \"\$$shlibpath_var\""; then eval "$shlibpath_var=\"\$dir\"" else eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\"" fi done # This variable tells wrapper scripts just to set shlibpath_var # rather than running their programs. libtool_execute_magic="$magic" # Check if any of the arguments is a wrapper script. args= for file do case $file in -* | *.la | *.lo ) ;; *) # Do a test to see if this is really a libtool program. if func_ltwrapper_script_p "$file"; then func_source "$file" # Transform arg to wrapped name. file="$progdir/$program" elif func_ltwrapper_executable_p "$file"; then func_ltwrapper_scriptname "$file" func_source "$func_ltwrapper_scriptname_result" # Transform arg to wrapped name. file="$progdir/$program" fi ;; esac # Quote arguments (to preserve shell metacharacters). func_append_quoted args "$file" done if test "X$opt_dry_run" = Xfalse; then if test -n "$shlibpath_var"; then # Export the shlibpath_var. eval "export $shlibpath_var" fi # Restore saved environment variables for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES do eval "if test \"\${save_$lt_var+set}\" = set; then $lt_var=\$save_$lt_var; export $lt_var else $lt_unset $lt_var fi" done # Now prepare to actually exec the command. exec_cmd="\$cmd$args" else # Display what would be done. if test -n "$shlibpath_var"; then eval "\$ECHO \"\$shlibpath_var=\$$shlibpath_var\"" echo "export $shlibpath_var" fi $ECHO "$cmd$args" exit $EXIT_SUCCESS fi } test "$opt_mode" = execute && func_mode_execute ${1+"$@"} # func_mode_finish arg... func_mode_finish () { $opt_debug libs= libdirs= admincmds= for opt in "$nonopt" ${1+"$@"} do if test -d "$opt"; then func_append libdirs " $opt" elif test -f "$opt"; then if func_lalib_unsafe_p "$opt"; then func_append libs " $opt" else func_warning "\`$opt' is not a valid libtool archive" fi else func_fatal_error "invalid argument \`$opt'" fi done if test -n "$libs"; then if test -n "$lt_sysroot"; then sysroot_regex=`$ECHO "$lt_sysroot" | $SED "$sed_make_literal_regex"` sysroot_cmd="s/\([ ']\)$sysroot_regex/\1/g;" else sysroot_cmd= fi # Remove sysroot references if $opt_dry_run; then for lib in $libs; do echo "removing references to $lt_sysroot and \`=' prefixes from $lib" done else tmpdir=`func_mktempdir` for lib in $libs; do sed -e "${sysroot_cmd} s/\([ ']-[LR]\)=/\1/g; s/\([ ']\)=/\1/g" $lib \ > $tmpdir/tmp-la mv -f $tmpdir/tmp-la $lib done ${RM}r "$tmpdir" fi fi if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then for libdir in $libdirs; do if test -n "$finish_cmds"; then # Do each command in the finish commands. func_execute_cmds "$finish_cmds" 'admincmds="$admincmds '"$cmd"'"' fi if test -n "$finish_eval"; then # Do the single finish_eval. eval cmds=\"$finish_eval\" $opt_dry_run || eval "$cmds" || func_append admincmds " $cmds" fi done fi # Exit here if they wanted silent mode. $opt_silent && exit $EXIT_SUCCESS if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then echo "----------------------------------------------------------------------" echo "Libraries have been installed in:" for libdir in $libdirs; do $ECHO " $libdir" done echo echo "If you ever happen to want to link against installed libraries" echo "in a given directory, LIBDIR, you must either use libtool, and" echo "specify the full pathname of the library, or use the \`-LLIBDIR'" echo "flag during linking and do at least one of the following:" if test -n "$shlibpath_var"; then echo " - add LIBDIR to the \`$shlibpath_var' environment variable" echo " during execution" fi if test -n "$runpath_var"; then echo " - add LIBDIR to the \`$runpath_var' environment variable" echo " during linking" fi if test -n "$hardcode_libdir_flag_spec"; then libdir=LIBDIR eval flag=\"$hardcode_libdir_flag_spec\" $ECHO " - use the \`$flag' linker flag" fi if test -n "$admincmds"; then $ECHO " - have your system administrator run these commands:$admincmds" fi if test -f /etc/ld.so.conf; then echo " - have your system administrator add LIBDIR to \`/etc/ld.so.conf'" fi echo echo "See any operating system documentation about shared libraries for" case $host in solaris2.[6789]|solaris2.1[0-9]) echo "more information, such as the ld(1), crle(1) and ld.so(8) manual" echo "pages." ;; *) echo "more information, such as the ld(1) and ld.so(8) manual pages." ;; esac echo "----------------------------------------------------------------------" fi exit $EXIT_SUCCESS } test "$opt_mode" = finish && func_mode_finish ${1+"$@"} # func_mode_install arg... func_mode_install () { $opt_debug # There may be an optional sh(1) argument at the beginning of # install_prog (especially on Windows NT). if test "$nonopt" = "$SHELL" || test "$nonopt" = /bin/sh || # Allow the use of GNU shtool's install command. case $nonopt in *shtool*) :;; *) false;; esac; then # Aesthetically quote it. func_quote_for_eval "$nonopt" install_prog="$func_quote_for_eval_result " arg=$1 shift else install_prog= arg=$nonopt fi # The real first argument should be the name of the installation program. # Aesthetically quote it. func_quote_for_eval "$arg" func_append install_prog "$func_quote_for_eval_result" install_shared_prog=$install_prog case " $install_prog " in *[\\\ /]cp\ *) install_cp=: ;; *) install_cp=false ;; esac # We need to accept at least all the BSD install flags. dest= files= opts= prev= install_type= isdir=no stripme= no_mode=: for arg do arg2= if test -n "$dest"; then func_append files " $dest" dest=$arg continue fi case $arg in -d) isdir=yes ;; -f) if $install_cp; then :; else prev=$arg fi ;; -g | -m | -o) prev=$arg ;; -s) stripme=" -s" continue ;; -*) ;; *) # If the previous option needed an argument, then skip it. if test -n "$prev"; then if test "x$prev" = x-m && test -n "$install_override_mode"; then arg2=$install_override_mode no_mode=false fi prev= else dest=$arg continue fi ;; esac # Aesthetically quote the argument. func_quote_for_eval "$arg" func_append install_prog " $func_quote_for_eval_result" if test -n "$arg2"; then func_quote_for_eval "$arg2" fi func_append install_shared_prog " $func_quote_for_eval_result" done test -z "$install_prog" && \ func_fatal_help "you must specify an install program" test -n "$prev" && \ func_fatal_help "the \`$prev' option requires an argument" if test -n "$install_override_mode" && $no_mode; then if $install_cp; then :; else func_quote_for_eval "$install_override_mode" func_append install_shared_prog " -m $func_quote_for_eval_result" fi fi if test -z "$files"; then if test -z "$dest"; then func_fatal_help "no file or destination specified" else func_fatal_help "you must specify a destination" fi fi # Strip any trailing slash from the destination. func_stripname '' '/' "$dest" dest=$func_stripname_result # Check to see that the destination is a directory. test -d "$dest" && isdir=yes if test "$isdir" = yes; then destdir="$dest" destname= else func_dirname_and_basename "$dest" "" "." destdir="$func_dirname_result" destname="$func_basename_result" # Not a directory, so check to see that there is only one file specified. set dummy $files; shift test "$#" -gt 1 && \ func_fatal_help "\`$dest' is not a directory" fi case $destdir in [\\/]* | [A-Za-z]:[\\/]*) ;; *) for file in $files; do case $file in *.lo) ;; *) func_fatal_help "\`$destdir' must be an absolute directory name" ;; esac done ;; esac # This variable tells wrapper scripts just to set variables rather # than running their programs. libtool_install_magic="$magic" staticlibs= future_libdirs= current_libdirs= for file in $files; do # Do each installation. case $file in *.$libext) # Do the static libraries later. func_append staticlibs " $file" ;; *.la) func_resolve_sysroot "$file" file=$func_resolve_sysroot_result # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$file" \ || func_fatal_help "\`$file' is not a valid libtool archive" library_names= old_library= relink_command= func_source "$file" # Add the libdir to current_libdirs if it is the destination. if test "X$destdir" = "X$libdir"; then case "$current_libdirs " in *" $libdir "*) ;; *) func_append current_libdirs " $libdir" ;; esac else # Note the libdir as a future libdir. case "$future_libdirs " in *" $libdir "*) ;; *) func_append future_libdirs " $libdir" ;; esac fi func_dirname "$file" "/" "" dir="$func_dirname_result" func_append dir "$objdir" if test -n "$relink_command"; then # Determine the prefix the user has applied to our future dir. inst_prefix_dir=`$ECHO "$destdir" | $SED -e "s%$libdir\$%%"` # Don't allow the user to place us outside of our expected # location b/c this prevents finding dependent libraries that # are installed to the same prefix. # At present, this check doesn't affect windows .dll's that # are installed into $libdir/../bin (currently, that works fine) # but it's something to keep an eye on. test "$inst_prefix_dir" = "$destdir" && \ func_fatal_error "error: cannot install \`$file' to a directory not ending in $libdir" if test -n "$inst_prefix_dir"; then # Stick the inst_prefix_dir data into the link command. relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%"` else relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%%"` fi func_warning "relinking \`$file'" func_show_eval "$relink_command" \ 'func_fatal_error "error: relink \`$file'\'' with the above command before installing it"' fi # See the names of the shared library. set dummy $library_names; shift if test -n "$1"; then realname="$1" shift srcname="$realname" test -n "$relink_command" && srcname="$realname"T # Install the shared library and build the symlinks. func_show_eval "$install_shared_prog $dir/$srcname $destdir/$realname" \ 'exit $?' tstripme="$stripme" case $host_os in cygwin* | mingw* | pw32* | cegcc*) case $realname in *.dll.a) tstripme="" ;; esac ;; esac if test -n "$tstripme" && test -n "$striplib"; then func_show_eval "$striplib $destdir/$realname" 'exit $?' fi if test "$#" -gt 0; then # Delete the old symlinks, and create new ones. # Try `ln -sf' first, because the `ln' binary might depend on # the symlink we replace! Solaris /bin/ln does not understand -f, # so we also need to try rm && ln -s. for linkname do test "$linkname" != "$realname" \ && func_show_eval "(cd $destdir && { $LN_S -f $realname $linkname || { $RM $linkname && $LN_S $realname $linkname; }; })" done fi # Do each command in the postinstall commands. lib="$destdir/$realname" func_execute_cmds "$postinstall_cmds" 'exit $?' fi # Install the pseudo-library for information purposes. func_basename "$file" name="$func_basename_result" instname="$dir/$name"i func_show_eval "$install_prog $instname $destdir/$name" 'exit $?' # Maybe install the static library, too. test -n "$old_library" && func_append staticlibs " $dir/$old_library" ;; *.lo) # Install (i.e. copy) a libtool object. # Figure out destination file name, if it wasn't already specified. if test -n "$destname"; then destfile="$destdir/$destname" else func_basename "$file" destfile="$func_basename_result" destfile="$destdir/$destfile" fi # Deduce the name of the destination old-style object file. case $destfile in *.lo) func_lo2o "$destfile" staticdest=$func_lo2o_result ;; *.$objext) staticdest="$destfile" destfile= ;; *) func_fatal_help "cannot copy a libtool object to \`$destfile'" ;; esac # Install the libtool object if requested. test -n "$destfile" && \ func_show_eval "$install_prog $file $destfile" 'exit $?' # Install the old object if enabled. if test "$build_old_libs" = yes; then # Deduce the name of the old-style object file. func_lo2o "$file" staticobj=$func_lo2o_result func_show_eval "$install_prog \$staticobj \$staticdest" 'exit $?' fi exit $EXIT_SUCCESS ;; *) # Figure out destination file name, if it wasn't already specified. if test -n "$destname"; then destfile="$destdir/$destname" else func_basename "$file" destfile="$func_basename_result" destfile="$destdir/$destfile" fi # If the file is missing, and there is a .exe on the end, strip it # because it is most likely a libtool script we actually want to # install stripped_ext="" case $file in *.exe) if test ! -f "$file"; then func_stripname '' '.exe' "$file" file=$func_stripname_result stripped_ext=".exe" fi ;; esac # Do a test to see if this is really a libtool program. case $host in *cygwin* | *mingw*) if func_ltwrapper_executable_p "$file"; then func_ltwrapper_scriptname "$file" wrapper=$func_ltwrapper_scriptname_result else func_stripname '' '.exe' "$file" wrapper=$func_stripname_result fi ;; *) wrapper=$file ;; esac if func_ltwrapper_script_p "$wrapper"; then notinst_deplibs= relink_command= func_source "$wrapper" # Check the variables that should have been set. test -z "$generated_by_libtool_version" && \ func_fatal_error "invalid libtool wrapper script \`$wrapper'" finalize=yes for lib in $notinst_deplibs; do # Check to see that each library is installed. libdir= if test -f "$lib"; then func_source "$lib" fi libfile="$libdir/"`$ECHO "$lib" | $SED 's%^.*/%%g'` ### testsuite: skip nested quoting test if test -n "$libdir" && test ! -f "$libfile"; then func_warning "\`$lib' has not been installed in \`$libdir'" finalize=no fi done relink_command= func_source "$wrapper" outputname= if test "$fast_install" = no && test -n "$relink_command"; then $opt_dry_run || { if test "$finalize" = yes; then tmpdir=`func_mktempdir` func_basename "$file$stripped_ext" file="$func_basename_result" outputname="$tmpdir/$file" # Replace the output file specification. relink_command=`$ECHO "$relink_command" | $SED 's%@OUTPUT@%'"$outputname"'%g'` $opt_silent || { func_quote_for_expand "$relink_command" eval "func_echo $func_quote_for_expand_result" } if eval "$relink_command"; then : else func_error "error: relink \`$file' with the above command before installing it" $opt_dry_run || ${RM}r "$tmpdir" continue fi file="$outputname" else func_warning "cannot relink \`$file'" fi } else # Install the binary that we compiled earlier. file=`$ECHO "$file$stripped_ext" | $SED "s%\([^/]*\)$%$objdir/\1%"` fi fi # remove .exe since cygwin /usr/bin/install will append another # one anyway case $install_prog,$host in */usr/bin/install*,*cygwin*) case $file:$destfile in *.exe:*.exe) # this is ok ;; *.exe:*) destfile=$destfile.exe ;; *:*.exe) func_stripname '' '.exe' "$destfile" destfile=$func_stripname_result ;; esac ;; esac func_show_eval "$install_prog\$stripme \$file \$destfile" 'exit $?' $opt_dry_run || if test -n "$outputname"; then ${RM}r "$tmpdir" fi ;; esac done for file in $staticlibs; do func_basename "$file" name="$func_basename_result" # Set up the ranlib parameters. oldlib="$destdir/$name" func_show_eval "$install_prog \$file \$oldlib" 'exit $?' if test -n "$stripme" && test -n "$old_striplib"; then func_show_eval "$old_striplib $oldlib" 'exit $?' fi # Do each command in the postinstall commands. func_execute_cmds "$old_postinstall_cmds" 'exit $?' done test -n "$future_libdirs" && \ func_warning "remember to run \`$progname --finish$future_libdirs'" if test -n "$current_libdirs"; then # Maybe just do a dry run. $opt_dry_run && current_libdirs=" -n$current_libdirs" exec_cmd='$SHELL $progpath $preserve_args --finish$current_libdirs' else exit $EXIT_SUCCESS fi } test "$opt_mode" = install && func_mode_install ${1+"$@"} # func_generate_dlsyms outputname originator pic_p # Extract symbols from dlprefiles and create ${outputname}S.o with # a dlpreopen symbol table. func_generate_dlsyms () { $opt_debug my_outputname="$1" my_originator="$2" my_pic_p="${3-no}" my_prefix=`$ECHO "$my_originator" | sed 's%[^a-zA-Z0-9]%_%g'` my_dlsyms= if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then if test -n "$NM" && test -n "$global_symbol_pipe"; then my_dlsyms="${my_outputname}S.c" else func_error "not configured to extract global symbols from dlpreopened files" fi fi if test -n "$my_dlsyms"; then case $my_dlsyms in "") ;; *.c) # Discover the nlist of each of the dlfiles. nlist="$output_objdir/${my_outputname}.nm" func_show_eval "$RM $nlist ${nlist}S ${nlist}T" # Parse the name list into a source file. func_verbose "creating $output_objdir/$my_dlsyms" $opt_dry_run || $ECHO > "$output_objdir/$my_dlsyms" "\ /* $my_dlsyms - symbol resolution table for \`$my_outputname' dlsym emulation. */ /* Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION */ #ifdef __cplusplus extern \"C\" { #endif #if defined(__GNUC__) && (((__GNUC__ == 4) && (__GNUC_MINOR__ >= 4)) || (__GNUC__ > 4)) #pragma GCC diagnostic ignored \"-Wstrict-prototypes\" #endif /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ #if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE) /* DATA imports from DLLs on WIN32 con't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs. */ # define LT_DLSYM_CONST #elif defined(__osf__) /* This system does not cope well with relocations in const data. */ # define LT_DLSYM_CONST #else # define LT_DLSYM_CONST const #endif /* External symbol declarations for the compiler. */\ " if test "$dlself" = yes; then func_verbose "generating symbol list for \`$output'" $opt_dry_run || echo ': @PROGRAM@ ' > "$nlist" # Add our own program objects to the symbol list. progfiles=`$ECHO "$objs$old_deplibs" | $SP2NL | $SED "$lo2o" | $NL2SP` for progfile in $progfiles; do func_to_tool_file "$progfile" func_convert_file_msys_to_w32 func_verbose "extracting global C symbols from \`$func_to_tool_file_result'" $opt_dry_run || eval "$NM $func_to_tool_file_result | $global_symbol_pipe >> '$nlist'" done if test -n "$exclude_expsyms"; then $opt_dry_run || { eval '$EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T' eval '$MV "$nlist"T "$nlist"' } fi if test -n "$export_symbols_regex"; then $opt_dry_run || { eval '$EGREP -e "$export_symbols_regex" "$nlist" > "$nlist"T' eval '$MV "$nlist"T "$nlist"' } fi # Prepare the list of exported symbols if test -z "$export_symbols"; then export_symbols="$output_objdir/$outputname.exp" $opt_dry_run || { $RM $export_symbols eval "${SED} -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"' case $host in *cygwin* | *mingw* | *cegcc* ) eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' eval 'cat "$export_symbols" >> "$output_objdir/$outputname.def"' ;; esac } else $opt_dry_run || { eval "${SED} -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"' eval '$GREP -f "$output_objdir/$outputname.exp" < "$nlist" > "$nlist"T' eval '$MV "$nlist"T "$nlist"' case $host in *cygwin* | *mingw* | *cegcc* ) eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' eval 'cat "$nlist" >> "$output_objdir/$outputname.def"' ;; esac } fi fi for dlprefile in $dlprefiles; do func_verbose "extracting global C symbols from \`$dlprefile'" func_basename "$dlprefile" name="$func_basename_result" case $host in *cygwin* | *mingw* | *cegcc* ) # if an import library, we need to obtain dlname if func_win32_import_lib_p "$dlprefile"; then func_tr_sh "$dlprefile" eval "curr_lafile=\$libfile_$func_tr_sh_result" dlprefile_dlbasename="" if test -n "$curr_lafile" && func_lalib_p "$curr_lafile"; then # Use subshell, to avoid clobbering current variable values dlprefile_dlname=`source "$curr_lafile" && echo "$dlname"` if test -n "$dlprefile_dlname" ; then func_basename "$dlprefile_dlname" dlprefile_dlbasename="$func_basename_result" else # no lafile. user explicitly requested -dlpreopen . $sharedlib_from_linklib_cmd "$dlprefile" dlprefile_dlbasename=$sharedlib_from_linklib_result fi fi $opt_dry_run || { if test -n "$dlprefile_dlbasename" ; then eval '$ECHO ": $dlprefile_dlbasename" >> "$nlist"' else func_warning "Could not compute DLL name from $name" eval '$ECHO ": $name " >> "$nlist"' fi func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe | $SED -e '/I __imp/d' -e 's/I __nm_/D /;s/_nm__//' >> '$nlist'" } else # not an import lib $opt_dry_run || { eval '$ECHO ": $name " >> "$nlist"' func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" } fi ;; *) $opt_dry_run || { eval '$ECHO ": $name " >> "$nlist"' func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" } ;; esac done $opt_dry_run || { # Make sure we have at least an empty file. test -f "$nlist" || : > "$nlist" if test -n "$exclude_expsyms"; then $EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T $MV "$nlist"T "$nlist" fi # Try sorting and uniquifying the output. if $GREP -v "^: " < "$nlist" | if sort -k 3 /dev/null 2>&1; then sort -k 3 else sort +2 fi | uniq > "$nlist"S; then : else $GREP -v "^: " < "$nlist" > "$nlist"S fi if test -f "$nlist"S; then eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$my_dlsyms"' else echo '/* NONE */' >> "$output_objdir/$my_dlsyms" fi echo >> "$output_objdir/$my_dlsyms" "\ /* The mapping between symbol names and symbols. */ typedef struct { const char *name; void *address; } lt_dlsymlist; extern LT_DLSYM_CONST lt_dlsymlist lt_${my_prefix}_LTX_preloaded_symbols[]; LT_DLSYM_CONST lt_dlsymlist lt_${my_prefix}_LTX_preloaded_symbols[] = {\ { \"$my_originator\", (void *) 0 }," case $need_lib_prefix in no) eval "$global_symbol_to_c_name_address" < "$nlist" >> "$output_objdir/$my_dlsyms" ;; *) eval "$global_symbol_to_c_name_address_lib_prefix" < "$nlist" >> "$output_objdir/$my_dlsyms" ;; esac echo >> "$output_objdir/$my_dlsyms" "\ {0, (void *) 0} }; /* This works around a problem in FreeBSD linker */ #ifdef FREEBSD_WORKAROUND static const void *lt_preloaded_setup() { return lt_${my_prefix}_LTX_preloaded_symbols; } #endif #ifdef __cplusplus } #endif\ " } # !$opt_dry_run pic_flag_for_symtable= case "$compile_command " in *" -static "*) ;; *) case $host in # compiling the symbol table file with pic_flag works around # a FreeBSD bug that causes programs to crash when -lm is # linked before any other PIC object. But we must not use # pic_flag when linking with -static. The problem exists in # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1. *-*-freebsd2*|*-*-freebsd3.0*|*-*-freebsdelf3.0*) pic_flag_for_symtable=" $pic_flag -DFREEBSD_WORKAROUND" ;; *-*-hpux*) pic_flag_for_symtable=" $pic_flag" ;; *) if test "X$my_pic_p" != Xno; then pic_flag_for_symtable=" $pic_flag" fi ;; esac ;; esac symtab_cflags= for arg in $LTCFLAGS; do case $arg in -pie | -fpie | -fPIE) ;; *) func_append symtab_cflags " $arg" ;; esac done # Now compile the dynamic symbol file. func_show_eval '(cd $output_objdir && $LTCC$symtab_cflags -c$no_builtin_flag$pic_flag_for_symtable "$my_dlsyms")' 'exit $?' # Clean up the generated files. func_show_eval '$RM "$output_objdir/$my_dlsyms" "$nlist" "${nlist}S" "${nlist}T"' # Transform the symbol file into the correct name. symfileobj="$output_objdir/${my_outputname}S.$objext" case $host in *cygwin* | *mingw* | *cegcc* ) if test -f "$output_objdir/$my_outputname.def"; then compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` else compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` fi ;; *) compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` ;; esac ;; *) func_fatal_error "unknown suffix for \`$my_dlsyms'" ;; esac else # We keep going just in case the user didn't refer to # lt_preloaded_symbols. The linker will fail if global_symbol_pipe # really was required. # Nullify the symbol file. compile_command=`$ECHO "$compile_command" | $SED "s% @SYMFILE@%%"` finalize_command=`$ECHO "$finalize_command" | $SED "s% @SYMFILE@%%"` fi } # func_win32_libid arg # return the library type of file 'arg' # # Need a lot of goo to handle *both* DLLs and import libs # Has to be a shell function in order to 'eat' the argument # that is supplied when $file_magic_command is called. # Despite the name, also deal with 64 bit binaries. func_win32_libid () { $opt_debug win32_libid_type="unknown" win32_fileres=`file -L $1 2>/dev/null` case $win32_fileres in *ar\ archive\ import\ library*) # definitely import win32_libid_type="x86 archive import" ;; *ar\ archive*) # could be an import, or static # Keep the egrep pattern in sync with the one in _LT_CHECK_MAGIC_METHOD. if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null | $EGREP 'file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' >/dev/null; then func_to_tool_file "$1" func_convert_file_msys_to_w32 win32_nmres=`eval $NM -f posix -A \"$func_to_tool_file_result\" | $SED -n -e ' 1,100{ / I /{ s,.*,import, p q } }'` case $win32_nmres in import*) win32_libid_type="x86 archive import";; *) win32_libid_type="x86 archive static";; esac fi ;; *DLL*) win32_libid_type="x86 DLL" ;; *executable*) # but shell scripts are "executable" too... case $win32_fileres in *MS\ Windows\ PE\ Intel*) win32_libid_type="x86 DLL" ;; esac ;; esac $ECHO "$win32_libid_type" } # func_cygming_dll_for_implib ARG # # Platform-specific function to extract the # name of the DLL associated with the specified # import library ARG. # Invoked by eval'ing the libtool variable # $sharedlib_from_linklib_cmd # Result is available in the variable # $sharedlib_from_linklib_result func_cygming_dll_for_implib () { $opt_debug sharedlib_from_linklib_result=`$DLLTOOL --identify-strict --identify "$1"` } # func_cygming_dll_for_implib_fallback_core SECTION_NAME LIBNAMEs # # The is the core of a fallback implementation of a # platform-specific function to extract the name of the # DLL associated with the specified import library LIBNAME. # # SECTION_NAME is either .idata$6 or .idata$7, depending # on the platform and compiler that created the implib. # # Echos the name of the DLL associated with the # specified import library. func_cygming_dll_for_implib_fallback_core () { $opt_debug match_literal=`$ECHO "$1" | $SED "$sed_make_literal_regex"` $OBJDUMP -s --section "$1" "$2" 2>/dev/null | $SED '/^Contents of section '"$match_literal"':/{ # Place marker at beginning of archive member dllname section s/.*/====MARK====/ p d } # These lines can sometimes be longer than 43 characters, but # are always uninteresting /:[ ]*file format pe[i]\{,1\}-/d /^In archive [^:]*:/d # Ensure marker is printed /^====MARK====/p # Remove all lines with less than 43 characters /^.\{43\}/!d # From remaining lines, remove first 43 characters s/^.\{43\}//' | $SED -n ' # Join marker and all lines until next marker into a single line /^====MARK====/ b para H $ b para b :para x s/\n//g # Remove the marker s/^====MARK====// # Remove trailing dots and whitespace s/[\. \t]*$// # Print /./p' | # we now have a list, one entry per line, of the stringified # contents of the appropriate section of all members of the # archive which possess that section. Heuristic: eliminate # all those which have a first or second character that is # a '.' (that is, objdump's representation of an unprintable # character.) This should work for all archives with less than # 0x302f exports -- but will fail for DLLs whose name actually # begins with a literal '.' or a single character followed by # a '.'. # # Of those that remain, print the first one. $SED -e '/^\./d;/^.\./d;q' } # func_cygming_gnu_implib_p ARG # This predicate returns with zero status (TRUE) if # ARG is a GNU/binutils-style import library. Returns # with nonzero status (FALSE) otherwise. func_cygming_gnu_implib_p () { $opt_debug func_to_tool_file "$1" func_convert_file_msys_to_w32 func_cygming_gnu_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $EGREP ' (_head_[A-Za-z0-9_]+_[ad]l*|[A-Za-z0-9_]+_[ad]l*_iname)$'` test -n "$func_cygming_gnu_implib_tmp" } # func_cygming_ms_implib_p ARG # This predicate returns with zero status (TRUE) if # ARG is an MS-style import library. Returns # with nonzero status (FALSE) otherwise. func_cygming_ms_implib_p () { $opt_debug func_to_tool_file "$1" func_convert_file_msys_to_w32 func_cygming_ms_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $GREP '_NULL_IMPORT_DESCRIPTOR'` test -n "$func_cygming_ms_implib_tmp" } # func_cygming_dll_for_implib_fallback ARG # Platform-specific function to extract the # name of the DLL associated with the specified # import library ARG. # # This fallback implementation is for use when $DLLTOOL # does not support the --identify-strict option. # Invoked by eval'ing the libtool variable # $sharedlib_from_linklib_cmd # Result is available in the variable # $sharedlib_from_linklib_result func_cygming_dll_for_implib_fallback () { $opt_debug if func_cygming_gnu_implib_p "$1" ; then # binutils import library sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$7' "$1"` elif func_cygming_ms_implib_p "$1" ; then # ms-generated import library sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$6' "$1"` else # unknown sharedlib_from_linklib_result="" fi } # func_extract_an_archive dir oldlib func_extract_an_archive () { $opt_debug f_ex_an_ar_dir="$1"; shift f_ex_an_ar_oldlib="$1" if test "$lock_old_archive_extraction" = yes; then lockfile=$f_ex_an_ar_oldlib.lock until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do func_echo "Waiting for $lockfile to be removed" sleep 2 done fi func_show_eval "(cd \$f_ex_an_ar_dir && $AR x \"\$f_ex_an_ar_oldlib\")" \ 'stat=$?; rm -f "$lockfile"; exit $stat' if test "$lock_old_archive_extraction" = yes; then $opt_dry_run || rm -f "$lockfile" fi if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then : else func_fatal_error "object name conflicts in archive: $f_ex_an_ar_dir/$f_ex_an_ar_oldlib" fi } # func_extract_archives gentop oldlib ... func_extract_archives () { $opt_debug my_gentop="$1"; shift my_oldlibs=${1+"$@"} my_oldobjs="" my_xlib="" my_xabs="" my_xdir="" for my_xlib in $my_oldlibs; do # Extract the objects. case $my_xlib in [\\/]* | [A-Za-z]:[\\/]*) my_xabs="$my_xlib" ;; *) my_xabs=`pwd`"/$my_xlib" ;; esac func_basename "$my_xlib" my_xlib="$func_basename_result" my_xlib_u=$my_xlib while :; do case " $extracted_archives " in *" $my_xlib_u "*) func_arith $extracted_serial + 1 extracted_serial=$func_arith_result my_xlib_u=lt$extracted_serial-$my_xlib ;; *) break ;; esac done extracted_archives="$extracted_archives $my_xlib_u" my_xdir="$my_gentop/$my_xlib_u" func_mkdir_p "$my_xdir" case $host in *-darwin*) func_verbose "Extracting $my_xabs" # Do not bother doing anything if just a dry run $opt_dry_run || { darwin_orig_dir=`pwd` cd $my_xdir || exit $? darwin_archive=$my_xabs darwin_curdir=`pwd` darwin_base_archive=`basename "$darwin_archive"` darwin_arches=`$LIPO -info "$darwin_archive" 2>/dev/null | $GREP Architectures 2>/dev/null || true` if test -n "$darwin_arches"; then darwin_arches=`$ECHO "$darwin_arches" | $SED -e 's/.*are://'` darwin_arch= func_verbose "$darwin_base_archive has multiple architectures $darwin_arches" for darwin_arch in $darwin_arches ; do func_mkdir_p "unfat-$$/${darwin_base_archive}-${darwin_arch}" $LIPO -thin $darwin_arch -output "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" "${darwin_archive}" cd "unfat-$$/${darwin_base_archive}-${darwin_arch}" func_extract_an_archive "`pwd`" "${darwin_base_archive}" cd "$darwin_curdir" $RM "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" done # $darwin_arches ## Okay now we've a bunch of thin objects, gotta fatten them up :) darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print | $SED -e "$basename" | sort -u` darwin_file= darwin_files= for darwin_file in $darwin_filelist; do darwin_files=`find unfat-$$ -name $darwin_file -print | sort | $NL2SP` $LIPO -create -output "$darwin_file" $darwin_files done # $darwin_filelist $RM -rf unfat-$$ cd "$darwin_orig_dir" else cd $darwin_orig_dir func_extract_an_archive "$my_xdir" "$my_xabs" fi # $darwin_arches } # !$opt_dry_run ;; *) func_extract_an_archive "$my_xdir" "$my_xabs" ;; esac my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | sort | $NL2SP` done func_extract_archives_result="$my_oldobjs" } # func_emit_wrapper [arg=no] # # Emit a libtool wrapper script on stdout. # Don't directly open a file because we may want to # incorporate the script contents within a cygwin/mingw # wrapper executable. Must ONLY be called from within # func_mode_link because it depends on a number of variables # set therein. # # ARG is the value that the WRAPPER_SCRIPT_BELONGS_IN_OBJDIR # variable will take. If 'yes', then the emitted script # will assume that the directory in which it is stored is # the $objdir directory. This is a cygwin/mingw-specific # behavior. func_emit_wrapper () { func_emit_wrapper_arg1=${1-no} $ECHO "\ #! $SHELL # $output - temporary wrapper script for $objdir/$outputname # Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION # # The $output program cannot be directly executed until all the libtool # libraries that it depends on are installed. # # This wrapper script should never be moved out of the build directory. # If it is, it will not operate correctly. # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. sed_quote_subst='$sed_quote_subst' # Be Bourne compatible if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on \${1+\"\$@\"}, which # is contrary to our usage. Disable this feature. alias -g '\${1+\"\$@\"}'='\"\$@\"' setopt NO_GLOB_SUBST else case \`(set -o) 2>/dev/null\` in *posix*) set -o posix;; esac fi BIN_SH=xpg4; export BIN_SH # for Tru64 DUALCASE=1; export DUALCASE # for MKS sh # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH relink_command=\"$relink_command\" # This environment variable determines our operation mode. if test \"\$libtool_install_magic\" = \"$magic\"; then # install mode needs the following variables: generated_by_libtool_version='$macro_version' notinst_deplibs='$notinst_deplibs' else # When we are sourced in execute mode, \$file and \$ECHO are already set. if test \"\$libtool_execute_magic\" != \"$magic\"; then file=\"\$0\"" qECHO=`$ECHO "$ECHO" | $SED "$sed_quote_subst"` $ECHO "\ # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF \$1 _LTECHO_EOF' } ECHO=\"$qECHO\" fi # Very basic option parsing. These options are (a) specific to # the libtool wrapper, (b) are identical between the wrapper # /script/ and the wrapper /executable/ which is used only on # windows platforms, and (c) all begin with the string "--lt-" # (application programs are unlikely to have options which match # this pattern). # # There are only two supported options: --lt-debug and # --lt-dump-script. There is, deliberately, no --lt-help. # # The first argument to this parsing function should be the # script's $0 value, followed by "$@". lt_option_debug= func_parse_lt_options () { lt_script_arg0=\$0 shift for lt_opt do case \"\$lt_opt\" in --lt-debug) lt_option_debug=1 ;; --lt-dump-script) lt_dump_D=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%/[^/]*$%%'\` test \"X\$lt_dump_D\" = \"X\$lt_script_arg0\" && lt_dump_D=. lt_dump_F=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%^.*/%%'\` cat \"\$lt_dump_D/\$lt_dump_F\" exit 0 ;; --lt-*) \$ECHO \"Unrecognized --lt- option: '\$lt_opt'\" 1>&2 exit 1 ;; esac done # Print the debug banner immediately: if test -n \"\$lt_option_debug\"; then echo \"${outputname}:${output}:\${LINENO}: libtool wrapper (GNU $PACKAGE$TIMESTAMP) $VERSION\" 1>&2 fi } # Used when --lt-debug. Prints its arguments to stdout # (redirection is the responsibility of the caller) func_lt_dump_args () { lt_dump_args_N=1; for lt_arg do \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[\$lt_dump_args_N]: \$lt_arg\" lt_dump_args_N=\`expr \$lt_dump_args_N + 1\` done } # Core function for launching the target application func_exec_program_core () { " case $host in # Backslashes separate directories on plain windows *-*-mingw | *-*-os2* | *-cegcc*) $ECHO "\ if test -n \"\$lt_option_debug\"; then \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[0]: \$progdir\\\\\$program\" 1>&2 func_lt_dump_args \${1+\"\$@\"} 1>&2 fi exec \"\$progdir\\\\\$program\" \${1+\"\$@\"} " ;; *) $ECHO "\ if test -n \"\$lt_option_debug\"; then \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[0]: \$progdir/\$program\" 1>&2 func_lt_dump_args \${1+\"\$@\"} 1>&2 fi exec \"\$progdir/\$program\" \${1+\"\$@\"} " ;; esac $ECHO "\ \$ECHO \"\$0: cannot exec \$program \$*\" 1>&2 exit 1 } # A function to encapsulate launching the target application # Strips options in the --lt-* namespace from \$@ and # launches target application with the remaining arguments. func_exec_program () { for lt_wr_arg do case \$lt_wr_arg in --lt-*) ;; *) set x \"\$@\" \"\$lt_wr_arg\"; shift;; esac shift done func_exec_program_core \${1+\"\$@\"} } # Parse options func_parse_lt_options \"\$0\" \${1+\"\$@\"} # Find the directory that this script lives in. thisdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*$%%'\` test \"x\$thisdir\" = \"x\$file\" && thisdir=. # Follow symbolic links until we get to the real thisdir. file=\`ls -ld \"\$file\" | $SED -n 's/.*-> //p'\` while test -n \"\$file\"; do destdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*\$%%'\` # If there was a directory component, then change thisdir. if test \"x\$destdir\" != \"x\$file\"; then case \"\$destdir\" in [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;; *) thisdir=\"\$thisdir/\$destdir\" ;; esac fi file=\`\$ECHO \"\$file\" | $SED 's%^.*/%%'\` file=\`ls -ld \"\$thisdir/\$file\" | $SED -n 's/.*-> //p'\` done # Usually 'no', except on cygwin/mingw when embedded into # the cwrapper. WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=$func_emit_wrapper_arg1 if test \"\$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR\" = \"yes\"; then # special case for '.' if test \"\$thisdir\" = \".\"; then thisdir=\`pwd\` fi # remove .libs from thisdir case \"\$thisdir\" in *[\\\\/]$objdir ) thisdir=\`\$ECHO \"\$thisdir\" | $SED 's%[\\\\/][^\\\\/]*$%%'\` ;; $objdir ) thisdir=. ;; esac fi # Try to get the absolute directory name. absdir=\`cd \"\$thisdir\" && pwd\` test -n \"\$absdir\" && thisdir=\"\$absdir\" " if test "$fast_install" = yes; then $ECHO "\ program=lt-'$outputname'$exeext progdir=\"\$thisdir/$objdir\" if test ! -f \"\$progdir/\$program\" || { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | ${SED} 1q\`; \\ test \"X\$file\" != \"X\$progdir/\$program\"; }; then file=\"\$\$-\$program\" if test ! -d \"\$progdir\"; then $MKDIR \"\$progdir\" else $RM \"\$progdir/\$file\" fi" $ECHO "\ # relink executable if necessary if test -n \"\$relink_command\"; then if relink_command_output=\`eval \$relink_command 2>&1\`; then : else $ECHO \"\$relink_command_output\" >&2 $RM \"\$progdir/\$file\" exit 1 fi fi $MV \"\$progdir/\$file\" \"\$progdir/\$program\" 2>/dev/null || { $RM \"\$progdir/\$program\"; $MV \"\$progdir/\$file\" \"\$progdir/\$program\"; } $RM \"\$progdir/\$file\" fi" else $ECHO "\ program='$outputname' progdir=\"\$thisdir/$objdir\" " fi $ECHO "\ if test -f \"\$progdir/\$program\"; then" # fixup the dll searchpath if we need to. # # Fix the DLL searchpath if we need to. Do this before prepending # to shlibpath, because on Windows, both are PATH and uninstalled # libraries must come first. if test -n "$dllsearchpath"; then $ECHO "\ # Add the dll search path components to the executable PATH PATH=$dllsearchpath:\$PATH " fi # Export our shlibpath_var if we have one. if test "$shlibpath_overrides_runpath" = yes && test -n "$shlibpath_var" && test -n "$temp_rpath"; then $ECHO "\ # Add our own library path to $shlibpath_var $shlibpath_var=\"$temp_rpath\$$shlibpath_var\" # Some systems cannot cope with colon-terminated $shlibpath_var # The second colon is a workaround for a bug in BeOS R4 sed $shlibpath_var=\`\$ECHO \"\$$shlibpath_var\" | $SED 's/::*\$//'\` export $shlibpath_var " fi $ECHO "\ if test \"\$libtool_execute_magic\" != \"$magic\"; then # Run the actual program with our arguments. func_exec_program \${1+\"\$@\"} fi else # The program doesn't exist. \$ECHO \"\$0: error: \\\`\$progdir/\$program' does not exist\" 1>&2 \$ECHO \"This script is just a wrapper for \$program.\" 1>&2 \$ECHO \"See the $PACKAGE documentation for more information.\" 1>&2 exit 1 fi fi\ " } # func_emit_cwrapperexe_src # emit the source code for a wrapper executable on stdout # Must ONLY be called from within func_mode_link because # it depends on a number of variable set therein. func_emit_cwrapperexe_src () { cat < #include #ifdef _MSC_VER # include # include # include #else # include # include # ifdef __CYGWIN__ # include # endif #endif #include #include #include #include #include #include #include #include /* declarations of non-ANSI functions */ #if defined(__MINGW32__) # ifdef __STRICT_ANSI__ int _putenv (const char *); # endif #elif defined(__CYGWIN__) # ifdef __STRICT_ANSI__ char *realpath (const char *, char *); int putenv (char *); int setenv (const char *, const char *, int); # endif /* #elif defined (other platforms) ... */ #endif /* portability defines, excluding path handling macros */ #if defined(_MSC_VER) # define setmode _setmode # define stat _stat # define chmod _chmod # define getcwd _getcwd # define putenv _putenv # define S_IXUSR _S_IEXEC # ifndef _INTPTR_T_DEFINED # define _INTPTR_T_DEFINED # define intptr_t int # endif #elif defined(__MINGW32__) # define setmode _setmode # define stat _stat # define chmod _chmod # define getcwd _getcwd # define putenv _putenv #elif defined(__CYGWIN__) # define HAVE_SETENV # define FOPEN_WB "wb" /* #elif defined (other platforms) ... */ #endif #if defined(PATH_MAX) # define LT_PATHMAX PATH_MAX #elif defined(MAXPATHLEN) # define LT_PATHMAX MAXPATHLEN #else # define LT_PATHMAX 1024 #endif #ifndef S_IXOTH # define S_IXOTH 0 #endif #ifndef S_IXGRP # define S_IXGRP 0 #endif /* path handling portability macros */ #ifndef DIR_SEPARATOR # define DIR_SEPARATOR '/' # define PATH_SEPARATOR ':' #endif #if defined (_WIN32) || defined (__MSDOS__) || defined (__DJGPP__) || \ defined (__OS2__) # define HAVE_DOS_BASED_FILE_SYSTEM # define FOPEN_WB "wb" # ifndef DIR_SEPARATOR_2 # define DIR_SEPARATOR_2 '\\' # endif # ifndef PATH_SEPARATOR_2 # define PATH_SEPARATOR_2 ';' # endif #endif #ifndef DIR_SEPARATOR_2 # define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR) #else /* DIR_SEPARATOR_2 */ # define IS_DIR_SEPARATOR(ch) \ (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2)) #endif /* DIR_SEPARATOR_2 */ #ifndef PATH_SEPARATOR_2 # define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR) #else /* PATH_SEPARATOR_2 */ # define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR_2) #endif /* PATH_SEPARATOR_2 */ #ifndef FOPEN_WB # define FOPEN_WB "w" #endif #ifndef _O_BINARY # define _O_BINARY 0 #endif #define XMALLOC(type, num) ((type *) xmalloc ((num) * sizeof(type))) #define XFREE(stale) do { \ if (stale) { free ((void *) stale); stale = 0; } \ } while (0) #if defined(LT_DEBUGWRAPPER) static int lt_debug = 1; #else static int lt_debug = 0; #endif const char *program_name = "libtool-wrapper"; /* in case xstrdup fails */ void *xmalloc (size_t num); char *xstrdup (const char *string); const char *base_name (const char *name); char *find_executable (const char *wrapper); char *chase_symlinks (const char *pathspec); int make_executable (const char *path); int check_executable (const char *path); char *strendzap (char *str, const char *pat); void lt_debugprintf (const char *file, int line, const char *fmt, ...); void lt_fatal (const char *file, int line, const char *message, ...); static const char *nonnull (const char *s); static const char *nonempty (const char *s); void lt_setenv (const char *name, const char *value); char *lt_extend_str (const char *orig_value, const char *add, int to_end); void lt_update_exe_path (const char *name, const char *value); void lt_update_lib_path (const char *name, const char *value); char **prepare_spawn (char **argv); void lt_dump_script (FILE *f); EOF cat <= 0) && (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH))) return 1; else return 0; } int make_executable (const char *path) { int rval = 0; struct stat st; lt_debugprintf (__FILE__, __LINE__, "(make_executable): %s\n", nonempty (path)); if ((!path) || (!*path)) return 0; if (stat (path, &st) >= 0) { rval = chmod (path, st.st_mode | S_IXOTH | S_IXGRP | S_IXUSR); } return rval; } /* Searches for the full path of the wrapper. Returns newly allocated full path name if found, NULL otherwise Does not chase symlinks, even on platforms that support them. */ char * find_executable (const char *wrapper) { int has_slash = 0; const char *p; const char *p_next; /* static buffer for getcwd */ char tmp[LT_PATHMAX + 1]; int tmp_len; char *concat_name; lt_debugprintf (__FILE__, __LINE__, "(find_executable): %s\n", nonempty (wrapper)); if ((wrapper == NULL) || (*wrapper == '\0')) return NULL; /* Absolute path? */ #if defined (HAVE_DOS_BASED_FILE_SYSTEM) if (isalpha ((unsigned char) wrapper[0]) && wrapper[1] == ':') { concat_name = xstrdup (wrapper); if (check_executable (concat_name)) return concat_name; XFREE (concat_name); } else { #endif if (IS_DIR_SEPARATOR (wrapper[0])) { concat_name = xstrdup (wrapper); if (check_executable (concat_name)) return concat_name; XFREE (concat_name); } #if defined (HAVE_DOS_BASED_FILE_SYSTEM) } #endif for (p = wrapper; *p; p++) if (*p == '/') { has_slash = 1; break; } if (!has_slash) { /* no slashes; search PATH */ const char *path = getenv ("PATH"); if (path != NULL) { for (p = path; *p; p = p_next) { const char *q; size_t p_len; for (q = p; *q; q++) if (IS_PATH_SEPARATOR (*q)) break; p_len = q - p; p_next = (*q == '\0' ? q : q + 1); if (p_len == 0) { /* empty path: current directory */ if (getcwd (tmp, LT_PATHMAX) == NULL) lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", nonnull (strerror (errno))); tmp_len = strlen (tmp); concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); memcpy (concat_name, tmp, tmp_len); concat_name[tmp_len] = '/'; strcpy (concat_name + tmp_len + 1, wrapper); } else { concat_name = XMALLOC (char, p_len + 1 + strlen (wrapper) + 1); memcpy (concat_name, p, p_len); concat_name[p_len] = '/'; strcpy (concat_name + p_len + 1, wrapper); } if (check_executable (concat_name)) return concat_name; XFREE (concat_name); } } /* not found in PATH; assume curdir */ } /* Relative path | not found in path: prepend cwd */ if (getcwd (tmp, LT_PATHMAX) == NULL) lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", nonnull (strerror (errno))); tmp_len = strlen (tmp); concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); memcpy (concat_name, tmp, tmp_len); concat_name[tmp_len] = '/'; strcpy (concat_name + tmp_len + 1, wrapper); if (check_executable (concat_name)) return concat_name; XFREE (concat_name); return NULL; } char * chase_symlinks (const char *pathspec) { #ifndef S_ISLNK return xstrdup (pathspec); #else char buf[LT_PATHMAX]; struct stat s; char *tmp_pathspec = xstrdup (pathspec); char *p; int has_symlinks = 0; while (strlen (tmp_pathspec) && !has_symlinks) { lt_debugprintf (__FILE__, __LINE__, "checking path component for symlinks: %s\n", tmp_pathspec); if (lstat (tmp_pathspec, &s) == 0) { if (S_ISLNK (s.st_mode) != 0) { has_symlinks = 1; break; } /* search backwards for last DIR_SEPARATOR */ p = tmp_pathspec + strlen (tmp_pathspec) - 1; while ((p > tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) p--; if ((p == tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) { /* no more DIR_SEPARATORS left */ break; } *p = '\0'; } else { lt_fatal (__FILE__, __LINE__, "error accessing file \"%s\": %s", tmp_pathspec, nonnull (strerror (errno))); } } XFREE (tmp_pathspec); if (!has_symlinks) { return xstrdup (pathspec); } tmp_pathspec = realpath (pathspec, buf); if (tmp_pathspec == 0) { lt_fatal (__FILE__, __LINE__, "could not follow symlinks for %s", pathspec); } return xstrdup (tmp_pathspec); #endif } char * strendzap (char *str, const char *pat) { size_t len, patlen; assert (str != NULL); assert (pat != NULL); len = strlen (str); patlen = strlen (pat); if (patlen <= len) { str += len - patlen; if (strcmp (str, pat) == 0) *str = '\0'; } return str; } void lt_debugprintf (const char *file, int line, const char *fmt, ...) { va_list args; if (lt_debug) { (void) fprintf (stderr, "%s:%s:%d: ", program_name, file, line); va_start (args, fmt); (void) vfprintf (stderr, fmt, args); va_end (args); } } static void lt_error_core (int exit_status, const char *file, int line, const char *mode, const char *message, va_list ap) { fprintf (stderr, "%s:%s:%d: %s: ", program_name, file, line, mode); vfprintf (stderr, message, ap); fprintf (stderr, ".\n"); if (exit_status >= 0) exit (exit_status); } void lt_fatal (const char *file, int line, const char *message, ...) { va_list ap; va_start (ap, message); lt_error_core (EXIT_FAILURE, file, line, "FATAL", message, ap); va_end (ap); } static const char * nonnull (const char *s) { return s ? s : "(null)"; } static const char * nonempty (const char *s) { return (s && !*s) ? "(empty)" : nonnull (s); } void lt_setenv (const char *name, const char *value) { lt_debugprintf (__FILE__, __LINE__, "(lt_setenv) setting '%s' to '%s'\n", nonnull (name), nonnull (value)); { #ifdef HAVE_SETENV /* always make a copy, for consistency with !HAVE_SETENV */ char *str = xstrdup (value); setenv (name, str, 1); #else int len = strlen (name) + 1 + strlen (value) + 1; char *str = XMALLOC (char, len); sprintf (str, "%s=%s", name, value); if (putenv (str) != EXIT_SUCCESS) { XFREE (str); } #endif } } char * lt_extend_str (const char *orig_value, const char *add, int to_end) { char *new_value; if (orig_value && *orig_value) { int orig_value_len = strlen (orig_value); int add_len = strlen (add); new_value = XMALLOC (char, add_len + orig_value_len + 1); if (to_end) { strcpy (new_value, orig_value); strcpy (new_value + orig_value_len, add); } else { strcpy (new_value, add); strcpy (new_value + add_len, orig_value); } } else { new_value = xstrdup (add); } return new_value; } void lt_update_exe_path (const char *name, const char *value) { lt_debugprintf (__FILE__, __LINE__, "(lt_update_exe_path) modifying '%s' by prepending '%s'\n", nonnull (name), nonnull (value)); if (name && *name && value && *value) { char *new_value = lt_extend_str (getenv (name), value, 0); /* some systems can't cope with a ':'-terminated path #' */ int len = strlen (new_value); while (((len = strlen (new_value)) > 0) && IS_PATH_SEPARATOR (new_value[len-1])) { new_value[len-1] = '\0'; } lt_setenv (name, new_value); XFREE (new_value); } } void lt_update_lib_path (const char *name, const char *value) { lt_debugprintf (__FILE__, __LINE__, "(lt_update_lib_path) modifying '%s' by prepending '%s'\n", nonnull (name), nonnull (value)); if (name && *name && value && *value) { char *new_value = lt_extend_str (getenv (name), value, 0); lt_setenv (name, new_value); XFREE (new_value); } } EOF case $host_os in mingw*) cat <<"EOF" /* Prepares an argument vector before calling spawn(). Note that spawn() does not by itself call the command interpreter (getenv ("COMSPEC") != NULL ? getenv ("COMSPEC") : ({ OSVERSIONINFO v; v.dwOSVersionInfoSize = sizeof(OSVERSIONINFO); GetVersionEx(&v); v.dwPlatformId == VER_PLATFORM_WIN32_NT; }) ? "cmd.exe" : "command.com"). Instead it simply concatenates the arguments, separated by ' ', and calls CreateProcess(). We must quote the arguments since Win32 CreateProcess() interprets characters like ' ', '\t', '\\', '"' (but not '<' and '>') in a special way: - Space and tab are interpreted as delimiters. They are not treated as delimiters if they are surrounded by double quotes: "...". - Unescaped double quotes are removed from the input. Their only effect is that within double quotes, space and tab are treated like normal characters. - Backslashes not followed by double quotes are not special. - But 2*n+1 backslashes followed by a double quote become n backslashes followed by a double quote (n >= 0): \" -> " \\\" -> \" \\\\\" -> \\" */ #define SHELL_SPECIAL_CHARS "\"\\ \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" #define SHELL_SPACE_CHARS " \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" char ** prepare_spawn (char **argv) { size_t argc; char **new_argv; size_t i; /* Count number of arguments. */ for (argc = 0; argv[argc] != NULL; argc++) ; /* Allocate new argument vector. */ new_argv = XMALLOC (char *, argc + 1); /* Put quoted arguments into the new argument vector. */ for (i = 0; i < argc; i++) { const char *string = argv[i]; if (string[0] == '\0') new_argv[i] = xstrdup ("\"\""); else if (strpbrk (string, SHELL_SPECIAL_CHARS) != NULL) { int quote_around = (strpbrk (string, SHELL_SPACE_CHARS) != NULL); size_t length; unsigned int backslashes; const char *s; char *quoted_string; char *p; length = 0; backslashes = 0; if (quote_around) length++; for (s = string; *s != '\0'; s++) { char c = *s; if (c == '"') length += backslashes + 1; length++; if (c == '\\') backslashes++; else backslashes = 0; } if (quote_around) length += backslashes + 1; quoted_string = XMALLOC (char, length + 1); p = quoted_string; backslashes = 0; if (quote_around) *p++ = '"'; for (s = string; *s != '\0'; s++) { char c = *s; if (c == '"') { unsigned int j; for (j = backslashes + 1; j > 0; j--) *p++ = '\\'; } *p++ = c; if (c == '\\') backslashes++; else backslashes = 0; } if (quote_around) { unsigned int j; for (j = backslashes; j > 0; j--) *p++ = '\\'; *p++ = '"'; } *p = '\0'; new_argv[i] = quoted_string; } else new_argv[i] = (char *) string; } new_argv[argc] = NULL; return new_argv; } EOF ;; esac cat <<"EOF" void lt_dump_script (FILE* f) { EOF func_emit_wrapper yes | $SED -e 's/\([\\"]\)/\\\1/g' \ -e 's/^/ fputs ("/' -e 's/$/\\n", f);/' cat <<"EOF" } EOF } # end: func_emit_cwrapperexe_src # func_win32_import_lib_p ARG # True if ARG is an import lib, as indicated by $file_magic_cmd func_win32_import_lib_p () { $opt_debug case `eval $file_magic_cmd \"\$1\" 2>/dev/null | $SED -e 10q` in *import*) : ;; *) false ;; esac } # func_mode_link arg... func_mode_link () { $opt_debug case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) # It is impossible to link a dll without this setting, and # we shouldn't force the makefile maintainer to figure out # which system we are compiling for in order to pass an extra # flag for every libtool invocation. # allow_undefined=no # FIXME: Unfortunately, there are problems with the above when trying # to make a dll which has undefined symbols, in which case not # even a static library is built. For now, we need to specify # -no-undefined on the libtool link line when we can be certain # that all symbols are satisfied, otherwise we get a static library. allow_undefined=yes ;; *) allow_undefined=yes ;; esac libtool_args=$nonopt base_compile="$nonopt $@" compile_command=$nonopt finalize_command=$nonopt compile_rpath= finalize_rpath= compile_shlibpath= finalize_shlibpath= convenience= old_convenience= deplibs= old_deplibs= compiler_flags= linker_flags= dllsearchpath= lib_search_path=`pwd` inst_prefix_dir= new_inherited_linker_flags= avoid_version=no bindir= dlfiles= dlprefiles= dlself=no export_dynamic=no export_symbols= export_symbols_regex= generated= libobjs= ltlibs= module=no no_install=no objs= non_pic_objects= precious_files_regex= prefer_static_libs=no preload=no prev= prevarg= release= rpath= xrpath= perm_rpath= temp_rpath= thread_safe=no vinfo= vinfo_number=no weak_libs= single_module="${wl}-single_module" func_infer_tag $base_compile # We need to know -static, to get the right output filenames. for arg do case $arg in -shared) test "$build_libtool_libs" != yes && \ func_fatal_configuration "can not build a shared library" build_old_libs=no break ;; -all-static | -static | -static-libtool-libs) case $arg in -all-static) if test "$build_libtool_libs" = yes && test -z "$link_static_flag"; then func_warning "complete static linking is impossible in this configuration" fi if test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=yes ;; -static) if test -z "$pic_flag" && test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=built ;; -static-libtool-libs) if test -z "$pic_flag" && test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=yes ;; esac build_libtool_libs=no build_old_libs=yes break ;; esac done # See if our shared archives depend on static archives. test -n "$old_archive_from_new_cmds" && build_old_libs=yes # Go through the arguments, transforming them on the way. while test "$#" -gt 0; do arg="$1" shift func_quote_for_eval "$arg" qarg=$func_quote_for_eval_unquoted_result func_append libtool_args " $func_quote_for_eval_result" # If the previous option needs an argument, assign it. if test -n "$prev"; then case $prev in output) func_append compile_command " @OUTPUT@" func_append finalize_command " @OUTPUT@" ;; esac case $prev in bindir) bindir="$arg" prev= continue ;; dlfiles|dlprefiles) if test "$preload" = no; then # Add the symbol object into the linking commands. func_append compile_command " @SYMFILE@" func_append finalize_command " @SYMFILE@" preload=yes fi case $arg in *.la | *.lo) ;; # We handle these cases below. force) if test "$dlself" = no; then dlself=needless export_dynamic=yes fi prev= continue ;; self) if test "$prev" = dlprefiles; then dlself=yes elif test "$prev" = dlfiles && test "$dlopen_self" != yes; then dlself=yes else dlself=needless export_dynamic=yes fi prev= continue ;; *) if test "$prev" = dlfiles; then func_append dlfiles " $arg" else func_append dlprefiles " $arg" fi prev= continue ;; esac ;; expsyms) export_symbols="$arg" test -f "$arg" \ || func_fatal_error "symbol file \`$arg' does not exist" prev= continue ;; expsyms_regex) export_symbols_regex="$arg" prev= continue ;; framework) case $host in *-*-darwin*) case "$deplibs " in *" $qarg.ltframework "*) ;; *) func_append deplibs " $qarg.ltframework" # this is fixed later ;; esac ;; esac prev= continue ;; inst_prefix) inst_prefix_dir="$arg" prev= continue ;; objectlist) if test -f "$arg"; then save_arg=$arg moreargs= for fil in `cat "$save_arg"` do # func_append moreargs " $fil" arg=$fil # A libtool-controlled object. # Check to see that this really is a libtool object. if func_lalib_unsafe_p "$arg"; then pic_object= non_pic_object= # Read the .lo file func_source "$arg" if test -z "$pic_object" || test -z "$non_pic_object" || test "$pic_object" = none && test "$non_pic_object" = none; then func_fatal_error "cannot find name of object for \`$arg'" fi # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir="$func_dirname_result" if test "$pic_object" != none; then # Prepend the subdirectory the object is found in. pic_object="$xdir$pic_object" if test "$prev" = dlfiles; then if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then func_append dlfiles " $pic_object" prev= continue else # If libtool objects are unsupported, then we need to preload. prev=dlprefiles fi fi # CHECK ME: I think I busted this. -Ossama if test "$prev" = dlprefiles; then # Preload the old-style object. func_append dlprefiles " $pic_object" prev= fi # A PIC object. func_append libobjs " $pic_object" arg="$pic_object" fi # Non-PIC object. if test "$non_pic_object" != none; then # Prepend the subdirectory the object is found in. non_pic_object="$xdir$non_pic_object" # A standard non-PIC object func_append non_pic_objects " $non_pic_object" if test -z "$pic_object" || test "$pic_object" = none ; then arg="$non_pic_object" fi else # If the PIC object exists, use it instead. # $xdir was prepended to $pic_object above. non_pic_object="$pic_object" func_append non_pic_objects " $non_pic_object" fi else # Only an error if not doing a dry-run. if $opt_dry_run; then # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir="$func_dirname_result" func_lo2o "$arg" pic_object=$xdir$objdir/$func_lo2o_result non_pic_object=$xdir$func_lo2o_result func_append libobjs " $pic_object" func_append non_pic_objects " $non_pic_object" else func_fatal_error "\`$arg' is not a valid libtool object" fi fi done else func_fatal_error "link input file \`$arg' does not exist" fi arg=$save_arg prev= continue ;; precious_regex) precious_files_regex="$arg" prev= continue ;; release) release="-$arg" prev= continue ;; rpath | xrpath) # We need an absolute path. case $arg in [\\/]* | [A-Za-z]:[\\/]*) ;; *) func_fatal_error "only absolute run-paths are allowed" ;; esac if test "$prev" = rpath; then case "$rpath " in *" $arg "*) ;; *) func_append rpath " $arg" ;; esac else case "$xrpath " in *" $arg "*) ;; *) func_append xrpath " $arg" ;; esac fi prev= continue ;; shrext) shrext_cmds="$arg" prev= continue ;; weak) func_append weak_libs " $arg" prev= continue ;; xcclinker) func_append linker_flags " $qarg" func_append compiler_flags " $qarg" prev= func_append compile_command " $qarg" func_append finalize_command " $qarg" continue ;; xcompiler) func_append compiler_flags " $qarg" prev= func_append compile_command " $qarg" func_append finalize_command " $qarg" continue ;; xlinker) func_append linker_flags " $qarg" func_append compiler_flags " $wl$qarg" prev= func_append compile_command " $wl$qarg" func_append finalize_command " $wl$qarg" continue ;; *) eval "$prev=\"\$arg\"" prev= continue ;; esac fi # test -n "$prev" prevarg="$arg" case $arg in -all-static) if test -n "$link_static_flag"; then # See comment for -static flag below, for more details. func_append compile_command " $link_static_flag" func_append finalize_command " $link_static_flag" fi continue ;; -allow-undefined) # FIXME: remove this flag sometime in the future. func_fatal_error "\`-allow-undefined' must not be used because it is the default" ;; -avoid-version) avoid_version=yes continue ;; -bindir) prev=bindir continue ;; -dlopen) prev=dlfiles continue ;; -dlpreopen) prev=dlprefiles continue ;; -export-dynamic) export_dynamic=yes continue ;; -export-symbols | -export-symbols-regex) if test -n "$export_symbols" || test -n "$export_symbols_regex"; then func_fatal_error "more than one -exported-symbols argument is not allowed" fi if test "X$arg" = "X-export-symbols"; then prev=expsyms else prev=expsyms_regex fi continue ;; -framework) prev=framework continue ;; -inst-prefix-dir) prev=inst_prefix continue ;; # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:* # so, if we see these flags be careful not to treat them like -L -L[A-Z][A-Z]*:*) case $with_gcc/$host in no/*-*-irix* | /*-*-irix*) func_append compile_command " $arg" func_append finalize_command " $arg" ;; esac continue ;; -L*) func_stripname "-L" '' "$arg" if test -z "$func_stripname_result"; then if test "$#" -gt 0; then func_fatal_error "require no space between \`-L' and \`$1'" else func_fatal_error "need path for \`-L' option" fi fi func_resolve_sysroot "$func_stripname_result" dir=$func_resolve_sysroot_result # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) ;; *) absdir=`cd "$dir" && pwd` test -z "$absdir" && \ func_fatal_error "cannot determine absolute directory name of \`$dir'" dir="$absdir" ;; esac case "$deplibs " in *" -L$dir "* | *" $arg "*) # Will only happen for absolute or sysroot arguments ;; *) # Preserve sysroot, but never include relative directories case $dir in [\\/]* | [A-Za-z]:[\\/]* | =*) func_append deplibs " $arg" ;; *) func_append deplibs " -L$dir" ;; esac func_append lib_search_path " $dir" ;; esac case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) testbindir=`$ECHO "$dir" | $SED 's*/lib$*/bin*'` case :$dllsearchpath: in *":$dir:"*) ;; ::) dllsearchpath=$dir;; *) func_append dllsearchpath ":$dir";; esac case :$dllsearchpath: in *":$testbindir:"*) ;; ::) dllsearchpath=$testbindir;; *) func_append dllsearchpath ":$testbindir";; esac ;; esac continue ;; -l*) if test "X$arg" = "X-lc" || test "X$arg" = "X-lm"; then case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos* | *-cegcc* | *-*-haiku*) # These systems don't actually have a C or math library (as such) continue ;; *-*-os2*) # These systems don't actually have a C library (as such) test "X$arg" = "X-lc" && continue ;; *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) # Do not include libc due to us having libc/libc_r. test "X$arg" = "X-lc" && continue ;; *-*-rhapsody* | *-*-darwin1.[012]) # Rhapsody C and math libraries are in the System framework func_append deplibs " System.ltframework" continue ;; *-*-sco3.2v5* | *-*-sco5v6*) # Causes problems with __ctype test "X$arg" = "X-lc" && continue ;; *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) # Compiler inserts libc in the correct place for threads to work test "X$arg" = "X-lc" && continue ;; esac elif test "X$arg" = "X-lc_r"; then case $host in *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) # Do not include libc_r directly, use -pthread flag. continue ;; esac fi func_append deplibs " $arg" continue ;; -module) module=yes continue ;; # Tru64 UNIX uses -model [arg] to determine the layout of C++ # classes, name mangling, and exception handling. # Darwin uses the -arch flag to determine output architecture. -model|-arch|-isysroot|--sysroot) func_append compiler_flags " $arg" func_append compile_command " $arg" func_append finalize_command " $arg" prev=xcompiler continue ;; -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe|-threads) func_append compiler_flags " $arg" func_append compile_command " $arg" func_append finalize_command " $arg" case "$new_inherited_linker_flags " in *" $arg "*) ;; * ) func_append new_inherited_linker_flags " $arg" ;; esac continue ;; -multi_module) single_module="${wl}-multi_module" continue ;; -no-fast-install) fast_install=no continue ;; -no-install) case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-darwin* | *-cegcc*) # The PATH hackery in wrapper scripts is required on Windows # and Darwin in order for the loader to find any dlls it needs. func_warning "\`-no-install' is ignored for $host" func_warning "assuming \`-no-fast-install' instead" fast_install=no ;; *) no_install=yes ;; esac continue ;; -no-undefined) allow_undefined=no continue ;; -objectlist) prev=objectlist continue ;; -o) prev=output ;; -precious-files-regex) prev=precious_regex continue ;; -release) prev=release continue ;; -rpath) prev=rpath continue ;; -R) prev=xrpath continue ;; -R*) func_stripname '-R' '' "$arg" dir=$func_stripname_result # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) ;; =*) func_stripname '=' '' "$dir" dir=$lt_sysroot$func_stripname_result ;; *) func_fatal_error "only absolute run-paths are allowed" ;; esac case "$xrpath " in *" $dir "*) ;; *) func_append xrpath " $dir" ;; esac continue ;; -shared) # The effects of -shared are defined in a previous loop. continue ;; -shrext) prev=shrext continue ;; -static | -static-libtool-libs) # The effects of -static are defined in a previous loop. # We used to do the same as -all-static on platforms that # didn't have a PIC flag, but the assumption that the effects # would be equivalent was wrong. It would break on at least # Digital Unix and AIX. continue ;; -thread-safe) thread_safe=yes continue ;; -version-info) prev=vinfo continue ;; -version-number) prev=vinfo vinfo_number=yes continue ;; -weak) prev=weak continue ;; -Wc,*) func_stripname '-Wc,' '' "$arg" args=$func_stripname_result arg= save_ifs="$IFS"; IFS=',' for flag in $args; do IFS="$save_ifs" func_quote_for_eval "$flag" func_append arg " $func_quote_for_eval_result" func_append compiler_flags " $func_quote_for_eval_result" done IFS="$save_ifs" func_stripname ' ' '' "$arg" arg=$func_stripname_result ;; -Wl,*) func_stripname '-Wl,' '' "$arg" args=$func_stripname_result arg= save_ifs="$IFS"; IFS=',' for flag in $args; do IFS="$save_ifs" func_quote_for_eval "$flag" func_append arg " $wl$func_quote_for_eval_result" func_append compiler_flags " $wl$func_quote_for_eval_result" func_append linker_flags " $func_quote_for_eval_result" done IFS="$save_ifs" func_stripname ' ' '' "$arg" arg=$func_stripname_result ;; -Xcompiler) prev=xcompiler continue ;; -Xlinker) prev=xlinker continue ;; -XCClinker) prev=xcclinker continue ;; # -msg_* for osf cc -msg_*) func_quote_for_eval "$arg" arg="$func_quote_for_eval_result" ;; # Flags to be passed through unchanged, with rationale: # -64, -mips[0-9] enable 64-bit mode for the SGI compiler # -r[0-9][0-9]* specify processor for the SGI compiler # -xarch=*, -xtarget=* enable 64-bit mode for the Sun compiler # +DA*, +DD* enable 64-bit mode for the HP compiler # -q* compiler args for the IBM compiler # -m*, -t[45]*, -txscale* architecture-specific flags for GCC # -F/path path to uninstalled frameworks, gcc on darwin # -p, -pg, --coverage, -fprofile-* profiling flags for GCC # @file GCC response files # -tp=* Portland pgcc target processor selection # --sysroot=* for sysroot support # -O*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \ -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \ -O*|-flto*|-fwhopr*|-fuse-linker-plugin) func_quote_for_eval "$arg" arg="$func_quote_for_eval_result" func_append compile_command " $arg" func_append finalize_command " $arg" func_append compiler_flags " $arg" continue ;; # Some other compiler flag. -* | +*) func_quote_for_eval "$arg" arg="$func_quote_for_eval_result" ;; *.$objext) # A standard object. func_append objs " $arg" ;; *.lo) # A libtool-controlled object. # Check to see that this really is a libtool object. if func_lalib_unsafe_p "$arg"; then pic_object= non_pic_object= # Read the .lo file func_source "$arg" if test -z "$pic_object" || test -z "$non_pic_object" || test "$pic_object" = none && test "$non_pic_object" = none; then func_fatal_error "cannot find name of object for \`$arg'" fi # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir="$func_dirname_result" if test "$pic_object" != none; then # Prepend the subdirectory the object is found in. pic_object="$xdir$pic_object" if test "$prev" = dlfiles; then if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then func_append dlfiles " $pic_object" prev= continue else # If libtool objects are unsupported, then we need to preload. prev=dlprefiles fi fi # CHECK ME: I think I busted this. -Ossama if test "$prev" = dlprefiles; then # Preload the old-style object. func_append dlprefiles " $pic_object" prev= fi # A PIC object. func_append libobjs " $pic_object" arg="$pic_object" fi # Non-PIC object. if test "$non_pic_object" != none; then # Prepend the subdirectory the object is found in. non_pic_object="$xdir$non_pic_object" # A standard non-PIC object func_append non_pic_objects " $non_pic_object" if test -z "$pic_object" || test "$pic_object" = none ; then arg="$non_pic_object" fi else # If the PIC object exists, use it instead. # $xdir was prepended to $pic_object above. non_pic_object="$pic_object" func_append non_pic_objects " $non_pic_object" fi else # Only an error if not doing a dry-run. if $opt_dry_run; then # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir="$func_dirname_result" func_lo2o "$arg" pic_object=$xdir$objdir/$func_lo2o_result non_pic_object=$xdir$func_lo2o_result func_append libobjs " $pic_object" func_append non_pic_objects " $non_pic_object" else func_fatal_error "\`$arg' is not a valid libtool object" fi fi ;; *.$libext) # An archive. func_append deplibs " $arg" func_append old_deplibs " $arg" continue ;; *.la) # A libtool-controlled library. func_resolve_sysroot "$arg" if test "$prev" = dlfiles; then # This library was specified with -dlopen. func_append dlfiles " $func_resolve_sysroot_result" prev= elif test "$prev" = dlprefiles; then # The library was specified with -dlpreopen. func_append dlprefiles " $func_resolve_sysroot_result" prev= else func_append deplibs " $func_resolve_sysroot_result" fi continue ;; # Some other compiler argument. *) # Unknown arguments in both finalize_command and compile_command need # to be aesthetically quoted because they are evaled later. func_quote_for_eval "$arg" arg="$func_quote_for_eval_result" ;; esac # arg # Now actually substitute the argument into the commands. if test -n "$arg"; then func_append compile_command " $arg" func_append finalize_command " $arg" fi done # argument parsing loop test -n "$prev" && \ func_fatal_help "the \`$prevarg' option requires an argument" if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then eval arg=\"$export_dynamic_flag_spec\" func_append compile_command " $arg" func_append finalize_command " $arg" fi oldlibs= # calculate the name of the file, without its directory func_basename "$output" outputname="$func_basename_result" libobjs_save="$libobjs" if test -n "$shlibpath_var"; then # get the directories listed in $shlibpath_var eval shlib_search_path=\`\$ECHO \"\${$shlibpath_var}\" \| \$SED \'s/:/ /g\'\` else shlib_search_path= fi eval sys_lib_search_path=\"$sys_lib_search_path_spec\" eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\" func_dirname "$output" "/" "" output_objdir="$func_dirname_result$objdir" func_to_tool_file "$output_objdir/" tool_output_objdir=$func_to_tool_file_result # Create the object directory. func_mkdir_p "$output_objdir" # Determine the type of output case $output in "") func_fatal_help "you must specify an output file" ;; *.$libext) linkmode=oldlib ;; *.lo | *.$objext) linkmode=obj ;; *.la) linkmode=lib ;; *) linkmode=prog ;; # Anything else should be a program. esac specialdeplibs= libs= # Find all interdependent deplibs by searching for libraries # that are linked more than once (e.g. -la -lb -la) for deplib in $deplibs; do if $opt_preserve_dup_deps ; then case "$libs " in *" $deplib "*) func_append specialdeplibs " $deplib" ;; esac fi func_append libs " $deplib" done if test "$linkmode" = lib; then libs="$predeps $libs $compiler_lib_search_path $postdeps" # Compute libraries that are listed more than once in $predeps # $postdeps and mark them as special (i.e., whose duplicates are # not to be eliminated). pre_post_deps= if $opt_duplicate_compiler_generated_deps; then for pre_post_dep in $predeps $postdeps; do case "$pre_post_deps " in *" $pre_post_dep "*) func_append specialdeplibs " $pre_post_deps" ;; esac func_append pre_post_deps " $pre_post_dep" done fi pre_post_deps= fi deplibs= newdependency_libs= newlib_search_path= need_relink=no # whether we're linking any uninstalled libtool libraries notinst_deplibs= # not-installed libtool libraries notinst_path= # paths that contain not-installed libtool libraries case $linkmode in lib) passes="conv dlpreopen link" for file in $dlfiles $dlprefiles; do case $file in *.la) ;; *) func_fatal_help "libraries can \`-dlopen' only libtool libraries: $file" ;; esac done ;; prog) compile_deplibs= finalize_deplibs= alldeplibs=no newdlfiles= newdlprefiles= passes="conv scan dlopen dlpreopen link" ;; *) passes="conv" ;; esac for pass in $passes; do # The preopen pass in lib mode reverses $deplibs; put it back here # so that -L comes before libs that need it for instance... if test "$linkmode,$pass" = "lib,link"; then ## FIXME: Find the place where the list is rebuilt in the wrong ## order, and fix it there properly tmp_deplibs= for deplib in $deplibs; do tmp_deplibs="$deplib $tmp_deplibs" done deplibs="$tmp_deplibs" fi if test "$linkmode,$pass" = "lib,link" || test "$linkmode,$pass" = "prog,scan"; then libs="$deplibs" deplibs= fi if test "$linkmode" = prog; then case $pass in dlopen) libs="$dlfiles" ;; dlpreopen) libs="$dlprefiles" ;; link) libs="$deplibs %DEPLIBS%" test "X$link_all_deplibs" != Xno && libs="$libs $dependency_libs" ;; esac fi if test "$linkmode,$pass" = "lib,dlpreopen"; then # Collect and forward deplibs of preopened libtool libs for lib in $dlprefiles; do # Ignore non-libtool-libs dependency_libs= func_resolve_sysroot "$lib" case $lib in *.la) func_source "$func_resolve_sysroot_result" ;; esac # Collect preopened libtool deplibs, except any this library # has declared as weak libs for deplib in $dependency_libs; do func_basename "$deplib" deplib_base=$func_basename_result case " $weak_libs " in *" $deplib_base "*) ;; *) func_append deplibs " $deplib" ;; esac done done libs="$dlprefiles" fi if test "$pass" = dlopen; then # Collect dlpreopened libraries save_deplibs="$deplibs" deplibs= fi for deplib in $libs; do lib= found=no case $deplib in -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe|-threads) if test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else func_append compiler_flags " $deplib" if test "$linkmode" = lib ; then case "$new_inherited_linker_flags " in *" $deplib "*) ;; * ) func_append new_inherited_linker_flags " $deplib" ;; esac fi fi continue ;; -l*) if test "$linkmode" != lib && test "$linkmode" != prog; then func_warning "\`-l' is ignored for archives/objects" continue fi func_stripname '-l' '' "$deplib" name=$func_stripname_result if test "$linkmode" = lib; then searchdirs="$newlib_search_path $lib_search_path $compiler_lib_search_dirs $sys_lib_search_path $shlib_search_path" else searchdirs="$newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path" fi for searchdir in $searchdirs; do for search_ext in .la $std_shrext .so .a; do # Search the libtool library lib="$searchdir/lib${name}${search_ext}" if test -f "$lib"; then if test "$search_ext" = ".la"; then found=yes else found=no fi break 2 fi done done if test "$found" != yes; then # deplib doesn't seem to be a libtool library if test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs" fi continue else # deplib is a libtool library # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib, # We need to do some special things here, and not later. if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then case " $predeps $postdeps " in *" $deplib "*) if func_lalib_p "$lib"; then library_names= old_library= func_source "$lib" for l in $old_library $library_names; do ll="$l" done if test "X$ll" = "X$old_library" ; then # only static version available found=no func_dirname "$lib" "" "." ladir="$func_dirname_result" lib=$ladir/$old_library if test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs" fi continue fi fi ;; *) ;; esac fi fi ;; # -l *.ltframework) if test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" if test "$linkmode" = lib ; then case "$new_inherited_linker_flags " in *" $deplib "*) ;; * ) func_append new_inherited_linker_flags " $deplib" ;; esac fi fi continue ;; -L*) case $linkmode in lib) deplibs="$deplib $deplibs" test "$pass" = conv && continue newdependency_libs="$deplib $newdependency_libs" func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result" func_append newlib_search_path " $func_resolve_sysroot_result" ;; prog) if test "$pass" = conv; then deplibs="$deplib $deplibs" continue fi if test "$pass" = scan; then deplibs="$deplib $deplibs" else compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" fi func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result" func_append newlib_search_path " $func_resolve_sysroot_result" ;; *) func_warning "\`-L' is ignored for archives/objects" ;; esac # linkmode continue ;; # -L -R*) if test "$pass" = link; then func_stripname '-R' '' "$deplib" func_resolve_sysroot "$func_stripname_result" dir=$func_resolve_sysroot_result # Make sure the xrpath contains only unique directories. case "$xrpath " in *" $dir "*) ;; *) func_append xrpath " $dir" ;; esac fi deplibs="$deplib $deplibs" continue ;; *.la) func_resolve_sysroot "$deplib" lib=$func_resolve_sysroot_result ;; *.$libext) if test "$pass" = conv; then deplibs="$deplib $deplibs" continue fi case $linkmode in lib) # Linking convenience modules into shared libraries is allowed, # but linking other static libraries is non-portable. case " $dlpreconveniencelibs " in *" $deplib "*) ;; *) valid_a_lib=no case $deplibs_check_method in match_pattern*) set dummy $deplibs_check_method; shift match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` if eval "\$ECHO \"$deplib\"" 2>/dev/null | $SED 10q \ | $EGREP "$match_pattern_regex" > /dev/null; then valid_a_lib=yes fi ;; pass_all) valid_a_lib=yes ;; esac if test "$valid_a_lib" != yes; then echo $ECHO "*** Warning: Trying to link with static lib archive $deplib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have" echo "*** because the file extensions .$libext of this argument makes me believe" echo "*** that it is just a static archive that I should not use here." else echo $ECHO "*** Warning: Linking the shared library $output against the" $ECHO "*** static library $deplib is not portable!" deplibs="$deplib $deplibs" fi ;; esac continue ;; prog) if test "$pass" != link; then deplibs="$deplib $deplibs" else compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" fi continue ;; esac # linkmode ;; # *.$libext *.lo | *.$objext) if test "$pass" = conv; then deplibs="$deplib $deplibs" elif test "$linkmode" = prog; then if test "$pass" = dlpreopen || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then # If there is no dlopen support or we're linking statically, # we need to preload. func_append newdlprefiles " $deplib" compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else func_append newdlfiles " $deplib" fi fi continue ;; %DEPLIBS%) alldeplibs=yes continue ;; esac # case $deplib if test "$found" = yes || test -f "$lib"; then : else func_fatal_error "cannot find the library \`$lib' or unhandled argument \`$deplib'" fi # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$lib" \ || func_fatal_error "\`$lib' is not a valid libtool archive" func_dirname "$lib" "" "." ladir="$func_dirname_result" dlname= dlopen= dlpreopen= libdir= library_names= old_library= inherited_linker_flags= # If the library was installed with an old release of libtool, # it will not redefine variables installed, or shouldnotlink installed=yes shouldnotlink=no avoidtemprpath= # Read the .la file func_source "$lib" # Convert "-framework foo" to "foo.ltframework" if test -n "$inherited_linker_flags"; then tmp_inherited_linker_flags=`$ECHO "$inherited_linker_flags" | $SED 's/-framework \([^ $]*\)/\1.ltframework/g'` for tmp_inherited_linker_flag in $tmp_inherited_linker_flags; do case " $new_inherited_linker_flags " in *" $tmp_inherited_linker_flag "*) ;; *) func_append new_inherited_linker_flags " $tmp_inherited_linker_flag";; esac done fi dependency_libs=`$ECHO " $dependency_libs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` if test "$linkmode,$pass" = "lib,link" || test "$linkmode,$pass" = "prog,scan" || { test "$linkmode" != prog && test "$linkmode" != lib; }; then test -n "$dlopen" && func_append dlfiles " $dlopen" test -n "$dlpreopen" && func_append dlprefiles " $dlpreopen" fi if test "$pass" = conv; then # Only check for convenience libraries deplibs="$lib $deplibs" if test -z "$libdir"; then if test -z "$old_library"; then func_fatal_error "cannot find name of link library for \`$lib'" fi # It is a libtool convenience library, so add in its objects. func_append convenience " $ladir/$objdir/$old_library" func_append old_convenience " $ladir/$objdir/$old_library" tmp_libs= for deplib in $dependency_libs; do deplibs="$deplib $deplibs" if $opt_preserve_dup_deps ; then case "$tmp_libs " in *" $deplib "*) func_append specialdeplibs " $deplib" ;; esac fi func_append tmp_libs " $deplib" done elif test "$linkmode" != prog && test "$linkmode" != lib; then func_fatal_error "\`$lib' is not a convenience library" fi continue fi # $pass = conv # Get the name of the library we link against. linklib= if test -n "$old_library" && { test "$prefer_static_libs" = yes || test "$prefer_static_libs,$installed" = "built,no"; }; then linklib=$old_library else for l in $old_library $library_names; do linklib="$l" done fi if test -z "$linklib"; then func_fatal_error "cannot find name of link library for \`$lib'" fi # This library was specified with -dlopen. if test "$pass" = dlopen; then if test -z "$libdir"; then func_fatal_error "cannot -dlopen a convenience library: \`$lib'" fi if test -z "$dlname" || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then # If there is no dlname, no dlopen support or we're linking # statically, we need to preload. We also need to preload any # dependent libraries so libltdl's deplib preloader doesn't # bomb out in the load deplibs phase. func_append dlprefiles " $lib $dependency_libs" else func_append newdlfiles " $lib" fi continue fi # $pass = dlopen # We need an absolute path. case $ladir in [\\/]* | [A-Za-z]:[\\/]*) abs_ladir="$ladir" ;; *) abs_ladir=`cd "$ladir" && pwd` if test -z "$abs_ladir"; then func_warning "cannot determine absolute directory name of \`$ladir'" func_warning "passing it literally to the linker, although it might fail" abs_ladir="$ladir" fi ;; esac func_basename "$lib" laname="$func_basename_result" # Find the relevant object directory and library name. if test "X$installed" = Xyes; then if test ! -f "$lt_sysroot$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then func_warning "library \`$lib' was moved." dir="$ladir" absdir="$abs_ladir" libdir="$abs_ladir" else dir="$lt_sysroot$libdir" absdir="$lt_sysroot$libdir" fi test "X$hardcode_automatic" = Xyes && avoidtemprpath=yes else if test ! -f "$ladir/$objdir/$linklib" && test -f "$abs_ladir/$linklib"; then dir="$ladir" absdir="$abs_ladir" # Remove this search path later func_append notinst_path " $abs_ladir" else dir="$ladir/$objdir" absdir="$abs_ladir/$objdir" # Remove this search path later func_append notinst_path " $abs_ladir" fi fi # $installed = yes func_stripname 'lib' '.la' "$laname" name=$func_stripname_result # This library was specified with -dlpreopen. if test "$pass" = dlpreopen; then if test -z "$libdir" && test "$linkmode" = prog; then func_fatal_error "only libraries may -dlpreopen a convenience library: \`$lib'" fi case "$host" in # special handling for platforms with PE-DLLs. *cygwin* | *mingw* | *cegcc* ) # Linker will automatically link against shared library if both # static and shared are present. Therefore, ensure we extract # symbols from the import library if a shared library is present # (otherwise, the dlopen module name will be incorrect). We do # this by putting the import library name into $newdlprefiles. # We recover the dlopen module name by 'saving' the la file # name in a special purpose variable, and (later) extracting the # dlname from the la file. if test -n "$dlname"; then func_tr_sh "$dir/$linklib" eval "libfile_$func_tr_sh_result=\$abs_ladir/\$laname" func_append newdlprefiles " $dir/$linklib" else func_append newdlprefiles " $dir/$old_library" # Keep a list of preopened convenience libraries to check # that they are being used correctly in the link pass. test -z "$libdir" && \ func_append dlpreconveniencelibs " $dir/$old_library" fi ;; * ) # Prefer using a static library (so that no silly _DYNAMIC symbols # are required to link). if test -n "$old_library"; then func_append newdlprefiles " $dir/$old_library" # Keep a list of preopened convenience libraries to check # that they are being used correctly in the link pass. test -z "$libdir" && \ func_append dlpreconveniencelibs " $dir/$old_library" # Otherwise, use the dlname, so that lt_dlopen finds it. elif test -n "$dlname"; then func_append newdlprefiles " $dir/$dlname" else func_append newdlprefiles " $dir/$linklib" fi ;; esac fi # $pass = dlpreopen if test -z "$libdir"; then # Link the convenience library if test "$linkmode" = lib; then deplibs="$dir/$old_library $deplibs" elif test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$dir/$old_library $compile_deplibs" finalize_deplibs="$dir/$old_library $finalize_deplibs" else deplibs="$lib $deplibs" # used for prog,scan pass fi continue fi if test "$linkmode" = prog && test "$pass" != link; then func_append newlib_search_path " $ladir" deplibs="$lib $deplibs" linkalldeplibs=no if test "$link_all_deplibs" != no || test -z "$library_names" || test "$build_libtool_libs" = no; then linkalldeplibs=yes fi tmp_libs= for deplib in $dependency_libs; do case $deplib in -L*) func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result" func_append newlib_search_path " $func_resolve_sysroot_result" ;; esac # Need to link against all dependency_libs? if test "$linkalldeplibs" = yes; then deplibs="$deplib $deplibs" else # Need to hardcode shared library paths # or/and link against static libraries newdependency_libs="$deplib $newdependency_libs" fi if $opt_preserve_dup_deps ; then case "$tmp_libs " in *" $deplib "*) func_append specialdeplibs " $deplib" ;; esac fi func_append tmp_libs " $deplib" done # for deplib continue fi # $linkmode = prog... if test "$linkmode,$pass" = "prog,link"; then if test -n "$library_names" && { { test "$prefer_static_libs" = no || test "$prefer_static_libs,$installed" = "built,yes"; } || test -z "$old_library"; }; then # We need to hardcode the library path if test -n "$shlibpath_var" && test -z "$avoidtemprpath" ; then # Make sure the rpath contains only unique directories. case "$temp_rpath:" in *"$absdir:"*) ;; *) func_append temp_rpath "$absdir:" ;; esac fi # Hardcode the library path. # Skip directories that are in the system default run-time # search path. case " $sys_lib_dlsearch_path " in *" $absdir "*) ;; *) case "$compile_rpath " in *" $absdir "*) ;; *) func_append compile_rpath " $absdir" ;; esac ;; esac case " $sys_lib_dlsearch_path " in *" $libdir "*) ;; *) case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac ;; esac fi # $linkmode,$pass = prog,link... if test "$alldeplibs" = yes && { test "$deplibs_check_method" = pass_all || { test "$build_libtool_libs" = yes && test -n "$library_names"; }; }; then # We only need to search for static libraries continue fi fi link_static=no # Whether the deplib will be linked statically use_static_libs=$prefer_static_libs if test "$use_static_libs" = built && test "$installed" = yes; then use_static_libs=no fi if test -n "$library_names" && { test "$use_static_libs" = no || test -z "$old_library"; }; then case $host in *cygwin* | *mingw* | *cegcc*) # No point in relinking DLLs because paths are not encoded func_append notinst_deplibs " $lib" need_relink=no ;; *) if test "$installed" = no; then func_append notinst_deplibs " $lib" need_relink=yes fi ;; esac # This is a shared library # Warn about portability, can't link against -module's on some # systems (darwin). Don't bleat about dlopened modules though! dlopenmodule="" for dlpremoduletest in $dlprefiles; do if test "X$dlpremoduletest" = "X$lib"; then dlopenmodule="$dlpremoduletest" break fi done if test -z "$dlopenmodule" && test "$shouldnotlink" = yes && test "$pass" = link; then echo if test "$linkmode" = prog; then $ECHO "*** Warning: Linking the executable $output against the loadable module" else $ECHO "*** Warning: Linking the shared library $output against the loadable module" fi $ECHO "*** $linklib is not portable!" fi if test "$linkmode" = lib && test "$hardcode_into_libs" = yes; then # Hardcode the library path. # Skip directories that are in the system default run-time # search path. case " $sys_lib_dlsearch_path " in *" $absdir "*) ;; *) case "$compile_rpath " in *" $absdir "*) ;; *) func_append compile_rpath " $absdir" ;; esac ;; esac case " $sys_lib_dlsearch_path " in *" $libdir "*) ;; *) case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac ;; esac fi if test -n "$old_archive_from_expsyms_cmds"; then # figure out the soname set dummy $library_names shift realname="$1" shift libname=`eval "\\$ECHO \"$libname_spec\""` # use dlname if we got it. it's perfectly good, no? if test -n "$dlname"; then soname="$dlname" elif test -n "$soname_spec"; then # bleh windows case $host in *cygwin* | mingw* | *cegcc*) func_arith $current - $age major=$func_arith_result versuffix="-$major" ;; esac eval soname=\"$soname_spec\" else soname="$realname" fi # Make a new name for the extract_expsyms_cmds to use soroot="$soname" func_basename "$soroot" soname="$func_basename_result" func_stripname 'lib' '.dll' "$soname" newlib=libimp-$func_stripname_result.a # If the library has no export list, then create one now if test -f "$output_objdir/$soname-def"; then : else func_verbose "extracting exported symbol list from \`$soname'" func_execute_cmds "$extract_expsyms_cmds" 'exit $?' fi # Create $newlib if test -f "$output_objdir/$newlib"; then :; else func_verbose "generating import library for \`$soname'" func_execute_cmds "$old_archive_from_expsyms_cmds" 'exit $?' fi # make sure the library variables are pointing to the new library dir=$output_objdir linklib=$newlib fi # test -n "$old_archive_from_expsyms_cmds" if test "$linkmode" = prog || test "$opt_mode" != relink; then add_shlibpath= add_dir= add= lib_linked=yes case $hardcode_action in immediate | unsupported) if test "$hardcode_direct" = no; then add="$dir/$linklib" case $host in *-*-sco3.2v5.0.[024]*) add_dir="-L$dir" ;; *-*-sysv4*uw2*) add_dir="-L$dir" ;; *-*-sysv5OpenUNIX* | *-*-sysv5UnixWare7.[01].[10]* | \ *-*-unixware7*) add_dir="-L$dir" ;; *-*-darwin* ) # if the lib is a (non-dlopened) module then we can not # link against it, someone is ignoring the earlier warnings if /usr/bin/file -L $add 2> /dev/null | $GREP ": [^:]* bundle" >/dev/null ; then if test "X$dlopenmodule" != "X$lib"; then $ECHO "*** Warning: lib $linklib is a module, not a shared library" if test -z "$old_library" ; then echo echo "*** And there doesn't seem to be a static archive available" echo "*** The link will probably fail, sorry" else add="$dir/$old_library" fi elif test -n "$old_library"; then add="$dir/$old_library" fi fi esac elif test "$hardcode_minus_L" = no; then case $host in *-*-sunos*) add_shlibpath="$dir" ;; esac add_dir="-L$dir" add="-l$name" elif test "$hardcode_shlibpath_var" = no; then add_shlibpath="$dir" add="-l$name" else lib_linked=no fi ;; relink) if test "$hardcode_direct" = yes && test "$hardcode_direct_absolute" = no; then add="$dir/$linklib" elif test "$hardcode_minus_L" = yes; then add_dir="-L$dir" # Try looking first in the location we're being installed to. if test -n "$inst_prefix_dir"; then case $libdir in [\\/]*) func_append add_dir " -L$inst_prefix_dir$libdir" ;; esac fi add="-l$name" elif test "$hardcode_shlibpath_var" = yes; then add_shlibpath="$dir" add="-l$name" else lib_linked=no fi ;; *) lib_linked=no ;; esac if test "$lib_linked" != yes; then func_fatal_configuration "unsupported hardcode properties" fi if test -n "$add_shlibpath"; then case :$compile_shlibpath: in *":$add_shlibpath:"*) ;; *) func_append compile_shlibpath "$add_shlibpath:" ;; esac fi if test "$linkmode" = prog; then test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs" test -n "$add" && compile_deplibs="$add $compile_deplibs" else test -n "$add_dir" && deplibs="$add_dir $deplibs" test -n "$add" && deplibs="$add $deplibs" if test "$hardcode_direct" != yes && test "$hardcode_minus_L" != yes && test "$hardcode_shlibpath_var" = yes; then case :$finalize_shlibpath: in *":$libdir:"*) ;; *) func_append finalize_shlibpath "$libdir:" ;; esac fi fi fi if test "$linkmode" = prog || test "$opt_mode" = relink; then add_shlibpath= add_dir= add= # Finalize command for both is simple: just hardcode it. if test "$hardcode_direct" = yes && test "$hardcode_direct_absolute" = no; then add="$libdir/$linklib" elif test "$hardcode_minus_L" = yes; then add_dir="-L$libdir" add="-l$name" elif test "$hardcode_shlibpath_var" = yes; then case :$finalize_shlibpath: in *":$libdir:"*) ;; *) func_append finalize_shlibpath "$libdir:" ;; esac add="-l$name" elif test "$hardcode_automatic" = yes; then if test -n "$inst_prefix_dir" && test -f "$inst_prefix_dir$libdir/$linklib" ; then add="$inst_prefix_dir$libdir/$linklib" else add="$libdir/$linklib" fi else # We cannot seem to hardcode it, guess we'll fake it. add_dir="-L$libdir" # Try looking first in the location we're being installed to. if test -n "$inst_prefix_dir"; then case $libdir in [\\/]*) func_append add_dir " -L$inst_prefix_dir$libdir" ;; esac fi add="-l$name" fi if test "$linkmode" = prog; then test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs" test -n "$add" && finalize_deplibs="$add $finalize_deplibs" else test -n "$add_dir" && deplibs="$add_dir $deplibs" test -n "$add" && deplibs="$add $deplibs" fi fi elif test "$linkmode" = prog; then # Here we assume that one of hardcode_direct or hardcode_minus_L # is not unsupported. This is valid on all known static and # shared platforms. if test "$hardcode_direct" != unsupported; then test -n "$old_library" && linklib="$old_library" compile_deplibs="$dir/$linklib $compile_deplibs" finalize_deplibs="$dir/$linklib $finalize_deplibs" else compile_deplibs="-l$name -L$dir $compile_deplibs" finalize_deplibs="-l$name -L$dir $finalize_deplibs" fi elif test "$build_libtool_libs" = yes; then # Not a shared library if test "$deplibs_check_method" != pass_all; then # We're trying link a shared library against a static one # but the system doesn't support it. # Just print a warning and add the library to dependency_libs so # that the program can be linked against the static library. echo $ECHO "*** Warning: This system can not link to static lib archive $lib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have." if test "$module" = yes; then echo "*** But as you try to build a module library, libtool will still create " echo "*** a static module, that should work as long as the dlopening application" echo "*** is linked with the -dlopen flag to resolve symbols at runtime." if test -z "$global_symbol_pipe"; then echo echo "*** However, this would only work if libtool was able to extract symbol" echo "*** lists from a program, using \`nm' or equivalent, but libtool could" echo "*** not find such a program. So, this module is probably useless." echo "*** \`nm' from GNU binutils and a full rebuild may help." fi if test "$build_old_libs" = no; then build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi fi else deplibs="$dir/$old_library $deplibs" link_static=yes fi fi # link shared/static library? if test "$linkmode" = lib; then if test -n "$dependency_libs" && { test "$hardcode_into_libs" != yes || test "$build_old_libs" = yes || test "$link_static" = yes; }; then # Extract -R from dependency_libs temp_deplibs= for libdir in $dependency_libs; do case $libdir in -R*) func_stripname '-R' '' "$libdir" temp_xrpath=$func_stripname_result case " $xrpath " in *" $temp_xrpath "*) ;; *) func_append xrpath " $temp_xrpath";; esac;; *) func_append temp_deplibs " $libdir";; esac done dependency_libs="$temp_deplibs" fi func_append newlib_search_path " $absdir" # Link against this library test "$link_static" = no && newdependency_libs="$abs_ladir/$laname $newdependency_libs" # ... and its dependency_libs tmp_libs= for deplib in $dependency_libs; do newdependency_libs="$deplib $newdependency_libs" case $deplib in -L*) func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result";; *) func_resolve_sysroot "$deplib" ;; esac if $opt_preserve_dup_deps ; then case "$tmp_libs " in *" $func_resolve_sysroot_result "*) func_append specialdeplibs " $func_resolve_sysroot_result" ;; esac fi func_append tmp_libs " $func_resolve_sysroot_result" done if test "$link_all_deplibs" != no; then # Add the search paths of all dependency libraries for deplib in $dependency_libs; do path= case $deplib in -L*) path="$deplib" ;; *.la) func_resolve_sysroot "$deplib" deplib=$func_resolve_sysroot_result func_dirname "$deplib" "" "." dir=$func_dirname_result # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) absdir="$dir" ;; *) absdir=`cd "$dir" && pwd` if test -z "$absdir"; then func_warning "cannot determine absolute directory name of \`$dir'" absdir="$dir" fi ;; esac if $GREP "^installed=no" $deplib > /dev/null; then case $host in *-*-darwin*) depdepl= eval deplibrary_names=`${SED} -n -e 's/^library_names=\(.*\)$/\1/p' $deplib` if test -n "$deplibrary_names" ; then for tmp in $deplibrary_names ; do depdepl=$tmp done if test -f "$absdir/$objdir/$depdepl" ; then depdepl="$absdir/$objdir/$depdepl" darwin_install_name=`${OTOOL} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` if test -z "$darwin_install_name"; then darwin_install_name=`${OTOOL64} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` fi func_append compiler_flags " ${wl}-dylib_file ${wl}${darwin_install_name}:${depdepl}" func_append linker_flags " -dylib_file ${darwin_install_name}:${depdepl}" path= fi fi ;; *) path="-L$absdir/$objdir" ;; esac else eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` test -z "$libdir" && \ func_fatal_error "\`$deplib' is not a valid libtool archive" test "$absdir" != "$libdir" && \ func_warning "\`$deplib' seems to be moved" path="-L$absdir" fi ;; esac case " $deplibs " in *" $path "*) ;; *) deplibs="$path $deplibs" ;; esac done fi # link_all_deplibs != no fi # linkmode = lib done # for deplib in $libs if test "$pass" = link; then if test "$linkmode" = "prog"; then compile_deplibs="$new_inherited_linker_flags $compile_deplibs" finalize_deplibs="$new_inherited_linker_flags $finalize_deplibs" else compiler_flags="$compiler_flags "`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` fi fi dependency_libs="$newdependency_libs" if test "$pass" = dlpreopen; then # Link the dlpreopened libraries before other libraries for deplib in $save_deplibs; do deplibs="$deplib $deplibs" done fi if test "$pass" != dlopen; then if test "$pass" != conv; then # Make sure lib_search_path contains only unique directories. lib_search_path= for dir in $newlib_search_path; do case "$lib_search_path " in *" $dir "*) ;; *) func_append lib_search_path " $dir" ;; esac done newlib_search_path= fi if test "$linkmode,$pass" != "prog,link"; then vars="deplibs" else vars="compile_deplibs finalize_deplibs" fi for var in $vars dependency_libs; do # Add libraries to $var in reverse order eval tmp_libs=\"\$$var\" new_libs= for deplib in $tmp_libs; do # FIXME: Pedantically, this is the right thing to do, so # that some nasty dependency loop isn't accidentally # broken: #new_libs="$deplib $new_libs" # Pragmatically, this seems to cause very few problems in # practice: case $deplib in -L*) new_libs="$deplib $new_libs" ;; -R*) ;; *) # And here is the reason: when a library appears more # than once as an explicit dependence of a library, or # is implicitly linked in more than once by the # compiler, it is considered special, and multiple # occurrences thereof are not removed. Compare this # with having the same library being listed as a # dependency of multiple other libraries: in this case, # we know (pedantically, we assume) the library does not # need to be listed more than once, so we keep only the # last copy. This is not always right, but it is rare # enough that we require users that really mean to play # such unportable linking tricks to link the library # using -Wl,-lname, so that libtool does not consider it # for duplicate removal. case " $specialdeplibs " in *" $deplib "*) new_libs="$deplib $new_libs" ;; *) case " $new_libs " in *" $deplib "*) ;; *) new_libs="$deplib $new_libs" ;; esac ;; esac ;; esac done tmp_libs= for deplib in $new_libs; do case $deplib in -L*) case " $tmp_libs " in *" $deplib "*) ;; *) func_append tmp_libs " $deplib" ;; esac ;; *) func_append tmp_libs " $deplib" ;; esac done eval $var=\"$tmp_libs\" done # for var fi # Last step: remove runtime libs from dependency_libs # (they stay in deplibs) tmp_libs= for i in $dependency_libs ; do case " $predeps $postdeps $compiler_lib_search_path " in *" $i "*) i="" ;; esac if test -n "$i" ; then func_append tmp_libs " $i" fi done dependency_libs=$tmp_libs done # for pass if test "$linkmode" = prog; then dlfiles="$newdlfiles" fi if test "$linkmode" = prog || test "$linkmode" = lib; then dlprefiles="$newdlprefiles" fi case $linkmode in oldlib) if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then func_warning "\`-dlopen' is ignored for archives" fi case " $deplibs" in *\ -l* | *\ -L*) func_warning "\`-l' and \`-L' are ignored for archives" ;; esac test -n "$rpath" && \ func_warning "\`-rpath' is ignored for archives" test -n "$xrpath" && \ func_warning "\`-R' is ignored for archives" test -n "$vinfo" && \ func_warning "\`-version-info/-version-number' is ignored for archives" test -n "$release" && \ func_warning "\`-release' is ignored for archives" test -n "$export_symbols$export_symbols_regex" && \ func_warning "\`-export-symbols' is ignored for archives" # Now set the variables for building old libraries. build_libtool_libs=no oldlibs="$output" func_append objs "$old_deplibs" ;; lib) # Make sure we only generate libraries of the form `libNAME.la'. case $outputname in lib*) func_stripname 'lib' '.la' "$outputname" name=$func_stripname_result eval shared_ext=\"$shrext_cmds\" eval libname=\"$libname_spec\" ;; *) test "$module" = no && \ func_fatal_help "libtool library \`$output' must begin with \`lib'" if test "$need_lib_prefix" != no; then # Add the "lib" prefix for modules if required func_stripname '' '.la' "$outputname" name=$func_stripname_result eval shared_ext=\"$shrext_cmds\" eval libname=\"$libname_spec\" else func_stripname '' '.la' "$outputname" libname=$func_stripname_result fi ;; esac if test -n "$objs"; then if test "$deplibs_check_method" != pass_all; then func_fatal_error "cannot build libtool library \`$output' from non-libtool objects on this host:$objs" else echo $ECHO "*** Warning: Linking the shared library $output against the non-libtool" $ECHO "*** objects $objs is not portable!" func_append libobjs " $objs" fi fi test "$dlself" != no && \ func_warning "\`-dlopen self' is ignored for libtool libraries" set dummy $rpath shift test "$#" -gt 1 && \ func_warning "ignoring multiple \`-rpath's for a libtool library" install_libdir="$1" oldlibs= if test -z "$rpath"; then if test "$build_libtool_libs" = yes; then # Building a libtool convenience library. # Some compilers have problems with a `.al' extension so # convenience libraries should have the same extension an # archive normally would. oldlibs="$output_objdir/$libname.$libext $oldlibs" build_libtool_libs=convenience build_old_libs=yes fi test -n "$vinfo" && \ func_warning "\`-version-info/-version-number' is ignored for convenience libraries" test -n "$release" && \ func_warning "\`-release' is ignored for convenience libraries" else # Parse the version information argument. save_ifs="$IFS"; IFS=':' set dummy $vinfo 0 0 0 shift IFS="$save_ifs" test -n "$7" && \ func_fatal_help "too many parameters to \`-version-info'" # convert absolute version numbers to libtool ages # this retains compatibility with .la files and attempts # to make the code below a bit more comprehensible case $vinfo_number in yes) number_major="$1" number_minor="$2" number_revision="$3" # # There are really only two kinds -- those that # use the current revision as the major version # and those that subtract age and use age as # a minor version. But, then there is irix # which has an extra 1 added just for fun # case $version_type in darwin|linux|osf|windows|none) func_arith $number_major + $number_minor current=$func_arith_result age="$number_minor" revision="$number_revision" ;; freebsd-aout|freebsd-elf|qnx|sunos) current="$number_major" revision="$number_minor" age="0" ;; irix|nonstopux) func_arith $number_major + $number_minor current=$func_arith_result age="$number_minor" revision="$number_minor" lt_irix_increment=no ;; *) func_fatal_configuration "$modename: unknown library version type \`$version_type'" ;; esac ;; no) current="$1" revision="$2" age="$3" ;; esac # Check that each of the things are valid numbers. case $current in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) func_error "CURRENT \`$current' must be a nonnegative integer" func_fatal_error "\`$vinfo' is not valid version information" ;; esac case $revision in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) func_error "REVISION \`$revision' must be a nonnegative integer" func_fatal_error "\`$vinfo' is not valid version information" ;; esac case $age in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) func_error "AGE \`$age' must be a nonnegative integer" func_fatal_error "\`$vinfo' is not valid version information" ;; esac if test "$age" -gt "$current"; then func_error "AGE \`$age' is greater than the current interface number \`$current'" func_fatal_error "\`$vinfo' is not valid version information" fi # Calculate the version variables. major= versuffix= verstring= case $version_type in none) ;; darwin) # Like Linux, but with the current version available in # verstring for coding it into the library header func_arith $current - $age major=.$func_arith_result versuffix="$major.$age.$revision" # Darwin ld doesn't like 0 for these options... func_arith $current + 1 minor_current=$func_arith_result xlcverstring="${wl}-compatibility_version ${wl}$minor_current ${wl}-current_version ${wl}$minor_current.$revision" verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" ;; freebsd-aout) major=".$current" versuffix=".$current.$revision"; ;; freebsd-elf) major=".$current" versuffix=".$current" ;; irix | nonstopux) if test "X$lt_irix_increment" = "Xno"; then func_arith $current - $age else func_arith $current - $age + 1 fi major=$func_arith_result case $version_type in nonstopux) verstring_prefix=nonstopux ;; *) verstring_prefix=sgi ;; esac verstring="$verstring_prefix$major.$revision" # Add in all the interfaces that we are compatible with. loop=$revision while test "$loop" -ne 0; do func_arith $revision - $loop iface=$func_arith_result func_arith $loop - 1 loop=$func_arith_result verstring="$verstring_prefix$major.$iface:$verstring" done # Before this point, $major must not contain `.'. major=.$major versuffix="$major.$revision" ;; linux) func_arith $current - $age major=.$func_arith_result versuffix="$major.$age.$revision" ;; osf) func_arith $current - $age major=.$func_arith_result versuffix=".$current.$age.$revision" verstring="$current.$age.$revision" # Add in all the interfaces that we are compatible with. loop=$age while test "$loop" -ne 0; do func_arith $current - $loop iface=$func_arith_result func_arith $loop - 1 loop=$func_arith_result verstring="$verstring:${iface}.0" done # Make executables depend on our current version. func_append verstring ":${current}.0" ;; qnx) major=".$current" versuffix=".$current" ;; sunos) major=".$current" versuffix=".$current.$revision" ;; windows) # Use '-' rather than '.', since we only want one # extension on DOS 8.3 filesystems. func_arith $current - $age major=$func_arith_result versuffix="-$major" ;; *) func_fatal_configuration "unknown library version type \`$version_type'" ;; esac # Clear the version info if we defaulted, and they specified a release. if test -z "$vinfo" && test -n "$release"; then major= case $version_type in darwin) # we can't check for "0.0" in archive_cmds due to quoting # problems, so we reset it completely verstring= ;; *) verstring="0.0" ;; esac if test "$need_version" = no; then versuffix= else versuffix=".0.0" fi fi # Remove version info from name if versioning should be avoided if test "$avoid_version" = yes && test "$need_version" = no; then major= versuffix= verstring="" fi # Check to see if the archive will have undefined symbols. if test "$allow_undefined" = yes; then if test "$allow_undefined_flag" = unsupported; then func_warning "undefined symbols not allowed in $host shared libraries" build_libtool_libs=no build_old_libs=yes fi else # Don't allow undefined symbols. allow_undefined_flag="$no_undefined_flag" fi fi func_generate_dlsyms "$libname" "$libname" "yes" func_append libobjs " $symfileobj" test "X$libobjs" = "X " && libobjs= if test "$opt_mode" != relink; then # Remove our outputs, but don't remove object files since they # may have been created when compiling PIC objects. removelist= tempremovelist=`$ECHO "$output_objdir/*"` for p in $tempremovelist; do case $p in *.$objext | *.gcno) ;; $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/${libname}${release}.*) if test "X$precious_files_regex" != "X"; then if $ECHO "$p" | $EGREP -e "$precious_files_regex" >/dev/null 2>&1 then continue fi fi func_append removelist " $p" ;; *) ;; esac done test -n "$removelist" && \ func_show_eval "${RM}r \$removelist" fi # Now set the variables for building old libraries. if test "$build_old_libs" = yes && test "$build_libtool_libs" != convenience ; then func_append oldlibs " $output_objdir/$libname.$libext" # Transform .lo files to .o files. oldobjs="$objs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.${libext}$/d; $lo2o" | $NL2SP` fi # Eliminate all temporary directories. #for path in $notinst_path; do # lib_search_path=`$ECHO "$lib_search_path " | $SED "s% $path % %g"` # deplibs=`$ECHO "$deplibs " | $SED "s% -L$path % %g"` # dependency_libs=`$ECHO "$dependency_libs " | $SED "s% -L$path % %g"` #done if test -n "$xrpath"; then # If the user specified any rpath flags, then add them. temp_xrpath= for libdir in $xrpath; do func_replace_sysroot "$libdir" func_append temp_xrpath " -R$func_replace_sysroot_result" case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac done if test "$hardcode_into_libs" != yes || test "$build_old_libs" = yes; then dependency_libs="$temp_xrpath $dependency_libs" fi fi # Make sure dlfiles contains only unique files that won't be dlpreopened old_dlfiles="$dlfiles" dlfiles= for lib in $old_dlfiles; do case " $dlprefiles $dlfiles " in *" $lib "*) ;; *) func_append dlfiles " $lib" ;; esac done # Make sure dlprefiles contains only unique files old_dlprefiles="$dlprefiles" dlprefiles= for lib in $old_dlprefiles; do case "$dlprefiles " in *" $lib "*) ;; *) func_append dlprefiles " $lib" ;; esac done if test "$build_libtool_libs" = yes; then if test -n "$rpath"; then case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos* | *-cegcc* | *-*-haiku*) # these systems don't actually have a c library (as such)! ;; *-*-rhapsody* | *-*-darwin1.[012]) # Rhapsody C library is in the System framework func_append deplibs " System.ltframework" ;; *-*-netbsd*) # Don't link with libc until the a.out ld.so is fixed. ;; *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) # Do not include libc due to us having libc/libc_r. ;; *-*-sco3.2v5* | *-*-sco5v6*) # Causes problems with __ctype ;; *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) # Compiler inserts libc in the correct place for threads to work ;; *) # Add libc to deplibs on all other systems if necessary. if test "$build_libtool_need_lc" = "yes"; then func_append deplibs " -lc" fi ;; esac fi # Transform deplibs into only deplibs that can be linked in shared. name_save=$name libname_save=$libname release_save=$release versuffix_save=$versuffix major_save=$major # I'm not sure if I'm treating the release correctly. I think # release should show up in the -l (ie -lgmp5) so we don't want to # add it in twice. Is that correct? release="" versuffix="" major="" newdeplibs= droppeddeps=no case $deplibs_check_method in pass_all) # Don't check for shared/static. Everything works. # This might be a little naive. We might want to check # whether the library exists or not. But this is on # osf3 & osf4 and I'm not really sure... Just # implementing what was already the behavior. newdeplibs=$deplibs ;; test_compile) # This code stresses the "libraries are programs" paradigm to its # limits. Maybe even breaks it. We compile a program, linking it # against the deplibs as a proxy for the library. Then we can check # whether they linked in statically or dynamically with ldd. $opt_dry_run || $RM conftest.c cat > conftest.c </dev/null` $nocaseglob else potential_libs=`ls $i/$libnameglob[.-]* 2>/dev/null` fi for potent_lib in $potential_libs; do # Follow soft links. if ls -lLd "$potent_lib" 2>/dev/null | $GREP " -> " >/dev/null; then continue fi # The statement above tries to avoid entering an # endless loop below, in case of cyclic links. # We might still enter an endless loop, since a link # loop can be closed while we follow links, # but so what? potlib="$potent_lib" while test -h "$potlib" 2>/dev/null; do potliblink=`ls -ld $potlib | ${SED} 's/.* -> //'` case $potliblink in [\\/]* | [A-Za-z]:[\\/]*) potlib="$potliblink";; *) potlib=`$ECHO "$potlib" | $SED 's,[^/]*$,,'`"$potliblink";; esac done if eval $file_magic_cmd \"\$potlib\" 2>/dev/null | $SED -e 10q | $EGREP "$file_magic_regex" > /dev/null; then func_append newdeplibs " $a_deplib" a_deplib="" break 2 fi done done fi if test -n "$a_deplib" ; then droppeddeps=yes echo $ECHO "*** Warning: linker path does not have real file for library $a_deplib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have" echo "*** because I did check the linker path looking for a file starting" if test -z "$potlib" ; then $ECHO "*** with $libname but no candidates were found. (...for file magic test)" else $ECHO "*** with $libname and none of the candidates passed a file format test" $ECHO "*** using a file magic. Last file checked: $potlib" fi fi ;; *) # Add a -L argument. func_append newdeplibs " $a_deplib" ;; esac done # Gone through all deplibs. ;; match_pattern*) set dummy $deplibs_check_method; shift match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` for a_deplib in $deplibs; do case $a_deplib in -l*) func_stripname -l '' "$a_deplib" name=$func_stripname_result if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then case " $predeps $postdeps " in *" $a_deplib "*) func_append newdeplibs " $a_deplib" a_deplib="" ;; esac fi if test -n "$a_deplib" ; then libname=`eval "\\$ECHO \"$libname_spec\""` for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do potential_libs=`ls $i/$libname[.-]* 2>/dev/null` for potent_lib in $potential_libs; do potlib="$potent_lib" # see symlink-check above in file_magic test if eval "\$ECHO \"$potent_lib\"" 2>/dev/null | $SED 10q | \ $EGREP "$match_pattern_regex" > /dev/null; then func_append newdeplibs " $a_deplib" a_deplib="" break 2 fi done done fi if test -n "$a_deplib" ; then droppeddeps=yes echo $ECHO "*** Warning: linker path does not have real file for library $a_deplib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have" echo "*** because I did check the linker path looking for a file starting" if test -z "$potlib" ; then $ECHO "*** with $libname but no candidates were found. (...for regex pattern test)" else $ECHO "*** with $libname and none of the candidates passed a file format test" $ECHO "*** using a regex pattern. Last file checked: $potlib" fi fi ;; *) # Add a -L argument. func_append newdeplibs " $a_deplib" ;; esac done # Gone through all deplibs. ;; none | unknown | *) newdeplibs="" tmp_deplibs=`$ECHO " $deplibs" | $SED 's/ -lc$//; s/ -[LR][^ ]*//g'` if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then for i in $predeps $postdeps ; do # can't use Xsed below, because $i might contain '/' tmp_deplibs=`$ECHO " $tmp_deplibs" | $SED "s,$i,,"` done fi case $tmp_deplibs in *[!\ \ ]*) echo if test "X$deplibs_check_method" = "Xnone"; then echo "*** Warning: inter-library dependencies are not supported in this platform." else echo "*** Warning: inter-library dependencies are not known to be supported." fi echo "*** All declared inter-library dependencies are being dropped." droppeddeps=yes ;; esac ;; esac versuffix=$versuffix_save major=$major_save release=$release_save libname=$libname_save name=$name_save case $host in *-*-rhapsody* | *-*-darwin1.[012]) # On Rhapsody replace the C library with the System framework newdeplibs=`$ECHO " $newdeplibs" | $SED 's/ -lc / System.ltframework /'` ;; esac if test "$droppeddeps" = yes; then if test "$module" = yes; then echo echo "*** Warning: libtool could not satisfy all declared inter-library" $ECHO "*** dependencies of module $libname. Therefore, libtool will create" echo "*** a static module, that should work as long as the dlopening" echo "*** application is linked with the -dlopen flag." if test -z "$global_symbol_pipe"; then echo echo "*** However, this would only work if libtool was able to extract symbol" echo "*** lists from a program, using \`nm' or equivalent, but libtool could" echo "*** not find such a program. So, this module is probably useless." echo "*** \`nm' from GNU binutils and a full rebuild may help." fi if test "$build_old_libs" = no; then oldlibs="$output_objdir/$libname.$libext" build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi else echo "*** The inter-library dependencies that have been dropped here will be" echo "*** automatically added whenever a program is linked with this library" echo "*** or is declared to -dlopen it." if test "$allow_undefined" = no; then echo echo "*** Since this library must not contain undefined symbols," echo "*** because either the platform does not support them or" echo "*** it was explicitly requested with -no-undefined," echo "*** libtool will only create a static version of it." if test "$build_old_libs" = no; then oldlibs="$output_objdir/$libname.$libext" build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi fi fi fi # Done checking deplibs! deplibs=$newdeplibs fi # Time to change all our "foo.ltframework" stuff back to "-framework foo" case $host in *-*-darwin*) newdeplibs=`$ECHO " $newdeplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` new_inherited_linker_flags=`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` deplibs=`$ECHO " $deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` ;; esac # move library search paths that coincide with paths to not yet # installed libraries to the beginning of the library search list new_libs= for path in $notinst_path; do case " $new_libs " in *" -L$path/$objdir "*) ;; *) case " $deplibs " in *" -L$path/$objdir "*) func_append new_libs " -L$path/$objdir" ;; esac ;; esac done for deplib in $deplibs; do case $deplib in -L*) case " $new_libs " in *" $deplib "*) ;; *) func_append new_libs " $deplib" ;; esac ;; *) func_append new_libs " $deplib" ;; esac done deplibs="$new_libs" # All the library-specific variables (install_libdir is set above). library_names= old_library= dlname= # Test again, we may have decided not to build it any more if test "$build_libtool_libs" = yes; then if test "$hardcode_into_libs" = yes; then # Hardcode the library paths hardcode_libdirs= dep_rpath= rpath="$finalize_rpath" test "$opt_mode" != relink && rpath="$compile_rpath$rpath" for libdir in $rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then func_replace_sysroot "$libdir" libdir=$func_replace_sysroot_result if test -z "$hardcode_libdirs"; then hardcode_libdirs="$libdir" else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" func_append dep_rpath " $flag" fi elif test -n "$runpath_var"; then case "$perm_rpath " in *" $libdir "*) ;; *) func_apped perm_rpath " $libdir" ;; esac fi done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir="$hardcode_libdirs" if test -n "$hardcode_libdir_flag_spec_ld"; then eval dep_rpath=\"$hardcode_libdir_flag_spec_ld\" else eval dep_rpath=\"$hardcode_libdir_flag_spec\" fi fi if test -n "$runpath_var" && test -n "$perm_rpath"; then # We should set the runpath_var. rpath= for dir in $perm_rpath; do func_append rpath "$dir:" done eval "$runpath_var='$rpath\$$runpath_var'; export $runpath_var" fi test -n "$dep_rpath" && deplibs="$dep_rpath $deplibs" fi shlibpath="$finalize_shlibpath" test "$opt_mode" != relink && shlibpath="$compile_shlibpath$shlibpath" if test -n "$shlibpath"; then eval "$shlibpath_var='$shlibpath\$$shlibpath_var'; export $shlibpath_var" fi # Get the real and link names of the library. eval shared_ext=\"$shrext_cmds\" eval library_names=\"$library_names_spec\" set dummy $library_names shift realname="$1" shift if test -n "$soname_spec"; then eval soname=\"$soname_spec\" else soname="$realname" fi if test -z "$dlname"; then dlname=$soname fi lib="$output_objdir/$realname" linknames= for link do func_append linknames " $link" done # Use standard objects if they are pic test -z "$pic_flag" && libobjs=`$ECHO "$libobjs" | $SP2NL | $SED "$lo2o" | $NL2SP` test "X$libobjs" = "X " && libobjs= delfiles= if test -n "$export_symbols" && test -n "$include_expsyms"; then $opt_dry_run || cp "$export_symbols" "$output_objdir/$libname.uexp" export_symbols="$output_objdir/$libname.uexp" func_append delfiles " $export_symbols" fi orig_export_symbols= case $host_os in cygwin* | mingw* | cegcc*) if test -n "$export_symbols" && test -z "$export_symbols_regex"; then # exporting using user supplied symfile if test "x`$SED 1q $export_symbols`" != xEXPORTS; then # and it's NOT already a .def file. Must figure out # which of the given symbols are data symbols and tag # them as such. So, trigger use of export_symbols_cmds. # export_symbols gets reassigned inside the "prepare # the list of exported symbols" if statement, so the # include_expsyms logic still works. orig_export_symbols="$export_symbols" export_symbols= always_export_symbols=yes fi fi ;; esac # Prepare the list of exported symbols if test -z "$export_symbols"; then if test "$always_export_symbols" = yes || test -n "$export_symbols_regex"; then func_verbose "generating symbol list for \`$libname.la'" export_symbols="$output_objdir/$libname.exp" $opt_dry_run || $RM $export_symbols cmds=$export_symbols_cmds save_ifs="$IFS"; IFS='~' for cmd1 in $cmds; do IFS="$save_ifs" # Take the normal branch if the nm_file_list_spec branch # doesn't work or if tool conversion is not needed. case $nm_file_list_spec~$to_tool_file_cmd in *~func_convert_file_noop | *~func_convert_file_msys_to_w32 | ~*) try_normal_branch=yes eval cmd=\"$cmd1\" func_len " $cmd" len=$func_len_result ;; *) try_normal_branch=no ;; esac if test "$try_normal_branch" = yes \ && { test "$len" -lt "$max_cmd_len" \ || test "$max_cmd_len" -le -1; } then func_show_eval "$cmd" 'exit $?' skipped_export=false elif test -n "$nm_file_list_spec"; then func_basename "$output" output_la=$func_basename_result save_libobjs=$libobjs save_output=$output output=${output_objdir}/${output_la}.nm func_to_tool_file "$output" libobjs=$nm_file_list_spec$func_to_tool_file_result func_append delfiles " $output" func_verbose "creating $NM input file list: $output" for obj in $save_libobjs; do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" done > "$output" eval cmd=\"$cmd1\" func_show_eval "$cmd" 'exit $?' output=$save_output libobjs=$save_libobjs skipped_export=false else # The command line is too long to execute in one step. func_verbose "using reloadable object file for export list..." skipped_export=: # Break out early, otherwise skipped_export may be # set to false by a later but shorter cmd. break fi done IFS="$save_ifs" if test -n "$export_symbols_regex" && test "X$skipped_export" != "X:"; then func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' func_show_eval '$MV "${export_symbols}T" "$export_symbols"' fi fi fi if test -n "$export_symbols" && test -n "$include_expsyms"; then tmp_export_symbols="$export_symbols" test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols" $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' fi if test "X$skipped_export" != "X:" && test -n "$orig_export_symbols"; then # The given exports_symbols file has to be filtered, so filter it. func_verbose "filter symbol list for \`$libname.la' to tag DATA exports" # FIXME: $output_objdir/$libname.filter potentially contains lots of # 's' commands which not all seds can handle. GNU sed should be fine # though. Also, the filter scales superlinearly with the number of # global variables. join(1) would be nice here, but unfortunately # isn't a blessed tool. $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter func_append delfiles " $export_symbols $output_objdir/$libname.filter" export_symbols=$output_objdir/$libname.def $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols fi tmp_deplibs= for test_deplib in $deplibs; do case " $convenience " in *" $test_deplib "*) ;; *) func_append tmp_deplibs " $test_deplib" ;; esac done deplibs="$tmp_deplibs" if test -n "$convenience"; then if test -n "$whole_archive_flag_spec" && test "$compiler_needs_object" = yes && test -z "$libobjs"; then # extract the archives, so we have objects to list. # TODO: could optimize this to just extract one archive. whole_archive_flag_spec= fi if test -n "$whole_archive_flag_spec"; then save_libobjs=$libobjs eval libobjs=\"\$libobjs $whole_archive_flag_spec\" test "X$libobjs" = "X " && libobjs= else gentop="$output_objdir/${outputname}x" func_append generated " $gentop" func_extract_archives $gentop $convenience func_append libobjs " $func_extract_archives_result" test "X$libobjs" = "X " && libobjs= fi fi if test "$thread_safe" = yes && test -n "$thread_safe_flag_spec"; then eval flag=\"$thread_safe_flag_spec\" func_append linker_flags " $flag" fi # Make a backup of the uninstalled library when relinking if test "$opt_mode" = relink; then $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}U && $MV $realname ${realname}U)' || exit $? fi # Do each of the archive commands. if test "$module" = yes && test -n "$module_cmds" ; then if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then eval test_cmds=\"$module_expsym_cmds\" cmds=$module_expsym_cmds else eval test_cmds=\"$module_cmds\" cmds=$module_cmds fi else if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then eval test_cmds=\"$archive_expsym_cmds\" cmds=$archive_expsym_cmds else eval test_cmds=\"$archive_cmds\" cmds=$archive_cmds fi fi if test "X$skipped_export" != "X:" && func_len " $test_cmds" && len=$func_len_result && test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then : else # The command line is too long to link in one step, link piecewise # or, if using GNU ld and skipped_export is not :, use a linker # script. # Save the value of $output and $libobjs because we want to # use them later. If we have whole_archive_flag_spec, we # want to use save_libobjs as it was before # whole_archive_flag_spec was expanded, because we can't # assume the linker understands whole_archive_flag_spec. # This may have to be revisited, in case too many # convenience libraries get linked in and end up exceeding # the spec. if test -z "$convenience" || test -z "$whole_archive_flag_spec"; then save_libobjs=$libobjs fi save_output=$output func_basename "$output" output_la=$func_basename_result # Clear the reloadable object creation command queue and # initialize k to one. test_cmds= concat_cmds= objlist= last_robj= k=1 if test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "$with_gnu_ld" = yes; then output=${output_objdir}/${output_la}.lnkscript func_verbose "creating GNU ld script: $output" echo 'INPUT (' > $output for obj in $save_libobjs do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" >> $output done echo ')' >> $output func_append delfiles " $output" func_to_tool_file "$output" output=$func_to_tool_file_result elif test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "X$file_list_spec" != X; then output=${output_objdir}/${output_la}.lnk func_verbose "creating linker input file list: $output" : > $output set x $save_libobjs shift firstobj= if test "$compiler_needs_object" = yes; then firstobj="$1 " shift fi for obj do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" >> $output done func_append delfiles " $output" func_to_tool_file "$output" output=$firstobj\"$file_list_spec$func_to_tool_file_result\" else if test -n "$save_libobjs"; then func_verbose "creating reloadable object files..." output=$output_objdir/$output_la-${k}.$objext eval test_cmds=\"$reload_cmds\" func_len " $test_cmds" len0=$func_len_result len=$len0 # Loop over the list of objects to be linked. for obj in $save_libobjs do func_len " $obj" func_arith $len + $func_len_result len=$func_arith_result if test "X$objlist" = X || test "$len" -lt "$max_cmd_len"; then func_append objlist " $obj" else # The command $test_cmds is almost too long, add a # command to the queue. if test "$k" -eq 1 ; then # The first file doesn't have a previous command to add. reload_objs=$objlist eval concat_cmds=\"$reload_cmds\" else # All subsequent reloadable object files will link in # the last one created. reload_objs="$objlist $last_robj" eval concat_cmds=\"\$concat_cmds~$reload_cmds~\$RM $last_robj\" fi last_robj=$output_objdir/$output_la-${k}.$objext func_arith $k + 1 k=$func_arith_result output=$output_objdir/$output_la-${k}.$objext objlist=" $obj" func_len " $last_robj" func_arith $len0 + $func_len_result len=$func_arith_result fi done # Handle the remaining objects by creating one last # reloadable object file. All subsequent reloadable object # files will link in the last one created. test -z "$concat_cmds" || concat_cmds=$concat_cmds~ reload_objs="$objlist $last_robj" eval concat_cmds=\"\${concat_cmds}$reload_cmds\" if test -n "$last_robj"; then eval concat_cmds=\"\${concat_cmds}~\$RM $last_robj\" fi func_append delfiles " $output" else output= fi if ${skipped_export-false}; then func_verbose "generating symbol list for \`$libname.la'" export_symbols="$output_objdir/$libname.exp" $opt_dry_run || $RM $export_symbols libobjs=$output # Append the command to create the export file. test -z "$concat_cmds" || concat_cmds=$concat_cmds~ eval concat_cmds=\"\$concat_cmds$export_symbols_cmds\" if test -n "$last_robj"; then eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\" fi fi test -n "$save_libobjs" && func_verbose "creating a temporary reloadable object file: $output" # Loop through the commands generated above and execute them. save_ifs="$IFS"; IFS='~' for cmd in $concat_cmds; do IFS="$save_ifs" $opt_silent || { func_quote_for_expand "$cmd" eval "func_echo $func_quote_for_expand_result" } $opt_dry_run || eval "$cmd" || { lt_exit=$? # Restore the uninstalled library and exit if test "$opt_mode" = relink; then ( cd "$output_objdir" && \ $RM "${realname}T" && \ $MV "${realname}U" "$realname" ) fi exit $lt_exit } done IFS="$save_ifs" if test -n "$export_symbols_regex" && ${skipped_export-false}; then func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' func_show_eval '$MV "${export_symbols}T" "$export_symbols"' fi fi if ${skipped_export-false}; then if test -n "$export_symbols" && test -n "$include_expsyms"; then tmp_export_symbols="$export_symbols" test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols" $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' fi if test -n "$orig_export_symbols"; then # The given exports_symbols file has to be filtered, so filter it. func_verbose "filter symbol list for \`$libname.la' to tag DATA exports" # FIXME: $output_objdir/$libname.filter potentially contains lots of # 's' commands which not all seds can handle. GNU sed should be fine # though. Also, the filter scales superlinearly with the number of # global variables. join(1) would be nice here, but unfortunately # isn't a blessed tool. $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter func_append delfiles " $export_symbols $output_objdir/$libname.filter" export_symbols=$output_objdir/$libname.def $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols fi fi libobjs=$output # Restore the value of output. output=$save_output if test -n "$convenience" && test -n "$whole_archive_flag_spec"; then eval libobjs=\"\$libobjs $whole_archive_flag_spec\" test "X$libobjs" = "X " && libobjs= fi # Expand the library linking commands again to reset the # value of $libobjs for piecewise linking. # Do each of the archive commands. if test "$module" = yes && test -n "$module_cmds" ; then if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then cmds=$module_expsym_cmds else cmds=$module_cmds fi else if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then cmds=$archive_expsym_cmds else cmds=$archive_cmds fi fi fi if test -n "$delfiles"; then # Append the command to remove temporary files to $cmds. eval cmds=\"\$cmds~\$RM $delfiles\" fi # Add any objects from preloaded convenience libraries if test -n "$dlprefiles"; then gentop="$output_objdir/${outputname}x" func_append generated " $gentop" func_extract_archives $gentop $dlprefiles func_append libobjs " $func_extract_archives_result" test "X$libobjs" = "X " && libobjs= fi save_ifs="$IFS"; IFS='~' for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" $opt_silent || { func_quote_for_expand "$cmd" eval "func_echo $func_quote_for_expand_result" } $opt_dry_run || eval "$cmd" || { lt_exit=$? # Restore the uninstalled library and exit if test "$opt_mode" = relink; then ( cd "$output_objdir" && \ $RM "${realname}T" && \ $MV "${realname}U" "$realname" ) fi exit $lt_exit } done IFS="$save_ifs" # Restore the uninstalled library and exit if test "$opt_mode" = relink; then $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}T && $MV $realname ${realname}T && $MV ${realname}U $realname)' || exit $? if test -n "$convenience"; then if test -z "$whole_archive_flag_spec"; then func_show_eval '${RM}r "$gentop"' fi fi exit $EXIT_SUCCESS fi # Create links to the real library. for linkname in $linknames; do if test "$realname" != "$linkname"; then func_show_eval '(cd "$output_objdir" && $RM "$linkname" && $LN_S "$realname" "$linkname")' 'exit $?' fi done # If -module or -export-dynamic was specified, set the dlname. if test "$module" = yes || test "$export_dynamic" = yes; then # On all known operating systems, these are identical. dlname="$soname" fi fi ;; obj) if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then func_warning "\`-dlopen' is ignored for objects" fi case " $deplibs" in *\ -l* | *\ -L*) func_warning "\`-l' and \`-L' are ignored for objects" ;; esac test -n "$rpath" && \ func_warning "\`-rpath' is ignored for objects" test -n "$xrpath" && \ func_warning "\`-R' is ignored for objects" test -n "$vinfo" && \ func_warning "\`-version-info' is ignored for objects" test -n "$release" && \ func_warning "\`-release' is ignored for objects" case $output in *.lo) test -n "$objs$old_deplibs" && \ func_fatal_error "cannot build library object \`$output' from non-libtool objects" libobj=$output func_lo2o "$libobj" obj=$func_lo2o_result ;; *) libobj= obj="$output" ;; esac # Delete the old objects. $opt_dry_run || $RM $obj $libobj # Objects from convenience libraries. This assumes # single-version convenience libraries. Whenever we create # different ones for PIC/non-PIC, this we'll have to duplicate # the extraction. reload_conv_objs= gentop= # reload_cmds runs $LD directly, so let us get rid of # -Wl from whole_archive_flag_spec and hope we can get by with # turning comma into space.. wl= if test -n "$convenience"; then if test -n "$whole_archive_flag_spec"; then eval tmp_whole_archive_flags=\"$whole_archive_flag_spec\" reload_conv_objs=$reload_objs\ `$ECHO "$tmp_whole_archive_flags" | $SED 's|,| |g'` else gentop="$output_objdir/${obj}x" func_append generated " $gentop" func_extract_archives $gentop $convenience reload_conv_objs="$reload_objs $func_extract_archives_result" fi fi # If we're not building shared, we need to use non_pic_objs test "$build_libtool_libs" != yes && libobjs="$non_pic_objects" # Create the old-style object. reload_objs="$objs$old_deplibs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.${libext}$/d; /\.lib$/d; $lo2o" | $NL2SP`" $reload_conv_objs" ### testsuite: skip nested quoting test output="$obj" func_execute_cmds "$reload_cmds" 'exit $?' # Exit if we aren't doing a library object file. if test -z "$libobj"; then if test -n "$gentop"; then func_show_eval '${RM}r "$gentop"' fi exit $EXIT_SUCCESS fi if test "$build_libtool_libs" != yes; then if test -n "$gentop"; then func_show_eval '${RM}r "$gentop"' fi # Create an invalid libtool object if no PIC, so that we don't # accidentally link it into a program. # $show "echo timestamp > $libobj" # $opt_dry_run || eval "echo timestamp > $libobj" || exit $? exit $EXIT_SUCCESS fi if test -n "$pic_flag" || test "$pic_mode" != default; then # Only do commands if we really have different PIC objects. reload_objs="$libobjs $reload_conv_objs" output="$libobj" func_execute_cmds "$reload_cmds" 'exit $?' fi if test -n "$gentop"; then func_show_eval '${RM}r "$gentop"' fi exit $EXIT_SUCCESS ;; prog) case $host in *cygwin*) func_stripname '' '.exe' "$output" output=$func_stripname_result.exe;; esac test -n "$vinfo" && \ func_warning "\`-version-info' is ignored for programs" test -n "$release" && \ func_warning "\`-release' is ignored for programs" test "$preload" = yes \ && test "$dlopen_support" = unknown \ && test "$dlopen_self" = unknown \ && test "$dlopen_self_static" = unknown && \ func_warning "\`LT_INIT([dlopen])' not used. Assuming no dlopen support." case $host in *-*-rhapsody* | *-*-darwin1.[012]) # On Rhapsody replace the C library is the System framework compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's/ -lc / System.ltframework /'` finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's/ -lc / System.ltframework /'` ;; esac case $host in *-*-darwin*) # Don't allow lazy linking, it breaks C++ global constructors # But is supposedly fixed on 10.4 or later (yay!). if test "$tagname" = CXX ; then case ${MACOSX_DEPLOYMENT_TARGET-10.0} in 10.[0123]) func_append compile_command " ${wl}-bind_at_load" func_append finalize_command " ${wl}-bind_at_load" ;; esac fi # Time to change all our "foo.ltframework" stuff back to "-framework foo" compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` ;; esac # move library search paths that coincide with paths to not yet # installed libraries to the beginning of the library search list new_libs= for path in $notinst_path; do case " $new_libs " in *" -L$path/$objdir "*) ;; *) case " $compile_deplibs " in *" -L$path/$objdir "*) func_append new_libs " -L$path/$objdir" ;; esac ;; esac done for deplib in $compile_deplibs; do case $deplib in -L*) case " $new_libs " in *" $deplib "*) ;; *) func_append new_libs " $deplib" ;; esac ;; *) func_append new_libs " $deplib" ;; esac done compile_deplibs="$new_libs" func_append compile_command " $compile_deplibs" func_append finalize_command " $finalize_deplibs" if test -n "$rpath$xrpath"; then # If the user specified any rpath flags, then add them. for libdir in $rpath $xrpath; do # This is the magic to use -rpath. case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac done fi # Now hardcode the library paths rpath= hardcode_libdirs= for libdir in $compile_rpath $finalize_rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then if test -z "$hardcode_libdirs"; then hardcode_libdirs="$libdir" else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" func_append rpath " $flag" fi elif test -n "$runpath_var"; then case "$perm_rpath " in *" $libdir "*) ;; *) func_append perm_rpath " $libdir" ;; esac fi case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) testbindir=`${ECHO} "$libdir" | ${SED} -e 's*/lib$*/bin*'` case :$dllsearchpath: in *":$libdir:"*) ;; ::) dllsearchpath=$libdir;; *) func_append dllsearchpath ":$libdir";; esac case :$dllsearchpath: in *":$testbindir:"*) ;; ::) dllsearchpath=$testbindir;; *) func_append dllsearchpath ":$testbindir";; esac ;; esac done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir="$hardcode_libdirs" eval rpath=\" $hardcode_libdir_flag_spec\" fi compile_rpath="$rpath" rpath= hardcode_libdirs= for libdir in $finalize_rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then if test -z "$hardcode_libdirs"; then hardcode_libdirs="$libdir" else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" func_append rpath " $flag" fi elif test -n "$runpath_var"; then case "$finalize_perm_rpath " in *" $libdir "*) ;; *) func_append finalize_perm_rpath " $libdir" ;; esac fi done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir="$hardcode_libdirs" eval rpath=\" $hardcode_libdir_flag_spec\" fi finalize_rpath="$rpath" if test -n "$libobjs" && test "$build_old_libs" = yes; then # Transform all the library objects into standard objects. compile_command=`$ECHO "$compile_command" | $SP2NL | $SED "$lo2o" | $NL2SP` finalize_command=`$ECHO "$finalize_command" | $SP2NL | $SED "$lo2o" | $NL2SP` fi func_generate_dlsyms "$outputname" "@PROGRAM@" "no" # template prelinking step if test -n "$prelink_cmds"; then func_execute_cmds "$prelink_cmds" 'exit $?' fi wrappers_required=yes case $host in *cegcc* | *mingw32ce*) # Disable wrappers for cegcc and mingw32ce hosts, we are cross compiling anyway. wrappers_required=no ;; *cygwin* | *mingw* ) if test "$build_libtool_libs" != yes; then wrappers_required=no fi ;; *) if test "$need_relink" = no || test "$build_libtool_libs" != yes; then wrappers_required=no fi ;; esac if test "$wrappers_required" = no; then # Replace the output file specification. compile_command=`$ECHO "$compile_command" | $SED 's%@OUTPUT@%'"$output"'%g'` link_command="$compile_command$compile_rpath" # We have no uninstalled library dependencies, so finalize right now. exit_status=0 func_show_eval "$link_command" 'exit_status=$?' if test -n "$postlink_cmds"; then func_to_tool_file "$output" postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` func_execute_cmds "$postlink_cmds" 'exit $?' fi # Delete the generated files. if test -f "$output_objdir/${outputname}S.${objext}"; then func_show_eval '$RM "$output_objdir/${outputname}S.${objext}"' fi exit $exit_status fi if test -n "$compile_shlibpath$finalize_shlibpath"; then compile_command="$shlibpath_var=\"$compile_shlibpath$finalize_shlibpath\$$shlibpath_var\" $compile_command" fi if test -n "$finalize_shlibpath"; then finalize_command="$shlibpath_var=\"$finalize_shlibpath\$$shlibpath_var\" $finalize_command" fi compile_var= finalize_var= if test -n "$runpath_var"; then if test -n "$perm_rpath"; then # We should set the runpath_var. rpath= for dir in $perm_rpath; do func_append rpath "$dir:" done compile_var="$runpath_var=\"$rpath\$$runpath_var\" " fi if test -n "$finalize_perm_rpath"; then # We should set the runpath_var. rpath= for dir in $finalize_perm_rpath; do func_append rpath "$dir:" done finalize_var="$runpath_var=\"$rpath\$$runpath_var\" " fi fi if test "$no_install" = yes; then # We don't need to create a wrapper script. link_command="$compile_var$compile_command$compile_rpath" # Replace the output file specification. link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output"'%g'` # Delete the old output file. $opt_dry_run || $RM $output # Link the executable and exit func_show_eval "$link_command" 'exit $?' if test -n "$postlink_cmds"; then func_to_tool_file "$output" postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` func_execute_cmds "$postlink_cmds" 'exit $?' fi exit $EXIT_SUCCESS fi if test "$hardcode_action" = relink; then # Fast installation is not supported link_command="$compile_var$compile_command$compile_rpath" relink_command="$finalize_var$finalize_command$finalize_rpath" func_warning "this platform does not like uninstalled shared libraries" func_warning "\`$output' will be relinked during installation" else if test "$fast_install" != no; then link_command="$finalize_var$compile_command$finalize_rpath" if test "$fast_install" = yes; then relink_command=`$ECHO "$compile_var$compile_command$compile_rpath" | $SED 's%@OUTPUT@%\$progdir/\$file%g'` else # fast_install is set to needless relink_command= fi else link_command="$compile_var$compile_command$compile_rpath" relink_command="$finalize_var$finalize_command$finalize_rpath" fi fi # Replace the output file specification. link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'` # Delete the old output files. $opt_dry_run || $RM $output $output_objdir/$outputname $output_objdir/lt-$outputname func_show_eval "$link_command" 'exit $?' if test -n "$postlink_cmds"; then func_to_tool_file "$output_objdir/$outputname" postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output_objdir/$outputname"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` func_execute_cmds "$postlink_cmds" 'exit $?' fi # Now create the wrapper script. func_verbose "creating $output" # Quote the relink command for shipping. if test -n "$relink_command"; then # Preserve any variables that may affect compiler behavior for var in $variables_saved_for_relink; do if eval test -z \"\${$var+set}\"; then relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" elif eval var_value=\$$var; test -z "$var_value"; then relink_command="$var=; export $var; $relink_command" else func_quote_for_eval "$var_value" relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" fi done relink_command="(cd `pwd`; $relink_command)" relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` fi # Only actually do things if not in dry run mode. $opt_dry_run || { # win32 will think the script is a binary if it has # a .exe suffix, so we strip it off here. case $output in *.exe) func_stripname '' '.exe' "$output" output=$func_stripname_result ;; esac # test for cygwin because mv fails w/o .exe extensions case $host in *cygwin*) exeext=.exe func_stripname '' '.exe' "$outputname" outputname=$func_stripname_result ;; *) exeext= ;; esac case $host in *cygwin* | *mingw* ) func_dirname_and_basename "$output" "" "." output_name=$func_basename_result output_path=$func_dirname_result cwrappersource="$output_path/$objdir/lt-$output_name.c" cwrapper="$output_path/$output_name.exe" $RM $cwrappersource $cwrapper trap "$RM $cwrappersource $cwrapper; exit $EXIT_FAILURE" 1 2 15 func_emit_cwrapperexe_src > $cwrappersource # The wrapper executable is built using the $host compiler, # because it contains $host paths and files. If cross- # compiling, it, like the target executable, must be # executed on the $host or under an emulation environment. $opt_dry_run || { $LTCC $LTCFLAGS -o $cwrapper $cwrappersource $STRIP $cwrapper } # Now, create the wrapper script for func_source use: func_ltwrapper_scriptname $cwrapper $RM $func_ltwrapper_scriptname_result trap "$RM $func_ltwrapper_scriptname_result; exit $EXIT_FAILURE" 1 2 15 $opt_dry_run || { # note: this script will not be executed, so do not chmod. if test "x$build" = "x$host" ; then $cwrapper --lt-dump-script > $func_ltwrapper_scriptname_result else func_emit_wrapper no > $func_ltwrapper_scriptname_result fi } ;; * ) $RM $output trap "$RM $output; exit $EXIT_FAILURE" 1 2 15 func_emit_wrapper no > $output chmod +x $output ;; esac } exit $EXIT_SUCCESS ;; esac # See if we need to build an old-fashioned archive. for oldlib in $oldlibs; do if test "$build_libtool_libs" = convenience; then oldobjs="$libobjs_save $symfileobj" addlibs="$convenience" build_libtool_libs=no else if test "$build_libtool_libs" = module; then oldobjs="$libobjs_save" build_libtool_libs=no else oldobjs="$old_deplibs $non_pic_objects" if test "$preload" = yes && test -f "$symfileobj"; then func_append oldobjs " $symfileobj" fi fi addlibs="$old_convenience" fi if test -n "$addlibs"; then gentop="$output_objdir/${outputname}x" func_append generated " $gentop" func_extract_archives $gentop $addlibs func_append oldobjs " $func_extract_archives_result" fi # Do each command in the archive commands. if test -n "$old_archive_from_new_cmds" && test "$build_libtool_libs" = yes; then cmds=$old_archive_from_new_cmds else # Add any objects from preloaded convenience libraries if test -n "$dlprefiles"; then gentop="$output_objdir/${outputname}x" func_append generated " $gentop" func_extract_archives $gentop $dlprefiles func_append oldobjs " $func_extract_archives_result" fi # POSIX demands no paths to be encoded in archives. We have # to avoid creating archives with duplicate basenames if we # might have to extract them afterwards, e.g., when creating a # static archive out of a convenience library, or when linking # the entirety of a libtool archive into another (currently # not supported by libtool). if (for obj in $oldobjs do func_basename "$obj" $ECHO "$func_basename_result" done | sort | sort -uc >/dev/null 2>&1); then : else echo "copying selected object files to avoid basename conflicts..." gentop="$output_objdir/${outputname}x" func_append generated " $gentop" func_mkdir_p "$gentop" save_oldobjs=$oldobjs oldobjs= counter=1 for obj in $save_oldobjs do func_basename "$obj" objbase="$func_basename_result" case " $oldobjs " in " ") oldobjs=$obj ;; *[\ /]"$objbase "*) while :; do # Make sure we don't pick an alternate name that also # overlaps. newobj=lt$counter-$objbase func_arith $counter + 1 counter=$func_arith_result case " $oldobjs " in *[\ /]"$newobj "*) ;; *) if test ! -f "$gentop/$newobj"; then break; fi ;; esac done func_show_eval "ln $obj $gentop/$newobj || cp $obj $gentop/$newobj" func_append oldobjs " $gentop/$newobj" ;; *) func_append oldobjs " $obj" ;; esac done fi eval cmds=\"$old_archive_cmds\" func_len " $cmds" len=$func_len_result if test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then cmds=$old_archive_cmds elif test -n "$archiver_list_spec"; then func_verbose "using command file archive linking..." for obj in $oldobjs do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" done > $output_objdir/$libname.libcmd func_to_tool_file "$output_objdir/$libname.libcmd" oldobjs=" $archiver_list_spec$func_to_tool_file_result" cmds=$old_archive_cmds else # the command line is too long to link in one step, link in parts func_verbose "using piecewise archive linking..." save_RANLIB=$RANLIB RANLIB=: objlist= concat_cmds= save_oldobjs=$oldobjs oldobjs= # Is there a better way of finding the last object in the list? for obj in $save_oldobjs do last_oldobj=$obj done eval test_cmds=\"$old_archive_cmds\" func_len " $test_cmds" len0=$func_len_result len=$len0 for obj in $save_oldobjs do func_len " $obj" func_arith $len + $func_len_result len=$func_arith_result func_append objlist " $obj" if test "$len" -lt "$max_cmd_len"; then : else # the above command should be used before it gets too long oldobjs=$objlist if test "$obj" = "$last_oldobj" ; then RANLIB=$save_RANLIB fi test -z "$concat_cmds" || concat_cmds=$concat_cmds~ eval concat_cmds=\"\${concat_cmds}$old_archive_cmds\" objlist= len=$len0 fi done RANLIB=$save_RANLIB oldobjs=$objlist if test "X$oldobjs" = "X" ; then eval cmds=\"\$concat_cmds\" else eval cmds=\"\$concat_cmds~\$old_archive_cmds\" fi fi fi func_execute_cmds "$cmds" 'exit $?' done test -n "$generated" && \ func_show_eval "${RM}r$generated" # Now create the libtool archive. case $output in *.la) old_library= test "$build_old_libs" = yes && old_library="$libname.$libext" func_verbose "creating $output" # Preserve any variables that may affect compiler behavior for var in $variables_saved_for_relink; do if eval test -z \"\${$var+set}\"; then relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" elif eval var_value=\$$var; test -z "$var_value"; then relink_command="$var=; export $var; $relink_command" else func_quote_for_eval "$var_value" relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" fi done # Quote the link command for shipping. relink_command="(cd `pwd`; $SHELL $progpath $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)" relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` if test "$hardcode_automatic" = yes ; then relink_command= fi # Only create the output if not a dry run. $opt_dry_run || { for installed in no yes; do if test "$installed" = yes; then if test -z "$install_libdir"; then break fi output="$output_objdir/$outputname"i # Replace all uninstalled libtool libraries with the installed ones newdependency_libs= for deplib in $dependency_libs; do case $deplib in *.la) func_basename "$deplib" name="$func_basename_result" eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` test -z "$libdir" && \ func_fatal_error "\`$deplib' is not a valid libtool archive" func_append newdependency_libs " ${lt_sysroot:+=}$libdir/$name" ;; -L*) func_stripname -L '' "$deplib" func_replace_sysroot "$func_stripname_result" func_append newdependency_libs " -L$func_replace_sysroot_result" ;; -R*) func_stripname -R '' "$deplib" func_replace_sysroot "$func_stripname_result" func_append newdependency_libs " -R$func_replace_sysroot_result" ;; *) func_append newdependency_libs " $deplib" ;; esac done dependency_libs="$newdependency_libs" newdlfiles= for lib in $dlfiles; do case $lib in *.la) func_basename "$lib" name="$func_basename_result" eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` test -z "$libdir" && \ func_fatal_error "\`$lib' is not a valid libtool archive" func_append newdlfiles " ${lt_sysroot:+=}$libdir/$name" ;; *) func_append newdlfiles " $lib" ;; esac done dlfiles="$newdlfiles" newdlprefiles= for lib in $dlprefiles; do case $lib in *.la) # Only pass preopened files to the pseudo-archive (for # eventual linking with the app. that links it) if we # didn't already link the preopened objects directly into # the library: func_basename "$lib" name="$func_basename_result" eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` test -z "$libdir" && \ func_fatal_error "\`$lib' is not a valid libtool archive" func_append newdlprefiles " ${lt_sysroot:+=}$libdir/$name" ;; esac done dlprefiles="$newdlprefiles" else newdlfiles= for lib in $dlfiles; do case $lib in [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;; *) abs=`pwd`"/$lib" ;; esac func_append newdlfiles " $abs" done dlfiles="$newdlfiles" newdlprefiles= for lib in $dlprefiles; do case $lib in [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;; *) abs=`pwd`"/$lib" ;; esac func_append newdlprefiles " $abs" done dlprefiles="$newdlprefiles" fi $RM $output # place dlname in correct position for cygwin # In fact, it would be nice if we could use this code for all target # systems that can't hard-code library paths into their executables # and that have no shared library path variable independent of PATH, # but it turns out we can't easily determine that from inspecting # libtool variables, so we have to hard-code the OSs to which it # applies here; at the moment, that means platforms that use the PE # object format with DLL files. See the long comment at the top of # tests/bindir.at for full details. tdlname=$dlname case $host,$output,$installed,$module,$dlname in *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll | *cegcc*,*lai,yes,no,*.dll) # If a -bindir argument was supplied, place the dll there. if test "x$bindir" != x ; then func_relative_path "$install_libdir" "$bindir" tdlname=$func_relative_path_result$dlname else # Otherwise fall back on heuristic. tdlname=../bin/$dlname fi ;; esac $ECHO > $output "\ # $outputname - a libtool library file # Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION # # Please DO NOT delete this file! # It is necessary for linking the library. # The name that we can dlopen(3). dlname='$tdlname' # Names of this library. library_names='$library_names' # The name of the static archive. old_library='$old_library' # Linker flags that can not go in dependency_libs. inherited_linker_flags='$new_inherited_linker_flags' # Libraries that this one depends upon. dependency_libs='$dependency_libs' # Names of additional weak libraries provided by this library weak_library_names='$weak_libs' # Version information for $libname. current=$current age=$age revision=$revision # Is this an already installed library? installed=$installed # Should we warn about portability when linking against -modules? shouldnotlink=$module # Files to dlopen/dlpreopen dlopen='$dlfiles' dlpreopen='$dlprefiles' # Directory that this library needs to be installed in: libdir='$install_libdir'" if test "$installed" = no && test "$need_relink" = yes; then $ECHO >> $output "\ relink_command=\"$relink_command\"" fi done } # Do a symbolic link so that the libtool archive can be found in # LD_LIBRARY_PATH before the program is installed. func_show_eval '( cd "$output_objdir" && $RM "$outputname" && $LN_S "../$outputname" "$outputname" )' 'exit $?' ;; esac exit $EXIT_SUCCESS } { test "$opt_mode" = link || test "$opt_mode" = relink; } && func_mode_link ${1+"$@"} # func_mode_uninstall arg... func_mode_uninstall () { $opt_debug RM="$nonopt" files= rmforce= exit_status=0 # This variable tells wrapper scripts just to set variables rather # than running their programs. libtool_install_magic="$magic" for arg do case $arg in -f) func_append RM " $arg"; rmforce=yes ;; -*) func_append RM " $arg" ;; *) func_append files " $arg" ;; esac done test -z "$RM" && \ func_fatal_help "you must specify an RM program" rmdirs= for file in $files; do func_dirname "$file" "" "." dir="$func_dirname_result" if test "X$dir" = X.; then odir="$objdir" else odir="$dir/$objdir" fi func_basename "$file" name="$func_basename_result" test "$opt_mode" = uninstall && odir="$dir" # Remember odir for removal later, being careful to avoid duplicates if test "$opt_mode" = clean; then case " $rmdirs " in *" $odir "*) ;; *) func_append rmdirs " $odir" ;; esac fi # Don't error if the file doesn't exist and rm -f was used. if { test -L "$file"; } >/dev/null 2>&1 || { test -h "$file"; } >/dev/null 2>&1 || test -f "$file"; then : elif test -d "$file"; then exit_status=1 continue elif test "$rmforce" = yes; then continue fi rmfiles="$file" case $name in *.la) # Possibly a libtool archive, so verify it. if func_lalib_p "$file"; then func_source $dir/$name # Delete the libtool libraries and symlinks. for n in $library_names; do func_append rmfiles " $odir/$n" done test -n "$old_library" && func_append rmfiles " $odir/$old_library" case "$opt_mode" in clean) case " $library_names " in *" $dlname "*) ;; *) test -n "$dlname" && func_append rmfiles " $odir/$dlname" ;; esac test -n "$libdir" && func_append rmfiles " $odir/$name $odir/${name}i" ;; uninstall) if test -n "$library_names"; then # Do each command in the postuninstall commands. func_execute_cmds "$postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1' fi if test -n "$old_library"; then # Do each command in the old_postuninstall commands. func_execute_cmds "$old_postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1' fi # FIXME: should reinstall the best remaining shared library. ;; esac fi ;; *.lo) # Possibly a libtool object, so verify it. if func_lalib_p "$file"; then # Read the .lo file func_source $dir/$name # Add PIC object to the list of files to remove. if test -n "$pic_object" && test "$pic_object" != none; then func_append rmfiles " $dir/$pic_object" fi # Add non-PIC object to the list of files to remove. if test -n "$non_pic_object" && test "$non_pic_object" != none; then func_append rmfiles " $dir/$non_pic_object" fi fi ;; *) if test "$opt_mode" = clean ; then noexename=$name case $file in *.exe) func_stripname '' '.exe' "$file" file=$func_stripname_result func_stripname '' '.exe' "$name" noexename=$func_stripname_result # $file with .exe has already been added to rmfiles, # add $file without .exe func_append rmfiles " $file" ;; esac # Do a test to see if this is a libtool program. if func_ltwrapper_p "$file"; then if func_ltwrapper_executable_p "$file"; then func_ltwrapper_scriptname "$file" relink_command= func_source $func_ltwrapper_scriptname_result func_append rmfiles " $func_ltwrapper_scriptname_result" else relink_command= func_source $dir/$noexename fi # note $name still contains .exe if it was in $file originally # as does the version of $file that was added into $rmfiles func_append rmfiles " $odir/$name $odir/${name}S.${objext}" if test "$fast_install" = yes && test -n "$relink_command"; then func_append rmfiles " $odir/lt-$name" fi if test "X$noexename" != "X$name" ; then func_append rmfiles " $odir/lt-${noexename}.c" fi fi fi ;; esac func_show_eval "$RM $rmfiles" 'exit_status=1' done # Try to remove the ${objdir}s in the directories where we deleted files for dir in $rmdirs; do if test -d "$dir"; then func_show_eval "rmdir $dir >/dev/null 2>&1" fi done exit $exit_status } { test "$opt_mode" = uninstall || test "$opt_mode" = clean; } && func_mode_uninstall ${1+"$@"} test -z "$opt_mode" && { help="$generic_help" func_fatal_help "you must specify a MODE" } test -z "$exec_cmd" && \ func_fatal_help "invalid operation mode \`$opt_mode'" if test -n "$exec_cmd"; then eval exec "$exec_cmd" exit $EXIT_FAILURE fi exit $exit_status # The TAGs below are defined such that we never get into a situation # in which we disable both kinds of libraries. Given conflicting # choices, we go for a static library, that is the most portable, # since we can't tell whether shared libraries were disabled because # the user asked for that or because the platform doesn't support # them. This is particularly important on AIX, because we don't # support having both static and shared libraries enabled at the same # time on that platform, so we default to a shared-only configuration. # If a disable-shared tag is given, we'll fallback to a static-only # configuration. But we'll never go from static-only to shared-only. # ### BEGIN LIBTOOL TAG CONFIG: disable-shared build_libtool_libs=no build_old_libs=yes # ### END LIBTOOL TAG CONFIG: disable-shared # ### BEGIN LIBTOOL TAG CONFIG: disable-static build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac` # ### END LIBTOOL TAG CONFIG: disable-static # Local Variables: # mode:shell-script # sh-indentation:2 # End: # vi:sw=2 cpputest-3.4/missing0000755000175300017530000002623312134202474011562 00000000000000#! /bin/sh # Common stub for a few missing GNU programs while installing. scriptversion=2009-04-28.21; # UTC # Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006, # 2008, 2009 Free Software Foundation, Inc. # Originally by Fran,cois Pinard , 1996. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. if test $# -eq 0; then echo 1>&2 "Try \`$0 --help' for more information" exit 1 fi run=: sed_output='s/.* --output[ =]\([^ ]*\).*/\1/p' sed_minuso='s/.* -o \([^ ]*\).*/\1/p' # In the cases where this matters, `missing' is being run in the # srcdir already. if test -f configure.ac; then configure_ac=configure.ac else configure_ac=configure.in fi msg="missing on your system" case $1 in --run) # Try to run requested program, and just exit if it succeeds. run= shift "$@" && exit 0 # Exit code 63 means version mismatch. This often happens # when the user try to use an ancient version of a tool on # a file that requires a minimum version. In this case we # we should proceed has if the program had been absent, or # if --run hadn't been passed. if test $? = 63; then run=: msg="probably too old" fi ;; -h|--h|--he|--hel|--help) echo "\ $0 [OPTION]... PROGRAM [ARGUMENT]... Handle \`PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return an error status if there is no known handling for PROGRAM. Options: -h, --help display this help and exit -v, --version output version information and exit --run try to run the given command, and emulate it if it fails Supported PROGRAM values: aclocal touch file \`aclocal.m4' autoconf touch file \`configure' autoheader touch file \`config.h.in' autom4te touch the output file, or create a stub one automake touch all \`Makefile.in' files bison create \`y.tab.[ch]', if possible, from existing .[ch] flex create \`lex.yy.c', if possible, from existing .c help2man touch the output file lex create \`lex.yy.c', if possible, from existing .c makeinfo touch the output file tar try tar, gnutar, gtar, then tar without non-portable flags yacc create \`y.tab.[ch]', if possible, from existing .[ch] Version suffixes to PROGRAM as well as the prefixes \`gnu-', \`gnu', and \`g' are ignored when checking the name. Send bug reports to ." exit $? ;; -v|--v|--ve|--ver|--vers|--versi|--versio|--version) echo "missing $scriptversion (GNU Automake)" exit $? ;; -*) echo 1>&2 "$0: Unknown \`$1' option" echo 1>&2 "Try \`$0 --help' for more information" exit 1 ;; esac # normalize program name to check for. program=`echo "$1" | sed ' s/^gnu-//; t s/^gnu//; t s/^g//; t'` # Now exit if we have it, but it failed. Also exit now if we # don't have it and --version was passed (most likely to detect # the program). This is about non-GNU programs, so use $1 not # $program. case $1 in lex*|yacc*) # Not GNU programs, they don't have --version. ;; tar*) if test -n "$run"; then echo 1>&2 "ERROR: \`tar' requires --run" exit 1 elif test "x$2" = "x--version" || test "x$2" = "x--help"; then exit 1 fi ;; *) if test -z "$run" && ($1 --version) > /dev/null 2>&1; then # We have it, but it failed. exit 1 elif test "x$2" = "x--version" || test "x$2" = "x--help"; then # Could not run --version or --help. This is probably someone # running `$TOOL --version' or `$TOOL --help' to check whether # $TOOL exists and not knowing $TOOL uses missing. exit 1 fi ;; esac # If it does not exist, or fails to run (possibly an outdated version), # try to emulate it. case $program in aclocal*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`acinclude.m4' or \`${configure_ac}'. You might want to install the \`Automake' and \`Perl' packages. Grab them from any GNU archive site." touch aclocal.m4 ;; autoconf*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`${configure_ac}'. You might want to install the \`Autoconf' and \`GNU m4' packages. Grab them from any GNU archive site." touch configure ;; autoheader*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`acconfig.h' or \`${configure_ac}'. You might want to install the \`Autoconf' and \`GNU m4' packages. Grab them from any GNU archive site." files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' ${configure_ac}` test -z "$files" && files="config.h" touch_files= for f in $files; do case $f in *:*) touch_files="$touch_files "`echo "$f" | sed -e 's/^[^:]*://' -e 's/:.*//'`;; *) touch_files="$touch_files $f.in";; esac done touch $touch_files ;; automake*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`Makefile.am', \`acinclude.m4' or \`${configure_ac}'. You might want to install the \`Automake' and \`Perl' packages. Grab them from any GNU archive site." find . -type f -name Makefile.am -print | sed 's/\.am$/.in/' | while read f; do touch "$f"; done ;; autom4te*) echo 1>&2 "\ WARNING: \`$1' is needed, but is $msg. You might have modified some files without having the proper tools for further handling them. You can get \`$1' as part of \`Autoconf' from any GNU archive site." file=`echo "$*" | sed -n "$sed_output"` test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` if test -f "$file"; then touch $file else test -z "$file" || exec >$file echo "#! /bin/sh" echo "# Created by GNU Automake missing as a replacement of" echo "# $ $@" echo "exit 0" chmod +x $file exit 1 fi ;; bison*|yacc*) echo 1>&2 "\ WARNING: \`$1' $msg. You should only need it if you modified a \`.y' file. You may need the \`Bison' package in order for those modifications to take effect. You can get \`Bison' from any GNU archive site." rm -f y.tab.c y.tab.h if test $# -ne 1; then eval LASTARG="\${$#}" case $LASTARG in *.y) SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'` if test -f "$SRCFILE"; then cp "$SRCFILE" y.tab.c fi SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'` if test -f "$SRCFILE"; then cp "$SRCFILE" y.tab.h fi ;; esac fi if test ! -f y.tab.h; then echo >y.tab.h fi if test ! -f y.tab.c; then echo 'main() { return 0; }' >y.tab.c fi ;; lex*|flex*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a \`.l' file. You may need the \`Flex' package in order for those modifications to take effect. You can get \`Flex' from any GNU archive site." rm -f lex.yy.c if test $# -ne 1; then eval LASTARG="\${$#}" case $LASTARG in *.l) SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'` if test -f "$SRCFILE"; then cp "$SRCFILE" lex.yy.c fi ;; esac fi if test ! -f lex.yy.c; then echo 'main() { return 0; }' >lex.yy.c fi ;; help2man*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a dependency of a manual page. You may need the \`Help2man' package in order for those modifications to take effect. You can get \`Help2man' from any GNU archive site." file=`echo "$*" | sed -n "$sed_output"` test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` if test -f "$file"; then touch $file else test -z "$file" || exec >$file echo ".ab help2man is required to generate this page" exit $? fi ;; makeinfo*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a \`.texi' or \`.texinfo' file, or any other file indirectly affecting the aspect of the manual. The spurious call might also be the consequence of using a buggy \`make' (AIX, DU, IRIX). You might want to install the \`Texinfo' package or the \`GNU make' package. Grab either from any GNU archive site." # The file to touch is that specified with -o ... file=`echo "$*" | sed -n "$sed_output"` test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` if test -z "$file"; then # ... or it is the one specified with @setfilename ... infile=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'` file=`sed -n ' /^@setfilename/{ s/.* \([^ ]*\) *$/\1/ p q }' $infile` # ... or it is derived from the source name (dir/f.texi becomes f.info) test -z "$file" && file=`echo "$infile" | sed 's,.*/,,;s,.[^.]*$,,'`.info fi # If the file does not exist, the user really needs makeinfo; # let's fail without touching anything. test -f $file || exit 1 touch $file ;; tar*) shift # We have already tried tar in the generic part. # Look for gnutar/gtar before invocation to avoid ugly error # messages. if (gnutar --version > /dev/null 2>&1); then gnutar "$@" && exit 0 fi if (gtar --version > /dev/null 2>&1); then gtar "$@" && exit 0 fi firstarg="$1" if shift; then case $firstarg in *o*) firstarg=`echo "$firstarg" | sed s/o//` tar "$firstarg" "$@" && exit 0 ;; esac case $firstarg in *h*) firstarg=`echo "$firstarg" | sed s/h//` tar "$firstarg" "$@" && exit 0 ;; esac fi echo 1>&2 "\ WARNING: I can't seem to be able to run \`tar' with the given arguments. You may want to install GNU tar or Free paxutils, or check the command line arguments." exit 1 ;; *) echo 1>&2 "\ WARNING: \`$1' is needed, and is $msg. You might have modified some files without having the proper tools for further handling them. Check the \`README' file, it often tells you about the needed prerequisites for installing this package. You may also peek at any GNU archive site, in case some other package would contain this missing \`$1' program." exit 1 ;; esac exit 0 # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: cpputest-3.4/.cdtproject0000644000175300017530000000420312023251674012321 00000000000000 cpputest-3.4/.cproject0000644000175300017530000001403712023251674011777 00000000000000 make extensions true true true make examples true true true make cleanExamples true true true cpputest-3.4/.gitignore0000644000175300017530000000047412134163705012155 00000000000000.DS_Store *.swp *.*~ .*~ *.d *.o *.a .settings *doxygen* *.gcov *.gcno *.gcda *_tests *_cslim *a.out *.zip tmp pdfs *.map gcov objs lib *_tests.txt gcov*.html ErrorLogs testResults .metadata Debug */Debug/* *.exe *.obj *.ncb *.opt *.plg *.idb *.pdb *.sou *.sdf *.lib *.log *.tlog *.cache *.user _build_ _build build cpputest-3.4/.project0000644000175300017530000000435612023251674011637 00000000000000 CppUTest org.eclipse.cdt.managedbuilder.core.genmakebuilder ?name? org.eclipse.cdt.make.core.append_environment true org.eclipse.cdt.make.core.autoBuildTarget all org.eclipse.cdt.make.core.buildArguments org.eclipse.cdt.make.core.buildCommand make org.eclipse.cdt.make.core.cleanBuildTarget clean org.eclipse.cdt.make.core.contents org.eclipse.cdt.make.core.activeConfigSettings org.eclipse.cdt.make.core.enableAutoBuild true org.eclipse.cdt.make.core.enableCleanBuild true org.eclipse.cdt.make.core.enableFullBuild true org.eclipse.cdt.make.core.fullBuildTarget all org.eclipse.cdt.make.core.stopOnError true org.eclipse.cdt.make.core.useDefaultBuildCmd true org.eclipse.cdt.managedbuilder.core.ScannerConfigBuilder full,incremental, org.eclipse.cdt.core.cnature org.eclipse.cdt.core.ccnature org.eclipse.cdt.managedbuilder.core.managedBuildNature org.eclipse.cdt.managedbuilder.core.ScannerConfigNature cpputest-3.4/.travis.yml0000644000175300017530000000102512143637532012273 00000000000000language: cpp compiler: - clang - gcc env: - BUILDTOOL=autotools - BUILDTOOL=cmake install: - wget https://googlemock.googlecode.com/files/gmock-1.6.0.zip - unzip gmock-1.6.0.zip - cd gmock-1.6.0 - ./configure && make - cd .. before_script: - export GMOCK_HOME=$TRAVIS_BUILD_DIR/gmock-1.6.0 - export GTEST_HOME=$TRAVIS_BUILD_DIR/gmock-1.6.0/gtest - export CPPUTEST_BUILD_DIR=$TRAVIS_BUILD_DIR/cpputest_build - mkdir -p $CPPUTEST_BUILD_DIR && cd $CPPUTEST_BUILD_DIR script: - ../scripts/travis_ci_build.sh cpputest-3.4/CMakeLists.txt0000644000175300017530000000463612137414545012735 00000000000000project(CppUTest) set(CppUTest_version_major 3) set(CppUTest_version_minor 3) # 2.6.3 is needed for ctest support cmake_minimum_required(VERSION 2.6.3) option(STD_C "Use the standard C library" ON) option(STD_CPP "Use the standard C++ library" ON) option(CPPUTEST_FLAGS "Use the CFLAGS/CXXFLAGS/LDFLAGS set by CppUTest" ON) option(MEMORY_LEAK_DETECTION "Enable memory leak detection" ON) option(EXTENSIONS "Use the CppUTest extenstion library" ON) option(MAP_FILE "Enable the creation of a map file" OFF) option(COVERAGE "Enable running with coverage" OFF) option(REAL_GTEST "Enable using real GTest rather than faking it" OFF) option(GMOCK "Enable using GMock" OFF) option(TESTS "Compile and make tests for the code?" ON) if(NOT CMAKE_BUILD_TYPE) set(CMAKE_BUILD_TYPE "RelWithDebInfo" CACHE STRING "What kind of build this is" FORCE) endif(NOT CMAKE_BUILD_TYPE) set(CppUTestRootDirectory ${PROJECT_SOURCE_DIR}) include("${CppUTestRootDirectory}/cmake/Modules/CppUTestConfigurationOptions.cmake") include(CTest) configure_file ( "${PROJECT_SOURCE_DIR}/config.h.cmake" "${PROJECT_BINARY_DIR}/config.h" ) include_directories(${PROJECT_BINARY_DIR}) add_definitions(-DHAVE_CONFIG_H) include_directories(${CppUTestRootDirectory}/include) add_subdirectory(src/CppUTest) if (EXTENSIONS) add_subdirectory(src/CppUTestExt) endif (EXTENSIONS) if (TESTS) add_subdirectory(tests) endif (TESTS) message(" ------------------------------------------------------- CppUTest Version ${CppUTest_version_major}.${CppUTest_version_minor} Current compiler options: CC: ${CMAKE_C_COMPILER} CXX: ${CMAKE_CXX_COMPILER} CppUTest CFLAGS: ${CPPUTEST_C_FLAGS} CppUTest CXXFLAGS: ${CPPUTEST_CXX_FLAGS} CppUTest LDFLAGS: ${CPPUTEST_LD_FLAGS} Features configure in CppUTest: Memory Leak Detection: ${MEMORY_LEAK_DETECTION} Compiling Extensions: ${EXTENSIONS} Use CppUTest flags: ${CPPUTEST_FLAGS} Using Standard C library: ${STD_C} Using Standard C++ library: ${STD_CPP} Generating map file: ${MAP_FILE} Compiling with coverage: ${COVERAGE} Use 'real' GTest: ${REAL_GTEST} Able to use GMock: ${GMOCK} ------------------------------------------------------- ") cpputest-3.4/CppUTest.dsp0000644000175300017530000001447212023251674012407 00000000000000# Microsoft Developer Studio Project File - Name="CppUTest" - Package Owner=<4> # Microsoft Developer Studio Generated Build File, Format Version 6.00 # ** DO NOT EDIT ** # TARGTYPE "Win32 (x86) Static Library" 0x0104 CFG=CppUTest - Win32 Debug !MESSAGE This is not a valid makefile. To build this project using NMAKE, !MESSAGE use the Export Makefile command and run !MESSAGE !MESSAGE NMAKE /f "CppUTest.mak". !MESSAGE !MESSAGE You can specify a configuration when running NMAKE !MESSAGE by defining the macro CFG on the command line. For example: !MESSAGE !MESSAGE NMAKE /f "CppUTest.mak" CFG="CppUTest - Win32 Debug" !MESSAGE !MESSAGE Possible choices for configuration are: !MESSAGE !MESSAGE "CppUTest - Win32 Release" (based on "Win32 (x86) Static Library") !MESSAGE "CppUTest - Win32 Debug" (based on "Win32 (x86) Static Library") !MESSAGE # Begin Project # PROP AllowPerConfigDependencies 0 # PROP Scc_ProjName "" # PROP Scc_LocalPath "" CPP=cl.exe RSC=rc.exe !IF "$(CFG)" == "CppUTest - Win32 Release" # PROP BASE Use_MFC 0 # PROP BASE Use_Debug_Libraries 0 # PROP BASE Output_Dir "Release" # PROP BASE Intermediate_Dir "Release" # PROP BASE Target_Dir "" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 0 # PROP Output_Dir "Release" # PROP Intermediate_Dir "Release" # PROP Target_Dir "" # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c # ADD CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c # ADD BASE RSC /l 0x409 /d "NDEBUG" # ADD RSC /l 0x409 /d "NDEBUG" BSC32=bscmake.exe # ADD BASE BSC32 /nologo # ADD BSC32 /nologo LIB32=link.exe -lib # ADD BASE LIB32 /nologo # ADD LIB32 /nologo !ELSEIF "$(CFG)" == "CppUTest - Win32 Debug" # PROP BASE Use_MFC 0 # PROP BASE Use_Debug_Libraries 1 # PROP BASE Output_Dir "Debug" # PROP BASE Intermediate_Dir "Debug" # PROP BASE Target_Dir "" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 1 # PROP Output_Dir "Debug" # PROP Intermediate_Dir "Debug" # PROP Target_Dir "" # ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c # ADD CPP /nologo /MDd /W3 /GX /ZI /Od /I ".\include" /I ".\include\Platforms\VisualCpp" /D "_LIB" /D "WIN32" /D "_DEBUG" /D "_MBCS" /FD /GZ /c # ADD BASE RSC /l 0x409 /d "_DEBUG" # ADD RSC /l 0x409 /d "_DEBUG" BSC32=bscmake.exe # ADD BASE BSC32 /nologo # ADD BSC32 /nologo LIB32=link.exe -lib # ADD BASE LIB32 /nologo # ADD LIB32 /nologo /out:"lib\CppUTest.lib" # Begin Special Build Tool SOURCE="$(InputPath)" PreLink_Cmds=del lib\vc6\CppUTest.lib del lib\CppUTest.lib PostBuild_Cmds=copy lib\CppUTest.lib lib\vc6\CppUTest.lib copy Debug\vc60.pdb lib\vc6\vc60.pdb # End Special Build Tool !ENDIF # Begin Target # Name "CppUTest - Win32 Release" # Name "CppUTest - Win32 Debug" # Begin Group "Source Files" # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" # Begin Source File SOURCE=.\src\CppUTest\CommandLineArguments.cpp # End Source File # Begin Source File SOURCE=.\src\CppUTest\CommandLineTestRunner.cpp # End Source File # Begin Source File SOURCE=.\src\CppUTest\JUnitTestOutput.cpp # End Source File # Begin Source File SOURCE=.\src\CppUTest\MemoryLeakDetector.cpp # End Source File # Begin Source File SOURCE=.\src\CppUTest\MemoryLeakWarningPlugin.cpp # End Source File # Begin Source File SOURCE=.\src\CppUTest\SimpleString.cpp # End Source File # Begin Source File SOURCE=.\src\CppUTest\TestFailure.cpp # End Source File # Begin Source File SOURCE=.\src\CppUTest\TestFilter.cpp # End Source File # Begin Source File SOURCE=.\src\CppUTest\TestHarness_c.cpp # End Source File # Begin Source File SOURCE=.\src\CppUTest\TestMemoryAllocator.cpp # End Source File # Begin Source File SOURCE=.\src\CppUTest\TestOutput.cpp # End Source File # Begin Source File SOURCE=.\src\CppUTest\TestPlugin.cpp # End Source File # Begin Source File SOURCE=.\src\CppUTest\TestRegistry.cpp # End Source File # Begin Source File SOURCE=.\src\CppUTest\TestResult.cpp # End Source File # Begin Source File SOURCE=.\src\CppUTest\Utest.cpp # End Source File # Begin Source File SOURCE=.\src\Platforms\VisualCpp\UtestPlatform.cpp # End Source File # End Group # Begin Group "Header Files" # PROP Default_Filter "h;hpp;hxx;hm;inl" # Begin Source File SOURCE=.\include\CppUTest\CommandLineArguments.h # End Source File # Begin Source File SOURCE=.\include\CppUTest\CommandLineTestRunner.h # End Source File # Begin Source File SOURCE=.\include\CppUTest\JUnitTestOutput.h # End Source File # Begin Source File SOURCE=.\include\CppUTest\MemoryLeakDetector.h # End Source File # Begin Source File SOURCE=.\include\CppUTest\MemoryLeakDetectorMallocMacros.h # End Source File # Begin Source File SOURCE=.\include\CppUTest\MemoryLeakDetectorNewMacros.h # End Source File # Begin Source File SOURCE=.\include\CppUTest\MemoryLeakWarningPlugin.h # End Source File # Begin Source File SOURCE=.\include\CppUTest\PlatformSpecificFunctions.h # End Source File # Begin Source File SOURCE=.\include\CppUTest\SimpleString.h # End Source File # Begin Source File SOURCE=.\include\CppUTest\StandardCLibrary.h # End Source File # Begin Source File SOURCE=.\include\CppUTest\TestFailure.h # End Source File # Begin Source File SOURCE=.\include\CppUTest\TestFilter.h # End Source File # Begin Source File SOURCE=.\include\CppUTest\TestHarness.h # End Source File # Begin Source File SOURCE=.\include\CppUTest\TestHarness_c.h # End Source File # Begin Source File SOURCE=.\include\CppUTest\TestMemoryAllocator.h # End Source File # Begin Source File SOURCE=.\include\CppUTest\TestOutput.h # End Source File # Begin Source File SOURCE=.\include\CppUTest\TestPlugin.h # End Source File # Begin Source File SOURCE=.\include\CppUTest\TestRegistry.h # End Source File # Begin Source File SOURCE=.\include\CppUTest\TestResult.h # End Source File # Begin Source File SOURCE=.\include\CppUTest\TestTestingFixture.h # End Source File # Begin Source File SOURCE=.\include\CppUTest\Utest.h # End Source File # Begin Source File SOURCE=.\include\CppUTest\UtestMacros.h # End Source File # Begin Source File SOURCE=.\include\CppUTest\VirtualCall.h # End Source File # End Group # End Target # End Project cpputest-3.4/CppUTest.dsw0000644000175300017530000000147112023251674012411 00000000000000Microsoft Developer Studio Workspace File, Format Version 6.00 # WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! ############################################################################### Project: "AllTests"=.\tests\AllTests.dsp - Package Owner=<4> Package=<5> {{{ }}} Package=<4> {{{ Begin Project Dependency Project_Dep_Name CppUTest End Project Dependency }}} ############################################################################### Project: "CppUTest"=.\CppUTest.dsp - Package Owner=<4> Package=<5> {{{ }}} Package=<4> {{{ }}} ############################################################################### Global: Package=<5> {{{ }}} Package=<3> {{{ }}} ############################################################################### cpputest-3.4/CppUTest.mak0000644000175300017530000001643712023251674012374 00000000000000# Microsoft Developer Studio Generated NMAKE File, Based on CppUTest.dsp !IF "$(CFG)" == "" CFG=CppUTest - Win32 Debug !MESSAGE No configuration specified. Defaulting to CppUTest - Win32 Debug. !ENDIF !IF "$(CFG)" != "CppUTest - Win32 Release" && "$(CFG)" != "CppUTest - Win32 Debug" !MESSAGE Invalid configuration "$(CFG)" specified. !MESSAGE You can specify a configuration when running NMAKE !MESSAGE by defining the macro CFG on the command line. For example: !MESSAGE !MESSAGE NMAKE /f "CppUTest.mak" CFG="CppUTest - Win32 Debug" !MESSAGE !MESSAGE Possible choices for configuration are: !MESSAGE !MESSAGE "CppUTest - Win32 Release" (based on "Win32 (x86) Static Library") !MESSAGE "CppUTest - Win32 Debug" (based on "Win32 (x86) Static Library") !MESSAGE !ERROR An invalid configuration is specified. !ENDIF !IF "$(OS)" == "Windows_NT" NULL= !ELSE NULL=nul !ENDIF CPP=cl.exe RSC=rc.exe !IF "$(CFG)" == "CppUTest - Win32 Release" OUTDIR=.\Release INTDIR=.\Release # Begin Custom Macros OutDir=.\Release # End Custom Macros ALL : "$(OUTDIR)\CppUTest.lib" CLEAN : -@erase "$(INTDIR)\CommandLineArguments.obj" -@erase "$(INTDIR)\CommandLineTestRunner.obj" -@erase "$(INTDIR)\Failure.obj" -@erase "$(INTDIR)\JUnitTestOutput.obj" -@erase "$(INTDIR)\MemoryLeakAllocator.obj" -@erase "$(INTDIR)\MemoryLeakDetector.obj" -@erase "$(INTDIR)\MemoryLeakWarningPlugin.obj" -@erase "$(INTDIR)\SimpleString.obj" -@erase "$(INTDIR)\TestHarness_c.obj" -@erase "$(INTDIR)\TestOutput.obj" -@erase "$(INTDIR)\TestPlugin.obj" -@erase "$(INTDIR)\TestRegistry.obj" -@erase "$(INTDIR)\TestResult.obj" -@erase "$(INTDIR)\Utest.obj" -@erase "$(INTDIR)\UtestPlatform.obj" -@erase "$(INTDIR)\vc60.idb" -@erase "$(OUTDIR)\CppUTest.lib" "$(OUTDIR)" : if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)" CPP_PROJ=/nologo /ML /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /Fp"$(INTDIR)\CppUTest.pch" /YX /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\\" /FD /c BSC32=bscmake.exe BSC32_FLAGS=/nologo /o"$(OUTDIR)\CppUTest.bsc" BSC32_SBRS= \ LIB32=link.exe -lib LIB32_FLAGS=/nologo /out:"$(OUTDIR)\CppUTest.lib" LIB32_OBJS= \ "$(INTDIR)\CommandLineArguments.obj" \ "$(INTDIR)\CommandLineTestRunner.obj" \ "$(INTDIR)\Failure.obj" \ "$(INTDIR)\JUnitTestOutput.obj" \ "$(INTDIR)\MemoryLeakAllocator.obj" \ "$(INTDIR)\MemoryLeakDetector.obj" \ "$(INTDIR)\MemoryLeakWarningPlugin.obj" \ "$(INTDIR)\SimpleString.obj" \ "$(INTDIR)\TestHarness_c.obj" \ "$(INTDIR)\TestOutput.obj" \ "$(INTDIR)\TestPlugin.obj" \ "$(INTDIR)\TestRegistry.obj" \ "$(INTDIR)\TestResult.obj" \ "$(INTDIR)\Utest.obj" \ "$(INTDIR)\UtestPlatform.obj" "$(OUTDIR)\CppUTest.lib" : "$(OUTDIR)" $(DEF_FILE) $(LIB32_OBJS) $(LIB32) @<< $(LIB32_FLAGS) $(DEF_FLAGS) $(LIB32_OBJS) << !ELSEIF "$(CFG)" == "CppUTest - Win32 Debug" OUTDIR=.\Debug INTDIR=.\Debug ALL : ".\lib\CppUTest.lib" CLEAN : -@erase "$(INTDIR)\CommandLineArguments.obj" -@erase "$(INTDIR)\CommandLineTestRunner.obj" -@erase "$(INTDIR)\Failure.obj" -@erase "$(INTDIR)\JUnitTestOutput.obj" -@erase "$(INTDIR)\MemoryLeakAllocator.obj" -@erase "$(INTDIR)\MemoryLeakDetector.obj" -@erase "$(INTDIR)\MemoryLeakWarningPlugin.obj" -@erase "$(INTDIR)\SimpleString.obj" -@erase "$(INTDIR)\TestHarness_c.obj" -@erase "$(INTDIR)\TestOutput.obj" -@erase "$(INTDIR)\TestPlugin.obj" -@erase "$(INTDIR)\TestRegistry.obj" -@erase "$(INTDIR)\TestResult.obj" -@erase "$(INTDIR)\Utest.obj" -@erase "$(INTDIR)\UtestPlatform.obj" -@erase "$(INTDIR)\vc60.idb" -@erase "$(INTDIR)\vc60.pdb" -@erase ".\lib\CppUTest.lib" "$(OUTDIR)" : if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)" CPP_PROJ=/nologo /MDd /W3 /GX /ZI /Od /I ".\include" /I ".\include\Platforms\VisualCpp" /D "_LIB" /D "WIN32" /D "_DEBUG" /D "_MBCS" /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\\" /FD /GZ /c BSC32=bscmake.exe BSC32_FLAGS=/nologo /o"$(OUTDIR)\CppUTest.bsc" BSC32_SBRS= \ LIB32=link.exe -lib LIB32_FLAGS=/nologo /out:"lib\CppUTest.lib" LIB32_OBJS= \ "$(INTDIR)\CommandLineArguments.obj" \ "$(INTDIR)\CommandLineTestRunner.obj" \ "$(INTDIR)\Failure.obj" \ "$(INTDIR)\JUnitTestOutput.obj" \ "$(INTDIR)\MemoryLeakAllocator.obj" \ "$(INTDIR)\MemoryLeakDetector.obj" \ "$(INTDIR)\MemoryLeakWarningPlugin.obj" \ "$(INTDIR)\SimpleString.obj" \ "$(INTDIR)\TestHarness_c.obj" \ "$(INTDIR)\TestOutput.obj" \ "$(INTDIR)\TestPlugin.obj" \ "$(INTDIR)\TestRegistry.obj" \ "$(INTDIR)\TestResult.obj" \ "$(INTDIR)\Utest.obj" \ "$(INTDIR)\UtestPlatform.obj" ".\lib\CppUTest.lib" : "$(OUTDIR)" $(DEF_FILE) $(LIB32_OBJS) $(LIB32) @<< $(LIB32_FLAGS) $(DEF_FLAGS) $(LIB32_OBJS) << !ENDIF .c{$(INTDIR)}.obj:: $(CPP) @<< $(CPP_PROJ) $< << .cpp{$(INTDIR)}.obj:: $(CPP) @<< $(CPP_PROJ) $< << .cxx{$(INTDIR)}.obj:: $(CPP) @<< $(CPP_PROJ) $< << .c{$(INTDIR)}.sbr:: $(CPP) @<< $(CPP_PROJ) $< << .cpp{$(INTDIR)}.sbr:: $(CPP) @<< $(CPP_PROJ) $< << .cxx{$(INTDIR)}.sbr:: $(CPP) @<< $(CPP_PROJ) $< << !IF "$(NO_EXTERNAL_DEPS)" != "1" !IF EXISTS("CppUTest.dep") !INCLUDE "CppUTest.dep" !ELSE !MESSAGE Warning: cannot find "CppUTest.dep" !ENDIF !ENDIF !IF "$(CFG)" == "CppUTest - Win32 Release" || "$(CFG)" == "CppUTest - Win32 Debug" SOURCE=.\src\CppUTest\CommandLineArguments.cpp "$(INTDIR)\CommandLineArguments.obj" : $(SOURCE) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) SOURCE=.\src\CppUTest\CommandLineTestRunner.cpp "$(INTDIR)\CommandLineTestRunner.obj" : $(SOURCE) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) SOURCE=.\src\CppUTest\Failure.cpp "$(INTDIR)\Failure.obj" : $(SOURCE) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) SOURCE=.\src\CppUTest\JUnitTestOutput.cpp "$(INTDIR)\JUnitTestOutput.obj" : $(SOURCE) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) SOURCE=.\src\CppUTest\MemoryLeakAllocator.cpp "$(INTDIR)\MemoryLeakAllocator.obj" : $(SOURCE) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) SOURCE=.\src\CppUTest\MemoryLeakDetector.cpp "$(INTDIR)\MemoryLeakDetector.obj" : $(SOURCE) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) SOURCE=.\src\CppUTest\MemoryLeakWarningPlugin.cpp "$(INTDIR)\MemoryLeakWarningPlugin.obj" : $(SOURCE) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) SOURCE=.\src\CppUTest\SimpleString.cpp "$(INTDIR)\SimpleString.obj" : $(SOURCE) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) SOURCE=.\src\CppUTest\TestHarness_c.cpp "$(INTDIR)\TestHarness_c.obj" : $(SOURCE) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) SOURCE=.\src\CppUTest\TestOutput.cpp "$(INTDIR)\TestOutput.obj" : $(SOURCE) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) SOURCE=.\src\CppUTest\TestPlugin.cpp "$(INTDIR)\TestPlugin.obj" : $(SOURCE) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) SOURCE=.\src\CppUTest\TestRegistry.cpp "$(INTDIR)\TestRegistry.obj" : $(SOURCE) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) SOURCE=.\src\CppUTest\TestResult.cpp "$(INTDIR)\TestResult.obj" : $(SOURCE) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) SOURCE=.\src\CppUTest\Utest.cpp "$(INTDIR)\Utest.obj" : $(SOURCE) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) SOURCE=.\src\Platforms\VisualCpp\UtestPlatform.cpp "$(INTDIR)\UtestPlatform.obj" : $(SOURCE) "$(INTDIR)" $(CPP) $(CPP_PROJ) $(SOURCE) !ENDIF cpputest-3.4/CppUTest.vcproj0000644000175300017530000002257512134163705013127 00000000000000 cpputest-3.4/CppUTest.vcxproj0000644000175300017530000002616512023251674013316 00000000000000 Debug Win32 Release Win32 {F468F539-27BD-468E-BE64-DDE641400B51} StaticLibrary false MultiByte StaticLibrary false MultiByte <_ProjectFileVersion>10.0.30319.1 .\Debug\ .\Debug\ .\Release\ .\Release\ Disabled .\include;.\include\Platforms\VisualCpp;%(AdditionalIncludeDirectories) _LIB;WIN32;_DEBUG;%(PreprocessorDefinitions) EnableFastChecks MultiThreadedDebugDLL .\Debug/CppUTest.pch .\Debug/ .\Debug/ .\Debug/ Level3 true EditAndContinue ..\include\Platforms\VisualCpp\Platform.h;..\include\CppUTest\MemoryLeakDetectorMallocMacros.h;%(ForcedIncludeFiles) _DEBUG;%(PreprocessorDefinitions) 0x0409 $(OutDir)CppUTest.lib true winmm.lib;%(AdditionalDependencies) true .\Debug/CppUTest.bsc copy $(OutDir)CppUTest.lib lib\vs2010 copy $(OutDir)CppUTest.lib lib\CppUTest.lib copy $(OutDir)vc100.pdb lib\vs2010 true MaxSpeed OnlyExplicitInline WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions) true MultiThreaded true .\Release/CppUTest.pch .\Release/ .\Release/ .\Release/ Level3 true NDEBUG;%(PreprocessorDefinitions) 0x0409 $(OutDir)CppUTest.lib true true .\Release/CppUTest.bsc %(AdditionalIncludeDirectories) %(PreprocessorDefinitions) %(PreprocessorDefinitions) cpputest-3.4/CppUTest_VS2008.sln0000644000175300017530000000273412023251674013335 00000000000000 Microsoft Visual Studio Solution File, Format Version 10.00 # Visual C++ Express 2008 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AllTests", "tests\AllTests.vcproj", "{913088F6-37C0-4195-80E9-548C7C5303CB}" ProjectSection(ProjectDependencies) = postProject {F468F539-27BD-468E-BE64-DDE641400B51} = {F468F539-27BD-468E-BE64-DDE641400B51} EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CppUTest", "CppUTest.vcproj", "{F468F539-27BD-468E-BE64-DDE641400B51}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {913088F6-37C0-4195-80E9-548C7C5303CB}.Debug|Win32.ActiveCfg = Debug|Win32 {913088F6-37C0-4195-80E9-548C7C5303CB}.Debug|Win32.Build.0 = Debug|Win32 {913088F6-37C0-4195-80E9-548C7C5303CB}.Release|Win32.ActiveCfg = Release|Win32 {913088F6-37C0-4195-80E9-548C7C5303CB}.Release|Win32.Build.0 = Release|Win32 {F468F539-27BD-468E-BE64-DDE641400B51}.Debug|Win32.ActiveCfg = Debug|Win32 {F468F539-27BD-468E-BE64-DDE641400B51}.Debug|Win32.Build.0 = Debug|Win32 {F468F539-27BD-468E-BE64-DDE641400B51}.Release|Win32.ActiveCfg = Release|Win32 {F468F539-27BD-468E-BE64-DDE641400B51}.Release|Win32.Build.0 = Release|Win32 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection EndGlobal cpputest-3.4/CppUTest_VS2010.sln0000644000175300017530000000244412023251674013324 00000000000000 Microsoft Visual Studio Solution File, Format Version 11.00 # Visual Studio 2010 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AllTests", "tests\AllTests.vcxproj", "{913088F6-37C0-4195-80E9-548C7C5303CB}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CppUTest", "CppUTest.vcxproj", "{F468F539-27BD-468E-BE64-DDE641400B51}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {913088F6-37C0-4195-80E9-548C7C5303CB}.Debug|Win32.ActiveCfg = Debug|Win32 {913088F6-37C0-4195-80E9-548C7C5303CB}.Debug|Win32.Build.0 = Debug|Win32 {913088F6-37C0-4195-80E9-548C7C5303CB}.Release|Win32.ActiveCfg = Release|Win32 {913088F6-37C0-4195-80E9-548C7C5303CB}.Release|Win32.Build.0 = Release|Win32 {F468F539-27BD-468E-BE64-DDE641400B51}.Debug|Win32.ActiveCfg = Debug|Win32 {F468F539-27BD-468E-BE64-DDE641400B51}.Debug|Win32.Build.0 = Debug|Win32 {F468F539-27BD-468E-BE64-DDE641400B51}.Release|Win32.ActiveCfg = Release|Win32 {F468F539-27BD-468E-BE64-DDE641400B51}.Release|Win32.Build.0 = Release|Win32 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection EndGlobal cpputest-3.4/Doxyfile0000644000175300017530000015135512143637532011704 00000000000000# Doxyfile 1.5.3 # This file describes the settings to be used by the documentation system # doxygen (www.doxygen.org) for a project # # All text after a hash (#) is considered a comment and will be ignored # The format is: # TAG = value [value, ...] # For lists items can also be appended using: # TAG += value [value, ...] # Values that contain spaces should be placed between quotes (" ") #--------------------------------------------------------------------------- # Project related configuration options #--------------------------------------------------------------------------- # This tag specifies the encoding used for all characters in the config file that # follow. The default is UTF-8 which is also the encoding used for all text before # the first occurrence of this tag. Doxygen uses libiconv (or the iconv built into # libc) for the transcoding. See http://www.gnu.org/software/libiconv for the list of # possible encodings. DOXYFILE_ENCODING = UTF-8 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded # by quotes) that should identify the project. PROJECT_NAME = CppUTest # 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 = # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. # If a relative path is entered, it will be relative to the location # where doxygen was started. If left blank the current directory will be used. OUTPUT_DIRECTORY = cpputest_doxygen # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create # 4096 sub-directories (in 2 levels) under the output directory of each output # format and will distribute the generated files over these directories. # Enabling this option can be useful when feeding doxygen a huge amount of # source files, where putting all generated files in the same directory would # otherwise cause performance problems for the file system. CREATE_SUBDIRS = NO # The OUTPUT_LANGUAGE tag is used to specify the language in which all # documentation generated by doxygen is written. Doxygen will use this # information to generate all constant output in the proper language. # The default language is English, other supported languages are: # Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, # Croatian, Czech, Danish, Dutch, Finnish, French, German, Greek, Hungarian, # Italian, Japanese, Japanese-en (Japanese with English messages), Korean, # Korean-en, Lithuanian, Norwegian, Polish, Portuguese, Romanian, Russian, # Serbian, Slovak, Slovene, Spanish, Swedish, and Ukrainian. OUTPUT_LANGUAGE = English # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will # include brief member descriptions after the members that are listed in # the file and class documentation (similar to JavaDoc). # Set to NO to disable this. BRIEF_MEMBER_DESC = YES # If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend # the brief description of a member or function before the detailed description. # Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the # brief descriptions will be completely suppressed. REPEAT_BRIEF = YES # This tag implements a quasi-intelligent brief description abbreviator # that is used to form the text in various listings. Each string # in this list, if found as the leading text of the brief description, will be # stripped from the text and the result after processing the whole list, is # used as the annotated text. Otherwise, the brief description is used as-is. # If left blank, the following values are used ("$name" is automatically # replaced with the name of the entity): "The $name class" "The $name widget" # "The $name file" "is" "provides" "specifies" "contains" # "represents" "a" "an" "the" ABBREVIATE_BRIEF = # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then # Doxygen will generate a detailed section even if there is only a brief # description. ALWAYS_DETAILED_SEC = NO # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all # inherited members of a class in the documentation of that class as if those # members were ordinary class members. Constructors, destructors and assignment # operators of the base classes will not be shown. INLINE_INHERITED_MEMB = NO # If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full # path before files name in the file list and in the header files. If set # to NO the shortest path that makes the file name unique will be used. FULL_PATH_NAMES = YES # If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag # can be used to strip a user-defined part of the path. Stripping is # only done if one of the specified strings matches the left-hand part of # the path. The tag can be used to show relative paths in the file list. # If left blank the directory from which doxygen is run is used as the # path to strip. STRIP_FROM_PATH = # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of # the path mentioned in the documentation of a class, which tells # the reader which header file to include in order to use a class. # If left blank only the name of the header file containing the class # definition is used. Otherwise one should specify the include paths that # are normally passed to the compiler using the -I flag. STRIP_FROM_INC_PATH = # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter # (but less readable) file names. This can be useful is your file systems # doesn't support long names like on DOS, Mac, or CD-ROM. SHORT_NAMES = NO # If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen # will interpret the first line (until the first dot) of a JavaDoc-style # comment as the brief description. If set to NO, the JavaDoc # comments will behave just like regular Qt-style comments # (thus requiring an explicit @brief command for a brief description.) JAVADOC_AUTOBRIEF = NO # If the QT_AUTOBRIEF tag is set to YES then Doxygen will # interpret the first line (until the first dot) of a Qt-style # comment as the brief description. If set to NO, the comments # will behave just like regular Qt-style comments (thus requiring # an explicit \brief command for a brief description.) QT_AUTOBRIEF = NO # The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen # treat a multi-line C++ special comment block (i.e. a block of //! or /// # comments) as a brief description. This used to be the default behaviour. # The new default is to treat a multi-line C++ comment block as a detailed # description. Set this tag to YES if you prefer the old behaviour instead. MULTILINE_CPP_IS_BRIEF = NO # If the DETAILS_AT_TOP tag is set to YES then Doxygen # will output the detailed description near the top, like JavaDoc. # If set to NO, the detailed description appears after the member # documentation. DETAILS_AT_TOP = NO # If the INHERIT_DOCS tag is set to YES (the default) then an undocumented # member inherits the documentation from any documented member that it # re-implements. INHERIT_DOCS = YES # If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce # a new page for each member. If set to NO, the documentation of a member will # be part of the file/class/namespace that contains it. SEPARATE_MEMBER_PAGES = NO # The TAB_SIZE tag can be used to set the number of spaces in a tab. # Doxygen uses this value to replace tabs by spaces in code fragments. TAB_SIZE = 4 # This tag can be used to specify a number of aliases that acts # as commands in the documentation. An alias has the form "name=value". # For example adding "sideeffect=\par Side Effects:\n" will allow you to # put the command \sideeffect (or @sideeffect) in the documentation, which # will result in a user-defined paragraph with heading "Side Effects:". # You can put \n's in the value part of an alias to insert newlines. ALIASES = # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C # sources only. Doxygen will then generate output that is more tailored for C. # For instance, some of the names that are used will be different. The list # of all members will be omitted, etc. OPTIMIZE_OUTPUT_FOR_C = NO # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java # sources only. Doxygen will then generate output that is more tailored for Java. # For instance, namespaces will be presented as packages, qualified scopes # will look different, etc. OPTIMIZE_OUTPUT_JAVA = NO # If you use STL classes (i.e. std::string, std::vector, etc.) but do not want to # include (a tag file for) the STL sources as input, then you should # set this tag to YES in order to let doxygen match functions declarations and # definitions whose arguments contain STL classes (e.g. func(std::string); v.s. # func(std::string) {}). This also make the inheritance and collaboration # diagrams that involve STL classes more complete and accurate. BUILTIN_STL_SUPPORT = NO # If you use Microsoft's C++/CLI language, you should set this option to YES to # enable parsing support. CPP_CLI_SUPPORT = NO # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC # tag is set to YES, then doxygen will reuse the documentation of the first # member in the group (if any) for the other members of the group. By default # all members of a group must be documented explicitly. DISTRIBUTE_GROUP_DOC = NO # Set the SUBGROUPING tag to YES (the default) to allow class member groups of # the same type (for instance a group of public functions) to be put as a # subgroup of that type (e.g. under the Public Functions section). Set it to # NO to prevent subgrouping. Alternatively, this can be done per class using # the \nosubgrouping command. SUBGROUPING = YES #--------------------------------------------------------------------------- # Build related configuration options #--------------------------------------------------------------------------- # If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in # documentation are documented, even if no documentation was available. # Private class members and static file members will be hidden unless # the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES EXTRACT_ALL = NO # If the EXTRACT_PRIVATE tag is set to YES all private members of a class # will be included in the documentation. EXTRACT_PRIVATE = NO # If the EXTRACT_STATIC tag is set to YES all static members of a file # will be included in the documentation. EXTRACT_STATIC = NO # If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) # defined locally in source files will be included in the documentation. # If set to NO only classes defined in header files are included. EXTRACT_LOCAL_CLASSES = YES # This flag is only useful for Objective-C code. When set to YES local # methods, which are defined in the implementation section but not in # the interface are included in the documentation. # If set to NO (the default) only methods in the interface are included. EXTRACT_LOCAL_METHODS = NO # If this flag is set to YES, the members of anonymous namespaces will be extracted # and appear in the documentation as a namespace called 'anonymous_namespace{file}', # where file will be replaced with the base name of the file that contains the anonymous # namespace. By default anonymous namespace are hidden. EXTRACT_ANON_NSPACES = NO # If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all # undocumented members of documented classes, files or namespaces. # If set to NO (the default) these members will be included in the # various overviews, but no documentation section is generated. # This option has no effect if EXTRACT_ALL is enabled. HIDE_UNDOC_MEMBERS = NO # If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all # undocumented classes that are normally visible in the class hierarchy. # If set to NO (the default) these classes will be included in the various # overviews. This option has no effect if EXTRACT_ALL is enabled. HIDE_UNDOC_CLASSES = NO # If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all # friend (class|struct|union) declarations. # If set to NO (the default) these declarations will be included in the # documentation. HIDE_FRIEND_COMPOUNDS = NO # If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any # documentation blocks found inside the body of a function. # If set to NO (the default) these blocks will be appended to the # function's detailed documentation block. HIDE_IN_BODY_DOCS = NO # The INTERNAL_DOCS tag determines if documentation # that is typed after a \internal command is included. If the tag is set # to NO (the default) then the documentation will be excluded. # Set it to YES to include the internal documentation. INTERNAL_DOCS = NO # If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate # file names in lower-case letters. If set to YES upper-case letters are also # allowed. This is useful if you have classes or files whose names only differ # in case and if your file system supports case sensitive file names. Windows # and Mac users are advised to set this option to NO. CASE_SENSE_NAMES = NO # If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen # will show members with their full class and namespace scopes in the # documentation. If set to YES the scope will be hidden. HIDE_SCOPE_NAMES = NO # If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen # will put a list of the files that are included by a file in the documentation # of that file. SHOW_INCLUDE_FILES = YES # If the INLINE_INFO tag is set to YES (the default) then a tag [inline] # is inserted in the documentation for inline members. INLINE_INFO = YES # If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen # will sort the (detailed) documentation of file and class members # alphabetically by member name. If set to NO the members will appear in # declaration order. SORT_MEMBER_DOCS = YES # If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the # brief documentation of file, namespace and class members alphabetically # by member name. If set to NO (the default) the members will appear in # declaration order. SORT_BRIEF_DOCS = NO # If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be # sorted by fully-qualified names, including namespaces. If set to # NO (the default), the class list will be sorted only by class name, # not including the namespace part. # Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. # Note: This option applies only to the class list, not to the # alphabetical list. SORT_BY_SCOPE_NAME = NO # The GENERATE_TODOLIST tag can be used to enable (YES) or # disable (NO) the todo list. This list is created by putting \todo # commands in the documentation. GENERATE_TODOLIST = YES # The GENERATE_TESTLIST tag can be used to enable (YES) or # disable (NO) the test list. This list is created by putting \test # commands in the documentation. GENERATE_TESTLIST = YES # The GENERATE_BUGLIST tag can be used to enable (YES) or # disable (NO) the bug list. This list is created by putting \bug # commands in the documentation. GENERATE_BUGLIST = YES # The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or # disable (NO) the deprecated list. This list is created by putting # \deprecated commands in the documentation. GENERATE_DEPRECATEDLIST= YES # The ENABLED_SECTIONS tag can be used to enable conditional # documentation sections, marked by \if sectionname ... \endif. ENABLED_SECTIONS = # The MAX_INITIALIZER_LINES tag determines the maximum number of lines # the initial value of a variable or define consists of for it to appear in # the documentation. If the initializer consists of more lines than specified # here it will be hidden. Use a value of 0 to hide initializers completely. # The appearance of the initializer of individual variables and defines in the # documentation can be controlled using \showinitializer or \hideinitializer # command in the documentation regardless of this setting. MAX_INITIALIZER_LINES = 30 # Set the SHOW_USED_FILES tag to NO to disable the list of files generated # at the bottom of the documentation of classes and structs. If set to YES the # list will mention the files that were used to generate the documentation. SHOW_USED_FILES = YES # If the sources in your project are distributed over multiple directories # then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy # in the documentation. The default is NO. SHOW_DIRECTORIES = NO # The FILE_VERSION_FILTER tag can be used to specify a program or script that # doxygen should invoke to get the current version for each file (typically from the # version control system). Doxygen will invoke the program by executing (via # popen()) the command , where is the value of # the FILE_VERSION_FILTER tag, and is the name of an input file # provided by doxygen. Whatever the program writes to standard output # is used as the file version. See the manual for examples. FILE_VERSION_FILTER = #--------------------------------------------------------------------------- # configuration options related to warning and progress messages #--------------------------------------------------------------------------- # The QUIET tag can be used to turn on/off the messages that are generated # by doxygen. Possible values are YES and NO. If left blank NO is used. QUIET = NO # The WARNINGS tag can be used to turn on/off the warning messages that are # generated by doxygen. Possible values are YES and NO. If left blank # NO is used. WARNINGS = YES # If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings # for undocumented members. If EXTRACT_ALL is set to YES then this flag will # automatically be disabled. WARN_IF_UNDOCUMENTED = YES # If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for # potential errors in the documentation, such as not documenting some # parameters in a documented function, or documenting parameters that # don't exist or using markup commands wrongly. WARN_IF_DOC_ERROR = YES # This WARN_NO_PARAMDOC option can be abled to get warnings for # functions that are documented, but have no documentation for their parameters # or return value. If set to NO (the default) doxygen will only warn about # wrong or incomplete parameter documentation, but not about the absence of # documentation. WARN_NO_PARAMDOC = 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) WARN_FORMAT = "$file:$line: $text" # The WARN_LOGFILE tag can be used to specify a file to which warning # and error messages should be written. If left blank the output is written # to stderr. WARN_LOGFILE = #--------------------------------------------------------------------------- # configuration options related to the input files #--------------------------------------------------------------------------- # The INPUT tag can be used to specify the files and/or directories that contain # documented source files. You may enter file names like "myfile.cpp" or # directories like "/usr/src/myproject". Separate the files or directories # with spaces. INPUT = # This tag can be used to specify the character encoding of the source files that # doxygen parses. Internally doxygen uses the UTF-8 encoding, which is also the default # input encoding. Doxygen uses libiconv (or the iconv built into libc) for the transcoding. # See http://www.gnu.org/software/libiconv for the list of possible encodings. INPUT_ENCODING = UTF-8 # If the value of the INPUT tag contains directories, you can use the # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp # and *.h) to filter out the source-files in the directories. If left # blank the following patterns are tested: # *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx # *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py FILE_PATTERNS = # The RECURSIVE tag can be used to turn specify whether or not subdirectories # should be searched for input files as well. Possible values are YES and NO. # If left blank NO is used. RECURSIVE = YES # The EXCLUDE tag can be used to specify files and/or directories that should # excluded from the INPUT source files. This way you can easily exclude a # subdirectory from a directory tree whose root is specified with the INPUT tag. EXCLUDE = # The EXCLUDE_SYMLINKS tag can be used select whether or not files or # directories that are symbolic links (a Unix filesystem feature) are excluded # from the input. EXCLUDE_SYMLINKS = NO # If the value of the INPUT tag contains directories, you can use the # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude # certain files from those directories. Note that the wildcards are matched # against the file with absolute path, so to exclude all test directories # for example use the pattern */test/* EXCLUDE_PATTERNS = # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names # (namespaces, classes, functions, etc.) that should be excluded from the output. # The symbol name can be a fully qualified name, a word, or if the wildcard * is used, # a substring. Examples: ANamespace, AClass, AClass::ANamespace, ANamespace::*Test EXCLUDE_SYMBOLS = # The EXAMPLE_PATH tag can be used to specify one or more files or # directories that contain example code fragments that are included (see # the \include command). EXAMPLE_PATH = # If the value of the EXAMPLE_PATH tag contains directories, you can use the # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp # and *.h) to filter out the source-files in the directories. If left # blank all files are included. EXAMPLE_PATTERNS = # If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be # searched for input files to be used with the \include or \dontinclude # commands irrespective of the value of the RECURSIVE tag. # Possible values are YES and NO. If left blank NO is used. EXAMPLE_RECURSIVE = NO # The IMAGE_PATH tag can be used to specify one or more files or # directories that contain image that are included in the documentation (see # the \image command). IMAGE_PATH = # The INPUT_FILTER tag can be used to specify a program that doxygen should # invoke to filter for each input file. Doxygen will invoke the filter program # by executing (via popen()) the command , where # is the value of the INPUT_FILTER tag, and is the name of an # input file. Doxygen will then use the output that the filter program writes # to standard output. If FILTER_PATTERNS is specified, this tag will be # ignored. INPUT_FILTER = # The FILTER_PATTERNS tag can be used to specify filters on a per file pattern # basis. Doxygen will compare the file name with each pattern and apply the # filter if there is a match. The filters are a list of the form: # pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further # info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER # is applied to all files. FILTER_PATTERNS = # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using # INPUT_FILTER) will be used to filter the input files when producing source # files to browse (i.e. when SOURCE_BROWSER is set to YES). FILTER_SOURCE_FILES = NO #--------------------------------------------------------------------------- # configuration options related to source browsing #--------------------------------------------------------------------------- # If the SOURCE_BROWSER tag is set to YES then a list of source files will # be generated. Documented entities will be cross-referenced with these sources. # Note: To get rid of all source code in the generated output, make sure also # VERBATIM_HEADERS is set to NO. If you have enabled CALL_GRAPH or CALLER_GRAPH # then you must also enable this option. If you don't then doxygen will produce # a warning and turn it on anyway SOURCE_BROWSER = NO # Setting the INLINE_SOURCES tag to YES will include the body # of functions and classes directly in the documentation. INLINE_SOURCES = NO # Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct # doxygen to hide any special comment blocks from generated source code # fragments. Normal C and C++ comments will always remain visible. STRIP_CODE_COMMENTS = YES # If the REFERENCED_BY_RELATION tag is set to YES (the default) # then for each documented function all documented # functions referencing it will be listed. REFERENCED_BY_RELATION = YES # If the REFERENCES_RELATION tag is set to YES (the default) # then for each documented function all documented entities # called/used by that function will be listed. REFERENCES_RELATION = YES # If the REFERENCES_LINK_SOURCE tag is set to YES (the default) # and SOURCE_BROWSER tag is set to YES, then the hyperlinks from # functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will # link to the source code. Otherwise they will link to the documentstion. REFERENCES_LINK_SOURCE = YES # If the USE_HTAGS tag is set to YES then the references to source code # will point to the HTML generated by the htags(1) tool instead of doxygen # built-in source browser. The htags tool is part of GNU's global source # tagging system (see http://www.gnu.org/software/global/global.html). You # will need version 4.8.6 or higher. USE_HTAGS = NO # If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen # will generate a verbatim copy of the header file for each class for # which an include is specified. Set to NO to disable this. VERBATIM_HEADERS = YES #--------------------------------------------------------------------------- # configuration options related to the alphabetical class index #--------------------------------------------------------------------------- # If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index # of all compounds will be generated. Enable this if the project # contains a lot of classes, structs, unions or interfaces. ALPHABETICAL_INDEX = NO # If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then # the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns # in which this list will be split (can be a number in the range [1..20]) COLS_IN_ALPHA_INDEX = 5 # In case all classes in a project start with a common prefix, all # classes will be put under the same header in the alphabetical index. # The IGNORE_PREFIX tag can be used to specify one or more prefixes that # should be ignored while generating the index headers. IGNORE_PREFIX = #--------------------------------------------------------------------------- # configuration options related to the HTML output #--------------------------------------------------------------------------- # If the GENERATE_HTML tag is set to YES (the default) Doxygen will # generate HTML output. GENERATE_HTML = YES # The HTML_OUTPUT tag is used to specify where the HTML docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `html' will be used as the default path. HTML_OUTPUT = html # The HTML_FILE_EXTENSION tag can be used to specify the file extension for # each generated HTML page (for example: .htm,.php,.asp). If it is left blank # doxygen will generate files with .html extension. HTML_FILE_EXTENSION = .html # The HTML_HEADER tag can be used to specify a personal HTML header for # each generated HTML page. If it is left blank doxygen will generate a # standard header. HTML_HEADER = # The HTML_FOOTER tag can be used to specify a personal HTML footer for # each generated HTML page. If it is left blank doxygen will generate a # standard footer. HTML_FOOTER = # The HTML_STYLESHEET tag can be used to specify a user-defined cascading # style sheet that is used by each HTML page. It can be used to # fine-tune the look of the HTML output. If the tag is left blank doxygen # will generate a default style sheet. Note that doxygen will try to copy # the style sheet file to the HTML output directory, so don't put your own # stylesheet in the HTML output directory as well, or it will be erased! HTML_STYLESHEET = # If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, # files or namespaces will be aligned in HTML using tables. If set to # NO a bullet list will be used. HTML_ALIGN_MEMBERS = YES # If the GENERATE_HTMLHELP tag is set to YES, additional index files # will be generated that can be used as input for tools like the # Microsoft HTML help workshop to generate a compressed HTML help file (.chm) # of the generated HTML documentation. GENERATE_HTMLHELP = NO # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML # documentation will contain sections that can be hidden and shown after the # page has loaded. For this to work a browser that supports # JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox # Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari). HTML_DYNAMIC_SECTIONS = NO # If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can # be used to specify the file name of the resulting .chm file. You # can add a path in front of the file if the result should not be # written to the html output directory. CHM_FILE = # If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can # be used to specify the location (absolute path including file name) of # the HTML help compiler (hhc.exe). If non-empty doxygen will try to run # the HTML help compiler on the generated index.hhp. HHC_LOCATION = # If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag # controls if a separate .chi index file is generated (YES) or that # it should be included in the master .chm file (NO). GENERATE_CHI = NO # If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag # controls whether a binary table of contents is generated (YES) or a # normal table of contents (NO) in the .chm file. BINARY_TOC = NO # The TOC_EXPAND flag can be set to YES to add extra items for group members # to the contents of the HTML help documentation and to the tree view. TOC_EXPAND = NO # The DISABLE_INDEX tag can be used to turn on/off the condensed index at # top of each HTML page. The value NO (the default) enables the index and # the value YES disables it. DISABLE_INDEX = NO # This tag can be used to set the number of enum values (range [1..20]) # that doxygen will group on one line in the generated HTML documentation. ENUM_VALUES_PER_LINE = 4 # If the GENERATE_TREEVIEW tag is set to YES, a side panel will be # generated containing a tree-like index structure (just like the one that # is generated for HTML Help). For this to work a browser that supports # JavaScript, DHTML, CSS and frames is required (for instance Mozilla 1.0+, # Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are # probably better off using the HTML help feature. GENERATE_TREEVIEW = NO # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be # used to set the initial width (in pixels) of the frame in which the tree # is shown. TREEVIEW_WIDTH = 250 #--------------------------------------------------------------------------- # configuration options related to the LaTeX output #--------------------------------------------------------------------------- # If the GENERATE_LATEX tag is set to YES (the default) Doxygen will # generate Latex output. GENERATE_LATEX = YES # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `latex' will be used as the default path. LATEX_OUTPUT = latex # The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be # invoked. If left blank `latex' will be used as the default command name. LATEX_CMD_NAME = latex # The MAKEINDEX_CMD_NAME tag can be used to specify the command name to # generate index for LaTeX. If left blank `makeindex' will be used as the # default command name. MAKEINDEX_CMD_NAME = makeindex # If the COMPACT_LATEX tag is set to YES Doxygen generates more compact # LaTeX documents. This may be useful for small projects and may help to # save some trees in general. COMPACT_LATEX = NO # The PAPER_TYPE tag can be used to set the paper type that is used # by the printer. Possible values are: a4, a4wide, letter, legal and # executive. If left blank a4wide will be used. PAPER_TYPE = a4wide # The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX # packages that should be included in the LaTeX output. EXTRA_PACKAGES = # The LATEX_HEADER tag can be used to specify a personal LaTeX header for # the generated latex document. The header should contain everything until # the first chapter. If it is left blank doxygen will generate a # standard header. Notice: only use this tag if you know what you are doing! LATEX_HEADER = # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated # is prepared for conversion to pdf (using ps2pdf). The pdf file will # contain links (just like the HTML output) instead of page references # This makes the output suitable for online browsing using a pdf viewer. PDF_HYPERLINKS = NO # If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of # plain latex in the generated Makefile. Set this option to YES to get a # higher quality PDF documentation. USE_PDFLATEX = NO # If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. # command to the generated LaTeX files. This will instruct LaTeX to keep # running if errors occur, instead of asking the user for help. # This option is also used when generating formulas in HTML. LATEX_BATCHMODE = NO # If LATEX_HIDE_INDICES is set to YES then doxygen will not # include the index chapters (such as File Index, Compound Index, etc.) # in the output. LATEX_HIDE_INDICES = NO #--------------------------------------------------------------------------- # configuration options related to the RTF output #--------------------------------------------------------------------------- # If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output # The RTF output is optimized for Word 97 and may not look very pretty with # other RTF readers or editors. GENERATE_RTF = NO # The RTF_OUTPUT tag is used to specify where the RTF docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `rtf' will be used as the default path. RTF_OUTPUT = rtf # If the COMPACT_RTF tag is set to YES Doxygen generates more compact # RTF documents. This may be useful for small projects and may help to # save some trees in general. COMPACT_RTF = NO # If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated # will contain hyperlink fields. The RTF file will # contain links (just like the HTML output) instead of page references. # This makes the output suitable for online browsing using WORD or other # programs which support those fields. # Note: wordpad (write) and others do not support links. RTF_HYPERLINKS = NO # Load stylesheet definitions from file. Syntax is similar to doxygen's # config file, i.e. a series of assignments. You only have to provide # replacements, missing definitions are set to their default value. RTF_STYLESHEET_FILE = # Set optional variables used in the generation of an rtf document. # Syntax is similar to doxygen's config file. RTF_EXTENSIONS_FILE = #--------------------------------------------------------------------------- # configuration options related to the man page output #--------------------------------------------------------------------------- # If the GENERATE_MAN tag is set to YES (the default) Doxygen will # generate man pages GENERATE_MAN = NO # The MAN_OUTPUT tag is used to specify where the man pages will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `man' will be used as the default path. MAN_OUTPUT = man # The MAN_EXTENSION tag determines the extension that is added to # the generated man pages (default is the subroutine's section .3) MAN_EXTENSION = .3 # If the MAN_LINKS tag is set to YES and Doxygen generates man output, # then it will generate one additional man file for each entity # documented in the real man page(s). These additional files # only source the real man page, but without them the man command # would be unable to find the correct page. The default is NO. MAN_LINKS = NO #--------------------------------------------------------------------------- # configuration options related to the XML output #--------------------------------------------------------------------------- # If the GENERATE_XML tag is set to YES Doxygen will # generate an XML file that captures the structure of # the code including all documentation. GENERATE_XML = NO # The XML_OUTPUT tag is used to specify where the XML pages will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `xml' will be used as the default path. XML_OUTPUT = xml # The XML_SCHEMA tag can be used to specify an XML schema, # which can be used by a validating XML parser to check the # syntax of the XML files. XML_SCHEMA = # The XML_DTD tag can be used to specify an XML DTD, # which can be used by a validating XML parser to check the # syntax of the XML files. XML_DTD = # If the XML_PROGRAMLISTING tag is set to YES Doxygen will # dump the program listings (including syntax highlighting # and cross-referencing information) to the XML output. Note that # enabling this will significantly increase the size of the XML output. XML_PROGRAMLISTING = YES #--------------------------------------------------------------------------- # configuration options for the AutoGen Definitions output #--------------------------------------------------------------------------- # If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will # generate an AutoGen Definitions (see autogen.sf.net) file # that captures the structure of the code including all # documentation. Note that this feature is still experimental # and incomplete at the moment. GENERATE_AUTOGEN_DEF = NO #--------------------------------------------------------------------------- # configuration options related to the Perl module output #--------------------------------------------------------------------------- # If the GENERATE_PERLMOD tag is set to YES Doxygen will # generate a Perl module file that captures the structure of # the code including all documentation. Note that this # feature is still experimental and incomplete at the # moment. GENERATE_PERLMOD = NO # If the PERLMOD_LATEX tag is set to YES Doxygen will generate # the necessary Makefile rules, Perl scripts and LaTeX code to be able # to generate PDF and DVI output from the Perl module output. PERLMOD_LATEX = NO # If the PERLMOD_PRETTY tag is set to YES the Perl module output will be # nicely formatted so it can be parsed by a human reader. This is useful # if you want to understand what is going on. On the other hand, if this # tag is set to NO the size of the Perl module output will be much smaller # and Perl will parse it just the same. PERLMOD_PRETTY = YES # The names of the make variables in the generated doxyrules.make file # are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. # This is useful so different doxyrules.make files included by the same # Makefile don't overwrite each other's variables. PERLMOD_MAKEVAR_PREFIX = #--------------------------------------------------------------------------- # Configuration options related to the preprocessor #--------------------------------------------------------------------------- # If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will # evaluate all C-preprocessor directives found in the sources and include # files. ENABLE_PREPROCESSING = YES # If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro # names in the source code. If set to NO (the default) only conditional # compilation will be performed. Macro expansion can be done in a controlled # way by setting EXPAND_ONLY_PREDEF to YES. MACRO_EXPANSION = NO # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES # then the macro expansion is limited to the macros specified with the # PREDEFINED and EXPAND_AS_DEFINED tags. EXPAND_ONLY_PREDEF = NO # If the SEARCH_INCLUDES tag is set to YES (the default) the includes files # in the INCLUDE_PATH (see below) will be search if a #include is found. SEARCH_INCLUDES = YES # The INCLUDE_PATH tag can be used to specify one or more directories that # contain include files that are not input files but should be processed by # the preprocessor. INCLUDE_PATH = # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard # patterns (like *.h and *.hpp) to filter out the header-files in the # directories. If left blank, the patterns specified with FILE_PATTERNS will # be used. INCLUDE_FILE_PATTERNS = # The PREDEFINED tag can be used to specify one or more macro names that # are defined before the preprocessor is started (similar to the -D option of # gcc). The argument of the tag is a list of macros of the form: name # or name=definition (no spaces). If the definition and the = are # omitted =1 is assumed. To prevent a macro definition from being # undefined via #undef or recursively expanded use the := operator # instead of the = operator. PREDEFINED = # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then # this tag can be used to specify a list of macro names that should be expanded. # The macro definition that is found in the sources will be used. # Use the PREDEFINED tag if you want to use a different macro definition. EXPAND_AS_DEFINED = # If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then # doxygen's preprocessor will remove all function-like macros that are alone # on a line, have an all uppercase name, and do not end with a semicolon. Such # function macros are typically used for boiler-plate code, and will confuse # the parser if not removed. SKIP_FUNCTION_MACROS = YES #--------------------------------------------------------------------------- # Configuration::additions related to external references #--------------------------------------------------------------------------- # The TAGFILES option can be used to specify one or more tagfiles. # Optionally an initial location of the external documentation # can be added for each tagfile. The format of a tag file without # this location is as follows: # TAGFILES = file1 file2 ... # Adding location for the tag files is done as follows: # TAGFILES = file1=loc1 "file2 = loc2" ... # where "loc1" and "loc2" can be relative or absolute paths or # URLs. If a location is present for each tag, the installdox tool # does not have to be run to correct the links. # Note that each tag file must have a unique name # (where the name does NOT include the path) # If a tag file is not located in the directory in which doxygen # is run, you must also specify the path to the tagfile here. TAGFILES = # When a file name is specified after GENERATE_TAGFILE, doxygen will create # a tag file that is based on the input files it reads. GENERATE_TAGFILE = # If the ALLEXTERNALS tag is set to YES all external classes will be listed # in the class index. If set to NO only the inherited external classes # will be listed. ALLEXTERNALS = NO # If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed # in the modules index. If set to NO, only the current project's groups will # be listed. EXTERNAL_GROUPS = YES # The PERL_PATH should be the absolute path and name of the perl script # interpreter (i.e. the result of `which perl'). PERL_PATH = /usr/bin/perl #--------------------------------------------------------------------------- # Configuration options related to the dot tool #--------------------------------------------------------------------------- # If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will # generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base # or super classes. Setting the tag to NO turns the diagrams off. Note that # this option is superseded by the HAVE_DOT option below. This is only a # fallback. It is recommended to install and use dot, since it yields more # powerful graphs. CLASS_DIAGRAMS = YES # You can define message sequence charts within doxygen comments using the \msc # command. Doxygen will then run the mscgen tool (see http://www.mcternan.me.uk/mscgen/) to # produce the chart and insert it in the documentation. The MSCGEN_PATH tag allows you to # specify the directory where the mscgen tool resides. If left empty the tool is assumed to # be found in the default search path. MSCGEN_PATH = # If set to YES, the inheritance and collaboration graphs will hide # inheritance and usage relations if the target is undocumented # or is not a class. HIDE_UNDOC_RELATIONS = YES # If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is # available from the path. This tool is part of Graphviz, a graph visualization # toolkit from AT&T and Lucent Bell Labs. The other options in this section # have no effect if this option is set to NO (the default) HAVE_DOT = NO # If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen # will generate a graph for each documented class showing the direct and # indirect inheritance relations. Setting this tag to YES will force the # the CLASS_DIAGRAMS tag to NO. CLASS_GRAPH = YES # If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen # will generate a graph for each documented class showing the direct and # indirect implementation dependencies (inheritance, containment, and # class references variables) of the class with other documented classes. COLLABORATION_GRAPH = YES # If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen # will generate a graph for groups, showing the direct groups dependencies GROUP_GRAPHS = YES # If the UML_LOOK tag is set to YES doxygen will generate inheritance and # collaboration diagrams in a style similar to the OMG's Unified Modeling # Language. UML_LOOK = NO # If set to YES, the inheritance and collaboration graphs will show the # relations between templates and their instances. TEMPLATE_RELATIONS = NO # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT # tags are set to YES then doxygen will generate a graph for each documented # file showing the direct and indirect include dependencies of the file with # other documented files. INCLUDE_GRAPH = YES # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and # HAVE_DOT tags are set to YES then doxygen will generate a graph for each # documented header file showing the documented files that directly or # indirectly include this file. INCLUDED_BY_GRAPH = YES # If the CALL_GRAPH, SOURCE_BROWSER and HAVE_DOT tags are set to YES then doxygen will # generate a call dependency graph for every global function or class method. # Note that enabling this option will significantly increase the time of a run. # So in most cases it will be better to enable call graphs for selected # functions only using the \callgraph command. CALL_GRAPH = NO # If the CALLER_GRAPH, SOURCE_BROWSER and HAVE_DOT tags are set to YES then doxygen will # generate a caller dependency graph for every global function or class method. # Note that enabling this option will significantly increase the time of a run. # So in most cases it will be better to enable caller graphs for selected # functions only using the \callergraph command. CALLER_GRAPH = NO # If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen # will graphical hierarchy of all classes instead of a textual one. GRAPHICAL_HIERARCHY = YES # If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES # then doxygen will show the dependencies a directory has on other directories # in a graphical way. The dependency relations are determined by the #include # relations between the files in the directories. DIRECTORY_GRAPH = YES # The DOT_IMAGE_FORMAT tag can be used to set the image format of the images # generated by dot. Possible values are png, jpg, or gif # If left blank png will be used. DOT_IMAGE_FORMAT = png # The tag DOT_PATH can be used to specify the path where the dot tool can be # found. If left blank, it is assumed the dot tool can be found in the path. DOT_PATH = # The DOTFILE_DIRS tag can be used to specify one or more directories that # contain dot files that are included in the documentation (see the # \dotfile command). DOTFILE_DIRS = # The MAX_DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of # nodes that will be shown in the graph. If the number of nodes in a graph # becomes larger than this value, doxygen will truncate the graph, which is # visualized by representing a node as a red box. Note that doxygen if the number # of direct children of the root node in a graph is already larger than # MAX_DOT_GRAPH_NOTES then the graph will not be shown at all. Also note # that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. DOT_GRAPH_MAX_NODES = 50 # The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the # graphs generated by dot. A depth value of 3 means that only nodes reachable # from the root by following a path via at most 3 edges will be shown. Nodes # that lay further from the root node will be omitted. Note that setting this # option to 1 or 2 may greatly reduce the computation time needed for large # code bases. Also note that the size of a graph can be further restricted by # DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. MAX_DOT_GRAPH_DEPTH = 0 # Set the DOT_TRANSPARENT tag to YES to generate images with a transparent # background. This is disabled by default, which results in a white background. # Warning: Depending on the platform used, enabling this option may lead to # badly anti-aliased labels on the edges of a graph (i.e. they become hard to # read). DOT_TRANSPARENT = NO # Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output # files in one run (i.e. multiple -o and -T options on the command line). This # makes dot run faster, but since only newer versions of dot (>1.8.10) # support this, this feature is disabled by default. DOT_MULTI_TARGETS = NO # If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will # generate a legend page explaining the meaning of the various boxes and # arrows in the dot generated graphs. GENERATE_LEGEND = YES # If the DOT_CLEANUP tag is set to YES (the default) Doxygen will # remove the intermediate dot files that are used to generate # the various graphs. DOT_CLEANUP = YES #--------------------------------------------------------------------------- # Configuration::additions related to the search engine #--------------------------------------------------------------------------- # The SEARCHENGINE tag specifies whether or not a search engine should be # used. If set to NO the values of all tags below this one will be ignored. SEARCHENGINE = NO cpputest-3.4/Makefile_CppUTestExt0000664000175300017530000000101512066727207014076 00000000000000 #Set this to @ to keep the makefile quiet ifndef SILENCE SILENCE = @ endif #---- Outputs ----# COMPONENT_NAME = CppUTestExt #--- Inputs ----# CPPUTEST_HOME = . CPP_PLATFORM = Gcc WARNINGFLAGS = -pedantic-errors -Wall -Wextra -Werror -Wshadow -Wswitch-default -Wswitch-enum -Wconversion SRC_DIRS = src/CppUTestExt TEST_SRC_DIRS = tests/CppUTestExt INCLUDE_DIRS = $(CPPUTEST_HOME)/include LD_LIBRARIES += -lstdc++ -L$(CPPUTEST_LIB_DIR)/$(TARGET_PLATFORM) -lCppUTest include $(CPPUTEST_HOME)/build/MakefileWorker.mk cpputest-3.4/Makefile_using_MakefileWorker0000644000175300017530000001207112137436746016030 00000000000000#Set this to @ to keep the makefile quiet SILENCE = @ #--- Inputs ----# COMPONENT_NAME = CppUTest ifeq ($(CPPUTEST_USE_STD_C_LIB), N) CPP_PLATFORM = GccNoStdC else CPP_PLATFORM = Gcc endif CPPUTEST_HOME = . OLD_MAKE = oldmake CPPUTEST_ENABLE_DEBUG = Y SRC_DIRS = \ src/CppUTest \ src/Platforms/$(CPP_PLATFORM) TEST_SRC_DIRS = \ tests INCLUDE_DIRS =\ include include $(CPPUTEST_HOME)/build/MakefileWorker.mk #these are a sample of the other alternative flag settings .PHONY: test_all test_all: start test_old_make @echo Building with the default flags. make clean $(TIME) make ./$(TEST_TARGET) -r make clean @echo Building with the STDC++ new disabled. $(TIME) make CPPUTEST_USE_STD_CPP_LIB=Y extensions make CPPUTEST_USE_STD_CPP_LIB=Y cleanExtensions @echo Building with Memory Leak Detection disabled $(TIME) make CPPUTEST_USE_MEM_LEAK_DETECTION=N extensions make CPPUTEST_USE_MEM_LEAK_DETECTION=N cleanExtensions @echo Building with Memory Leak Detection disabled and STD C++ disabled $(TIME) make CPPUTEST_USE_MEM_LEAK_DETECTION=N CPPUTEST_USE_STD_CPP_LIB=Y extensions make CPPUTEST_USE_MEM_LEAK_DETECTION=N CPPUTEST_USE_STD_CPP_LIB=Y cleanExtensions @echo Building with debug disabled $(TIME) make CPPUTEST_ENABLE_DEBUG=N extensions make CPPUTEST_ENABLE_DEBUG=N cleanExtensions @echo Building with overridden CXXFLAGS and CFLAGS and CPPFLAGS $(TIME) make CLFAGS="" CXXFLAGS="" CPPFLAGS="-Iinclude" make CFLAGS="" CXXFLAGS="" clean @echo Building without Standard C library includes $(TIME) make CPPUTEST_USE_STD_C_LIB=N all_no_tests make CPPUTEST_USE_STD_C_LIB=N clean @echo Building with a different TARGET_PLATFORM make TARGET_PLATFORM=real_platform @echo Building with overridden CXXFLAGS and CFLAGS and memory leak and STDC++ disabled $(TIME) make CLFAGS="" CXXFLAGS="" CPPFLAGS="-Iinclude -DCPPUTEST_STD_CPP_LIB_DISABLED -DCPPUTEST_MEM_LEAK_DETECTION_DISABLED" make CFLAGS="" CXXFLAGS="" CPPFLAGS="-DCPPUTEST_STD_CPP_LIB_DISABLED -DCPPUTEST_MEM_LEAK_DETECTION_DISABLED" clean @echo Building CppUTest with Google Test $(SILENCE) if [ -z $$GTEST_HOME ]; then \ echo "******** WARNING: Can't test with CPPUTEST_USE_REAL_GTEST because can't find Google Test -- no GTEST_HOME set ********"; \ else $(TIME) make extensions CPPUTEST_USE_REAL_GTEST=Y; fi @echo Building CppUTest with Google Mock $(SILENCE) if [ -z $$GMOCK_HOME ]; then \ echo "******** WARNING: Can't test with CPPUTEST_USE_REAL_GMOCK because can't find Google Mock -- no GMOCK_HOME set ********"; \ else $(TIME) make extensions CPPUTEST_USE_REAL_GMOCK=Y; fi @echo Building examples make cleanExamples $(TIME) make examples make cleanExamples @echo Testing JUnit output $(TIME) make $(SILENCE)./$(TEST_TARGET) -ojunit > junit_run_output $(SILENCE)if [ -s junit_run_output ]; then echo "JUnit run has output. Build failed!"; exit 1; fi make clean make CPPUTEST_MAP_FILE=map.txt make clean @echo Testing GCOV usage $(TIME) make CPPUTEST_USE_GCOV=Y everythingInstall make gcov make -f Makefile_CppUTestExt gcov make -C examples gcov make cleanEverythingInstall @echo Testing VPATH usage $(TIME) make CPPUTEST_USE_GCOV=Y CPPUTEST_USE_VPATH=Y everythingInstall make CPPUTEST_USE_VPATH=Y gcov make CPPUTEST_USE_VPATH=Y -f Makefile_CppUTestExt gcov make CPPUTEST_USE_VPATH=Y -C examples gcov make clean cleanExamples @echo Testing VPATH usage $(TIME) make CPPUTEST_USE_VPATH=Y everythingInstall make CPPUTEST_USE_VPATH=Y cleanEverythingInstall make flags make debug HAS_OLD_MAKE = $(shell $(OLD_MAKE) -v 2>/dev/null) test_old_make: $(SILENCE)if [ "$(HAS_OLD_MAKE)" = "" ]; then \ echo "Old make with the name $(OLD_MAKE) not found. Skipping testing with old make version"; \ else \ $(OLD_MAKE) -f Makefile_for_old_make clean && \ $(OLD_MAKE) -f Makefile_for_old_make && \ $(OLD_MAKE) -f Makefile_for_old_make extensions && \ $(OLD_MAKE) -f Makefile_for_old_make clean; \ fi .PHONY: examples examples: $(TEST_TARGET) extensions +$(TIME) $(MAKE) -C examples all CPPUTEST_USE_STD_CPP_LIB=$(CPPUTEST_USE_STD_CPP_LIB) CPPUTEST_USE_REAL_GTEST=$(CPPUTEST_USE_REAL_GTEST) CPPUTEST_USE_MEM_LEAK_DETECTION=$(CPPUTEST_USE_MEM_LEAK_DETECTION) extensions: $(TEST_TARGET) +$(TIME) $(MAKE) -f Makefile_CppUTestExt all CPPUTEST_USE_STD_CPP_LIB=$(CPPUTEST_USE_STD_CPP_LIB) CPPUTEST_USE_REAL_GTEST=$(CPPUTEST_USE_REAL_GTEST) CPPUTEST_USE_MEM_LEAK_DETECTION=$(CPPUTEST_USE_MEM_LEAK_DETECTION) TARGET_PLATFORM=$(TARGET_PLATFORM) cleanExtensions: clean +$(TIME) $(MAKE) -f Makefile_CppUTestExt clean CPPUTEST_USE_STD_CPP_LIB=$(CPPUTEST_USE_STD_CPP_LIB) CPPUTEST_USE_REAL_GTEST=$(CPPUTEST_USE_REAL_GTEST) CPPUTEST_USE_MEM_LEAK_DETECTION=$(CPPUTEST_USE_MEM_LEAK_DETECTION) TARGET_PLATFORM=$(TARGET_PLATFORM) cleanExamples: clean cleanExtensions +$(TIME) $(MAKE) -C examples clean CPPUTEST_USE_STD_CPP_LIB=$(CPPUTEST_USE_STD_CPP_LIB) CPPUTEST_USE_REAL_GTEST=$(CPPUTEST_USE_REAL_GTEST) CPPUTEST_USE_MEM_LEAK_DETECTION=$(CPPUTEST_USE_MEM_LEAK_DETECTION) .PHONY: everythingInstall everythingInstall: all extensions examples .PHONY: cleanEverythingInstall cleanEverythingInstall: clean cleanExtensions cleanExamples cpputest-3.4/README.md0000644000175300017530000001517112143637532011450 00000000000000CppUTest ======== CppUTest unit testing and mocking framework for C/C++ [More information on the project page](http://cpputest.github.com) [![Build Status](https://travis-ci.org/cpputest/cpputest.png?branch=master)](https://travis-ci.org/cpputest/cpputest) ## Getting Started You'll need to do the following to get started: Building from source (unix-based, cygwin, MacOSX): * Download latest version * configure * make * make check * You can use "make install" if you want to install CppUTest system-wide You can also use CMake, which also works for Windows Visual Studio. * Download latest version * cmake CMakeList.txt * make Then to get started, you'll need to do the following: * Add the include path to the Makefile. Something like: * CPPFLAGS += -I(CPPUTEST_HOME)/include * Add the memory leak macros to you Makefile (needed for additional debug info!). Something like: * CXXFLAGS += -include $(CPPUTEST_HOME)/include/CppUTest/MemoryLeakDetectorNewMacros.h * CFLAGS += -include $(CPPUTEST_HOME)/include/CppUTest/MemoryLeakDetectorMallocMacros.h * Add the library linking to your Makefile. Something like: * LD_LIBRARIES = -L$(CPPUTEST_HOME)/lib -lCppUTest -lCppUTestExt After this, you can write your first test: ```C++ TEST_GROUP(FirstTestGroup) { }; TEST(FirstTestGroup, FirstTest) { FAIL("Fail me!"); } ``` ## Command line switches * -v verbose, print each test name as it runs * -r# repeat the tests some number of times, default is one, default is # is not specified is 2. This is handy if you are experiencing memory leaks. A second run that has no leaks indicates that someone * -g group only run test whose group contains the substring group * -n name only run test whose name contains the substring name ## Test Macros * TEST(group, name) - define a test * IGNORE_TEST(group, name) - turn off the execution of a test * TEST_GROUP(group) - Declare a test group to which certain tests belong. This will also create thelink needed from another library. * TEST_GROUP_BASE(group, base) - Same as TEST_GROUP, just use a different base class than Utest * TEST_SETUP() - Declare a void setup method in a TEST_GROUP - this is the same as declaring void setup() * TEST_TEARDOWN() - Declare a void setup method in a TEST_GROUP * IMPORT_TEST_GROUP(group) - Export the name of a test group so it can be linked in from a library. Needs to be done in main. ## Set up and tear down support * Each TEST_GROUP may contain a setup and/or a teardown method. * setup() is called prior to each TEST body and teardown() is called after the test body. ## Assertion Macros The failure of one of these macros causes the current test to immediately exit * CHECK(boolean condition) - checks any boolean result * CHECK_TRUE(boolean condition) - checks for true * CHECK_FALSE(boolean condition) - checks for false * CHECK_EQUAL(expected, actual) - checks for equality between entities using ==. So if you have a class that supports operator==() you can use this macro to compare two instances. * STRCMP_EQUAL(expected, actual) - check const char* strings for equality using strcmp * LONGS_EQUAL(expected, actual) - Compares two numbers * BYTES_EQUAL(expected, actual) - Compares two numbers, eight bits wide * POINTERS_EQUAL(expected, actual) - Compares two const void * * DOUBLES_EQUAL(expected, actual, tolerance) - Compares two doubles within some tolerance * FAIL(text) - always fails Customize CHECK_EQUAL to work with your types that support operator==() * Create the function: ** SimpleString StringFrom (const yourType&) The Extensions directory has a few of these. ## Building default checks with TestPlugin * CppUTest can support extra checking functionality by inserting TestPlugins * TestPlugin is derived from the TestPlugin class and can be inserted in the TestRegistry via the installPlugin method. * All TestPlugins are called before and after running all tests and before and after running a single test (like Setup and Teardown). TestPlugins are typically inserted in the main. * TestPlugins can be used for, for example, system stability and resource handling like files, memory or network connection clean-up. * In CppUTest, the memory leak detection is done via a default enabled TestPlugin Example of a main with a TestPlugin: ```C++ int main(int ac, char** av) { LogPlugin logPlugin; TestRegistry::getCurrentRegistry()->installPlugin(&logPlugin); int result = CommandLineTestRunner::RunAllTests(ac, av); TestRegistry::getCurrentRegistry()->resetPlugins(); return result; } ``` Memory leak detection * A platform specific memory leak detection mechanism is provided. * If a test fails and has allocated memory prior to the fail and that memory is not cleaned up by TearDown, a memory leak is reported. It is best to only chase memory leaks when other errors have been eliminated. * Some code uses lazy initialization and appears to leak when it really does not (for example: gcc stringstream used to in an earlier release). One cause is that some standard library calls allocate something and do not free it until after main (or never). To find out if a memory leak is due to lazy initialization set the -r switch to run tests twice. The signature of this situation is that the first run shows leaks and the second run shows no leaks. When both runs show leaks, you have a leak to find. ## How is memory leak detection implemented? * Before setup() a memory usage checkpoint is recorded * After teardown() another checkpoint is taken and compared to the original checkpoint * In Visual Studio the MS debug heap capabilities are used * For GCC a simple new/delete count is used in overridden operators new, new[], delete and delete[] If you use some leaky code that you can't or won't fix you can tell a TEST to ignore a certain number of leaks as in this example: ```C++ TEST(MemoryLeakWarningTest, Ignore1) { EXPECT_N_LEAKS(1); char* arrayToLeak1 = new char[100]; } ``` ## Example Main ```C++ #include "UnitTestHarness/CommandLineTestRunner.h" int main(int ac, char** av) { return CommandLineTestRunner::RunAllTests(ac, av); } IMPORT_TEST_GROUP(ClassName) ``` ## Example Test ```C++ #include "UnitTestHarness/TestHarness.h" #include "ClassName.h" TEST_GROUP(ClassName) { ClassName* className; void setup() { className = new ClassName(); } void teardown() { delete className; } } TEST(ClassName, Create) { CHECK(0 != className); CHECK(true); CHECK_EQUALS(1,1); LONGS_EQUAL(1,1); DOUBLES_EQUAL(1.000, 1.001, .01); STRCMP_EQUAL("hello", "hello"); FAIL("The prior tests pass, but this one doesn't"); } ``` There are some scripts that are helpful in creating your initial h, cpp, and Test files. See scripts/README.TXT cpputest-3.4/README_CppUTest_for_C.txt0000644000175300017530000000442712023251674014564 00000000000000 CPPUTest can and has been used for testing C code also. When testing C code there are a couple of things to keep in mind and a couple of common problems to solve. ---++ Using extern "C" When including C-header files or when declaring C-variables and routines in a .cpp file, you'll have to surround them with an extern "C". This is because the C++ linker works different than the C linker and you need to instruct the compiler about this. If you do NOT do this, you will probably get a linker error, like unresolved symbols, for a routine that you did implement. An example: extern "C" { #include "hello.h" extern HelloWorldApi theRealHelloWorldApi; } ---++ CppUTest support for C CppUTest comes with a file called TestHarness_c.h which contains a couple of routines that can be used in C code, like C-versions of the CHECK-MARCO's. The file also contains malloc and free routines that can be used for using the CppUTest memory leak detector. These routines should be used instead of the normal malloc/free. This can be achieved by #defining them somewhere, for examples as a compiler option: -Dmalloc=cpputest_malloc. It's important to remember that TestHarness_c.h is a C-header file. It can be used in C code, but when using in C++ code, you need to use extern "C" before including it. ---++ C++ keywords used It sometimes happens that a C file uses a C++ keyword as a type or something else. The most common one is the bool-type. This can typically be solved by #defining the bool to something else. For example: extern "C" { #define bool helloBool #include "hello.h" #undef bool } The #undef is optional. It is possible that this solution leads to problems in some situation (never happened to me). The same solution works for other C++ key-words ---++ Other * In C, sometimes people use empty structs. The sizeof(empty struct) would be 0. In C++, the sizeof(empty struct) would be something. The best way to fix this is to not use empty structs in C. According to http://www.glenmccl.com/bett.htm an empty stuct in C is illegal anyway. ---++ References * http://www.glenmccl.com/bett.htm Describes some differences between C and C++ * http://en.wikipedia.org/wiki/Compatibility_of_C_and_C%2B%2B Wikipedia entry on the compatibility between C and C++ cpputest-3.4/README_InstallCppUTest.txt0000644000175300017530000000436312143637532015006 000000000000001. Unzip into , resulting in /CppUTest/ MAKE SURE DOES NOT HAVE SPACES IN IT MAKE SURE DOES NOT HAVE SPACES IN IT MAKE SURE DOES NOT HAVE SPACES IN IT 2. Build CppUTest and examples 2a. For unix/gcc (including cygwin) > cd /CppUTest > configure > make > make check (This is to run the CppUTest unit tests) 2b. For Microsoft Visual C++ V6 Double click /CppUTest/CppUTest.dsw Run without debugging, see the test results in the command window Exit MS Visual C++ To run the examples: Double click /CppUTest/example/CppUTestExample.dsw Run without debugging, see the test results in the command window You should define the environment variable CPP_U_TEST to point to CppUTest to run these. NOTE: To create your own project, you need to have CppUTest and your project compiled with the same compile and link settings 3c. For Microsoft Visual Studio 2008 Double click /CppUTest/CppUTest.sln If Visual studio reports that the solution file was created with a newer version of Visual Studio, then try 3d Then press control-F5 to "Start without debugging" See CppUTest build and run its tests. 3d. For Older Microsoft Visual Studio .NET Double click /CppUTest/CppUTest.dsw Allow VS.NET to convert the files by clicking "yes to all" Run without debugging, see the test results in the command window Exit MS VS.NET Allow VS.NET to convert the files by clicking "yes to all" Run without debugging, see the test results in the command window NOTE: To create your own project, you need to have CppUTest and your project compiled with the same compile and link settings 4. to setup the support scripts. These scripts work in various unix systems and cygwin. (these are quite handy) If you are using windows install some tool like cygwin, msys or MKSToolkit to run these scripts. > cd /CppUTest/CppSourceTemplates > ./InstallScripts.sh This command adds some symbolic links to /usr/local/bin, so you have to run it as root. sudo ./InstallScripts.sh MSYS - http://www.mingw.org/msys.shtml CYGWIN - http://www.cygwin.com/ MKSToolkit - http://mkstoolkit.com/ cpputest-3.4/README_UsersOfPriorVersions.txt0000644000175300017530000000157012023251674016074 00000000000000If you were a user of CppTestTools you will have a few changes to make. CppUTest is the unit test harness from CppTestTools CppFit is the FIT implementaions from CppTestTools (CppFit is a separate download) Sorry, this is not a complete set of instructions for converting, but here are some suggestions. In each test file change namespace for SetUp and TearDown to TEST_GROUP(GroupName) (GroupName is the class name by convention) delete IMPORT_TEST_GROUP (TEST_GROUP has this built in now) #include "UnitTestHarness/somefile.h" should be #include "CppUTest/somefile.h" Your Makefiles have to change: Change DOTO to OBJS Replace CPP_TEST_TOOLS with CPP_U_TEST Replace MakefileHelpers with build Change -I$(CPP_TEST_TOOLS) to -I$(CPP_U_TEST)/include\ For libraries using fixtures add -I$(CPP_FIT)/include Add the RunAllTests.sh script to your AllTests directory cpputest-3.4/config.h.cmake0000644000175300017530000000047112134163705012657 00000000000000#ifndef CONFIG_H_ #define CONFIG_H_ #cmakedefine CPPUTEST_COMPILATION @CPPUTEST_COMPILATION@ #cmakedefine CPPUTEST_MEM_LEAK_DETECTION_DISABLED #cmakedefine CPPUTEST_STD_C_LIB_DISABLED #cmakedefine CPPUTEST_STD_CPP_LIB_DISABLED #cmakedefine CPPUTEST_USE_REAL_GMOCK #cmakedefine CPPUTEST_USE_REAL_GTEST #endif cpputest-3.4/cpputest-hist.txt0000644000175300017530000020416512023251674013545 00000000000000------------------------------------------------------------------------ r337 | basvodde | 2009-05-17 02:43:25 -0500 (Sun, 17 May 2009) | 1 line Fixed the MemoryLeakDetector again. ------------------------------------------------------------------------ r336 | basvodde | 2009-05-17 02:05:32 -0500 (Sun, 17 May 2009) | 1 line Removed the PlatformSpecificSPrintf. No need anymore ------------------------------------------------------------------------ r335 | basvodde | 2009-05-17 01:52:38 -0500 (Sun, 17 May 2009) | 1 line Added some String function and removed static buffers. Also removed an #undef which let to problems... ------------------------------------------------------------------------ r334 | jamesgrenning | 2009-05-15 23:46:33 -0500 (Fri, 15 May 2009) | 2 lines c leak detection is default on. ------------------------------------------------------------------------ r333 | jamesgrenning | 2009-05-07 18:09:55 -0500 (Thu, 07 May 2009) | 1 line using ranlib due to cygwin problem. it does not support libtool -static ------------------------------------------------------------------------ r332 | jamesgrenning | 2009-05-07 18:01:04 -0500 (Thu, 07 May 2009) | 1 line Using libtool instead of $(AR) for library creation. Needed for Mac OSX. ------------------------------------------------------------------------ r331 | tpuronen | 2009-05-06 07:50:37 -0500 (Wed, 06 May 2009) | 1 line Clean up ------------------------------------------------------------------------ r330 | tpuronen | 2009-05-06 07:39:46 -0500 (Wed, 06 May 2009) | 1 line Symbian compilation fixes. ------------------------------------------------------------------------ r329 | tpuronen | 2009-05-06 06:50:36 -0500 (Wed, 06 May 2009) | 1 line The first batch of Symbian fixes, do not use new overloads as Symbian has built-in memory leak detection, remove obsolete stuff. ------------------------------------------------------------------------ r328 | tpuronen | 2009-05-06 03:21:45 -0500 (Wed, 06 May 2009) | 1 line 64-bit compiler fixes. Examples still need fixes. ------------------------------------------------------------------------ r327 | jamesgrenning | 2009-04-23 21:43:25 -0500 (Thu, 23 Apr 2009) | 1 line ------------------------------------------------------------------------ r326 | jamesgrenning | 2009-04-23 08:28:44 -0500 (Thu, 23 Apr 2009) | 1 line ------------------------------------------------------------------------ r325 | jamesgrenning | 2009-04-23 07:50:16 -0500 (Thu, 23 Apr 2009) | 2 lines Adding IAR-STR912 ARM9 eval board support ------------------------------------------------------------------------ r324 | jamesgrenning | 2009-04-22 19:15:21 -0500 (Wed, 22 Apr 2009) | 2 lines added enable() during setup. ------------------------------------------------------------------------ r323 | jamesgrenning | 2009-04-22 18:57:38 -0500 (Wed, 22 Apr 2009) | 26 lines Changes to allow Memory Leak Detection to be turned off for an embedded platform MemoryLeakDetector.h: Added #include so that size_t works. MemoryLeakWarningPlugin.h: Modified: extern "C" { /* include for size_t definition */ #undef __cplusplus #define _WCHART #include "TestHarness_c.h" } MemoryLeakWarningPlugin.cpp: Removed the remaining operator new stuff added disable() to constructor added isEnabled() guard clauses to public methods that do something modified and do not like: void MemoryLeakWarningPlugin::Enable() { #if UT_NEW_OVERRIDES_ENABLED memLeakDetector->enable(); #endif } I would prefer a NullMemoryLeakWarningPlugin over all this conditional compilation, but can live with it. ------------------------------------------------------------------------ r322 | jamesgrenning | 2009-04-14 07:37:06 -0500 (Tue, 14 Apr 2009) | 1 line Adding IAR work in progress ------------------------------------------------------------------------ r321 | basvodde | 2009-04-10 03:28:35 -0500 (Fri, 10 Apr 2009) | 4 lines Changed back to use size_t :( ------------------------------------------------------------------------ r320 | jamesgrenning | 2009-04-06 06:14:51 -0500 (Mon, 06 Apr 2009) | 5 lines changed int to long void* operator new(unsigned long size, const char* file, int line); void* operator new[](unsigned long size, const char* file, int line); ------------------------------------------------------------------------ r319 | basvodde | 2009-04-05 23:55:09 -0500 (Sun, 05 Apr 2009) | 3 lines Removed dependencies to Std Lib C in order to increase portability. ------------------------------------------------------------------------ r318 | basvodde | 2009-04-05 02:26:26 -0500 (Sun, 05 Apr 2009) | 6 lines - Fixed memory leak detector stack usage. - Added UT_PRINT - Added STRCMP_CONTAINS - Added StringFromFormat - Added simple and inefficient string buffering - Added new target to Makefile ------------------------------------------------------------------------ r317 | jamesgrenning | 2009-03-30 23:49:30 -0500 (Mon, 30 Mar 2009) | 20 lines CommandLineTestRunner supports JUNitOutput from command line. Using pimpl pattern. No longer a header file dependency on stdio. NullJUnitTestOutput file added that can be included in builds that will not use JUnit output Removed OutputType from public interface of CommandLineArguments now using bool isJUnitOutput() const; bool isEclipseOutput() const; also added -o eclipse -o normal still works (we'll want a -o vs some day) removed CommandLineTestRunner ::getOutputType ------------------------------------------------------------------------ r316 | jamesgrenning | 2009-03-30 09:51:10 -0500 (Mon, 30 Mar 2009) | 1 line Added conditional compile that allows swapping between no-placement new and yes-placement new ------------------------------------------------------------------------ r315 | basvodde | 2009-03-29 05:47:26 -0500 (Sun, 29 Mar 2009) | 2 lines Some tweaks to improve memory leak detector performance ------------------------------------------------------------------------ r314 | jamesgrenning | 2009-03-28 15:03:51 -0500 (Sat, 28 Mar 2009) | 33 lines TestHarness.h --------------- Added PlatformSpecificPutchat Added PlatformSpecificFlush CommandLIneTestRunner.cpp ------------------------- Needed to edit out JUnitOutput.h MemoryLeakDetector.cpp ---------------------- added #undef malloc and free added checkedMalloc that FAILs when malloc returns 0; called checkedMalloc instead of malloc MemoryLeakWarningPlugin.cpp --------------------------- Added a malloc failure check and FAIL TestOutput.cpp -------------- Extraced PlatformSpecificPutchat and PlatformSpecificFlush Platformws ---------- Added IarPlatform Gcc/UtestPlatform.cpp - added new mehtods VisualCpp/UtestPlatform.cpp - added new methods Symbian/UtestPlatform.cpp - added new methods ------------------------------------------------------------------------ r313 | jamesgrenning | 2009-03-11 09:19:15 -0500 (Wed, 11 Mar 2009) | 1 line Removed static from operator new ------------------------------------------------------------------------ r312 | basvodde | 2009-03-11 01:50:46 -0500 (Wed, 11 Mar 2009) | 2 lines Nasty little cast caused a negative array index. ------------------------------------------------------------------------ r311 | basvodde | 2009-03-10 23:21:10 -0500 (Tue, 10 Mar 2009) | 1 line Fixed some bugs related to static initialization. ------------------------------------------------------------------------ r310 | jamesgrenning | 2009-03-10 12:43:24 -0500 (Tue, 10 Mar 2009) | 9 lines Added to #include to TestHarness.h. Why is va_lst being passed as void* left old until we can discuss. MemoryLeakDetector.cpp using changed PlatformSpecificVSNprintf2 Added #undef __cplusplus to TestHarness_c.cpp Added PlatformSpecificVSNprintf2 to UTestPlatform. ------------------------------------------------------------------------ r309 | basvodde | 2009-03-10 02:24:35 -0500 (Tue, 10 Mar 2009) | 1 line Added realloc support ------------------------------------------------------------------------ r308 | basvodde | 2009-03-10 00:28:38 -0500 (Tue, 10 Mar 2009) | 1 line Fixed a / in the Makefile ------------------------------------------------------------------------ r307 | jamesgrenning | 2009-03-08 17:02:31 -0500 (Sun, 08 Mar 2009) | 1 line poking around SetPointerPlugin. ------------------------------------------------------------------------ r306 | jamesgrenning | 2009-03-08 16:26:22 -0500 (Sun, 08 Mar 2009) | 1 line VC projects OK after Mac change including CommandLineArguments fix. ------------------------------------------------------------------------ r305 | jamesgrenning | 2009-03-08 15:52:56 -0500 (Sun, 08 Mar 2009) | 14 lines Added CommandLineArguments class. Got rid of the statics that were causing the original trouble. There still a some leak as part of CommandLineTestRunner::runAllTestsMain(). Silenced with FinalReport(3). CommandLineTestRunner has no tests now. The prior tests were only about parameters anyway. I added gone and isGone to MemoryLeakDetector. This is preventing the detector from crashing during exit. You should look this over. Its kind of a kludge, but it works. I put thin into ignore. Have not had a chance to check why it is broken. IGNORE_TEST(SetPointerPluginTest, installTooMuchFunctionPointer) Added a test to check the order of the pre and post test actions. last plugin is run first, post runs in opposite order. ------------------------------------------------------------------------ r304 | jamesgrenning | 2009-02-23 19:10:13 -0600 (Mon, 23 Feb 2009) | 1 line kludge fix for groupFilter and nameFilter in test regixtry.u ------------------------------------------------------------------------ r303 | jamesgrenning | 2009-02-23 14:36:47 -0600 (Mon, 23 Feb 2009) | 1 line turned on full parse indexing ------------------------------------------------------------------------ r302 | jamesgrenning | 2009-02-23 14:29:07 -0600 (Mon, 23 Feb 2009) | 38 lines I made this compile with ubuntu Linux gcc 4.3.2 Many char*s and char**s had to be changed to const char* and const char**. For backwards compatibility there are two of these static int RunAllTests(int ac, const char** av); static int RunAllTests(int ac, char** av); one to work with each possible main main(int argc, const char** argv). main(int argc, char** argv) I did not want to break existing tests. There are also two of thes in TestPlugin for the same reason. virtual bool parseAllArguments(int ac, const char** av, int index); virtual bool parseAllArguments(int ac, char** av, int index); I did not modify the PluginTest file because parseArguments is not tested there. I took out CHECK_EQUAL("THIS", "THIS") from places like TEST(Utest, allMacros) { CHECK(0 == 0); LONGS_EQUAL(1,1); BYTES_EQUAL(0xab,0xab); CHECK_EQUAL(100,100); STRCMP_EQUAL("THIS", "THIS"); DOUBLES_EQUAL(1.0, 1.0, .01); POINTERS_EQUAL(this, this); } It was generating a warning. For good reasons. The use probably really wants STRCMP_EQUAL. Changed Makefile CPPFLAGS += -Wall ------------------------------------------------------------------------ r301 | basvodde | 2009-01-10 03:29:18 -0600 (Sat, 10 Jan 2009) | 4 lines 1. New memory leak detector 2. CHECKs can be used for functions that return a value 3. Teardown is always called 4. Failed cases don't report memory leaks ------------------------------------------------------------------------ r300 | jamesgrenning | 2008-12-10 08:40:26 -0600 (Wed, 10 Dec 2008) | 1 line fixed alternative TEST_FAIL alternative to FAIL ------------------------------------------------------------------------ r299 | jamesgrenning | 2008-12-08 20:43:40 -0600 (Mon, 08 Dec 2008) | 2 lines Updated scripts for generating C starting point for multi instance classes ------------------------------------------------------------------------ r298 | basvodde | 2008-12-02 04:56:01 -0600 (Tue, 02 Dec 2008) | 1 line OrderedTest ------------------------------------------------------------------------ r297 | basvodde | 2008-12-02 04:39:38 -0600 (Tue, 02 Dec 2008) | 2 lines Added another search function... ------------------------------------------------------------------------ r296 | basvodde | 2008-11-30 20:48:31 -0600 (Sun, 30 Nov 2008) | 1 line Minor changes to support ordered tests ------------------------------------------------------------------------ r295 | jamesgrenning | 2008-11-10 10:48:40 -0600 (Mon, 10 Nov 2008) | 1 line Changed how pointers are printed so that it is compatible with MS VC6/Mac/Cygwin ------------------------------------------------------------------------ r294 | jamesgrenning | 2008-11-10 09:20:50 -0600 (Mon, 10 Nov 2008) | 1 line ------------------------------------------------------------------------ r293 | jamesgrenning | 2008-11-04 17:46:46 -0600 (Tue, 04 Nov 2008) | 1 line Fixed signature of PlatformSpecificSprintf ------------------------------------------------------------------------ r292 | jamesgrenning | 2008-11-04 06:43:18 -0600 (Tue, 04 Nov 2008) | 1 line delete q ------------------------------------------------------------------------ r291 | basvodde | 2008-11-04 00:32:13 -0600 (Tue, 04 Nov 2008) | 3 lines Removed the dependency on stdio.h in the TestHarness.h. It killed the usage of CppUTest on not so standard C platforms. ------------------------------------------------------------------------ r290 | jamesgrenning | 2008-11-03 06:11:34 -0600 (Mon, 03 Nov 2008) | 3 lines added CppUnit templates ------------------------------------------------------------------------ r289 | jamesgrenning | 2008-10-30 14:39:29 -0500 (Thu, 30 Oct 2008) | 1 line ------------------------------------------------------------------------ r288 | jamesgrenning | 2008-10-30 14:35:22 -0500 (Thu, 30 Oct 2008) | 2 lines improving new project script ------------------------------------------------------------------------ r287 | jamesgrenning | 2008-10-03 06:52:37 -0500 (Fri, 03 Oct 2008) | 2 lines added POINTERS_EQUAL support Updated code templates ------------------------------------------------------------------------ r286 | jamesgrenning | 2008-09-04 14:10:15 -0500 (Thu, 04 Sep 2008) | 2 lines Added support scripts to build dir structure and other flavor of C modules ------------------------------------------------------------------------ r285 | jamesgrenning | 2008-08-02 16:14:51 -0500 (Sat, 02 Aug 2008) | 1 line initialized a pointer that made a failure in VS.NET 2003 ------------------------------------------------------------------------ r284 | jamesgrenning | 2008-08-01 17:51:23 -0500 (Fri, 01 Aug 2008) | 1 line I changed cpputest_sprintf's name ------------------------------------------------------------------------ r283 | basvodde | 2008-08-01 04:03:46 -0500 (Fri, 01 Aug 2008) | 1 line Path fixed. ------------------------------------------------------------------------ r282 | jamesgrenning | 2008-07-15 20:35:04 -0500 (Tue, 15 Jul 2008) | 1 line removed platform include path ------------------------------------------------------------------------ r281 | jamesgrenning | 2008-07-15 15:41:15 -0500 (Tue, 15 Jul 2008) | 1 line ------------------------------------------------------------------------ r280 | jamesgrenning | 2008-07-15 11:53:22 -0500 (Tue, 15 Jul 2008) | 6 lines Created cpputest_snprintf to get isolate the platform dependencies around snprintf. Updated MS VC6 workspaces and projects Got rid of cygwin warnings This needs to be checked on symbian. vsnprintf is not supported on symbian, but it does translate the call to vsprintf. this might cause a test to fail. ------------------------------------------------------------------------ r279 | jamesgrenning | 2008-07-12 12:07:02 -0500 (Sat, 12 Jul 2008) | 20 lines I just got CppUTest to work with VC6 AGAIN! Here are some of the changes. JUnit... files add #include "Platform.h" the MS platform file defines snprintf Makefile: add the platform directory on the include search path. added condition build for the "Extensions" Testharness_c.cpp got rid of a warning here by using the ?: operator void CHECK_C_LOCATION(int condition, const char* conditionString, const char* fileName, int lineNumber) { CHECK_LOCATION(((condition) == 0 ? false : true), conditionString, fileName, lineNumber); } ------------------------------------------------------------------------ r278 | tpuronen | 2008-06-27 02:09:10 -0500 (Fri, 27 Jun 2008) | 1 line Added NULL checking to overloaded delete operators ------------------------------------------------------------------------ r277 | tpuronen | 2008-06-26 08:14:25 -0500 (Thu, 26 Jun 2008) | 1 line Rewrote README_Symbian.txt, added missing tests to alltests.mmp. ------------------------------------------------------------------------ r276 | tpuronen | 2008-06-26 07:23:54 -0500 (Thu, 26 Jun 2008) | 1 line Symbian build file fixes ------------------------------------------------------------------------ r275 | tpuronen | 2008-06-26 05:21:13 -0500 (Thu, 26 Jun 2008) | 1 line Symbian build file fixes ------------------------------------------------------------------------ r274 | jamesgrenning | 2008-06-25 17:03:07 -0500 (Wed, 25 Jun 2008) | 2 lines added BYTES_EQUAL ------------------------------------------------------------------------ r273 | jamesgrenning | 2008-06-25 17:01:21 -0500 (Wed, 25 Jun 2008) | 1 line added BYTES_EQUAL ------------------------------------------------------------------------ r272 | basvodde | 2008-06-23 21:51:41 -0500 (Mon, 23 Jun 2008) | 1 line Fixed the output to console related to flushing. ------------------------------------------------------------------------ r271 | basvodde | 2008-06-23 21:42:13 -0500 (Mon, 23 Jun 2008) | 1 line Renamed the RealTestOutput and the MockTestOutput ------------------------------------------------------------------------ r270 | basvodde | 2008-06-23 03:22:57 -0500 (Mon, 23 Jun 2008) | 4 lines Renamed GenericTest to ExecFunctionTest and moved it to UTest.h Also renamed GenericFixture to TestTestingFixture and moved it to the include since this is useful when writing plugins or extensions. Fixed all the tests. ------------------------------------------------------------------------ r269 | jamesgrenning | 2008-05-20 10:41:08 -0500 (Tue, 20 May 2008) | 1 line report that tests are being run, before running them ------------------------------------------------------------------------ r268 | jamesgrenning | 2008-05-20 10:37:50 -0500 (Tue, 20 May 2008) | 2 lines flush buffer so that if a test crashes, the test name is printed. Ignore tests are indicated with a bang! ------------------------------------------------------------------------ r267 | basvodde | 2008-04-16 03:54:43 -0500 (Wed, 16 Apr 2008) | 1 line Use more gcc defaults ------------------------------------------------------------------------ r266 | tpuronen | 2008-04-06 05:42:39 -0500 (Sun, 06 Apr 2008) | 1 line Symbian build file fixes ------------------------------------------------------------------------ r265 | tpuronen | 2008-04-06 01:07:35 -0500 (Sun, 06 Apr 2008) | 1 line Updated Symbian README ------------------------------------------------------------------------ r264 | basvodde | 2008-04-03 23:06:08 -0500 (Thu, 03 Apr 2008) | 1 line Plugin changes ------------------------------------------------------------------------ r263 | basvodde | 2008-04-03 23:02:40 -0500 (Thu, 03 Apr 2008) | 2 lines Added a CHECK_C macro for C usage ------------------------------------------------------------------------ r262 | basvodde | 2008-04-03 22:59:43 -0500 (Thu, 03 Apr 2008) | 1 line Moved SimpleString earlier ------------------------------------------------------------------------ r261 | basvodde | 2008-04-02 02:19:02 -0500 (Wed, 02 Apr 2008) | 1 line Doing reverse resetting for SetPointerPlugin ------------------------------------------------------------------------ r260 | basvodde | 2008-04-02 02:18:32 -0500 (Wed, 02 Apr 2008) | 1 line Added test for setting the same pointer twice ------------------------------------------------------------------------ r259 | basvodde | 2008-04-01 00:36:10 -0500 (Tue, 01 Apr 2008) | 1 line Removed platform dependency ------------------------------------------------------------------------ r258 | basvodde | 2008-04-01 00:34:56 -0500 (Tue, 01 Apr 2008) | 1 line Removed Platform.h ------------------------------------------------------------------------ r257 | basvodde | 2008-04-01 00:25:30 -0500 (Tue, 01 Apr 2008) | 1 line t -> T ------------------------------------------------------------------------ r256 | basvodde | 2008-04-01 00:14:41 -0500 (Tue, 01 Apr 2008) | 1 line I -> i ------------------------------------------------------------------------ r255 | basvodde | 2008-04-01 00:10:30 -0500 (Tue, 01 Apr 2008) | 1 line HRM! ------------------------------------------------------------------------ r254 | basvodde | 2008-03-31 23:59:40 -0500 (Mon, 31 Mar 2008) | 1 line Always install the SetPointerPlugin ------------------------------------------------------------------------ r253 | basvodde | 2008-03-31 23:48:08 -0500 (Mon, 31 Mar 2008) | 3 lines Changed the UT_FPSET to UT_PTR_SET Now works generic with all pointers ------------------------------------------------------------------------ r252 | basvodde | 2008-03-31 23:45:29 -0500 (Mon, 31 Mar 2008) | 1 line JUnit output fix ------------------------------------------------------------------------ r251 | basvodde | 2008-03-31 23:45:01 -0500 (Mon, 31 Mar 2008) | 1 line JUnit output fix ------------------------------------------------------------------------ r250 | tpuronen | 2008-03-26 15:37:49 -0500 (Wed, 26 Mar 2008) | 1 line Symbian build fixes. ------------------------------------------------------------------------ r249 | jamesgrenning | 2008-03-26 14:33:17 -0500 (Wed, 26 Mar 2008) | 1 line Added setjmp/longjmp for symbian. not sure if it is right ------------------------------------------------------------------------ r248 | jamesgrenning | 2008-03-24 23:28:31 -0500 (Mon, 24 Mar 2008) | 1 line ------------------------------------------------------------------------ r247 | jamesgrenning | 2008-03-24 23:28:02 -0500 (Mon, 24 Mar 2008) | 2 lines made NewProject compatible with makefile changes ------------------------------------------------------------------------ r246 | jamesgrenning | 2008-03-24 23:27:15 -0500 (Mon, 24 Mar 2008) | 1 line MS Project dsp files up to date ------------------------------------------------------------------------ r245 | jamesgrenning | 2008-03-24 23:26:27 -0500 (Mon, 24 Mar 2008) | 2 lines update how throw/catch is done to get rid of warning ------------------------------------------------------------------------ r244 | jamesgrenning | 2008-03-24 23:25:25 -0500 (Mon, 24 Mar 2008) | 2 lines ------------------------------------------------------------------------ r243 | jamesgrenning | 2008-03-24 23:24:41 -0500 (Mon, 24 Mar 2008) | 1 line ------------------------------------------------------------------------ r242 | jamesgrenning | 2008-03-24 09:00:18 -0500 (Mon, 24 Mar 2008) | 6 lines Refactored early test exit so that macros are not needed for exiting tests early. gcc version and VC++ versions use exceptions symbian version is untested, but i put a setjmp/longjmp implementation in there that works on gcc. I added a StarterKit platform that has setjmp/longjmp implementations for early test exit and null implementations for the time stuff. ------------------------------------------------------------------------ r241 | jamesgrenning | 2008-03-22 14:18:09 -0500 (Sat, 22 Mar 2008) | 4 lines Made changes so that a test will exist on its first failure using setjmp/longjmp. it works for gcc. it is a NOP for VC++ and Symbian. Updated and tested VC++ project files ------------------------------------------------------------------------ r240 | jamesgrenning | 2008-03-22 14:15:30 -0500 (Sat, 22 Mar 2008) | 1 line experimental version of malloc/free that will record line of malloc ------------------------------------------------------------------------ r239 | jamesgrenning | 2008-03-22 14:13:14 -0500 (Sat, 22 Mar 2008) | 1 line Commented out experiment with preprocessor stubs ------------------------------------------------------------------------ r238 | jamesgrenning | 2008-03-22 14:09:35 -0500 (Sat, 22 Mar 2008) | 4 lines refactor make clean deletion of gcov files works on cygwin ------------------------------------------------------------------------ r237 | jamesgrenning | 2008-03-22 06:04:17 -0500 (Sat, 22 Mar 2008) | 5 lines Updated scripts NewCModule - simpler template NewCmiModule - multiple instance C module NewProject supported ------------------------------------------------------------------------ r236 | jamesgrenning | 2008-03-05 04:37:55 -0600 (Wed, 05 Mar 2008) | 2 lines test results captured in a file, and other gcov changes ------------------------------------------------------------------------ r235 | jamesgrenning | 2008-01-30 23:38:07 -0600 (Wed, 30 Jan 2008) | 1 line Added format target to reformat code using astyle. ------------------------------------------------------------------------ r234 | jamesgrenning | 2008-01-30 22:25:24 -0600 (Wed, 30 Jan 2008) | 1 line Added ability to cause cpputest_malloc to return a NULL pointer. ------------------------------------------------------------------------ r233 | jamesgrenning | 2008-01-28 01:21:44 -0600 (Mon, 28 Jan 2008) | 2 lines Deleted some unused templates ------------------------------------------------------------------------ r232 | jamesgrenning | 2008-01-28 01:15:20 -0600 (Mon, 28 Jan 2008) | 2 lines clean up temp files ------------------------------------------------------------------------ r231 | jamesgrenning | 2008-01-27 19:45:44 -0600 (Sun, 27 Jan 2008) | 1 line ignore gcov output ------------------------------------------------------------------------ r230 | jamesgrenning | 2008-01-27 19:42:41 -0600 (Sun, 27 Jan 2008) | 1 line ignore gcov files ------------------------------------------------------------------------ r229 | jamesgrenning | 2008-01-27 18:56:42 -0600 (Sun, 27 Jan 2008) | 5 lines Update makefile and makefile support Added test coverage to makefile updated templates for initial C modules ------------------------------------------------------------------------ r228 | jamesgrenning | 2007-12-27 18:19:34 -0600 (Thu, 27 Dec 2007) | 1 line Added -I for platform include ------------------------------------------------------------------------ r227 | jamesgrenning | 2007-12-27 18:16:54 -0600 (Thu, 27 Dec 2007) | 2 lines Added support for uint8_t uint16_t uint32_t. ------------------------------------------------------------------------ r226 | jamesgrenning | 2007-12-27 15:41:48 -0600 (Thu, 27 Dec 2007) | 1 line Reversed the slashes in the includes ------------------------------------------------------------------------ r225 | basvodde | 2007-12-27 03:27:29 -0600 (Thu, 27 Dec 2007) | 1 line Added a very simple function pointer resetter plugin ------------------------------------------------------------------------ r224 | basvodde | 2007-12-26 02:15:55 -0600 (Wed, 26 Dec 2007) | 1 line Changed char* to SimpleString. To remove dependencies with StdC ------------------------------------------------------------------------ r223 | basvodde | 2007-12-26 02:15:29 -0600 (Wed, 26 Dec 2007) | 1 line Changed char* to SimpleString. To remove dependencies with StdC ------------------------------------------------------------------------ r222 | basvodde | 2007-12-26 02:15:03 -0600 (Wed, 26 Dec 2007) | 1 line Changed char* to SimpleString. To remove dependencies with StdC ------------------------------------------------------------------------ r221 | basvodde | 2007-12-26 01:48:33 -0600 (Wed, 26 Dec 2007) | 1 line Print out options and removed include dependencies ------------------------------------------------------------------------ r220 | basvodde | 2007-12-26 01:47:08 -0600 (Wed, 26 Dec 2007) | 1 line Changed #include dependency ------------------------------------------------------------------------ r219 | basvodde | 2007-12-26 01:46:41 -0600 (Wed, 26 Dec 2007) | 1 line ------------------------------------------------------------------------ r218 | basvodde | 2007-12-26 01:46:23 -0600 (Wed, 26 Dec 2007) | 1 line Changed #include dependency ------------------------------------------------------------------------ r217 | basvodde | 2007-12-26 01:44:39 -0600 (Wed, 26 Dec 2007) | 1 line Removed Platform.h ------------------------------------------------------------------------ r216 | basvodde | 2007-12-24 03:41:43 -0600 (Mon, 24 Dec 2007) | 1 line Need both sys time and time. Windows/unix difference. ------------------------------------------------------------------------ r215 | basvodde | 2007-12-24 03:12:16 -0600 (Mon, 24 Dec 2007) | 3 lines Code for per test time checks both in -v mode and -ojunit mode. ------------------------------------------------------------------------ r214 | basvodde | 2007-12-24 03:11:30 -0600 (Mon, 24 Dec 2007) | 1 line Used the new macro ------------------------------------------------------------------------ r213 | basvodde | 2007-12-24 03:10:03 -0600 (Mon, 24 Dec 2007) | 1 line Added new macro for creating test base classes. ------------------------------------------------------------------------ r212 | basvodde | 2007-12-24 03:08:45 -0600 (Mon, 24 Dec 2007) | 4 lines Added some platform specific functions to TestHarness. Might need to find a better way to do this. Though... not today. ------------------------------------------------------------------------ r211 | basvodde | 2007-12-24 03:06:43 -0600 (Mon, 24 Dec 2007) | 1 line Removed extenstions since could not compile without it. ------------------------------------------------------------------------ r210 | basvodde | 2007-12-24 03:06:14 -0600 (Mon, 24 Dec 2007) | 1 line Updated the makefile and fixed some issues with the extentions ------------------------------------------------------------------------ r209 | jamesgrenning | 2007-12-17 20:39:37 -0600 (Mon, 17 Dec 2007) | 1 line ------------------------------------------------------------------------ r208 | jamesgrenning | 2007-12-17 20:36:17 -0600 (Mon, 17 Dec 2007) | 1 line Refactored the makefile to add conditional inclusion of an extensions directory ------------------------------------------------------------------------ r207 | jamesgrenning | 2007-12-17 15:41:52 -0600 (Mon, 17 Dec 2007) | 1 line changed include to -include to get rid of the error messages when creating the.d files ------------------------------------------------------------------------ r206 | jamesgrenning | 2007-12-17 15:30:12 -0600 (Mon, 17 Dec 2007) | 10 lines To solve this error on a mac: /usr/bin/ld: Undefined symbols: __Unwind_Resume collect2: ld returned 1 exit status make: *** [CppUTest_tests] Error 1 Changes $(CC) to $(CXX) everywhere but in the .o.c rule. Change running the target from @ to ./@ to be unix compatible. ------------------------------------------------------------------------ r205 | jamesgrenning | 2007-12-03 10:20:40 -0600 (Mon, 03 Dec 2007) | 1 line ------------------------------------------------------------------------ r204 | jamesgrenning | 2007-12-03 10:19:21 -0600 (Mon, 03 Dec 2007) | 1 line ------------------------------------------------------------------------ r203 | basvodde | 2007-11-30 00:12:54 -0600 (Fri, 30 Nov 2007) | 1 line Removed stdint.h dependency ------------------------------------------------------------------------ r202 | basvodde | 2007-11-29 20:10:45 -0600 (Thu, 29 Nov 2007) | 1 line Fixed a bug that was only visible on Linux ------------------------------------------------------------------------ r201 | basvodde | 2007-11-29 19:41:00 -0600 (Thu, 29 Nov 2007) | 1 line Deleted old makefiles ------------------------------------------------------------------------ r200 | basvodde | 2007-11-29 19:38:49 -0600 (Thu, 29 Nov 2007) | 1 line New makefile ------------------------------------------------------------------------ r199 | basvodde | 2007-11-29 19:38:24 -0600 (Thu, 29 Nov 2007) | 1 line Changed the timeing output ------------------------------------------------------------------------ r198 | jamesgrenning | 2007-11-28 17:11:01 -0600 (Wed, 28 Nov 2007) | 1 line Made a new StringFrom method so that pointers don't print as , but rather in hex ------------------------------------------------------------------------ r197 | jamesgrenning | 2007-11-28 17:08:18 -0600 (Wed, 28 Nov 2007) | 1 line make depend now checks *.c* for dependencies, rather than just *.cpp ------------------------------------------------------------------------ r196 | basvodde | 2007-11-21 03:53:59 -0600 (Wed, 21 Nov 2007) | 2 lines Added time measurements ------------------------------------------------------------------------ r195 | basvodde | 2007-11-21 03:29:00 -0600 (Wed, 21 Nov 2007) | 1 line Added SimpleStringExtensions ------------------------------------------------------------------------ r194 | basvodde | 2007-11-21 00:09:11 -0600 (Wed, 21 Nov 2007) | 2 lines Changed the name of TARGET since it conflicted with an environment variable called TARGET and therefore let to very strange error messages. ------------------------------------------------------------------------ r193 | basvodde | 2007-11-20 20:48:58 -0600 (Tue, 20 Nov 2007) | 1 line Moved SimpleStringExtensions.cpp to the examples ------------------------------------------------------------------------ r192 | basvodde | 2007-11-20 20:30:08 -0600 (Tue, 20 Nov 2007) | 1 line Removed TestInstaller ------------------------------------------------------------------------ r191 | basvodde | 2007-11-20 20:29:48 -0600 (Tue, 20 Nov 2007) | 1 line Removed TestInstaller ------------------------------------------------------------------------ r190 | basvodde | 2007-11-20 20:29:20 -0600 (Tue, 20 Nov 2007) | 1 line Removed TestInstaller ------------------------------------------------------------------------ r189 | basvodde | 2007-11-20 20:23:14 -0600 (Tue, 20 Nov 2007) | 1 line Removed NullTest ------------------------------------------------------------------------ r188 | basvodde | 2007-11-20 20:22:53 -0600 (Tue, 20 Nov 2007) | 1 line Removed NullTest ------------------------------------------------------------------------ r187 | basvodde | 2007-11-20 20:22:27 -0600 (Tue, 20 Nov 2007) | 1 line Added UtestMacros.h ------------------------------------------------------------------------ r186 | basvodde | 2007-11-20 20:21:58 -0600 (Tue, 20 Nov 2007) | 1 line Removed NullTest ------------------------------------------------------------------------ r185 | basvodde | 2007-11-20 20:14:39 -0600 (Tue, 20 Nov 2007) | 1 line Removed EqualsFailure ------------------------------------------------------------------------ r184 | basvodde | 2007-11-20 20:14:14 -0600 (Tue, 20 Nov 2007) | 1 line Removed EqualsFailure ------------------------------------------------------------------------ r183 | jamesgrenning | 2007-11-20 00:59:21 -0600 (Tue, 20 Nov 2007) | 2 lines Added scripts and templates for NewProject and NewLibrary ------------------------------------------------------------------------ r182 | jamesgrenning | 2007-11-19 20:51:13 -0600 (Mon, 19 Nov 2007) | 1 line ------------------------------------------------------------------------ r181 | jamesgrenning | 2007-11-19 18:44:02 -0600 (Mon, 19 Nov 2007) | 2 lines ------------------------------------------------------------------------ r180 | jamesgrenning | 2007-11-19 18:43:32 -0600 (Mon, 19 Nov 2007) | 1 line ------------------------------------------------------------------------ r179 | jamesgrenning | 2007-11-19 18:43:06 -0600 (Mon, 19 Nov 2007) | 1 line ------------------------------------------------------------------------ r178 | jamesgrenning | 2007-11-19 18:42:30 -0600 (Mon, 19 Nov 2007) | 1 line ------------------------------------------------------------------------ r177 | jamesgrenning | 2007-11-19 18:41:50 -0600 (Mon, 19 Nov 2007) | 1 line ------------------------------------------------------------------------ r176 | jamesgrenning | 2007-11-19 18:39:36 -0600 (Mon, 19 Nov 2007) | 1 line ------------------------------------------------------------------------ r175 | jamesgrenning | 2007-11-19 18:38:48 -0600 (Mon, 19 Nov 2007) | 1 line ------------------------------------------------------------------------ r174 | jamesgrenning | 2007-11-19 18:36:25 -0600 (Mon, 19 Nov 2007) | 1 line ------------------------------------------------------------------------ r173 | jamesgrenning | 2007-11-19 17:48:13 -0600 (Mon, 19 Nov 2007) | 2 lines ------------------------------------------------------------------------ r172 | jamesgrenning | 2007-11-19 17:46:52 -0600 (Mon, 19 Nov 2007) | 2 lines ------------------------------------------------------------------------ r171 | jamesgrenning | 2007-11-19 17:44:53 -0600 (Mon, 19 Nov 2007) | 2 lines ------------------------------------------------------------------------ r170 | jamesgrenning | 2007-11-19 17:43:49 -0600 (Mon, 19 Nov 2007) | 1 line ------------------------------------------------------------------------ r169 | jamesgrenning | 2007-11-19 17:42:31 -0600 (Mon, 19 Nov 2007) | 1 line ------------------------------------------------------------------------ r168 | jamesgrenning | 2007-11-19 17:38:25 -0600 (Mon, 19 Nov 2007) | 1 line ------------------------------------------------------------------------ r167 | jamesgrenning | 2007-11-19 17:37:48 -0600 (Mon, 19 Nov 2007) | 1 line ------------------------------------------------------------------------ r166 | jamesgrenning | 2007-11-19 17:35:58 -0600 (Mon, 19 Nov 2007) | 1 line ------------------------------------------------------------------------ r165 | jamesgrenning | 2007-11-19 17:29:35 -0600 (Mon, 19 Nov 2007) | 1 line ------------------------------------------------------------------------ r164 | jamesgrenning | 2007-11-19 17:27:00 -0600 (Mon, 19 Nov 2007) | 3 lines Adding support for NewProject.sh and NewLibrary.sh This is an experiment right now ------------------------------------------------------------------------ r163 | jamesgrenning | 2007-11-06 13:12:20 -0600 (Tue, 06 Nov 2007) | 1 line ------------------------------------------------------------------------ r162 | jamesgrenning | 2007-11-06 12:24:15 -0600 (Tue, 06 Nov 2007) | 1 line Added Hex printing and support for uint32_t ------------------------------------------------------------------------ r161 | jamesgrenning | 2007-11-06 12:19:43 -0600 (Tue, 06 Nov 2007) | 2 lines added conditional logic around copying hte created library ------------------------------------------------------------------------ r160 | basvodde | 2007-11-06 02:22:45 -0600 (Tue, 06 Nov 2007) | 1 line Removed the mmp file ------------------------------------------------------------------------ r159 | basvodde | 2007-10-07 04:53:58 -0500 (Sun, 07 Oct 2007) | 1 line Symbian build files ------------------------------------------------------------------------ r158 | basvodde | 2007-10-07 04:53:10 -0500 (Sun, 07 Oct 2007) | 1 line Symbian build file ------------------------------------------------------------------------ r157 | basvodde | 2007-10-07 04:52:37 -0500 (Sun, 07 Oct 2007) | 1 line Minor changes ------------------------------------------------------------------------ r156 | basvodde | 2007-10-07 04:51:55 -0500 (Sun, 07 Oct 2007) | 1 line Symbian files ------------------------------------------------------------------------ r155 | basvodde | 2007-10-07 04:47:36 -0500 (Sun, 07 Oct 2007) | 1 line Moved ------------------------------------------------------------------------ r154 | jamesgrenning | 2007-10-01 17:04:01 -0500 (Mon, 01 Oct 2007) | 1 line Deleted SymbianAllTests.cpp, it was breaking the make depend. ------------------------------------------------------------------------ r153 | jamesgrenning | 2007-09-29 12:04:00 -0500 (Sat, 29 Sep 2007) | 1 line LONGS_EQUAL outputs expected/but was numbers in both decimal and hex ------------------------------------------------------------------------ r152 | jamesgrenning | 2007-09-12 19:30:55 -0500 (Wed, 12 Sep 2007) | 2 lines got rid of printf infavor of putchar and a loop ------------------------------------------------------------------------ r151 | jamesgrenning | 2007-09-12 19:29:39 -0500 (Wed, 12 Sep 2007) | 2 lines added files for creating a new project changed the code templates so that they only use setup and teardown ------------------------------------------------------------------------ r150 | jamesgrenning | 2007-09-12 19:20:30 -0500 (Wed, 12 Sep 2007) | 2 lines New project template ------------------------------------------------------------------------ r149 | jamesgrenning | 2007-09-12 19:14:10 -0500 (Wed, 12 Sep 2007) | 1 line Move symbian stuff to one directory ------------------------------------------------------------------------ r148 | basvodde | 2007-08-30 07:38:22 -0500 (Thu, 30 Aug 2007) | 1 line Symbian test files ------------------------------------------------------------------------ r147 | basvodde | 2007-08-30 07:37:32 -0500 (Thu, 30 Aug 2007) | 1 line Patched the wrong patch ------------------------------------------------------------------------ r146 | basvodde | 2007-08-30 07:36:19 -0500 (Thu, 30 Aug 2007) | 2 lines Symbian build files ------------------------------------------------------------------------ r145 | basvodde | 2007-08-30 03:52:40 -0500 (Thu, 30 Aug 2007) | 1 line ------------------------------------------------------------------------ r144 | basvodde | 2007-08-30 03:46:05 -0500 (Thu, 30 Aug 2007) | 1 line Added some methods because of symbian port ------------------------------------------------------------------------ r143 | basvodde | 2007-08-30 03:42:19 -0500 (Thu, 30 Aug 2007) | 1 line Slightly different interface ------------------------------------------------------------------------ r142 | basvodde | 2007-08-30 03:41:14 -0500 (Thu, 30 Aug 2007) | 1 line Added methods due to symbian ------------------------------------------------------------------------ r141 | basvodde | 2007-08-30 03:40:38 -0500 (Thu, 30 Aug 2007) | 1 line Removed inline methods due to symbian ------------------------------------------------------------------------ r140 | basvodde | 2007-08-30 03:28:18 -0500 (Thu, 30 Aug 2007) | 1 line Symbian test files. ------------------------------------------------------------------------ r139 | basvodde | 2007-08-30 03:27:30 -0500 (Thu, 30 Aug 2007) | 1 line Platform specific test execution ------------------------------------------------------------------------ r138 | basvodde | 2007-08-30 03:26:34 -0500 (Thu, 30 Aug 2007) | 1 line Symbian platform specifics ------------------------------------------------------------------------ r137 | basvodde | 2007-08-30 03:25:16 -0500 (Thu, 30 Aug 2007) | 1 line Fixed a small memory leak ------------------------------------------------------------------------ r136 | basvodde | 2007-08-30 03:24:39 -0500 (Thu, 30 Aug 2007) | 1 line Symbian support ------------------------------------------------------------------------ r135 | basvodde | 2007-08-30 03:21:36 -0500 (Thu, 30 Aug 2007) | 1 line Symbian build file ------------------------------------------------------------------------ r134 | basvodde | 2007-08-30 03:20:34 -0500 (Thu, 30 Aug 2007) | 1 line Added platform specific indirection ------------------------------------------------------------------------ r133 | basvodde | 2007-08-30 03:17:07 -0500 (Thu, 30 Aug 2007) | 1 line Fixed a funny bug ------------------------------------------------------------------------ r132 | basvodde | 2007-08-30 03:16:08 -0500 (Thu, 30 Aug 2007) | 1 line Added platform specific UTest execution method ------------------------------------------------------------------------ r131 | basvodde | 2007-08-30 03:15:46 -0500 (Thu, 30 Aug 2007) | 1 line Test executions platform specific method ------------------------------------------------------------------------ r130 | basvodde | 2007-08-30 03:06:13 -0500 (Thu, 30 Aug 2007) | 1 line New method for platform specific execution ------------------------------------------------------------------------ r129 | basvodde | 2007-08-29 04:30:54 -0500 (Wed, 29 Aug 2007) | 1 line Moved static method to not be inline anymore ------------------------------------------------------------------------ r128 | basvodde | 2007-08-29 04:30:14 -0500 (Wed, 29 Aug 2007) | 1 line Moved static method to not be inline anymore ------------------------------------------------------------------------ r127 | basvodde | 2007-08-28 05:02:32 -0500 (Tue, 28 Aug 2007) | 1 line Minor changes ------------------------------------------------------------------------ r126 | jamesgrenning | 2007-08-22 19:27:21 -0500 (Wed, 22 Aug 2007) | 1 line added extern "C" to get rid of compiler warning ------------------------------------------------------------------------ r125 | jamesgrenning | 2007-08-22 19:26:09 -0500 (Wed, 22 Aug 2007) | 2 lines removed unused parameter names to get rid of compiler warnings ------------------------------------------------------------------------ r124 | jamesgrenning | 2007-08-22 19:24:35 -0500 (Wed, 22 Aug 2007) | 1 line replaced printf with a loop and putchar ------------------------------------------------------------------------ r123 | jamesgrenning | 2007-08-22 19:23:46 -0500 (Wed, 22 Aug 2007) | 2 lines reformat ------------------------------------------------------------------------ r122 | basvodde | 2007-08-10 02:30:51 -0500 (Fri, 10 Aug 2007) | 1 line Fixed a bug which happened when using -r2 ------------------------------------------------------------------------ r121 | basvodde | 2007-08-10 02:27:18 -0500 (Fri, 10 Aug 2007) | 1 line Changed the Test output ------------------------------------------------------------------------ r120 | basvodde | 2007-08-10 02:26:47 -0500 (Fri, 10 Aug 2007) | 1 line Changed the test output ------------------------------------------------------------------------ r119 | jamesgrenning | 2007-08-10 01:04:22 -0500 (Fri, 10 Aug 2007) | 1 line improved make and instructions ------------------------------------------------------------------------ r118 | jamesgrenning | 2007-08-09 23:19:30 -0500 (Thu, 09 Aug 2007) | 1 line I redid the VC6 project files. ------------------------------------------------------------------------ r117 | jamesgrenning | 2007-08-09 23:18:13 -0500 (Thu, 09 Aug 2007) | 1 line VC6 project files added ------------------------------------------------------------------------ r116 | jamesgrenning | 2007-08-09 23:16:54 -0500 (Thu, 09 Aug 2007) | 1 line Got Win32MemoryLeakWarning working and added VC6 projects ------------------------------------------------------------------------ r115 | jamesgrenning | 2007-08-08 23:30:54 -0500 (Wed, 08 Aug 2007) | 1 line ------------------------------------------------------------------------ r114 | jamesgrenning | 2007-08-08 23:29:56 -0500 (Wed, 08 Aug 2007) | 5 lines Removed the NewVCModule.sh file - it needs to be rethought, so i killed it Moved VirtualCall Updated template files and New* scripts ------------------------------------------------------------------------ r113 | jamesgrenning | 2007-08-08 23:27:51 -0500 (Wed, 08 Aug 2007) | 2 lines moved to an accessible place ------------------------------------------------------------------------ r112 | jamesgrenning | 2007-08-08 23:26:42 -0500 (Wed, 08 Aug 2007) | 1 line ------------------------------------------------------------------------ r111 | jamesgrenning | 2007-08-08 20:23:31 -0500 (Wed, 08 Aug 2007) | 2 lines Added README for prior users ------------------------------------------------------------------------ r110 | jamesgrenning | 2007-08-07 23:43:46 -0500 (Tue, 07 Aug 2007) | 1 line ------------------------------------------------------------------------ r109 | jamesgrenning | 2007-08-07 23:29:07 -0500 (Tue, 07 Aug 2007) | 1 line ------------------------------------------------------------------------ r108 | jamesgrenning | 2007-08-07 23:28:13 -0500 (Tue, 07 Aug 2007) | 1 line ------------------------------------------------------------------------ r107 | jamesgrenning | 2007-08-07 23:26:52 -0500 (Tue, 07 Aug 2007) | 1 line ------------------------------------------------------------------------ r106 | jamesgrenning | 2007-08-07 23:26:30 -0500 (Tue, 07 Aug 2007) | 1 line ------------------------------------------------------------------------ r105 | jamesgrenning | 2007-08-07 23:22:10 -0500 (Tue, 07 Aug 2007) | 1 line ------------------------------------------------------------------------ r104 | jamesgrenning | 2007-08-07 23:19:11 -0500 (Tue, 07 Aug 2007) | 1 line ------------------------------------------------------------------------ r103 | jamesgrenning | 2007-08-07 23:18:34 -0500 (Tue, 07 Aug 2007) | 1 line ------------------------------------------------------------------------ r102 | jamesgrenning | 2007-08-07 23:03:37 -0500 (Tue, 07 Aug 2007) | 2 lines updated/added README files ------------------------------------------------------------------------ r101 | jamesgrenning | 2007-08-07 23:02:16 -0500 (Tue, 07 Aug 2007) | 1 line fixed make depend ------------------------------------------------------------------------ r100 | jamesgrenning | 2007-08-07 22:41:14 -0500 (Tue, 07 Aug 2007) | 2 lines removed exercise comments ------------------------------------------------------------------------ r99 | jamesgrenning | 2007-08-07 21:58:47 -0500 (Tue, 07 Aug 2007) | 2 lines Added instrutions for the NewClass... scripts ------------------------------------------------------------------------ r98 | jamesgrenning | 2007-08-07 21:34:56 -0500 (Tue, 07 Aug 2007) | 1 line Updated test template files to use the TEST_GROUP macro instead of namespace ------------------------------------------------------------------------ r97 | jamesgrenning | 2007-08-07 21:16:58 -0500 (Tue, 07 Aug 2007) | 3 lines Added vc6 workspace and project files added svn:ignore ------------------------------------------------------------------------ r96 | jamesgrenning | 2007-08-07 21:12:43 -0500 (Tue, 07 Aug 2007) | 1 line added svn:ignore ------------------------------------------------------------------------ r95 | jamesgrenning | 2007-08-07 21:12:17 -0500 (Tue, 07 Aug 2007) | 1 line added svn:ignore ------------------------------------------------------------------------ r94 | jamesgrenning | 2007-08-07 21:11:47 -0500 (Tue, 07 Aug 2007) | 1 line ------------------------------------------------------------------------ r93 | jamesgrenning | 2007-08-07 21:11:10 -0500 (Tue, 07 Aug 2007) | 1 line ------------------------------------------------------------------------ r92 | jamesgrenning | 2007-08-07 21:10:49 -0500 (Tue, 07 Aug 2007) | 1 line ------------------------------------------------------------------------ r91 | jamesgrenning | 2007-08-07 21:08:58 -0500 (Tue, 07 Aug 2007) | 2 lines Added vc6 project ------------------------------------------------------------------------ r90 | jamesgrenning | 2007-08-07 21:08:28 -0500 (Tue, 07 Aug 2007) | 2 lines Added vc60 project ------------------------------------------------------------------------ r89 | jamesgrenning | 2007-08-07 20:44:44 -0500 (Tue, 07 Aug 2007) | 2 lines Compiles under vc6 ------------------------------------------------------------------------ r88 | jamesgrenning | 2007-08-07 20:44:04 -0500 (Tue, 07 Aug 2007) | 2 lines Deleted src/Platforms/VisualCpp/Platform.h ------------------------------------------------------------------------ r87 | jamesgrenning | 2007-08-07 20:42:39 -0500 (Tue, 07 Aug 2007) | 1 line made compatible with bas changes ------------------------------------------------------------------------ r86 | jamesgrenning | 2007-08-07 20:40:43 -0500 (Tue, 07 Aug 2007) | 3 lines - Removed duplicate scope resoultion operator from void TestRegistry::TestRegistry::setCurrentRegistry(TestRegistry* registry) Odd this compiles under gcc in the first place ------------------------------------------------------------------------ r85 | jamesgrenning | 2007-08-07 20:37:23 -0500 (Tue, 07 Aug 2007) | 2 lines - Added #include "Platform.h" so snprintf can compile under vc6 ------------------------------------------------------------------------ r84 | jamesgrenning | 2007-08-07 20:35:05 -0500 (Tue, 07 Aug 2007) | 3 lines added #define snprintf _snprintf so that snprintf can compile under VC6 ------------------------------------------------------------------------ r83 | jamesgrenning | 2007-08-07 20:31:58 -0500 (Tue, 07 Aug 2007) | 2 lines made include guard match classname ------------------------------------------------------------------------ r82 | jamesgrenning | 2007-08-07 19:18:34 -0500 (Tue, 07 Aug 2007) | 1 line Fixed a warning in the if statement in count() ------------------------------------------------------------------------ r81 | basvodde | 2007-07-29 21:34:22 -0500 (Sun, 29 Jul 2007) | 1 line Changed the dependency on TestOutput ------------------------------------------------------------------------ r80 | basvodde | 2007-07-29 21:34:07 -0500 (Sun, 29 Jul 2007) | 1 line Added tests for output formatting ------------------------------------------------------------------------ r79 | basvodde | 2007-07-29 21:33:53 -0500 (Sun, 29 Jul 2007) | 1 line Added tests for new String functions. Need more tests though. ------------------------------------------------------------------------ r78 | basvodde | 2007-07-29 21:33:35 -0500 (Sun, 29 Jul 2007) | 1 line Added tests to makefile ------------------------------------------------------------------------ r77 | basvodde | 2007-07-29 21:33:25 -0500 (Sun, 29 Jul 2007) | 1 line JUnitOutput tests ------------------------------------------------------------------------ r76 | basvodde | 2007-07-29 21:32:59 -0500 (Sun, 29 Jul 2007) | 1 line Removed output from registry ------------------------------------------------------------------------ r75 | basvodde | 2007-07-29 21:32:38 -0500 (Sun, 29 Jul 2007) | 1 line CommandRunner test ------------------------------------------------------------------------ r74 | basvodde | 2007-07-29 21:32:16 -0500 (Sun, 29 Jul 2007) | 1 line Added new tests ------------------------------------------------------------------------ r73 | basvodde | 2007-07-29 21:31:50 -0500 (Sun, 29 Jul 2007) | 1 line Moved formatting away ------------------------------------------------------------------------ r72 | basvodde | 2007-07-29 21:31:40 -0500 (Sun, 29 Jul 2007) | 1 line Added JUnitTestOutput ------------------------------------------------------------------------ r71 | basvodde | 2007-07-29 21:31:26 -0500 (Sun, 29 Jul 2007) | 1 line Moved formatting away ------------------------------------------------------------------------ r70 | basvodde | 2007-07-29 21:31:14 -0500 (Sun, 29 Jul 2007) | 1 line JUnitTestOutput for integration with CruiseControl ------------------------------------------------------------------------ r69 | basvodde | 2007-07-29 21:30:58 -0500 (Sun, 29 Jul 2007) | 1 line Moved all formatting here. ------------------------------------------------------------------------ r68 | basvodde | 2007-07-29 21:30:38 -0500 (Sun, 29 Jul 2007) | 1 line Moved formatting to TestOutput ------------------------------------------------------------------------ r67 | basvodde | 2007-07-29 21:30:05 -0500 (Sun, 29 Jul 2007) | 1 line Fixed a small bug ------------------------------------------------------------------------ r66 | basvodde | 2007-07-29 21:29:37 -0500 (Sun, 29 Jul 2007) | 1 line Added a whole bunch of small methods ------------------------------------------------------------------------ r65 | basvodde | 2007-07-29 21:29:25 -0500 (Sun, 29 Jul 2007) | 1 line JUnitTestOutput for integration with CruiseControl ------------------------------------------------------------------------ r64 | basvodde | 2007-07-29 21:28:30 -0500 (Sun, 29 Jul 2007) | 1 line Moved formatting away ------------------------------------------------------------------------ r63 | basvodde | 2007-07-29 21:28:21 -0500 (Sun, 29 Jul 2007) | 1 line Moved formatting away ------------------------------------------------------------------------ r62 | basvodde | 2007-07-29 21:28:10 -0500 (Sun, 29 Jul 2007) | 1 line Removed dependency to TestOutput for now. ------------------------------------------------------------------------ r61 | basvodde | 2007-07-29 21:27:58 -0500 (Sun, 29 Jul 2007) | 1 line Moved all the formatting to here, for now. ------------------------------------------------------------------------ r60 | basvodde | 2007-07-29 21:27:35 -0500 (Sun, 29 Jul 2007) | 1 line Added a bunch of useful methods ------------------------------------------------------------------------ r59 | basvodde | 2007-07-29 21:27:13 -0500 (Sun, 29 Jul 2007) | 1 line Added a flush method ------------------------------------------------------------------------ r58 | basvodde | 2007-07-29 21:26:56 -0500 (Sun, 29 Jul 2007) | 1 line Added copy constructor and getters ------------------------------------------------------------------------ r57 | basvodde | 2007-07-29 21:25:33 -0500 (Sun, 29 Jul 2007) | 1 line Added stuff about leaks to be expected. Not nice, but needed. ------------------------------------------------------------------------ r56 | basvodde | 2007-07-29 21:25:28 -0500 (Sun, 29 Jul 2007) | 1 line Added stuff about leaks to be expected. Not nice, but needed. ------------------------------------------------------------------------ r55 | basvodde | 2007-07-29 21:25:23 -0500 (Sun, 29 Jul 2007) | 1 line Added stuff about leaks to be expected. Not nice, but needed. ------------------------------------------------------------------------ r54 | basvodde | 2007-07-29 21:25:16 -0500 (Sun, 29 Jul 2007) | 1 line Added stuff about leaks to be expected. Not nice, but needed. ------------------------------------------------------------------------ r53 | basvodde | 2007-07-29 21:24:43 -0500 (Sun, 29 Jul 2007) | 1 line Non-static class and refactored and added junit output support ------------------------------------------------------------------------ r52 | basvodde | 2007-07-29 21:24:37 -0500 (Sun, 29 Jul 2007) | 1 line Non-static class and refactored and added junit output support ------------------------------------------------------------------------ r51 | basvodde | 2007-07-29 21:24:03 -0500 (Sun, 29 Jul 2007) | 1 line Removed PrintSpecifics ------------------------------------------------------------------------ r50 | basvodde | 2007-07-29 21:24:00 -0500 (Sun, 29 Jul 2007) | 1 line Removed PrintSpecifics ------------------------------------------------------------------------ r49 | basvodde | 2007-07-26 01:53:52 -0500 (Thu, 26 Jul 2007) | 1 line Test for string with 0 pointer. ------------------------------------------------------------------------ r48 | basvodde | 2007-07-26 01:53:38 -0500 (Thu, 26 Jul 2007) | 1 line Added tests for bugs ------------------------------------------------------------------------ r47 | basvodde | 2007-07-26 01:53:07 -0500 (Thu, 26 Jul 2007) | 1 line Added getters for groupFilter and nameFilter ------------------------------------------------------------------------ r46 | basvodde | 2007-07-26 01:52:32 -0500 (Thu, 26 Jul 2007) | 1 line Changed size_t to unsigned int ------------------------------------------------------------------------ r45 | basvodde | 2007-07-26 01:51:54 -0500 (Thu, 26 Jul 2007) | 1 line Fixed a small bug for when passing a 0 pointer to SimpleString ------------------------------------------------------------------------ r44 | basvodde | 2007-07-26 01:51:30 -0500 (Thu, 26 Jul 2007) | 1 line Removed IgnoredTest ------------------------------------------------------------------------ r43 | basvodde | 2007-07-26 01:50:41 -0500 (Thu, 26 Jul 2007) | 1 line Removed IgnoredTest and changed the IGNORE_TEST macro. This enables fixture access from ignored test cases. ------------------------------------------------------------------------ r42 | basvodde | 2007-07-26 01:49:49 -0500 (Thu, 26 Jul 2007) | 1 line Added some getters and "fixed" the layout ------------------------------------------------------------------------ r41 | basvodde | 2007-07-26 01:49:05 -0500 (Thu, 26 Jul 2007) | 1 line Changed size_t to unsigned int. Led to problems with pure C prepocessor ------------------------------------------------------------------------ r40 | basvodde | 2007-07-26 01:48:14 -0500 (Thu, 26 Jul 2007) | 1 line Removed default constructor and used constructor with default value ------------------------------------------------------------------------ r39 | basvodde | 2007-07-25 22:15:16 -0500 (Wed, 25 Jul 2007) | 1 line Fixed the C style comments ------------------------------------------------------------------------ r38 | basvodde | 2007-07-25 22:04:07 -0500 (Wed, 25 Jul 2007) | 1 line Removed CPP commands ------------------------------------------------------------------------ r37 | basvodde | 2007-07-23 02:13:09 -0500 (Mon, 23 Jul 2007) | 1 line Fixed the fixture setup and teardown ------------------------------------------------------------------------ r36 | basvodde | 2007-07-23 02:12:34 -0500 (Mon, 23 Jul 2007) | 1 line Updated based on new setup ------------------------------------------------------------------------ r35 | basvodde | 2007-07-23 02:12:22 -0500 (Mon, 23 Jul 2007) | 1 line Added cleaning the examples to make clean ------------------------------------------------------------------------ r34 | basvodde | 2007-07-23 01:49:13 -0500 (Mon, 23 Jul 2007) | 1 line Use the new setup and teardown methods! ------------------------------------------------------------------------ r33 | basvodde | 2007-07-17 04:38:07 -0500 (Tue, 17 Jul 2007) | 1 line Added FileName ------------------------------------------------------------------------ r32 | basvodde | 2007-07-17 04:37:51 -0500 (Tue, 17 Jul 2007) | 1 line Added checks for FileName ------------------------------------------------------------------------ r31 | basvodde | 2007-07-17 04:37:39 -0500 (Tue, 17 Jul 2007) | 1 line Added the char ------------------------------------------------------------------------ r30 | basvodde | 2007-07-17 04:37:17 -0500 (Tue, 17 Jul 2007) | 1 line Added the fileName ------------------------------------------------------------------------ r29 | basvodde | 2007-07-17 04:36:50 -0500 (Tue, 17 Jul 2007) | 1 line Use LOCATION macros ------------------------------------------------------------------------ r28 | basvodde | 2007-07-17 04:36:27 -0500 (Tue, 17 Jul 2007) | 1 line Added FromString with char ------------------------------------------------------------------------ r27 | basvodde | 2007-07-17 04:36:03 -0500 (Tue, 17 Jul 2007) | 1 line Added FileName parameter ------------------------------------------------------------------------ r26 | basvodde | 2007-07-17 04:35:36 -0500 (Tue, 17 Jul 2007) | 1 line Changed to use LOCATION so the C location is real. ------------------------------------------------------------------------ r25 | basvodde | 2007-07-17 04:35:17 -0500 (Tue, 17 Jul 2007) | 1 line Changed all the test macros to be able to specify the location! ------------------------------------------------------------------------ r24 | basvodde | 2007-07-17 04:34:56 -0500 (Tue, 17 Jul 2007) | 1 line Added FromString with char ------------------------------------------------------------------------ r23 | basvodde | 2007-07-17 04:34:40 -0500 (Tue, 17 Jul 2007) | 1 line Added fileName parameter to get the real filename ------------------------------------------------------------------------ r22 | basvodde | 2007-07-17 00:45:52 -0500 (Tue, 17 Jul 2007) | 1 line ------------------------------------------------------------------------ r21 | basvodde | 2007-07-17 00:45:02 -0500 (Tue, 17 Jul 2007) | 1 line Fixed the CHECK_REAL ------------------------------------------------------------------------ r20 | basvodde | 2007-07-17 00:44:31 -0500 (Tue, 17 Jul 2007) | 1 line Fixed the CHECK_REAL ------------------------------------------------------------------------ r19 | basvodde | 2007-07-15 21:30:02 -0500 (Sun, 15 Jul 2007) | 4 lines Added TestPlugin description to the README_CppUTest.txt. Wrote a new ReadMe for working with CppUTest in C. ------------------------------------------------------------------------ r18 | basvodde | 2007-07-10 00:32:28 -0500 (Tue, 10 Jul 2007) | 1 line A simple HelloWorld example ------------------------------------------------------------------------ r17 | basvodde | 2007-07-03 03:08:29 -0500 (Tue, 03 Jul 2007) | 1 line Refactored tests completely to use own registry. ------------------------------------------------------------------------ r16 | basvodde | 2007-07-03 03:06:37 -0500 (Tue, 03 Jul 2007) | 1 line This file is probably broken. ------------------------------------------------------------------------ r15 | basvodde | 2007-07-03 03:06:12 -0500 (Tue, 03 Jul 2007) | 1 line Changed to not use the static member functions anymore ------------------------------------------------------------------------ r14 | basvodde | 2007-07-03 03:05:25 -0500 (Tue, 03 Jul 2007) | 1 line Added C malloc methods that use the memory leak detector ------------------------------------------------------------------------ r13 | basvodde | 2007-07-03 03:04:58 -0500 (Tue, 03 Jul 2007) | 1 line Not using static member functions anymore ------------------------------------------------------------------------ r12 | basvodde | 2007-07-03 03:04:19 -0500 (Tue, 03 Jul 2007) | 1 line Removed all the static member functions ------------------------------------------------------------------------ r11 | basvodde | 2007-07-03 00:55:44 -0500 (Tue, 03 Jul 2007) | 1 line Header for C include files ------------------------------------------------------------------------ r10 | basvodde | 2007-06-24 03:43:42 -0500 (Sun, 24 Jun 2007) | 1 line Build files and readme ------------------------------------------------------------------------ r9 | basvodde | 2007-06-24 03:33:05 -0500 (Sun, 24 Jun 2007) | 1 line New scripts ------------------------------------------------------------------------ r8 | basvodde | 2007-06-24 03:15:04 -0500 (Sun, 24 Jun 2007) | 1 line ------------------------------------------------------------------------ r7 | basvodde | 2007-06-24 03:12:04 -0500 (Sun, 24 Jun 2007) | 1 line ------------------------------------------------------------------------ r6 | basvodde | 2007-06-24 03:09:34 -0500 (Sun, 24 Jun 2007) | 1 line Examples for TDD ------------------------------------------------------------------------ r5 | basvodde | 2007-06-24 02:37:59 -0500 (Sun, 24 Jun 2007) | 1 line Added extra .exe removal for Windows systems ------------------------------------------------------------------------ r4 | basvodde | 2007-06-24 02:33:02 -0500 (Sun, 24 Jun 2007) | 1 line Added the build files ------------------------------------------------------------------------ r3 | basvodde | 2007-06-24 00:58:58 -0500 (Sun, 24 Jun 2007) | 1 line Added source files ------------------------------------------------------------------------ r2 | basvodde | 2007-06-24 00:49:01 -0500 (Sun, 24 Jun 2007) | 1 line ------------------------------------------------------------------------ r1 | basvodde | 2007-06-24 00:37:56 -0500 (Sun, 24 Jun 2007) | 1 line Added trunk ------------------------------------------------------------------------ cpputest-3.4/cpputest_doxy_gen.conf0000644000175300017530000023404012137414545014601 00000000000000# Doxyfile 1.8.3.1 # This file describes the settings to be used by the documentation system # doxygen (www.doxygen.org) for a project. # # All text after a hash (#) is considered a comment and will be ignored. # The format is: # TAG = value [value, ...] # For lists items can also be appended using: # TAG += value [value, ...] # Values that contain spaces should be placed between quotes (" "). #--------------------------------------------------------------------------- # Project related configuration options #--------------------------------------------------------------------------- # This tag specifies the encoding used for all characters in the config file # that follow. The default is UTF-8 which is also the encoding used for all # text before the first occurrence of this tag. Doxygen uses libiconv (or the # iconv built into libc) for the transcoding. See # http://www.gnu.org/software/libiconv for the list of possible encodings. DOXYFILE_ENCODING = UTF-8 # The PROJECT_NAME tag is a single word (or sequence of words) that should # identify the project. Note that if you do not use Doxywizard you need # to put quotes around the project name if it contains spaces. PROJECT_NAME = "CppUTest Documentation" # 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) # base path where the generated documentation will be put. # If a relative path is entered, it will be relative to the location # where doxygen was started. If left blank the current directory will be used. OUTPUT_DIRECTORY = # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create # 4096 sub-directories (in 2 levels) under the output directory of each output # format and will distribute the generated files over these directories. # Enabling this option can be useful when feeding doxygen a huge amount of # source files, where putting all generated files in the same directory would # otherwise cause performance problems for the file system. CREATE_SUBDIRS = NO # The OUTPUT_LANGUAGE tag is used to specify the language in which all # documentation generated by doxygen is written. Doxygen will use this # information to generate all constant output in the proper language. # The default language is English, other supported languages are: # Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, # Croatian, Czech, Danish, Dutch, Esperanto, Farsi, Finnish, French, German, # Greek, Hungarian, Italian, Japanese, Japanese-en (Japanese with English # messages), Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, # Polish, Portuguese, Romanian, Russian, Serbian, Serbian-Cyrillic, Slovak, # Slovene, Spanish, Swedish, Ukrainian, and Vietnamese. OUTPUT_LANGUAGE = English # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will # include brief member descriptions after the members that are listed in # the file and class documentation (similar to JavaDoc). # Set to NO to disable this. BRIEF_MEMBER_DESC = YES # If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend # the brief description of a member or function before the detailed description. # Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the # brief descriptions will be completely suppressed. REPEAT_BRIEF = YES # This tag implements a quasi-intelligent brief description abbreviator # that is used to form the text in various listings. Each string # in this list, if found as the leading text of the brief description, will be # stripped from the text and the result after processing the whole list, is # used as the annotated text. Otherwise, the brief description is used as-is. # If left blank, the following values are used ("$name" is automatically # replaced with the name of the entity): "The $name class" "The $name widget" # "The $name file" "is" "provides" "specifies" "contains" # "represents" "a" "an" "the" ABBREVIATE_BRIEF = # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then # Doxygen will generate a detailed section even if there is only a brief # description. ALWAYS_DETAILED_SEC = NO # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all # inherited members of a class in the documentation of that class as if those # members were ordinary class members. Constructors, destructors and assignment # operators of the base classes will not be shown. INLINE_INHERITED_MEMB = NO # If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full # path before files name in the file list and in the header files. If set # to NO the shortest path that makes the file name unique will be used. FULL_PATH_NAMES = YES # If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag # can be used to strip a user-defined part of the path. Stripping is # only done if one of the specified strings matches the left-hand part of # the path. The tag can be used to show relative paths in the file list. # If left blank the directory from which doxygen is run is used as the # path to strip. Note that you specify absolute paths here, but also # relative paths, which will be relative from the directory where doxygen is # started. STRIP_FROM_PATH = # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of # the path mentioned in the documentation of a class, which tells # the reader which header file to include in order to use a class. # If left blank only the name of the header file containing the class # definition is used. Otherwise one should specify the include paths that # are normally passed to the compiler using the -I flag. STRIP_FROM_INC_PATH = # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter # (but less readable) file names. This can be useful if your file system # doesn't support long names like on DOS, Mac, or CD-ROM. SHORT_NAMES = NO # If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen # will interpret the first line (until the first dot) of a JavaDoc-style # comment as the brief description. If set to NO, the JavaDoc # comments will behave just like regular Qt-style comments # (thus requiring an explicit @brief command for a brief description.) JAVADOC_AUTOBRIEF = NO # If the QT_AUTOBRIEF tag is set to YES then Doxygen will # interpret the first line (until the first dot) of a Qt-style # comment as the brief description. If set to NO, the comments # will behave just like regular Qt-style comments (thus requiring # an explicit \brief command for a brief description.) QT_AUTOBRIEF = NO # The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen # treat a multi-line C++ special comment block (i.e. a block of //! or /// # comments) as a brief description. This used to be the default behaviour. # The new default is to treat a multi-line C++ comment block as a detailed # description. Set this tag to YES if you prefer the old behaviour instead. MULTILINE_CPP_IS_BRIEF = NO # If the INHERIT_DOCS tag is set to YES (the default) then an undocumented # member inherits the documentation from any documented member that it # re-implements. INHERIT_DOCS = YES # If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce # a new page for each member. If set to NO, the documentation of a member will # be part of the file/class/namespace that contains it. SEPARATE_MEMBER_PAGES = NO # The TAB_SIZE tag can be used to set the number of spaces in a tab. # Doxygen uses this value to replace tabs by spaces in code fragments. TAB_SIZE = 4 # This tag can be used to specify a number of aliases that acts # as commands in the documentation. An alias has the form "name=value". # For example adding "sideeffect=\par Side Effects:\n" will allow you to # put the command \sideeffect (or @sideeffect) in the documentation, which # will result in a user-defined paragraph with heading "Side Effects:". # You can put \n's in the value part of an alias to insert newlines. ALIASES = # 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. OPTIMIZE_OUTPUT_FOR_C = NO # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java # sources only. Doxygen will then generate output that is more tailored for # Java. For instance, namespaces will be presented as packages, qualified # scopes will look different, etc. OPTIMIZE_OUTPUT_JAVA = NO # Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran # sources only. Doxygen will then generate output that is more tailored for # Fortran. OPTIMIZE_FOR_FORTRAN = NO # Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL # sources. Doxygen will then generate output that is tailored for # VHDL. OPTIMIZE_OUTPUT_VHDL = NO # 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, CSharp, C, C++, D, PHP, Objective-C, Python, Fortran, VHDL, C, # C++. 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 # that for custom extensions you also need to set FILE_PATTERNS otherwise the # files are not read by doxygen. EXTENSION_MAPPING = # If MARKDOWN_SUPPORT is enabled (the default) 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. 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. 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); v.s. # func(std::string) {}). This also makes the inheritance and collaboration # diagrams that involve STL classes more complete and accurate. BUILTIN_STL_SUPPORT = NO # If you use Microsoft's C++/CLI language, you should set this option to YES to # enable parsing support. CPP_CLI_SUPPORT = NO # Set the SIP_SUPPORT tag to YES if your project consists of sip sources only. # Doxygen will parse them like normal C++ but will assume all classes use public # instead of private inheritance when no explicit protection keyword is present. SIP_SUPPORT = NO # For Microsoft's IDL there are propget and propput attributes to indicate # getter and setter methods for a property. Setting this option to YES (the # default) will make doxygen 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. 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. DISTRIBUTE_GROUP_DOC = NO # Set the SUBGROUPING tag to YES (the default) to allow class member groups of # the same type (for instance a group of public functions) to be put as a # subgroup of that type (e.g. under the Public Functions section). Set it to # NO to prevent subgrouping. Alternatively, this can be done per class using # the \nosubgrouping command. SUBGROUPING = YES # When 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). INLINE_GROUPED_CLASSES = NO # When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and # unions with only public data 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 (the default), # structs, classes, and unions are shown on a separate page (for HTML and Man # pages) or section (for LaTeX and RTF). INLINE_SIMPLE_STRUCTS = NO # When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum # is documented as struct, union, or enum with the name of the typedef. So # typedef struct TypeS {} TypeT, will appear in the documentation as a struct # with name TypeT. When disabled the typedef will appear as a member of a file, # namespace, or class. And the struct will be named TypeS. This can typically # be useful for C code in case the coding convention dictates that all compound # types are typedef'ed and only the typedef is referenced, never the tag name. TYPEDEF_HIDES_STRUCT = NO # The SYMBOL_CACHE_SIZE determines the size of the internal cache use to # determine which symbols to keep in memory and which to flush to disk. # When the cache is full, less often used symbols will be written to disk. # For small to medium size projects (<1000 input files) the default value is # probably good enough. For larger projects a too small cache size can cause # doxygen to be busy swapping symbols to and from disk most of the time # causing a significant performance penalty. # If the system has enough physical memory increasing the cache will improve the # performance by keeping more symbols in memory. Note that the value works on # a logarithmic scale so increasing the size by one will roughly double the # memory usage. The cache size is given by this formula: # 2^(16+SYMBOL_CACHE_SIZE). The valid range is 0..9, the default is 0, # corresponding to a cache size of 2^16 = 65536 symbols. SYMBOL_CACHE_SIZE = 0 # Similar to the SYMBOL_CACHE_SIZE 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 appear 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. 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 and EXTRACT_STATIC tags are set to YES EXTRACT_ALL = NO # If the EXTRACT_PRIVATE tag is set to YES all private members of a class # will be included in the documentation. EXTRACT_PRIVATE = NO # If the EXTRACT_PACKAGE tag is set to YES all members with package or internal # scope will be included in the documentation. EXTRACT_PACKAGE = NO # If the EXTRACT_STATIC tag is set to YES all static members of a file # will be included in the documentation. EXTRACT_STATIC = NO # If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) # defined locally in source files will be included in the documentation. # If set to NO only classes defined in header files are included. EXTRACT_LOCAL_CLASSES = YES # This flag is only useful for Objective-C code. When set to YES local # methods, which are defined in the implementation section but not in # the interface are included in the documentation. # If set to NO (the default) only methods in the interface are included. EXTRACT_LOCAL_METHODS = NO # If this flag is set to YES, the members of anonymous namespaces will be # extracted and appear in the documentation as a namespace called # 'anonymous_namespace{file}', where file will be replaced with the base # name of the file that contains the anonymous namespace. By default # anonymous namespaces are hidden. EXTRACT_ANON_NSPACES = NO # If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all # undocumented members of documented classes, files or namespaces. # If set to NO (the default) these members will be included in the # various overviews, but no documentation section is generated. # This option has no effect if EXTRACT_ALL is enabled. HIDE_UNDOC_MEMBERS = NO # If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all # undocumented classes that are normally visible in the class hierarchy. # If set to NO (the default) these classes will be included in the various # overviews. This option has no effect if EXTRACT_ALL is enabled. HIDE_UNDOC_CLASSES = NO # If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all # friend (class|struct|union) declarations. # If set to NO (the default) these declarations will be included in the # documentation. HIDE_FRIEND_COMPOUNDS = NO # If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any # documentation blocks found inside the body of a function. # If set to NO (the default) these blocks will be appended to the # function's detailed documentation block. HIDE_IN_BODY_DOCS = NO # The INTERNAL_DOCS tag determines if documentation # that is typed after a \internal command is included. If the tag is set # to NO (the default) then the documentation will be excluded. # Set it to YES to include the internal documentation. INTERNAL_DOCS = NO # If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate # file names in lower-case letters. If set to YES upper-case letters are also # allowed. This is useful if you have classes or files whose names only differ # in case and if your file system supports case sensitive file names. Windows # and Mac users are advised to set this option to NO. CASE_SENSE_NAMES = NO # If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen # will show members with their full class and namespace scopes in the # documentation. If set to YES the scope will be hidden. HIDE_SCOPE_NAMES = NO # If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen # will put a list of the files that are included by a file in the documentation # of that file. SHOW_INCLUDE_FILES = YES # If the 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. FORCE_LOCAL_INCLUDES = NO # If the INLINE_INFO tag is set to YES (the default) then a tag [inline] # is inserted in the documentation for inline members. INLINE_INFO = YES # If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen # will sort the (detailed) documentation of file and class members # alphabetically by member name. If set to NO the members will appear in # declaration order. SORT_MEMBER_DOCS = YES # If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the # brief documentation of file, namespace and class members alphabetically # by member name. If set to NO (the default) the members will appear in # declaration order. SORT_BRIEF_DOCS = NO # If the SORT_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 default) # the constructors will appear in the respective orders defined by # SORT_MEMBER_DOCS and SORT_BRIEF_DOCS. # This tag will be ignored for brief docs if SORT_BRIEF_DOCS is set to NO # and ignored for detailed docs if SORT_MEMBER_DOCS is set to 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 default) # the group names will appear in their defined order. SORT_GROUP_NAMES = NO # If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be # sorted by fully-qualified names, including namespaces. If set to # NO (the default), the class list will be sorted only by class name, # not including the namespace part. # Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. # Note: This option applies only to the class list, not to the # alphabetical list. SORT_BY_SCOPE_NAME = NO # 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. 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. GENERATE_TODOLIST = YES # The GENERATE_TESTLIST tag can be used to enable (YES) or # disable (NO) the test list. This list is created by putting \test # commands in the documentation. GENERATE_TESTLIST = YES # The GENERATE_BUGLIST tag can be used to enable (YES) or # disable (NO) the bug list. This list is created by putting \bug # commands in the documentation. GENERATE_BUGLIST = YES # The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or # disable (NO) the deprecated list. This list is created by putting # \deprecated commands in the documentation. GENERATE_DEPRECATEDLIST= YES # The ENABLED_SECTIONS tag can be used to enable conditional # documentation sections, marked by \if section-label ... \endif # and \cond section-label ... \endcond blocks. ENABLED_SECTIONS = # The MAX_INITIALIZER_LINES tag determines the maximum number of lines # the initial value of a variable or macro consists of for it to appear in # the documentation. If the initializer consists of more lines than specified # here it will be hidden. Use a value of 0 to hide initializers completely. # The appearance of the initializer of individual variables and macros in the # documentation can be controlled using \showinitializer or \hideinitializer # command in the documentation regardless of this setting. MAX_INITIALIZER_LINES = 30 # Set the SHOW_USED_FILES tag to NO to disable the list of files generated # at the bottom of the documentation of classes and structs. If set to YES the # list will mention the files that were used to generate the documentation. SHOW_USED_FILES = YES # 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 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 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 , where is the value of # the FILE_VERSION_FILTER tag, and is the name of an input file # provided by doxygen. Whatever the program writes to standard output # is used as the file version. See the manual for examples. FILE_VERSION_FILTER = # 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. LAYOUT_FILE = # The CITE_BIB_FILES tag can be used to specify one or more bib files # containing the references data. This must be a list of .bib files. The # .bib extension is automatically appended if omitted. Using this command # 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. Do not use # file names with spaces, bibtex cannot handle them. 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 # by doxygen. Possible values are YES and NO. If left blank NO is used. QUIET = NO # The WARNINGS tag can be used to turn on/off the warning messages that are # generated by doxygen. Possible values are YES and NO. If left blank # NO is used. WARNINGS = YES # If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings # for undocumented members. If EXTRACT_ALL is set to YES then this flag will # automatically be disabled. WARN_IF_UNDOCUMENTED = YES # If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for # potential errors in the documentation, such as not documenting some # parameters in a documented function, or documenting parameters that # don't exist or using markup commands wrongly. WARN_IF_DOC_ERROR = YES # The 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 (the default) doxygen will only warn about # wrong or incomplete parameter documentation, but not about the absence of # documentation. 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) WARN_FORMAT = "$file:$line: $text" # The WARN_LOGFILE tag can be used to specify a file to which warning # and error messages should be written. If left blank the output is written # to stderr. WARN_LOGFILE = #--------------------------------------------------------------------------- # configuration options related to the input files #--------------------------------------------------------------------------- # The INPUT tag can be used to specify the files and/or directories that contain # documented source files. You may enter file names like "myfile.cpp" or # directories like "/usr/src/myproject". Separate the files or directories # with spaces. INPUT = include/CppUTest # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is # also the default input encoding. Doxygen uses libiconv (or the iconv built # into libc) for the transcoding. See http://www.gnu.org/software/libiconv for # the list of possible encodings. INPUT_ENCODING = UTF-8 # If the value of the INPUT tag contains directories, you can use the # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp # and *.h) to filter out the source-files in the directories. If left # blank the following patterns are tested: # *.c *.cc *.cxx *.cpp *.c++ *.d *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh # *.hxx *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.dox *.py # *.f90 *.f *.for *.vhd *.vhdl FILE_PATTERNS = # The RECURSIVE tag can be used to turn specify whether or not subdirectories # should be searched for input files as well. Possible values are YES and NO. # If left blank NO is used. RECURSIVE = NO # The EXCLUDE tag can be used to specify files and/or directories that should 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. EXCLUDE_SYMLINKS = NO # If the value of the INPUT tag contains directories, you can use the # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude # certain files from those directories. Note that the wildcards are matched # against the file with absolute path, so to exclude all test directories # for example use the pattern */test/* EXCLUDE_PATTERNS = # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names # (namespaces, classes, functions, etc.) that should be excluded from the # output. The symbol name can be a fully qualified name, a word, or if the # wildcard * is used, a substring. Examples: ANamespace, AClass, # AClass::ANamespace, ANamespace::*Test EXCLUDE_SYMBOLS = # The EXAMPLE_PATH tag can be used to specify one or more files or # directories that contain example code fragments that are included (see # the \include command). EXAMPLE_PATH = # If the value of the EXAMPLE_PATH tag contains directories, you can use the # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp # and *.h) to filter out the source-files in the directories. If left # blank all files are included. EXAMPLE_PATTERNS = # If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be # searched for input files to be used with the \include or \dontinclude # commands irrespective of the value of the RECURSIVE tag. # Possible values are YES and NO. If left blank NO is used. EXAMPLE_RECURSIVE = NO # The IMAGE_PATH tag can be used to specify one or more files or # directories that contain image that are included in the documentation (see # the \image command). IMAGE_PATH = # The INPUT_FILTER tag can be used to specify a program that doxygen should # invoke to filter for each input file. Doxygen will invoke the filter program # by executing (via popen()) the command , where # is the value of the INPUT_FILTER tag, and is the name of an # input file. Doxygen will then use the output that the filter program writes # to standard output. # If FILTER_PATTERNS is specified, this tag will be # ignored. INPUT_FILTER = # The FILTER_PATTERNS tag can be used to specify filters on a per file pattern # basis. # Doxygen will compare the file name with each pattern and apply the # filter if there is a match. # The filters are a list of the form: # pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further # info on how filters are used. If FILTER_PATTERNS is empty or if # non 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 be used to filter the input files when producing source # files to browse (i.e. when SOURCE_BROWSER is set to YES). FILTER_SOURCE_FILES = NO # 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 option only has effect when # FILTER_SOURCE_FILES is enabled. FILTER_SOURCE_PATTERNS = # If the USE_MD_FILE_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 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 also # VERBATIM_HEADERS is set to NO. SOURCE_BROWSER = NO # Setting the INLINE_SOURCES tag to YES will include the body # of functions and classes directly in the documentation. INLINE_SOURCES = NO # Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct # doxygen to hide any special comment blocks from generated source code # fragments. Normal C, C++ and Fortran comments will always remain visible. 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. REFERENCED_BY_RELATION = NO # 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. REFERENCES_RELATION = NO # If the REFERENCES_LINK_SOURCE tag is set to YES (the default) # and SOURCE_BROWSER tag is set to YES, then the hyperlinks from # functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will # link to the source code. # Otherwise they will link to the documentation. REFERENCES_LINK_SOURCE = YES # If the USE_HTAGS tag is set to YES then the references to source code # will point to the HTML generated by the htags(1) tool instead of doxygen # built-in source browser. The htags tool is part of GNU's global source # tagging system (see http://www.gnu.org/software/global/global.html). You # will need version 4.8.6 or higher. USE_HTAGS = NO # If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen # will generate a verbatim copy of the header file for each class for # which an include is specified. Set to NO to disable this. VERBATIM_HEADERS = YES #--------------------------------------------------------------------------- # configuration options related to the alphabetical class index #--------------------------------------------------------------------------- # If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index # of all compounds will be generated. Enable this if the project # contains a lot of classes, structs, unions or interfaces. ALPHABETICAL_INDEX = YES # If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then # the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns # in which this list will be split (can be a number in the range [1..20]) COLS_IN_ALPHA_INDEX = 5 # In case all classes in a project start with a common prefix, all # classes will be put under the same header in the alphabetical index. # The IGNORE_PREFIX tag can be used to specify one or more prefixes that # should be ignored while generating the index headers. IGNORE_PREFIX = #--------------------------------------------------------------------------- # configuration options related to the HTML output #--------------------------------------------------------------------------- # If the GENERATE_HTML tag is set to YES (the default) Doxygen will # generate HTML output. GENERATE_HTML = YES # The HTML_OUTPUT tag is used to specify where the HTML docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `html' will be used as the default path. HTML_OUTPUT = html # The HTML_FILE_EXTENSION tag can be used to specify the file extension for # each generated HTML page (for example: .htm,.php,.asp). If it is left blank # doxygen will generate files with .html extension. HTML_FILE_EXTENSION = .html # The HTML_HEADER tag can be used to specify a personal HTML header for # each generated HTML page. If it is left blank doxygen will generate a # standard header. Note that when using a custom header you are responsible # for the proper inclusion of any scripts and style sheets that doxygen # needs, which is dependent on the configuration options used. # It is advised to generate a default header using "doxygen -w html # header.html footer.html stylesheet.css YourConfigFile" and then modify # that header. Note that the header is subject to change so you typically # have to redo this when upgrading to a newer version of doxygen or when # changing the value of configuration settings such as GENERATE_TREEVIEW! HTML_HEADER = # The HTML_FOOTER tag can be used to specify a personal HTML footer for # each generated HTML page. If it is left blank doxygen will generate a # standard footer. HTML_FOOTER = # The HTML_STYLESHEET tag can be used to specify a user-defined cascading # style sheet that is used by each HTML page. It can be used to # fine-tune the look of the HTML output. If left blank doxygen will # generate a default style sheet. Note that it is recommended to use # HTML_EXTRA_STYLESHEET instead of this one, as it is more robust and this # tag will in the future become obsolete. HTML_STYLESHEET = # The HTML_EXTRA_STYLESHEET tag can be used to specify an additional # user-defined cascading style sheet that is 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 file to # the output directory. 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. HTML_EXTRA_FILES = # The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. # Doxygen will adjust the colors in the style sheet 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. # The allowed range is 0 to 359. 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. 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. 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. 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. 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. 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, 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. GENERATE_DOCSET = NO # When GENERATE_DOCSET tag is set to YES, this tag determines the name of the # feed. A documentation feed provides an umbrella under which multiple # documentation sets from a single provider (such as a company or product suite) # can be grouped. DOCSET_FEEDNAME = "Doxygen generated docs" # When GENERATE_DOCSET tag is set to YES, this tag specifies a string that # should uniquely identify the documentation set bundle. This should be a # reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen # will append .docset to the name. DOCSET_BUNDLE_ID = org.doxygen.Project # When GENERATE_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. DOCSET_PUBLISHER_ID = org.doxygen.Publisher # The GENERATE_PUBLISHER_NAME tag identifies the documentation publisher. DOCSET_PUBLISHER_NAME = Publisher # If the GENERATE_HTMLHELP tag is set to YES, additional index files # will be generated that can be used as input for tools like the # Microsoft HTML help workshop to generate a compiled HTML help file (.chm) # of the generated HTML documentation. GENERATE_HTMLHELP = NO # If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can # be used to specify the file name of the resulting .chm file. You # can add a path in front of the file if the result should not be # written to the html output directory. CHM_FILE = # If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can # be used to specify the location (absolute path including file name) of # the HTML help compiler (hhc.exe). If non-empty doxygen will try to run # the HTML help compiler on the generated index.hhp. HHC_LOCATION = # If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag # controls if a separate .chi index file is generated (YES) or that # it should be included in the master .chm file (NO). GENERATE_CHI = NO # If the GENERATE_HTMLHELP tag is set to YES, the CHM_INDEX_ENCODING # is used to encode HtmlHelp index (hhk), content (hhc) and project file # content. CHM_INDEX_ENCODING = # If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag # controls whether a binary table of contents is generated (YES) or a # normal table of contents (NO) in the .chm file. BINARY_TOC = NO # The TOC_EXPAND flag can be set to YES to add extra items for group members # to the contents of the HTML help documentation and to the tree view. TOC_EXPAND = NO # 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. 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. QCH_FILE = # The QHP_NAMESPACE tag specifies the namespace to use when generating # Qt Help Project output. For more information please see # http://doc.trolltech.com/qthelpproject.html#namespace 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 # http://doc.trolltech.com/qthelpproject.html#virtual-folders QHP_VIRTUAL_FOLDER = doc # If QHP_CUST_FILTER_NAME is set, it specifies the name of a custom filter to # add. For more information please see # http://doc.trolltech.com/qthelpproject.html#custom-filters QHP_CUST_FILTER_NAME = # The QHP_CUST_FILT_ATTRS tag specifies the list of the attributes of the # custom filter to add. For more information please see # # Qt Help Project / Custom Filters. 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. QHP_SECT_FILTER_ATTRS = # If the GENERATE_QHP tag is set to YES, 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. QHG_LOCATION = # If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files # will be generated, which together with the HTML files, 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. 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. ECLIPSE_DOC_ID = org.doxygen.Project # The DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) # at top of each HTML page. The value NO (the default) enables the index and # the value YES disables it. Since the tabs have the same information as the # navigation tree you can set this option to NO if you already set # GENERATE_TREEVIEW 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. # Since the tree basically has the same information as the tab index you # could consider to set DISABLE_INDEX to NO when enabling this option. GENERATE_TREEVIEW = NO # The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values # (range [0,1..20]) 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. 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. 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. EXT_LINKS_IN_WINDOW = NO # Use this tag to change the font size of Latex formulas included # as images in the HTML documentation. The default is 10. Note that # 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. 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 before the changes have effect. 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. USE_MATHJAX = NO # When MathJax is enabled you can set the default output format to be used for # thA MathJax output. Supported types are HTML-CSS, NativeMML (i.e. MathML) and # SVG. The default value is HTML-CSS, which is slower, but has the best # compatibility. 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. MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest # The MATHJAX_EXTENSIONS tag can be used to specify one or MathJax extension # names that should be enabled during MathJax rendering. MATHJAX_EXTENSIONS = # 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. SEARCHENGINE = YES # When the SERVER_BASED_SEARCH tag is enabled the search engine will be # implemented using a web server instead of a web client using Javascript. # There are two flavours of web server based search depending on the # EXTERNAL_SEARCH setting. When disabled, doxygen will generate a PHP script for # searching and an index file used by the script. When EXTERNAL_SEARCH is # enabled the indexing and searching needs to be provided by external tools. # See the manual for details. SERVER_BASED_SEARCH = NO # When EXTERNAL_SEARCH is enabled doxygen will no longer generate the PHP # script for searching. Instead the search results are written to an XML file # which needs to be processed by an external indexer. Doxygen will invoke an # external search engine pointed to by the SEARCHENGINE_URL option to obtain # the search results. Doxygen ships with an example indexer (doxyindexer) and # search engine (doxysearch.cgi) which are based on the open source search engine # library Xapian. See the manual for configuration details. EXTERNAL_SEARCH = NO # The SEARCHENGINE_URL should point to a search engine hosted by a web server # which will returned the search results when EXTERNAL_SEARCH is enabled. # Doxygen ships with an example search engine (doxysearch) which is based on # the open source search engine library Xapian. See the manual for configuration # details. SEARCHENGINE_URL = # When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the unindexed # search data is written to a file for indexing by an external tool. With the # SEARCHDATA_FILE tag the name of this file can be specified. SEARCHDATA_FILE = searchdata.xml # When SERVER_BASED_SEARCH AND EXTERNAL_SEARCH are both enabled the # EXTERNAL_SEARCH_ID tag can be used as an identifier for the project. This is # useful in combination with EXTRA_SEARCH_MAPPINGS to search through multiple # projects and redirect the results back to the right project. EXTERNAL_SEARCH_ID = # The EXTRA_SEARCH_MAPPINGS tag can be used to enable searching through doxygen # projects other than the one defined by this configuration file, but that are # all added to the same external search index. Each project needs to have a # unique id set via EXTERNAL_SEARCH_ID. The search mapping then maps the id # of to a relative location where the documentation can be found. # The format is: EXTRA_SEARCH_MAPPINGS = id1=loc1 id2=loc2 ... EXTRA_SEARCH_MAPPINGS = #--------------------------------------------------------------------------- # configuration options related to the LaTeX output #--------------------------------------------------------------------------- # If the GENERATE_LATEX tag is set to YES (the default) Doxygen will # generate Latex output. GENERATE_LATEX = YES # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `latex' will be used as the default path. LATEX_OUTPUT = latex # The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be # invoked. If left blank `latex' will be used as the default command name. # Note that when enabling USE_PDFLATEX this option is only used for # generating bitmaps for formulas in the HTML output, but not in the # Makefile that is written to the output directory. LATEX_CMD_NAME = latex # The MAKEINDEX_CMD_NAME tag can be used to specify the command name to # generate index for LaTeX. If left blank `makeindex' will be used as the # default command name. MAKEINDEX_CMD_NAME = makeindex # If the COMPACT_LATEX tag is set to YES Doxygen generates more compact # LaTeX documents. This may be useful for small projects and may help to # save some trees in general. COMPACT_LATEX = NO # The PAPER_TYPE tag can be used to set the paper type that is used # by the printer. Possible values are: a4, letter, legal and # executive. If left blank a4wide will be used. PAPER_TYPE = a4 # The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX # packages that should be included in the LaTeX output. EXTRA_PACKAGES = # The LATEX_HEADER tag can be used to specify a personal LaTeX header for # the generated latex document. The header should contain everything until # the first chapter. If it is left blank doxygen will generate a # standard header. Notice: only use this tag if you know what you are doing! LATEX_HEADER = # The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for # the generated latex document. The footer should contain everything after # the last chapter. If it is left blank doxygen will generate a # standard footer. Notice: only use this tag if you know what you are doing! LATEX_FOOTER = # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated # is prepared for conversion to pdf (using ps2pdf). The pdf file will # contain links (just like the HTML output) instead of page references # This makes the output suitable for online browsing using a pdf viewer. PDF_HYPERLINKS = YES # If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of # plain latex in the generated Makefile. Set this option to YES to get a # higher quality PDF documentation. USE_PDFLATEX = YES # If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. # command to the generated LaTeX files. This will instruct LaTeX to keep # running if errors occur, instead of asking the user for help. # This option is also used when generating formulas in HTML. LATEX_BATCHMODE = NO # If LATEX_HIDE_INDICES is set to YES then doxygen will not # include the index chapters (such as File Index, Compound Index, etc.) # in the output. LATEX_HIDE_INDICES = NO # If LATEX_SOURCE_CODE is set to YES then doxygen will include # source code with syntax highlighting in the LaTeX output. # Note that which sources are shown also depends on other settings # such as SOURCE_BROWSER. LATEX_SOURCE_CODE = NO # The LATEX_BIB_STYLE tag can be used to specify the style to use for the # bibliography, e.g. plainnat, or ieeetr. The default style is "plain". See # http://en.wikipedia.org/wiki/BibTeX for more info. LATEX_BIB_STYLE = plain #--------------------------------------------------------------------------- # configuration options related to the RTF output #--------------------------------------------------------------------------- # If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output # The RTF output is optimized for Word 97 and may not look very pretty with # other RTF readers or editors. GENERATE_RTF = NO # The RTF_OUTPUT tag is used to specify where the RTF docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `rtf' will be used as the default path. RTF_OUTPUT = rtf # If the COMPACT_RTF tag is set to YES Doxygen generates more compact # RTF documents. This may be useful for small projects and may help to # save some trees in general. COMPACT_RTF = NO # If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated # will contain hyperlink fields. The RTF file will # contain links (just like the HTML output) instead of page references. # This makes the output suitable for online browsing using WORD or other # programs which support those fields. # Note: wordpad (write) and others do not support links. RTF_HYPERLINKS = NO # Load style sheet definitions from file. Syntax is similar to doxygen's # config file, i.e. a series of assignments. You only have to provide # replacements, missing definitions are set to their default value. RTF_STYLESHEET_FILE = # Set optional variables used in the generation of an rtf document. # Syntax is similar to doxygen's config file. RTF_EXTENSIONS_FILE = #--------------------------------------------------------------------------- # configuration options related to the man page output #--------------------------------------------------------------------------- # If the GENERATE_MAN tag is set to YES (the default) Doxygen will # generate man pages GENERATE_MAN = NO # The MAN_OUTPUT tag is used to specify where the man pages will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `man' will be used as the default path. MAN_OUTPUT = man # The MAN_EXTENSION tag determines the extension that is added to # the generated man pages (default is the subroutine's section .3) MAN_EXTENSION = .3 # If the MAN_LINKS tag is set to YES and Doxygen generates man output, # then it will generate one additional man file for each entity # documented in the real man page(s). These additional files # only source the real man page, but without them the man command # would be unable to find the correct page. The default is NO. MAN_LINKS = NO #--------------------------------------------------------------------------- # configuration options related to the XML output #--------------------------------------------------------------------------- # If the GENERATE_XML tag is set to YES Doxygen will # generate an XML file that captures the structure of # the code including all documentation. GENERATE_XML = NO # The XML_OUTPUT tag is used to specify where the XML pages will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `xml' will be used as the default path. XML_OUTPUT = xml # The XML_SCHEMA tag can be used to specify an XML schema, # which can be used by a validating XML parser to check the # syntax of the XML files. XML_SCHEMA = # The XML_DTD tag can be used to specify an XML DTD, # which can be used by a validating XML parser to check the # syntax of the XML files. XML_DTD = # If the XML_PROGRAMLISTING tag is set to YES Doxygen will # dump the program listings (including syntax highlighting # and cross-referencing information) to the XML output. Note that # enabling this will significantly increase the size of the XML output. XML_PROGRAMLISTING = YES #--------------------------------------------------------------------------- # configuration options for the AutoGen Definitions output #--------------------------------------------------------------------------- # If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will # generate an AutoGen Definitions (see autogen.sf.net) file # that captures the structure of the code including all # documentation. Note that this feature is still experimental # and incomplete at the moment. GENERATE_AUTOGEN_DEF = NO #--------------------------------------------------------------------------- # configuration options related to the Perl module output #--------------------------------------------------------------------------- # If the GENERATE_PERLMOD tag is set to YES Doxygen will # generate a Perl module file that captures the structure of # the code including all documentation. Note that this # feature is still experimental and incomplete at the # moment. GENERATE_PERLMOD = NO # If the PERLMOD_LATEX tag is set to YES Doxygen will generate # the necessary Makefile rules, Perl scripts and LaTeX code to be able # to generate PDF and DVI output from the Perl module output. PERLMOD_LATEX = NO # If the PERLMOD_PRETTY tag is set to YES the Perl module output will be # nicely formatted so it can be parsed by a human reader. # This is useful # if you want to understand what is going on. # On the other hand, if this # tag is set to NO the size of the Perl module output will be much smaller # and Perl will parse it just the same. PERLMOD_PRETTY = YES # The names of the make variables in the generated doxyrules.make file # are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. # This is useful so different doxyrules.make files included by the same # Makefile don't overwrite each other's variables. PERLMOD_MAKEVAR_PREFIX = #--------------------------------------------------------------------------- # Configuration options related to the preprocessor #--------------------------------------------------------------------------- # If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will # evaluate all C-preprocessor directives found in the sources and include # files. ENABLE_PREPROCESSING = YES # If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro # names in the source code. If set to NO (the default) only conditional # compilation will be performed. Macro expansion can be done in a controlled # way by setting EXPAND_ONLY_PREDEF to YES. MACRO_EXPANSION = NO # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES # then the macro expansion is limited to the macros specified with the # PREDEFINED and EXPAND_AS_DEFINED tags. EXPAND_ONLY_PREDEF = NO # If the SEARCH_INCLUDES tag is set to YES (the default) the includes files # pointed to by INCLUDE_PATH will be searched when a #include is found. SEARCH_INCLUDES = YES # The INCLUDE_PATH tag can be used to specify one or more directories that # contain include files that are not input files but should be processed by # the preprocessor. INCLUDE_PATH = # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard # patterns (like *.h and *.hpp) to filter out the header-files in the # directories. If left blank, the patterns specified with FILE_PATTERNS will # be used. INCLUDE_FILE_PATTERNS = # The PREDEFINED tag can be used to specify one or more macro names that # are defined before the preprocessor is started (similar to the -D option of # gcc). The argument of the tag is a list of macros of the form: name # or name=definition (no spaces). If the definition and the = are # omitted =1 is assumed. To prevent a macro definition from being # undefined via #undef or recursively expanded use the := operator # instead of the = operator. PREDEFINED = # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then # this tag can be used to specify a list of macro names that should be expanded. # The macro definition that is found in the sources will be used. # Use the PREDEFINED tag if you want to use a different macro definition that # overrules the definition found in the source code. EXPAND_AS_DEFINED = # If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then # doxygen's preprocessor will remove all references to function-like macros # that are alone on a line, have an all uppercase name, and do not end with a # semicolon, because these will confuse the parser if not removed. SKIP_FUNCTION_MACROS = YES #--------------------------------------------------------------------------- # Configuration::additions related to external references #--------------------------------------------------------------------------- # The TAGFILES option can be used to specify one or more tagfiles. For each # tag file the location of the external documentation should be added. The # format of a tag file without this location is as follows: # # TAGFILES = file1 file2 ... # Adding location for the tag files is done as follows: # # TAGFILES = file1=loc1 "file2 = loc2" ... # where "loc1" and "loc2" can be relative or absolute paths # or URLs. Note that each tag file must have a unique name (where the name does # NOT include the path). If a tag file is not located in the directory in which # doxygen is run, you must also specify the path to the tagfile here. TAGFILES = # When a file name is specified after GENERATE_TAGFILE, doxygen will create # a tag file that is based on the input files it reads. GENERATE_TAGFILE = # If the ALLEXTERNALS tag is set to YES all external classes will be listed # in the class index. If set to NO only the inherited external classes # will be listed. ALLEXTERNALS = NO # If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed # in the modules index. If set to NO, only the current project's groups will # be listed. EXTERNAL_GROUPS = YES # The PERL_PATH should be the absolute path and name of the perl script # interpreter (i.e. the result of `which perl'). PERL_PATH = /usr/bin/perl #--------------------------------------------------------------------------- # Configuration options related to the dot tool #--------------------------------------------------------------------------- # If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will # generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base # or super classes. Setting the tag to NO turns the diagrams off. Note that # this option also works with HAVE_DOT disabled, but it is recommended to # install and use dot, since it yields more powerful graphs. CLASS_DIAGRAMS = YES # You can define message sequence charts within doxygen comments using the \msc # command. Doxygen will then run the mscgen tool (see # http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the # documentation. The MSCGEN_PATH tag allows you to specify the directory where # the mscgen tool resides. If left empty the tool is assumed to be found in the # default search path. MSCGEN_PATH = # If set to YES, the inheritance and collaboration graphs will hide # inheritance and usage relations if the target is undocumented # or is not a class. HIDE_UNDOC_RELATIONS = YES # If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is # available from the path. This tool is part of Graphviz, a graph visualization # toolkit from AT&T and Lucent Bell Labs. The other options in this section # have no effect if this option is set to NO (the default) HAVE_DOT = NO # The DOT_NUM_THREADS specifies the number of dot invocations doxygen is # allowed to run in parallel. When set to 0 (the default) doxygen will # base this on the number of processors available in the system. You can set it # explicitly to a value larger than 0 to get control over the balance # between CPU load and processing speed. DOT_NUM_THREADS = 0 # By default doxygen will use the Helvetica font for all dot files that # doxygen generates. When you want a differently looking font you can specify # the font name using DOT_FONTNAME. You need to make sure dot is able to find # the font, which can be done by putting it in a standard location or by setting # the DOTFONTPATH environment variable or by setting DOT_FONTPATH to the # directory containing the font. DOT_FONTNAME = Helvetica # The DOT_FONTSIZE tag can be used to set the size of the font of dot graphs. # The default size is 10pt. DOT_FONTSIZE = 10 # By default doxygen will tell dot to use the Helvetica font. # If you specify a different font using DOT_FONTNAME you can use DOT_FONTPATH to # set the path where dot can find it. DOT_FONTPATH = # If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen # will generate a graph for each documented class showing the direct and # indirect inheritance relations. Setting this tag to YES will force the # CLASS_DIAGRAMS tag to NO. CLASS_GRAPH = YES # If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen # will generate a graph for each documented class showing the direct and # indirect implementation dependencies (inheritance, containment, and # class references variables) of the class with other documented classes. COLLABORATION_GRAPH = YES # If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen # will generate a graph for groups, showing the direct groups dependencies GROUP_GRAPHS = YES # If the UML_LOOK tag is set to YES doxygen will generate inheritance and # collaboration diagrams in a style similar to the OMG's Unified Modeling # Language. UML_LOOK = NO # If the UML_LOOK tag is enabled, the fields and methods are shown inside # the class node. If there are many fields or methods and many nodes the # graph may become too big to be useful. The UML_LIMIT_NUM_FIELDS # threshold limits the number of items for each type to make the size more # managable. Set this to 0 for no limit. Note that the threshold may be # exceeded by 50% before the limit is enforced. UML_LIMIT_NUM_FIELDS = 10 # If set to YES, the inheritance and collaboration graphs will show the # relations between templates and their instances. TEMPLATE_RELATIONS = NO # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT # tags are set to YES then doxygen will generate a graph for each documented # file showing the direct and indirect include dependencies of the file with # other documented files. INCLUDE_GRAPH = YES # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and # HAVE_DOT tags are set to YES then doxygen will generate a graph for each # documented header file showing the documented files that directly or # indirectly include this file. INCLUDED_BY_GRAPH = YES # If the CALL_GRAPH and HAVE_DOT options are set to YES then # doxygen will generate a call dependency graph for every global function # or class method. Note that enabling this option will significantly increase # the time of a run. So in most cases it will be better to enable call graphs # for selected functions only using the \callgraph command. CALL_GRAPH = NO # If the CALLER_GRAPH and HAVE_DOT tags are set to YES then # doxygen will generate a caller dependency graph for every global function # or class method. Note that enabling this option will significantly increase # the time of a run. So in most cases it will be better to enable caller # graphs for selected functions only using the \callergraph command. CALLER_GRAPH = NO # If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen # will generate a graphical hierarchy of all classes instead of a textual one. GRAPHICAL_HIERARCHY = YES # If the DIRECTORY_GRAPH and HAVE_DOT tags are set to YES # then doxygen will show the dependencies a directory has on other directories # in a graphical way. The dependency relations are determined by the #include # relations between the files in the directories. DIRECTORY_GRAPH = YES # The DOT_IMAGE_FORMAT tag can be used to set the image format of the images # generated by dot. Possible values are svg, png, jpg, or gif. # If left blank png will be used. If you choose svg you need to set # HTML_FILE_EXTENSION to xhtml in order to make the SVG files # visible in IE 9+ (other browsers do not have this requirement). DOT_IMAGE_FORMAT = png # If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to # enable generation of interactive SVG images that allow zooming and panning. # Note that this requires a modern browser other than Internet Explorer. # Tested and working are Firefox, Chrome, Safari, and Opera. For IE 9+ you # need to set HTML_FILE_EXTENSION to xhtml in order to make the SVG files # visible. Older versions of IE do not have SVG support. INTERACTIVE_SVG = NO # The tag DOT_PATH can be used to specify the path where the dot tool can be # found. If left blank, it is assumed the dot tool can be found in the path. DOT_PATH = # The DOTFILE_DIRS tag can be used to specify one or more directories that # contain dot files that are included in the documentation (see the # \dotfile command). DOTFILE_DIRS = # The MSCFILE_DIRS tag can be used to specify one or more directories that # contain msc files that are included in the documentation (see the # \mscfile command). MSCFILE_DIRS = # The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of # nodes that will be shown in the graph. If the number of nodes in a graph # becomes larger than this value, doxygen will truncate the graph, which is # visualized by representing a node as a red box. Note that doxygen if the # number of direct children of the root node in a graph is already larger than # DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note # that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. DOT_GRAPH_MAX_NODES = 50 # The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the # graphs generated by dot. A depth value of 3 means that only nodes reachable # from the root by following a path via at most 3 edges will be shown. Nodes # that lay further from the root node will be omitted. Note that setting this # option to 1 or 2 may greatly reduce the computation time needed for large # code bases. Also note that the size of a graph can be further restricted by # DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. MAX_DOT_GRAPH_DEPTH = 0 # Set the DOT_TRANSPARENT tag to YES to generate images with a transparent # background. This is disabled by default, because dot on Windows does not # seem to support this out of the box. Warning: Depending on the platform used, # enabling this option may lead to badly anti-aliased labels on the edges of # a graph (i.e. they become hard to read). DOT_TRANSPARENT = NO # Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output # files in one run (i.e. multiple -o and -T options on the command line). This # makes dot run faster, but since only newer versions of dot (>1.8.10) # support this, this feature is disabled by default. DOT_MULTI_TARGETS = NO # If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will # generate a legend page explaining the meaning of the various boxes and # arrows in the dot generated graphs. GENERATE_LEGEND = YES # If the DOT_CLEANUP tag is set to YES (the default) Doxygen will # remove the intermediate dot files that are used to generate # the various graphs. DOT_CLEANUP = YES cpputest-3.4/makeVS2008.bat0000644000175300017530000000053012023251675012347 00000000000000rem **** rem * Command line build - For CppUTest - Run from CppUTest directory rem * rem * this path works on my machine rem ****PATH=C:\Windows\Microsoft.NET\Framework\v3.5;c:\windows;c:\windows\system32 msbuild /t:rebuild /verbosity:quiet CppUTest_VS2008.sln set test_exe=tests\Debug\AllTests.exe if exist %test_exe% %test_exe% -v cpputest-3.4/makeVS2010.bat0000644000175300017530000000053412023251675012344 00000000000000rem **** rem * Command line build - For CppUTest - Run from CppUTest directory rem * rem * this path works on my machine rem ****PATH=C:\Windows\Microsoft.NET\Framework\v4.0.30319;c:\windows\system32;c:\windows msbuild /t:rebuild /verbosity:quiet CppUTest_VS2010.sln set test_exe=tests\Debug\AllTests.exe if exist %test_exe% %test_exe% -v cpputest-3.4/makeVc6.bat0000644000175300017530000000102512023251675012143 00000000000000rem **** rem * Command line build - For CppUTest - Run from dsw directory rem * rem * A single parameter is supported and it is the last parameter of msdev rem * for example: rem * /clean rem * make sure to use the slash rem * this needs to be in your path rem ****PATH=C:\Program Files\Microsoft Visual Studio\VC98\Bin;%PATH% msdev CppUTest.dsp /MAKE "CppUTest - Debug" %1 msdev tests\AllTests.dsp /MAKE "AllTests - Debug" %1 if "%1" EQU "/clean" goto end if "%1" EQU "/CLEAN" goto end tests\Debug\AllTests :end cpputest-3.4/test-driver0000755000175300017530000000761112134163705012363 00000000000000#! /bin/sh # test-driver - basic testsuite driver script. scriptversion=2012-06-27.10; # UTC # Copyright (C) 2011-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. # This file is maintained in Automake, please report # bugs to or send patches to # . # Make unconditional expansion of undefined variables an error. This # helps a lot in preventing typo-related bugs. set -u usage_error () { echo "$0: $*" >&2 print_usage >&2 exit 2 } print_usage () { cat <$log_file 2>&1 estatus=$? if test $enable_hard_errors = no && test $estatus -eq 99; then estatus=1 fi case $estatus:$expect_failure in 0:yes) col=$red res=XPASS recheck=yes gcopy=yes;; 0:*) col=$grn res=PASS recheck=no gcopy=no;; 77:*) col=$blu res=SKIP recheck=no gcopy=yes;; 99:*) col=$mgn res=ERROR recheck=yes gcopy=yes;; *:yes) col=$lgn res=XFAIL recheck=no gcopy=yes;; *:*) col=$red res=FAIL recheck=yes gcopy=yes;; esac # Report outcome to console. echo "${col}${res}${std}: $test_name" # Register the test result, and other relevant metadata. echo ":test-result: $res" > $trs_file echo ":global-test-result: $res" >> $trs_file echo ":recheck: $recheck" >> $trs_file echo ":copy-in-global-log: $gcopy" >> $trs_file # 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:

߹.K0dO J9%Z"s^zuUg&t0 #7%^i6a.V@bޑ& s{~4}*@ bWǥutf$/(O*aiTۏ/yֳ>88M\X]%ﲼk޵ii=5--YeRd?Yz`,,d˞YRkWHcj: gQet%Wcd26}^:g[WeuW =49[2:t(۾|>aGIߔ*}|ɀ= sv>a*?ԹwGmAAB:\H8b%P)vқLcc:f͋q$'b0lq`oeyx'e:Wi0뤬%fÏu#p ̟?i uC,y߸Hギ#Md'ǝifI fpIۧ|rNhU*V($ =^-Fϰ! $B}">`x%,ȍ#pQI#/]{uQu],ZgNaռU72ozUSy[a֑ ˓Fjk9_6q~;CZܶ:ݥ+Z==uRŧo,v1TOӖwGϝV,_2AIӦݵ|rP| SyR%8E=O8Rė;ÙÆ^z(KB%}UtPk <]./j5eI{&@8 ErHiu(t E2fD,Vr" `)@/U`nD4>81T E~HWoÔzR¤ H_υ  K}KZg97@ІH֬CJ݄\Een!S' QRSCז3g'(/`.D+.v02\Yô&Av땊~Fk<%R@t+8SE͢Sal=pi.Z4;< SzX\V6QxjpQ&=HCE7MǒHKjfT۰AAq&oqOpuׯ? wߠOzq(<=pҟgv̘=.>yJlp[{.&~ߓᖝbebS8./v: o*$;(0Q ^آJ,[D݅`lGʾ6Hƙ)į\"j(F9V@>/I\Ot(ںLaFH&mߴc.oq7P$YLvEUBpDq(<#0CI nZD $G֠6&c* $v.I - c¬>f "Ei5\M_{WYK;I :M XgbcUZp64 neY\*9q؝ZFwH;XaNJ^β:I#I!?7|? g`b Ud3s*LXCCx8CR"gꊷv29~W8-TB*}eYwvfN옴~H ' $b# 8Rj7#8+IxX|ATO:f#g1/]/HGvm4!7t);PuS(PICe D>PĬGa_u)PeH 8R (H .enP2~D̑sqS٠DAiڤ])f ģEThƕM'1BRz- 5P%0m7sY;uFTXT71!1-&tLj%žO4na1ku T1Otb x*GY@|Enh's߀vVzT lfkkkNS‚#w#(F8r:H8 rxP8!6H"XrXz3cxGJ#r)YRjILiHu@6ޞ"R{1 :_!(fQ"1boy[ j}Ic۰!(5D)UU0De8>TNx%/{9!`c9݁:( 3AWV/PkVbMc`%ETC.nm ]ӭ&tliL΂uw }&LR_JkWvi艁JNj9 4+*c,!Csjh#fUq(=>ǃ%ǩ݊.JI=3"Q"m,٫ä;:%M"y CGq>g5!".jDbeM+M,5.%o]cΓIؘ)K(!D[\ ^tiIM wL>g?Ovƾ_EM*@}C*~پ_Ay|~#F1 #!2=irwrXqx IQ֑RN*@HLv"L)":JrlAf`u[~UPun4NA #, Xl$T ѴVqf hB0!4qkQqL '"+\o[ȖD^*VJ. HLgsrT13z&:!:B@b !Z)'t˧g=T)JS>]%JId4rf|τ‰I^Lr1sU4_+o!iw,SJϊ!j-Yo%7M;+nk)ׇ^[(fkUoVj&ohзBF( Mƌyp`":7>ś 0+W!І\>@)mhl8E$JFd$8i "OIHkw1plZ årAJ;1-6P^5uN%+3l&<-s6mO@XP+2&$0%*+=ᖁahlxEhebγB]E3 +<[Q7ÓI;,S<[/ss]OXCRpV$.NqSD0Khy,jOYE,LH<_vD= E?>sȧ?s~u]o6v郿EtļOnQ1#.{/̻UP9}QKz`X:nn,6c <i\eYoBnN)VM{ߴWvL1'D8"IO*Wu!9HKBTj_2x:9Mx@e4xI[1Kf$hlRRU([>s~D^+2'  ل$Bf 2xua@`B6py2 UPAj`ra7*B-ǭ 4NF`1\$mgJUULO8L24jW@gr3?$KE,^/ވnGkv&yLP<|Q8XЈb PI%Ğ@Q$;r^q)ӅF5pbBgG#+se3+91`8*J&3R)(gt`gB&8D >\0z,`xAd+q/(1wݗ_ǟ^7MݷL%ݘ y>_l)A0'Gצ{,>ѯl>ӂrKoCz8ݣFM5*},oJOlo8}obH zO)9'XVdW*9`6`9$ XU`L̍`h@c8MQHe[c Pu c1p$f zr}ADUfU*5E4w Ƣ*YaQ,|X;#Othu i[@8т€ObFd3Em( )gH,)AMI@q5!0uMaCpƽq.FTL<Xd>Mf vVw"i>R >0 :UV5`Fߚ]_ _˰p>z6Q-Km>m}}^]|wÆnn_޳۟iuu_:%ӿx^5󽐨!hNLчoz;8v{s) Y@KadlX fF^=PQ`{ɝ :k ܒ]ƈp P sњg 蒚-Z #\iu`0Q*۔S;KP u\Xy!8 vQ'1l+_Y :εEhS>6tgJ?[4X;/sʞ@ D.~ r4 *{L0ʡMU=}k֬Q=nËk7+Nf%}}#^7T@;/{w{{TL>l*1>E.)ûUdPx}ҩ 1| #G&Ϳod쵷=OAAמqPn6z}ν4S N}U{DUE|%*[ a"IWJ(E!:,ЁA("t:rVAnk'D#¡;4@"opCSD h9Dk+ؐb<Ck )bH/,hG S;< H @Ig.(J"Lg42uh8@q=+eǢxRH-UGG:i#Bu08!K.FCujnf^|&%hu *m$V94mpKByNldj@-))C8]Fn4Dj7sk[Xz7vm.?8u6W_И=Y7FGYWtϟ.J\K6LǥO9>?8+?ji{j0;:"sXH<#L * BtHA\R8JHM<QL~)1#ԏZ˝ʽG,8UF4ArBZ(!pY? zJM'4&drmX5t'l=xQeɈAY} 7Q.,u3@mbY:Bt厍 |8IXce&NPK/vݘ:Pܦ0 5s+fnuH\X{C(D⧣bc?B2̮@Qz/lk**[C Lݟ6WȃMC{ZGTl6$4w IdlF7N@ǡF |uF'~7zmУZ[:唿8[Mo)ܫ}RlO W22fo?Ƕ&"+s)\GD1)H,R0`/S fThJ՘#!#$0&ݾ4ORm|[࣢ X;9zwvh翺a}o[z>y gavN><=9;4مW͸䓩`'9{:l gݍc`2'*tc=Y  2SuoEJ,@hYޅOCkHmZ:($HO't.9JXU^W-f趼|g-1w+h1 tEKެ%=Y!WJYhK=-J=J=jqF?}'oir/za<-ʗ1+m[dx=U lƊU^p8ѫʬ.o1KHcR`hb*i3 HJ$FtO|Ӓ#>r]ER6 s]Dn[? 4:-0lFG?Wann?lR68M^<lA?5 bnʿhL"mGsŸn9)Vqh_4nq\.U{uxdgJNkE@bW+m K q] B"=/(q<FrPF4\,H5GZ/)y۠,]jF 6P?R8­u= }OG̎I"*񕎀`^26ϡp*C2h 4Pif''?1qj5SAj'7,aꉏWJWY' $r/9B[]W3k$_~pEg涔 [M {1'Qh>d4*GѷZ)^0-WGA._)@"={rҥUy}Ζ-0If0;>sfyj0Ξ3iw *_(<3yO;>ztsk}i MlyM0@،!_ t"8#1(EڢsX8^!ƅA, ! %5E1إJ\u8W 1عJJ%GbpUE9U2s-(:ÍIerFd&DҨgc<)tG4 ?A(#$$"2 d( *Zg-f%;-`3¿icaF'@WS"/c>Ųf$b -9IE,fUQ-'1MT.`% i"iژUzڝft3>L)7z4s |cc@]==P߄EHL"8 !LX֠!EM!% Љ(Brp?xޕz@y+mngj hᰦI>Sx%r,V3]r8@FPpZmN{#Gh[%fCN4XOX6DkJ5 Δ.q"cRCrg?M: +vp}lt R5fcu)(7~XȵuqZ@e7T잣jRP%96)KT8qաd'|V5a'6`4S WT vb pT\*SgFhnJx:S]}oA[a 5\ҪsU%qP 1$N,삱LF;69z U,h2  BXHX?Ǩ 3fYw`Ʉ =h5@S93 abXA 1W 6:8pKPxf`1RRf>=|4!E: "G4b<-+§2*"0$t Eء@T|ӝt/:+?~ZCS u;wpGBT铔3`Ԧ48b=7>doN!4o(#TWC̐^~hzk$0#1A9,FAɧ8YIU@WMNJ"ɕ$ލpIaICu7̑k"(I.tFsȸ_6J@T@~0)SL*ѥSQ];a1'=B!DaE2816 #.ibYE*2 QLzѵ 3)#iO6a@+w=%vLgVV~z}ûШ*!J2 n c=;aՊ:J`OgUl{]Eso ԁ `{R;`DJ=zOܨ &tuW BtD B;E3SƸIxnȥ R'V 3cJC@A (Bdy#}GSH rg9 1nN;Q=3tWDbRbU7<@yr٠g;@SipcLR|d2p#}j#T5%Q_ϮtHİG Iwa >ម>]g:X"QצQW z 7c :"l@uNvBwHB3w܊*LyT "40EVd@-[T *zCܣR$΄ad 74fS* G{n}r?$= J.51def[uYBtv91!7lYaLQeP(C@**\x' %aÒ,H. Z4Og& 1 T,jrIm|M,"`>)l5(z-wӿ[]s=VЧn:b#!7Y]Ɋ0m|ao?lVpUԻSʍޗ(9nĞ { E 5Rǎ;>e$E eR:|V60$b"N_F9H2!YeXtm꛱gDhH8S89ZL3vl^94p+8z]"(z}.S MAS&vuBHT1HJFITêG"ǎc$Bͮw6MDM{ ^,b 3逯LT_ɝG oވ;Uot3Qx$/|uT/CHj➐;3|wB*b6wÍfIGuiCC˦H%(N.]ipG(ricpODj IKhbA)c['K:E)3<1DIp ĈA=ՠ/!LVQI~8/!6\S$X(o13Q*eC |8'өX3š|F C6)X"YdņԈPD7>il€0 pԩG7O<I@}^K].8;j2J8Jѻeeގ@5Mb$dw:Pxg-W~ 7R`rBPP coMp} 'F=kːIVW /%a+- \#Ar3[nAJq>ɣaB#E2EB"muj+)RfQcE0 #l 3P `OCˈYJ#ߨDJMs$xC\:2r1Rغ-ĸ?٢̼T8jR  C,eQ~Tz\p3>n~⿁kYi)˰6}ZsЁBem٫;}TьźG0~yѦFVHm6zԌݝ$΍&ì0MnߨC+P7B5NQbJOn[a$:I:?U3q!+zq)8q'* A+lzEƄxvތP@o+l"mS]cr A%DJU]#~ec'QrF&Wd@whuΨ')r3QY[l UPr 3b*X|.gŪS ( AOR AAdS@CQg*ɄJptND%:rv_\M+ܹ#_ä$iYf5wkiXxgd-,r_s`jw{֭Vج= =BՒ+&fӉ3; luNRT# /بS1z#:HswOU(kق݇3l0-eX*)& &ibA[UٸAt>ؙ ?uv=ot]'v;76LpsjΈ!d*%lp `3t qpצѓ$m}|nTP3PrH&8!!BM˨c1j0ި͖?֓Yԁw^PDb1ݽ]>C\ dG70K#1lݪ&M#R]?UPHInBN>C+ufPvS%*l_<5JW&Ɓ =U)-b/%wy8&g6t9kh 8^lg͝ 3@TAOQY")6_꿔(+fzwY$)hBYSG%{1W`Qz7pY^I Þ-ZT+H=D9(&I+3:=`̎Wbn7U ,)?c吽svIFY|aUQt=TT! x2Ǟ'QO(.UFԯto]M9wbQ?0pݓ+3FNXC()UVH^EfLZtgT: IDATܦ(ʪ*wڧƗ ۷E4mX- (Tynf~{W#HbqQ1ds6`n|NL$[.€7@ (0eUܧ>TY?Q~``eл& |QKЛ?C)l`F"h;)?jwC.DE2klFS P/K(}E~]*M;.0׳#&XQFT%; #V)ٰ,wLIo]l1o *HQ%H1?5,C8XKGV߸BWFnU~sv$sqB 2!t"%ό8:JUT|Jqlk2G*ekuLZVi bȂT`zAl QNz@ъe.p` 2+6xvҦQ>lVHRԶ;wL} !םDD䰻>;Ӭ sEa5*&0Q-7**_5m؁һq.Ͷ!a4@0D󗂤B 3ƣ=U6sCNT̬>$]¦I2/U&$ń]s% ӑaFހ.'a*YrȐ`_dlۈSIGe,:-CU8{tfUTΪ/VV!U$ѭ |_N$&&h"ёX~h}JL2#14JCuX~a)9=db;ZFmaB&{Y7luv[*RpZeU#bku${0BH` l iFn.cMnc2v|'Z; (3$Yr^/ĭK3c2p,:`lٝ ,ᒮu: V3%M| UD&gAsX"ٵ'*T8Ԙkr={f4W<괤tJjd8H8XeHh~FeصZ7[mBBr+=h;*lHob u7]#"}pfAb^h݃ 0kGmQñu6g]aabF$ڂCrvj_P۷9-3p%Y¦5:3)R{6ݬatzP#L62H9€0  Θywk; +Lia|8z+4dMj8=BFfVV8W%a@(c<"zrBN-hGtbA\T\^JX+Aɩ$M^y.ŚЭ7;;i$ syy]x f{ȭǜޢpκ]kn pQ:qjVX|ʆJ CSҊȮ=QɵՋL]z[w:xvtG0z qO78ZbIޅx%zDI0 ;A<nڱc,B_ʔ0J|lDu=W.,EᵧOV`yf|O܋:F0}Z5n6vտ'+?R +OԎ\$&_iq(R#tE6a@0M$VFe~C\,Xi+`9;Ĵӎ|4ָ1'E׎_vL>_L)a@@SecjO~g^s*Row_x]?גMCu"ϳӞ%ta yIq4a /zyp:t2Id`k7_4$Rԅ@pzYgչS?n;t&}K~v(fizmM^uoW-}sьrFvdn;'#Ξ[xm>v:I56/kVҢF=ma@ |ԫu|pUFү{sjwscn;Vam~ྦo?g*=[l_/1.Gғ냳w";r/1O%ɀÓzH\Ag`65nā0 TOcKe)ߧu ~~+{g.@e v{+$kܘsX67fٓGIcoۥSaM_+8aO+Hao3 &]_n}_}qg6t[>1aԴNS / Ոz7/ӿug[6m5q6~ΓG17Mч}V FYe>ϬCu[1 ekwW+nui,zŕwJrP+\[vrm:0*B>8 ,YcǃoX SQ,}VLwcCZO:7Fˬ:Uz(/K]0ۡ{Ѵx jY͵3Y$|`kV*'3^/u証FTGeM&JAJ0Aޒ>2b@g>-ޤX~\+N;MYĨOy]pg p'L U{ fٳ;rUp j@PRLRU3DB$DQ- gwh**r@3|J@3PV{Y~[V;()Ы2AJ]U+*wF /89$s MT" dRB QQ$߾͏&H@A&X €b軳45>wȠzlh~ 9 Ũ7?ۓ!=ja@ah U [ͻ=I;zptv9<]'4rVn5/㎖ZhU9~2r!0@BzY 1% )63Cohhe~Nr? F|xlQHhJc@&+zq, T2 $xlxw.W 9&7>6livz4:]U5:tQ*̼fNuZEP~wT' OIY`|tғ8OnˌT @pFلpe` %OV}F$-'$d'RΫN}E܍O֡]ávzBBݜmZ涜:62Xѥgf40{ԯa~ 󓻧Աg}jݢy tiiEֿT 1*ǀms5W0B.(ݡ2o\1Nk4籽th߸Erj+#TK>eLb mObh6n WNpLxli괠tQ~#Sl$ €^_Xa@(1I&;SL?rzv`EAwG6"^[Uh9fe՘UhH@(1 s̯ ;wPIqg" €wNhJ[BL;xʪ&:h!ҥK5,٥٤R?ek@jӄ7fw'ܳ{:a۽*%!))d3gάcɾR'@0?ʪe@n7/ nfVO4>=Y[5:򎭥\C6^rJoN>XR[l6#i3$pmh-r"€-h sO8QVVv7h >>~ƍv..>FT{ @@8G[lpԯ_?::nyb(Tb[+-p0f-28bIrBܹ_|qWoyv7d̓}sdH~'^67nc4?^q?u}s!J@81Ӏظ8zٱM;k_:CݛPm+#RIf `kƑߦMٵk9Sxǒ5Ɲw[렦%YBV?Aj0g^3;_.4 C&w/X.ڵoc[^Qj\%E%qƧl$-'0I i$86#$2D. za Y+፯}y$]7[ ` aVŶKq@VJYM7~Վ}5pqn ]h1BG6.*X_qмjOt-jπWZA H-ޱp\4mmLno)ms0+ۘ>IKkNpC8x¦D]˗,ځ&Yupph wl1qj[I0P5RsՄ-` \SoG`a=~׹Hf٢Ⓒ?%Kc *JH9WkЦ62_R5*6 ŧNʃAw's)@Uc`qЭjT aR/qCފz- w-ʣjw`ܮCnžFvh!Nږa@?R>a{˖-r 8dg}{%q^5Rۿ{GE柳vquaޡx͋0 ׏+<Zп;G}D%_BƭMa@rF`릛n;hР q=ɛpR6;y#KKniҵہE_;Y5zJW7tq3da9-bPX>R-Ji6kIɦmؒ싷٠*n?XVUa .a@paY|+gh7 |$O*۷E S2r|/[Ya lڲr-[6nY ?}7=,Xr Ca@"ޖW{4 R?@<ʣ/ia@B@9܀K Z8} lMʟħyW`D@az2[=*ƀ9V\?\e{Ή’3W}ztn/o5ą0 H #(1ywS]н7_0VS?}S3޹EϾ-7tC<3AJ2e'`<0'A?SaO܃T €;AJnd__ucVC<3U;a/ 0 ׆Ifg.Irʀ1궩ޟnOۓ7H0 )~]r>aOw/⨨:u8İO!_ޟmo~rD)ķVAq֚$Z!hJgy^~뚸~fVwC#e+sCkbwԡ濃3A.,7d#>W9ݫ7kt;#}kݩlKmGv2.zvg\W:~C%M 01?Vкu;l嬾۷n*SC޸ԐTC yNѢ%qvśi{ݟ4&smU9DWfnFWKs5kLY;[ SNiq{j< 7FKR0J6n ich0Hn /z]/8L7ُ11|r~~>ZB~56 F5hЀ[P{Ŝݨ.&>u'4mּɦSF:8tyUъlv4գԌmLlS5%{ޔ{>خ8]quȧ?f<߰BCRWw4,0<^W)$`ȵ{Jkc?ŷd?D\03<1C5QYgvR{l't~gĴO<ճu{x6nhS=t%ԥ|psO9ݓ#dx׽2 .ۮ 秲b4XF.oq nH'K™"kioś&ru{Gbi[Ӯ1ysɈJ[{pʯemR82^8cbI.Qs^ݿGXѫ>fͻ[)WYӹA/N`D)O~m3$)^nŋ)WEMh Ӌ;i(/~;P)邅%ݏ,L.1i2?L<7s`AƀkaasOXs*;],][ ztid& |mo;ræt/&îyǎ=Sg$IlSBE4x3Z.LW\HC" 1vJM9fe//א?)WEa*0[Nd6d dpv gB2k.5^^ܚ #hڡGYvh|{җMЌ|i#oհ&ϭY.;ɏ,#K8* 6n57Dj0.IB4xeρ1eGo,3K'IeΤ_֮YQTxrUya@*e¹٨ ̼jP=`Xi;Re};\v٨A˟VGɔ*jͮȣL0~UWMGC/pas%Csl %:$Ɗcp0\6 / ՈJ*`H>$XdxM Hv < ā|X!czQ7o:ԢI4Yun˳i@^7%ǚH a@z!yT.g:~<޿č ΘpxcEƖﴮݧO{eV⪒덻8>u^fumV6'e+Cu?jу%_WOya&aUO)kVqAxKOV=PӬ܊,BJS[I)OL pD, Tꗫ/- UQQ5k֬S_Bu8{joY`1/_kKI9XUrE%fJ*#Fx0%ƛ1n ֭S'&v|l B}4h]s?|z+aq ZyϮ5N\2qZenRp*7/=ffJ.9hVs^-2h_UYw7f8]%mx -P,9:C& '=fqqf@R/N_ 4 ^t_ĉ>۸':ƀN}/_[5=:{|D&_kNeY4p,ў(sګ=2灯I§V {c 8-Zuw:Ҧn;v|Q>>l[-<~j.@mp£tI;V9|[Yr"$T޾oDYIMb@Ro:F8ucb𣋧v~/IH;/_;rpX[JweLroiXɜܾEk\4x=n7m|jR(SB#/ 3*u*iié钶<&^r?\m^,nZx&_`RǪNDkpQ#L֎fËuGٳj}Sn~ʵs{G)kOi:a Ҫ܌N^ʳVi` V#<2uɹBnYQo<>{vE!=a r(.)޽],Xv{)9sf-ۏ{ydPξrqjZssnso|p6yZh=Q湙^o?\:h X^vm Kiz[֦3Px*Wz2k逃eOFU,8dG]RV/tMwlݾDYIEUc@&<€ c1P蜜G^=/OKm޷Oۼ_XFz!nt1Fh={#F}3V=:ktym2#( r UKl0lj?wIǃSI]w׽;r!al&fm,s߻h ~w#ʾ+VN<ʒw2>rCerg0fUΉ~;D> iV?TY0zuƍiV<_UvLʴ3zN;{gVVVKaG6a@!2BUȃ'][f{M47vZljs;S?Z]vthzNj~@5_2qK߄Y4<$g?̐"ga@ϵnhg=dR/yG67*sv?f mM6k߶휹O.\9::dx;mAʺ,~71;wa.0|wIWn!i92 gWPK„#=hޘe wLbg .yȈSLq6 ݺuԎ][m49mƽpq qѽ&*'EOSy6Q}M֨i5;2Xc15n2l`<-;+*~oiSR =d,i}~3P)7@ֻoƃG5Cچ'q\=7"&Z}]BUpd? ,‡£Kw9`qo^C†'N=5pǟyx%J2S^)#v<:b~~L8)ˮ}w{m,ZZӭe==zg^"S+ns լ6쿢-zKEHr/|A£DreK[ܔ6+/WܮM/ ji͹AR#zTW=vxh$f lٺ.ykGi/cYaMfGpi3oƇ]<ŵs}]}IBB,Z7z!ش)s'aL ~D_% 3s/T\nמ0pjKVr-v}xݚK\ĕ<0;jɂҦ<ԉo f7mOY ~ߧj2l]XcL n f āO&,U7:߿`E#Ô87hs9let.wwҰۻH̙35k}M̫r־f+6 .SZ]MZnu=`:7GLm-{ެ=EyAs, A72{oK-wŲm#&u GX o /G[‰M=ZHdWqЊ!dVttN#zeq'ۧm^5` G/Wݹ(&9ԫy!>i,69VC B9Ӓ&'迿q<~iſb'?IZgP}^XIi3YZjAb4C9zb?f~זrIvR21bfJp€00>I;?Ѳ ՅIHJ.q}qpoJATӜ׺ Iixma8 kz xa |q c>K{n1* *墠F$ƅa@*̀zp€7ʝq,m€0Pi `]N"Ui@ €0 D5_}}|Ta ?~sGɁ6?li I@1Yy1uǏnYV xsttT</%i6:2Pªf~q:)1 aɀgvej@ ^B * A6 ?\6I @2p kC_ؓA |6s*0 =5>u ;\$a1`lBYnVc+D.^Y9rR" Uw:A$ 1z0ޅFφH @064WbXBĀ^"ō0'&WD& a@ '=nR VG- ՛[DWM0n]<ƽ!@AR-<U{դk0+y) Ns *gU]{1K/:_3Sxss@M`IDATWW,h#𺖗/9|9:WV~7*Qopdc{u4}6} <9>?zv0 ?R>JxJMzM2]B m|S3:^zkTMJ|a&\;и/j"# aلr ;vY<94a ( ONIENDB`PK !?MMword/media/image8.pngPNG  IHDRJu pHYs+tIME 6ZttEXtAuthorH:tEXtDescription |hardcopy|2012/10/24 15:18:14 lim_j SGA250167 tEXtCopyright:tEXtCreation time5 tEXtSoftware]p: tEXtDisclaimertEXtWarningtEXtSourcetEXtComment̖tEXtTitle' IDATx]E]P . (bVdEPDL 1݁<ÉUTP<. ",BUuuuawvKUu'Y{)/+-߹}=,E"`X,{0>DwUchdߚqM957^Ly^ V^LqH9Dۈ2#>5Hf8*XdVC*m G0 T,m Z8!*;IfɔX*ۉ5yr^"z6 %WzR ̸ZNCU>_ apŔ*9K< 6Q1I&˩\Ftn"m(ADt#IDi)<(?^|sQV`2pUώr|YYy٤>%-8{U_¾ޙ=a7>j\7z,p r5fgE/s/ p9}MJbP4PL#Qbpt,~8t Q)DQyd%Q D,HRޠ#Qk CvfIӔДn%&ճE%w ]Mf :U_v.:>ZÐ|=J2׽ z*IqIFTH@);؍CW^)UL18}Ȧ$\2|,\R&Cʯ3If &"یqOf1L( F=\S""=t1hh"XTMc Q]h:7YaJ++=RS@hs+ּyyJs7/ozK*ߔ*q5ť~_-XP<2%X7Y-6xfsa7vl}XcZwV}mV?苯ũ'RzPI!0r]x&D͇1 tBh(ʃ .mS2%@'D`P1~ ,RR?ԛE BLaAHʵ2iL)R V 4 #|meOnqANF:yTk%#{;I)LP+ b!$+~S7I}KeHr4s1a*>Ĝ걼rc"cSYW߼jOxP) 2nF( ߊ9 :d `B =LQt3Ɲ3Cp sDc!8(@5- ? I$sf-[DҢ HBɏtK2YJ I06Ab'qt)Ikkj2$)׶SYkzsY( lS"ңҐ0,f^Es.~wntEMյ&C5蝧.W}9QS֘O#g[Di0bGg: _9txN 2n&>Y8 (y p$ nF QD<RCL 6*#-,h.O{_O+ ͐Oڍ^䷟#jPC=~a%,]jݐoիU߻aK7:ƠY7ЈSCCꚾrѱ|t>p bL2hYGXy$ߗ@D 4D"Q~8%tʈKK4q.AOqƞEGK7)tdBRP n^*a $g,DSDtS.m^ZÒ z({V [ a( ~Bwm*g211'jL(@f17 8D9wQWIuܬ..oÕK$EAsqqrup ԳM]e(,*b~%ip XᲲqAI?b.h:?,Cd 2p9gl*pRHzmˇi#BC I=vBxu Q@N!c,.GpvZ& ժE`zH{>FI>G):(—jrurr)v5bc;CY/9D$ɹ0-2T/1R&fw>OBU>Ҩ4 * ͒SgG[)e\YMúSr5O Z$Uꝕr:~=̠Hٿѐ6˜:Ӛ1M*1ȽG t犨sfcQ!6s^ .**|1 #"NiGJM4QTyJY]Y\E](>1OB]κ5"F"\QyM+]5 OdQ ?K(,Ń:t^OZ)--^ S&?&NC0:,9h\ԭK|R$pA5#|χf1`3Qৈ>v7B]O @+Lu14 /.C&"raF,(qwqVfHrld 2<ŌOZbX0Q/LLK!2V,hC(SJYR2%Uv},JRPgJ7)9d2,c6P j4j5=!O4< Ea:2 l6i8*UZݪczQ^#(r +<c\O3a2uFo=bA:C噮+{@ჿ` RLqED%Z0{bs9V :9quXSceX Ϳ&VMG!jd4$Ni" zJVqFa Q3(Fr2`rM6 ^OVU@*ocrE q8wA'x"͑3xh 8h\A_q4`~7NsP#hxzl6*-lD ,QP(U8-S9:MdIU^$'g V, hN<@֦Y.27j;I+QEU%yj-:{|OgH{NJ0[{[9kuV|A^::t^xyѯV:1$gǟ1'No~~h[ĥ4ӣ8U,s]@|[\ZRJ<r8,@7j"b ~AܷeF'< v §(D(|PO`Ҍ2GHg{$K( !w$U(89T%jd_Ǘ[GPhOnUP=M T' }zV53իԉ,ß"s(02ԋa &))Gيr|cY!QH]2aA^EhcI_tp|v#,͢7QCY˦IǸܰx̤֯FΣ_Fcq|݈{ \Ɖgy >Bd+nNy`748.El - AQE[W}Uo競GF$ E3E{| ?X-k!l%/v}ho2}i&(7Lz}!-J0*A% 3DsW 9(T+LI:33O 7U'{JǠH9|' OsGЧى=+ Tu ֕eS%A9*ݣjV})]D4͙VK>#R、dqd/mfIFѫ0_PQ/iEB^.jiVSJR2]Z 73B՗]B2nF=p&Y#WzCDaaFRRB"*4?`5$pYJ @Ӧj-2DJXЌnXc0b`Ngx!1oMuW-߾~gHUo\G_Z.׈y-ku#ϽUL- %m zWNY&Di (i -%ϙKP l~MzńK`}/u@x xПtε;/{_gĜy[0<'Fz 2EcZZlKdqb '$t"}7sw[ԱN:"˸ Nz|eRxZ2l.ifESŽϫTA#9f>5\%Wd)zO+!U89zAgu4N\1۾0&jPY#Ha6X*s5 mϜkJ4R3ˀ\U)_S6#8 1e).ڸj<9tD$[q@Cpb<1J1]Q:N",Q(RV6KxJ*:rd@ +,㆛ex,V~8L;9.VA7^Wkwr9?>k gg ] H[s̮_捹3,]/p j깵y{kXSټ=ﹾ'菿\W{OAK|rSۃY<M~V}=-6Ǝ>SW#Kf;oG۞y:/.fɏ9F#]1 n]H/WA3,ƸP )I# E CYLyx(f:TSr~M.R9V8 ~鿁pWhn6XxP`f<w//~~`yFCXӼQ%_ݹS :;o.{Ƃ@I@ |?{4uU:q`ߊ>L PUPء2^$7h2p9f^=$w56ETNA3y;g/Č.j-֝\A1W\e(vZj'FG ?,oTOz+UGtTr5P^r:λ7bf$->%APT;2d+ՔS0 Wqw:\*zJ6oI3dgMڝx1NKi/Hn/AvEe+74( T\wpClMqShKM6lpWzH; (XG=80 +OD3[הR=zN*hrP^-u6إ7LW?v{\~ƚ-\A;S}jXxѼd+PyS.b[ߞ  4h58kRCzDyaB)NpeK@CN0`VOClQP1w*:4 z \69wA:UY! ˓/YdoQd4+"/pJI5 70v˥Ȅ]1]䠺k\`FoԳ H418&veͫ90p+'.EPH*gJh%*P &22>T!|3ދ&k WXkc\ H ׋JPNH ɬ4aD\," BFŮG_֮}ئ7ԭs>5IYT\ b_I; 'KLBο}j]ټCj똕:0 IDATvXÝhio9 : 7%7kP>jAst{æ~<鍜:vnt0j|6ECPVnń8 |/PFO^pX~u^@RkuWla'S+:7*rl[.NȰB$3jB4FҌ ȉOE\ϱ 4+Asx W ɎU@0XjkpHp]* @S٦R'I i! tnSnJRe]Wf"9-W!Nj4tWa޵NB!k$7W:ީkX묺j\TYb ؘ`af#z')ѣaER=x0ӄ؍̘P ԩc:UT^<Dsɪy0>p-d5=E);6aEgc~uy5j+/Nl|yeC%rt`xpڏw94B6ȶ`+we$g 4[5 "`9N G>X  0 OP++RǶ0ZF Ҩ"%z3Ҍ5c<.gUD!I3pxgURMK%>@~%ZrVL:"n2HMz+ %SbH9oH$L1@YD{ b2NO{ueJEKz>e%z68TZ!͕,hԮ9"'~1ABbF2\"[fe`raEJc^A(FRՍ(ch[(ڿy}妍?n'ݾxVS0|xH@Xh !5jWÎa lU\ַ[3\F!Se :/ t5ħ_x0F_Fܫ/E|*;.9.` fK]_P~~WN : 6̱2 ó!C2CsxA)q!:ڀX1c"|P 6XƵ@$1\$pGY 5s݌wM. }M6>U'~h6LdCt 6UB&L1~Ni6dx(Y1UiHp+" ,B+D!#F90̈t>'LW\9RAeS,y ?#'Z$F{u+ۙ)K2śڝ]fNdX G|S}A2Xʅ]D)jTZr!Q)Yg7_×rW?P.˼<!LE?X>@e\RbZP|/i B7`9̓Y|,gމh' 8Jk-1\\op3uu"G4L-0SČ136c)o&{;-.@2XPk(W<}p9e&npQo,W*"d> $'(X4wS`Vu;I RVg^Ae<():'u4v:{av}24e&,ZkG pP-LQIEl;G 6S*.'Ov-r^$H 17VT6HUje }@BzQ щ;dB' UA! 3S_tq~ W#~UgiaӉkG! &rG:VC1V %@piϏG!7 a M\A ΣLmuz~/߱Ì-U$c +&!2<CX VaD˱)-c41?[օ~ tQX,6Go4 pO, #jܭܽ[FD!7֏@M&7|~HI/P8y3!@案\rlRHkh v\GUNtʪQ|IfI*`OUdU?>(u9٣u&'`ԙb>X\3%Y(Ľzy ;'Ss -肏V,u,FnpcHAqRC<3Lj4O3 u[K RU|՛K ![qT%!걞GQP`5\y`~>D#f;/&:űyȁ<M`p +yB`G!3'iA30sN5R|a&ci>G:4ӌ]w>eftiB))#9"hYL$tdC(3 ?2v%WF5IuLRӫL_H{U:BpzN'TNsE:hu"N+U]DBrAt8{f*cɈ{zCc]; = Jt.e 2׀Apu <4'G@OwG uk:y2nP*&tb@KĵKr*hE+!*~g0"? NsD-KVY($H`o8X 4<YYeN8a3)G26ṅNf!_wS|%B.c4rkآBs]9fHb(xC[y.c4sGZ@FeծRߧwx-!X+#/1#ieYCeMpJ{p K)8n U*?ϒ3@KIMRE}JG6:Y#Y:Ҫ `]~aъW`I9fڟ:})z'1QE_u,2^96U?O0{% .3]"&5/EPC.˥MB@| pÓO%sB'kdC.h^\jHbkqAᘡ%Frl3C@aWjpR?|Li`= .sU+W)1RvWDl]a/RAL1E<}W0SweYUBTZa!#&d[s"`z-uUrK(tRÝ8zJ#iLl5%TKZ K2&xh&6i9<[(\D3HY~Ykx Quqe,99PO}IrHQt*ík5&-_f&^Ueኋ=DҁQwIYA#e5c2`Nz$¦4\ AAMD!7tl w6jcpԯ4q 3("XPF kl:uhdP(hCvb7 ;Ó 9M)v `edPK ;-$FI kPӝ4)*ӊ:ԁ?"< JVzt%c{4+Z=/yWA<5T$ffSd7NQ>{=r5AF!>}8QEЦ44g`DyIuʨYp ԙ*jr_&l GUnrJU\?-.(L$Zh8='R0AfU1$a]!)Lh|*aD5 9{% < Uru 4fw}6S2Pv є!dl`1* P|Wh>ax>NU+a Y\6GXR<ׇ 9:z;FLcLD5;xĕ|e"#˘DPPiY;*qR(Cnau( 7t C~A ;dNgN0ƨb^iHGJu: e4 (q]M6} $jfS׀J呫1*>BDq߾D>D5i x\TW5e׎Kz=.C;hJw OǠWX?7yv4̜(ӊD5V9xs$—f7jnreeLT:+P!]}4ҦFV?F.IVCxAڢ;dU8+%Cx.S -՛ f_yS"FRLF53 &!JSDp?;ܖbX,E"`]s8|W.: [*W\PE=n[,E"P%ʡgw1{v߈8XE"`X,E)dwUpʑŷR"hX,E"`3؍3#e`"`X,E`7@@?YUAEm,E"`X,i @qr~ E"`X,E`G`bV f[r W-䫭lDs3MժUyոy]I=jW_ -q߭<,cj>sˆ'$)]"֬E w ͸w/!v!fo.xqÆ ?=(>0p?<}e%;jSS͑g޸~3[Xq2vߟ{tviX-i=h쇟eɎga*IUkص7d.Q .)tNuɘK_ﺾGڷlꚴPV3Ϫ 0<蒋֭u֬F2@Z͵4pi?8 Nq9yCYE`vq1Z'I%q9_xĜR,E`C#dS4S/~{?2dH'(2P$do1 , !1`vنU;رܾ-UR2oRyO;_ObZuq*0 9!yv;v>޳3e@N |}eT[ҽ!'7nervVodM%GmT,XJ@.'I [i#f{T <f3ujw_ϑl\F"Rj1SƲ;wsWf9&EӺe:Daf~~w0# pjcח\atgɫY~[4{ ɱ{k% 9>Uy(zF;GΪ-*(ȢgiG?кc:cU0rw-VQwb hDii)ʛ7oCǢU禋CujԨ v(me-Db5嵮Ubqaaz+ FB/?է29u3ksWtnnH8{Oρ;n~շ?`?9}1*'_S_734?{οceվ<:3?*}JE]V_4Li(cZ͝}us*T`5Cȧ ޢJVUB = a>jw!آ֣<%A3o&b R+@S>}Џែ:;Ά0:0s-_ܷ[ή67RPggVe"`8.t?.TwޯF p瘍oMam>5yt/0l^܃a4Ś|[~,ʴ/>͜@ s- S[%Bᡫ>^Sfu9Nxڀw/mVIE^{\ns) B۷ow6>,bfPbWhbaq`kR5?HJgU  vYx C?iV{?}\p4> +(/[zH%/.U [Uc+b^Ψ@Ks̐65\w_V昿zf$àF+HQ87c/;- .Kģ(Cq,&[uɕ6\ز vok_w?U{Gytsn|YMU$eoWt-%%=Gt4?+ȸcOJt6h\kY/wiW>xA9g`Zj$ai@E w=y|26LrT6+^@ítOJ0P^5iq]np72{tz݇T\xe۷ݳ(!͊ DϾÑM އc'3D7< cOz޻>\ I3;Ax= $g(۰`;!A NUny̥㏹VjA^6 NnYף?WӽcȃM7}ױNHu9t4 . JpUl}~Ӣw?YgP|<8ɩN4\ыFz܅luwfLIǔ@s¸mlpVwgM8O7ƚ]uSۇ>3ބ!D"3g\{rdā98wb8L$ʞ\ DY@JI9"'tUAHY]w%@M4eKj~4'q##$駷v~ʛnSyw+DS4+we͗Uɾ1;ͺ!V17Xc߹޺a 瘵 *֭_WL:ѣr =I]zSZ^`y5wm~ ]U 83٢n^^OrW>?{v_x⣯<瑒@ILRcz"n ^+\؋]uK>[RgL??+x ǒڅq۪r #\Ἲw;'?U!O9lyw{(pU?]H*KVjWD@qߟh fssn8vhB< _y P~ACxsZ٣۷ϼ;ZM^5\TɧE905_X>yժ# Ŝqw:kCrBzoܸqԩL袋QfMӋ.g5{_8~"x%?kl q^5c`-xJf=ϙvYCXq`DŽ擇,OjCQF(-:;F#֟jryñ-u NDz}dH:?CZ>7_ ?1CMz޿beUl &R瘏iaҤo,K'&{^^p Η_%. YׄA$Z/r"s#k}qW4~'\~$\Qt_ϋKX#3gsw/;o< x۶@ܫBu\ŌSN}ҷXY,<ɔn%}gz=ph\1y\d IDAT:GpnPǽ=Θu,>cN u^[e'sԛ=>GRN IJˏH)</Lۛ"]8Yx$sbz|IIid'7FIM.Ē\Xxods^WZBa]Tל;KKۯdw3pq~ +nԫҳK7޸xf͚]{@[ )#>mZp|ǖ<2F} 5'XXĄɟ4@NgH|8 F՟}0!% | AQFر3ֶi_#F*zwH(S:@w,1)*߄f5|q8o۶beJ`\(6>V};Jׯ_*szvُ?mL0.ĶÊdt 7*䯞^x;2kսyxHax'T%a8aˣ>~HپUAMr>%An_B%:8<5JZIuN2;.gp/q}ݍ aRfNVvmshj@e_{gk*uhR+ }6ƞ9f v_D: O0).䓇pnydk+'74ŧ8ӯip{LGi\>{E-|i\"6FJՓC7XKWD X7,o8sWAxc}yᇯѣGC`4S}.an0p2@^p^|q~6>m&N`-|w#/FCQ:ԎroZmnKW(^+mZv_M>{sD/;8Ǽ`~TR||衟e 9_<]NK~Mk8o3K_Ch::݁eY};v~+q{QGQgw [ݺ'MSnmAnxs( ף{"zZïuN2^~sݨNÚ5aG{jw>z}_ԲA& ݠYpvxܝU(뇷ziMұ#t|fl~FY݂6\uYnܴ3fCOvF:#w 6A) 6mF| kOshu`H);횧Z4\u蒒ј\byXϲÆv#6t밙aJx@.\; zNp#eg5VbfCmƴWɲ]q,n4(4;+Vүb h+śt`0N*" av%&9f=lON}U^=?Kqw ݁+2z6lsGnWWø$a u$ܬ+ !  N=meGqwyCjZcjQFzМ*`6ZtCwz%9\EƄQ "7`WE ފ>O,^I5U *=i)]6~ӺN>p=NSrdZ 0\AvO253ꓨ^n wU* x4Bc'.hѴӰYsgGmդ34+2s>ZIRs|+Xԋ:b~V3_6GHqppF:W4Mv|'vKOzY`JB C4Gxn~n;:б39f;9W:ulzE1~zL߆ `T 6ܳ:֎n0yr x|{VݍyatoCs Z߭ \.Y_Fܸn݉jMyʫv˱®+g9wyǁ M[ kIw/<}TBԵ4-k'kcr" !ôΩB耠/zz@Z=5oTpeL]pY~hloUZnذa7Lt z e8ٽ,Сa7'KMvnŰnBs:w&;ʎ9̥4Igg^QWbr]7f@l:rsRgV;d/g r`7/_vj_N{5Lf%F 4ng'۶1༮^7ޑ=,9͛/=qwY(ZJn!РAWfӭkѩrnj öG;.Z~ߟ{5բ?]ܩu5{uO]ھχgžsGZQsI3̂-~衉 r-2,kr^핑FuvϾ=OiA.'%7=V}ՕC~hsV}9f;+N 8'8GYD`nx_a{T(4U N[m +beH9@:0ʈ9wDk<&}/Gr %k~ҳ]8}Br@jE$]s7oγ?&܅p!+W<蠃]5*M6]#k[kMuĹja{TMY%7X\oF/A gSǩژvtt9|5RR.vlT-؈9Z`X,U5Wq657R3b_UK#zX,E"`$mnL牘=+|HҌeX,E"`TeY+[-{_UnfE"`X,@:A+çЮcAb E"`X,{j79sl7'_+#Uty9qR(uh4~YȐYN^o~℥T 괪R@`9CmM-E"`EhQ1|w]~檉n\ N\NW;z2x C5 x 5rn=t9YO]8q ;_4wmo{/ů`R[<s}'ke9-@6Xz5<z.1+[6z1lrlnόV3O8 {?|$wW<`Llqβ;u:^iq"EP1oDiYkʮϋ&67w>6nXTo/>Wd^{+L&& FE`? E"`X,G WeD(&=8,s-Ju "ۖFqv~w# g񈎧pSs b6 v:vB1%hP'f͙Eݔ+-zh ۂ4ԉJ L0*G q"[8_EQ'U㟏J9NxeΑTSllza| E"`X,\@ h+j4.؋@IC󺾺ԫ¼c'8w?<.YLzS g|bVh4>&kaK-E"`Xܹ&n^܈ GVkc?9XV>֖,DA9 R㔎pp+d㬝1݈8zY}韁osV@ b3h E"`͘1I@"O0}uw⒉yZ\wDV-O/|ǝ/,x񝱛^>%섻eAk"PAs^mN5gF Y=XJiyw\#;]2wxL={.ě$G2zP͌zڥ99Q;VY. Q|P ",A)ۨ[ͅf>duq*X,t(hq =)vs:䗎" ~XRsghMŸ*!p9KadGm4'⶟]vn_mmiu mOmK .vY+h?kÑ+6Ulq[z:`Qf{k"`Tax%/by\? 8 }YW"^0dr 9t5\Xû]zAAL/ 8(Fai/c5s?EqƓ&=/VO#;]"ӱ^_ RV ujX,)V/X,-Y׋Po|,dlGxD\\4s uD-"0 5aBKp0+h!9Yf8*tu֕%bAꋦwּE y]wuAb#V xG9Zp Q2A &t< sͬKD`ڵt^z@|!bBxei>*P"Ku3 {N 7ڨFtjBKA,~G $e9/ZՀ33qYBiŁcJiyBqtڢ='s&*%*x[fMa5hM6T#f-nCfoL02% `s`00Z*0,č3 6{!`?>CvXB 1pnۉw-V޹\W;h2gS] {ݏ@XG9=ШviH>Ccp'w!o4ÁPxIEw !X7#dǤP2Xtܨ=[q)DꓚO%%bNsf8x>t_~^zVXe+,]ve'5㦿=_>j>(;z<ngq VT^8t4sߝaSe۷me>ͩʀsQOQ.Ǝ/VA|;.t, @(ZHN\ÑNd1AM:۔E OǠV tZCH? lvL0ӂe~.ClW2gQJDNnTgmzlU G5^׶Vwh:#-}4}/J.XMN1r8)O8d^ډ9g]+ #մ(%ƉM`V/A9jqvsvZ2}hL!HTic$LH>O`@-o{8 {1bc}?$KǢ})b g yMY @\nj"='3)EKc";7C,QK1v>y^9;~k͊Y5ƥ-)GNAvEfi z maOwm|{RS^Kw(3RX(KDs0ސ8֕, PY wB`x>y*VaU0h{42ۧc\=,{ |? +}LxMW|O-?j Ӻ~_ A+S≓t4vr&7l;aJq XKy BdS.h;Efct;Y|ƅx?ŕcYS^q$3g oZpN4,CfXDZSox@$+t;dZ5hs{8^jw[=7b!ߣ 1'G[7mxh&uZ6{ nqDۖݨ}Ǵmޱ]Av->yGćNنҲ_׾ ^s/2d>Ǟx^4#hZnߑğ IDAT* -<au?ipwU^J#YHq1&>} DԒ->#1R""j 6v }ҎP3p9Di0i<A6yNƲҲHc[V8̻lDR# G81LcbsҭSԼjBeR V>*b Xma3< R@ n!UׁDc}c*b" O]LP|DR3䜵[, *bUC]Vk"Zv81 `eX 2Dɰfx5QI?Lc`!<}3ȳ(򁱞ޥjC\e k0{aB\%>Twz*WۨDI˞iC|A,uDc)Qn>f p ⓙ9VO`O=J<~- +6kp0N]A }>l 4E E#:N2y‹T<yܲ[*ٟO>sda],Zuh;lI-;)-;)~+וMyiW+h:퐉|/śD2X  О"8AҖf<7:tm`8MF}֭[^ ō~ZpdW^vg1䨛kV"hcEgS|c`8(/g^!OBJ'[C"*N-Ӷ<f~PL*gqeD#GyWޘߣ-:;69?¾6sJÍ3הsC"EE"`X iL*"c9]v4oaK-YkSsn,g'[,q"HJnlRH,3,ϠI/)۶|Fx9{."f|b6>$}3J(^:c{;Y٬X,E pt̓d&{͛?䓎;ޡ4x 'zg v?`;8'=g\z8éez0'`_!ir_4dܽuii'~\*55}$L6oX,, Wcsp9%XWغux'NyICmhk<9 ֌jےFOГJfGb{w xKv3ľc!n8vg hu1g:=.Rxߌ#;luyO[ƾOnWzgX,@xfd?TRX9|CfK2'<{M ._7qǧwʏ$,c MɇG)y5LjȌa 1K2V<`}j,XЮ]5j!sE N9\Cnp|ȳVTNjXw:>d%6`9r[6Ѩ^Aqw7yeؕ'!12?w95uօB#!KX,w+HK+SzXA߾}{pM`Ȍ>'i5 c!^YԜ˂#H2 9n&G*#:IEBL>HIp5, gT-(o I MȒRb!d~1Щ-dHbӦM.*bD=̭O>i,'LsfX[,π5+וXw|dwlՆ2X VE"`c3Ϗ*LyXw |@TZ4/ִ5LGXW "w!>Ma|S.Ms@ _6U_z|'l†D9 Tr[,BdТKen@pcGҵ w69p~oQDZӒߺJ^=쁤E:E)C *#P|Ǻ~~oPk54 ۷3--~ZTWk:`xXI'\OB_--nQ5< K1?&Nl'bџO֦''oB+7]@k Wh8H='Ъq8;BRʳG Li)Nzꅷ9?sA\,I 0Ŋ-,E"`"z7xcС'lv F}֭[qgr؎"G6{igy962Q~~n?G%)Ye>݄w-nRxhy̩cI/+dwy_2ȳ8l2E"`X,YE"6̀]?ǽjI lVCDE"`X, *x4孄w:Jl`1؀a$ xE\!(4.PiHj߼J GjZhRZ)%įBh%^JYh|~e33;;ڕV^~ò=s\GgA-v4KUW+W' =C̈!r5   R˚3ēM(!)/,%{!'PW'L|Ck+1X'    EK-mCm,Yp(:    0)R7CSZt9#ܤ[fY3%Dӄ&鳶Z|哕d>\~,PkU-@_r>ڐ@@@ _s* J,$ Ѭ4Ԥ;6oެM!kRfr^ÆâhFI_?s =%4wx[~7_vɒg  p&d LVN<]CB nXVVflM1+?f鰡kdթGB/B0Lw\OX♛:hVѹk}=,}J7SlN?$<|ygs.Ztt% _ ќW -"@ʜYkTDsMMM}}O'ͫqfwԽrsY0F:gaܴ=[ bW_:NCh[59Q@H?6Neh2' e24lƂvMXG4 Y}1n ʐ35oœf̃aaaxd[Ғ掲Vr`d6v`>J,SjWʊ9s++ϭ?f%5 Ks}-]i:FcKa?ܖIՓUկv͖0KgxkC}C딂6ޚ3 (Rg(cVʇ}cVTVPEYNYn `etNn`~3KkfcO'Hm_. 7:pMj2S9;;o^EI"/_VjYU\zuk.}gU$}F7@@`XF?m㳙,'oK\hϢ^1G4Ij\.s,}T* aKVY::[O&%~΁.|2(BNV~t,xO<|b㇏}_OƂ /aN:dC7ϏiKedX%_ZBgK)@W˅ "Ǖ'IYe>rȚ5kYywp8.F'tO;ARJːL9ɵ],sncGW8=`0Bd.Ρ  pXF]C_ĤfuKV09n-gI64;B7 } Z]Z7U 벌ǜ[Fmm,//Gr+;ɟ;Ah&,ձcjƌL%A )7Cux ?vޣ>Rz8 R܌H$  ?[~ީDntE J `r@E [N+.meet GYe:1g*$QH 7ȑ]zRu*zߤ;c";3g   P2J1Mry Dta6WKU]nzFt4 oF1t}Ȝ٧OcllL96 'qdZ@creƐƼL ࣷ8s&UMɗ9Rܑ!UP-`r37E gYh\M Q[CiMk\^=?d Deb%#?l͚bfr6̙4oƚA L~ҐLӘX⻷o&2DdUY6v{0iZE<= 6Miכ\rMfԟ4BLٝhW A O 𜲡BY[3d)$4 ¼F3c;R>t;~xN˛hY  A_P(BSW?(%(duŠcnj\{ c z=Ie^*>?hkEK\@u=r̉s'P  YLr+ulxe ˓ 9@`V?x(m  Ҽ2x z6fϴ#vj&~ⶃGNN]uY8پζv`nrKil<FG׃iOܦt鑲$"viOîHY!`^K0S>iQ|?qY5{NX]٥[U4, Hk2?͎ac sMDv $<|ygs. 9aů~WH(`RDo9R0G/]Dt% _; Lx^J*71e!d2`ViK<~_H=-]SeĤ"7_ }QL[WO^!H"rUàZ X2Ŕh+Ui_t+& N:mC2# pb5h%|IOɬc}hxGv޾w7_so vع-c8r'3z_ѹUs#)r9ZNi1kZAiR 7gwFY8dbXu%K3i~enU*mW %< ?Zوڶ=d95vOؚm[ Y}7Cz2M[-Ϛ&欱|&p^}żfI4VYQAtcޣ?& 8沌AdQb?LS9ees+s2hsZu緅&vnLɶ-AiUOZ8HvL跹Q{-6 K4c )\#CW< #d7ص58 ujҋ"g p6RMϠb~QD9}t<~)9K.ɥotק^|A|#[_M*wJϛW[U;$y2xw]]2[|Rs&-ό'h=99Rlu4:Hj&@W4꤇TJ<;TٯM1T6cZ/wGW0ʲEF꟝u.{O?`WA d$_GDCp@x,m4ix I}hM6 %A@ev,5V f6mBSOoz%k}jǎ[+ /S&or]vW,dkDG&NǏ#O Z8묥gb3-R“ZF# ܬ>bl݆]C-d=2}21Zrhvki6kn׭27vc#%atOHTnn&, Z<6-n9+`.( m1;JPt -rYf63MMǍyǎvm]覧_+&N#}\ߐȗiصQ,N-Hݣc RbqX{'>H;[Gv[f>3CCCtsSWRO༜۷vzJe|.,L_}^$y?ټrٳ{-WzuRR7lLo3{>q|]oV6G; IDAThYo{T(ḻ4P,Pvv#o7cpX9)_(hKe^2dx=Cլ?M9zo-_eb3H@E`'f1D1TYlfi,ܔd_;-Zm'u{藿~MfsY<ɒmnS< o>٘I“/fyOݑG73;cZ&w s[O=[wI(ݗs Z    !6"9dǓqg[)f-ԩS5%=ݓ*Չ$_IJ 9K[1máo~Ey\]U;$e lI@ eeډWlyTywt~1sf6//sJfdP&1ˉK'z   @ I4XR@Y_'3/rfl)df3 ŷ);P׿f{wagcrk/Vgql ̬&R0g&]?Yr_~F/̝o<$|'@z8iZTdwdt?Ȝ˜9`}hx'ǂrmrΖxmg\μ`Rۀ   D@հu?fݶ4@ =crMdVfw /MQrw"sABW@@@Hƺb!erleB&l3A[wD(@@@( RVrd3b\}F@@@@@`jdTf 31<&,+4ڣMKcf:Z WW-2"Ff-k @鿁 @@@@Jkr3#f-`7# :Fc@@@@@ +Җ$㊙j6CtV`@WǠ;aaO79{[ڜ3     PRD3+f3Wbl͢w yz,(l T_?R079M̅=DA@@@ HUlHcn`Vٷ!>/6&Z[gW0 l37{>' sL.3+@_Èt5B2o:p?OQDߣe2vhWDR/ާDQK)UEl56"v渍Y/+<ۍ>#q~nNPړUJ vbQOD+Gx~=Qu(JtZ}XA_   I4bf,x/3]Nrpm1PL:aqA v_HL_m!mHbʞZ*R@@@#`얃3@1]a%IyH$cwC m``dy@@@ HecNU\EA x1,@1HRð1Ftn]wdA6e^T,ҥvɌ;,ݕ9Iӿ})?v|tA@@ttĹh;:f&85=18EQ1*8>2XfI-v@@@\D3%sf}iKeCx(6MDcǣpH9ߋF?bI0G:& Ō//I2-K6zrƠk;vkk;0zͮw7>]Jgvވ`@iHBd2Z''\~F|Pg>p' 9@F@ c; KyjTqVAq'^{ɧnrɑx}=ou*αLK~8L9U==}d  &M2'wSp =I!XQ*MbcbJ9t _K\ksh Ph[A+xyҏ)vrzm6M{)@ED$'92TE~F6O 2NCmgM %4h&]+)>_Uڮɩ oYaI4o4-cUөgpY#13xP4!,Xn("jmRVUqh];#nb &cvV)I,On=>@1 ,Y VHfơ'3[(w>O4Sk6 tq@ +:Xژi,-ҽ97+7Vm H+%,uWf vAZYj_Ƨ4$?6ҊL)#4OI#}B{Jn=>Ĝ1h+\'&gjfzFˣ Ϲ PX2е%JV> bVLCUu*( ~Vc~Cfa 2h!f@6cV.؜2pҟ)5;QKPT}oݳg٧Y3*9F1H+ )ge{f 6Xg[86i2U,X[zG:S^ON|Thn10I~"ԩg G i;Ϛ!'鶤 _~p'h|i׆SːٺJ:E49K/+ .ƚRO3uln=&hLFD@z̭Ӫuğ>drizͧټH6@!.'+GZL84vTp^jIR䞹PbbRS\*jGJC2cZ |< <^L恡 mF˃ PxLacfmoܼҴٶs*CqA_r~www>Lٿ1LKD-MgCndm.=0[.*  0U*Z *M٘?cM͋qeٌ5LWNsHensuLZYeKN'J3Pѭ\B9}4vnRjP0Vkkўu9/ݘW}RB?O*o ږ&My[6BYev6cA>o/-y",ƃQ @4ec6S:ԇƅ#@@I I ~q'f o8[SgYŒ 4% R%+ v ņOsI3 O I8    PİacƖ6BEvĬfHwd~~z ښ&j4+lNyTK7g: @@@X X 5HnݶhrkP0b~˗D,R \L~35@13sFs]wߧ_%eԿRFerʙ7G!:@F6ֈ@뎛uƛ;{¸h%@ q9Lu'zY"g"(f4ߴT .K+2M)DVn    G  7&al4)hZW.L ҒfƎzS@@@@@ [Ia;DY%5tf)`ێA@@@rJ@[돔i+rmo549wFI    C+ ?.    MC l{{ZǶgxcA.ܝ#[ʶ&txhu4rv z"Ȟ={N8A;yH4 @, .6@(3ze_֥Uc h%cO]oh}t0 mRF[e''Yj7g"]Ò]ԚMryѢ<ϼ{A@A@`1qjtt׮]͛$'3f"IhpLٶ%Җ[ZO5˻Nlh:ܤ;yVFfw* C\.baWY8 -8;}4@* @|3Gu.W&H(j(c1ӑ3-&e   *@V^C#@@#P()|rtOǤg {KQxw@@C@13F]7bf{{Vw`;%ԴHw"^t$?1c__&@(?գv(\G[5SɽB}?]c\e`½r20cHO*Q'PPپ8R1;CU2~;c\+"S(ϥz^~%@ w|!Ŝ/WrbN7/vbQOD+4_0}~a:zGա(%YkMM/8@fyf \$~,8gÈ?Y9b:)  ,A(b6ǔrM<T AٷdVX&ST:͘3p̐6ʟk;da)f#E^pѾ3Hn:r,3U=ؘ%`ؘ(" sZ`8Pl״?;n2&i6c34._a_gIrUnL)㛴4muv@:iu/XI~4 bti& Pz_搢igQ;}??̩*+PrY,s{̴ [l  0xT$JH2ZDduIIc獮O~ﻍ/-76 %O@ "Ɛ`csrM&;w>>>Ku@psu>z'rܮUj׸]?*3k'ըZssKǞ) PP.yo5}}j=q1FiNm8T%_ϟ)_ȉOW+3pgbbMuGWjD_wGǾ$>R]gx 6ysK)󭋾kMM6yy]}i&gaplt"pJ@bo3goC:hC :"^2-_^:g`+QLGh kW֮la %F#:zwQU܏]å3+dMӼ?-38;yiʛ?n[s=\SaBإ&*LAlXgwfO{rf&fzl,Ǭybܞm .GT^Q`hy<8o2G9%OPͱ2+c6}[Skh {Wo- !z}nJZ&>p4 IDATHgcnH) P*VY ܿY}\юzv4UGDMĕqV_/w pyx8qUN`E:ỽ[XܗrϜ;Gh_U`h{Twj(#k{n7?Jvg#@`V${eJөٶh=9ŨT,:˜ `tJ"K 6*U˕HiQV^5BgM{8tتq1iv mT^CǸtXyذ_ir>6+WbInmkõ4dx;Q}Qߎ};4ϷM"!T sFD~>\\ķ.$4$@QHPZ9zJ! _#Ek2YOk:$ :EAP3_ lbh#ݜte(o,UQ\6t"[$9Ҩlh}Y4 qsքi-tƒ͝W]VV~(ȇ*nLSo=GjUǙ   Pd W+AdWV+cscOZs( }L2T Gy ,3뺱q~|2 J6:nٙ2Y@@@ _ l)_Ɩ1_{v@HK[laqóax9>~NprP=ӛͣ[GhOCiSA@@ daLFTJaw3ØG;r˺[ܓgP̩" :JicŌ    0 Q5 Bc}^('f70Xjz$-$2g,ZWҼ^6sQ}=HO9=-nEeYtM~|\Ïٮ,=.i2Y(=亠   P 2%pIM̂Xbi5fY,: Sd&g2E0   bv,6MfRz2!p'z'<   O ՋYV.+(h @0)frP|k65th@13--~pwޖLV:# i]Zt @@@fbQL@YYpO$ KH"|^^l T%ٕl "P1o#̟EccuA"ZOG.  0sbb";wՀAゎS""_јDD8.t(a.CQJך˙V|   HDyWF^C4yԷM?InR?Hf)WA@@ s_Bt kI>$ ݠ>o2E; sְqxeED&'x1O^r(" ?;n2$r6Kfڍ þ]>ܞهRc7;mB2@( Zڴ5}j C t5z6' Kh:meɬ5,u|Pd]=D|ݻ"4#@( Y.J`xP{7i>띂派ngTHXQ*MbcbH-6P&5,9 ̤,fmn&gzE I0C14 +YI^Wg)fI4oQzN=Ioɞ6uS:p¡ @rk@ِ쐑PNEQ49z$P6ƴExRAiޟv4XG= dݝ#[z{m>CȓrJmosSF,o C>Oo@%O48>BQM͢eSIYonGu,ArI6cfus{&c/j)v㞛S˥-*4ܡ@XYLӁ$ȃ"&Oߠкt=ݱ~A #"/5t5e vhYbby" 4) wlǻ[8= ̈Ht۴;J@.&P^dNs٬LY479ۜ*~:mrzü'Z|fB% }5JHzP"Or*̬H4ǶDr: d[r)|滽faepmgzo;6L=ތ{J{3g_'k\X$P(Yh'UGag=͉9]Uc )3osز7ROxܤwG>ﭷ\VVVArGEcNٕE՜rr`fA m9ı2+mSPR079$'9~y*JSY~|R1ϕ3he-('}RT_t @Րql dhHt74sOũ vYYA2'P0422 +,;6) yoMu٣4B r [9))ȩY:J/׼I +Ӝ?R`5Lob&tnH`) g,wFO~"^faR'Y],,#oi ;_!cr @@)fFF7DRie^&r^̏Laܘػwߎ;~'wرw^SND\Rgs P`lf%5w`ĝȗdtcېL&̨ɔǤq ~IS84wVO4g#ԂfdN囘1qj46MifjlnQ7@rFp3"nTc Cpq XdyP?CiK&ˑH<mݺu[bΝzZ*fV7f#X4Tj7#[L(UIE92[nMld^&$MQўfxtۀ0~ht6l1onSj_wb sԥGN. pՊ$ar?-9]v`66^)iio&,3?Ѕ.I?SѳC0 фQqp JKf~i@%v~Nh<9 af~˪7~M(հGYҲ nv_Op?9G斡}KO?3,"D $=ߌStm҄/>AAykCeegclr<K2 0 $Lc@N@Z"=Ӄ>wš?}! Aio^@ |e!LI1GyqD˺ǿ?[ P2G>)#Leo1eP@@8˗{ .$Ѭz$@frˍbV) vQ4g}b B<9M VK6j- jhmݖJGZ뎛UA@@ 9shʊ$(9AC67ynkDU3(Jw]pz\%d ZTԵ&Q4q:{Lu$+8z^1fG `0]˜>^7)VBKw4ɵL).mAZ5Hc'@^{ BUUU(/h3sКzxDِqLzV XZn[+j#=a_x&oKG:#XON$SI_@A O}S~{SS_TX9 AT+Cxb%n7ݧZ5%sp@xK9?e3n:ݗ=mKɎ쓅@Nˁ!dX]2xeGmJ&,鱕>ƬTSy ,z7D`x]$vgqrw ۗZ6(ucO'CٰCxeF_3%Ta`ricݺu"_(dn4 zEdFSbp Ö RpSWÆ-ݢa  P+/: ec֝2rgc\.sY2}ҟH{<7ٜCjp6M/WC>d&˶β,BV(yɒ͛ 9vz{}A@Pfsn2h#GY&uYo22 `\=ٶ˞ :)Ehrf2qb΂@0ZY^^Rh3夹|rS?ǙNB?=Ib@@@@@9713:ʴ,]J/+    KJ(ry岱( @@@@f@+#~̳Yx( Ehg" D(4.R@@@ P6dPs\Х""@ryW_~q$ I+KLT&s`hl,XD=FW@@@H@y.+LEr[@` #G}GGv: .XTQ4+A@@ H#LvО\xԯ2 O6gR\_,ʏرO7p^ly˾U84f/ŗ\tuYˮ{w|=ݲdɒ\6e%ͮPypYЄ#x벋H8=BHttl(Yʭ9dm/ZZYk,6EO. BD(8ڹw'NbKA@@Lb0܌c& nyL9}5ljGCW*?9b;1Tz2ls/Y#@J ?9v>FGG~z4Hs^9::ZQxȅ#۶y`<zO?y͌u:Z>7yǎ7oH4lQ{VQI ݪNky-mdMy ̋9 @"~+#4o}uk~0B!7S}_o=vkdlvlOMǎ:)n^I"@@@.sѣGi^x!Hmo!&mInHwԏ9{,S/gHqHT{YN.pBhPϿQ.:to}5sw={^#HfPh#G     %ۘzߟN46<:݃<h3{J$7)z&R.; 9gɵP$ZWg[ ki 1GɮL.XE{^z'f dWYc9J+:u8Λ7 Q6>'wŵ$V   G@`Njwn2T/\4S|Crj:F׌ʝ_thzʥ76hT/}(F:Sk!jTL566>`ǻ^}]{T:AoMDz"Gذ1W^'_ 媺Nh(& =WGy'?/Hu7? yk߉++[q(>ѵ\*f*wEmّf!yoҳ+MvAeN4Tiv8Xǽ\n~ JE5>S5<7ٮVw$k*q dZ/#ُłƼL ࣷ8sxlffG?fQ_lցӕUK+c#:-X< =̠o8ٰvhIMn%RAG}<(Gc6ܒKM3س)yArG@,r)֭[].WUUukð,G]u)fgӅWz~[0>^d+Y9gu9 ϝw^UUM.D(ol|oYZ;^>mؔoIi.lSGVL(N>3+@rCrRI9SccceY:*4? ! kN:\'Iq?,GSj*٢wÆ^alDëۦkgy; P MjRAVg3#cƷocժ:ǎa_r'Yo1-+3ZIZHJܤ؟=evpx,FT))BgL2E 44˰1x-W7{vo?z6?OwxקOkKǵ­o_GlM&kUH}>?LJ*DF;FH>:de 0 ,{A)s/яW >SA`0 ύb`3(g&iIhq0d.݇;qr,(),w(hg,>GM͢?Nc{i P410;&SirƑ:s՝8dI=Z6ښS~$z*2EO#8Yv2"s\KM]H$ (iL!FnhA.9,ȏ{|3h*cb9Y~T1eKЍ$-M̙;w(pzPh(+ռw%g]3gΜ᩟;}۶|A:j$e y@ sƘ6lPzf5-Z,fCzTJ{-9nk u[Lv֥#@ 7J^1'C,ŲhKV4_mEd`{eݙd7+pQVFeeo|G6cG7R[&htЏS MӢOM6ME2`\k?fhhnVL-`r`ȯ=h&`. 3MLFg@C.b b99Fc'G'ItpdYg-<ԻEnQg̘X*^7ФS̏+5\9̜ȸKtR&Sb# MxGzdb1r=jyuۓI7I[:٥ׂ#  < x85 R6i>N2VF'}#GG-3z\uY}ds,n~`3m>X>궛leJ@0Gk2>M&Lі<,Q6#(|*hS2y]%oo~\r2fhLwnZ_S#sZr@@@s_#p(3ŅSxl*̻(y.Gdl9^YgnLBš3ԦQb"GHk_."B7t S̋NUPlQ(ۘ.~O՚wGWK3`6/s ̼^`1L\II 7yǎ7oL4s,hQVgkMoh٘92;)SU]qߩҬLe)se9w7O;N&^~Ȝơ!|QZ(^w=鳓 `K l'&sH keG(W(ks nB|'Ia̶U@ȍb&,555~? q5w` k.(#tQ"I)Z1vPtJ @e2,S  h_AKd͙Ų^4p`Z_^424@șb&d/Z49tttSWH @pQu!6#ע< lUZIY t.s,IK޲_YAd`QHLpIaW~O<_+ߞ@%$XQ2FWƗuwlqݹQ uI}}~CR6gV u+w<[1  owXP.SYr/M,3W˙L\7DṬ[nu\UUUql֓j%gFA`$‚oj6:t{c,_67c+ GLIҴҴLcF4JYd. ~%șbN.;M~ 5hN4Gmdo#NȜ2r{yG)5ŰV)3)zVC'Y(@@@@\[[t:'<$'YSAMw'R3,mAF1S0fP$[(朡DA    EI(/+:    3P9C@@@@sQ^Vt @@@@ gs%]1DŽ6DI4;@CU2~;c\+"S(ϥz^IK   )rI,jZy:Z'!9ׯf.,b] Ss )yC vbQOD+Gx~=Qu(JtZ}9oz,1رcJ7i//|[W2ㆮ@jZ!#bu< ^%;:\zSEJPG|sgC~O?Yp@b,8z(- /6/œmM:ӑ $}#?'!D&SԾ#& @@@+\z~vWVVf%|~>~(]9j>u0]d^rhJqGHMS3ZcyIs9c.Q   3B gZxE@+Ƕ?@+_x6Hnh= CZAtuG4wh`=9|ȲjbX 7t%/T&l&4ɪHgn]wdn!ٔ1tiݨ;,ݕ9Iӿ})?v|3@W&rEE!oAҼAM h鹜Xv sIJ^.ֻNnAǷJzv3mRƽF3J@zad2eM+K>{`(g,)wЌ@l   A yttt֭.*KzoobE Iց4%i3b1-dڤh^Є22'"xlllbccʺ"l`$j   0 rƦ(u.ӑ4H{pxd}Jp߆noVPS+u65-am,\OT1!3H;k G'N: RZs` A"Qؘ'C   Ph+(#GY&{2[*1^ℂ'<زK3WSfgZ 6r3󯶶tԒLq(͔Cs8sBL)OHLL.VSS,&cܤz\g}G?~身^ Fba$.~4[?u?qo·'VML,'.=jM^J&e7jȯhN].!y9ə@9 z,y&L^Msi=HNv')S>G+gd@M4]m tu )UAA ȍb`gYVKX`+4ui XDDñhHyarS'EǗ{8B`,B1dVv0/M1uuvDTI4oóe!vҢ6F$s]M0@7]-,OBzB Hr(ql3]nղ-@u{}c88|hЁgpn?xeee.Xy?\^z\_{O<&o `N٭4y :cƃZӥ9&şl*Xf0=l|8{rUX9N5t hϐ鳑]op`nrƑ ]HN4zo~\6*}gW"sF%ZDm>k|xd|?hGFj";YpH%KF1X2_"{ztqv~4_r%-l+.= q*qlpR 2'ϟz_Mq5*tƁ2t(=1 jX.^95l ok?oW┶Q>1vgIj?}nHw\n)ewq:dY#;ߨu@itxԥ fw;z [&j! #TA<>{ snOKKf5b%~mйKI $@>(Ŝm1`(K3UB"JHB;r͐˔L7ߞ`qLDbrh?O_P(D:*<3y3seWWڔ,gs]ZH c4-pYF?H6Wvm])njҲdTv.5H=h}]`VY#0=]%5@>I]3B6n&+%@@0| NLش".ݖ=K/ˁ.$|'0"Yy LFbLbEx:@rcNܥ,/:Bgܲ|ʟ|㣧N y_vZv`xP=|M?!r~Y07y@ܦadvT>ұ NF9a&!`D4J6eLLɥHO4 iN6y Pcjj~MEgm4~[=z.=!@1O N*dEdiV]ّkq\yh}2Z/J"g%y:?yWu<"oOLɸlk ͦLn=>-C3{TV:ix ɜ]t9Vvzea?'*zF;;W 9<$<+^%3H٫R]AYl1ɾM],֨$E@ݮ!Z.OeT9)!Gtn?^Q)OP"!4tJUTx)~,VXy^j@]UK*i &8wU=E}?/=]8 \勯2)wŗv~5Ѩ㺶azEǏFC<;(&!\<"(ȑxj֫R5TP ãVňxQMjIT<@[ۿDP%7;;{fw8o޼3oゥZyOb{~imkGU7rTuWEyy+?|wޢɿ'IG``ꨑ $$@q _ [ZZdL1"`D -5bǏV_ű$FqM7x#Zm+/6,ylb0 {ݰ4Cc[GX-,N8|>."W}\_},էop47   @Ŝ9W{u`A G_[nm*KA-VZ-vf8[6meC&#   e좟&W8Ĵ,xi6^:z柚#5ϔ{  \-(-x6JK1L@/WHHH TP ]7'&4+ +tnslr\RkeȨWK2AZc\p"JZn<'  qs kId9fa.veb10#(X`Ifwq!謖Őh)Aؔs9IHH Tp̮$I`붭}!+Ca(Ӱzq>2{Ŏ,X8YeQgcn|:"Y3HHK bSsozlE9 ^Śnjò?eQ,JX0ܼ[s J$@$@$092,s#hVEy_y-_vט8$   v1,orф:QN8caUZk[ kEb\ZWHHHH T̝4~!Gݸ[5ケa#`E>|#ǯfJpga:/wJ6g=X nbo[U}C >7u)=0<[t 2w}g QrLJjn?yChK F3/zRlR3񌄏~Փ i"[?nO~ˬ1@$@$@$@$0J18\.{:q<{pҖrݧ( Q_.||^^axV2Z.bd^{9kvVQfZ##ӫofYuohI G<dk޸s*q.ս峩?z=n$@$@$@$@M n~;x@‘~wЖGMcm'^n&?"l*ِaB͵q}ĉ7x㝏WK+/0s2欤f]Fq~yrn/U.aDS18tQƲT   #[1'塑q ʙ6N^rÈ^kx {p#G>eG; 9C$@$@9D d81s4 {$O |B0+-IHHM b =;&q*hq²'A_vn$@$@$@N'RbwH)>rF?\"Ǿ @/bQ6 ~e/=`a0܃>O4&#  p3pwم0Æ ڙ #Feʘ#}f,B){QO @n_[xsn`/ob[!gμO>A9aZ1j]Rn11?,HHH -tX΅>jZ.#Mˏ=XyyLBVrwtxt38ch?OY}&.r6*+ò>9e?ڱXFmckw@(1mJ}{YNd)GF*fQǼEzc,K3&W S.']xvs='1S7) |jj+c eVlW<ڎ fR.rŝ|)6X] ^YMJ"B&QN߇啕˫OiKK'ۦ6˘`LFA+Vj_TW9莁QuC$@A1 $pu} i>q~2d瓰˗>H`ZC,^c[kk{kK˅e4 VHeUKsPuqmTl2ʃj2rF6-oL7ݘ|m٨GZų?姏ʔ6ڷL*Ny9˿I1CZ6q* e&؍qʱK+sl{3EhkfDr5'L2/TIҨVI5s⬢h*Ѯ Qzu",3Up`8t G#繖%ⷦxѪ` @ DQth2U):w?ގs*=ㆿ͸g x<઺_-qKe %ez ;ɯawcnl[!ɣӴraO,,>W栠6bfTuUeVQV%dւ\e+\NZ%R%6eib`ZEDc+$@ Yķհ)j~D&2? .'H*tPdJVaue ^tШ!{CKzÿ}Ȳⱥ%3ny/ͼUcs[[ǟ['߽ ND0&co ,6&bJ] U'0prӷTj˵yCͺjڅn#۵U/vW^rK].@: *: tG^Ѻͽcm+{ixwk7v<'nJs ,N{p˯{L]a{㩻i@rc@fX~SO=u l.)lzGX՗_"[A}ĉ7t]*+*\SgʜO@LjY gR ,E4/1rY>߶5FFfsQym&.Ё||2$@$@$OD+ʈ:fZcG6OV얍Q%իa݌ֶ nF{AfF[K[[[QQQv #  H#*4dQGVOqz[Gl?1-#d $W)7 y {oSik뺺Wt8jpu5SYQ#3l tJSDLKL˲l~G9j+O3#wmiI$@$@$TTN^_tU>)W2Zzm~9.%#+ƍqb!b< 8o.flݶv>CW놋]2Ay ʐXw9A"1bb4 8.6 -~jΟD^\O% /3̿X`Z0HHOpπŧ!2;-jyf @*$p"g]dǍE3n7Vӛ xZ3b2> tsW 2V3l$ @F˨ְ1$@$@$@$@$i3펰=$@$@$@$@E9[C$@$@$@$i3펰=$@$@$@$@E9[C$@$@$@$i3펰=$@$@$@$@E9[C$@$@$@$i3펰=$@$@$@$@E9[C$@$@$@$i3펰=$@$@$@$@E@+ff5!    !`ژj˘V!$@$@$@$@$) hv\4DUvcϓ/Ov+O}vw #RѧZpgZbHHH2@bƲ}$*?ëvz WrTa.yGuU_!߲T|$@$@$@G |͠{FH8!zh(A.) D$@$@$@$IvB_!wiUX6. @WF럯я9'$@$@$sNolo=_ؔ0plK3>CY+K _,>̈kr{J$@$@$@ #0c2YԲn;xK7w=,ZIJʲn'^F$@$@$3sV)awǜi[F43S4V{1^!SJv.[c0e\?01E3ފB~{K>ᔡ~d4(فE \mx>CuKC$NJ!ؘCY7&M@^'>eW((f>ۭpi>}36PS`Nƌ!;rnl`1[ne5/Q:ģ#@V2UHiJEk WS0:'jiZ# }_Q'+[Z M ^&]Bw$U+>_442㇝[s)IMvIU fc.WH",i[W79 d9bҬ_M3YE7]2ꅧ}ѼC/όVFn$ͫY$`)aDFlUE"/)# Q bbDx5 t+-7"IZ6%Pz %8򲊉A2ϑ ŊQ*$@i 01u3s'%¨f(L1t+/gXKg|yc{{2X'Q<})@p7`?X~ɑVB`.qV*Y5KS]y]]i sNrYS bIi FUڒX=`< :Ew7#0zxL+"RTLL4YXp OMhb:RD@A`NB1 ,#ܼ;_qW(,t%SX]N5L~KD4'$x?J#~z\ƘKê,(Z!Dtjx础xF@0<xX[6mGWme {Sw6e ج#B`a$@$@$4S+lIKe`&&i ӨJ2+f(%ѣ{=rǦ '`jec ;MveYC :("%V\s=%-˦b 7U !`Y|?6f}^ΰn&u}^qYVoOO"Ů<.fVtY< ddmM(f$z@~s埔&Ad,VW_P1*B.b-3mӑ d8ؗ}{e8F"sO>7$@$@$@E D+imu9rIHHH2啁VZ9LsF@6HHHH ( ]ޙ O$@$@$@$@JcEʠ9CoE$@$@$@$¼2cBnl    88?3A$@$@$@$@;cّT8V97 d2̬}`HHHHHb?s ژ;%   "1m̺Yt/T    n(jy9K/dF$@$@$@$)Yz咣Cn @ D} Es    &WY{eQl< B@^`TsU \˩<$\ezd˓ S_ݫ.]ˆԧ*/bp颖5ܙ=fHH\l IDATHF E:mu W>\ѣꪾC$re)HHH ĎZ(v,0 ٭a\T=k“5^򠤯tDH~ c`3nۛ)mm{bZ4b{<{& $DGuw ryС׆I\&"W){FB 茡1جzރ6nh ry^3zg(i#6f( %\\\vf(|emGpHku9S9hY d5g⻬ډ{F#?rozM7+6ff\Rk mS %(A*ѥG\J#$|J|R^jȿh.X7 VTT H  s;*I:#@!^w Sj]dէ=z1~@vY:_ẹ3˛[;I17N*]SYI`N+lL|G9Z|gQZmb;M>4TUPDcQ5YNF1R+bեKgVZ5 3(tsWcF sbOe,Pg"20H`gbY.!ouKݝԟo;|RoOy-W!{>3ڰtFkg cCFE`Z*U9"h+;ZBȲyJOt,4!*WiJEk5GQ$MF62S&ӄ]RPW~ )">TF sa %pC6kG Ws+8޳nyTc~u7}6ؘ]yWT_/޽0q|@} #/9lm7*$|4VʤXSR"l~LF-$^$>#.GV|zrj%vD! gВ~|#1H)Sb}P嫿 &s"Dxgv5*]}X7xwZS[n^ѷuر-^;Z֏SN|sXxKgaW)Ch 3Q־VFӊm`dħQa T 1lQ%cTjQB53 8<UUYTÇC_)S: d7$[)~vld{/]a_zΠ?XO6nqqV\~6 {~= _1dN~u9836[r4.WQVYm%tЀyXOCP%9eRٯZ48J w4X9^w|\<%gpTT⋱%ZRC)3M>'X2HL62X)=}eGU}ouG+m ,FC;^LW (Ŭd [OT{j^ $#n[jUSﴎVI=S3r2jD#* 'طNHӓ@PQC~G l{CAD&:Pl0 8NFXohcve'bhk|q||~uoxoǻ#1z>sY/a,oVK)BR2b/ sͼB=Ͷ @ Џ9DY^hmuA^jxZfDzominOjf~(id, :;xSKOKm8 $@6gg0Sƌ`F\):ngaxבtZ~ߡu{:́hh^Y!v~ $G 0bL$3'%WS@hmx=vvtx v#=E@cz`ureqӲZxN)iY*ي9n$[D$@$@;@taL`:v!6^eG/6vtx|skkKK[s˶m-ü4|`~w ņSb( &n̹Ǽ o&  ]C y4!9#o~{M[w{n{Q.׫cK_~`EPY6u@Ƴ   L 22. H˽ړmo>;ܭ;ھ-l3s7ؘM$@$@$x|#GvZ0jL<=g(zz}{gn5HHH 'P1mN­q֯_7_/\~qu)뽾u>h^~?A$@$@$@h&Hqna>Mp\!   A hch    *|_V.6HHHH`bY! @VbΪƒ tT;9+$   *'3\/!l?ͪ$@$@$@$@$"-#a epٌ93 @Іa,)3<{ڎ$@$@$@$@$ %! |Qbc-gSJ0S1ByHHHH)د(f0煼1UHHHHR Tq^~>lh|b`    ^ڢ*EEYtAP14ĭ9{;͖ @Ĕ*qYjZ"镑0Y&a$  % z- ̸9mjfn$@A]<8HHHN\*#Y⫝̸?fy{ DrpA[s2˓ S_ݫ.]ˆԧfd yꢖ5ܙ[[  bH"r]KL}9D"#"Ǻ~gx^JX*%=F6 y?k~G۾ @P' v4 )0%r pcz̼xcř"pw=+HHHrsngN%~W<珿rsv;yÊ\V*ߞbF%  bD`OLc@cw̟JOD{{+/Pp#  p("԰ec_HP V9T{g$\*F>>xs>Q'O7sqGAn @NGIXsQ}$?6H땆민 ?ք߹Jzc?tv/\2|큲^/ r#  pDX=SkgXsmCpe8 P0nt3F>$O;ͷAC.o,\FJH{<̩)ڱjlckvRoՊ3[#5i`[ZN#+$4yLK 4x}H#7EYN@s,F鐩Tgy?|F@Z<;2D+e嘁twʸ(bʶ5{>rUVR1˧aɊgp8(^585~(W'V- ڴr0qV6(ԿtZq"$GaEmʉ!o LO !8CҊqV]Wb Ur$nw19i(W˵5b1<4Lm/Ǯ ,Fƚ+cJ~Z2G{JyTyvb}0CWu2'BĊ~ dJel" ĺܣ`@>ޯ_`τF $6U2X%;)Z"Ft 3ʹYD='{0#6osk bVWވM00.k->9n"WlV㿪0}DP`]Ul/)ľlYj,!fg&JQ8vL.>d36D0dp~E-gOmOKʞYS6r,,eʌsyEjJIcr'.2LD!x,W Y*0|UHI79j, a9zX `Y|z!MpM^Q\>GOuc2rgd{f T=Ν<;¢}Wɣ>ⳗ4[NA v ]~Gw>]XVUyONbOHHHx,{^@ٴ1 WX eMt$W>\ѣꪾC$re!Î h0# ɈQN.WX qٕTGN#rr~1 Ò=Ә?$@$@$@@>sѣG D"PAeM~$D6,)~wUc8Va} 1OxBs#  p(yFaa{Pň, dbF#kicvvHHHD{aCC"q0ʆp0&:p/sOwF 5c 86åA|c:+weRaݞŇ1rZ}sCа$@$@$@{ٖW1b5 A3G (/ =2Vf k,Jg"%n'^F$@$@$,{:U,dmc+fP1;7!L 5,~,2XIg-2-[&gxx 9HHHi„1_*N"tP3RbEFeL*t̀Wx!ic"  X+[=1j_Q gvYVa!bb6}_Y9`,ow@0{ɔHHHa=1  IDAT)mr@1\ n.wgg_zӎ;|՚L{|>8JLXiJViCf咼D\ʾ # h} 󱵅;t=8r1QC*4ecKKl b=eCCY.edzI))xԇmrm Yb]WKB)KO$&Yc7 U*".1H Y9>ȩI>N>@Fw-#F@:tjӮb8>~D=O,U\ENÄ?ʖWU ]b%~iӖ?WV((k1D{XaUK$B$]L|beÊ7Euˍĺ jdL k\aUӺ>w{~Ï~h!lǢMfs>1J0'ecn[YU ecPQ*+6!]Q1r@񘲺Ej n T;tNyiӬp7"I:%)Vr6hH& &v{:ʉg cr+C;4.β\ҊyUMkO$7爯3J7F4nHN0e ~V~"VEQEt& L!PG ~b}R2r/1kT\#,}twi(2% S!dkY^QY2i5m6Y"d^R(fUIaE4$@2.Q(f]ҜjGHedx3>5y'hVYۘspPBo˧hgfulZ`6n' 5mZ\YeWFoI'͢Dw@;KހKm؜9a~h2u(zKYEYySaGZ6sdQgӄ]RPW{+>P N EQ̴1932DIg\~vfet%S1WadY1/,T[18͙|#I  lBIzZ6tvU`>nC+>vƐ $O L+To/9H C ' IgJj s9Ќ`e:miUEUG+KVe-]bXţKN*N68ל$~N%@:i/@v 4Vyn  sf䠷rSm-ȎV:@nss>;`bBptP^G/8'S*j* ⹌`u9ɐόDbҠY*(8i܇mF$^] 9RD ٰt0DDռDF@Ag`sڤ\L+"\'K8;[O0&X!pUNzwtzu 򮭮G!^|sՓ: ^pw]yw@~ظx?Ǝm[m[}m_;PfÓ[\p9ʃY(7^ wO] ) M7)e?H֯__PPc L^% 'ǫk`E l_h滜M{/K[=_EffS'D>$$Wp ,gaWs'~h.3= Kr9]u:8eXg@j q̴Ǝm֭-J3^!/\@ %,k,8kKqhcHH@T;(fkTw= 0͍tVg@r먀߅20pNZHNm`Ɯs6?-6 @Z9\Kֳ`d!K`붭s/bN;D3,OD%j$@$@w[[[j|Ǐ1dH 1AlʠbN )Se+=4q_m*j͈"=H!лw|!RRR)iI hlژ~] `gt f% u?_ZZg;c $O R1 7   $Kرcs5 OZC/ƬErՙHHHHHBP1s@ @<tWGHHHHr?t65 @%t$@$@$@$@'Ӳ=bv}gIHHH 19oJ`&%Ksfm$@Nus}|ic!@$@$@$@$@3bژͤG$@$@$@$@I1vM:5 X@$@$@$@$@&ȅ2p!2mVϛ aHH+/= Ȯf$ hW 2.)0t>GDF$@$@ttWٶhG$ 22:k/+*\޵ @'HQQm?[N@ke& 4HHH uIsae18"HHHHH@G     GT)O׀ ƫ')IqرHzZ+!`]1dT4$@$@K HI6fK'%|WSaZRR؈O&VNBw+**ϟof/Ydҥ%8RdC$@$?GF@!`HWyS.;vnL<US4vΜ9ilruuyUUUY[Ư1d U   ]@OoF?>^[v a֑ [yΡcpDiH_9vAKBM00744Gdʔ)*N- `- ,ݻY" -++ɐm OG{#  n'@s#f9A W=Imv2"_xc%g?n]517}UEBWWwOOH TVwRځfQWWc 6cDl g e6;@Kap;=ƴi KY~D$@$@$@K ^o>t9y~cOZUC4 =Hv}g,0nY >V&=a+ U5D- AOXW텤e@U D~ @ l[؏)PMIyV,)ęYBa*1PZ@'z]s lPޖNM1V3{E$@L meH s ƌ.~}-^Fҹ0daHfwƠs$!mCָ"cK9sQ̛HL4$@$@$@$iҩ!y/t UZ:'s81çYO [9칐p;sp6Vab%Q/>ͺ(=_ G8v@XsQcdQH   pSyakƝ~n7=w{\)H$@$ojǛdI$͚5˾ \L/tژ "   qT9>}    NP1whW_$]}X? d7~dc3s܈^/5ƒ @\ *n$@]$fJ`˶fW[H  "K۾iɩ.$M lz) D^)ac&    !@Ŝ3%   H2RL$@$@$D[6qb_P4`#6rL5sFw[s~7[Ƒ d$W^^a{` ?_w~#19r˖--Z=rti, P1gM:hQGZX#[Ƒ d$mkOu._ 49,Hֿ:OP1;nv_mJWTD,Hr@EE}31`])q>`֖OCW;MUݛw5u/`N$@'|G3aH y\+#yfA$@$@%r97{!]ݢȲ\  Fx&UavGmN*-Sرc6-:I'L^[Zx<$@K=:ƞa $@$@b|' C.n۞{ مba< h]Uih! {ፕ8-*O3gV͛i~x/))illKKӹtꪨ ?%dɒKF/..Fcpĥ8"32HH y#lEuVDj\2a ̛ɓ'CНV1ӧOǢrtz-O?gΜDjI0Muu5c^UUe㗖`* @ZYQ;|pW^rQ$cZHb>0cW-vȚ֧ 8SS4$~|:;ȈPSiㆆD]W?@}._rL)Ѕr@b2kDQ{YYNm4wGihOV&D$@&?rĄTM|9#F^~8"f4%)@'C<'|=={W$<+fj[몪=q|"UW^OY8 HdAQKCFTtmu$z8l,^Jc06/uuu†0Y%e6;@KᨍAiȈ֘6mZֆ%,?N^^" 8uT ˆ ۚ҆Jne yݺu8չs"k!͊+ƏO>V=Ч~a1GFblsΎ8E!v[Jm 4iVZkM G&~'l3&]` 6ǡ4s/D@WdqqK.#8sd_`u<?Jdچ=a+ U5D-lKQE#{  ;L9c y 7 ƞ s$>@hǶ69x ʕ+Q ";8pG>sgZj|b/'xa};CEg?QyƘ ^4+Bm%`\L*CܾH,ާhŨ=bz98LudcP,4tj9Xm`< @QQc=v 'F' <| 6O*JqPtGcHϔW^yEgA*6]NrHb \hebx\Hbp𬅲6?Ǻ QKر~Į%!Rf_f>ÊA.-ƍ$Ja~ɺ1VjTdN *j c  cРA/Qԗ҆u^(С(Ɗ)h$"d񉆟@q{Gu`N'G}Í4|(D kEuz,k@_:Eb֗2 s csnG tec 2hweZG]a["aVgO=%tz E$6,#1z[3U}X Fb97G) &  H/mMSN1> eU "O=T]2qfϞ}뭷T%,_tE:1,и#1"\z $ݘ0qpawkf w X4BHH ժ7'؋unذ!I6dt.vLؑ CfͲ(_.4ؘSn3vX% 8eu^68pxIbH   0 h\Á^Zd P1'Kl'OrNn# tI|hh4`3}f^D1 Xɼ[#-.ϗ%M2l @z o+ sڵ رcGYw_~ea^ }LL}S(y˶fW|I!/ 8|o%qK/viX.\ٞr۶mБc#lWFj_}݂0? $@`x>h2͑bNs  ]݁cHk3ƓIHHHFSʜvG    bN/OF$@$@$@$4^V~*SػkշێotɁccccccccc`;ܒ]yy}q{vtM: 1cƂg+/J~4 ǀƀߟ__p)Κ5>B/?#N?0/]X 8/=7 ǀ@=}^˕?f^'xbJO?tLWs^'ϕ4^?0PǀĆ lٲeѢEO=ǟm[ m=zrAgӡ'zwt:'XӏYX۷tGɄcccccc GAEgu֠A;eC_~ ۻ(>º|OD77}3v]׀$i:ƼF F(B1111Sc}\[pگ_iӦ=0s!} B~~[ 1G~u3888888? g y6G]vhRx"6LmӘ6f1w-F#r S3QSVG\UU6y?rH#{1O1w& 5WJ\&J[9ξ,Ҫ1sz IDATz~*nߧNz]w]1c1y~aؐA11111#[ _YR}5R{hl'_6˕p{[1۴xo]겴yUuW#/,Tɔ<+~[:r?G?fE6уȁcccc ~w٘\~ҭj[:'}KT>w'.ד=#Ƕ+]^j-[~v Nx1mOcUU"=bȁ8888rd [nOq'-99Pj0\ >"0+?PoؘoTmk`]nֿ nysIJkؘ1w&ǬLD3O111111{g-G:*y#M|;(YUVbeS 9pO_*;LG|mhn3:!H{^B͊-Va9M^?źc6_ ӷ5%r 9o/k~|oo-pxDX_b5"ܕ:ַ?ṷ?C"}gt/%Sm K #G~S+g< }?b7տz%jD5p|>?Wz@&Fr [BJF!#k{yw쎺L˒aVUחb߻6FoPdihI{IgZֶ'=s rƻG}7_]BjE_Ϩ;hc.C}MT3 c?L >? FzU_G=肵W\hkK6 <ꫯV~!10kֆ>貦`t?'g 4vrUm"6d+dLn2xU3fƬѷcO9h ȁ8888*_lCϻ.eM)ǩSVC/Xq74­w:M:V|݇~#̏_|}MT/ 8:#4gϘd+91oʦ?1mj=f1111111c~]w݆ a) ]}E u9?A>&dYE 2k|k7lY}?=u?Ìyʟu?1V:G>҅M"?{,W\o2&GcȐT_?氚~@kP@I1L~u뎵"v3O%I,&T} #2n.b+T?ນ vt 2l杩K&x{$jbژDžw!9ǀ#UHؘgΜՏ;Ȋ( HpVɄ 6$ф фI`/g{c4B;anA(:sJn_ ]S_r1ǟ|qT<8`4 @5:<|'̞lk=];Ϙ9gcD\h u B86cE3fz OǬmޚ}hGg̟}7N}5oCvhh4pqVnRottď./$rI!Ժ1Lt}LhH\_k yl6wwwzP?x_uW.M,͇;zP;>O;K5ph@?V?Ro~=p~v򬜖Wpvo[>"fg1:@@@@#:cv6[ Q8@4 @4wP    I|p4 @4 @~gI !(21ڝeM8@4 @ k˶1SjjBH~}teel RT* vኟ!xZGԀd @ǵ/--mnnHdfcg-0՝x1jut/rQkH  Z eŇ󧵗e'\E`{iyՇ"gJ-TNB7cH+' >1g"5w-L<W9jiT վjDL^_B6]O,|H~g}HxxYlO%bV^椫>A2FMsB䃬ӬZJJp[KjGX)U [kH\J~Tۛ)5%DBRE]bp]^21kU@BJ癮 hq<ٛ9Ӭ .nIRTyynnjbooo_[[[XX(?8=o!6|r6Z@!@7ȎgF.FGݣI{Įw-}9gҗަbU{ߟ~/2c|䫤nu5ZLayA "%}ĕGjj%LKKi̇KRvyLo]KK>Lwϻܗ7 {jJ6gEvǣdN̢lA+վm8s;_tJ;yӐa,µlWmZN3Wi~3d%VSm?wLwwMo3~yi~`t|~ކYБë\(x˻[3o-ٽp%ݲzJuM--N5fa!urZH'#F ҟf( 9¨mr2[BHraJꬻJx^_^>6cҴN9]=(}fkNףRɬ&HRײY1I2TJs|;WΘAEg((7hTfP d_4tL7ku=_vR2퉇"=<{8okQ+p*ؒa+CvM7]O*ᛂl>6W#(K((vW${39~3}uݿ\de{˪ӣ*V5Af%DzY=ܫI[:u>GH`eŋ4nû mؘ Τn[8vT:>7@&](L|'%F\'9,2  r,X)ʳ>w-`_ձ@ x*FVJKLtWbW򫴶*cuvɉΓN"MZ༿3rL65u_(!≀FvID] -t &bq$mJ.(D~zn%WA ,/V~M{H:w_S)Vb4HGZZt+ x ϺFrIU˖[cW&tFX4F{X)\w?96"9CrV4JmH)N͑"]֩s6mCҟkǍe˖Z%=ڦf\ܢcԌ-] 7' @Sڦ9~puGtH1gŰּ-߻'z 5^ T6WYYyQu֖/ݬ(nA@;Yw8]n/s"VlNCEѧ%0H- GuUFu%f p8`8-U_{;}JY[S,6X VG]]mZ(qB@l*V37ѥ}NkSU6WKVav:Vv=_4?w%xjȹ}+,,r۞~tiC@-v5ش O/#W7_xW:DUmvNjV\3y>>w IgǞ4ؓ\?בPbՒdZ_}Cq$]7h*?* ɨ!NJ \@jwZxZwmWV|hϯi#sG£lrI=b45/cw͆ņ:d(ckfUM{Į׭hn[?;pf12KNf*hemZ:d_jq:ņk7N\tZӤ*J拯=( 1% ?}?gl3U'_JUV@hg}sE1i:-6NA) \wmJ9UuWЉ+/)xrbk{kdJJ>>ݺ]wF^+ /ZwWFZޕVf]~^=A[O.m;*k];|O;[g^tsoے!MN7VjjGՅVhu"jsU2QTn-jRڗN{?O%)2j-·fK~yW_꥽]kgNCrخһVVZhWGW![5IG?ٞճu+6Bcf,|z6{Lj5Yz&v!CV,Iۧ>}YmOg˯o~~k4 7Uk"P):߀夐M[CilYJ9Ѻfc߼r%@0C75ˠUS\ػ}ZF3dGFvIjkx_߿x׊Xb/ČyUijb @8ȯՌZpD@thxptC*D:nu% a ڵĮ }5ueu3$( Qz,|FL@kLf&]̓r *ϧ3 ?tbN kIseeA\(QA2kU}94qMkȴ.OX<-c鴌3=߅>wyfZZsO5 o3wYThs>wv>70Ȓ:v6D)[p굻"5em\żpY'\^r< D`5==--M=Q//5}(uD)Iʠ vT(^}ڷzWhsC{ lR,s!}N 3;B^2~sb=f8p5tu*}n*fm&.EЀFjZԠ~u{]w<'3EnϹsGzo~OhF]9J[L6 9҃(T*],`4~TOٖs-{\l=.w((*kI&M?l9zF񃞿YX;i^4ɞ9y5#V3F(wsi3R[xQ;]ꈗbgb%PsLl>,GACȵN6$p &y6> -Yq,ǡC gH/BP}W7n gX?XzUF8L %k,>Q\XQѣ|O/%_c) h[bH٫S[틀m5*P2&Ҿo(>{xi.Ψ1[zx6.w<}7ɱKەf~MvmWy`SNp(K铎Zҕ|]J_+ ք#;`<BL5S'Ƙ%({ywy3eSX{] |I5r .JB ]a}L 2} %|,:|ΑHE$9-0ωLO6'#ք(QG s]w5dxGJ*{2mdǔ~cIy[|mFV4 \M0g-.lu vO;t47*N$_Eg(>,W݌tҭW.qaYMuA=sM'++o~k]9;Ug!iY]$0ݔSfYכBݛ!nYW(Iʱ+ m\+l%)+=-]0)kŷ쒗v@5,]5}dc4%a[>I MUa>L]nݦ}CW|?dXhYb4@J?VQ-;y\EYi{gJ"DU&][(B5RjA72WicWůj5S]]]UUeҿ:о}v ﰁ@L*lWHʹpB}}}ǎ[l5ioH&Gu=r!58ZvH:qQ$-3uQݡCh@@ka]cަ_^* +zXzͤt;^|ު8L6*1b1"DUfjjw UI"Sk6%EKa" 6ݘb;\:Cԙ*[CHUvށcg))Fo40Bffٞ^-p,}zaPa7?;/y?Vwy?dWߥ+j%>+Kt5*^Yp:J6-'dpW1Q80A@\dTmDu>L׻{ CqENt+o8_V̌/ژESREMݺ#ܻ[W}W*e5({oǬ}LKnoX%ov 3uֳшbITRfRZ\\ܷo6mٞ\+ZmVD7S -&/E vMwrf{WLo5˫wOI8s!܇of\6~~4.11g~ME@kFt@۝;w,-@]dN;لiw8]Zb5;,(=)&f6p%:-Ϝm3g(Run&FpFJSMt|ZJvrbgc4m9{(kH ':t۶m{x&ds3w@i޿mK5?ZvT.UDd{u#u5mؕxOzdcnP-cnK Wسye]观4qkk_\S EvK&a„ 6mro4ejw̸lZ}ݕo?ul[{fwz[o=tT<~-Hrk,S8Ln:nJ8giv+h/oˆv ǮKT}\Ih!; CYM6+]@睪[M'N "XڮFcљ]\_S2u[dtgb]Cg-Α="W.RCwL$iȡJQh㇤Ui."{uw9$qƶK)LEV[&bԍz `hm3ƍ̔auyːvsCO_f֒ߕ8+3ڱG(zzi;E8mwngvh:]4eҡxf(|ߢO f$ZrY%ڻ_-Z*w1L4]8PB! bTvS[`ݻbWSXCfYYW~/Y.>yR#TԖ*v|vmӳ 6ݷ49}={X-nx֐%?-q62.ڕu2[uv~J.)A.H5yUԮp0[׮]Ywef8~ĠA? Œ5_l_ЮSfOT>>JVX73,#]eۤk]+0 GRSSɜRSSh磏>)5V!RͦL+zȝzGz#T`HJR!g,vڴ=` tuukG܋Hsڴ9q5. Ճ 3v ؽP^oUIMIi[ Ay_?`a/xƮtpr qXwN zͰz].GN(__{yjL-Ҿ!@ m3kc4&ĮW^ ??@⇀6ϸ@!jch"b+lSĮv̯m"h#fFS} YXE:<  ZD  #㈵A &bݵ8!O@]wE}h%5\r1'ҩbz/}c'ÁA'Dv@cW򫤓tM@uW bWt\@ h翈]l$51 Z'ĮI6n"@ȣݓb$pt7 vM1Db$dt] Zz c\5\hlʏts$͂m W%EYfB@kf *\ Ǯ*츹vD$DAtuWĮI7p"@HT}IDAT]b$?D"5F @b$bW 0&PAQX\3b׸(Z]q<@@0CEA@+H]`"hH uYM< L qC6qk܌ PGjo]{@bJ6񬦘Gc *uW_e< @ ~hmk 4\+X5@ ig5S][͗ZLo3H4]mop]k̯ҳx@&?M@'MUa>k`@ 9MĮ1ǏA ]C Ф6)~4@:3@sh%5\r1'5 4,&J-ҍ #aXwYhp]M:a-h2A#M\3CpŮԬT 4 6E 6}bנQ 5v5KϏ 6 KLJz@&bW k`@ 9M#;d4|8 &nFS]&IVKaC_ ] R>e80"u^8Qe2"˜.`xd!g, "~" hRȥ!R=[,`K:悛KlRIYyL9n١?5Ppʥ& It} "*[4"$(rfQu6,hP#+ >!̬L+ a(" +=.NX%I[dHiLQE9Y3HC>)uy8:K#`|ލ)r`qVpXYk%rS!Aˆ*R" Mx#:࿘Taš\ʅ8FY:"c#],TBJb6"E9Զ8=A) "%4a4A\Q Pf24[`)8S@>~!DFSH͋}f(X/Z 5)ARG_<5<ǚ 00A x b @4Z+MV[msr4Tt0xsP*: Th r /\˕njfU"J}/(,NA#`|^cx1⠡%qC`FmhZN dBD* )MPȓ2sRLA5a.EETJP~Y&%f,q5*b6*D Dj@P2"Q(d.RP&4I DQ(SQ+uU-`$@}`m 3eNezIIz 3a.@!eefd, pe@'~d BA  #e(|`+ VM%e'QS`6&eTSr+.-+(/;ciC+a5Y[7a 1xȡ5WؠtrQVdKHy2$:KALs(2q)0mf112O >B`Ρ>&A!b,Cu0[aQg7ZiC gkaKV&N}ܽ!@6bN0X` 8e޳Z5Ͳ/ZT=*pI_xlEy}`sXm)lx&'+Qg(dߜdLeɑT%,FQr#g+)gO] aEL i:ڬH}ڎђb~!]UbiK+)ciĄh$ [K3hZc(zOUܘT01ۇll5c)~C$׉zyzuty rP;i l:L PsQޔ4WGKKڪvnɡד8f?,=4mZ)Xk]3q#;88m,ܲ _wΈXiT H`V6nFY&Q䜌dfnJ2ڋee+7L~ Gޮ|WO6SvJ)ouA dڿxTٵA:Sg;{62D `aO/?zXY(ÁͻH[v'xq$$xXYKi kKlKTn$dK'46X܊ыCYC/߉}Ze?tw.PAz% ,,`G7W= ]凓kX&u 6j4/}9q6zÓɮo3=e;p_5+AsmVVg'x`hmu&TdB韓]G>cIf [$f49w?/fhd߲n]CzY͗XspmKeN>yq;gtz_oB'7W:ؠ(,Le7_a6(< lS4x-(K5PRb13Y"W `V9=È?_.e{77/l~0I%ҵl.=ظM'6c(.8單epjyt~8C\}Qg[|737ro%V#94`꩘ȁKkT F͹ }ϐ:啡Tg E=|[}z<6˾£[[gR.os|HyD]',)6̯S 8蛪KߵGFT!ćR7zgZxO; ?𯖳"deּuO}@m`я|Al0+ tNRkt>($y^[XZMg_:`Z"7֯IlT3 ɝS'.iGMĶO#woBoE8RSuиyWgZΎh^?\\>f̢%v;> Z:4 kҶOG6퇺r`?bSEzA;Di̛' Obܻ`'׷/|)Ssga uҧt,1tUf]C_hFΞW933=C[VBPg1XAÅ+vrdU4HF%W&$gYr R̡tS8MoPKS& fS/!O=ʖ*Y[[Rec.ist#RIGLڱsjܡ1GF.d>">bapݭDې?vuߙIv,)S yn<<~V:!ۓij!΍:x6km YǴ ϶5 !K /hb蒼=e(c F]5O 'Mha2R'?r!6Vږ!O vHǖN+9yfU.F0XئA*ַ0nZUWyLbZyg$q8Qyl2 'L}ag(fh4C4[G=hb_XѢ/onݤ:bA> /$A 0=NX)v|rCuR1ƅfau޵ Gt=6ˀϜd>} O)HJ'|ԔAanoNY-EŨɞ<'A11DT9.x0C}l'3a.W/8M ,H7ŰYA5uC8Ĥmn.;qQZ삧p1N9&I K(f +G#7[;P.w]r>[ڦМ(Ec27y{¿k4bڠvNMgɅ[u#/kGaG(SQYT?E4P" N~Q͌^Ef1t SIcFJX{S񓒰%[MW>2UW>{F_R {ؔUIPSڞJ,Q)v|îh^{!<7 /kEWJԥoğFPöECʵPͷLam,}0 ):0`qPK*hwO?(έ}DܧN ϖėx0y9­)uZ -b| gGT 5-/FkgVDG*SūÂ_ء F5FQN#g dI÷S@N&gbc񍕇jBeO:DfiΟ>᥿R("%i}k{GZ@+Ь,qa`1%^0o*_ /$WF 4kQA]:xMJ&,?UYF %'Sh=#78ϳ8yAƹb ޅʗ+UTO|Rա{{]kl6D~NՊnI?=W{s /N,fW>I^?^ei`tdhPL]51xi!d²SY7xZ4dtWЍ6{g?.b.|RR9: \ڶ$.v0a|@\[4s,όUpBI(ozC>3L}RV{iٽZ5KWuE+Snl0j4p٪ R6<@CF%wpE2|_D&oWUiׅlX0!:E6ekuoުy8h^ ;5ٳr;S[B-[ݧa)DlvHo׽OxkUQc {_iRfӪY$o_M|\注#oHye~|ԢUw\L?N>!OX61 Ds|r}oP:}& 5Z Nak@Q"5w9xHѡ[zpm"~4=WVV zZۥ'N4 vm.(m(XSeQKF12f9#[f8:&,SW^C@3OWLMMMO˴)aeggWT)\]\zԴ%m*U\ %=׀oRK~pap0`Q S%D+4R76/ܰt7qa: ѤS+P deI Nw#1R.;DD QXB&qܒvb2\@ ܴ? ~oOiA{KCgĦÌ(Jepʎ&O`&>Y=39vw,t|z:~~P2g؄ "A_ }+B,5mxՏR Ht92d3CL+B*1ZS ̗|V* 2=Nؙyªl9[ sƬś2 *0ȻfUH'Phe IDATVL1j_@ppN)gRl7g8 t>z K ʉ>!U" ʌI2 )^ςGԲ^\?!42.c#Ht!S#ՁZjJ4G^,8?7H7Lj F4bx!FhCj0dRJH1g ]#+ fB 7`= #bP&`́geHɁ"t5*S_*ty@KUz+LI8Vlr iʄJ93-Z`xWCUp}Q[yϱ\ s;Jb=V 왃gA < Z1 R>Q7c0) ՊU WAyam@Gi6a_Fg@E( Q8ƣBf P ,!lEuaJ'YQX,FST#HU!CԔ "=VMd ElF jl|*PihY F0W#djs?0h. t_͒"+|TsʢFr*Y7i+W骜b* rfP+0+RX$OnHd&kҌv DE%,%FMhUVV k(Yl-; a̅ '!=Qה0R3R8ttdDw1K*N("x@HAKX4 E*w@rh ߐ@0C\05T% iHH=`PPWV\IAޜѹT4g<Bo@(N]%T&a}+d)BNI0JɦF']_e[b,0Ł1̍0?¾C=̡? |+|!nkJ93`Fih*WҦT.\R䢬CY^h~O}IŮ R!@1yb7 X:M$°g0fUVM$I\ ?, ɲ:AuNe] L}Gf4!G1VTEPNɭ~cDvEfD_dE0 7k֔:]p :)LQŨC3@ S҅nH0AF•<<‡B6D*ڊ?zM;/:`66Tk4ABF))ji FIkEҲJN)41E&=v㒍} #p8_bwyֲbLv|G#6lGdϳa?'&'?I} +Ь=Ѩ͔#uT~mz h/B2۽<ٔhؽuZ89ɷ!'OfRɖ]bv D'&%;xw6 iFMLcAH;rF|'nSzx%d&;g{ >Yc cSVo#L]ZV;Tc6s hBșthtlWi#U' γq'jDlʓUh{ԙ-NAz$-hgRfS%_7qKq. U'p|0IC3#vsJ #ct;υjڌ$'ĸ0hNlyGIծN ;+c"of)2\@.\@!`jN-NjTaS)Lxp9t>ZV ֓۔=nZЄ$h!my28xDF;-/dV\:y$6V^5 揽!4Y=h[6\ "Z$24~Kth(ZJӔ"|-.i^(@bIc\Urh޼3FCOh2UZY;fd1d lLR'4_+'g/98 +*/.1SdWA#t5%zxk۟V+ -,,prJ- )kQF26hnNydOv;'$ %.H"0>>tDbԊ3J:z~9ioxpv/cF’6iz#uB\s"{%5! NKU\R= [+X߉KJ5I>~>ؙ #ޣ l}6i5oIADzg9&g>{SC (EL`q8TE [Q?cIr,qW-zr5dq3|FkeWl(4M)ˀ38RT"Dz´W5jr*i2)Vn{P4hQY;E.CϝuB@7jBd #91U%漡cX5$N7qMH/ 7Ԕ㴅Ș%9\ IlR+ViNɇnܗ#!줱~C-V=>1)]aЌ~9k?5K~ 5?&9"11Ywt?H i6[e垘LRbI(BhUyOt"$\I8e|W#Sh1Gpg]i#TZ]Ԏ5;;,,(..GƠ KQuR7G3,?-1gǕ]rSis&ey&`i4*qe$6R5Hk5 !;T$Mꯚ^TmeYclp 0ċ6*8$7TQf-G"b=e;T^/9͡㗊tKFP{\@l߯a՜  ,9t07ח|d׷%~ӼNl%DԞ(k84Xr/oW}=r^2L/!cyboC_U]‹i%%{]`,q3gHUX$^s0.[>_V-Dqu2|wJJګ9}ݛ-7e9d^lh!:gKG߻FJJsIGFQts˯|#UK\#("`;9,")/oYmԼPxpK1\#PH6l˖vb_TIk+B0/&Ο\r: \ G#4qp !ýZGS33^p9'Oe4Bsy,YqG#hO^~5<[_[半sW.E6NNNƻ_F|V[`#׈pAG#*!Pf6gmm¬/)<w-[TazR m=K{u~e2#ՖʏVVVjk*5}CORʽ] 뉻pr)S]2ex; s'E9y(O)7JHn\֩i䍕 zFJl_&{'"+>O={{& ]Fnagzy|c1ѷ+VD3~XYYɏBxP >̗}VH51WE]ؼ;=u&8NHJI!ZQ(8լ*x^AŦK._ӄ}\X|&_EJ+!GT+e?~Mv3 ʄbznpfDJ><1}Oo}j6Ƿ"OFn`+Y:]&!Hҵ%B|1; icnLwCQF ۂlUC|Xй]!e/.z-A{#2Xzj$GBOůgAXR骞AkP.k^<!Gŋ\1ǘc'ϦJENs`1yk&WaitU.l8fcnK4?|ԆLŵ30*wU@fPI+K/w]25.K"p3Y dTCBC;&kJ]ݎme{Yɝם_4h/`Ԭ?h֡,'Yq]_WSD|5j z eN#\dʲ=QVUzrsb543)ƺ0k:5FfVf&uX"ϟ=?o7T?ue?۽QoOW: a鳂 >)̄npfO!{cw XnP]`zxA-I@i+d|cܐA#5@pV#ׇov $t ]K~A5?cONEg%n$JƮ"1*c}x8aܮ557KITx;UVvyeX&JU "o\^~^3<駽ljGDHWcy$P )^>[F뀷Mұ%N-P[/eыd+,*-q'6'²΁ W);oTm;IwHNT[f 5v @h+(tF3vb/@Ȱ_nAĀF-uȌG?OnѨ@I%f T[ NnQ OkX*⥿H>%y4LvdelGwƶ g>tCFz1hfBJY|X *`VW9Wp΃8{[7rv70 {N9O\$Qza:<K|12Ř|?\U5PXEVlL̼'Er4 Uc|+Ƨ_Lpp{qW=;.u/!Q1@Rr0aM0ge|Ű2{&x8W/US!O5֙g˷?F!;T`D\Mi?-byZ1*W$\Y"x*D PI-Ax0.h@BVLR` UTea!G?g.$w5J;։ZӌVp C$i>FfoBXs a+!#& IDATޠ dy}vʓ X~cޔ;˼~ĴF3) *|x}t00;" +i[DzhF%mB0$S`Ġ͕WoȤ՘ZSى)ټ AMJdZoט8c4:${&gPi'a&#{h.Yrf>>Thhx 0pI(5j;6(&~pfý)>Vr###=Uy8/ {_n=YZprĞ =y'Dp@t>i nDK-vZa3dL?_xQGNҍ&ǾF`v GfNR9R;:L]r_L:9gUZȘxLKa͢YYfG{;wUJ;@ͯX0Xkw Bm mRpn aG^#[wE4-@-l#j];yلŘ aGN#, q4ОX:\?hɆ$d;<`6?1+j*3|3~[41-`a-`J_[YcxKh>—n˂kܙ;'óv /3ӈ{npÁGp>Q3mu1A{(_5/&úi& y7I(F|Xx2.*7!n9F`ABL)e=w\ /g*02l-p˓ 1oek15bA9]lnڢi'l%6L{Lo7-~cP0F>oki97lDG&7TqC1Xva Jk&Q 4"G45 | &O1a#[duw-ex!^OLl l=^)D{VD. #`8r޹!@ ƅJ޹FhPd)5+7.h1+YI Jڔ*aW zHe7U M͌ϸiƨ~h~<ĥKs) limPJ Ć8^ب{v >Kk 35zFpjٺQ 3έ_حnY7>~YQA7cx~! Cn@ C,Lت٥_d@!c( "A7ŠK3Xٴ85s&`~ǵQAw د6DxͿ3RGʰo?'gdgVLxA3$vߞDTtTϷo/9%Wb ?p Qɶ\9kk͹ wυ׸7 5 2n/goݪL3Mrx~H{ҵZ>Ȃt $wwUs"G#p +kr0hJNp (/G#P\hnΰGqǫd+={'/G#P۟6%˖*cgWųT<ְ8M6L6%MCQO8v)1{(|ל3K.]M2V%t:K72^޾֝U9*K.[p^iJۖƗoc=-!/oh5}{mCȒ/ݣR)Az0$[Rz瑻c,bKrMʀKlҜ[Ǥ3X/jJB9RqATw\{Ns2 1{C൮1aG#'&&&b0~cvzO9qn_w&'Z x~rOA{} ,a[7D 9У<[bc= l&PVS>g[(` JEbVxC|F3>CqVgO˛0v c+1!sȆ͉Ѧru{+>j>Z{LNs1^eǔl^`v ^I}zv5/攲xz \(pJ1D׏nڋF; N ++EK+&LleC<$tok6,fewYzڵCt\/O-wGEg->C2BCn蚀m([gC&E43.5h3ۣC<5;76# $?ӗc# f) Kmr}G)0,r%C3ڲ* AiL}c<#c|*eυ Yx&!{ܹ'#hχJI8Aq8X9xgiˠ_Gvn+o0bS*'xrcM7MnRPx g)/W!l,E,|NCs|N7xaEZ`Xbw;Uc sjpJ R޽|ST{>_7rpLr4 ]E! y=>wOIn[{gȓѵk)ސY dЌ ܊.Go& 7n4c*3lA<p:G#Pd>˦mJN"'}&O8p,oK[MaSҵ02b Uo.Wdj~7#'ҞP'.DŽ3{>p!,0Y`oZ6רÌV-='Iz@vfreW߬l/$gisC}?eWF^W.b8E` {ñiP+!|徖ym@9$}=&$rjKMeڳPK Vر2sG];y5IU_e)ҼskTәQ#;~R4\u}?Ҡ#0Dp jNk9?|P󡿀8M ]ssU'_"D=ieM͋!Ɔ]z7SZ@rj^ Ѵ&p߻s|&K[zVw"~>4w_!h2%Fl@B K4oK[ w48cĄ's8`{>}#O+ $wm9}GVVlT@˶0+N-gG{E8Q"㜢GuX&IAtk;h*қ]7ԍ|.1Lw ~TtbZ09#xUWǠId; ~Rg4LJMvge?x\=QZ4L萝CSmۦ,lbyGv@F>cvRe |?ƞ!'y!ǁ㐻6`+.E- Qus^{4DK%i7IVm@9E$4H/o5-2ǸaGC?U,pOڀa{\v̰)T\1/.ECe[,R6|(U-If5q8 =UMLAdk/fؓpNjgCV=^KR_Ѣbq8D?94ROaC[p6amS=L{?ݧRg>$(x#Z!|kKt|c}7M}j~V3vhNe/d.]nԽBbE&$gSba,TV'>?sbT,ZhFdhsujiYڻ05b sa( _8o0 x_BUOdTb{;.Ysr2h{vw$-#n>=ϖu'J5v;Y:g旓 ԟ? aKrbG{>\~㐿me8FקN_~6tZY[RR>NXBe˯.*F:w|~˿[eƥ̂]YN{?Tfg8I[F,9ӲòKxNCo-­-J#C!2U[OO!W?17!<1CQضm$4'L ]|;~߇ 1eVL+1J1ɒ|s>io9m6JE Xg+> yo >IʉЀkb_uj-?'j?oz3pR7rpLr0̜cHՋ5hbq/C>HѤߎNnW'"8瑥Va ~rf8Tv?΍;jI{K:"ábf4Y>.Qt@Xp],P".rFo ;:x)%fr |IcƘusۘڽkY+zeQ /[aڲ;]oM pq&pO)݆ʼnrꉐcu;-ʋZϬ5LJBy]^D=iϙg97L۸wI IDAT.%Y6/s?\yUMذԠ'sB\_Q Os>[RjJ5ܻ; &2*V,kn|*ђvd=y}ǶL̘6~F~֛o&ןr< 6O@E U[.v6'io9m f>U*++fff&Anf&|3hv7XSή#?}ǎ}0qio5ߴ{xh̽GpΉveZ5`rV2y4ݶs뀏*RRDЧ>л*)*M J'UI>z'$YH|D ) !@̝ݽw7w7H6/;sf=9δ1yZX@<u>Dcp^n>88>b>S[8.Zf. kP`WXzתjC0SS>tː._"$@#>uHg;׮_yGopoʯXשJ!@Fb>jՇ|"lk< u/Zu'>p\M[@pV'۱߂ Ǝ5zQ]ϕy{}Qu`mJ9@9w~.mC dx``ւ +)*oZ}Nph giuzq`(Qs |أ`/?++Нk?#;:L vb{Ma>" 0u Kr|I4{w tb>@~|0Ҵ/$(s軄_$J#$=ټBࣱqPߧͳyo۟p8/(^WɆwr8GDlc>= pqMZ=耾jHAQEo#:tȰR񩧞i>Zk<{Dho^S\xE6fHCףĿa֗uc=ܹ17Ǿ.m3DȾz ]Sןd#_Nb1ApQj˕)%'["B[#yԫgUV;X@jM D('2ӌ9A:u>|q:ҟ/Y:B)nPE/&EEujkao!ǩu>D)3aka& #p_WiطFN24<,xb%Õ/3ݙ~0 >tb{* Ṁ'?18 x@t瑀_g$G'{ggģhjco.Ok};MQ #UfMjחV]:^ayvARb܎5oGiشiM?ҤY&-7 h$$c iTzr`D:ۛb>Q!K KKK j"b(sr@ˇ !`̇pn=#a!B&rfpƎxtɘGWņi-vlw^8~[mwʹa'-y.ĺ.5HPJɍ`j3N؟hԎYJrTr]-AYXjlw_Dnq164IL8>Ewᑆu}|YZ~QlR颫vdº#u:W+B*"v܄p!uq퟽L 9(/FCJ^fNgKiG$!-ܿ#{mpB],;2:>"ܺݕHqYÚ˭wV[Z1 }r/31 8>]d?G}Ҋ>~ VGa(3>)[ )m4~ZS z Fjby, xpiȍqCnn59z=ؼ`Ń}_nIL8 P_(o߾]\\ܴiS??" ]|=`6P;t^.LѶ%5 ,bFM~$?;7!yGϜ XZ% 8n, Fi'qeRVEl ܻ1p;HІwm!jUeɌ BGŬIx޺xC7Rf6=|a]-rCG %' g=Qت`hNe*z={PN:;!(sf #Yփ5pƿiȓ?o# "@]kW]F6<cJKϓ~~_:Y#{t.=!\Byn΋͡kŴLؘm| \kFDt쁯oNˤ.%mBd&}$Y~73ok AJ1rAx_̆!>&$"# s, ",.9 `-EErϋN2®۹hm"$eHCxur| Og^7$*[qpqv^6w6z?,|b O_&_7y(JUhL]M=7V+Yh=u:thҿgA[2n E.XB,LCͤM җ3]|ꪹEZãj@ʖDdf %0Q֝&#]Ylz>LU <>[ilR1L H\ $#&|Pm mFzVNfΕKJ u%>RrWDKCPvZX_˟;WgqC+!B= gxm~8/v@bWt6~USБv -L]& JAsVO FR{,^$l0pjX'eQ#$c;RZ|WFu$956' : ,#/ xlp^c$YQCVAꧼZi+sMO][\T̝GY?Wo[:m$=?W~],:AI"~gg[Orn|m~s^v:cQx*Vr?`B$WfvAI߾iVJqYt܎{Xb>Ȝ"1ڇ}{W,>0ۺq=ƒ/H]o\˓qO5۶2׎d=}h=y%m[pЄRQ_WM}MW&J1jdۥ7ZRxn4!^L,1,AAS!^ wa+uDŽeu"&)5-: N]4iD%sɟG.Nvm{ t~/]}:~/z<{{6przm%I#$b/&!C_)_Yh#(XPsg!grWˏx5k݊f?߰U]m` F܎@ʪQAr< G讶 {xժgۅzėFL/LKu)g1;vx +SPsy|iԫgM" -k"4)C"L`HܥO9erkw9<У'V!0rwbH/.9Җ/%@fffav0 wYx}iwbɽk?1끠!i颤Wo ߜ5Tmm w+[znZ 61 ɮS#sKK_LL#>ݘ0Vw԰a×_~y޽n-f4y]@>yeVȀٶ:n _eq ~@reܩ1n--woZݔ"`L1 CeP_c@e у]UP80p ̦Q__}ۥJsZ*B&;j۰o4_Ke;|uk0dQ}L"[C`L, 8·~tC 1e@v>|[S'C!dS2wz_nnH]۫Lcn!Shf'v}^D! 0}p?L㾾n{&3f6rF 1))w>͛W=";|u3'ꍛ޺ոAm8y&p#hM>2weDA 0|B9ɗF|1B ~~HsցIҥWaR- 5N`G-|{PX~N/w#}@ПZ6"u|ȕZGc1h E7.GJE&CTNړ/| &  h\ktߓjtkfE;{ zr.),,N5o~i[7.g^o՟/>Ί."'f"@FsgW ,i:*r}8 A~%KӖ3Ӎ|Bc'ʂ˚=(7nlԆTQr.ԖܿhÙ<퇧6$l:bUDlpiSZm-VHDֻtQ<DLܟ̓fG\M?'P\0q@*^̢RHe۶ m2$w:exPvA>OɳV/LC~ܸ%w2/Ia}R.iXXI/rXل48H /z6 QZ5`׮rƘ(m>9O9I]BY/fŋ(?'ŻДu>r/31 8p񑵮s%=咒B]ϵ{tǕl.Q6DêL]hsg吒/<{F%:U ."R|D}F齿~3ևs޲ o":./W]r=j_mPhgؒ.q=&o!G0vz7rB#cX9{$u>"P^B}rcew&ɊomL|Ƿ (V?卾m?4[>h1+1 H`otX=nK "uKPq/O=_z9]T3:2=tvߕwm?nH^2~̷&Y{aܹsnV% ήuf8ţ%MH]B6зSϾ`L t>qA!`[fr ai_0'|$K>t^,v$?*ZնACһ!,X 0zRFr-,a[T7(4D G"$+R!@ -31#Wb>rss:{˕+:-8 1teN/k$3 l/'N$pb+bIfG̤\] N˅h6|AO.fk5% z{sR摠%&s!9 s,SJ",!3.#K,:J9-$xЄ|s m<뵺jݰNd$Y20IlښęIPnةYgRE0O 0:b.L֭ہࠤN ʇt[矂īgF}>`How)"'ù\~w jh\٠s|jV_4RNgZst7n-*U֝"}GqQԟ|q8 xb#P&UKQML3Im4*7 ^rmYDsl=/"x |k\dZ$} q1ind'QzvK[ 93Ry8 ?1-Q]F&ci):lh?p}ed8 A1+/M^U],wcg?~8LY50yMOk&G eVo?}\(z >zio W%BMS,cҠNL)ʙZ|N6"XK4*!t.ED~D8+HdޖSC@R[υKkKH%lKʫ]q)ڒR-K@zמXh)} P~`"H@(l,}//: 1^YIFLL#|ܼy3!!a4=7Of=uoi 3FT߁9BM {!Lѥ~]wѿ=%aC pط|wބ _+CGF`7CeW}̓HӧOCx^ݵ/2ϥT n IDAT{?ZO/uܖ 70]DHKyN2ݪ(i1,) D@lOm?u|r/31 8| 0\6=|.]zȬm(u?}zPڹ{WXk.W pX|0*c4k2^-:Q.׭[ܒ:E>Ӿ{׹7!sw uǭraD@$lRM)]PQ('2ӈ3}8~I+>DDay;1AL<Wk:}z=ٞ4 " xxk!&jX>_Nb1A·|9𵋔u>g5Yé1aaD(\橸 0 rc>‡Anw=yT|X젬A,_` D@  ?Dl+=#mа!!-Cn}ǫ[oTy:<HoB睊|x"@ D0C]<:N=2ҳr2sg\RR+񹖒sT%\ڰhzUe{B*DB[^pe-[88^"xbJCݺuܒZ`$F#<1c2Z_;r>If.^\"8˪Il9c"[4{G6mڨiƏ4i֬IMZ6 hX`mC 5 :F6$1.|tEN ʇQo4 FR&ޟ5% &hb*f#3V8;^捛7T]y93n_޺xO~R`k`" c>ߏ4O/5KK95k۷/##Ayp z=wYx}iwbɽk?1P$_9 DeA"e)gigGyt?[lb̖{naC<0E~6 +; O[mP\p>sZ%l{# vn+rmPdI 9*. pdt[s>8 2:RNB $_fbAp\_v6lخ] on@c>NPF fiȅX'?~%O=&Va :aEVB 0F#zFЎww4]l쿸udJ=%zTe EJeېV$8fۙO_ ~+ensFs g,IR@ciuB&/~몋s"ĩ9Y: ;#^tF_.-Mk3|ƍ۫Ҵq}< w˱;^~|c{=D{)ŌѦm _@Љ(PMHojp:Dp̩u_F``,U.G/W8^~Β@&o h|6_w׹g$sjd|9i1AL17oLHHzQ1 .).=d9SA#:L5}j ,4TauA3:w Lp*-b|ѓ(nDPy`񋜝jNFp(5xXf\bjv- g2oJ L5?`i'3jp"kǔXGUL3)V;+cA9ɕ,|0X+c4k2`<`|>}b>?vw 9EuO؟wFרWo֭ j!6=ƕ#ew}Kڮ^. upvPzo75o˟ ^ݞ:b͢k7ɧ&:4bM[4@yS"}hdQt8 8ogg@iMݴ!rCd]!N]zsv37W 3{mn{v( *Nsl-<;x<\l;1̜sϚl+X^!qǥܮSgb>X@Ne&1q| 0b>?M49|.]zȬm(u?}zPڹ{WXk{[-bN@6tAd֛cʶjcvYizzOzԣpjKGF;)fp̄+_4%_^f 7A,'`rд٧`6 Zs1qb&6@?(j2R,.?|ܼ9աX)AIʞlZ.zvl}H3TylKɸ5}mFLcGT^Ȉup%0A ġ2x0$J+W@ >S5{`d$ҩH1f0@ōQUHLSDnQDӸm <5KyeD46Ӻg짟eVWҙ6'Z>A윹N]:s)C/ grwǛ. 9]#BvMp|m4u񃐾qAB>mDI ,Ypڭ' '1c>P1E5[c>$>b>Gٺ,J*GGvN6H<+!ާ15|Q>UO?Ah& 48gUϳ߼^c";%*1v*К[AH#s1(0DnrAQJ HgW4>L4ps҉р ,zzKPmW?aۭ'vszd/lժ Gw=ztOf*izF $u}gD۠b5) dd]f}1@N:YeOαs`7_da2ӈ< {+3@OUIʇe͂z\0!!شa-A1AC>Dlw/v)r͔_u@z *xr"k<4f'ۣx"Ru||)4xD1/'1/8|R}e @败PR.ŗ2'yu>$>X @~8T<]ž#@D@\V\B@Q3e@<\ʘ"͚-|xā ;K#Vb1VH @<`CeE_Vmu/KJWQ8-5, E`>Wn#|4<,Xt:,rӈ @Exc>jPŁ##0cyӔvxb5nÞ3vsNL%I >$,dl=`qz%aujz I dŃb-gmYZIZ6dUD{r |04*{Y$Zu1eiyiå1v.XvpHK%X *W zWrRHg"sX"TW)ӔXd#_NbZ@LLVK@)ax'l fJ=`P|d#_NbZ@L<.OV]Y<Q~aItjD`(\Dj sâA4MR\`SQ0Qv/V/jg'8ᔶcCvb7lC61)b l]vjNrVS }+|iyYq1 Gl4[l.H ;AQҙZ!LI" 9c.Oym`FuG<,Ca#@S%җO3Q9kRQ")1 Ww(yt<?6}l8O<}!ˉ^ʧ]Fcs a`^ w#"vHbeF٬PNs# 7׵EFCmǽxx J"{qr.EZY6R%9xا+VṡmX(3ayy@l |k[4G͗U?izFJ짃؎Y5z=,؉ |~u4]AgQ4Cq@\aDa0%< ,ʫ\O CM ľW OTĘb~-!&MwP|>y=|Ce|8f5|hRx y WD@#{0*c4k251C"Pc}xF|XGr'Q"PW޼Ř,]q"P/ҬbG9/#@Dc>pޏ }'g 䋯_-HxǬpޛ0.^תah:uFSQ4%:mV6Ln^1Fª5)sqԈ@ Gxiz||k֪k@s;$䁊{G1{v-C5h'cZt34o_j3d"=73Qs{myr/31 8x7{z9{`YjcR',l}hqяB - !1b|^k&;p A0o .?B-֪d_+ͺT:uGamQݹӴ'gڒ3wV`weQDn:LS1 kxB^7@ < lؾdJF iYya{h>v 夳<,"yF<=cFo0trX*]ז?l3z߅KvPcB}N$8f+tk* q^ c2M[ q})F;,,W9׽]x2P؛:xx<_uko5_ Yx4$8_G5"[yb+w3 بm7}~ܢyAx#؎s)N9x8l.g_,h-6?˚ -43}ϥ?\%c=p{T9)70r $ z:" IB/a<:Cqz*:>gf&mV||κmCʖp (kh˰Av鰝18ﯼy?b[#b>t|lc8\@dAGqmYytvNĕ*pv_r,7O ?y248JNΤ)*7+44Z*Ul $ $'mt􈲩iM(UF-Ϙll3e&m:9": rjX9%+J'ĉ"Iv;XW9 sVVX%$JZW(fz:=8rbgŨ1N 5qovЖ@B'#_NbZ@L<1FMiL<3sY ӿOwf˶?쇛B\QчaڗbfS&di&hP^0Pl.<B3*џ搼N]ɺqkNF6(0$nm"T%0TMܕoU(Cjx`4䘹Ċ) ԍHK iE착njA҆끁oǘOiZuꃾȲ4﹫ɡ"7 6 G޵-5|fȁ?W6_>U%`, a#v+"8eW{đ^\Okryۍ\:2b\^#0٨K C:[_5 q^|(9#pWS.szf+8!Qk";\mw_Z赥PNe&gyP'ǯ{._ȾV_lRT#AKx @'֪׼m9d&gy|j_U=cv&8"yH! (vI4<,x~̇IǦ6U"(0n&k2F YFI? ΃mQ"d:2L6$15b;D9:P<1C]vE @xD IDATA@+IĴ= &yF|)E\e}fMb>с_S?`1?<DȈV] |e#_NbZ@L<15\D@`}q z 5." U̇@Ne&1qz)oG|w͖oINn~ZM3muV'? 8ա[~:GZX'Lm%iKzܙ 11xҰ;.k=/aʢWE35Vv-y% OAA'KDZ]rdڢX>XnXˊ;I"szj:ଅaz"?ZYQPx_瞦oW/l3jwƒq`-찍3\H[0}bbtdx9Rvp\%ݱcdsT$¤$)rۆ^| 3@m!Y~K@=糜KEFsZwүJ*|0`V8<<ǧ?.١:ԮnɆ㼯m2ezQ8{v. [/VnxA1#-iwJ-#ڞH既Gh=C2fGPMAL/ UYCvNp7姇nIe{gXODGWʓU>!eexẋNW [Ciy폭2۾2oQhVTa?B;y:hxP'4ۚ7k& I,iSR\83we~@M!Sc Wr8CJyf'A0KCκHrt)e㉰TI7ev٣C]!Aѽrsma=Ll`(R3sg@irj*;ggt12Kκ,;g``ǮyԋP}.sz  2N f'(OT밂 I'Y'pMK ~Z~~'?<;76(3EH^fH(~0[b^ϐ65t`Ff9㯱[~˸lIL  b" QVY-l!bւh$azK&uKJ葠:qqΠZN#h4(|2,~Ujn4DQVvlN!Tx@MsZw@b9]ՠ)sfy6A1L-;vRMW<m(|9i1AL|H*bx$-;kgtzH?F-b(1*B\0/!LAag#/a3̸oLxۅ+)1\ji#vd"nFbx"'֕I=FxrjI|f׈`MܕOhU 30A/Лnaýn,( a׻_<<26zM}G)zWm44@ҩ zA& u\T7s H,4y#- Mn$Hey鸊ľCpGܪEnKI %v11AZ6L4%! *  ,s`U]{|$MAxk2i/K?CD! #u1HEO6$1Gi!D:>UHz 5s1\D@(b>r/31 8Kz( D@:q@*^B}wukΐq" Mi11ֶatv·C䁚:ӷ;?u٨HX 9`"P8=T5AX4k7Zk̐ԄcD$# 3aa|9i1ALiPǴvL`i!eC)yeO QK84g;xKk eIš=sJ=g7%fJjRȚڂ?\e,]PŽi7c`)+wXƻ":Qy" ofeB9ɗF|xi֢1\:pJFI>iA4<~?&6LxGߨ(3b)_M9 fp+d+ AYOaPSs_\:A"G3rF1^ݛ2$_fpIB<6guoͨ6\-!a"B1'W@*Ẋ^πřwC@ܻo)~+?[4]|EO# R$ׯP0ͫ \cȏ8.lyQ aIR ]b^BN)]Qq1ֶܺa:;3Bu>F:qff}9㏷Y4抌v}_u$v*s4_E)zsȸ=L4ygԡ&- $gݸ!6m^.5{(ُW2* th+Yj-75qI`Wim>0etHy@\NΥY;qDXHJGC2H&c1U>^{}>qvk}Q{ <@ j׭ցк-G ha;yG7ܙ2Yᴏ)7."I7g첒^T{'g'̬>}J4QeK<#T9N .]y·( a# 18x!a]YFoŽс?Kw9ۢ]ڲ^Í/^䥝$Aѝ(88Rv@IB0:b.L<{_p㹘yY4s;-St I3UGhic{ZBQ!'/?|1nHǞC:.<2p$4i$TlPҺrci70|$+{bTӜ+̆Qf:E."*^s=g|y~M \"(]a֔`#h@*<Gވ`c&kNo6pYܻ*.P+4G٤|K'>ޛA穐V߭2Yia+cv T- '"jCQ؈8MkE\",Wc>/Ҭzżt2O/v{OTɀld/KnMkR> Aݱ hep%(thY#al]iؑ~rV9lGtŹfQ|fזm,RX9thS4$0B9HgP4֘gG1 eLTsW-1HmfV<|qυ6BxՄm}BݎJw18_wa"{d&HN'pp⇮kF-:R1@~S_n+,..mj6h#Dp+~N4_FN]["n>=vF˭$mja=@Xb>6l&0LL#>^.޾zi?m"ÜsA?:JZEooHO!]m+"!cH."< b>jAG]~[I/&318 8^*WYc"T!Al9̓/'1-|w &tDx}8"=-/"P`ZɼX_Nbq8> o4iFxϒX !@5Auknx.ʇQ $_fbApḣ|0ზjn"nFRI֤ks>!xY5tQlljDD&s;LSL.Jq1N̈%n\TC*d)|}'P8x *) S">!|?"&c>~ʸٻ}8C6 ﺎY{:o>hp3و*|TPvcuD"1\q<qە{"U~vlp9Vxj*%ۈ"PI`̇H%Bר+y~dcӮݪ}G9 hZy;ٱOz h>?dm@sV\k#^srȏl'C+puMJ9UQNqV$3Yu> =cWƌufys)z}ڲ.jtRy:y|/Rj'DuzB$;#u&GEty|v?1:b.L#664ޤ|#gFg֠J5+W FX2(w %(]ng H)}@~'qaefנi{\d/:"#9\P(C/u>b3A,Cfoh`Z=U;tY۾άo_n,[y'+fuFi~{ ĝfu b#&d \q|1~HivD!v*sg[ 9`H=k?KPD[z!b>dFlIL8>p5O{\CLmAO57?~ hᕟn(h2_J8}AKw^zbj Yt" yOyfk4RXBh=+SH&:c@X :=+.-Ͻ z ç^ɪo!*'Ogq@|Pͣmky}縩=nU9K&%DTqN=g#:Y~ةf5`g1|iyY*حszi]< GI&ku4aN5z*+D;izF^}[R ĝz7mܠk yr%~=ӣ޼M璿 o!RT%"@f|^̸;VR7 ?.Z] uMe2IL8 I,aʇP|y/]!?-€~e5(t¼GC 7b=_˛)|9iv5164wǾ/O8X-" nd 58 DrOvŜ21X9N< -b!,_~c#'ِ]a] yKy "u>V es>,"Ęb-b!1솢}q<1&(q8"P`'>Qy<@c>M!oy֧.K%| VD5`X ֮O>/o9d&gykʊ:2R; ;yh[('2ӈ< UŴ̾5'-2BˇaEDZ#Y>׭U!?|:|9iv5*{ cq,]h緟C%}39q埯-:x1@j,{t6Lr/31 8,>]p0,y4oA'J4CQX iF U˯2,qyuH'"P#8B-~ |XqC0y[:GJ?RgJu-b.ۙ$,xr|pOK{`0(Aq{8G=u(?\92!!)9w AT<JC@y4=9@=s﷿<M ]zdʧoz(;u=.[]̭|9i1AL\(F)Krl? -t4*JA*]Z@I !A rFIBHݻ۫K.p{fg޼fn훷&C-os3 nlqRRz>_pJY>?qj";q{/&hx TF cۆ[ iɓ:a#}{[x`OLNPYus^;CM|̓xLp Tg tc"8x%`Z̠nwy2R!|t|D|/jwtJ.=21ꑼ(cDµ#u'$$uJJ 0T =B>!8z8B`!Fh'd.̻]+mwIl"`2yqplǦ]Ƨ%<Ƈ2`&<"rܥxZ$;g1r1``xa?o{>XjfEldX מo烝ka,2N=e ̽  s>>'!$(/)ZV7\&apEχA4x 4ktv#16=b*0Z11g&|D'M{9DqH T|u\VapfBχA4x 4]v|n{=Ye>)~][7H?Z-LoN_I:Ndcm $Pu BƢ?Oo2A&Ax{G'>eR5Q2ţR\N( *&ٵ5SU x5<9Q>?O1sdLL=ܬ[lPu~/ Uc<{Rxy 7Vpme_w-1ڪW%x3O27`o2=E&И0=Ի]`mźlh>0\Ndr_#sEUz - a՝`/ JH T|mx>ԭԚ'霉,HefN|e1v$guLT HL^ޕٙ_dޢ)L",sXG!ta$QZ]W&g01Ewnϓx|p Tq 1qnj2n?Nd^u-z;YsvrO_JΎ(֊xBq$gO ZJ#^YN"9eͫxӐCi #Z#ԕ#0@ :1s;:9>窌`g* bH h U4e.+$,I2=-1ni*>q}t欨y:SWFtw`6AΚP$jTX>3F M`-oHG=J;Lnc7FwPc@U!1,cYfh @̇a0>t:%o X2jyK-ɧs{6՘o{@R^̪w\]9B̸mEs'VDNUJ5jĢH ( 01fhtr@掁2*n9u)S<烱?koG.e"'' ȅ_Z'hC~x9tOSuL1+ ̎#z/!GyUXcU9$8N*ILg!`NfQɤr9elZ^!/*$2{:6o.?dSռ`qgdc6Lp S‹РyCƀkdgZd|[EVM17s"$`b @"Pאb!O_ ߞxTW^F oǭh,|lyӑ|Ty>e*7 "$`z>Hl9"W^5T hiY·U`F%m9lU C13"z> H æg0*@H: `/x,;apCχA4x 4|tb㬂=|(JY~hm=@%JvewQ&dǀ{>K/HQ i6ulU޿ǛGNerC+w_ԚaqqXُ{}wo7W88rVx3))zP~;u }+mH@H !1,^GH|OZչNiџ\}xo~~XPt,)部Z}1G,YOmk|˘mBl:{R:Ϭ[Sq%P gΰ?ѳx2$`1rzV JJ%/WI__HAz?tb|a'w'&Xf@Æ̔)qyfJL nem|4 8@ LJ nOarKewQ&d@MTW%OUL&+%%2EEqC/pפ%eOUG yq~+{3UШ3Hpjm>G'gILg!`L !2R\*'y6AH;9rT{sD7f__72Ob.:Uy ժ0 ąHΚ7$@^p^k 6on+i᧙( 옵~|o^GuY6`<-Ƚ)i(Q8Hs>^ڱMz9>C@{53u8Obt<.* :ɉa6_Hf'j/US` l= LH`+dz.I< qKIڙ>G-4ȩAⴓKc^a~r@cc>dROQO.}v\.\z_QZ._P#y;LfL^`yx,;8oy°~6vIx#QC T갑0>{Dv~^|=|6pyO }ڏ۫y,̰k&BE29Vm3H%GnZ1lU"C1 x5d*870pk~ :9vOװy +/-+N=T]U)ew۴@xQq^%jT^E΄M!9rqΜr̵g=G:uCkdΙxp ;l 5?@dDuԫWq#aXLڡCNlLȘ=!} eNϹƇ H ægl?*0H N[M\L{f3"z> H æg0*@H`#@51apCχA4x 4|tb㬂}|Uܸwܼ{_Wn!*@H* `-5q2홭]x>Akx?(|+'0 Y˗_zα]&z>졗O]|D zqD[zujѤˡ;~OwbH `)@51t5g@Ub} K䀫B"}XAAz8{լ*-ؾƮe17Ae0+GZS֒j꘤W+ZUEUy ͓"B1`1G&%p(\5d Gw-},G>;h=^79 3"'K orv$90V7oOݳw16fqs}Q5gX7c>ޭk_il9oh$sǘ]***sGM]ү[ [$],W^ իeۦW9.c(zIWdEg~Гȯ'g2)B6.AZ9os*]ik_!`jpbSkN秧 5E0hHHt$)ևdeX f{Z'0%{͊Ȥcc>T3#\7'`fO{í_^~&Q^b {9'z5z41&*)0+2"i?fYm@f F{'C#sMX4穜y̚KcиE5T ,/"=7kP91,皸E̶.x[PMO qu%nC|RW´ rG_ [UPyMH?fVJ6M;eΤ ѷf {=ԛX1빒3ymc-2FD{TBoxieO=k<`{eǀ|Å՛QSǬ.kIk*m!ᇾ]u\th)n~r؛!-hs45Uj`ȡ&ƀ|,y%4inkO }1;Ia9#`:Fv>è؋EIڻh9S$[>w( Pe%i0qT#F|F m;5Ƴ:ty@J߹$nͅ +/އ+/u,֧ 6.8&}Yx |-{2';ǫ]"2n`km b~'2H<_X&Z1oN\z=Z zb"@M 19s;:9>ZQ^|Sv~ϓx̎6l.?vܰf?sD}t'S4>t` |㣞Su/N ۏxWZ_m9( ZAc>n~lmQi=UF@&Z}| `GJ"$`U9lw9Xv DWN H $N1Æ; ~SU#$P{ `wEȓ087 <lz>l{qVAc>P $|c=g<|D'M@χMw/6*`̇Ut*G,{2';apCχA4x 4|tb㬂|XE7H X'`בez> xF= z,:,2FNv>NR婑SCZ;ЗVm^59X /|oc˟2ikw:Hu݉XSJ~hsrVyfH ̟;aK̲׻(yckwl[@p`w"`( p6_ؑfʄO^lV;1Ņc. }fGLfӾ9҉Y+8 Cat\;]S2Z>ΓN`NB"ٱ U`Ąz]:]^s*$uųHv8tp߃7%IG4 IDAT 'ƪ̦\ar@|> iT|ćz5;~Lzd?|@ƾIEwEjW!\ЀXnչŲPw ^ J >|xվOTDYGfܕg٪Q@O@R9se2&ԭyU390w N Nq H .K`|wtr|Ε5>6[nمo<-]ei㞏Ϊ /XVJCHxwM|SVqs0?r1`h ؈{`ٙ =Ґ@m!ܧWv-zFk3@5N"kwkl{qVAFb>T,R{ŷࠚT<GHyVV߳ :֜3QM$P;۴U|L]Wv jS" <.{7'ԩDX {$PϱkۏmFOްwjKJHl?b>hyXCՐ@H fP.Ʀ#+#w잀BE6c>h*a $5$4t{A pl-惢~bǑ/} r&a+uyLqrܛ~u"sCJmo~7lB<ٷS#ja֘ X'E~oL55ɋKeRyI9)r%w|:qrn[| g[qzU6͛O8@M|uD1u˲8Ŕ)Pj`̘ʏXH Y`mG/˕fſ_6[K;T p@quկ)p*F ;tǡ|%@Ȯ=G|oW c? D7}zto7Y:}Kv?mӣߺ4~K\#fZ{ަ[3]d6.gS|H-6inﯓU5&/m=7v ,b x@;T2z̘ZZGHM! #QW5UkT_~7,xk| ) oBo;|`Ъ 1oN?/ XrR{MZfWZ\}.zHȫ7Ln\-9j.d ѥ_b.% cui6X5,&a( 0{_~WzR"Ѐ}=e "\.**`_o-Y0xȖ-)*JؔLfz#UXɾuV<=ŒWϠI*u-RcD k3ۿCvlH0Y1!Up!G'i)l.gx.nkox]X:!CG,%r{b`OA㞂AGgJGwkUG.g6won]SDVΌ豃Gh]2ķCn_}|=\C[ώAv&w&T8eV5o̱_$Pv옪U"J gΜ+!SHd c7}M-Tֆg?k?7gd i/p*QӜX[6 |J t\e O&4BO"ky #'XsPYFK2lm%,ɥ1ŘK2&i]6 Zv˓KfaǛWYs&*PpKDM|1v>c1arjf $nK} g^.".5-һJ o?_M. `?ɓ5s>i-Cn}1g{[[[H_N& ߵ&!BhvI9C-3'XSoIyxegAu$,3}lP/9n85Q}L"F$p:tZ] A|>ݲ nyCUL0h( BO3#%e@je ){\_*.tNz gˮ¬|z2s$SH6( ?yqB $2$$nV] 1=(LNQEf9%[F3}Zj@-#sԯ2pq 8qK/yH>,0jkv% 4}{#oT<ϧ_ð`®q1d3$/kާ Vm>a8Trv!Ùڽ:'wa`6<@/or ]6M*ws|^S_ j=AoGk+SU(aO>=͹DDoQ6V[Eh g~w-]sUie7^=P,cVUt9 /<:(ƪSd'@d0/T5Nj*?6@&c 球y@)?b0L o9}v| [_UtU"2%Cn/{‰xS}v H}'|< #[3IF+\o"es=r2ÆD6&撣$[[V5ѪS~[!z+;v|TkoOڬQ?5 uhVIH:QcQ0@C@ic>&ڔ<5>ht,{ hNNfqE + WQ"O|ӟ*(mò[~fjύ(P? k7A[sŲg ^zAt[sOo++* n'! {sOtbzuʜlG]cH 0/DybWaB>۪碄6f!Ca%fnLtm5IOEl!QEu4sn6GC!JG:'>IX /ڶF~%)WRʚdPŝ[pMcw7ahݦBOO(Jtqnʞ{.O.u=z$lBq/}߉ zq#v>,`ڦ]ulr17$`H3gn}G'0>9:թ[b>6mab|X'JCOL%$j X %P./c,8vEAAS`'RCwiO,RM^0/M_Al9l?? #32!ט{Y]81 #)_"@a7'>NqC}lfՁe1'@fXz&$+) *",^Ǐ+gelJB*\*(W@fDӶ"I2ķId11G$z]oYs!>lڝ~zw\dδ:L Qft 3Hb2(j+l{Y9feFϗ,hP29mľ-@SYH WxTyyyZ aҤ6CK)lyI9$r#e?L܄d+s\և*N:I"'PB4E-lBzh g= 挅mȬ9Gա'_iκmKqB:'Br2=?9\HuE-6 @QH >oUL&lP?ofNoռqI㣇HzrXutɃB9_QE ;.|KsFfa]%Y!ȝ~rw?X#( n=ޞ:}f (% uɻѽ%$n,FgLILP\.ֆL^? B@1x[d;od7vWX`q@%rQerNЧ+D9oMXSv'O0k.Aޑئ7<dXi+˭&2;ݙ a55L9YPMT VdE9x9d!$?~ (` &یaZa.$кM߹529 Ы_zt=;T g  oOysn)drY9HEWx}4㌗va %ҒH<(Dx,&qN&!pN 0(+uЋ^){c BN$)#'3t S(UZߦSrÒM@P ſ:8<]);?cOʟ.~J^4Cڦ7ɧkUSL 7<.4$) ==qFݠk*MV[0˜~L2k}n:. ,RsN1SL~t LYHtkæ`yTpK@@=2Үc_% zmgK x)̯SsZ|ĵě!J4~V`GsL I;ÉU5xYHD{Z^:&6cmbU55h>Eb_t<0Dcp;I9,yfձBFAvsOjS^,.`ͅuzǫ}.b>L Ѡ4nB& zVtIɠEz6^ۉ_n~qڪsذvs3Yܐҕ*b&N)*Cݑ}ޏѥDC=rW PU(u~}VLPda>?6\yuj4HY!vpW K]Lb&*3ũe9nS#46XC~ȔxӇ/ ǰ,yBtC{D/g %C׍;J^$f%P[|\4ʂMBPU*>V>L~H @<(,ƢVH $>)'bxJ R)}\b*w`#IyU?߼@!}nH /VYȶsͼ(x˼7$PG(eG)X7'3#oЏNʒd(KŠ4/Tq,HWĞL3N:tįsICXrbA$`'l<5> C"#MD.H`-B_RA_]U( E`C쏣64bm2Gǻ˨z~ќ3ʟ /ru#m~H IDAT(Ĕ/rrL^& _N' ցj`Xm(>[RxT"}XRV&uyϝ<ՙ:XH3(/-2afabL½ zt=7h#gfQ7$`=s>`Յjj˫7<Z9\kurְ:JNkib6leny:?~|t^t_gEKuC |KXQO So1 hɶM@H#$NqZ 뉹>JH0DѨ$A t>OZ`eBdfQܺ'72VUQ!Tq`դӱ_tR'wEdʳ3)oU^jBklIc>ZְsDzRRYiiEiIyYI9QԭA'ųuIŏGUq' _t|17sr~][,FH?uR@ueI釡$5U#'B~''y"H&ձ*OԏצY"~W^yhDc0_vsV{0kAۥ: =.}T\ް/\.qrIۡN]^|oN>/goTJ߼.s2 D$`1 uɈDVG"%R9[]$d4T=Du>QSj 4,BQQ̜>?}aXo?G?Ed| pnrkw̭ߗ;'K5=U ##`1tA{VYiH9?Òf Q+쏀jU-"RAD*~.{)6'{ˠu/}7RroHAҒmceRp&zGGwi[Gg_F0=;#LSS2G⭣ǯd,^$|mxҕ?mEL>,s)UruX rny;zlMQ /bN)7ZJpCGPeYmE| 3us]`BQwJ%:] z>O/KB|jZ:܅;8twnƙKIR{ ݵݗhMUhhܮ[;ȟ;DU1d<&hQ}S.]=<668WB Wj+ZZ k@W]֯Zv&%>?ծNsgE`DɟCA~L:[Hrh:NIHҿuP`Ob,e,o{-K9A߾NOT?E :4F,<5Ss:>;08dቾ >^S ҭ!TC1'Fk l<N350Sm6V;;Kg)֊쏀ڴxƘxcJG-/r?|q !^T.*b_C?~%c Q:E,7 n w% w|ZunQh_QV  >L>NDĬU;$S H|DİϾ1]&B9ԐN{I`.L-_%të={qCH` 8lr:CDQd_INz"-y 2c+Yh)?y W fJ;`'[ϱ+8cFM=K匆c)ʺX!# g2MOdl<~;[E ~q/\+ }8$ɑ,Nо7#^Z&$<~`YDfl{<@!}ɰ\R參KWXxNxJˣF{Բ/wC)Y)YRlN7"d-(̆^ zXqpЉQ^!3tiXv6G_Hn‹B盼>紶upml-y%/S~B|X-zT ZMKaU-6woݽt ,Y( &Ǥi3ZK8}Y8~jIGH y`+'`_1$gzޕSH '`pť2Eq 2$ [L'`Xv-ѣ!N s"$`6.%ej w%!Tfmb b1vnJec#+eˉIP吢${\8{o W]gwQ#os$̤a*ѓ`[ٻꘪ34=:bm/ nHxJ|B/#Oo9"5Ěkkg塶][䟫yjQ %7A2Ic=OF> ^Riy;w 'mRCoxrU)f]Q\n]& Ta !.[OFwf}J.@e\]r=ŵk/5檴r6p)%5vGYߐ!|y^CSNvkpI!ؓՙw} ^qWG CH^Շ"Ԛd |[h/1T0T=4*;20j *ZVRTҸq| dQ*+ .m{k}^|E ʿ*6S:?v$_{}EY!^W?O%|} RJa]H]Ga̭%!d!("#a{B 5QtKxMi-]!Kf"O9ꜛ]JDZ6*e:E.@-1'NYN߃bLbǺ[ I*.L:2ҧLa,4p|3B@d\fAd#/臓mTFK(8cD!!/M^Vs7~n~,[heUQ>9a3$G}2*H'D! 5ۅXpVOɉAu'#sզиc<)B WCP,g `1`yEFc<`D2 ?~7,..͛f&.{畬P~rO<Ún- Gx&[WHą^⾃x"VAL/pP- L)(Bq8W|oCP|ݲ=֒\ ګVgg.z..aѦHu+oeJQݓ9eE%PP57衲͘Q'G-Y)Eåol)HC=<U)?vƮ3?1Z!@.496Xg) '7iRÐ98QEN \2{t&Va=4tJjkL,_a1=ϣGyy9X`yHҲ4mj7h{ŕN\|)Lo\H\(h.#Akp0^xD:t;`nu+,{1e89).p{T{QAv> wK镏O `7Bâu]tdJff,ǧ_H=E!RMwV̹URԩa`f%|ƚ8zZQ8.ښVuwfg9xݻWTTN]=fwjL4,2 @s**E|%'K]m*cAxm&&>jUb~'5lIO``v@>80ИCTm^,g(xuV`4̍,Jzg[wտn=b{= .󄏢?MMUzI,=K{'u= }m,q>yr)R0{n40@@0pkfĚ29`Dtxq3 L} fvfGOK$jA ee Hc3 TU  @Pc>T}G~ aA=}!$h5W]{G&b%~qb (8K`zAH $jjՅYznhӚe#$@H61{`@5B5nLĞ2v7 GH X%UJ!V?ĿgkQȜ겖Gq.UVU@H $@:FH~ ooo1R$@OCfnpR<OGʥ{nva<EH T|Ta4lci3]lLvn94R{,ްg&J GKbM\4uF+Gvy՜W,Yӷƒ m&fɝgNB+א>֒~2= l{}֢1@]b>T/\:nժ5n.'Ss}ћ%ffUor_[ 4kZC bT.p-x>4 Β1t-EXZ8ԃ<+lm MjV A=Z\ ![_L~dǓBjۏ`;AΨkU^F."k@mkP[ɮLRXPʽ~TQn {Z cm錗C! yiIizMm X'{# T+/`=XqiKleoՍp9]q>zM9k7Tk4Ui!!.r.hJ bʁBmTwuf¿ռ\7W\BPe+[:UO>M9j;'+tܠ1g5=amEyy ϞP5>Gt_`LE 8tSX'/UHdWH˥+*-++3&BϹ, $<ݑ %+{B+uF8" W =4DC ]͍hF-^@ !Q5r/\Φ\^]vQZv [t`͏*,wƼ8PN:YSaC-Kh9[L6+ନd<-2+ֆ=4;OE~grVx܃xl*˃Z[N.7yiΨU!}ps:˸I$$ :aJ:`y7d;_._we)WZ/͔M]LPp,ET )WYeihen$掲S$YgH fx̰pg;{ι9^.%ll0>eaVNӛqqz enB2__$K8M|h8N pPJb'sSjp at)_Y^/\PszDNW0د'3qDe;/+6!3i3_;ۃ}V1u65J.]-[,Ży _'ZC^ u3s2R-|yD<1]h}OQ1ByAj>!Ƹ7d O1(le1kD=slf7CF=s_J+:{b.D 'f虉f01Р.Sia5A3.\;H`yc؈?A-ߥ)Xpbku˷'sqh%7UM *2!Z %slnG 4c3w>;tFfHo +Ι܌3T rf?y/sB ᴮex8ueF[ Yf<.…h \gNMc\ÈI-I-ZFL2UA8!C{_7N:)t2|&-RVVf _>k=2E:!@=̻-`y#,ti͙4`̘ L ՙ aMRǚI=Cvͤm윂R𶋶n0=glgp'vaO c7څwYn1qj5G5t/Y^Y‹zCjUIe\T* [J@_%:> 6r`ya睸ӘH0a.|{e6iW.,,sC3'5gh+@7~)Z|Þ58/QeLJ1l4TOjHkC-[@3nj@{3_kZ'_y1-KǙP :x{ 88pP_<Μ9!d>E.?*2B[@l%SW}G.A_H*j}#p4\PثW/jٙp|Ѻ}CCD `ܷ ܰ "`fW2_7Jݲk}=eED@'(g|Z+~x#D@Z<F\o -TZQQ!H%ȠVi ﹴ#" wСSN>PLhJ" "`u>v&q`"  y`· "0aÓ#" A&_0yDD@A󡢖-͌iKyTQZ.8Mct<͋OeĹoؾ5: 1Cc8!J.$:}ӫ?ȸCvmѽãjk!>NQQvCZ+D A͹hzc56VC5ƒ"x%w]3%细9;?D;G>C4B( YXa =@t|'gx=<ܝa*Y=܄9Wn8#=FmoQG` /^$ q~|C(f(rgb(Gu?IщǤ:Iv 9] @b+"X@mN$}={ע`S J ҿ*r५ pzmni Gj=X@O|`== J 9uH/! hܿ_F6xty|Տ7fgIZC:A$a&HXVʥ2Őyȥ?\+$6R.ڳCg'\@ZQJbz(#0T7Y& 6Pzio{=KJR1@Ba+?k\sSy+Mϕj[ppt|=}6i-DZxݠ?|}7Q>x߂3ryGAl#!Fl~R=\j##9&1wvj|LJvD:<,h&<8pjq؄ "X+7#ĩUϐ>%P*Sc]^.iӶ+Kޟ͵2|Nn[pm"a/af9|7)siYi3i'ώGÒADs>\}\bYy?ۻ,oys GRw 8wc ]e3&|GNn @!eC#`.Pk5B"4Kdg gW)r >J5ᣀ\Fׯg>vQ ^q 'O3-~<2l("' @;Gݽs^i'W~JmN1V"9YOһu<>fi[h%}ȕ'd: PAcNE,zD?gdMfY,;GmT;lpT1mv9j Cd2Ku$BꂀJu""`y-3#'Ţ[p^y Н{QUK6`t1u܉Y Xw!\KE.pn{eΡg@E^EG_"Ow[ B4y`sP+$1DIх.#'Q&~8&^}ʌv2o2ki\QΎ}K*5M/}ԏ!O'alj&Das GI^n[8"f[Rjpl pẹ ܙ4=G@G7ҷ0@4KHĥ>ES44w]  sѱnf$2Œzcg{({  r.ͼ&*K&ܼ%ʠǸQ#;~dm} N&ݧL3I`4Qǯ2!lBeXМ^K.`_Fzb{2c@B]j%͘'іcTĜ[Yk*H ذZM$?uɞt3gīd+7ΞۭuB@RCW, {=_q)hJ)zPC=8y %utR(荡/k-9L7htѥ>%(b=֏ՎpTl5Q* 8?ܿu^GSS YWo_~2 ~j)85_m4ZG?1=?{2!4 p7җ1i× ?'<-UXpJZlކ a:`2n 1*T戸ZKO+=qv뮥74=!(԰:#{-K˖= c.c`@E[zOg,d*WB﵏ɧ)1,WOo>ߥL 9 X.{4+U_oVZ2"4-(zЏBJfN_n['UO\4' {w%!ӄGj"5ӿdxohz\6F#:ƾG~5*ݧ|+na&~p<0b?#AzE`Є|@bbb>^p.+%3d7Mը?0lFG(??:`v@8nH.~~$xn=WI vD`м@8rB y )69-sXI+%ut9\}N5ƗhZHpa{.vag.M~v@!kҸvW48(xzzS'Ž}Y+  "Kךa6˜+F]kxGWa.]xsY#" "В48VD0R\y=LR- - Vm<*_P2 u>ZE3ˣ3oj[ 咒"y[G!';| y8?U%.i@,BuIzT/6E }'+7{7%D9 ʩ=Q)XͿO`\A`%1iB"rXp]}fu[,*4տcٜjy@a\ TR:u._j"UUUܾ5ꅙ:Wv=6}jy9::>Ok>擕^zrSUy͒ʤ^s?{=p\ \Zߺ *"TIjIZ"UU UJ9e/P8Fa>-b ܿ\ONwG*TJU=7]M鼷鶰azRߐ#?Dh՞ajB*" p(U %ϭB:g%Q<Z! Gf\ݕY8BNxRY%UߕKVJJ+[zBa^Ɏ 5[J$2Ykgţr IDATfjقμǯ&^x!'bфOxIFY(Նl (j0&B}5*ˌoOpLnD361~о9CF _#yh릻ؑ'tǿSJ'_{gνvzn΍DJ˹YB;$%%&YPuIMdi?C$='l"E@0`la1CL+;ᜏ5Luof<3B TU*%8?~ 2";OG.ϹDkYwoG;aP}./޹LGP? 5i| R^CMغm7<ܺA/QΎYq+.3_.oţ"sdHP~ϊ CB楧st+4dga k2ӽ^ #1p_K Ty740$ xjZ -.Ý(rvD`cσ9P* ]4Cnb.̴KOu7Zie%{zWj^5ٯ ѳ냔-Sqd0v󀡍w8硁vO/[2f_gW߮?uo:cu>Ů}w| `A#\hF` 3%IH|{!Re10=Vw'Db!86}zbDUNm-O%$;J`qlM?9}NK?Ǹ NbO4y1^3u! 7a5*c@V=o~] Ƥ3:=ٯf0{uB}S7MlG{o!Զofv{eA>{D8|()0}́$8kŎuࠆKwֳ-' X27]/ Itj][<#D{/p,<Fb?U>2XLYFDSn)=:9#dow2v164ҳ#}IfVO ЧmEB{# >w/(wdR$>jP[񀏒܀28KuN5Cj[t|܌ CxEH8"qKp9*!2-_Bs~vW"?)YcKR/JSzƷb@cVxL"7>A.;оpþq#|@}-KU=RVKSQݥSx'GgPL:õ18ero7.x.d7o|h:uo Hku>_ kӒVT)/~Z%t-ּ2hEl64.=2缥 TCed5D .bYIjCNg $| sd|Kt [ΌF%Қqqz0D!Fvc &沈9Ed)v*d5 9 ]#?ۆg)e[mڀ<]I@TTQ`@YaPn ;!zl^{וVD+rv\"C 73F[8V85|ʘI'd%^_5WpARܵqϼҋdUQ W4+:pgZ b 2H@z>k;h<9A Z:h,c9fOcм}0Rc)2j9w-fmG+ѶED&|=JRjcׅM -^X B2lӘn kH`0ᬸkqԈd2;@F,M@/ $oӊJׅÉ6HBT{4fd5MFR_)Iܠ$sDA[?BM1h:$ Pr A0_ASx/mI/esGx k{oe:IDJbƬf&a&E[A@*VTTH$2xes>`01/2ŦMBߘ~}fA5Wqc Tx}D|dP.6/֤Yra2<qr  =( tchthdLb~@!}.>WLhKS#u+lsҎTflPL *ACniH{*Y`k6_EƭPK 9xa:D2v]dfkpDWPv]Nq$O:+A[\#ݸ&C2Pb@r,ٴ04̸-*@|D;~o2O Xó&h16#[m#, !SҚ4ðb~NlþͽexPq;un?NI\y3\$4烮3̏zO\ff #86z=s}C\hPX0g։heh <=aHM#8&ʘS3m?%;l'nX8|8FiYg#3umũu1;`Μ95OͩtZ& \.%*~[S޺`o.7^Ffց vEFSVy2{%Q\]޵$C!l詳^;!`)GR|Y3_8"g.BjmeJk ϧq~D LdVDHmbJ+}#PwOkBa^8?РL& $]I?o 炷]^z>hƣ^2G#*6.\FTE5- wa=:Ѵ0%}a;" !ǵ?}u}$ΏH#8{g岣xFTr>utf-dW[2*8vD"ulڨjFi;oK43YSɵ"ROuv' " ZuܹQ4f*"PewNppm? h@c*$†E <$C a8`lADVZ8t[­T+uUx"-aM%!"?y۝;0T@Du0gG@}܂Ux6cP'vj P"`yǶtmSm+LV+d *R)VX)h߻xɰsGꀀٹSLsx>p:bAZ8U:!`9z3< + U u'L*ZS}:,O>"2 Ò Wn9=h~/TIejA&'JULUYg*C_>`K/0 -Q8}C"'{.v˭vuDT%RU ³@@|vƾs_o?TUAUt(yb%}  नb(kæ?.o F6V`8-\/ v;lJBWjؐX)i)MksӧF "`\.@OHmRC*'QE*ˌC4ƾ3z(?{|!Ts]_>Sy$7'[ͷ¶|=4pbjOO1L^Ou2ZL|0Vsf>oצAPx:uZR8Cނd`ӧ%\ip1nG};"8}Q;94@5R&RYIV >T0>d2LtJg8{C]H?sjD!yb+gP; hL2ט`ۧdeNz0‰)ˎƺ5S4Gi>n9C!XZ#ΞImw s'z mv~p#hnX ,vDrb*Pfkx`ccyTɪdRP؈C>>>cb01xמGfƜvt7LTiJ-U{;`O|L [gOChLOBYQ&ZM̡1Tۼ&CܩڷgJu|R1^'G,OFL,e+N=_Z6+=\M@;2d BNų30}usmWcxLȗiݷep>}Jme|9E?De"v7<#\*m#*Y.<83yoa-x]\=H]?n`p1& \ x'DuZ!ȡaizz;-s!}FD#<of bcF4{4a }Q9X1AE3F- ›,Hvy|}ƮY]c;szaftL.Z :>'xPvv NBG%xЮCg@6҇8բW)ᇭrHQRa/͜{0}Mjb}p[{ \pkBڸ!)@1l!󻈤ЎGvɼ~.җö}@=5ȩ50y #ӊFa0P@3251V !d eFN~g;NwczP1Fv⨢JvW]@* +{O,{'Ȏ^>b ܸ(Q/L= @@7pVȊ=aTra `XM&+HAz 쩱afGzE2SQf:q_lT a{G_Jx&#\5O~ OZ voٿS!UZcEWrhLҬCH$eeeAV6DP?Q;jc|2GIVpHc&s/9̧++瓀Yk𬑿Bs#bm( sE84|XYKkLK.hi\ wJ8F([hSkcBc"-%%--={r\^YCUUJ;oXX 15@-B l5 cKaB($R.3TF~N} 6cb/'xeBvg9|sEճ@(5 |XYa! V% ,cm_2uXxVȎone挗^[¿G[ak0@=#~\PثW/@@s>dvZle65;_{@`CRA"ՑmwL[r>Vr"`|e?%T寿{UV)a(XšΈ@ @<&Ѧ!z~~Cmt%{a|1e6,B* * "`ܹsg̔WVB硵Bfӂl3D:9zn^X.{ c_c @:gy4*( @(,زp<@@hhD@Du>? " "y`B@D@,F~r>KfY v@D9.vGtf?MUa뼒\+mwPsD@c ̩5"`>Ouah^/%"-f9nX888nݺcǎ]twxq &uX(wrUftEzäE]Xb;Z!ܑydy[LV+VVVTH+*R 'ukܾMkubA]y$#< 8L*i۾ udXƇO(G ''mʊ6ԺabP mmQVj.w.öƋk['DžRi-//xP^ުJ٭usn9dhyG[ & Ƃ `On۱}%X42^.,]LeJ֩cU+uNڵ}DZKG~S>oD|y}l#G@"yF`XUVm҈8Dn\ VUJ%JڴuK- Zmi@;:m BZMࣄ+Scu_|ك͎KeJ9kօ0F(96k`d_kId(.ےG7D>f+ 7IDATqF%/Y>|gS, q4hf2pb$xY'L~2aBF (-;" .,;Z^3$V(v-//UrAb|Ϟ/cvgpeA0#|sG0%&IKMYxjUMn_p& (9!L۔% "oLFNFQ3AN@3E@gYZZjVtaEXR \QX+(!p{,}}χ9ji27_},#TFj)RvB/NZ#fH)bk dS Qf: X4l"S5J 7 t /"l{OM6_[0 ,25OJ}(F:? ,rχp}H NX{?"Xv#XhbcؐDܷlJϗ ^WlY7Bŭ_DbdNPH_ yYܪaFAL):ݣNqi2|@HI9QTE35dxbHĄ^7e NL޼W _Fz0ᬘqp8s'ӯžs> B4v6OAhdxc,Q;h Ŗڱo??;994)˘ LVpqKl=HX_Ϲ'Z_@X,&~$^ DOzwH1B}J>mɮh50i5w6X{KkHs+d B+8+LB?KmMT_ÈImeA۴XCL7V#+K"Az@o=j p}(UD$cƎns\T*˥ren?8 N5-\EkwrzGwk,:X"`7f1n`;e0`BFDlopYyx |P fWGD#?Gh{49B *Y6z+D"~;#"д:M?JGD8 * |/>?5)Asfٺ9@֛r"G@GV H>aa$Gpb6:a1~h"Y7&6|8`39DRRR r ǃ4[nGG ϲ~"]ٱc.]E!D0;w&M/ <>n_ ,mpqqYnnnh|4(^,5q|LZlYgNN:t%\4U*UC戀#AY^ȒaIENDB`PK !}U}Uword/media/image16.pngPNG  IHDR-O pHYs+tIME  5V3&tEXtAuthorH:tEXtDescription |hardcopy|2012/11/05 17:28:53 lim_j SGA250167i[Wl tEXtCopyright:tEXtCreation time5 tEXtSoftware]p: tEXtDisclaimertEXtWarningtEXtSourcetEXtComment̖tEXtTitle' IDATx} `wo% AEDh5G6-Apx!GD5DE \DM"ޝgvvv=r_OMխavPjC؆4`kt E@JPjMٵm"@"POHЦϏhg)P(ՅU~gu^<^=Cڣr()]؁s&ozKPPlkR#v@7P;%CY\[0ݣ~qI:X>33nΟ.%NH "Kq`Z窹#C诰_aL~P):I]Ye EB?9ac͝}),!ZBx|A^tru_}aO*0s7 EDeЊCSƆPagξ̋H53t%c}?W=KS3yT- yڷp/+wvct΋+}jSy6N{Gڷv4ߑ>%Mo~tƪK3ȉ1yI=;iO- 1ⱳֻ?b ;pD(r/Xٸ?PK/L{m6ݳsR"gCnE`Q/8w\Ӥcnkv)Do>nCN䓒"Xz2aa>ݙ8ӧG#];EYѳsihi]#b^ ɹOO961ۊGmk!3;&rapnqihۖozrlkJJkDMo2f1&r? M.!iG"3}''ugG'E?IRo^\iz"pX~D$/?is9tG2+H؜\%WԙܽiGGF(#K1g%?j`: {|o7÷c~ZypiGߝy's(|eNDӧY98mx eСcC JFл)+?\U<\wٻo?@l} uWhJ UdBVl;0w!ӶE +ayo:[+% ߏ?pBIwT;[ (\J5[O߲eګ"8ex}"GMzq6+qM$'\b$L,hW3nUz\@]q}b$BqJp\.P/GO*;CPm3I.Fl ?I0\Mj:@.'ſ!P M/KA1VoJޏ!¦TDGQ}Dv\rPK:;yx>İ"?}} tw&|3,0D p]ωBhC /˴b@дq Ӣ=B6M;{қ>&zqg=k5X QfvѦgnhElgNt$؄NgRc8R_YnD8# &:`pEx?}{xmIӢ.jE f=aQyݱa._nX7WIܼW<"\ؐKu~0|hWd7x;R*Ut̃{>23) ґ:–g-n[ű]OS#uYMVDM'F(9Im{PIslpLD 6hQAҐ1K6a. .(= Zr*lB|x6*ZP/ t(wc!Ҷ ([H6Ê@b6nwVtiqU& #POQ7ox͂ڞ\Ù{ mЀ Q&P9CY)1hR憾s.?mW!M;AՄi|t ?K+=&~Fvu1Կ.n)]i-Eb)n,/:5J]?qtUz/ח@Y:"=}G&xRmgvBG"H'ɨ`ۖnm!s3B*+T+KA7oxV{`~``P[%һ˚=fa8K¢Ϯ0PJL,\ͿI pM%;eԄwb&.(Lu͵ˣ}\wFE&$¦`_˺/j&N IP^gP LV;>EO:et6)i#puɵ%6#D? W. Kdۿ׾weGL4d?:8eȮ"ٜn̝^a41Q!4WW_K}7(dBC19nR4 7!6q7$rM$ ]zKxWͭ#K憩8u"㹟y*P =9i۪j`#u+l~[^T..vOhAN fzMJAnu)Qr"PqivN3T]@!k (9i1E `PҀv"jZ@6C7G%(uŋm![94iԨIU{޺[o[[ҩOҤfbU_j5Ytx*к:D^pGC!;kV AMEjEwnۼISq{أ/iP_F}uRt7m-l3& ~ Cq g;d4j GvMCC46 S4 ZwNM}0$}-:uDoл6EZbf5ZMh}?kh{rޓO,I_13̔@SeRxcWxn(7=$4kP^ZҲ27GV?_bpp_JtVuXi&zQ^ʵBNtfVh4{;؛^cwW4ݼzo?{Le\ X`(kJ ~܏]4*1Ez^Xa h4l9EB(ExCv``l:@ƅ6QS,јj}Ԣs%.9ܚi1X Kk'V;"~ս|(#iןv={*" % t麹<ɄCns1BV+lvjƸn*zc<8}UOXd@?vNGUyزeϾZ$3ixe'?g~2d^Xkׇ_|!kJr.\i7+LOul\ W(2B8v̕nVClVxb-V+xVIvN{@6m`{9=!8,%.?xF1j-[AŊ#QwxBZtޯB)TڵkW\X,!!!%%% ܟѳo234 55d(-,*{cM-+7<#yn!VAc6Džu0h\+ulRp-@h3_`֨@ȶ-S>3OtqKfm:Ithى;xpKK TV&Olն#h<꾖t+޵d6 e^Xi .5A 4#ׯh}M&CH0^L8,ƃ d~0ʸq'[m۶bec.@m ir{fac7vJ`ԯbJ$ xػe<՜e7]^Y)#F9 <ݿѰa}p&Sop}0{CPtoZB/~Xm&3 &ګcֺ}-f̉m-o+/bcVA?vg ꅾᚂr .1JC\G=aԃp??pa$a|8wլ^X=-BSݼƎQ g%䝿"Wx`ezO[DsR^qLw_))[6(0n7nXQzM4.W40&!}^Z)x밒g;*g2 ̃0L)y7;&Pa^mQ1ԩ\ʹvJUJS:D<ԡ:&SlETT?l5jz|ɣmC͌`!zXEkovh4LQ;y˹ͦ=xP)H_A_\9zn%%G7/}毶ڬGU6j*͏ãw; ^yQeP#a-`1Yn B6Q57TÖJ ڰC Da:v! !.i.5!]9uU" HҀqA?@@K1ܒ hFF{WؑA׎`n#쓱=Y]R9?E7bCBlmδ)<]1V@)7ۺ^C?=yՆ@ ƥ3rϜPb5๲֝о(<:rI)=53%WO$cFX;Dς4@);|w嫣o~oNӇq&_aZQܕBk SK`Y9dKE3Sbuxp/䊬ڋ"#aVVLM}l0ʆO?|׌~{I lam6}ꌜܔHQ0XF?|RY ,VA F'ƼtJO|IK~fcT+n7f%1<2pRe*! w _e%Fh4lZB4!4ӿ-[\|}VXal P{:1CE™4TƘ(۬(J]2Jw5k',͘q Stf,lkb!uıNpI u#GܴiNsĥ Lſ)˲}`qG_ny Y9 cS-]E <,Q^ 5l6v-VK`EI5vjjرiiiEEEJ`~?ӊ20(L.XJCzxܘ[=<#x"X;G{"?gC`4L 5@e͛_[lT,O(cMc zC^:)nV`))YfmN^aCJᑝLMyEkq8꺁1cϊ :S2EJƍ=z]w凣:&3?#閎2]Mi7 А%(kM.'<aY-~QLpSY@x#C]KIpu>]x[ Z-Ȃ#z@[l{CM1_'s|w7,X_~ OJ3Toٜ]TNeT]R P'QҨҔF$aZn7X<Û:{w8S^Ȣy-_nޱ[I"f11 dN\rfBYٷ-jfh4@e)6C (ov}yt礪喐v_3"lx}MkPCS3bW}SԎ@e[OT?!@FT\Jl})jA__SF5V)_[_- wc$#ȵoO2TA찪|.d#uVJl6lpv-[6KsdpV)h%ovXNk]Su,cㅇITeGK6zvQE7;||,r䒌4>uƌ\{i?N g޽BF6q.S>jf>$L9ѓ3QɑSI>$gq.Nkqf̻ K";>am㓌\±qJ"TG2~mL\8}9(͵Rdt#+]ZFGg;15r$C|g䨢\{I?TgIu\祥*c5;DHd~ [BoDd\{6ٟe"J&M]K2ݱ2>!o޼#"&U#M18Dw4|8MGZ d C Ck6t9U!$s%M RNҔNPF@=v6_]BBB1}٦?ns%OW&w>f1d١u@`"뮭7߾kyR^5!ǯ&١@>SN!PSv@쌠b;_rۯ1K]Cۤ4Gmi[ST=4u;,at~٥1?ә2 bV&KleBC4x4m6}ՍfTn{TH΍rj* @zNȳyCxPimB ||B+qie6JT|Ǟl-2_JƬО+EZ<ŒK3fjꇺX+iJ4*!xK6q\ْ \#C1WhdLI! 2ں\e"[)N/2vY+,:K}GVCOZwײikSx&'ٶɐ5Mt(04 j.r*t=bH<# g2q)=N?KE wTXa]n|8:A7Sf?_'-J K[aO}“BﯘѨ~}!:(ҮGY_hV/P$ѥ%u՟} PBnbiH{D)ه/2*Ȳ^yj  sRq1*Hؚ-0PtAYO-0A;f4yjَ & ]aJg./ d*%3^8* A+rE,@z~GΓމ"=ԐPΞ#~Ai"ĥ`d]n,w^ʮ\~LFUaufy ~X?tT&rx RQ.Ľr}E!?1لMFB͎bwٴas1)C\B;Ue("ٳHA<ʲ[+ϯ IDATlFXd)5_1;t /;4{G? I[d2dߜ02MK!Qgm : %,2 %A/ cLgsNQҾ+HC䖊>~b([ܔ)Rk)|>~^-ѓ80zcMK \[/[%݇cQ~݇[ĸig:kNK/^2ͅ?69;yp[I6|kkA7p+Im'OH-ǿI=BnjecM;m>o#_;L9C>>ILcm=m4ܻ$řR͝Delַσ_mrd/[ ?R.mz4jSsnv?\rfBYٷ-jfyh(:WPm?=y?DP=AV&vQWJZȿW Ƀ=[Bk5{ "[$RAk7ӜwUJlj?|uu߬EFvf ?nH[R*Ud pu 9쪈!﨔E)ݣhL*~O@ڡ?1ǥuoL*D*n@G@EZ k6O igI\ ]T e=cV2z8҅N0!gk [Bl&|Wkجh j{q;csb3ոr| ݚ&|XGVGޞ;b؃ @@vˍ08_(3Fڪ ֤D?G@Ef!5P ~\I=O{Wg-mSڭョWEƈ(7uNNF9x!nT&ñ /V,X\U:-_j߿tRYlVj7Fsٮ?ZkviYw~cƷ_?x_+&+I ; Q6A(\VMF pR Chvl`(*.3ȮvK&; RniܔkF|GC -V-j{}?cY8v;c1-0XBvacL?AhP!Ƅ%k٪9*Yq օT v&lv K rFcV]*Y9#eusF5MO켈t Dj_~|P Fd,sie1ܯXni+8n{>k -t} q]w=6-bl6ājvQ})]V-VX:Ya!6Φ@B +cTZb( g:{cU8|Ś 17ca&2.".EN<%j@DГ|9( 155BSڰÇq"ѣG'۔)Sd X݆y d}X_zS_Rd(.~ڶ n3_]*1s#|Ǟ8\%M"G&#ƣ1ĥc y)z"!V< ~]dQ 6B(/U?;My:m zzs sR/L ׁ 3ϭ-_hCoRSS=U _yc TiPF<%f$K\@B@E$N01 7HEvނ;H#~R?B}v邎eXkja̟SS`\2s4j;,---))15dMN~YuaTWP̽SFn͛vxM^ߪU pjT[*F1Ț&01vUB4uW;8*DOn+2YћьӰXKڨ[VM姄s(W^[~%b;ZBBCl67dmڶmUXileZF[f,VgDC+żV&@{<7>}o\qƥ+nʿ9.d3yEvE_4lԐ/4;1!۰a:e=#-z=֗h> H_zɈWvZ9}~֊V腝+;:UvG/4DJq!vxU@Dk|@gwt{uA51CEa+ٵVؙ]qo'p\hl 6s6:#{ V]>zlbgry e gq)6BDrKc ~_|LJ`O_^q sH+b9yzN;"R+woWRY"v"_!lX&x)>F<*u:v 6v {Ђz]exzpӇzDv"E#K)lB=x8Љsm! jC6vXk3#=;#'iڡE\+?qkLqӇo]ȶ2%roOGY썟 D3wq|g*ஷ8bf )1xpѾ,u.jу! c0O :&fk4d_0"$ӵ .^lΞDL,;Ft9¼ǶV.L[ ڢaR/R efeoeaj7w#=i0 ?QBn†x@W?VtC {?dmUgMNLGa}#Wv{'W"tg}HX+^x9y1N݀:v{w7&.Nc_GO l2?tZv`|֧~{K %g?0]ؐ'B9W@ٰB8R|w[ n}u#@v?&Q~{[裭a:6lVPAprc3n;N7d{xHqГ1O2.͡JZ A2D{ +A=閿F[a⌎b^}yc(Ǐi۶^o N۴msov?#k;/{́m׺vyį:k鷌R+uxƷdeeyLJԼT)uHj""2Ʀ:[]MTS(QQ:G?P{\i-M :F @P2!ju||&e r}!K֎ kr}<5\NbЎ¥WP澳.m8@-! ||K$^+ϣP fƫ*.j/'WZ Z-,g:,WqxETv1ܔ 45`֌5&Y2{{.7Yq> u܈ 'Ojjg=2\A[k)?BI>Wbܙ[Pc+&$(qW?]nRg+d=`"s*aXY]뜜 QEbY+~5UC񕰉3!gG8( E3f@K2A$avu))K\Q>Q,ЂV計gd~Ć3ŰrEΒE8''ZLS! qb z q(وoH G9bnnc ƬlXlHx>3K2.³IG|,:'ҹ/l]_f%.pb|JYqxiխ!yȄcuGSe%,(V,˘3n0M<" }#]i 1caS w3? fb'DZE4\%I -Յ!\u>q_XXJT[D*\o s$TJ_$'wΘ+mV-E@+j:z)v}yCݍgɩ஢2򌇄bY؅HOu7u"p"xE6qć"fDewz$~ÖI)^'_r2|+ l }>mZ26wEVv?K&Gy$Tܚy)ٲػ=WJ[5ly&&r7rZN+]Dwx8lӁH 7b)ph"4@|b{b0&Yɝ{;8p"ڱT- k]C8+-E,Fܫb]Z0aA]!.&|AYCD |hdH< ^K4T8?>>^J_TNjFYJ#RSS=בnUj|*A+SjK_|v(j"*"P8N*m v KPPXy)N_#@Я* H\{b,0F`6ͰdWS YBQ,uJ*е"TQ^QRT`*{L:FMBT~5  v5#Df`yֹj=*"PCz])P_n0_3]ח߄9)x-K.!i2+];(;0.FEfP^l()/+ >JS؄JYJ(MͧO%?E Pd+(C׊QQb 1IH$YoP@u! vز^q377Ʒפ{N'a߰wHqB8q5|vgp$I0{$Q|&Rx:HT@ءb{ҿnv_wp-;W󓳸"d%. 1dHx% 8sllV|B;G 8-Q 1.9ۙB #Y;eR?lVgy\d=9 !7]YxM;'~$`6v \G؞HP"fL!́IVR$/bpڐQgj<$@C}Ǘ| ÷=`mr6t˺b?p; "QCwv2$^{P2Qr5 qdZYzg$&uc\cb{C gOaé8̇]',G>cCaZ&=?utt :orIWee"ɋ#pyLB̾$MKɦ@Ni3VYljjX3_:%Rl;ѡg3"Бpww$̂1qduՂ"@ ĥ̜YSgHN @9}扏>&ee w:@ y||T?A @FՔG @/ rX||$YܝId*񃭘V/\SDũYTVK 뫲r^acbęo[>T׆m0nkx ctQgkP7Iߕ1*!8P;sUs WEfw+ϙXf[R:Q;M7/PlbUGQae 7&y>Z+!8^::Bأ9ca,gOQdqoЎ$7* Vd͘$uP4{3oe1$D/g<QBvJaU0qU]>=)KkҢ>6ٰ]tK>p<ґxNE$G+`euAX)%R8߅3 :(S+HՍs~H,ܿH`&7@C>YIO{gN/{e~XI[΋"J+Y4}E%1.hܱ̮DG+yȭJܥI@Z.gMQ Q/9h/Vd.H#BZ>cccvrp-J'Y^&@8J$'t<2}||Y>|Nj.S^*;,ѽ, X||3^9~L;7u}sd2˖A.I\{$ܔgJgvҝVǜZؽ Z CX ޸Lz 4bKbP8*[YM6E*9džѢt{(61_ppŶzH(pʔJgp\9pkȖ$xµC\D"i \I4_wg[Gp+ֱ*u<>Hg~C'g)@9] ê+ȫqI”5ּlƵw t*#)r+H\CU8@찪vA+`-_mu)S]rs~!,PJ5_5geo;''#~qQ%*IoĪpBp23\^T\dg.:G/hp9P!gYHKذ:JIpTяK:{TV5_>}8$&' $갹*8^:EVb6ܑDl:mt(K.q 71әIOߑKsGn]J#A= ;||v9ܩYQHCeCDq4s!"f=G Ek^> h$ɅeR TR1RzvcKlv˻Rqً{=ݲ}k|e_zmzXWL1BOǐ]΍XHl@5g;8*_Om+`lq J&,IDATHE^L#Ʌm]tI`rq+2UU}[~_vX||v9ӱ~0MLn=78y(..ׇb<̬)u -xf]\.ɅVˊT@wed 1WC>|z5$oḏεHzs({VŮIcF$7a_Gp?fa᠑g^̤# PR&_A2#*+#+!4?ƛV%|| U"D RxO>>= )kOB@!ǧg?"-w3E@Cz>Pju?T~epHȾjDpT4,^i9w7%?|?\Ӑb\s||i-/uiصQ g)-C.Mr;\"hae1&(i޵3vfc*ߕ|pOfxdfdoϝCV\!YQxl(7b>+|_2#XrS*@-aVVVttt&Mh 6r#<5MV sc+rbn"-bH }VZsIX6%?GH~CAq_NUC**n[clFQa&2_"C伥|npEg̹$E`%2\FW6%aO9}JV%;˖-/_VfcB4PIc.Xʑf*VcU_n,aԗ+qRf$>Qػxy"b,r* )\2l:U\6\YiZR'Ԟnzȑ6m7>[ Bc-#dz0Bj(TnTR\ U>Mʼlŋe(*C'@ceh P{vxjjرiiiEEERxlVD =R`3m VCc6V)!dh2Sds,r7$}|~ 2ΆV(A j7oǏ߲eK)p0'fF6p\ʀ'FH,\h7FS~q?䤒u \% +$;ȥURu٠{ƍ7o=ztD;Q0nX!<Fh,F/&b6- Jĕǐ7%vORD*a+6]1Ṉ]M*8H1rFZLJX4$$d*w^<ͣgLv`3v,m4_$`A}M>~=?tGJʋ,jRx\T/)0M =՜"@-Ǐ0Nj0Ş`4>*F)A lU"@PCC "`ӮjX!@0vUP;TPłjA4شEڡj*DP; ]U-U;4T Ba 6jvڡhiWUC U,vDMZvhbA lU"@PCC "`ӮjX!@0vUP;TPłjA4شEڡj*DP; ]U-U;4T Ba 6jvڡhiWUC U,vDMZvhbA lU"@PCC "`ӮjX!@0vUP;TPłjA4شEڡj*DP; ]U-U;4T Ba 6jvڡhiWUC U,vDMZvhbA lU"@PCC "`ӮjX!@0vUP;TPłjA4شEڡj*DP; ]U-U;4T Ba 6jvڡhiWUC U,vDMZvhbA lU"@PCC "`ӮjX!@0vUP;TPłjA4شEڡj*DP; ]U-U;4T Ba 6jvڡhiWU@=jP=0:~5:6͇ͫ.=t}|$iq`6 1c`8B^"1K8:4*T R+iUj2 cg!שg~\4, ([o&鴂+ByGV4wK+[ NbS6Ov;.^?~B%oR${.]9âu*uie0Fc#U"asߚv$mNRPhGӦMu5Awvh'vZAŹ߭7s9sS^OnK6(yoŽr'"pYVtXp?Kb`m9#$`CJ_^ !jW_7r<2]KQj{g,k^wnɘ1QӶwX[ a䘨y{LJrƷ _rqc17bvtsjǤfcƶϢи9++AS/0+5vgm}0cϻׅw'o6~8wxDߥO^9D& y%gs;Ȓ4i`9WT;gmKCVXviw43qّ (qKFg;Tةԝ Ǿ;wtSFuԢA5ESXG > CΚ~dSҶc\%4E9눹+FwsG{bwvLT&1Hn- `/|I\)܎ .c kM>!ظq=G}b>/rFܔFysHh( \s8mb?<sr9lieչ<Ḵ D0Ey:TIiVC*xv!{NSZR7ﱘZ̖{6֪%ۡeK2:.`6;~B-M,ɖ6k;}+9d?P=mmckvBp,}YR@To{UCPF[Ď={KjV]e6.h3kyx9'V#fzYLunBQZUp"[^uQBJ^90敫Y[ܽ-OҶ埿\}^V5:Us.K=SJ!gfSJՃ@Yks |CBJP|GP*An?deRXRy'd9?>CGIENDB`PK !Æ Pooword/media/image15.pngPNG  IHDR[^ pHYs+tIME LTtEXtAuthorH:tEXtDescription |hardcopy|2012/11/02 14:27:29 lim_j SGA250167hk tEXtCopyright:tEXtCreation time5 tEXtSoftware]p: tEXtDisclaimertEXtWarningtEXtSourcetEXtComment̖tEXtTitle' IDATxq&3 &IYbbeYֳ}IwwI~O%9$(`YbA$HE}SSS3a jU_UWWϤ&=0ILz`&=0遲=P#TIʤ&=0ILz`&=0Ԣ~y_V|rutԗLhV!DIM#o\[B*64I1seJڔ2WHYhv3ۂ ,lu<^KV]s- g+a`XC7^{b- EFgB!k@*6v㑴 thDq'11š * RZȅmt &445 HV̉`ŗinjEh E-#85U˖-x5Wo"00=\p6*6t-U wmݶgkolou\_~ÿdҁH$M0jIc!B) (у~}4Ewh#"21)) hu(e-IbBi\:T9g%)Hd8˸yfٔT*lV\1p `Y 1XUi(͓kkaJ iR&ad8{@WU|TU䧾VJ8G8ç,?8G0deEJr2d+#b'PgQ)%z%̠Hwڽ^b+%l2#UUG}K/c}W>셔V¼;w='}I S"^ [O^k:W^>5mW58<5$ #gD9Nv8cSQ/Tv`:bLA4RU7M lDt*2U\L% /89AuJ6 `۲uC|Ν G0K-V:i`pg ZEsZdV'AEAs -*<&ɽO8JPsj ,A,g1 lDc)oR;HFFbQ4UpβUNP㿬o:Tigz1^P 02zGTCdD:dᓏd\=9 }NÝMN<\q]&6uVhq%Cȧ+~OY }_*R CHYuȱYڬ9;M"pfe*X#ׂh|~ tDp XKyK#ކԜ;_U¶fXidsv &{$g듰̏ⱱWeA% TZ(HDNBӕv8e b*3&JZ8U$J4"ei/a;HV&vGTPtAffN!XPy>CiqJic]2 GS ȘI<^VӦ?Y5OXP*CEi6ZqJ]|*PgTBQXM]D 2> 2TalL8Me"J@(!0H@fvM9Idӧϕյkw*_{o$Q,6m߽g6I9ʞm9aֽ:˿ b0 6gΎGc {< .AGxw>1?cƗEd1IJ MĊd1&  6Sk4q_$XRKd$eADR;c&xZ[G(-R2dY )"l_f(>8[`{y+w9Ly{/~*Yb*4sh=3̐U|Lg3U8͆0Px"Hhp9rPe%gEse߉qԈD@|YH %p s׺uMr#%T}$c$i͗] ʘ#7l=CV*đWF(۶mKM[,X`Oa!e$JP,J3R\KQ3Tg~O+$!RI+D@)o Ɣ$˚.ُ$:3H OUũ, Jk1ejMRUR7&Ȑ=CO3KnSFN1k4O<>, c-͓%+SX; g(cNuH|VE$#%l$f=lLDCf&py 'T*} h 3X6KR,ՂDcaoR\%Jz4^03EtDkQ`-3_/m܈ ( Chmmml @~hq vB .փAϓTILUE]ZX(Ȝܝ %(Ƒ:%ky#UKJ0#^ UaIF_,%P NkXA~oW f _*H~U 4O-Av(CQ6jB*;'B1TOX)?'1cG$OR4?TACJ%,%j&2m|ѯ2 Dac"]-8&m Q}m& $ou$}fAD:—;t}\CТoq v O(2J.C xAIRVSAE7("<0:V WOYX a) uهbW+KOgAɊC*эT,@ `h\v~C(ұlK9V t;Ld_ cQ*o LMMɦr @ρ%(+pllq R(] (D@/x 94ZPF q("٩'h2e3u350m>Gߩ*Uj>q&oa ?2YT<ȪRܤ63Tlxbts9xb3QQ$Rw̐Hd$q2#8`Ai6=q=AN,9,PUˏoi.ʽ=ny=6 3wMÑaG&V^rv!sA hxț*Pn2_A YQPcTD ~`C2e"B“yd؇Ul '26%%TʜGȠ@%mROZ*M|w%oMQnjr<2`HPњuc09ƺ[}X0?PJ)]r9F3o[gmhiSd<0'!Oз#N(pew!6HD3 )a1X(2딈k"A5Z wW}dN:${F%P3b? X(%@>(gk%$.]{Ei :(aA)6ŀ*}dOPBb$)\G\[1''A8O(єە"*UMi`sFZ T'E"gbcʙyz'Q'f)9^d e qBBtKIخ%?T >d dޠ)S|äV 4GSbxV\OX.0 |,ΟEX/aaߖ#;>.m⇓\ɥLWZTp<_㣥4^8sYQPDV A@d~%Fr(وͭ'į|6N&ًO au8#aM_1D.[,p* _Ik/Bg(T@dJ5&W;MA?zfǓ. @j”ȊBUݙYoE EAf4/c_@}͔p\fӈ:eS k6N,c N2=#2+7<66Lhhi+'/r:${UyN2N8T\ɰӸIF"Mc)Kp*EU&& p+$CBG^N6#N¡O6[8 bh{VKh*R 5?=F#.)%|D_Bo0q3ZHr ("W!q+Xd#~kl@ g!/$j%bf6`2,$ ah]I!裤`([Yl ly(02C8IWi0]$u4IɃ-ٗ1ܸ E~>!ꑒ.<'́EKdQ*2/ҤXk?y~p&DEU>A}ZdJ2n2O!?qp pobp wC 1CsB*H)VO269Z07]*)Q؃`P~3T0G/ZxUVÊ&I2R<<%UNUi B` c"1@0MIUK"9A"r˙cıGQ!KQ^ :9a*G~2]8xA-9ɓ4bA1M\$ri#j!4s+n|G*b| 2*N(;$Aa!rwKp"F !JJS+WG9c7lxs}N:D2=I esGE 1$#͝{)'9$n/,WeO^e‚9_⫖"&e^x7W\q/d1J-ոDɖ_vp`PķSQ^٪+VfQ6:d&4C6xk>2&a$[Ay( )bU|"̦46ΰl7I֌MgdjUGt\H`4 cfSq͘d QSCsMI}UW]~i8] A@̣L򰑁ɉ$@~dg(;.ԪpPteY`)cII*zE1b/ GMf*JiI9g13<42|6cN]d*(Ur rfr8r%*]gTk 50ZQ[v EC/P돂bG&UU\%tquDd;2^HF5{yiU0t#Œ: *#(5l~+!K~iPw Uk_[wM>`MH!LMK4Ͷl Y+@p"vBxF!}V{Xr޵:Xbc;R+킅FZ-(٘"\9rM)Io<TF dX@IqPw \ƭ$DrPQU(+23 0{ڤY2]"Z]{>-Jhf§7) 4AxhS{FhsUQ ac])-ġqlPIG&qg"A/8e ƌ[TɱqTp$`EqG r2"TM(IҘu {E fUڮ}m۶ S9B|Aӕs|Kl!ȜdɪZׂ쫕3i3Hrn2JJYe7D$!XQe|\4%p 5JyTO1U "0&9< g79 8h ~A6H2@H$DiDRGeھ|4Ull2TQtuE/:Xnk;`J\-~C3EB=\ilSS!zZ(m$+2,m9HW1zdG$z,A+1Ȯ9JU"v呯 XiT'_ PHDYL2L4im;ڎ?졨UMI"Bբf#1OCc:ܐy:*An_\|0YBUS.BLE eDO15psYħŸp4xSxɫb@6Q+q?4/))?+k! BKQq68'(PQ8I$% (Cc4 ٤`̬$(- Qba Wŀ*5Q[l>H]iq٭i5g G 9:rjNQiGNij67^?/>9)ɫ&iRTnjiqG3T =3,!j \ƚ eS8~DN8|dE*= e>Ip6@jabBQR gz2SsFE 88]J<+Tpee]Je64Y!0'1~TĔ%}KJ*(]I‚D'靭KZ[а]f '緇(zQy2q@ ]/4c'&4RZq(vb4)\NbOMih8TПL s *XT} RW hx)Hu6ũc3eБ ٸ;[0P"|t+- LJ-$I#ϒ`"R!DO} ڕ3f PPXUP|:;+Fq8֊jNH&*KAY9J2r KN.XYRa@KcWDfMi gG6ZF fn#R^h&c*~b2ߔJeˈ0N-Q)"_IE`JfP0H(Ҙ⪉@gXIcz3p4)!'`NzL%**A4Cildxz@=d5甄,OXRJdzER'8$@4elPT&P|B!Vbu>25/Cɻ/Ҟ*j1Dg8uUiS "UDK6Rc+Fj .H!(Sjro c $i&JQJ1; li4qkƗ)N6H4 Fy$/ ڏHP,I$f#aJ*Xupe5dlOasfϚiގ}x'|՗w 344; 2dbd"M3fpwqaٻ o>ē^yk/r싘\E.ɇLᨥ,Y)wvt2Mɨ591J+0=R)q1I ~[5}"(Z1gL'bp9!G ؓx-ϥ2=t"=AR.#!^` G0ISѨŵ?J-^V,_.S TjlټI 6::C€,%r,l^zzdEܲD|k'w* jkTUN>c֬~j!NC˴{'>z#jKэhUi .?C߿G/=` <$<,Qbj1]?BO1 ZcD??WV|Ot?C먣P{ __~eūxKhRwtWdQfc:kIJ><+J*hs<-=-ٚs⭘L^ׇ`Z>8vT_̿:'6l󅪚h爌mz'>qޙ׏ u4"w?3{}U?t/yÌL2pe%ҵ^ /N-a!]%2oڭI YU&[<9da)rPo1x|d&K[=LȒj+/Mxk]QijGͣC^nS[JliEi}LmKl]3X2[!yTm،+:du+"ϗ+._.ؖPtw+IE`P"NIJ{x w℮Ar{!"-Zɠ% CKpXP^9>l Mˆ0R9eĽMw`%d]})KuA`?is}wwŢ;WkEc:5 +ⳟ|TN76M?|KKWZɮca!Xp*j,<k*TiCKTːۦZ|N';&%Xp[20= =bL BRƲH1ZDKH6ˊqIN&w:pj5k:n3cjyO6|f}<Uf0rgެi|?AȐ*Dњkoy}ӛ.m0x.Fvϝ5[n4<`4F N+VD㐚Zc6 ߼"ڧ\4778~fϚ944TWo^m?H\I~LlBgm g!['Fpd!yYC!Ƙ2K̙ Kq%A#hRH, 3 ˃mQ2hkDfưBĉߘ..#ٰ[6l̨{ii#$;\'H8L\INDHI>5/ZOgϞm۷̲K:)>hU[ LBmO ݢ!28:{N=WĐQG\DND0-J wRIilIdw hUSNmhhj %qpNvR = ޿b0Un6{6ڳ~kXW }D`cG|ʊ ãeV5Sϟ73c_gnڕFzzy)}I`Y2>wXG.Y^g-N7]?>GZfUնVM?狍^?X•W6Nr;?dOjǁK/zIJv#,xc >FH'Q׍}-heqg6a+B̥lMɸ$&*(S}z8>8v̙">O^e[;>>23iMf 9RBy=G6{-&W3f<iCwܴ2BW0s޸a}ՀɁjFm_S|Yg Aw4I i;eȴæ^ױsްnPO&} ;T^A}نlちDZ64R_5wzW㞡g[__}Ah}Okڽ޼#-q! +u$?k.m,B{?ݨ666|f,Yÿ٥H훶{e|Ɔm'uȌ8'h1pZXd?k/`Y̳q;?>k}얦صgoO\ EdfY+FЅӧM݊ )'[F>Xf LfF*!K0V?!]qkUy3wPQŞKQM2}*^ fL]jMkb-y޾Ѓwm,\̱_K/nڴ ]|ɔR"zꬳϮr VZq4Bt1s}ph虧:,AѠ#>̮]tE'nMIIo|.X=̳gy! 8e7wםam+1 _+W2&9N6fa%2Z.eh'lR:uus!V{?>qh;n?9@VdNP@jT-^~0eaY!ؽcϞaRІ⋟8~=1SB+_=;(Ѕ"w}e>%%ȩم7 %["X`RƑ< |MX& 1Æ=c8a&'d!~niiqn 3L^-t5'ՅO6o 7|͛71 ,< ˞g~zk <(K^BM樆g4KЩ{``+’rƷ__n''. tMM/jL0\FkP7DG-]O[8[pȼj.&JP,^wݡ{ 6awgH3g/?ޡfOlEқO9uI-6!ZT[xĢ#]}X UBnppiO_߶x>m@߀ߏz]x)60Y79D 03AG8ص{_~dg Pw˰| #\̑#tݻwC=L6|QCYS5_~,Y7oM@M?MFج뮽ƒmbK.Њ%Ky W=:ݽ̓!D<&b&ݾ=--T`^4=+CR1 ֖fp^!DYm#OCp= p)E+BխTBTjYhȰ=T))ar8)#B.Ch<=2&S fT\s Tl/iƌlnohUN1\,_~YlY6sPOê( G^q) Ovzs<5oѓ|9:~QR=S IDAT TWNzJڽS#`uꩋ3OTe7Z $lvg?v2؊9r "VXROH&M ƩOn]v㛻OKΫ}~c) i&y-wyvJcSpAKօ:( ٶ}' 2UU MkuOfWO7ni& PhlnMFw*:mОx7Zq'xڃx%t~607{cn:5j`֞5LHMF;:[[:^oNs<~ 8h M7~;tu!M]8.Gh߼ [z撛;أy)/Y˙zukuD=G\w({Ѷ?/-teGW:տzڨSW`{``鶛BHs-'? ҂ysttN2HN>i#PE^zɽrs-n{Yx;?1c4zߩ=l6^p?yb矶D0w}H@$a4aݽ󕵯~~&/-ؐA ]믁ws&ب<8؇/{E:؞޾j% o<+7]sEo]xwޙZ8|Uׅ#wܷbɄ7n~繗^KW?ۛr>UCK.@'w#t=xs>p~pm羮}/S4 mFhIvMOA;>)D #&z&K k"+~qṳ#8b9 gB;򯍾 gwmq[-X`QEϛW[xh]o9syej}䗽w\4|@~]AዦpEmֽ6o޼O8GV2{w Xiyguc5q B7$?^pvޅ- qQmڴQ#gsϛ>}ZwOy[/"ǀ2qԅ=h>9s3Ѕᡡ{3Μ;o~XJ"H6zcW2a h'AG?n @}{ڝulh֦-gn{<ӗ:l_5yb1O"Z%:lErCUD1QfNk箃X+eWbtIB ҏ77n:5`ohO Q` TjVP;1F.۶A 5u}=&|jG L给W!hwHqjM/ͪHlj:[u+poy}{ߠPp 5NggM7ݨRXf [[wM[YcH->ћQ H!6犋/D>K^_T̘>-^x>ٌ^F@GWן6mykAlq.D8'.5ݟGN_! @FbæMZ]ӦFD`gެXG7|3xgx9ˁ@:=|tQP{0XWvů7W}S5R3;o>Otvpk<04+/CH]ys\ax82n Nlx{#R 44#(]!q8tyz( b[rԩ~tt _5?-6koy±G/{~3[َ8Q@?hMƈ=iN(pUkf:l-1,}RbO(Ե 3$ǩ0NL8ul* 4G<3 1ӝdbJ6<=x<Ԅ#UUv~˞puw.Џ\{߸ a7ߞ3klHR_tΙ-G=fϙ=]`>?樗^{]ă rHviH??";O[uBgW<$?IG\aL#_=X3< |CKs+DM_| 0dw[Af͚~ P]+2pn] Xq@``Xg_.wį&yir l;@U$N#FCpE5?eNZu2̽MuQJˊhDpMl`6m7+m_H+z_ADgF;OX D ==.qS;~cnkŭ#h9gl\c7|kѾK]M9l8I? N"q#ᄈ}}#Cvj'm38<]wܹpn}:.߱sv'bCdh،6n&2$\Yߕ/gX+ᓷims/ȁ(6d;_?8Nh -l ay(<5 D69ƭIo!936lU'~܄͏’=bD\ s Ђs(?,!{ ۅgi+.>c`ͅ"H>߼ ;|u#℁r{^@*7QtfMf+:nTx3[Q'q V[ ⡲ L#2?+ϏH{2̳ln4q wC3>]_ݛ uAwm iܵロ2J?LjaZb\$%twXBim97u+n dOwSe}@[,\D)(䂳R~e zZEz! jێ]#)s]s1nEn g?ZuP.eIj_ywN,I< ;܊jɢ? !eZ gC<$mضc;nGfn(IU檩owڼye%qH -Rg ,ٷ%.*`5v*3`3Uڬ'+CBW on|Բeh>He ZLmiMzl&MZX=I݉.RЋp1ֶka>-W7  'GߧR[rqhYd Y8,y岋||6eA =gw t\ce<7^G,sg+M޾s۶meu6x:&\7D:f,]w lGNc3W!,zz#q:Od0} ~o@bA=0vD ۷o;s\;B2f4վ45asJIYje y{j le.,ϥX]q[/Y;={֬}_/hݴϘ{-V׼gH~(/` ~'R W@7 Vwny#Ѓ4?cs>Sqa YzکK=yvI`Fk-Z-sS8Zڷ\t[o!έ OMN;mJ]0A[],_ĢW=ꤚ#/ٺuiM/N\pܯ@:p"ֱcy^sshƌK,ҀJ)0F1[(?f5w>~+ *7^t=~]HA81X`.M~Wm@؍@hȹ+|~ʫ~1^;+>iD]G[Bp|Gw;7N2֩TK_|p<í7J"OJ($#!d;xy &17ٛ/d_ٛo*\/xEm\F%Lo8v_ehC?qª/9TLR|+kN,nF3QLcjit.۸oj\IE7jWJNr E]o_)ɶT2f3' 8@1gx|MAZ$n$gٰ3cg~Y@G]ؼ8i[8`o/_?'[ 4QI]D_=+ /YkVkɒ%s˞?W " "-0WXkU[2p\|H{Pƶ .=n?!7prT#UxW0tC`qW7@d%Kp=V/^?vOO7^@vIn ^*Uk_q BG"ؗyr L6evPKr/R)`mGYOمŶ+:{k}w蜓~3uulܶ)%3{L^As9R8G`@TمAG񍿕TrKp̍]~7־8.B_f ?q x1Ѿif6Lib1D69.cٛIlQ,LI؝!AR(x~˹7o_k_EV]qDT'c!zti߈3v}澦x} qPL]zăL, wW)RqFHL@rH6".`\©6$U{7_ \a(¿)ubꭍ{:gty N<޹m-hƒjkfwϚo `vY.ƍ[d yjEN:;,?}ܹ0WaA賁H{DႲs&yÎ`4bp y-LHH!(~~ IDAT2ԌY䫮𕗒;Rc }5Jqʈh1ɕ< j1ly.-sMV -,%^`@KDXW|S?.$@z̻H###"fV!L!a*-=_?5OxϬ؂kAOE>~)qQRaY[OϩDXYE'Sc.U<06XQj刓TcoKǮ]NP u&^BrczpJRHzvH-4!/b欙۶m\_wٛoe<6 X6'|.u\M|ҕG}5;.]@q+3ZlC]7x.sP&/_vǮ}{6_tEq'FXBEIeM VܒVt(ۖ ̔&6WIE)%g_.x|[!bNL3e%ӂ3U% 1spUS|:/BHnΝ6m6yhUDK;'sϽx7*Q[ 1:Ĵ2l {2%3zsH qԆ]=ܼ<-hqL=O)de %,-|˲ 0yD +_E9w@3D!HitMgc[*rHk/fCxIMm;IRBO׿k&777L 6mʫi5#xG"q. ch!Gx&e5>ÐWi=O-!& Fe!#cU([I9>Dݷ|Zu n-EF["xUlj<=~r.ZuדHutG͜9lC{:gl`+`i=̙C ԍU 06 H47&L4oÞE^ě_ x ao1q>1d3D2,CSQW`i<>'+gζ$ 44 )6%b*I,sۛ }J 4)߷M>S>eޤ80< SyuO0 EĜbab" ~:XʨwkH{Mi% L:( {,X24W$=F3sò0 88M`:: e2}NˣƜ`!Uka; 'n)4X8BiQFN2TP!+~~$Cd֨$Nnw}.U3,Q'lpSzƤOR>bݲ`VGj| /\YAfTd= #WEAQk[8U)7ȈySC()1H&9 Y8HFQ4-"[>2Rv3Wqs/-(t]V“`GqxFjɞ|#=G6(@ G|0btm6^;/Y9h'NSOMLnflk)vW33?p8A)ID '\f*셚 rv"8JuU7Rzlu4ƗB?g0l%rlk9\%OL cSA!,lǻ,qmwpzAL0lfi/7E;*Z8 !L*^$ ]?86Srُ "莇;] y6^ f{g;eMC JH(LdqS2(fI]#;}-Eʬs {էy2xfGFV,Z-ȃ!f|ҌPIJ*eI[Cz!YA ½se#<;VKRs>I};N7e ͜u$9{(=3p>[a%=䩉g<+(E,/89銱R$:U =CHDUXw0bOWƜ31&-6+Cmw*ɑ`5Qߝ-J~7G:WDp}ꓟ>cWI~ ]}Sb4#Gg#wX.C0euRR9#>9ca0N CDzgwϠ02o*I4̋:.OqvC4ƵNLTbEVo&qذVflaL PR?=?.ǩЅ JRkhgGH!Z<?{hEqҬDMbTQ(1">T%ł=bcӰ`A`٢$ v0%&Fi3svvvv}=sΞ3ffw䰩.mr]E\,}|jRNF,+~s+[_ 9ԇD!nh_u $T?c&2 1D&f0Ѱ7~_x2(Z x,^xmJSR@< sAUx@{pAoӔď?mi_(_׉V)P (BF= , X,?.wM$Ze@&>3Ve1}ô{bR['bh J̤V/>qmjnlj\:B|j:}9s A)m{** u9A.)+dfTC' Rm^^E9~TCkU"K]R(*Du4,e[kO>bԘʕ S1"[J5vlneo:p]vA΀6HӄIDW^مZ, h0H-:u$A`` J^Q! S pП< yCyI l/0PLH 1AbNK& ᆽĺ2kχ `̏K.{7Js%L%dq'qt])B^q;<=tR<|jie0LKkx> ;K0WՏVPrRwb=e\~*ӂhuDhO\`F\:,:EȌDkr 1ˣ%1ll aZ)a׾b'ʸVEM55m fnv6(7YU;V(Ew߯_c\;eL 7o$cH"~4u]4=Vl$fG:}<c%FޛK4tFpE_e {F #~N TQP9g#.kFtՈrXqUBc|5w }V tN=KGa'<Ţsn\ iY[KEbAu{sӪիysw~Nu45"K|[VZ+d9Λ|c4r姟k4vbM˹trNXKr:d:NdY+O ` wH`,B IҚt:v:w䎑y6JP@G42UG:D꣨7i~D7M6hj,O?}CDѷNoq(36=GX.Yi-z˪!UW Ry6pwNXmNv$%crƌGy$Nh%&@Ť&Z.~NC$&+(J}cjyڴG>_ٳ'e&u~gٜA&S }PD^6'qP\I8M }o%Ov."lX:A~0god9 Uc=Z&.}b2 M*A>sxL1w+߿#[.{6A ^š%\-Hû@^4A~"LqZ|=דEZ~U+&*b[P\E;It!{P%'x^U@AcoiׯmӦl ;y"g{N?/\*e p]Rh۶ mT*R N6:R4&w2Jlպ-^cc4GS~4ڬk)AN \F +TJkNUa& [V#[c8.Q%竣5|\iFi8NrJ5uuu5uuu5-7~eEs~kLdX% 8W^ Dd+Dy[[AD 2l&vN<51"RDdq$ @ c3omŒ$'.Y଒IV⤌ٱݨ!gK/r75a5}o|o2BoH^NBo5̊m`bS ŀ⃡kWB2]n,Vڱڻ㒉GcT!Gvnq~BuAN8~, #y0APF6|}=g~p \ {†O&Ԇx+dX!Z|0.+e<1I9Z'Hg삑4GEHQ:>`#x%TJR0^yArƿ> ޡ6(Z4c:4jlDѲD DITB.f[5-uGҪ(N"`U/1%"de &c8E$f&AH -JH~OY@LN3))\bYܰ4pTGJ `k0I"eanF,C<CSiUCNp@vPvEpʸΝfQ<ϗ#k]К!.lK=M:ɲ,J0:ASx?u tiIa(hŞ?5A#( 1I׻;])#75GMѪFXy* qMQ?b1G}7뮠9r$)NL\8t]dӆ7TWJ؀xB4[RצĹ~+B24Ns2G$HO`-٪!r]4(eq>Svq#GkAZ ֮C ]~KO{#8غpաU၏i*lr]%^&9+aDp ""xh+L\c R 1\_O"6'b9HN-*'*1$M+"CN{0 7KJvSTiAG.gl|eQ=k}8UXfمPE…{P5g55gwj5 IDAT$"̒ ']b5V.pT7N cԨQ>OO0᪫"}zb8M#Ap(fSҁ,G1bdO#teD0[ JpM #dC(HFrV*i6X|2 r̸P(둇nw7-^~[xBU3WYgR,d6,L-osVW7[PS l[k$~NR r`B9K٣#BrZPu\jkr# PjsK=R9q▕vXp<Fd}ɕnuH 5xمo ty |v` .Ew\  `:}k]`H<*EϒFQMF3Yj0UjP&s%-Q'.-'xDO,Rai767ϋ̹.&tY݌sRd.^B^\Iq2IMRB ^ Q6<x}I:FU+"˝bŨQ*j꺚ZZEu]mU] Z:Vg*jkjuPA FM1 c ^V}ڒN-o{'DtP(bJ|@ P` XK%4$%7 jS<.빗2 fbG"b_e VHZCkTǶ>sStGN+̝`1G-]4tgB)O}=6MVT諮:Z`B[yF䪫:w8ߐajÝuG%Wq9:I+wD3Z[{hUuL~*\U_4sʐUu3eT- l40Mӆm|ŏ/@RijKr 8oA%bpSԳᖨUWY1zl[Ny艷aтs *6C\9m6˭DElSiB=U\b*CVwyѤ}x =$b$.%I4CH7=z3cmu:tԡc}m:Rס#[9|#Rw\5ڏφhOfc ɊL4+Y4V?K nwTBZ6*G9ARv٦#Z*{ڵ6Mg^*d66lhт g/t}mؚQ}St#}jͭ("o 8&>~5S?1UO3eݰ-X$Эq5w/-=W6$W=##9z>VG}x:aB^_‚p뷓Pzϒ{_?wȾifo­ űFG$ٔ2zwd_H]%Λt ,RHgҢEzJSڕsk >vyN7=}8Ym-MMPe5nԲk!wVl~#Gz+d@<AQ*˃F4 Ot Ꚏy8(@FiэQ#gf殿ؠW|e(W!3))q@%95Gb'L!A3/m $u)aO)]9ª><9Q=_XDB3#^D(c*+( LoFypS(VU-sþfw/8_ʍrNtdKx/7bRbD7 l!1 v谮sL'`RW>Ke ]DfKѱ_:7J[̺i,iGc;{5vŋ#GePgKo5/޺\g84Fhys JNGi4+,)` Ƞ .$;ŊW)?=hNQ&]7ݤ㦛ulS7)MqإK.k֡CTԂ,$hs"@j"Wx`P* = `V_P0,n?0`޸H0߻oH̏B31Y/]t6NaUU_<1[,PfAr],aTBe8-!W ׸׬Y l fb[ݘ{_%1ۇmųjyNɓ>lONW],Mf:5С/!<9yֈۈkCьǙSV%W29 Kd{F:6'[jkۡoݣgS(xW:b;I3P=}t+h{sWpD'Vwg9rM 4p@SBe+i4 ^~[-R)rJ{Va#+_re)I٦uA7#ɦ6Rݹ t_݉+6T=X?H14,]ToM=^}^>܈XkR( _/ӉRȸf?7*;8L/nߟ̝MX87AjF uh{2Þ2y ƥ{HJ5d98%TU!;xҘ^[Ck sԃl{{tFrAUMrUpc}ޥJ*a!S޾lh=(v㏜y ܎#/W}!zقhZӒҋZҵk_]:6^K':jHi=ùg2!輀i0k F3w0I1E^AL-Y"X4I~qc^}X*7u1KIFϾ(xF3:R4Hga-?|V>t_[<}wOoۡIto?sѬ;$žߍJxc3V<^/'LLC:uR([+Ip](9PG Mگr[n 7\2'p WN_p5td &.66۬jhߌ6tSSǨC}yjMCt8W[- BÊ D>!f9|Fkoyq0+lŊaq En0Ǽ}Dvi1{Eݾ~}ߞY#ۊXr%OD'3dqO0Arʪ JC/4t= J61Mm6LvL胲ȦO2ĺ8sǻg9q5z};0@^>{L70)#K#& VC ow텥Q؎M\3hȰ)x= }>0ɀNÄ%r-ܲrOՔ<*x{oƒ%K iAepD(B$cEc{ќŭ!F{g$uygY ^R&R} Zv$}7 kčt/WCU?y'.ʶxz:2eQ5}…p "4)EE;4YNb G9  $C>[xo_hHV@FNjUN4 _#C]tA.' ;JL~Sٳ'XR>L릩E;OE9y{qAifvԉW\dٔSWqT,3żz%ETdނ`K8C&C2lcKp$iU2 ŢY RG `{b6 :}6~#yuA)حk_cQpV5p(D5q`6@ᤘ=Fm'.nHDuVSYzS4MD?w&֎ȢXx`@w#F,]t….Mҕ8 WvaHR9ワU1e+̈́s}s'#}[ic0Ͱ ?iF}^=h->AŹᘞop'",vl2U*g(ƛl"YfK9.nեO Y0Plů1j䄯QrAF etŧ."`NsFfLPVL4WOE};v mr(W^Y}Fz o(ONcvI3zF:!I 5Kxb^eΝ;!IEчxWLja{$ԡJkR/ ӃљeOyni-N̴|e`}ݴgwcbK&vx٬o].!.9/_a#:"ug_8~٣~H%Q ?nԷ_ybK_9a ]~чxF^swtyQtU7lҨ+^®g_rhl7j DOeF܉qKh"^uߊwOݲW۠|Oin9;O, tt-݆' ڞ`ڐ(:hsד~< Uq+o@BF%oV(zJ;fѻ…>kw*xq̒y M^ x:ݾTc>3zSr ѳ_u6nQn͚_nz_mN{bILxĨTwjޟm\v;|s* *]L1]}ˋn[l!ihW: 鄬k a4dۼ˘bŏt9xsժ5+`^݈bU[oB( s{1P``HIpQKdi3I~o5KQ%KǼSzzׂߎ(P.{E Bf &^؋~3sV~0Π!Q!&}D,:Z0DJ>6i3A`ʘ߼u)46cRٺ2s?Vdgsؤx0y{7u{{us.Y?\QO|n??)%<'4.˂Dttr4z[Eh۶jnC/Cu R\QAmD*[n}UC JJ.POcS80''[!T n Qva>brIur56al|;ہ:jZ {WhoA U cƃh`~v[ ,br'd̬э~⌤]m!Zr!o`&g _ѻ5q[\U8k'tjGp3VJ*%m:mu 0gPĊ1t8}ŊIs4(RУMw]rrEd)VۧE7m\UUXz),vXop-wI:l#xD_{!-ҏ|cSYlj z|oYC 5\+StyWh{@-{hGM uɘC@h_G퐯|›p`#kRR ]::Ft8.Hݾk9#xmq (ZnaۋO|,ےh)r*}LJ9!|Zeʯ[J:4OU`1øDK7nHQm=i  Ou9 F7b6QM "O8J2l  \ f%9x2Dn9ZJH HD4QA*K\'`+⌯l0rtuS˺FȑRIOa-Y 7Dʣb!}> ӽg?8_e|Mɡ]U.+B+/=9 aSիuOU n&ץ!"ZJAT(]y@Z0)Vn{e.ev3EHt\w̱-Off|"*zzOA#96@%fEqm(7jpӣnq=QlՂ sWO" m#6δri٠P8rTQCL]F.P=A si+j薃x8E[AqG'Aw7HR ^bcXėf~#]JQc]UhNDY|CSMFrAN]rM, LV?x~~v16-Iǩ2sqގl($r'6W/K-#=p(HmwN;-ry!-ap Bma]>; q9Eo,YWAri IDAT E7o9KĂGf^πR㦰,Q7P=!ԑfqPP$XSnM.A.st)vՠ&y# v +Cc)Gi pUAª ~UU얃+Ѱ-H\*uz?Ne'RR*?v,k0{U꿺j X ŜTxJYtaWE,`GANEeRE+.Ue:DJq+8Xu'(-mjkښm i_rw>jpd&}dX'C{ 5+#Wo1_V?6:-Z{`k5T! OGr߲@+ .[RI B j )jG +w$"$09z.f2zVQS_"ؽD\4H<(W)sOƊQ7muF}~|C$}^6>palШlNzVcN%/R:ŋH J}.CupEBum^3as>sט: :?p? MkŞ/#Δ:2+=-}ᦖ) r !y*SsJAhD{z8l<&B(T yx;]x.B x ,3O!d&34o739;qn{|ׁ(1MI T@S4;l)7eT1 | @&sL}h#UrM&h LC44QGEAEI-LT*a(> =VA|.`"TU)>MIVB)G|6d-!.H%l׆3QɤQdf/,|mY 4- :& {*͗nDaVIADb*%-y҂npGu<0AnAQJwivPU]3k֬Ks>SNY򛈈)?: B{ssWr;EQ\-T(q寸WR*x*1ll%ۂ(kkO&>cnezԵŦ+>TJՍW}矿wS4h)@oq7@S"JWeOr*8@܂Dp4(GP+;VgDf(^6HI ! .J%HI ABߜmiy@TWU\T-UCo ӹhc@&Q08h!t6i艼EC92{w &4&J-PBhE9fij(:kVIn"\ڔ Zz&bK?E=eU8r"HzQ89N]3_2y,w<#ja¢66ԩ _ gCa6@CJЬG o|.]o*H{IF=x[uǙ BVJO%7SZeɅt=閥sZ)y~NU4% M>]S@^ӴVŬmaHi>AN1p)P=)(U+Sv.i IFژG7}Ul$ʈBdsR* ]V3y+_c m.p1sc ŨatrJXDj1PR{fS# q&⪥y%I~B(58j6^ vK;GX&0D1 Z%eź8s)'F1 n sQ&rjgꨙ*@>rPKY H%g%D\z^@)@XJǤQ'tHg (݌JBb8޴WP 7V7ӜPU&Aɑy ر0~sH(OtxKRw0_4CƲhA)h 5mpVˣ|eY)9mT#̪moTJ u iLᙅRY,U x{4qV^pK/y,*x7stGLP~=1U1 a1+Wf;U c 3KQjf]C(njEûi7,E2_ jW7byIa)F4 RCb+Sd {/2&bXVkd ٝ,D.,ZyV^AHTM`DF*:$%ù-˩mW%j)=HX4%ԖyyB=rԱi+΋T"+BeN*-%8s54C ;I%TR`*)z%S.yo'qd2PpfߤDA1}q=cdt8JQ?0mI "%>&*Z SjcAykg%KZ'F|hq/teT g}orc52TCt] *B{VBTBV-!]|ݣpˁAWXٮ<Wa$HkΒeR ^EҊojt'(ט9.;hAՁ (2ȥ2q6&\Çܲ*dn (L># w!UV3`c'/"DGwCE6{C^1q@&O|衇V.FG HcRad8*Wf1?Z ""̃OTSvkד![}zWkG,VC49s$~ƑtNXI{dX,'*G\(( CpS.TG֢x'-bHtʋ,T0|-7CgնO8"kA bl8Uhmi?V;% tm oT3M*  xM'6dh'lWy Rk q3 c4 jfrTUD|{=B fp0m"t"HTӵxqL@RT3W(d! p (q6W*#V& R`_D ;3@S{2pE.+M c]Nyx;g6OVl~U7ho~X<ܮ^ ?ȬEKK]8ZpF!3%xiA1DhRؤIKaAfI6yD2Y UZ8LGԄ6m@8r F2 {9ϧ:ER |Ŋm8;wV>~pr- (<*Lk8kHOϚY DSI-M-&ޕq8 U 0U* ce5 $l29mU>$[q׫\=m7L_Ť;᝭XQz`UU\oC޺|օ (<<-S![X5pdQyPuPSLj+jcĞT#0ؚ͒!*M*C(I7cqUk 2!0>E( SQ<)6f/rDC}=x܀XI7?̽'tҌ} VÏEv76j  |r=@ÔuB[w-8JfBn/>u\(q*.RL&ɱ6>z̄'4Sm}sK1m+:ge3ha=R0A \Wha:Y.?ʵ_ng=U~䧤W}ũsڸIpJn[cCn3.}iI#;r\7m뽳={׻8Լ~W#>?RH/& O쉌Bʉw]R,|**9:\T ۃ9C>emA~IkCgMMM47=GŲ{ltY_n^w>胨y~eBsgs3T@7C X(_=E)1]kR,SiQJʢcN;K.r53-c&gPʅ "7nٝzg?xү'߂x>Ij,®7Y%ǽԫ!>y㱨ks]~Cj^RZcѮL!| v]rSCs{0L`ң &*#+ sELT,N\执ݳ7?^7雨)ljuWצE;yVGQ2)]t<_Dڥn^Y?GzͲv6U&܄&~|4R>C  |H?%~eΤ.H_Dۥ~g f[|jw٤> <1\bDOYoz-*F*YVT4nn! S2jbo ϵ6x }'vw!2Ct' .{-6%MO)00î/zEZZ=dNT IDAT\6ȉ\J)~Z5*{eW^ʯK/ݗ\_I.?)GuZ(|NԠɂI X~tFB? @P.O[G{| m A(Ra7]?%+-p7|@}`W g,9>cV޻Be0k@,e&h*{EOꀀ5mCM,nƃʩ=A "*B"D6fjqwJr4z,[fJ-0()%LXJ%rn]^®ێ(u:d26Vo-Nv&׎#OE䪗v:9C;r[[:']y^rӁpN2;*T>Fy;17dBVtoH|(k7?I]Pem/3y[ںmh٤ZևvB\4d4l('k*h\\:pF^Uu͌/basϝx7LS_ 4K·̫[]oowuŇ+>۩׏139Ilp]&L~v A&-=Z6LJ8dJe w:煋Q@\>!r H%X$hye11P!Eڙ%|DXGri>Ζch PԸqU~w}o)M--Vý?ĉ}U_M;-[m5pMǜo5Fн{k~#įK?7k~{~gzcSz`91/m}0s2vw11f:pՏő_5uYh)Zx4*\mlsmn,q?34u]>I>YєLr4M9\wQsӹW=[ucRӤ=N{/ [w}M_wN\;NN q͟' (G66, $D2) :}A9r $bZ ʤz^S 9Jc7u[>7^5+kkܾǃ{qcTوs!l/sgCowHGhN;8'Yqhlç/&='?,@bnѨh]]_|>V$S.|tqg!ƺ@(tn%8p'.B (]<)xCwcX-\TE7̊>A#nMr*7@: P{Q[u {_hJwf'qFz f7onDw! 30?H҄e/>|93*8$-rL$3pe+en:S $iVBOgfY- )N^b6 ~hᇏ%/]CQF{Z|ҷ^?c7~6$Xj3<࣏UǍbb1ssc;RbA]0= }|07x0 iX$֚x邹PO<'NiTmP1Jl):"\0slH/P0IDY$gwC2ùZ*o4iOU8\4f@n.$q#DW1cƘp3f444R:Qng D rf*Hb. $GB n3:pCԭu.@:ww~!8`sj(\o _'`lٍf_翫WD^Eq駜W+|55FM͍MMkw 1PpEuMMmcD=݄z?J>Fmzq G)t vkEYlM"x!IR>#ںښZT`O֠yMS ^4&L ̹* '^0ő R^uQ-ЖTjj)7%m#uB] x`A vkp1\bUi%:Wҥ+q𨾩ǭ++4o>?l V.0qL޲Q)Ъ8En׈D+Ϣӊsz{lڨcMkestܢSi;ᄏ۲lTu=; @:Stп5aֹ7=dd 23SuPiX|]3~4冟ĉJVR]A[S:1N-OJQt%@$N2r \(흢@WtD  TBJYHnA#/P3iUJPx@O0.㭖s\A7hN-x;vo3r{ 85QcS7S~P2E}V_-x|V| %`GZą wJx(7 ő[ "BG{k#Qb&&8gM (i3F1j)awMߌ*XLk<@CcJwRpL p UC7K^˗1 U]%" dRƂU瞦i9 H,D&r(YYuV+|ب *X[׫h(/)7O|ӗ9~B΍Je;p%1_I*]@Ȭb+mjMưQ#M\ԥS-Zxe׿=vMim༴Cg҉Rr[=/{/vԺ#Sú'ȧ&"ޥE۝8ON ꛋ{;i.T.V{~=9"}n/Sqԙ56I:`%!>-nST'Z<-" N a0QaZx@ 4ͷ)4( loa}3_z7W{k8`z*'bL $ى7#ixO4Z9"<2f#k39'Vu\ Nfhf jkkH݁_L UH$LhF@퀇`AI{0!YЂmT73yR&(U1cn8OrEOš|7%'s*CnQAs`K 4rDAx@@IRdDhpBA,͕np8bǨv՘E?p G1ɉ%IEvhn/p΀M B!.*±7rUk1Lk6ZܩsT>x[p֟~՛ng(%f.;kn"5u\/<Ì=ιPP,}݉3Y k}.mC!wf5h乽eEG;efD%J CvEqH*1&sќG,³yolP<>0l8AlY (s}PT(mIk( DBx~D_+h[PA54¯XKC ?kkiဨ y #fMPfyAY)EofpBE(aWv34 2(q4c&4} @;qwd"+KX).n,R ڒtkꌋZCibA<ҐJw{kJ7 jjA o=ǡe%C1ɝQr dgvء_}7_y\l[޾~;g!GAP-98tqw;a-'}.|-LꅥssDZmwŒS-QNwrb,>=$hӒhHKƛ>a_\o> P/WrA(⒆!)@Ӡn^Pu ARa&|x  (LLUpY-=m&ac%N `GQKG)j2Ȫ $1V.F^1sb꘱'AlWѷ?[n+8Iݦ Bۍ/<9oO l>|wy[/cwo0~m̝]6ٌ5|9;'4Jֆ.c*]D~y-\& ~9}q;MWQc3 cLAO&$=)QVۇ@[ xDo1W^ܹ3p\逿Ur`;nH"Q4 ZKx !s~ "X$(Qf@"(<ȗ; `\\S]j` ʢ KXp=N@@ ](q_$fVxxLp5pQ"^brS-aNT0$ LcJ`rA/z$@ 9`<$A'´Jh~1jXImH;aku u)1Ŗ'1gUtv}hnKsJ$GWeiNG\k6dA*1L̈́ZUYh^gB(2)fbm 8j0nl%Džtb}ׂfJ.J9ͷ|nqY !LBG2b7Uf"[nVA@T%& %0 q|3>M3# 37A ,#q!EAp a0Q D\Y}VT:[}]9]U/SsF7E*^"$ ^Ep( jtc A `8k+lI% 1t F0?Ay8= ?xBzbM C3C<tF3GL:G+j#3DU0 =I/ˁ"P Se0= T3@pL-ol&(S,俢 8NӓwkZuйB0Z:#f+ೳTW('3sW~]Ԥ5  8BߠMN:Dv~-b\x-Z^4 w#~}LX[`yƜgG˃(U`0Yj^YGOe*jBLВ/=H !Rzգ8I)2" IDAT*GVWgF1`ABZ{]W#bҟs !&1_yG̿M`evll8.CJ`pS8ah ;D-0d~ĵj7(σ{(%Dž^ bF{X8;j.]\qG g8-6_L$ jd֎hpě{~t}Fl)TaE얿6m׭1 )È |rN/;ѳw/JGmC)LłOhjk}XAa!#V3 Xgഗ8<8 3u9sIUïXA;6Þ7GD-PaܝXcCC 8(v[WR5 IV8F,\jg0b* ;yq3^}}.,+.恀#\d7Ub  C28lY+0]͝!_cD#E{ˇ\^>ȖmP;U>[ȴ6fy # nY?f"LC뛗~wxiVWB%YQ˪Qce_D 1?MPd\ٍd]Q2-{8P[@fs@'tFؙNYN0){'> vU0m BC3?%QXYvhk5>D yl.~VFVVCm񫞜d sp6A `8o_\Օ5iB?!McW2Iؼ- [9;}%.[ԯ pЭf׃+̭2)LN|k_ק;Ԣu#ꏝ={laص{Znua//C RF<5g*T)&Y;a >reRl >r- @H&<ղaCAjƃp~D0g$+u1tEWB+͐A2'P=gSe9E6\s٪*fL{=N:>!СG-\uXd!+>KCT2j{'ȗF4vB6tWk@]S;Guu{0*ZwY)(|m ͸,àNؑ+z*l3NxQ)4J}`ᰫ@7bVdݩ.#A p `_k v΋n?YsWҗU@RYU?{<ؗ$)a՛[ㅯ<1i!Vi/|ő{ [1aKkE]>ݻVMt;ZD꧄?8vq|2Ez}>&o/SA;/V]]r%O5~YɑrD _.޲a6($p _)}Y/s[QSpZ Xp0Y{W[_ oʻ^z񞵿jãwuI (}aCOf_Wr k>S``v 63wQ;b؅)9`'I<\PbltEÜz|knGOe >jUߛLLI 5׊8 My #]Ff T2l ੭vpƙBWvaٶwLi(X]X&]e2Ғ 6ACDǻݮnxx0rT(*ݮ~Jizh*@E#q1`T s~baNK-{]sO}mE/_'_/0㲗nqu>J*r+!_z-Rcu&]~(J3:],{ AJG {yka6t:* +*?rs1FP_NVl;|M.h a9 ݿ>gV^}QK-Sx!bǨL>Sqdr1UF[ˈtY[T9v .pLžSoA vW(0浒e9bB]{—W,/? _>x'65 }wK`.glg7@vV-*y+"srK J A z%4=Ǒt؍J6 ?uD*+<dlu9*7xvt>kRmR<B>\]ُcV΄"ZAyK`%7ѡ׌'~v\[wJбW Unmp-,1ُ>7F5(Z&Dc2; tO a%7oYܧVCf| 4C3 1'DH&ねeq}حvnҳ.W!A6ho- >>t7idnr$KCmZ@Ǡ;+'*^u"Sb'q 6"n ZqbD5g]//ݺt˖~>[wgπQ)dl ūlJlٺu_ķ/8QsqCGd~~]YMA6}EK;\zi+@+.K5۶ءVЊÖ,I?+\xuX ǁ[O! ك!*GZ'VFt)tm#c>x,4ݬm^٬^ Pqų6ro&7e%ԱI}aq*ϊ 6/t-b!irgc PI&-<]F[߼, kr"\iۤpS[l:텪CuR|O4pW=@{g0"2cw8G/Ն÷-Z߲:%Ubv#FBCS"SZZP`rHH-۵KOOw@1_3IhW7ZH>_>9t>}ڵiC{'Zf4idM岄+A[V, m-_[TtY:*}<"-1| jE19p5HYݴBZ"&d-Eb^/L,`m5ۋel -6mE8=;5Zs| ~3YA#~>VZ~OҞmv\ ɖo1޴L0*^DDxnh-`?'RѡMM*gms!"&BO w[i ɆiSu„khll(66+a!;ة(\pɺzl-NUፁ+`yS[=vwJ7 IV].ז]pcM禫Fa[ǫF_nLN4EIT$vۥMt\1 v rDc\f|GmwY%~Ғ}(iQ;8tDdu)ˈJ"2`rQs$y([Vci{N]Π/sG9sհg$j6[Z =ON9[J*WQ,ө0HmE~7Pv&<ndήĮ" P[mbT}LlLAWe:ۻr67Ϸ)7>{p-uMzZ:~ۥVsfk6Ճ:a6)>qCJQw1HeJPښ-!YLT&rNhfč)fo6"O3ױ,3CuզK=-ťVY3j2W:JG0[+jQ8b3XfAgBл}^yFl;-8?BصcX{xA E :PIjUOAD$v䖪Ru1T D >k^ye~}c5\yvW > /Evq(XA l+bxw/@Akcﴎ@YWjBus % YO'+8V]h\G+43 (Upe Q F2;4#'j=s)a: ;v=%ѯDYhɾ. {# ^  &~ԫˣe{p(&P\p!&KnVnذLV2;w98F-fYe@+:y*~YԵEg UdΈF$pٲt "oС:dfx8t0qh;_g|mԳs"1,C[@۳x{=3'PIQعptM udw~A!xB 7EuUpZKmd &SfY>|û'QfO !K.=TWYkXYxy1p)<+E`;Vo|Z9IE J>јAlʂ/z*UTWU"3 .VV[^GKd 4[冫xoٖ~Tw֦4C "h0k(L4zE F`@c.?O!"zT  jLDj('"W 1)m7Z~7KX:_nlp^kk߶/~ڽ18~^E ]zSv#yt2lɓnXS6] IJ_.gs/L ,򖓊wv\:w=ήwuT.ȼKW'wzg箣t}M#]fB* *l k/E lPO":zԺ~I@OTyll*UpƧ᳦Jd+úKj>QO_f|s Ye+.YG9X<^|7;łp r i mpY\'/;a𻷬ZR\г Qx`bHySwWI񒒧{|upg,)YYv# w^7${(YdpwҠ\d3d¯My 571tاGzi֥['nm^*ʠ!zB{tgzǪ@IxV? D>Ɣ\:w=0dAK gVfpZTUq~QP ;2p7#θfsw^jrNɛPl{)֚*wUq*|N%)ޮ-+]4 jŕDPIƫDAQPT']w+$t&<ΑtԈ^E8qFDᓅ)"Y@eQ apgɆ){+rwd 8a|y40͝v:qRNPF$+\R@!;xHReݵNu8L"'pr%P];vuQ盛luࡹ-wC- 1 V9j0݁OmB]0mth[єT2R^t IDAT|𨙌?;! $PkA$H }(c oq- K fe&E);)xeHq)0IA~=O>a/aK?9-9 ( EQ&(|մԸjulYf cXЩ TO뼔y#?w6씩0]Qӂ^^G9"'E9οTD|ZjC'r2$::FlooQļ|w 9|^0$3^3nI.b -lP| "Wf(AoCSIР $G[pK f# KV dcd۬#9± k" k&6q0}# ?4{j-]yŪ9((#^hX\" -X,TG"V)@ .^x5+ ;o]xQ9ްqSQxjt(D6onrz1 _KB4=yҢ>c:K񄾶 T͂ V!}wZgLl͉^ t:!] &]٥b30paZN:=4g"N郢S x ]Bzʄ 00E)\!YK j%ϋl:ؘl*Dy J^X\YTtZf?"V6]#hV85P])%j(=ph3Ԫ"Ƣ83 z2lFTx$(FR).x…!JO0):ag$_r vxc+U/ K7Vt$a bC3 ĐWcx:ҋ%jȿSdc'C,baVN¶?x8>@ q!|H`X`$9`Q5}B\D"g*, Oc gΩC>PuHavq̐Va穂^G_j z²`iYb7Zl7į9ߨF5jԼ: J)bڍxӋMӾmɟ0Xk`AwR/I$ol 4V-=a#,Hud [CݎJ`h_u`9댥`HǭO3] ^ Q5c-NXa7 _vȲ*r6IKB:៨rOm@ʁ%@t6J ư6Ϩ'( dv+q1> ~- Ɵ XA~B2f`:.g>87Pck& ?jy&%dY0ǀT 17g`| 1t2,+@GC|KA3lGS"a!%Y2&GyEX!,$BGa PX' 8H$y/@SB!& AtEcXzL‡HXjޢbB1iu5&qqVVS.hg1Mow).K^~W{aȣ+3G I~edO+)ʼc$$?T,GƬ{abUFvɴi2oӕͲ:-oލ 뷙:3sЃ]8{`Tg<9a?m:W L"9aNsΕgK&N~'YQPyTk5CucO,?T\=;QӦZA@R!C0/C^rŊw{e8qӵ,T~KXvp^o36 v`[LL,,Ɍ%qtǭk748üvH-\Ѣ+ٴ O 4({p ul'$ ځM::=w<] ^,@qtjEW,_2dpO4kvyUɧ 5ͪ5i#!2(g.}4hn?-CGL_(NjFKӖX/;Z8S'l-`QbkӗZDcdz)**~{UzzwH?QH]Byh7}So鐘b:HOf3 @8 yr{O.ƚAA`zn!C\x Yvc97h{|yAAS+ƱVɗ}7kd50ɳx!O1J RJ[@1&a֐v>w2o g)aRMkNEEP*l5[M! vi5X-8h0.4Yt1j!f=pE'"[.x"B_k=SoaUrH ?:A^;凌GbWRYPe IYy+l)}ncu5 ۰F G!l(*)oA2 A `0  l +H.کWhBVUB4k~;|őZ]6tP95.;,g9N ]&%P2Sjͫt]/."ܖ5Y /+nOnNݭ8 )NYA P{mai4QمZȳ'D -/;=,wBQ\AĶS52‡H9 s;HÂpQY_l Fւu-Qx%P>uݯY `0 AtAR6%Jy݊c{Ҟet l(Bl\A؎^>= M X*Ion8x""A `0TshF `,X NGjq =8q9#QJl(X@}T,-brC\g>p?ZA]`Ӕ)|p A `0 )G-_p%+B15Y\XWF﫧MdښJ?odt/!"2RW~f:?x?LA `00W\=.j0RH| ߤ=!,îtNrb$ uӖѱh)=M;fSFz$4o5jA_g&qs,B#j\vNb0Fհ k3 Cƈts۩yg6iY rw3)/DO<\J@^Vϊ A6t)*j_*1DA `0  $Ũ8TZNVE1< [XqvTκOTاZb `JJ D WY"";[hѝ,jZŨ1 A `@pҭJ{ԧ%)ڤmq3Cz &AIS>Ҫŝ*X8&,ֱl!BI}f@y^/iTn|aP8#Eb @8XjW[ A p 5p2Oh}0i nHqE}"hј9k)5;:͠*+rWsM 4:Yr t|bdal,z*۔ WF`5yiZC5 #J rU=A0> 'A+}S p%}{_WV$%u=iSܿ^v%;AiA6]F:ZYh+$SNN|t&|wC}kxڸz~ٯ w_v~iO>}fTUU{%\y=7^O|0F'rkžXp_EROSAϔ[h̸́j֛B-03 bT :)J-i/;u[WslKlZƩQ , CMŝ Sd1Ξ5MiȒ80 c'13'N%\jUyVVڼpxf^mS(Q5 q3l!?@!`_%jOd0z)m#cN-NhެY5otnrUP~=ܾ>)5 投c,Œbҷɍ7qX x"aE+mqXbW[HחV?vWY`MRK':痦{xT TMpki`yN+Ѓ6>P?lgXN] g Z0U7o 7Ve1Ӱ .H3;5C{¿=g6$@&B3 [aͧA Pc5Vn Sol+pW Q$mhiz?=+}Dfڽs)~HW͊/Ex 'UFD#^s]J \, JR)\-VXeK>ڣ&V[lpTͷ8[٬Qs:$ `$`߇ -+y@yf0"!`Zr W?j< 52wh:S;?mp^\**thԔ- \:Y4&Com_z|h6uvy U( [>y4:_>x/!$%'*:鷹ϏaVX\\䗯x('m,"d)k/c-lCY25hJY`Ш܌RssJIPs/H}( 猉/]NQ1Ϳxf鴾T˝VhO,Qu \Zω*I/L.Lft*S#=)CdKmJYga!Y(H@y4ɝXbPm3QtNڹl|* d0N Mn)6V HN'AќkR LB ?xzOA^Q/|SEBG~Zq%e/"CfAFfԸ^=Q4O m|sӐ9ov,M%E~劕Ǵ?y'ms/@gG,LĊ'ܰr˒ovߨ!&W wbV/i)_{ll/K-)4cg,L!^i%$U 0, ˸W;@uj+(/Ev`9g o"!Oe}O_yY=3 /?%e!ɮ/_X> +G.=C>A~9;[**<\tɉ~l r>aSl]`BX$ElsQ-kJxdf(l!QSpJm2 \*0j A:={1͛7mmZՒ )O},Sm4ȀTn_b)B=g넾Bnח C@PN,"Y?ĂKLaijBQho5 J[gIݮjuqfu4D?p0 sݱr,&V:Ѩ^cjuiU?l/‹6}ӴHӝr{l1w$H,Hyݳ/fG۟Ͼ-㞚C~׍͈ڢ̑w9/:%/II*Tw;Sʼ}(~ $?2fCqNO:3sPNTRkNg:G gO`Љۦ )ܞ9p$]53},k *ӤZ,C([:}(˺5d0 A PGȑ#DqA'9"8P5˸#j{sW )͚lv^\ɧ 5ͪ5U2hǐU40^Z.Q>n?-Cф.NHyRB2l_?V2M62DBe[o;} 9pt *<֫CƛnhA PS. ,|H, eF-//;b`BRZϸ_~,P4<|2vg ȵtP{E'$z/НgZŹ$+F0 *%` QUic8C \ENsĬ*řj Ǚ@uCM 5딒$$HBp3p+}VH~n˳?u{% )OInV:|5!%gVҪUd)C‚`4Qa@,XՐAx^[[ , v@Ç3xr8>)q uVcVIxO!r!8+N0֌OvToSq {%-2qbWsԂƧ40Ʌm+149 k^b;F%A z(zCBsJ&Q)''H SGWYE9d96m jۋ{vApQвbHȪsWmVAzfi2i$Y1,c̓RV|R&[Md%cネ#8H$`嵰`ΏOYD!KĝKGa$MS |"hύ!- >bWC)fR!D;K"'ńo/ByK|<E:QIth, fJYF5fd Sᔴ)M-hf1yMpM1 Uv=ZPPp޼9')p0yHqCƏ^[95{\6D)θ,pG"|.c~F.a;1?桱2³^Bgtc74yq(}y,k1n=(1oyn (X )'3 >@- \>!ˤkwяZhyR8aNpF)<*kZF^CmR!.+tH5ә* 7ydPb"4 ]Q:3˫^PX`VI-X44P m5(Y fGrnǨTn/=F 4sӹ%F m[ij4Y<[(NG"ٹe>OUU uzY={hxX#YO(MP)H\y1B dq:l# L Ѩ08:Ĵb(<$es Tba@'W{`XJF(LqpzF 7oT}n&ۢPiG 焬)6=l%V/U Y)Vxm]DUO1 Wsȫ6 x[|0㐨l mKTDcɺ[wkJ-Ej-ts?`Q'FOs2h,f|0CJr[SY񄿢h#mKv 3aN"ve:~y Bx^$LTaTE#bsmTzDdGe y*!+V=6CF(4 \qͷ1KEC` Q;hHuNCȜ0t8nǎ=|O?oWg Ù aԌ M2%' yw' :;ww6 V8\:/kq=9L_;p)P[3h<ɭ/ջz9o>77wTH_Y?~; \r=lU(K#JC?Hĉ;woy>{`c[px2jSf͛ۻرUu #yN#0&\FOgXL͝6u1z bWNp~ƍ6lبQgѸ'y$qwY߸8`_>Blw7eLda'r_AG-NoެY5otnrUP~=ܾ> jkmJ-5,_R>A-d RVMhXN:v<&w})a5D><+6DE^Jt;P.ow5cީD{m5i`,l/¨ o|ѣqhۢ ֩OJm"xrz!\#9&X a^UENTчVA^qyԫĉDԩ$Zl+~áCq'nn]]21dΔ Gf߳lcgc( i;wYr5T5h.'\B=tvD+j=>gt^~i6u1직zip sE9NS ( K.򫮺E˸$ ?صo?Uwzyq =jo%SƧ k*D}1){ɨS߶~ 3Twä迯~dgjUFݱҊz+>[2؀J»Vܑ<*@Ecᗌ F\x$GNeJ9]o_T.ٵ+H“IE])B+2x ɮhXoo 2 TDt:gLN#NES&- B ;ZƮCËvEխǷdW9N)A `0 :AgU8! `H-9)9t啭[jԣ10*t#C?<yEqrd_L =zod‡ tfO f&f,cKAwҺxaơ,maNnĭ"5! AV/]ցsn_P.ȝӳptw,jܻ|]$뗃|˄!hȴNMiV1|Xqhi} |Gc  Hڲ1ZehQ:83V9m?l8NeS* `0 f`Riq !=V+hR`MuN-.myg4n/@ȰÂGDž5iw`)Gh EWh3Fb均O wK7]?$)FRf1Za"GHP"W) Vʎ]ymi/A" w}YN* Iudחe]2Oţc }e(($eB c!9 C}wôוi0piR'\ {;,#̥HF'>o _\яJa;I63af]mw*?kvJ^޹ceƒ$:kDBcDF5πG'kjY`Ba  S65GV۬^fkUl]bM3`Q&N-Z^ovEqxMIcGLhtqM|SwE>'E*牓ƒ9L|s`6ȓEo$Ce( l :S/p:'Ai hHJ/~aeRYA.X8+2,ץ-h]\}ZjRTm ٪EVc2}[w-z[w.l%NIl0A>2M6Q'rt Q> xT˖-/FZ_Zl7$1ZHL4:QUM<Ͽ͞~_Z2Z *zom¶ً2'D-_pXD.{ח:_Bs׷04.e/I f%!Q2(~cÿQIR۴ۓ~r;c ;dD;\HY04. pyuERס mh]~c[5v! :'kj. FSd(A pz"䦛bOOߌW2'|[,J>v!>NN |{N4טo[]ZO-KM4m9+LtW 0'*)bJ^Y!5|y#1^|*)=t[ʋs!B3+䅿8ÃWh3ϻt{)1SHFvԔG|(H*~98'&ݷRz?SBcGK&t s sM'IPNO=ؕ;B qnwX|B-, mܪдx#gfL,9Z~of/[P2U>~:A `0@^8}3* L( !1cՄ(@=Yo]!sw|:YΫ%iêfjjMaZ(,#, T5 w?G i;#m~( S&k lS;)d7PU|-Ȣe~<_ =dS'2hR)=% ݠϴ,G:SJlQT,ܵs\0 j˘y5URv/ 4ҎؾW 5 A `0Hؤh(4(:gk *@q)H=CP˪%> ҉a.j0Y[$jYΘe5 A p# Y=b\n`*xF؂NKmPa'|?U1h<crXqT` W|?SuA `0x"uŊZ^ IDAT|e*jEI5ֶH޽g׶V P >E&Ϊ/;i_sK%8XZZX{z֬ ɣ>z;tYKަ0 4O/CQl_-cҦ2ˬo+;{6Y)Pc=Ćb(wVR_J*er_uYg{ nS`ˢshT3A Pckpk.x_+vVBH@A5[eω%g#W׫W^-n| !3"PlK-0I- ~GEe0fg3uZz)PCPWdXf3r A `0T"l;,`dys:ɉTZ:k̓?SlV. SSӬV*eU-R\H2I^ټ4K2m-c!FDncvAJ ua8 dmڔ p;D"#a?!E+# UY7:T5Ӿv:o@>I:V ? A `08<{?#uvu02w偀u'IsOiӃk;Yfe]ֵ(b 9c^Xj[5Ը?պ9MI#$vUi9I`T@ ̕8> Q)R8>tr8s1-"cք7p2ǐEf#Q쫨kn'˔؛DYh vk[K(cF-h ` 1 JIu `0T;"+KYtOsk'8wRg܏Ɂixd >igr^^J.lВIu-nu1ИlEZ;%WDU}r L2fu B̽27ȴO!P) Ri ??4ߪWD`<NQ% "Z6!5Ar-͓B.hWV§QrT Hf?tfIOQIJQ\04A `- /-_vyA|lCagt">)Jg^c4--Z뎈kWG|I0xk/`jV<,d$)eyM Y/ԂH|ΈJl .2ܕZlh#^;D QR<%dҊ`'p S@A]& 2 4ߝ?n>v:̓RciNBQ#xfg=U{Z䑬D;jyG۱c<4aBa4GNB'auLB#Y*񹷐`royU¶)j7!6 hk*Bc(,5=ތg}J^4&]$LtPj|S `[~G[3'E{ .X;!<%]_|4رQ -{̞0?7_ۜ/*0utV-?k\>yL}*#aa479n: ,(7Oet΢ @Bl2S M uKWgl!abxDžy gmjqڳ"LS 9eM[Xtacمi?G)l:C-eAd2GigK({fQ53!FHPQA7]F2c(cŘM0ºY$k4]NV!10U]U}~{k=_}j vh߾gϞ4ЛQXj8uOeI䶸$OjКmp@VlK/k峤<̣.6rJ+u2@BmUݜ׼LRM*1ܢD 7vTA)f%eb Q5d.T@Zp&&CH$Jg4Tkx'rѓxܤެG&"10.0'aM" A_VVVk@O8ҽ{Yf-\^n_N[:]o}[Ń0%b&S;fZ}Irm2K1,0;&3,g0g$\\7UViFtq ȃD&3#<p* آ ٌ@RiLaLfD S dK`P*m!F|~^cQr",b:Ș=π2e{a2P,hYMoˌk]\@BD S^B% Q4" "ZA*Hi"rg4 %酥fEHlA 5B;O!T#h6u35#ĥRU]A="?2 ڰKȆ AA2~7ztIw/FNˆZ 0\k+znJ!/bf돜\qi)< `6R%Qk`%2( 9CtcYiD"D}9/2|U-2d!.JpvЦ%ߥ GI{=sxSfYZzn=k_fTP;zqRb<&x2Ֆ64!dy8-X IGVG59@Eo| >Oy &2E.)2%Cնm6C]C p9Xe KD](م-[ &%7Ӝe)D H붏k@Yr5^1Z )Z8{^f GY@Xĺt}#,(BK-apӠD`iٳDB~nJ %Lnoﮏ@Į} e @kxb23^Zz|:Ej,V_[\TkBSYL?aG/-2E##I WD ݷ/ Q"i"fR9Pi.$Sgvݯ3&Ǹ.tŅaZawHG@ssѣG9kkf\k>pz9-5(ϘᇫFݭ<jo%Y=-oiQWZjlGǶy aDF9upy[Ν}ņ" ^Ȣ\ z$~fq-!Lu&MZVTU^9ѰJ&D [k6^U7QU\PY{_^@~䫻K r`o@5=ݿP4[ y+A kZlH( "|yOzg[mJF~R-'Z Lq`( H>w*ͽPjG0C"~/_0K O۪[yUD'8b5" X. u UᣐINEŠ`x1K-%4(@G;5n>W [1~YK6vCx.0 JX}gnZcEKl A ЫW3f(,, B^e9rRlGᛀD Z*r-d$ (Π;ӥX3Y;2jvaJ2L۱vb D ʟ>hSSSX:(+zq&Qg*URi˗/N:=XԾ}s=wΜ9e4YK-me4Ǡ,+xoJ{ ڑ9oܚk!@Ȟ@<}Bv fZz.N;VTT33=pUyfQlCJQlXZK X.ǜr;UtyDa}sTcmRD ) p[++vzĉE@Dg͚pB;[e;(O2uo 8L_n52Gɞ~Ń}AD]aڑX@}C2ӜSZ̒ @lG'xSA?oX1c`_#yYrt:8j˒g 2,'J*uZA$![hD tB 3Iل)qgdCWY>;7 =$ A8-o%΋"yD@D h,t9 _> ^znZ- iBb} c|"T(@Dv0{LY򼁙~&^ G ٰI@8ar|$s ʃd+ڹ" "5 k akXre7mrI$r9TָiCB.S-0Hq]Yg1jΣ)t͋hIg,&w`@c#lXXk%/]v^7)(7kD@D O\µDԽrWoO[s% 4H7l \{V4_Ʀjhz{~%[>cccVZZ tC\IZ(Y|4 H YFSlc#uɱeY&$`VwMz5 +//eA Fy"u!P`HD$dIGX-o.]=*=2?rPs}gN̄*:4 Py時g4oZ`B̳Gc<8fw-=Ex\w"# t,d!(Xkp"15" @f"~rK }{v,Boeräw-B4l  וߵ =3<ҨJwb_J Mؒ=G( Z Mqg O)5T$آ*6ِ}~mC1<bk?V " g ## An{{QenSdB>YLtܷ_nA&ƫ~]~Mڠ 1e$ ={8Ih9B'yߗ9&߸.{>-i`|ChID d3@ իE%CIW^p#ӏX "Ebٸ<o~MS|O> #Ν,t  }hӢ،'YqHƍY\.d@s8ܲ!g/IY_^r3T' Pf' " `䣔tDGg̘QXXm>rx~% ]'qy,#R &BRo HVZA=qq[^ sΧSeu HI0eTn8h&+xAD6m=nmɒ%>hSS&gAnݺ~vvf(|,f3Աo9uXylOCarv}[njQpSG2:S5ה嬙[ZXSUlB-AS2Ee3䩑HD!ppA(,b%# IDATdU;)Odɵm*'$B ͖"q #@#Fw4m۳'( AO#9z5I\yu;68o J-Cekآ ReA- U( 22*,Ɉ^KYHDD@D0C<5HxZXt- ~-G&mGB>nQܟ-?٥5JV,Z]Dg@5ʦue@!/p|Ţ0UjczEJFHCD@D%x538w 9STcj'œ R6Vv{ V6$&0؛f tTwD*Y ߠ ~0\C.pB='T.F|nÐxj̈"  gRtN]Ӆ АM !9%$T~-))o骻e/wMqp:LY^'SXKx U4!"$yyyf-r5\}(Nw& w´sa - an4ODN|"h,/|'nQ) _* "1@(@4tBTa~d X<74Kk:Z%i&`ƶr= (3,Dʶ7m3@OA^QPPWv,J>p\b6:EKǼ1'sMl !!lo++D@2 H*A#h}#$] p_ PZ$ iΓ CН"P"D)J!+T%KdJnl@of/K n[ާOh)"ѣG{'5<zѰW0X~m*X]~q KIu-CAyBR 2NCQʝtXK;Ckr,VW_?zfjʊAM[Y2}n隚ʖE0Pӿ l >|UZ= ىIH!C-1lB2lM Րzdi"11H@l)-c/VXHI;¸ b^U?^ 7٭(0#7271kA-1ᜐ[,+-Bv̜d./T^3HD(0'I |&D keyS '*Q u@DS3« YɝQI(ˠL_OH/k~2I=a"s`NѢE'wJ]TW5bsiQXH-mT,)Vm.-,Tzk֨bɀ妚]-v6&n&7jVV@,(⣟Dw B@-M[ nB2T2fDOQ1DA!- Px|22ct @#w-(E6i{I5<˘e;A |7O:,;:Gv:%uV~a, <! aMOLe"" P'j+7rJ-ԇ=8.A<`6lnX$= 7x0Z†D@ c σFZ?BqDzX^;]F2-H)"N1W%/ED@D@IÊe*E[,D en5'WP??`$FD WCEmA"`jV#u-e$eFa Y9O$l "`~؁ZD edP]C{vmt&`4 !" "$O^L{!4L-̘Lu9ԗތvFD@DH>b<S$Paiʧ!r_>?" " @2L-AO[C&uϏ@D@B QAD Uklhy"U/2!N@빣Y]H^XD@D@q{jfF< 3t[_}[,3y   ,^?>uemz۷o߷o;3FkDH&Ƥbd[Nk5ENEE2VO4"@lD vh߾gϞVZNSYYwLntb]:va"k.ؤVZsrf%M, L-Rs^",X̟Lb ojEk׮'Npw>k֬ /_X޺˽7"|oޜ0k׮]G:ul߮]۶ڴ;ut.]:~2gZ#dwR6\"fQ @SS㙑Wߍ8e<@ AlU Ġ D4 @6ƷԩS0ݾ-ڴiӽ[s9Ǭ]8)HRD0nDʭ 2D Љ9~/ s--|!ȉr&.G̱믿>33$=Kߡ+ޱ% d eN<7իW EpxD;wF/0`xS WZ"Q i79`ѩgCD ;Hp<$pLvO!"4 yeP,10;RBBDZ7-4-',*9t~NܾF"4S=_9ZwË&mA˃%q? :d* t.Ҽ|D `"W܆湫RXLF' m~CL BKD[A?/z~_/?6e3gÒ+\ts&%~Xm%+lĎQVD OY&"󐾤efF-2 7#ܟqQEBo&붏k@Y e^+θ֤!8~F\kݍ&# X^"ZZZ d5sjaq%L_"k9lE6{-TY׺9{3ֈ"2LApkxbA{iXs~mrQɮ ZPNe1_;tu/BQD[z] G[|CCtB'Odْy 3G@(Hj)8+i-e Ω'@V$O3h!t:=&V!@o$=zQoY+_;5^kTko?L}aeEٷ|Ƽ?\5nP+)oyKrR`m ?w?eeϛ__ +'2ʩG_OF˫_ &ް쁗9رcnT_w)ɢ;4?]p8(407Fy,0دƲ&A ʅٍβv4 UyēʩpgFUu鍪҅{j. [C/(:j {UZ6vBgn-xf%.gmUϠGI6|ls=t-So}2S< LG,t9)mfyŘ1c~m&`N͍̏˸YI:2/sSQ"[ \` X2!@!&~^rY]|[uK2HNWJBbnYEDQ?heJ!*fKd /Zh],2sK_qWBh,`nVT, &! :>+1w\H/&Da.4B aa̬n D7pp'طb֔ydQF|7Bȟ@c*J:jA-e!\r:nQC/ء]u_-o-߱hԊ Mdi!XX| D䈗1Eq0Z̙3g̙_ѣ!(..~7u{d :.DiԂ#'OiʲFN.zn!p##z m-HnlF4 @ ;Ί=u-Ӏ*4q%M~ {֤Mj [o"uoh%sR /k?fhd uX/>9_CGcÉ;(˟˚;*bwS'X?hP`NcĭM}jN~u9_d*S>".3_u D:%U,_켙̓, O*1.Ef=`ֈD@޽6?~=k=NZ : \k\]H`P 1 eSرCRPr!䠡no:efR93HIn-˲Joɂ$ '" Y@‹,tH}<([3pb׮]aj߾}SfIZT@LAy9[+ƴw%Q "d3]9.f`] %<y(W3{L#666l)hO>WGꢐZIR Xp߸ﴲL}co;w xB=7'D,oҾݷLjPL󅝇`_~ E2 ߉ --'O=u.g}]d .ԂWEPD!̨֢ & "FGid0 ""uXͷӧ[Z[HjqZU4S Bզ\Qc$%`9- 3hs*D~D@ (7(!OT@N,-YΊ"[$!^j"ڄ`N1?&S64v @ G@ W4 xTSà"]Jb|-~ӢW[LcErQ"d4p݀G ]$ESR F,DNq1`O| ȖҘYL*Xi\&iBӳ'@|t9 Ad"E2F]"*֩SBYu8EpkS%o`?3nǑ @z!88\AkD I(_ZwERqR #r5P$ gT#P#sGK!D'vJ!*gSC$ "9d\q {b{r|섘/rX̳xhγv+KKxuG`RPX0f<:?O:vǿ7n]qmO{r^bD~P{=7;xg]&|[%^nE|o𡣜3TrV_$5 r\N?xR9}xx^SCqaab}9mm.M|uC9}^&vJHmf9:@ecn2d3b+ 7}.SJ^SjR/W\7pN9@"  ѡEA:BH!Э[3ͅ׷`v 2cۮ]nyqR js(0$в ]v5$Ɠ>8q#" & ث"<߸qCEC^oCgfO9HϨ@yqŅ~ 1HX9 CD ;EQ :Np nBBv`^"@߾} Ю];:jnl0A+FNNcxqPZp GL{.BmVdf'W" g!knΫ5|Is 3prDG Ħ >\'3tڍ&bkߩԾ=Sx0^(ʙډa=9ϞO徂狏ڛgvje 9 2H$F]dc%U?j}c B(tdhGTሧD@D@WTWi{f17' Il \3 DD Q.[sE4@ r@#sCsW #7Zk[87[7$-' Ƀ55q%Nj LrN<'OQE`ҿG?>y&]$bAq1q~~z4_~8a'/a !k=D_譖Aп;dU$USjUDPa6mbe{{ ڼi:zr&9J!hrLk$h&,!wXRx l @2, PbB1\=1yE2@zaTZ^s Pd7ٖ2Q戀Gu"  QƁ ox Q08$%-qgN\ƁDEyP$:%@"Ciuh8"Asja9I~+.Cpm:ZaI( @D1[ʗqH=$ǼEZ9mڌvrzSyw^>ƅir谒mn#ߦ,֖wz1\/'x(xp{Non+B9ˮglrn~^X7ұXOtZrX/&a3LY NF' 8qquБg^~|Ha?o BGRK跘Es˩U^T"+ HS~uqFa?͌kZqź )Xw?>W3+ٳW8``|A9NnpS>g Mmc[ +"Q D W\$~ے CD ApEbsDH&Amgja~N;Ri]XC>i:]EvD@z(1Ҿ#Dpㄨ#Qz̉0Ism92G\-j FY>ʚ>w@qCDP`E8DG-`GVLMr%WQ &sUiGs&ezRoz:0&eVb{IvA]=ɖ6rD@EYmzv K]z?X_ɴu@̉JySjJIB%bP<Рw"O6LZ\IMYutzBݢ-CO75残ŖIHIZ|xm[hp-|&A9̉ j~7@pp^%D.Dz/F=T3aOJXE߹xfe!|gơmM$oX"ړ{vM$l.5,<@3J@!4jl&\=mk+O*Hk:HNT̖'a4`IͰEɋVgj:KU!* ;NQ5̈N٤Ja< OnVmSOv˜==b~ ˅Fi" {RhPY`綂 i!#o딱E9xQݦEEkj(d"JUnaΈuM%9nQleŦBfT`fWO[( U p.PXar`f[ KQJRKDyzYSgԟ#-*$k\V撩(.T $ ;(z ikg3i@@kʲ)0DCb,FCnU<'Td Т8&NՖ+֝Q2 Ztc|h]͟ESGxdLӮ3]sٳS|̢cF3b$^sq^޺O=AoR<:yFg^G[ż<^} ^nЍuP ;e[$!  Du+:`oyJk&ȶn(,l yhhRxv&9x_>'yfzm&3ptوSpZY^ɦM1D$f_Lf 3‹U <@Q{YʬtUYopbh$-Ķ-; BSpDN#" H(i!3Em7]% \2bEtpmaYw@l !PYFXjQü#pY6gU)Nn).dokܠD|iaiͽO9v5F>!"DDS $Ae3TQ ty`$ KK!AfēI?2ϴuR ;QňX$O IDAT]ø<@Uwh]SoOCrMޗB+/T'E܁>˾<_G36Ve(TXӋZ nGiiQΎuRSZT&;^T0&(^$VU'xx˂RR L ?&,.H ;rsh%% >&Q!o*RD4Ӭ0!/Q0Stf wSw3Br)3Nw@t#Nq{N;'v 'y[>=7D]gYOr~19DZ_p뒑2e[6Cfh95?PW^y_4"1[H4..ozc() ~ )tr:>\lz7"yXq 2_TL[VaVNV%* iujBD@D 8OkxN?V*) תmܑPE~fFe9>" " @E܄B/*S+ qmoND lBD@}" {yEѨxy{ۼܦ7xyeS۵ 峤bgaDƸr[7.:5 9@nG}]ۋon & ;R^x7j߾ۣ/>|l+9Ǚ @Z"`Z9Q>)& C_٫++Q|!D?"F" _D[ D@DHGfnfz(E"S8g׿3d90뇈'_GT =ElK H̘;udP8BYF " "D +ƍwq ={6l͛Fj৸S 1NIƐIw{o㏿]S5 fC>|T̀}b{Rs"SNUd K,߬9c<wVuc,{c ` " @Rhiiy뭷̙өS޽{袋+c=pjwBfvQFH\SuE/ZP˪ U8|QB(_?[vg>z! R5[C^" p]؍" @x#kC_|oP4K|A~t_?/_^q>~i'i[e-Z˗/| : ؠppj->~+w}8i * 1XQ̌2*a8L~wٲ/Ȅ("lNKV$b K " 9<@"H-jjjx^kv#+ߣ*_S޳Eݕ.]6a}y?aU}{C@,SO-Zv-K#D@D@e<dX,Ӑs'A) x•/=ruȌyd1wIs.['6QeS\>V8p`ժU=N\(Y-MzԌd<9HfBj@Z`l80F?@ʮ]Yv}֬Y . Vl-Go$Z @E"8IO3F"k hمkHc όR%|s೙<޼9X %A]I-yL dt=Vȉd "΢LR ÑLbـ #DHI-Wل3\8 3Ht@j ]ZzO*XGDb`LEޅ0o!9[&|}5SIDneaKDH~ɰ n/;1.%C?~th|PWOP:9@$"**1ΌRV`~XG'Z:61{5"$qG=?/nYaɕW.i`f|~phN-Z[ C̆vj`DHL rȂl!Ђ tP 9שD|붏k@YAV!4E+gg&R H*X40l- p916cD@FWĹS;Ep?v!dwHD qf1 |2'tl O0VDCw̯Q]wB+5.W і(-%6*;Ѥ~bz(;ը4F9,7R*E,D$M0%:jJ9`)˒h a ټЅ2D 477=zцVvjŽרמyZoyk~j+VRsrWZjlGǶy aDF9upy[Ν}vܬ}j]lgk&K f.qC6D Οn60QU\PY{_^@m6ݥ0]o@5„)uϫkc/)|ւgFjPšx&'7z?knO |XkK<ԋd F.<3.$o˖FRbˈ|3Q@!*'' m5*<ÚE’]S[ojs~>gڍl {_ǫ)&ʽ/ks`J! n{crÓL=a*(Jeծ[Ubݚb斖斦SXrܮŔ[4csɓ--[Z᧴WZ\cb'Y=G*=`{]=p#k"..g߫RO-Z~h[5?}WDf l%~vBC$D `ߦ,apgU# '\jB09? m>ʣ"{ZOܵ{9qjSriԢt4+!uoԩFӧO X؍" IF};B/*uJ_1VYWOt7za7,y^p_( ) Co½ObF֧+{kmIZ7#k}\u 2iM /R4.2wѷ,F9ZϿ饱C67[%ڔ/h|~27x OQ -wahb<> Y?魭o<Y悳h>9 밵 +!iR)'Nˮjx}_0'o: cVQ " :H^e>e_m2]KDA^qWM/=[ аѩMH}J?vawR3<|kjӔ?mX ɥ F9eݤlm!HQo)y(\بغDͰ4 i8wo oaϚI-CaM͟Z O#qd.hfME>acYې2`ձc[?%|#)xGW&l۷?s̙ NZT:ZxP'لRtiX ƶC^A7[?i2l"epmg^ 8+'^<]yn^RBԶmD Ž+\u#>bQM)e~^@2 RzD B,{V%W{(N//aIvK)eۦM6yyp4-Y<:v!'Kgz8j*kmYjB-aI/b^:*)I-j-ܷUkB;o<4Z7`XM]|2W7yD3MF̌⣉R EZzF#YCk\V%XV8w.A׶C2Ak?Ck]mڶiӮ}۶mrr՝ CZYٵkغw>k֬ Eep ]΀~˩1kXw>kݎ/+o\F F ߸7t?l{_XfFn}; QʀޅƥML2ҝvC0%|w!"m}􁡃 pJrwBЦmNNm:tjۡs۶i ?ֱsǎ:uض]%/7llV566f x~y.!FZ_Q|Xo(r/} `UŹA9B ;޽ A-h!U$xTEB>\ڐ Z#B\(B?3k\|3{kfG&Ú(O;u rgツٌIxrLI-sWH;M LZuVlIkg~WjFZE䎝n2X,gCO\WFo@b o}[۷oDZ"Y}$삸f3M&)IAlZpMn~sYJhk9}w@] 8sh!ӃNX:&Ǣ:d`JIyh~ @xGv@k1lkRR^u{P pr믿Q( y. xWu2ȼV$tH@y891(n ]6i v"R38qaE>諺h iB\p"X 1Pn43Z~L.T1'4| 5{ݳnϯJ=\;zc汘8vDlх .,kg~1NSO&Κdi2]nДA,L/f)bc6&":K0 >wM~, qM0'EjcN|\ aGDX=Aee"FME+V. ~NՊn*K.X ]nn Jhp(qP5krYq9RDmM 8^,ڻU1 ni΢L %Ď0f9w# >|:iPM#aSeZZ:Ы|pd  XdC +0H.#"U]LbCRU%-f,S5#3ɞY߂#/?IMwў} y-;(@"Efrsӑ̙ڊn޴ޠVCB TdlZi LB@@ @SqˊTU^D@=?bnhBiɊ2ݓ}`$."-{L:g6m,^"۴:u^ N IDATQkCGg9!t_={ZNE3dt`~.߀. `ւ"2p26( mtn8""!|SamY4-hɼ_RU 1J5N-8yi}=)OiJ`a dpn,<Ԅ+E5_;rLɡ94~׬)XE T:nv|n 4L 4ZC @y8&(Q'n+Tа #นyHgn3r""A:?·S7o dQSeiA#SB9E F͢U UQmJK%ds%r bki8:PQ,ò$ gRg!p ;Atn}"99GyD ~zpR(< g rWN̛ 0%Z@rV!mI3ɭż0{\E7BtBzŁIprFyH.G `-z$tZme|ߊ%4uj:8T1TdFK#"s`*KII9w\ZZکS¬:D#H>lL rd}1 -2L_,J5Os%mi+s[ªnmY5${a;Ww--zՌ QsuKlݪ@եIeY4Y@ݩ0/}@  >m `k'O FN=D@H!`2 I֋.y |E(%2ǥehy~pX%5@O6A%pzZP׼D@L"]w*ʎ%ta< n:O*]T7M.6",IIUʊ&Zl 咇QEPpNҼ]2Xa_د)h,jED@D#`ZB, 1x 'w hk-WڐW_n鿡 ȇ;~X܅Oqy;|GdžZ4~HH 6TlZu 4.%ϱ@ni멐eKH J9ذ`mN.YP]up"90'Rb2vrunb@;eQzkj@^D@"Yh!OFR{h,1 f)e{OӍi<7{G6Z.1y"2FLk<:rbɓ|:'nia'WN\eQh@XʯLO%d(^zd]CU>]sS޺2⌦P{-D@b7=bgHB:u]Gtż9垲3S=bu9ɫXܓ_m~u 1 ɖ=/i]v^ AF1䑲m!SP|_R|s? }2/UNPI aIʛE'+%N%UͯQKT 8lPP;AN$-@v/!/l #9p PU 0!@H0 -F9l"O&E|SN7ZknAvF .вIC&"wyMiIa r,YE$3XXNp~ Ϋ٘,CX`B3-Ǣs0g0ed *X!y ܱV_\znxްr&QY&+E:!•%!C@"6Vd@D J0 -h( S.t3sULYFʪ*wa>N Oq^t%M_L!g3&0Q̠Rc8 J>ӷUMWuW\១s7Sn *4bK @G-c"X-Α!rN~Pd_=:Dݓ7>젋"-82da<2h# *D ]Dh" "` J Cq/*h1X/}5~}."n-phK؊*lxo;9+SֶXȂ˻v2o޼*=9sLUUh" uxt}ϧZ$S-+`)t 놘shąUo`ȁgG.]{cƞ={Ex-W HӮ!Q-"K@_qŐ #$-~FY kY!up2#@dhkk.a+W{4(Gz}b0VÑS#I"0W" JcaK؉*=vVJOv\FuܬSZqffGw] HOFw=u@"pZhME-nuAԪ^HAD `7hEN)J4Z N#ÅeQ7D/h"D^>x_ga3  L^ &@!Dx{H<ԣC'Nj)A`blҀA [" @ `#UD RaѼ!\D@B^#+rVNώ׽jFݬPuԍEc wڮ#JLQSr °0" },buA `'H'Z2+RDk51Rơ^D@4 vt;͸on&Lf=#3̭ioM5ȏgZddV0p^kQe' cTY Ь_S2L1ǮcAD@>\?JceQQe|M|@I-ld\|/i1.JKP6dAy,2lcuuG&wyx|?^lrQ)Wf7өtM'PNҰ h2 j/gcRZ6L%5cEm6q/(?ݫ {r>=Ѥ'D`Y"?g'?wO!l]UĦW$QQl.aoSkdU禜-333n~1mGD ׂ~DTmמ߯C_YX4O3iC- U ٥1v(L߶qr#"SҹLZ_lL0ZL~[fdL0фD pSq#))y߂bv?&ū|vHB+R$f^'G345oLRx*KU9ZBJj-ܿ؈LUPut:!/`Uvg@{]!<3'~؍0Pd Ģ]vt$O#x@Dۡg5H飋Ȋ E|+%̗QM=Rq6I ͩz6d/gVv/U\ZKD?Pp8̱J˵VQJ66y2֒_ F"wT8!{r.^V!l5e–zʝWq|Rx62)F%TӇ4*)Dʐ+߲gж #wϦ< PN -['d;]\K{_ζnSX4o!`Q`0R>_:x5V\RSJbu ƬY3ٿjɅ?熁Ij\3<l(yhYi-HAX. S0pDə2LmMLх9+I!,:w=:њ5I̒L$_|b0+ 6o e3o/6<=&')|YE~t U OХPu*Ihƪt݅ )"U';=D@@@]8-A{Y._ٶc(Qx‡E5U[| S^=e9tF4rȪY5sn鿡!XQ{HsՇ{acekA=߾䯬_A.ms:"Ҽ 1w5kna_Zaau}BYʤaTȖ뫶!,X/dblξ T|CSl_Q!6|Jh"%7,P">k!q:xhݴ,8eEUHR3ji}Rﯔ@n\U BQVwgU^EBaG{"[Y 2*<% emb9= <!Gj.PRN*>e??Jwr"<c$oN;L3i˞&8 fOٳLl-ȩL.okj&A :Aag!=!c(ɓ$|\s(oW@$wf%L ^BfA\)cI[)p$ͳo۠Ɯt0`a~&P=RґEcCJf.x<|^k& "ȅ$y"x>J][1F~!@" Z@h" ?4T h۟AI:M)ͻM89B A ;u%ؼ]MNZ00 ԝGeGn2""[N\8_ŝq%BYzyҲɖWg{!̒'?ٲgtATμ9:drr^ө!p}%HQCTv)53!>DƯE6IVȺC_l i~mlQvy}RRRΝ;v)}@zz:*UfQ~(B%6n_Zz.]{ƌ&&&h} -L\L\)5S aˤ`w!Àr |Usܱ`ݼ BMbR a$;wYuii@C&e H\H0J,o;T`c'VjmbHG7&pqO"2Y$Z[l@"۾}ɓbԅ28[f@HPYk͛ ?sLUU5{,] .nճ|v "wlW*y&n=ݠd;R!D<37U3$TeYy2_ jȦ'J)n|za~Zq5 J60lt;Owg4M=3k׮mkks(A+z#)@#ٳ3zqҥpgϞѵO  ԡs, ¹, @<#x]L_&r xd&]i{v'$!uG-\9ծ֙Ea." " 1@O" 5NwB >ąB1w}po)`*@Ɉ" "DQdK$.!cZD Q3C54"XFDPChA rӆ#/3_vt2< ̋YbIކG0mt @#t"bV@ ۝ƊۮmT>3 w\WK rY.$]B0Xt6f>kcMI`5$hcS;칭NknY53e 3ks>/9 f1Lp+/\&͇HUHMU%wo&?xo[2MTVE:tuYs5X[[?o{Ьe3rNn[f7yϏ\M::HKes@5 -yj,K1;MJ]ϊNZ1;D(=> iCdĬՁ Є "Q;`pO;%)B녥 tZx$L "ݴv t,xр'~5k(ֹp‰`MmSƭ8C֜E3G3>M9vӻos 5lْE4L b6|,ق&!`=$?#ſa[ܲMs"E,Ie7\P.O%m@P#EG;iBWv<-+"WeC}<D 8zE>P]{RuHNL_zz%ݡhRNB\Q](M{PT(+)8,%Xe81͊AА&BD.t%)g#yǰ!cۛH.E#TM},/yn Eb`5 @EB o2%B@hrI> -(Ow`B" )Ȋ_AFTW;)MTXS_ ޷}$uPpqEdRtOť&uo@jbZEf (σ.뙸Ӊͯ |vHJ-:r1@D ws IDATe]]P II::!P%ho|tJPZ$Z "q`, w^:aJ.vʋ x?#5[ קuWEi\~(hҿ?{3eJ}O3w=TzF$9<(bсa Uh!8(FHrCe_}"];K3|7)+;q{T0qE "{U0q x]tl?u!Rt]yRKkrgؿ \I]EUxYՍS7O66û x3ji=olonɺ?SOiݔ\+Ș;eb*]! -p`΂@tʄ)WRzK}~E^ŧW࿈" E?-M^x}p)=C^0kqrK2l$HJdmG }.X#"bM\?IQ,yZ,^k9pME @D@ 3 {sW[[;uD_A(:QaU)e]\!60p "D| 0c_ƒQ IA~c %xDzo[*ИG %%ܹsiiiNo#ȝt W -DetpYf|I =ȋ "xaS甤NR:::΋N HJzi3d.:1DÍ@^o>y䬬pσGt Wrh!!K.2#ˆ" "I`%/scy&L,pklG?JBL5kVEEڵkLb( &%9sٜ.A =]jYT,8z"0pD@,ɝ}2ޱ{wB-}ŋ6np˵Ġ"sZ$NCVOMFjrv%Bf\>=DQEpƠa" "`YH{@a/KSR o$wI ?HkpuqFD  -w*YEp"0Fȁ " "AD礤)P4 HݮS| .0!" UVt#"؈ }4pZ@tA&4 a&D@"+x\¼ qED@Z`C 6|w xC "W5f* ߠ tcaD@D@%'XF*A\,;W`h D 4-A#l`ȵ)D@F8^oz{0_7c?k@ `Z XBKkc ,l" H$WQZh@B"W_*\Żx#C_=hB " @"N]õGf z @@.Ox|mb!u囊+=iֽj`G:ޘ0ʵ,c# "`Yn>  !FwDx ٹs^,_Z@MKh)X`ndV=[Q+" D@ |E(Fو"`nFZZСCGz!ذ"EZ@%#w!P֣[gN\Bc3nV7&IZR@hG:?Un7ڇ  #̟?0Y1ưa K7f:Eq]>u>p8`Jgϻ!"aTRg###l%GF?#FJ|`&{DfΜ׿5++ ⊎ݸBHBM4áLx3o= "H@_"QSrK~Fc:ZwjYukpJrZ\m"ٙRJ[4-@XŦ Nk&1+ *@\]Pa@Si-°iʸOrI Ѕ[\F Gzc3k٘Dx/wU |r 5W~:z4!@HaŨvHSEu:`GF "2z{M(O!6\Fƶ [p JJKπAnx"H*P|kPPTRP,֩z"j?G UP$ sTΒft"_`H;$v]ŋk@Z.˿4» .1_]t[o;s/Tt6mx-J7VQ{bu_Y1Zh6qep}4 d2 lɴl;?aGKR/jE54j䨯:cdZHOV8ߟѭRXX/iV*q8tX2$D7SvIľ\r~Ђ5ᖡ06B6TVvy楦PMEã*kYjO#onnt19b˥KZ~>\x"!tC=.^>c:,3 3=dGt`[UzA;O0Fwpizo V5!܅D6Z8Q ڮ|!M8>/]/x/G˗Z.\ܸW ng0™C;2D̺\a` |/&̒V,g()Kw]"FNG!$/+1ˢJZu`٘,OCQ v#Pi6*mlR ZYglvevCmm!)NupqDG|Zh KKk)F\V)2[m4^z_]r%8BG-qW0z/#e蚺u6n YXuOU\rInR {9a\|-[Y)fyM_9d2*3$YNbWWERà/Y(LʕO4*xo" nG-Wj3ܠpyӃ q_)R}Na?`JMÞ E9@Aے (ffqM-o Uv^BPkdZ 3/AEU˦K6sKt(Nx~66҅rW^'2mhia;; rEW[rmwAIS41HA5zxc*R-LĉbbS`K4#]eNќ\a+1%DQB8QFsQh\"]jti jʹhbmq-6- 'U<ƠL8 2pŋS6u(lrቍæbµ+pD[VIBhOO\wu>v 4Lgx)%ZqCѶ&Յu``MdYbc'&ܱbdl}=4:Vݨ|<0*d q_ ڏ8@hY\{4(5}*ј1op9Xp JX +pYYhH°UYD'J.f+ETK=Ij12fcyf_4i !yB 5% ;?wжg?Kv_aK233| `\'(! ,^ 7{7[v’|n,bI*ޞ–iͬ{ " [E| aY0 (?Z'8wLHOޙݏ6m>p#rfw23ܚv!ck~{vi#,72+AGk˵wgݺu='\sMJ vFFIݺM_6@inc4{\?:7y>3u:  Tm`#.A)"Ij*[ dH,~ hmw~͛q(KtWZ]vAN'IDh,:S5/⥗^ e\^> y)>" p_UśF(\Bb: 4JHٳdSe|#K^BળxgS_c5,P'yBR @Z@-r9Op*]V|Ph}D"H[P?1ak@;:Z[#AC\BQ4"D :Qb/ڮJrJ~D^p! ֎V MEꞼN*ͷ-!:k͙ wꅿg捓<p5bDNS;ζWgNxd0ϏRzrlQ9,O;"{ҘbSy:-oudYY 2> '(#:Q6" QQQ e,厳xMVv^^oħ7|$gޭ3N.ՙg:"ɉ`< R%7Nw#g|9ff|Hӻos h'|Ɂg>)8b}AG_)DgYsBY,L5 GߒC#n"b}Qi߱~{9FA"`hUW(mP#l *vз8o7<~dhr |}g.Z?lcAN\ړM~ɸ=Gæk*߅e`J^'GK yS5Qb6%:gy D_t~Ʀ'#=z<u B?i/W@)Zr тH ;jKg*]`ݔ>mvKqMK~v{4.}ӏ 76Ԟ>Hi%$!ٞtE;G_Ve(U;(j>TmL|{ȂȱR#Gϐ3g :ѫ' -b#Ya#x{L$P4?:Q!] @ qR1#GSb4u`$̼^|bLlΣ5E|[9]8a﹬>8g.zoꄁ+)/6{tC)U ؅ d8]VLP||7+8ɀ-3Z`Q*|" &3HY5Eb r6 O'2H%ZQ:" QQP oo$*hS26=ø9xB#M'sxG6R86pkq>2߱BDG0ZEXC $Et.GB7FȷYDIԍ @"u  @2k'ZEdܑg$DsB^ت1@ EH`E"`sΥ:ub(gKOO/#;eXtkjKlѻt bt@P"E(Eو"^zm߾}Y5Hϟ/#oOz_m.`-W#$\a D "CYfUTT]M}@̙cĔ.珼y?ڳȬ2 0_ѩSQo4eC?1@Z`s@#`2 e!S.Ct㢩Z aD?FQ" " "`hu!" " aDC0D@D@EC[ @D@D#ZlT " "/Zoݢg" " @"`*D@D@D ~ZoFgųQy~Ql2 U Ξ=kD#0ʌW^]jGrKQa|T '{ؕD(K,Id$5e99?fyFcZ4"f *tW|qƸ| @"EVLv|tpݮ@WU*=LIDATNj@EuS(^UhK-fg9}RJt}яZ @$Y#8zحl8|AY"p ~]"NTetR%s̡3ϕ tEXtAuthorH:tEXtDescription |hardcopy|2012/11/02 13:53:02 lim_j SGA250167 :] tEXtCopyright:tEXtCreation time5 tEXtSoftware]p: tEXtDisclaimertEXtWarningtEXtSourcetEXtComment̖tEXtTitle' IDATx} `EMYA a5A\!(~l8%((YPQ-"QAAD@D9IT@ p#`2L_UtWOf29zzt^^u2p4e0Yo u:k!@EE` @]"`T]b0HnɳO }_We9`,|ï]69k=&!P"p]5peyػ_ @#&9|!#a2A0X@" 㡃k'ڽsѡM3ckW}&'-YtXԓڦ{A.Zc|zs>ź/ر[BM&eCжMd5Q*j]u]@¥tI}o )ɍƓX ?ؗ+2A[NWΩ̩AP)ށbT},@0hI1.X-& ^F k;wRPyz 6>ZUk+Ken9>B߮N}dRo} 8`WotRk[uxԡ!:|$\7E ڼ>ĉ|k`\HK$eS)&s M0ooKOҒ"'ʁOFg%ax}D9N\C eg>0=">';hfQϬe O"2K(y\ȿ|xJ'`RU"EW_ZӐs^g4dAl2N!Qh ח,S~puYIa $N)%%CU/ *|gnx`\ȶyr kЉ/z}fvfX88k@H;91oj|J"x\r 7ڸqs[eD}?}Oq_g{iWӸx+Jw9<+y5~;kL@]Q :R.-½W+ >_IdP*Ym1|P$9*k,ᇟ!O\,t]"/x|yLR+:6C~[tH48z{e`+cWl8v݂ ,zPjABcUD9X ~wM=NFۆC$ P 9~V߱0;R",(T',$G .bG&_C:İIZC?=J~|MJ:sSJ\B r0H>xߴ6]A C߃(Jq\r~߶-O@ܶmwȗRfG%e)zt{./CN-1h(5y8x/~xU:N .Ν}Om$* j?HJ{#Ӫ(P|͉IYjY{ɭ^ֶ?h@A 6؜cSj[tj۰<~#DbkAHJ$Vu=6~`#fsg LJ'OhSpZe1P' HG _ FgZcmnĬ' I^ֲOI+zVqw!.2\p YjͨC|zU{$53l9=YcR$%gM*}ģۈ''ӻNWX(&xb9.m>A &Im)N)mէ {$KjY&rj\xD8< y.MW$r"%U^z7ʘu JjOzo۬ɛEY3nH' ν3ӣ1j%U/!=b=Kw>uam3" mާ1`exR6. HE0RG[K޻WK]YŴ ӪaEg(5([42vQ&uG̪n5s4+eA?_[NisNPau@<V|iώAJ\莊`pWl~]+v5KVԸ탖{.r9kuܜ :sρ{|]}RJ `4A Dy$4&tvNA{j-GjN(n ͸AsI6v78.ɍ|i5%&wqw|6lG%!AM[!dHhW:?BAA xhe.?CMt|Rg~^!'N5id{7,[)-uĉe?Yf``ŷnlMEظQEUeV+^l6KDvV.ݡR#P5 %t |&'Nn}ŧ^Hp l.}?g_q1v:݈U| C!!K+͕.7 ~[y 8dMb{絮cP5.| 5{SwD6`F/TF7/Fk)mQY%2:i1ٺ B.٣OcjV1ԩuꂇ C `< dC] #D#s\Oa>C ,/MMM ~0a@FFT_旆1euT7Rvvd+̜ҍ,2_7E'Oja)C#.7d}rd,VvWb< Ӌ]cԢ_ZXpTѩ'Fr%ϜSWp~{:rOQA8z-)R/GɞjN`Zc,!:WkQAW?W&_/&Qb|՟qw!ewByG h-IMŭI;c aiYC OKJ878Rkfܫ?QM=˝2B\H湕CILZQ+.ΐ>}b6[30æ уf;v!x1|oX>͋_yCc;c޲9)Mv)KJZJ}ܗIJuҔfi j";t萐6{\w:|/ 6;k-TީEAmL.[6{ڍٟn۱_I,!D U`ٹsǏ_ O<}eի_:jP3G * Hj3,!aB}Q9FߓУSF|V<%$Π&/`+CSSS}d3@u[hOL?@!xn##嗲x|=^-O@me5hLE4x|I8Ol} $2}n>')b>X+x ^#cj㋱HU-Zc# x|JY祗q%~߹3)V-X%@pȅe)<`$ O$4D*c!Oئ/T*<ybj9si`C.3TY"{iRie ZO NKRv 3G7dJ=/ 2 &%|YC@ y6lx8EHSb=}`mVߡíߛ?u5,s͋+x|{VrD]{b߂{`o!ǯbx8x$C -0x0"Syj}X =#ШQ뮻yNyf3mР`}cv (J(m_򲲛on wAn#]aܕnd !؝!ep( 0B &Zp9r:](M`<>Cƚ (`Y z\E}+rYCfCBP!?1k?|i~W@s1-r;R=SMk`S۲S5,Ŕ)jujȿ )&ၿw[~8/70R\3՟`_qgX3M1uxx}MJ&s{_3Ǘ[!,!I`6ʇw~SOy8Cr-a`XEKQQM`*%:xx*BrN棽}cÑ'|1!P'PxG2? /$[NgD /e)W?tcGw_w龔veJ!U}Eu, _\.~4a3!xEp#A|DJIG먐@2Q C@Ҙ FLL{r޽{ٳovW\E5sĶ &;_ QW+*5oްaHqO%KL I|gE欋 909~dr^^PJIp6;/{…*R }"}]<ˤ=򠐲>QabhPi #hYW5/G]4]#Q4CА=uW!3x<wRRH~S`d˂p|}[eHz6:CT Ch?,r;\6 ^w:\Ngt:]Lkc^gjpKoVyѸ){E?쎘h%%FI9 5IEq9nBUAV3.X!iI <8̣{~xa;1%>z!Ǜ|!=\tIUo"63x+U bYN"P<,X@,v0@m{n7>.3G߷i|5+|7^\o"u?@ IDATCDsW.t[5)|T?.%04mD.]`F~SQ2"i[-r0]=U@²5@pΝӧOpt <.G]$5\C>wީ#9%n:tٍQtV+\ſYRw:: *I#da.o3& [!a`\VD&G_\+BXjX" OMM~ 7mub,a-$8'ps~Wڰ&륋"۹NjML&K\^Q d2WZlV('Eh)X5ڭď]sӒާI{`;=x٨9Lۂ=2yP6[݌^[5 1~JZ1TnJ}pÄkqC@kt2?|K"r'9838Վp8E5Ƭ=@U脇۴hUi:8` ;v9C񰪋9K/_|(9q/KJ~:\r$xVU=QU7)dHc S8dz(B$-A n S$ZRhehjG@'MI!tyLEKd!?$wxώ_(Ҹ"I|K幑OI1 \MX. f'`bdGb% $uɇǔPeZ n A"tXJ{nA exo] x@K?\7cO&`E7/f !s?Շ{ 4ù?vC$i%h: CK>jOoQ/`y͗yE!"!dm3BF0d@_J3ǧfas1E/ !D+ k-װ@ToxTU%U[v|%wד2J,CNa(11oD Ivo+j/ 5=ո^}"Z+~"8֚D~m)⣆Il_:WSQl~q*#[>5,]'0x||t*l-\8gوZVT# I5bٞa D 4 X/> 0x|X] 6,v|!p=*Mc z:KCǃ,qوm|cK/f8N՘!z- }cieVHgtKD^aE֚*G)cL 5dM˟Q[0{Ccpﺊrը< S,B*sP&NǓD\*s%SEq]Rxnyli$AX{j@.[1~o Ǜؿx쐓aBل0}I?%#MiոKa+Q:!(gHk xEb핗z f1;>#p˖pDIFvi-i+ .jJDmʹa`h:%tZBGba֨Q5ߕVP'K#{YðB 4ZQinڭ6按FOqb]7:sk.*DKQf3'[TJNz‚7@cKDQBvbwCNuCd~h:ϕ?*=4,6EKfXS?ʨ{/V+rӏ8:ag*.EWSta48p>" B%f~RZ*7ZW#*hwoT'Nc=w&w8[bD7䪄AVJ脇V5ܾڞb^g%"CZ}F鉲vph'ıÁwG;gYSVlAԏ }&kzsҵY?1S]b=֢nnJɅ;aG³D㗀u3HI#I%Gރ7<1ݷ_V5 pdC@<G;tpZxv=}%ukW}n'gΞ}m$qK$JυLqiA *׀·TB,9BЃ_j(5 `K16G%'J522~5-m=a(n}VL&Jš %W{\V@|{{=۾zet5CVx(xj0P6k~*,- R@M VFNL!+)BiAJYI<8(!.q 9pr=7kU`9TT6͹KKY_Cqc' + Jq1M5/%f<8@b =t`hh}XC0S۩5 荇D-w 6Ӕ!@G@'Ӈ :!덩IG@'\ƋդÜ]8v+ǢP'^$h^ KG2#'CьO+8dzSP^wjJ| Vn޸iHŐ$ &6 ='脇q_O-^YSOv-śdO/l,$ߩ6iJAY]W 6eAU.]I@AV^inC”uGWm= b{Dvi@ҤE 'z ̱1ʍ={U(iŻhPI+ u;{\o ,3,Ѓ_*:|ぴ\PЄÔ1ǯ1iQeuqj.xu~{zxnӡa݊ tbY<~]zNxxqFPtCA׬ahJjDviI4䇼u y~K)zQd$ S~/ oP&~2nkJS azaHo5_u7#Gaq1%k0x|?_UN|WCܥ ]7hD|Y"{]U^KyGZP uG8W=~_뫃O(Nxj<>= 8QuX|*8^g\\irO γ#EXDaB8ÙաȫCEe<j*=k ^e 8=8]t$&+QƇ:p_{\_Zi ^D#E,*d藇ϮB~yE8tfH`џ8$L~˂X6}}p$kؒx!#Ιn{>X# O!%sn oR\nq𧴴"i.J6{#ÐȌ-E3Ȏ+$b6MRߛ ͆}Bq]/[lgiGxФI?߆W,Ef2^*]J2W.DI*VBDV!w(i?6֣:&ҩ{Z]BńՑ_z鯿n'x 7*_AKd)v;MOl#DȂ?1bΏ7:/(HPUFH8B:i Oe uCˀ6nxy~\.>+`v  9L.e7;NZvjZ~դ"{ [{uf])YQ**@r!U>d5 WW u֭[>|IN'!]ipW& !4 VrXB,=ٽa~BYAl/"VQQC '+"$w1YB]?ꎇVZ5*33T4!' -VmchpZ*9SC"ɞ'Z=d J(r?}|q g,T  u+W|gcƌiٲ8X#C gbIZvj_SVfdTEJ`8bz`soҔPBE9\w cu˗/oذaȑqqBr"4sLB;IhIh6f̎W+!n&vOE*ᢩ]WM B0uU0jvhba 6f`<0"lU"x١aE4جEPC #hYW5f)A0F`jC S,`جɆBjE͌SϤ-*|G]f! WX՘?{ŭͳ/_߻{C7oБV6sпS0nO}~(B]21&3jrX޳=w:@rqXz臯`/(EZ0k?Bk7IwC׏7~;rK$m\Shb۶?Gt$cAuH3q8<nJUW!,n+gn.TdyBB#kI&չՠ?ZNnX\y<^qcs ;~̃ RJ7]v#g9XHLo3&uE!#kW_׭ʀ.+/|J-ϝ D7Wx[B~ra6«.!]=&Oa0L΂b`( Ag ={-@u~"C5AϿ0k4EϏe 2bގҞ:{uffrenWũ?+ښ<t1b*{?.RiURq9zϗPnɧI[n#N |72%~NI!59mR;?~t ! |? Re,9%#l(_=KPmK ܕtm>zBhɕ"=RCe_/_le-swٺ뇓gߟ|p5eM2+a 8wld:?e% K%3#% ,Is4  "g]Ch0u(b͙H K4"M՞F#+y;ez~tNxhX+ tSn?u[4huއ:}ܳ燴SXo;G2MXZ*Tg"tSnL(x"19m>z5w/@*xRz Ϲ}b!WT?cdNc%sTr^#0>0lp!GZmH#f`tN=,8f m1h,ypњUF�F. ,jSg7b&}wQι{/MNJaGr+ןΗ/^ҷ34uNSA'F<r}3X8B-x~:EDfW*[$<(5i` 10p9`G'UTi "걍sK$=EqB2fY2ӧYɳ|}Rw7,y|Vj0:7P5b D5rviteَ03~\& L@*~D!?-Hܹi^ f+ I~c*vf]ݺvxa֥Nu F_ݪl/0?4iG[[2gΝXZjb~Clꕅ+x|_1Lcz3x `PH"_@p!7?el֐T&$'~ޱC -.gɛnxYb´gfnѳa@z}HF׫ 4 xEGoF>0O }r q  W?އOO}#g}ZƍH_j_ ȏ%C]jy(mB&Z֘R)߀3郍{6k=kO>6mCsں #̃c ||o9V>,k jReCz2x@nTf%*?j/U*5Cap{[dª@`OM* y6ǯs% ~A}bɦ5i{q]z "7 /xC{b2" HJ5DXݝcvwfwfAY~y||30 CW7;_DCP%i910D "Mb90@GE\Gc}cv0pG;"7t3-Hw0(;x mA$"̑fCpaN5q竚㱹 u !+m3%ko1^JNIPK[|3 dr[If=X+YKR~F=I0_P|8Ғ[;M0P: %Ͽ'],-W='HXNAH%~'IY75b_#6gCC-PE</!IF93c3{]Nϩ79lm?Zʦ(1`v|JrȎ pJ L̞ K:376y@*ItT)0ć\>3&b4 'w ni,sc& LHȤ ˭93^Q73 gtCn}1T̹NW쎡e.Mƣ27>pA3qC)F[*^eRSdؿ;c~pJWbbIbhq7\@<W3s.Ts̳Ĥ&[:QrOXs"(d?#OɉZ4%J#l>yckQ QBF^uuͰbP &^!TYPXf2FeM"W1<0.biurO,U$~  qq[?WωWZ| Urny[&xu{>5OD nC`hN+G,|ֳ}zȾ=lY'—pSHoĂ9b\Lz"g7.pY75>[CD6X\$1Hlΐ&hf1τ$.NoxfJ<2rfBrޣ&3\ lΞһX'"p@-=z*֔3@(P;"3|Bb[^Qx/'́MM;c@c DV۱9\ȸq6nC_n~WtJl1M~h[1lG;s}o 0iH h,ĢY^@:@luI@3f͛[<=s QAuکݒ'[D;s tf&0Ԣ `K`Ƭa*u`%_1ZH٪.?"w}bBaА5"HatEe~x~<]FS]% 0hH{RSڥk7qbsܴgg!1a˳䥇yIY{ #&b42 MZDa)Dn|ڀ}#]=Xԥ@r6BhYK#c3f9 z}{tO?8zʊ&)lx>H" <`sޟ?]  s6p-4i`Lee ޚe_>x̧W^}c_g0U:ޙm6I.K0遳9\d5b0Zj-w?_y1 ]='_*HS~9x !ÍMo5  ˝^d^m\49f{ٕ9'gf07[o41:`1dٙ/] '=yc}Vkoݕ洧G!90mlz{H>cnE#8SWGОѡ:Cs{Uۅ[91[ג\8.PMUNMctpG;s̞OBۯh2 SkȚ#9\=9u2zremM]==8,XLY&VC;x#G{Xs@9mɱ8=H$D@ ̉a#Mfr`js؞a VXZjs&?Qo05ƆKfSo#w8F 8M.U '͹sGB~/\ѽ$X`g3_d|N-L'M zϕ\++pֆxjcO8UtR$@&G {ϡ qroFBʖwׄ:¬r/Ȝ2)"aL `b߮;qxoiiy^EDcOZ!G׷IPxFqV35f W&Hk,_7M{Z2nmʯv _s@-5|PfRjH)-4YWzFDowIk|z/jm,mvƻ &-SDKĸ=d3%R;6yZ"V;(M&?|w!Br@fKx 6cTq] {pnn@ YM?W*jœy'B s#/ƆĆ֗,Ւ{fхĆWhlNZ"ΓЇֿI@dA-cSŎ3XGyZzCN pqG(zbQTC#;èȃxxE%$ߵqp r OZ⋨`{}83x[l-PգS!Ĵ)v ٮ|f>}nlޝZ' P w8'K#e {W ]P_\⊽drSJm!4s$=hԾJeϾ)-- 1ѳr`N% jB#Y|PN ~ z9^-p@I8JuخFsJc &@9 3 цuby`p]4,\ hsTIJ> @Oy(Bǜg+~u!IoѢbH"!38TVA!6T6<8PGDr3GEf:Wl:&D=PH=S,540~-20P1?̺8"pEhU@Kbnj2[`FE6Zkau̹͡›@k3YP`M AeΑj3M [ M[nnC<"Тs'C7 _?=T~Mbi#oUT.TBQ^{x.u%?tm0!Ъ́-y^0-?k62 e!2ǚ؉S]>N1ԏ$;Hn5Y>MẘPn5rEN{+%ôZpl_0pJV0RwN[0]x Weu A4LbTX:ƭx ԁtg,.S޽ȑ#7o\\,{%>lv<K+!'ꄮ !ĞC0RDP4QkBgsks` qA6'9PnƍaÆJ1-#t l9\{tgo'.MffkL@,}E|1Pq6VH sezж 0ҥK7n?~|hh,03Lټ//XxʣǶo;L '`u6Ke.BnOx$`үZ-_W X+" 9/^3fLLiґpw@헟}s}:R "n.(X^+T7.8EU`O<-6>> V +G_Sި4zϞ=\گ>h@JnoxuTȩ A{UHt[쎎IH8uƢr@0 *MP@q"Zq~<9̙3kOK/o <.s~ TSS ꆠ Gח6EsuYm1;U6xWBbN\-7|_oH`{oׄ!&6kZ*Pmy|Xjf&Փ}9|HΝt Œ l~÷e%7d _^J|–B;K} wK OɂbD$/<¹d˧ 7I6s|[ʮc ~ )'ϸ%c׮c>ŀ5g#!upGO3 sz+!^#3zmb\=Ƒ$ &f'f[P`,}M(#*?]bСRKSb6'E*3\+tLMD{%/v,)!".W|6?' 6E] \n H_LG^B5Ę,ٹ \)tܣg,Y=ӶgBȼ))by ᓎ_qN6s|Xjw Df^@g./,e\fv?z:\_d=iٜ-qſt/i|dÅ\*]A2?˗ϫHHU_]:m1VW;*}M(|"',,!6VXZYgcҿz5Vq:'Ƀ5.YcRkP^^th|^ Ew5NŽ35_&ԇ5AAA@@o}& K[ C_v]55t C6X5]9@QQo\qp/UTA]CBpQMW9\1xѨ@]% ̱J̢Z9 @k3GPojc:"p=9J_V |ՙ˩sviV]}rUZ9ׄz{J4uiϲ#E9yޚkBmI_xcy6Ƿ5v|'Tm&,{DCh_ر$.@Lsiĕ?F@sք:>;`F+E p;y>覱^[ZB`Sx^%xT ́ WiPNHz)eʈ "sCD!k VmFaU:1 # 95vx u+-/toikDGd"PɃK=Xƿ9rׄ& ^]>#XCӼR*9nCy`i! 9> c"}M;i+ͱ:U,/ T̈M*]Si\5\:RIDATvaҧ5 B* |pPU]$ aM(~'Ko`zǜjk)i(h}dX#"@9 TI sTI@(SP% QA' DNAT2G**d;URt@9 TI sTI@(SP% QA' DNAT2G**d;URt@9 TI sTI@(SP% QA' DNAT2G**d;URt@9 TI sTI@(SP% QA' DNAT2G**d;URt@9 TI sTI@(SP% QA' DNAT2G**d;URt@9 TI sTI@(SP% QA' DNAT2G**d;URt@9 TIhӦ@MTPl JGXޚ; S&a8*SE Pvok<3UIENDB`PK !,LVLVword/media/image12.pngPNG  IHDRv pHYs+tIME 'ptEXtAuthorH:tEXtDescription |hardcopy|2012/11/02 11:05:39 lim_j SGA2501672:< tEXtCopyright:tEXtCreation time5 tEXtSoftware]p: tEXtDisclaimertEXtWarningtEXtSourcetEXtComment̖tEXtTitle' IDATx] \TU( [)X+h jh [ X }2|7˛yod~xys9{E/w~cm\2I1lLs׈ni q6P5ڀ赞5uy@G*sYiX7b0~W>ؓKc!@*oYR\6cAo % 0`A7h?0k6tDR'TiqTRTщ`ZE}ܵ+_h!"pe旱\W39i=!D\txKպ6JtЫKrU-Z U4:8DDr" "RqQZNRq!7`ɘZ5vX~_gLlƞq1o{rH[;b֮nV9='L ^[Tl#0{8cBVӯrB'O$Ȥx74]諻J? BD}CUt2լ-ij:ԊIߊJ+Q ߫9cM}ZUzD(aZH͌2 MaU͌pA ̉#lCnڃ$ֻAdL vQI- NDB|_%nјзö]gjdgРPQ,ffRgKwA A]BC ~'s{֫% 1h؍XOٿY&}29(|ry~ ?rR#j 'Q'N!Wf"5V/궕6RZϜ;o #>QKG쥱M0YmhI1f|B1<6]AnYFmf`[ˠ $tBy 4U (H70\zk?4G?1dn={kޭg/䪧QnIcz ozDB6ixVՃfDr kߝRu3=)ì]o>8C1%c0ꏀ9$%i^xzY@t>aް|hi5|҃ʮ;_uL pmVjcLQ"fB3䱁yꂤmڊHZj6oV;z`22~h#gϮYS% A+W~C\̙ [pKL4c US$iˈ grs_Y4>D>/_"dSĝ2Dn`DpތQ"$5E+ʔS@ZبĄ=_5CT_jc>CZπU|?#K=ih g$3ٓ dݸ~w >-MhfQ ~?]wQ8PV$S j r(HyOR'6arUKC#JN7MDF{j~Ǐ5wiqlڈtJ֎RXڦ6%4*uBJW9 wlCv_6Gų]0Yw ^k |hrr7j:h&e5fπԻz}&}9&dܹD<Ini j m/j}Gt!]xRn߯X@9XޚVqi̴O=_㓘wue72Ē.d/lHdlY"y۹}(Pl`ޥ3I۸;ef!eM^z%c֤4Yº.ttByӌX3qͅBظt|bsx78;pyȄ8ǝ;6NО`:( 1Cd9g2Cf3#eګ!(- ═@2[e"f/yI)⊙D|{q'*H S4:\[cH2ôBn"0;ѶL$}( YCd) IO5Θ{ YDLF´[e_Mv.Sǖ$ SBo4͢#3"P1tVX Y˙WtT۽2fN%Ѿ$-ҡXD"V[uNۈɁr 2M'pGCG*ʭ QH+vQs²#AYôDp8P1"PYTIU $8B\5hXqcXtpթcYyΔ_vtpՠc8Ǎab f MЪJXTj.U'sr+e ;Q ĞިY']Z!:ԫtÂ?[w/R\"bq,\@UBΚJ]}d}}jNjJ;NIu)v{bRȕĽQWgZsR6ذit': /n_x_-g]JL)*RDLNt(GS"w %;8(TxW)Sv"HO 5_ջ8{mg_мK8z=je[>X*bD&$O3z.L쒞.*wƕKfKEFD_LRߒBΘ6)o>p]t=RW)EHRߵnC+06|}w9NSP(U JKx n=[wȊEoR /9;bw+(Hw{yZܡ6鈀u +:Kvp"&z7ۡA}HZo>ztnģ]OeB+T2drՈS98ݎ$'ɋ~>wOFs#-`ZppqpHQ ˠnERbBU/)@E @IpadD@ "8b*_/7n=w6zGw3N/SZy]dǣ)+%'r%aF| upLE-,*T(CJ#z7IqcmLhZx$)&=z#ILؿlVE3d~uV?41Rh] t]0ʳb _2EH$#)R~^ nl-b`6KPa@FrOrTTblL֡/RGn&n4_֯mn> NBIΟ8;=\ Sg+B=tSd2pg4d&@b vQMa* ݸqk΢d A=ٚ?"!$D,S%JT,spr瀷@ȁk;v]N9qeO3l1JFRE{|3`4ytPP&tQb"=߸wFR:68Rpp ĊDc7}̢Jdtԉ >%+qԨV,DJrȁ}4R&7 N U9?_qt2X lǏi#*znPթUz(< Ap sm# 3ZDAWifH0pf@D8\rrra{SNpKU Y{=e\vC &AIM3 # 3틞·\*4 `:xfcL.S88""-k"8ſYz~(.9bGc"Ɜw)Hk D{$O؇D؍R{޽yyyR.Rt4خ}dC(kdk9>ғ/!۠oLՌ  QXU d =̵ik5]Z]H)$im "fge@֨QaÆ޽;--DBUG]3gϼ#<ߺ?n6lFD yOe$ ߼h0 i9BRA8,vpaÆ#G}葱sS1FpR] 6188F w`}%*PĻDpQܦul=щPx+偌[Gc7nZ]vׯ_Xm7_#Y<#~ sO1FlsǹYwq#zt|w6.,8XK6Ӟ^.m囆t#6#0vckcpߏ1b2F[(T.+yM.n h 2WUk$P=* D>0J DG`b;/N35|eb6z9P2v I[%! K%kaZdZIII0T@ҕ_ωvMl|㓾M>ٓog!ovwmT'N?m9oNh$?S֐wT:RmHAl_OGꜶڼy4hp\y:k\w#CMţÇUY}gwK7ih "PC)Xi"8t^^^nOZp#o\ÈO{:_Y(? dc4j"Ep<0\wׯ'C>2)߭$*e"upi"R4§1 "ˀc.D, 18ƻa\YEl\V CyuQqG_khP@@rvt9FpoAa)mZ)GW}9kWzNIM.=- |*uBquG_FQci-v?8 L_E=mM"̄XX0Y,sppG_ԫ5Ki{O/]bt#:}-fYh#@O1eBwվHo;_xM^ۯu voLwgMCt;zVnh((3DZZ ϳW=>Gwjn#v tPf_؂7Yv_ͥn^ /sD@Y12=}'apͥCf;_ӈ2Z4^x*]3 7+'2!儀TK9 ;P m4 \aޅ(o V֥/4/>EL Jąt? L󎾃>Uv OFZ%Lve >tc3 ߜlȃ;8Bl{;Ҟil k:fX B17 h:tcve.#,xChQ9`ƍ[E~&kQ2Chh ;;}e-`G?ur{ _k_IBVҕ) &4#D0mJ2oۡFMDL[Ꮎ&>Blwưl;B Fc){m:-ʧÎ|%HACSֻaڲK3qG_3@BDjTx_vCϟZ^B GA"`U9;̥+ED!"']bp6";;u] }U+!@/_|R*_N΢R\pB'a㫹aTQz!gqIb))+TB%)VV"XmO,&̌T?jrbYʮ'iC'Ž2R,SI Gc7X,k31 FU*tpFD$*S"\tJaZ`S/O.]6`poۭ5D\>֧X(@w*x 8xi@aL;󉰣AoP*iݠ[ƻT> ۡA^z-ȟǮK|<EzQh: `w{D0ݤ1vckK #÷k&WK.\S;c.Uo7\f w r SD4t[>?K)`"\"&v)2ƴ@PR9 ݼu3#ǿ{z  sh2 iJJ0wQL^EplWWm~B{㫴!L?槵 E %dRob ^3ߩֈm6"YJG%   ; 0-^Ǯ۽Ϡ/4ė%eTwZu!v #U uwF싅 _hڠU7~$2heM=2Z0A`Ʒ/'WnI ߦw^u$( >B*M`h݊ viGF"8ogа?ԣo@ OCt5Ex72YPJea7۰d7T =4 %餻'էe6}D2n ɱo;Tٷumo<"Aŗ}ǏSfepF*Oި0p 88ꒌDQz 5rdžZ).(`7Coa9$P'˸ye܈֩5j$"ަQA;M;Uk _džs$#@ q^HG{JCv Zgu=gܑfd4Q_ IDATm3: \ Ow#~h!gMslBp1]#JiʇL_.x nUuU*D=zt_7if |u Ju<--ɛOB7=|%5m ] [ً/ʴ}4Nگ>|pYdmZ{lNcM2ha[= 6h+!5z+U| jyŪ nB "PkZoh Eu6gXؾ0WоKߺKE dT};u?D͇tF "P(ew<&F wGЕ^n^÷16_W>}+W9ε?g5[=:|@{x{1nE1δ Cl G%v5jqP|{΂G]s8Ch/*=o쟢Ez܋wD8n^gnu0=WG;י=9%zRݿW}޽v]['z.9?}Xs Z&!U9iT*D";g^n|=+98`66Ioo6. dvz9ڷs DْlQ!sR6ذip(͚!UIS'JR\ \W, JJg3n?Q* 1X2 w '^Ւ8=ߢ[M`+@;*L$j/"ή \ 2}#T9P7uRT-6|}w9NX KUt= T*UvNβ`@-Wk GLbg_C̼a7s88~󉨀8+s&z*.# 1ErL1~ \ɭՆByO;iwL}|"P&Č 7Jc44H~6YXF 觢a?39Te)#VZT臏S!pR}aGε:Nֱ'78UFDub b:;G6~j5>ny)LJ[j\3㌾56p,Գ֘Z3*8W`.!{aCWIQGkQ`FHR#]%H*W(%BWơ}qq{D$ȼ۵K=9w|MjQw[e%i ;9! 3?l3jO.ٚ6]yxMt}>6oBה Z v j|+b;/o@*¼-~J3tכt?zC~zVGG~ۘW:Hč~uj7܌f3 g4Ҵ~ί_[NkH?< ʐ5^Q A)Ojat;J+`Nv(>i$+Gk),)Ս?C}Ud-ؠj Vi엓 Dݶ*_?1˜.ʫkffy4v#O7FpҒ;9RGn&n4_֯m e4eAƁX7rrŁk}f TRF<ڗmފH"$je? DFw?QT3=&C 9qߪG\j+řrx6i&)K[T~$c_SJ&boQk6B4R:k|1,̱@jO,b!$a߾ه|t}KT߷D!F'TZWѨ h09OR+UZ>3@+LO {V߀rrͷmزuwNQ{j7ծ#LdZfΌKm<:- Qp~;[h3YEFx3xz %<F'5G-Vg-% 8c$ŘkS}bd>Xk-1Rk Mc?Ws_(%5y3R/ Od]ܾS1m>S Pqd H9r`Lm{iB:1Wa|:ѩ)zSvL}&'elBxBC2ܮ^1guG Kz#d+J3rGʨ˄ f!pY=ds)v,:`* ^]PX\4A'5vqSç`g%y7&$ɨm䘶ЫR?["La{ +Q(n,e$>qh16~_s fE;!*LKe(4КN>@N{K'nF$T,ڨS"0BGo 7| eL22 Ƙhߝ1|JCǶͱ61P*ۻn¬6 Sv(*TQF$iK cp6.)44`bETot̄/-Qbfs;}dCCiJ[E I~6Va4BiE`>k#p>j)HM8 %y ¸{^ļ!kѴvf%i^EJrTW DNMz 6e"F; ,RdܸݤXBB{2Hi//G6+.ΈHU6w֯lT6m5X0Acp"0T>:RamWC 3'NEGR8 V;]21_9"ۙ` |{npCR2#R=}x[Ty$+3&AEy?\?`%q(@,F1l82F]Q2A-Ӎ܈" `1 UݺpVD;pbݺmqd^"P6zqKjwQE.KJp?oR\"|0ȉ |]T>&VwRGy P"X]T+*zj9BD&Gl ߽cD""RUs& pwٺDV\,.z㵗'?Ukfp+C" zG.w,uRUhIN:~DVtԟ݀22d`݆t:~=N9_:T.#ySl|"P,I ˎfO5ol yg>hEF "k 5h* c~q#wNQqmm[nL~0ڃ% Cb˩[J0w}. $>q-،FyXeHV룑Kmn4,l"cvdeҞpfBy͑u!n;~=;%$rel:Jʗ Ȋd7gY"#ZÏ2-6o@8d'L sG,Cfb2cFvJb:Cd8cv2Doȣ?9og7=sam Q7i.>E/#~H'8r-ǴU`){.*s4ͺ(|%%x:*-U\k(Yٳ^쵚3l֭Wgҧz6\ۋB MՒ~ \>acBܨ;7jgN8%n= Nm ()֐G05h Zxg EЛçsFa8w ͉?>/,Q׋,m)Rˬ3pO;bĩWF/>Vَٵ!FpVt6&l!س E gřAgU-fAr6Gק:{;\xPT6 %۵%23=#TJR >S &3q ٸ;IbΖ=V.+p\yZZ NJ !UIZuav)cpL*7 VAٱZ C 4 cp6Wmílb4Z18!B" @\x\Č18 j!8۫"b6.XA΢VҪDD@ƥBU쨴J" )b1[:DS8 2D&SJ T.(#@:< /[XTM EUỨVhpm.钩POgpK;J::8C| 18,ٙb һY<>!"x3'J ^Fppp88K݊2ـs em;WhL5FWfP@eA /v5$dbkMJN;>$1N龕EEE\qZVP$N,+2}pаQ r/$KuUaw/t>4P.s: ܘ*Z=2TcƝf! ;YM /SN[0r#8=tQ JCgJ}nMf;a_B*eԻ-c,̈́n: ^`㰋jvQ% +m!upEuQ;w H]&.)<{m*z,`$΄$q3=V> -L rup O.]TRIߞoܻmbT xX i)88I66٨uqrN|\'B~[ciDq f!*;7d&} Q98yШUCK'Q:$?gewP= ֣4vjpU[QK0^d|b{@8qkZQN֥gCӍhmfL)]r\!4"&`H^P M}ѱFZI7yda ΏHYv8O;k&F~sfKL:Fis/[ģu 4m92,=frYeE&[DCob-܇AK`R6_/&m&޷H>3[q  cp<>}JWھ꿬?.Nw ǐ۫YґwVMI^Mfp'I9qKգSgzg%w7/rzς75ܸL={_G!?h(gF4zǰr-$FY-Mc#̢jӥ߶K!H3LYCĴ:}N\ E*Lh,j'A=X}|a1v`,>H_W2cs0sm;:+NKB|,* @ʊSB4i\[VT1?"Bv5<A3Dd@WVL1?"/K{2%4Up\Wr:8ۭܜ\5-Cl 7w]{\-zm{.aW5¹UXEF@cp][h"xA+' ' @[Bl6p*M V 84R"cphD0΢[pbW>jw 'm3#U ͻ\1:6 <1pg;?X֢ꊀ^Sq̶Ҷ2cplŶشl$,Ϣ]M12{gMLsmؔ5v0d{\ҿp^up]H9{I4ZnKhL݇=7ogQ2zXQ󓘒4e`>tr ݊Q9smf!x!&ͻimaLTT=29'n~f0 ?z)qFw0qw^緁9ShOvoӞl;f0zǏ{y{tQIDATG&l—;PA)_]+vzt/?R3|5%5}&$pdx=t`$xǏ&had;1b|Q͔Dt+<:6B1 6hHmWbVbGu L18dZ1੊_6q->83p=i^S&KI⃱I^ܴo9^M}H6m[C\0tԻЅl2,4ǯy[m5iG}2P!Iߊ;W#9<ɶ|K0?;v!m`5pAG6H??[(Ll}ևOK3"ٔ/f-gW*)up"=*pkW5p (@ɀ @18tpUj""g2`K@*jCUs 6ThJ%GE pݽc{&E"иz[$>.pP@A@ UCKDBp!;"TఋZ&aWE\\N^޹ {;{NTCj''Aի[\PD0gR=IpajNjJ;NIu' ^+I^toP@SW)EHɻLoَ G2 cpexVz7ۡAݛbŨ_:]z>]X-"` p (rdDt2"K}JSt_ˍӪŁ':5˸=up 5bv)ь]&b8v>r, NgJSU)@nn Z54&N/7S/SJg8}f2x|ׯ(;tźaY\:ή4#R6ettG>$4'5̒{ .uVp jnFp) Br~SwZ!T23bv?)ZAp_qdQSwy~}5>:&Sn~x+@BʷSu&phCً/-f“h,=e"p2tBPOV\TR9zTbR,U;+)ˊ::Mpi ~̙͹w2H1ۛczJCT 60k8Eқ9%Z+ygRYyX5}7lH 5p 5b@4 /z W٨Qc-^"`J۶](eeUP#]ċ"2Fo:dvWm3?|* 4@L [[l8}A)Iΐw</Wm-w W@KVi6ȣf-g;ǹk$@E7c=Perk񋥪"H-ҭ2drrVa9888R7fr!xNjn@"WIdDBU9\P)㞫Xwjd*o= ~\jP} HObM+?<ۃ#T^fmAD5 Lõۏ>W_Tɨ#- 'W^e^׬T6M[˩qӇNuv;Fu꫇-ppݽPU V÷XY$ RA n vľ]f/ȕb)Pl GÝޱAuPu#8xN]iֻ,ܡ&bX"H )!PΔ\^k BjyW\t(䡷>\~Mr葘7N) L쮡^4dmS8VKE75ruuy5J9b W?0D]+]˝ff͕5{+HX\3;ڥs<[vQ(a .5ew^n<z87ӥu.4 hYDˡsbO1q1׶ /J K&t/>ws--b@%x88:Hb'\Wo^}akhy3uIk5v[4YWB֌"_LaG&8!V&Y!Dm3Esڥ5ލ§Gqqwӟ7|Vνegc8֪z7ȽsEڶnU5J&uɂ)P EiϜKH {fTs9ma~T)-/Rf\+WN:~EhL.v C/G%]e>!ӻ X[;eĦ~eИάA@y#z ~t\hVyٍhj٧}mFN̼s~0(k*'&;u)Ǘ4PC-i/6&е j=ɘ&/PKdxg<6OEPGֻZp x7B; eD`݇1_g XDԏ4.%63ثp}1iS- 5 eWB<gB$`N%}%,kձګZ H&y.j2|`W%9^,jϢk2iT@ C!S$ԩ|l5vsmG;߈ٛW^ S fOm`܍#$6v^O*Əc99 g'UfGQ ѠO{izY}}QRY!$@9P}A2@@@{Ə0 5f2T{v-fuN.9rQ\k7zݧw$bſyO?Zv:3$T $;+\^:&S̺t.0 %!Db:,}Hc=MjHD} @ l%bqW !0Q%pd8=y`aa&v` >& kkFbYL̵s//w0׋¢{z$$]BelJfJ`+gݏG~ I|$%dp'x]#"iyjjw'~xJeo͔l?\Ckۺ蒿_X_kHecXb*h♣wofYg*Q۰7zE{T}Ur낛jӣ:T%UFppJiu_GV'qܭV~ qM'U-כ7P^jvm5e7Ezɶ2mPq V UnG\:njڤZ쪪z=?.XHǵuf @HF#:t(ݭW_ݾ}+~[g:#T@LWc$]%%ViF!?Rnj s;hM]͎N[*v]bjS՚nV먲Ƨ N%'򪼺P6x;D%JRr awo%-0`^Жo;}. CC ¦Z_IРfځu Ko2&"o~T>?,}7a„z׿8 뮻V766\ w#󾫺ddV2TvP e~J;ߚt=R)hHP7j8{זj:k{?WkU^ZOUee&SݩċKOk'J"8j\v ow\u+Vۛ\M# P(p9o/ 寡rv$AnX ’=4ry;29%td`sPfl@@9ϲ);SDgyS؁WZ掠JέrW%4 fdY*4QX0d;e駟Ź-[,Zܩ|#WSVVj ӑŽ.fjOK:[tʾv.d_hZ^l3)ݙBݩخۡ&:*_lGL%/i.իhj7^^("UҎ+#!"jBW6˦ٴ[7`Scr>5D33&tiF@^E,{F0As&՗IJtoL>`CN3ʈf;PpZd0tRVv!6{o2;o;`$I|֪g}闖]B*@|ӧtU̫f Ec߁|>4oSY¶Q>ky'b0N>r ŔH[_0薒Iw =|e3B2I WN;BY_ lKs˃%mr&N8jQfGy- 6_|A *悽}F# fނ<ޔ(f=mLf^c,2wB72c|-\h$취2̱I"1']&;E1K ]sh)3~PǏNДhKK(6Há* =ͻ=KN~+`$2le1C͕Pv_ZJQG%Y=vBM00?BlOLk?cZV LfRfa YE$?n?m\wcyЛ{1U%lb[^mhF*9z "7ʬ';UI>c<ԏӮ*cjgJc9z~G̷_g.ҩh0;/aE%$L&HX k&Z(KC>,: ǚ> u03Yjbpi7!QZq^}BwYww?43_cj톺\^+.Z Z$|`}gj3F moF9,^B3,w{T}gn+m+փov^O!hֳfn[Jʾx:o Fٯ9c $T9IJ$`1 Z)hP;$Ol/yr~ӳ̾4-=؇Ih`ID K3d *{_د̤fu6$=| MJSz[ m4)oI%IQf-ofwKUҝiWv\H2TU5~jl?j"?Q5. oKHv1_Ti>'?d|E&*ؼXC` vIi<B;jKlWCmtωN} }}Z~=;}|U-bpj՞T`J_}ʵ@"cӖ*mRz?wo[{WnkZ}6/|szICUQ1_l:?O2ߧlKx/v֥}0%;J1$H*{GZ{?hc˨0(|cwC9\ bWIPMׅi;=D@m<ؙм+6Dr)Yr) ;Hp QMMEKysW}mjV޺+gWoksuuu r^4sw@nN 3ŗכKBJ-f͇.1XF& NK 8}7 JvW]i X{E xJԚw6:\ëu\ղs#%e͹US.K2`5_[˕۲i̳uz6b>z+f-='V_ٔܮdS;\:V|tI?$Yy m44y`j[[â3+gh+a` kB>4~6Q]FEaW$ǒk9Wh&Do\h,x?%hdҖuءڇ[hI E^sGvؗf#ίz.FԹC)/oP2ʽu+gύ+6|ћ7֚>Joi@tׯlE>0W}<&Q5hϭlGWo c׾> Of̯VP'jǟt߆ײ9d]RCk݊Ovt݂ih9oX"eSw/eG-C?qg/Uuo,ް[~*ޣ6^DKwD%9/~a+BsU3=i]m}ӹ}tGi%Ie>0bhϒx~cGU%7yE;Cl>/%м ԛ,* &ϣ}yJ0<4%vJJ4CVԹj {۠W^:N@:_CyP;J%Eu'*_VK6IӲ=u~NQPWWΝê.}xsOĪLEɦζmqoL!>uM4&6jv0>c,jT1mc #GB;j Ƣ]>PvNT}a`N.G)17Btgi+焮l2)تX2)*"n[N}A.6*x畫}wuP!wyv Jz۲gګ*z ylVu^ψa֮,#{ԅ[8vl}z?m^`1:sEZGU(ycқ = zk`u:UlS–}sw̫ nkWnb  f v&* 9S+)eUvuh. U }aqF{Ć튅+ҿ-\Tu#-jhwr~={<׍w\u>M}ףiy+d}}iMZ˲|?~\- uu䎤PB0߻C#-,&exQ>U{|myc2oz|Cڮ [\b/W}c!JwQ°/IH.ʓo[ꎌO9ׯ_lٲ~[Fi7{̷[$^xaՒ`(ê)Sg? h_vc], uR**λ%%d| $zFy.U鴱M3]of_*knX0* :'\Uϻ9ԉ؇*I# Ȏe[B%4Ic<*E|l3M,#sÆ 2[os6Ї>$4eVؗgc֗쥙JM}IBP)Ԋl΃=jUU9%] hHR悲,۲C|'lo֖x=g|CTjW`^XʾcA{I_e!໎H9mpG]SmW&βxN ~jwkڹƨb6nèfDnr"IСfIQJרd;fP+fts,͵}?@h:w9]?̫>J71UEø D[h[1f c4n;04tVʾ|Ty۳Ӟy'DcV׭kez2=\NmP.V &1kWȾ1)HaTC63:qnL,?w!."ϗ0 4h|%=cB?Mg9 M͌!ڄ®K7zٗ6Z"FfWf$G&y`YB)c{*/.}M6h_ma~ܺȎ~}Ej(VߘJ>ZO04'uygͤfG2vu"16*i_/Hכ:춾sX)H Zsh)Oۓ*0svy8Q]AϦaT*/MgW)a:Z^lLFJx?T B<|GR%e1&uF7kS}(ÂnFt,6-/% TWI: c}XPljؗ@ZH` #C㙱g΂\!&yۃ$fUb,JnɴTUW7{rUɢd5ˮtGZj^3Nkz^\;Qu4vnFL;:-ʏEGe4FsKws+uT*|nL{6_ě8JOǂ?8 :Ġ\[|Ι!#YQ:Tgg} ~4kK>\1G,@(J?}=sQb%姄;r&妦L%yJVE=Ef heY-z;l'Tɏj"LEOK"sؕayJ+,?e󴩻0Dg}U]"Tޖ[BeyUqeixZիl2-Ri6ʋDž ?R7ݣX4݈ 6'>48 5&}j0OLUhⱝS$6+9/Ї@m4}:6Mv&`ξW{͡oČΙ;BQVE]im;C5R.?;[avU͙LccI]QJE.˔mϞU=zکJpuUZպ6#*\LUt'NU]VqEޔͪ`bEŠY-U G. Z7^uڱe47;MRӨ&%AW.IGҝ^qڪ+eǝaVSO[;%`>Y#0I[>AcSjK<>?Q fuF ; 56ڿK\Ƨ=t.ftGe4ʬ`8ZAlޯ|@g?0UZ6*PPPrVVcpz_%Ej$(EuHj1K飵5UآA{zBYj=j%j4֫5&+7mD"tDgy+SMArԛtu+}:#e= ~ mwQ^QMb A$ ~tsFeiAe}*)"Y=㡅6ʂrb=}׊=DUibWyC/ wJX-hqD.?$UH=zlWtA^]Aje_H B&pz q.uP] r;uM3]{rֈ|HFQ5T`dH@E,EIf7=ӭuu ;κ o @B`ȑƍ fs'[N/nCSDXlsT @xNQA?ZNf?Y9!+ @ vJ1 y([/u_jQ#$ @ njU^++6wi\nSOC1{h= @K~{z4Pf @@ x2_ȝjYH? @@ w"f^,䧾ގ;>6ȿD[_ڕ뭖PS"NլgV47n]KO<3֫g{ xO*m E|-ir(~ A"lwsL[o,\pڦCߩW}=7~g~6|>w/}~i+hl5l`h_B,~4Բ :fߙ$󘕵}%;7QAc?G{m F\xAy;~7_j/=N<ѵ+zầ(y Pl]bV޽ynZc=N:_W֧V@4 (k`em/˟1#$`lr-]b.">+j;:vUF͜M9']U'vY7kBbpmvoS;_z˴-'?K]BjP'd1.#;i*6;v[оo(rLEybQw:}bSr&:NZyœEUzMf 1k9d^e~rVwSx.ϹەM.52d7kԩw̙5SݤﺷI87'"<& |KQc>lïX{m#4fH.SbZ[ߪf־t GϿ dJ{-ٹ4svωR5E}UIc?%R]wC#t tAvZIY٪|IpI}K^\vq7S u:hpr%.p+>W'>.߿Yu%cQ>vGި~e l{]֕1,8a.^)<}uG7VvDjy2Ǽ뮻jW: ccBVrCϘ}B 㣽/pLG^[^lWb:n7˥*O\7wqPFwHݾw4.\e߼kS-zUF|ι!3ƪ/̪=u۠crF\&6Ix5?/60ԏո6 ީ3Ǥl(pZ_Zg* | So8v*7.U#z/JfEO@{ DVKzkw?y_?$7F;m D2by?uEs1qخD1{[yDܗC2Gg̅gl=}ZiVY9O^+KHZcXLx/w=n@j%w^gϼK#3Ņ2*}t!ڹ7.sgXe*4qL_,C] sYq}jVYN.7 rTRk}<≭T3gBY37k&|hesQzlRk'vy}$rY]mc)~.*ϻL-x~|%G= V J,I^6}Yѵ'/DOerd؏IAuL]/Z7v[_ixQp`$ۗ=VT7=,Av7$#%m!/_{֕GUn;WϮZ.8bݓ_P-8~~%bnUz̎쑳)}o_v=_ncz@ڲEg˞w&-}T|t嘨[7{j6[h s$:, `~yR* 0ӠѴm5nye T7A#v^͇P8i!ʟ=p_/t^>%Ͽns{5g=`bdHsLV݁vCdF g6ڧ_qu?C?3cJM`?܏/]p~iBץ3/{rд,o{J3{k83sۋ/ IveoϿ+DfOnm`?ĥbG9U ;ηȟMk'+Wz{Fه Z?v$C cΛKg_lY$**;oVq=d{gֆzַFTVs؏Uccֻwow] #@R"sܡQȉ3[瞗]a[~1c pBHw߹N-x})W=a65g~kM-Sz>{b&g4JO[tL VO"`_yq$~:yMWy? _İqn-Q=ykܺrCkf/aTeU_^^*gjWI( Tibb~d wGkv{|wurn9<؋7$m/s{キdӗ1ۇ%&N 9V.?4CĴwwqfi[OH?uޔv ܟ&BIp:?xҫzI5sS.AҼwuij"1]:^~U?p?e6+修ZnKwX籟Oj}s'=&vյ q|xG#/Nbſs-,I^]K Xpfqirp{Q~*E ͙ˑKl7wmX~>MT~<9fG们 }>`RljnSS6 /%\U[yTOP'@]7`w}}e|݅CHI7vSXmێ ?>kO~F|+*/~ܢ6O ޻ 棎w!wfQHYuuW{UiY}p._}d N=)J&2Fՙ)֨zqqb;(R%|M-r.sq3itzKw󊟻j_>1#CK/ݼ98fMY!Я_/+'}7Ёl6|G_;kοר2~̒?8rh͓N nnjدa{۔owe12ǜzoUonwÙAӟ~4 *Z7p>+_ X1uOf!r9JjgMOCCs{_[jRv~{|_m4v9t ]#.e%䲤[ЊYw "Ltr]nܡ1.\>׻?W5UWua4p E./ \ @RfFP!/2UV6&?&)H@uQG~斥Ϯ\sQ62,ry숃Bk)@QrtEՍ;2"ߕ%UJ.n`ӘSaWL!t= 7$K!P;pkλ65.#E @)$Pp'=EC)C @ HZRjʹ47OSk[[AV@ @{ǟ"U/NK%{ڔv @ u{٣gvQ2=gԑ a@ N6#A%aƔA80Yq@ݞ?Ȼn?$ ȷx+^D @3e]}]ٵ3GLhG=D1Ms\UU_c3YӍLuZhG&'ɹ* {GX?jݣ=sɖ.'9೑u&k?V^q9GBBS1wʸԲiQev= v%OAC﫝Z{맂Qxq$}e oudC}ӽ, q+?j'U 9\SY6rpQx!sVK?r+WM0uW;b!'qөj*s^`*;OȞr}@Ej9}NɗRy)c ;;߱ ? PV͞ 1*9Z2{oUï<ϕsjEnZZ=zם]v3pUeWܶHΧ;^J1g:NkNrnï*]S,=W^G W+PB|#}ICM)WmwՍ@@tO@Y1/Y-)tcX9`:<+,Mfl%nj k7 f=څ?#б@i@dK̂!ClԹW+X rX?kFβZ&GWB#I&bסoS\DVl{eVV=M~7=nX"gTq.vUK57i[ݚ'*|Ihe@[ GBsx7)Km`ػQ,TVTMskl&gQ3MͭͲ554676ooiޑiڴ=Ӽ=77fZ֦??=;!t9Z 24}Yfp\|Dݺe%hUf4L̘m}0vr}fnM9R>< )UC :2YꝚLc(v?`gK\EMׄD+S.Yn,4\kGgПK2VZ*,v ^۽RJg?xZ)ҕ[ $+*&LC͋ө}}@DK#L1=Rr}>*d2-N%[Z3-굵immmÖV)1h֬T˾giB?8ߙx)<~z$ęu.M9vF -`#z j#:&*Ce=X-+ ݞ:5gZ;sfݻަ6eCœۼCz-KZ]mlE"kߗZK?c7Vqe/{^U}j./R^EU7݅e&.r: Сaj5 N-0 e-bpAMt?[6r\BۻhaגbS$kaD 1}({7uJ9a%#?7G,,.gI\Vh'-K-/;Nq/~MQ+abX׬l9殉Q%WxTn^`U( W_A^':vD"e[ D:kĹZ!2N,,9&-RK"Dwy'*{~qj-߶u/@L .{Xl_Rۋ_o;Ƒ\6: ~M|Wx[RǃygZ<{9)r8-X^5N6EAIeXPw}K/snel{+}Dv}`slpҺj)nK.ߓugͪn|ShV^kG[<3ù[6[}ܲ][T<[qeR*0>Ǎ} \?*EF]?p6OY}]I lBjtw|-hCXE.0E ]{,}$K@-a ;_ elb2q?ExOixMSq]ðެΪ,8'nYg}e?]> u3V_Ƃ]i˰H*2WKU *xW>Y341E3ӜillDz_^yg4c޳b֯xm짏_XWUsٽtwf~LwL{}\nuL߾}ܟKep|̭<9K,HSv.;o[o9q27<S3a9ơ)n}qJҵq&W0GNi6Ivy CFѨx*8/Kל}~l*w}}e}2,^ 4pD"sO̹&BZZC);>=)z k~3^7ۧ* M/vu;_ΛV,ъQtzuSo8nX?9DV`&yQLƳzs JxY2Uٯ xz"jVJ t̆~3MgK;Z͍s{7tu[k}Ό;Q'd>q_zݱu7oژy 9z2lMHsyky1b+zW InSꟺӫ_|^ZA^%XO_ԫfSl9/\>ea>Syn;5_ ^ZMog#I> ]2,m*( 3c eھʈ=꺧.9rT(or{AJe2՝W֖GwIJswmTYoy﨏OzPSߛl/ƛWS4śT7&)$Di -WTǪ*gw.9/NQryȃK ڠ#-[ 69 oY*8^XwE?=Ԫe^^XQOß[uE @?8Cfɓe,PUhU@s٬X7QIfݙa9X^nۏtnL_[H/^VdUUʮ f[0!j/27 ntsgI9:ȇՁG(Oe#.` (zЈޝQϟ΍s3]\3Wh<)Eub&׺>Ԗvc$sZ՗;Ü/.[V۞_^;puuN)U6,uu c}˲:7Xi[c^tjdO3'eqN 1 @oq^A37+3-hX,ڏHfgUU'y*4}oVwpycto25<]8H$n<E; LoU0Y6~;SYlI u"K۟9=V{[? PNEaۋN,DZ[nDh|{ug[n甜ԍh\|Ǔڱ;זQDP-~GW|{ogG0 O gh( sCȭx@@y ~9e5 }VF6h0G_\O@A{DԦ(PkQvlmP0Cs]]yG*Xfe ]$g7 s5}K7*Cd!Dis;¦C cZ @ }UF\Vƪ;Nq^3W-ɕ dnQf7,7wU!~bWr1t=ߡU| IG!^Oq&֍uaklvQV}/eỿبm\l8}y$w?l޼gޡUSL噳& Bf̘qWth`t?%|sAfƍN;o1 @ss?oWmsID˗\jiD];˒-!ڼzQy_r%3gδW_X9®D}ݮ4B ve8`/w`% +IF +PK)B,B)N A@^ xQ[ Ѕg.W>uf6܅.B @ =dYx\e"b*n\;Ə @ݝ}k5{@ -9fDsfTC Py{hb'.շi"W 1EB }Y3˴`㱻昑 @ ]!.E;"X@@%VKl][+ :\'l1FmEd]3" tFW9_e~_rHZ"v9FZ +9/eΦp'vFB% Ɖb2 :b{F*ܚ'9 kevx=,sc-_>㤄~iM E3j҂ 35SD Ve e7o.:XҬPQYb0!Q@C@d|r6h0g#K(+}P:6f9u!@!\U5vmuuN`eٳTtRq6F4,1IP _@@yy+9Zj%~O:[d(9Ŭ^X@ @@% @ 3\ @ @ 8(8:A @ @@O1%q @H1C7x$: @@8 ΉR@ +r o@ @1s @@ 8պR[p_- @G?lsP1 @Bs E @H1sO>C $ Y& @i!Ӓ:yB @ @ ~($ @ `@13 @ '`?sS̲v~NC YsGC $ bN @ %[`aFGC `9  @P̌@ ȭO`aF- @;[}N @ P@N13\ @# sC DCfDҢ @ }Bs 1 @" (2H @ 9 @i'bN @ x(x>B @N1˗ci@  cF4Q@ j1!S="H @ > @Mx @@s @ bf @ @ wwA @ cN'u@ P a@ b(|R @H@Ŝ& @)&bN'u@ Գ2̃2e'h  @!$Λcci'%@ 6YhnOB t7!H> @hs @ bnNA@ Db憿D0 @B @ Mf< o԰ @@ ǜf@ dB  @1 3 @qPqt @1@ 8(8:A @ @@s @ }FĄ1@ 7l6g3 @ !* f @|X̐ @@Y|aif  @l~ @ @& & @0ΛcA@ *!@ 8~4s- @GG!@ GG:@  @#bC @P̌@ @1ѡ @(f @P@ 3c @qPqt @1@ 8(8:A @ @@s @ bf @ @ 9u @@13 @ GG:@  @#bC @P̌@ @1ѡ @(f @P@ 3c @qPqt @1@ @& @1P@ ^A\^d@ 0>s$ @ %bf,@ @ 9u @@13 @O] IDAT GG:@  @#bC @P̌@ @1ѡ @(f @P@ 3c @qPqt @1@ 8(8:A @ @@s @ bf @ @ 9u @@13 @  @1P@ ^"}Ŝ@ @IP @ ]ifs=B $$`D39!1 @RAu̩8$ @ P3̪  @d2~eUF7?٤@ PUfu%  @@%`DmO6A F\FZA tgZ4(|  @Xee= @@7' ^͌b @ZٖŜ  @ݟO.K( @(1 c@ t0rYАcN [@ %bb!F @@Esu0 @b hlLcE% @@F7S6H @ |3l Ve @ e2s); @ P {)32!- @@: (9,!@=%C@1'  @@jgeQ̩9$ @ Q̉a@ (vR @(s(ba @ >(s2 @(D1"D= @@  @HFU8a@ V(洞y @HFŜV @i%bN'o@ dP8a@ V(洞y @HFŜV @i%bN'o@ dP8a@ V(洞y @HFŜV @i%bN'o@ dP8a@ V(洞y @HFŜV @i%bN'o@ dP8a@ V(洞y @HFŜV @i%bN'o@ dP8a@ V(洞y @HFŜV @i%bN'o@ dP8a@ V(洞y @HFŜV @i%bN'o@ dP8a@ V(洞y @HFŜV @i%bN'o@ dP8a@ V(洞y @HFŜV @i%bN'o@ dP8a@ V(洞y @HFŜV @i%bN'o@ dP8a@ V(洞y @HFŜV @i%bN'o@ dP8a@ V(洞y @HFŜV @i%bN'o@ dP8a@ V(洞y @HFŜV @i%bN'o@ dP8a@ V(洞y @HFŜV @i%bN'o@ dP8a@ V(洞y @HFŜV @i%bN'o@ dP8a@ V(洞y @HFŜV @i%bN'o@ dP8a@ V(洞y @HFŜV @i%bN'o@ dP8a@ V(洞y @HFŜV @i%bN'o@ dP8a@ V(洞y @HFŜV @i%bN'o@ dP8a@ V(洞y @HFŜV @i%bN'o@ dP8a@ V(洞y @HFŜV @i%bN'o@ dP8a@ V(洞y @HFŜV @i%bN'o@ dP8a@ V(洞y @HFŜV @i%bN'o@ dP8a@ V(洞y @HFŜV @i%bN'o@ dP8a@ V(洞y @HFŜV @i%bN'o@ dP8a@ V(洞y @HFŜV @i%bN'o@ dP8a@ V(洞y @HFŜV @i%bN'o@ dP8a@ V(洞y @HFŜoNp=,46   0pcf`@@ #iш9#M  @=bO)@@-0z͓dR{@@  hdD@шy7#  0DJ   bɤ)   2kpDD@@sⁱ$ךs!5C@G"aGQTR@@ YTk  VH;Nmzr(@@@|VIIǼ *!@@co ۺ@@*́V= @@` $ʈG֓aT@@1+1Ɍ  `u# $@@@ b`@@\K\dF@N !bʰ#`@@zsx$  ^UC&v  V (*V$ VG\V@th,  X3XszX:g@@ +6 5_@J)`@@xd`(0vrǹ|!DvZ X( C9E!5Mla  @Fp`h`z@@Zos4e  4 bn&@@ ]9XB!  `wgh{172rE5  Yú't<ΪB@@xCČ8~px C@@./` %+!a],@@@`f@@ Ǒm! MF@@@唕YHG@Ȫ@=_VO  PLL@@@4{2o$p HF@ȬbH`lbMJ0@@ⁱr)ыM(DI! d\P+5ËMJxVF:g!  *3V  X.M[\h]\B@@;tE} s1f!#A?b6n(fA@@ x"f͚ڬ@@$ּЍ(2@@,;zyժS9Ӧ:e9   "ʠ3XqzztAfzVZmv|ׂ?<|ͭί%!z tĖ̐1QzM&O> 6 0+ƳN&cT~nv#3l[>r6NYѭ/?6s-[4BU]lciBxtVae0R(RsS7hfGu ŻfEA&fz6)j0~}W)Z OPfJUFuKy؊ g8YnE(bQ8jeI(]Kͤd 9kʲW(nN?ƬI̚aJ8=+4uAS4S4T`5k|OsxS= (gڪUW0׀K3جDUFωS51Cʛy&D$*%ɣ]t ϓXy@@WN_oVT՚St*_}[o7ԖjEKu٥+sMl[OO]:(Tt4 dCw>xu_ZV{^{͟{c颋Zrj"fm;o:q, ĦQf:K -  y?.G~QfW]eMwqn !8R l}޽tfZn!_nKtR)T+~Jaא#& &&&4@ =.ZP G͛4ڜ/[p] |kb"dX@A( @Zu2u(b nu[6tOsjU*bι%>|6n2z GȤҸÞL6F!0Aǔi~'N/n[ ^fyNC~GV"?  @łOuwuk~ЬPY)~]@ҊlØ]@@&bESCMK/D]C2X  @& .ӌf/bhسvRY 7^_͛>M&kFo.0}vn{;znrX X0L1k Bd&d4ܷtIPW a|4mY)p5gϝ;ג/ˑ6lXblP̘/bfrǞysJ%.ױ!+P.7F术Ι3g)w@3gyD8coBc #0ctq@Bbѝ>}:bd .[.WϚ5Ǣ ,p$lu oYו [=Y+13(! {Ds5ZEhn*z':@*L  0 l[:"fƘI` tcǜ *Ay.1yTK/Jo3H@@0F̾{챇]z{F!d|N"`tzz{Ķ3BzߞO'.K(|_4=KS]+QRm׹sw94>k\LP /(^^fNE0"1%3m5;B8|MhX2#$ \ve9rJ!㴐㏟}&\={-=k7xC+fQhYѺҕdSV=p-Ԇ[)}=~\eJa,T{#jyT+}ܢe?/^#_9ܴҔaE\tWf4&A1x`Zj<̑hҧjŸ aO93V*J4Tc ,:G;ɐLr"4П?nd (sJҫ>nݺ楶yG}5k?gy'o| .@EMo:34]4̷rrU䝦OT`uRcPJEe@SNkݛJ\ʋV$nrL~Z1R6&eNMƘMШsj}Af@kEѭf?҉#&B4+,^h/E" 0v}nҥzRy+%\lH*bkkQկ@Ϻ ʕ+U;09gqƫ.KJQ|Z׳vѦ{ٲe.fw*s}WڪcÝ,lE _zyH{EfŸ ?P`dTcƑհɓ2&r ã&&ϜoѷS+c{3 0F{GyFdF^F9Z5n .|7PNrj]CΊ8gk$GGz)R̢A2 4 /k)ψҍY.eſ|>*Qapl s#%9cդ ABXk _fN[b51dڥs㉊AVX &(k@A}IGh[`Μ9O>{v @ZW%}A^j]T2(@M#l5Ĭck8Y^uh_ gKn"QB\/P]S_4+1}5d^K5BsM29r^YwC(nƘ5C;o6;&n˩Iw4 k>FdYV}5kB[.@5Tlz<#(5oAJ<LZ7[:(tMzi&MY袋Lf@k]xi]wUJKM0ii2&; oo.-gs+ӾfE{|;5ɊKLLyD!t[|ꚿ؃wwׯO?3vuW53gE4m'ٵ^kM!@xb-:ztOJq>;v눚Q @k;_5Ƙ4s%tECrI#A *`fzڶ&VdSjU ◜S#tbb"Ɉ Ё-_;Z&w`O* \[K53s3qnfT L9-yƬ֮];k֬-[L6SN}K \bzk&x:qluI  ht=;wމ'եkܸqO?=o}'{C &>a(󄊷Tzhi2# О,M@w>K.+\ƒ,i/lO71^ LjǤnG`"ȅc&L2e" L^R6y5G@D[Cc  L^7/uI:X:o&y)fm4u}>@2>Ҵ\>=sݜs /[#W\q=4WyW2U*a}>@LZPpkS xp'G"'|r`?k fP,ku}>@fPs¾{}裏\ l8^T`>WXn?Ǻ>Z`>_}>@$vrG}:q7e @} } 3)2"xpyjBI0'?S3}>@#Icnx377n4Yǁ>@<6͐5gsOKbnc5es1z]Yep>@V9O8t/suه 6XzvES2o׾3j>c 1lGg1}>3@]d >n[A<46CQ1f1)$Ɍ}>@d].]ӤN%Kl/sl՛ocօjeu}>@AqƗp?!zS60pٛǜ/V`>p>@2p7tӇ~ j3WLo9.im~N/}~Ys(&^vAޯg6%u dl"hܗbϟf yLO}>@gxÏV'0vӥ^&%]IVZy{#%eCZAOp'13S0S5M4?Moqy~cٱ:\ǿgǿ5lILJ¬YxG& VZ)LͰ9y6cN78} {}ht<:w^8W>7ߎ;xe=>cjrM# jC~G6m;h7`P h4y~z̊7L}ǜp@@Re/-:lg[T懏x+WCԯ]|S+7H]ApUm^y5\;ϝ{ݦu}g͇sʕj/1d?\sx}WlMNsyG[6m:}>@toy_ν=y_KLѝw1Il0uzF_*-z놚i0eq\b4}`gФkfȩ\Ƚy`^wUK/s%&w^W^8yMZu /<ӜWIIaȺ8؃ vJrb5H@hZlYu>B}ßO1 z1f]}cui`8@/m[4|u=_9X^9D1h8@ͽk׮ ,-SLy3di~N#!ydٛ]0ϩqa}H#}>>0oOw6<+\V8+L, =(~5yB0Z:Yլd=nTP1U!@@ 4cnIw}>@cNd!@@:ǘp}>@D>+0l݇'  (m$h78@aJ<IDAT} 1NcV_>l$"  I>_biŋǬrJAUVV>?eb؂-ͧя|_clF[x-@ۗ54nq^gOi1/GqDvHcpfKSk|OwJaZ3qN&1+jN1LS`'?]яyiմ`Sx +^M+([c]`%Lt ^A=3%pKR„ (NVc9殻#OLDbǷWZO5'W_6po^F{5Ȇ@? Jhc?JLlTN"e [4):l[Rs‰s+Ag3Iͱ"83L~̙*ńc).$LP7Jٶ6d'Ρ9y}ofC"xU'd,?A=H7Oٶl 9OPRb#[W>Jt.\}8e˖MD M:? '&b jG"/+KķQԤc8-5KD4ނOǨo/F=K?QxJxS&E(:O<=9wo`Jl LN g'%WlT*_7~;_aЁUJy^󱗐0[_0nX 0zwR9M~~E44Feumn72oKMJ#s~˗> gR{wM6lذn:F;lQ@@m"˟5pX,@ȣEHIENDB`PK !S `&`&word/media/image11.pngPNG  IHDR8 pHYs+tIME +: tEXtAuthorH:tEXtDescription |hardcopy|2012/11/02 10:43:58 lim_j SGA250167>@ tEXtCopyright:tEXtCreation time5 tEXtSoftware]p: tEXtDisclaimertEXtWarningtEXtSourcetEXtComment̖tEXtTitle' IDATx} \/( b J"EЈEeFTx}& Qg%h x`((,xD^ $GGHD[7'u[u$Mca\f"/̰c>8n3y, 8. gAS[~B ]}ab>=RFO&%ăJ$}SwN9nng2Yd,W0nKE`u#6PO5ֹų6V++V04̙ #("C5j_Kv6G CE}0^ܺW?_vWFH}aح((]4rLbO%DWOX"6p E_dP^X l/,$r sl9MCMgȘc~ YU  \"~iiN cH Z.UVt+ p3iN42n={"ڨ>,^"Q| 5a <:\G3vD30:eiKTʟv"3А>cs>e^w^mI'()+L /H<g\h@]جbueʟ7$>2[+# \^ܾ׻wM~SyڔI}i⤎x~D&DɯG3 GM<~lN^c EA *ۘcK TlPmzP2E\I4<4P_g<64zXT?*d GS~[ז/:%-Z8}nw8Mڇݾ0"`o ~5i\oA1Lg TJ7@N1J̸/)\ 2J,BЪPNe*dR4h&.q7z0X+@`sǒ={x^:WrgLA\s@O&CTQKLhZfȑ'O{ 8$,ܫD03UHSi29)DNJDFL924(\(x $@Ҧm>M5kUfta? jT٥<>50ʄL! $2 B}eR}O!LIi}AiqMT(#$ML_'o)[5CN&@K#qlB&XE R,VɎ_\بiG4CEą۴ECrR*#ΞQBJ Ɩ5M)((.OS.n_ ,QEWd:k 0cG1<0huD&៾8lg޶L@( <5Wڡߒ6nUvښߍ i f^=N5vKJ a1TM c_6"4bC$( ٩T\( rcM*BČ#41Z@*8610^iRÊDOh%cSC^pY/7q_hȺ|P,P[7QR!8jfg6MC4j444h&$.\q;Gߠg_-)y Ϩ}&,)|2#o?fl5ktFwdf$1ZZnT/AV"w&nl4r 2}p~ FSWlpYV?`3?]K禷yd{ҒxCSEM4i޼ݻuhxlٲqcÒ@ޠF S fd/^-'>.rmM_ IR1IDeI (3ҊUX5 884j ,vvأڛ^r%/92Bĝoe2BPHwN" նH{{;u%hf`ɚ@(KZDQTDA#?mA?oqjn' &|tn5]}T>_5'b`묤alhoШ,bdqaqwZRV.M8qԾs&=ը1?O}ˇRo9JΡSBM~-.(9r _ os h ɜ)._ܥK''xPFP@};.AxpYo)Fcl7l gwTW2, ʃ5]LV*Ѡ{a`BCPdء 55iq1c.Qå #.wS}h4˿&>Kg * kda湄₷-pD*iŚ>%|LyGpxz 8?Ge,y T:k10Dojt& :C/^iLc/0z0@YLR1'i(e, c7FƄn0nbj“2 =t߇XӦMssF>HPh :qFO73}eƆ 1Pgjs`"vpKo0O8]/gqє($x2}~# rMIVƍnX5j~J>_^HJAr9!HD!.|)}9wxⴁ3}Nj冥jK&Yp|E̫HgΜ6lx-xh4ZVocɐr*zah{[ W{ r<*)ǥVET F"Bz4fc(ZV"PHQzUqкG̪jFԁhcyЩS=ymn|O>w=+#ݼk%^n96;?O=<͟t̻c[Ӣt,LkuF"bKf  .P=Q3GͼϞ=y0/u{96ܻ}+hɹ=}g#M-`hFFj/y߀^6suut+W~Dq G^~s#Ϡ4EVc$24^_ +dzb\UiSDGԫ$WY޾k]h6`21ExA6l 6-u-jd@9kH{52"/@33kP}?֌+f }w'?BMwѩB^.gDަ6`S+_Rg0˦x88룦h٪4 wIo0|Y>j ?Xxqe>"Dp:6FpQ>;#sNՐ:qGNQ,CCzzzy?%Wgs=}C^d _o"> 0'#sm^=E듰;XPcԵrBަUrp7SU|wfUqXCJa~퓡ҧd6ϠGTUN&h6P}{Gc'J_c!4ѹÈ@d8vn`r!!!:'J>)q\5 r }jF9,?ԦV97l*uL߹JH_ dN :t:CqRÅ-)QdD|vV Leskޡ8Yc'7UpXlMˈp*c!ޠ.w wke 贲2ggSbc&&&>mFO$UU ΩPw/  PU `؉ U,?p^yPLpޙa.RE_l*hڧ{FFFBۼ̯}2 ,|TKm(;:10IbrF8h'LFDfaӤ1cZkj\S!ڧk7~.ԯ}26N)Hz&T2AƆ",$8kCaY(Sm] 37w(zG{ؾ}CvyH&ؠӳ>-~߮[?ܱ$ǿnCSW\>#E7M[kPe/Zd̏ ^_dRX fhXX@\~~#YASP??h Y %VѰ c\tk5M9kBf3`USTg0[G;VճVkjՍ54O5cLQ'ݱ-IRh_|[xS#Y ժ}2%I'jX= cveNP+O\6'u QjPݤ*pթXCmIݧVayXu' &]OM_=~muͪ-I"Yk(RC%]# j՛PO P"hX9||v z50hX tX$]A:(oPXm>o+43klٕjR;J :*jhY9*GGgy4XŬʣ<bV QYEm V1+Gh㬢6By4pqVQGUQ<88ͣ*fP uU`rT(:*jhY9*GGgy4XŬʣ<bV QYEm V1+Gh㬢6By4pqVQGUQ<88ͣ*fP uU`rT(:*jhY9*GGgy4XŬʣ<bV QYEm V1+Gh㬢6By4pqVQGUQV zKϞUӪF\W'  $YGƷad֌6:TGC`s.Cx4ԡmnh 6:TuM- 7T~U6-{ʂ1/?46;}1Paa|h(7gϔ[I@R9Y!#RRȐDNٺsm4=vp/PLHLNx5m aJ+IԬ$=y^NI $*&hgJ9GΦ6bj 6oKK$D(3b'@ hB41:z#e/IѮ|WflOy;7ԮGz22I洷u;.Ĭg$0e ̶RQ1?)boE`$lPȕ"ހߤp>uk?$ej~LX;ǩ뛣IDAT7L@Dԑ#XKM$]JRBJ<)4H*$?sbB^VroNn \{‚+ L篍Xo;׮ ^|s><ueS{IҲްڨpqP|J`k1e1LKzsd>#(n]C1+rI\ȸOYCDy1A% P'M8:&CJҵ%t=6ҒD^.o wӲ,\ ĨYV?4jN/X~/80*^+B)8BPAM<~ݽwo!&y+hchŵ=U Ժ%lGAs]3lZnd%\VZ|xAɋ5*7"Zu/:z-,D7A=CBiqBճ}-`Cq:ˋeA0Ō / -`cnQ}Dž06|wFngΛ!OŧJH݊sIh/&&S^x"R+̻m׮MD^Kf]]l*6p7' :LϝCxX.JVtʟF2X Dd/Z_9x2/E*RIr4l=fs !8;uEO2򑄻rca{(eG 8A@4:U0;NH/~pt*KJ0ۺrN40D~*і|ÑDfMˑw߆\?v#`0q漌*%j=K͂zIXU zy,IwZo$)YsiGaeNx̘b1S~[Q&ʜ \S XZݙ9NskԨxy,g]5>rYS ql`|R:! ߒ.N֏B}@Q}8`\eɹ wK (O"U 0s`u_W!Z9M?)[&'i&&>=.>|/,b;קgӼ.*7ti REjek봴?IL쐱_s7Pjs՗W)h*Ԙ䬭̊jg&qŽVhed\X 74YqNX\-@b/ȀIO_xFq7җHZgq ;mۋ`ۖo=oJqr8ykT]TSuڧnHU JVrgbۄ |Bڟwظbmd;Vwe/2\Noμ쬗{>aMé\5HPМaӃ6rgڤug kQ>yPK!%ioword/glossary/document.xmln0EIPXbq cNRy@x{g<AŌR *O%KўY\b[.:`eHGqpgmh88H<\cfD}9mߌGRv4V, ΢aNٛ,f(4Y 﨎A#^PK!AOx M(word/settings.xmlZKoF/y=w7x7d&(썒hHʊS$rWWuY|[y*ڮl7Eiexp7]|߾?9-i[wC$nYm?,ͮ]s(j>4moxWvT/cfq&/m wbs/r"vZ>yEuVF?uF /Z 5 j/Oͱ1sYît#G]!bW}E긳DWe[l!~>x[OyOg2pEhRc{=7KFvʮJ|mMW~h6VE?.mrz+)鼁ov :RX}/ͧO(gvE:ܽYv™iYFWl˞ޡVo T4P;-woHMM_Nz([>jyhwYpz{%t2/:2"}Ej2 EYc-g>PM@)A U>F)J㣁T~y>#y¾<|,۶i?[J0r9 gFs01dTZ0D%uA nHR!DŢTha 3c1!s,i$]q"ud5C* W ob=DxKhPTƩHטԦ3ɨo2m#"0!A 1C9jTR8b'H!o9Rk7)L>Z140~16FF<*=qbdlŐĦ)-%LE K<* H|4.d1DCTW EFPRd3ʰ4UF{ TYyLJrdz8~<^y 5X׉R8T5* J (,28zO޴^CQ:0FZw45i rMTaތ="jAiĒ zt,3\ul"NuN\dS9§w(&z;H0^ r0ߓ7LI%8YW yyC˙X$Ki`n0%:P X.閁=cH6wޖ$hc[fg Fe3ak ("];NI%LB+8* CA * sYzXo.KΓ(q18+;qS(a] zKX ]2}N bjqk85`y"-cYT%%"(UZA3#3%N}bLc"9S}y*Wy;KW w\/a f YBm7,ƷXHRWt)4sqP1`ķHalF[bK+PS\GaXc:*2{1UI%DF*Dv(];,O<܂  #1 `L5n?HCR&eJk46Q(5\*AFcydj̛*]B;܋%uJSÒff_-d kd&Y<N&Pθ(Qxc ~uO fe ꒅF7oqbz{R\pO&0-AAGa RK%$Q*C %4 D9B&3z6 A̵SNB=ȫMsN[W0D'L [;ƒ&XeB jBFk4!XwVadg>>QT$m|z蕫ZqY_낆!]E%F.r[vD?yG WiX/ wi' >=_.=ʺ.q`4Xo|jzN˞h88PԷOE+Ӱ.4U{mj +>4~}tQab l' av\eM^hi7eM_MM4x%.?foNҠQ;3(牕}*40rxz{2 ygyi-6%9Z_giMˮ_雖DuPK!l~5%word/glossary/_rels/document.xml.relsMO0 H(wn| -v"YmR04hYW8hGyǖfz',I9}a])c~wrr;@̎P+-P򊨽uķQPVgU 2٪K %.Ļd$е?ds8-Uza)^|[!}{Xh:%hWo&pO;v:jĸy͛kJi&•zLWToTCop!&rlTaJkTapB—t~!5 mr8Oޛ۸q+N8ccxС  gkf+sVi|Nyқ5Ko֘5>k/.1RM;hɦ꽏Soz6Ŧ*@ΙKUߺ(crG *@̦gpH{s=-8Z_mc?UwoCr輣o+:0K~M]YcE wJ*pY&6-&pSdqTZ ׋k{NN;Ae~8RԞp` Apپ>[c%h=ϭך#o0\C%^`ٝ4;m TJ0`مX` .gj@E4Ԁ^EGրHkW3 (t?_g"m^)#|;GK1o<^!z{~R2)fj:j :r[HIsW0,K-le,;B{˿`XM!n^0G/ {QKhl XΣPїCkHԐIMk=:j=:j՝}cT=:GB;Q ”zMG}} "+8BhKgTz."L@H#F"'DFU,_q+W5,5T)H~c[آOQ7VGWbm>k- E"}\D9.RZ"OM!6+Hص $,^qva)A~t*.:Dg 7Y\tDg2~b:=-љ6l".߻pQ%ʑ~Ʒ2\tlpɎ: 7&UD- E|41} ,!3m#:&mڦXt\@$)ܞeCY:|X ʻk2pfz+"3ڝw GۈSIka7`V ~/ m}zNa+O`H>8N7.CkEv< v "FGÂ6}RqHāt2Dʘ|]m"O{&,dv= &3DvVqmi)h1 {9T Ps1u)\ mJZ.caN֪|]Zj-|#=UqC}K b5ىCU9(G7vrl­&Յ$U _2,tѥ@|6cg*Is9i o4<1fiRDRgEB}B,~5+U? 1?OXp~6GS@W(؝4$̆yF:dLP9RCsRhSbPtjo*FzX/MkkHhr;{R?ù%+U'G>1NSPf;b.N]⾼pV=˟U6"} ,h[>.Q5ߢΣ{^CV֋pkrMm-&ƞh6LNSd4&:%LC#2hMzlRnLDrZ&b᚜#,+mRDp"E-' z Q!Јƪx ' ",T8 7tڵ2M{*5nXz#4Xm$jȩm)>Vsdq rtϺඖCc:g0v!Ցn&' ,=|'c@&hk@Zh:]d ԅV1 iM?^mO2pha%t (eh#$$>j# eZ.)o >T z$>ncmMB,8C:\˗)K}V]".hd6]}xǯ@=P̢jg-UeBqqH2<DjPKx.%.lU7v܃Zp.@3%k&{U‰ : 2-fh[vO ԑlSpqrBQi[/Wb WR`&tP}2h& P@R`rQ|cG1k H2ke5՟h|yHauCfLN {LV!O)@q~OǷ6`)4E!7B$m!/6 ieok6 9' >գlމ.C1Q*or9/):EAvQq<}&Qpď svOn b'\w^ԩJCJ+*PrKcvUE `vSʌr3;Lnc(K YiqlBۈ@|ʮ+͒Ez甬8$΋~(׉a`mʜ͛ KQn)w U)(f:(}}p[u"N`j} ʺE t?TXGjTyہwFoFı]2.uN-\UH,T' o%M'$M+^>_zU3M W >DnT]ld[0"PhM0 m%hc,TRda kT$n'a ๜W솛 | d+D18']{to2뱛UT`JPZ _}6.BjH +H\[3JPZ#5fἯƈjNʘE]4XB0ȷ  J(Vr /tb@*}5$]e gyYN @[5 ғ*$\FQΘ! Zkd?k]e)fTvLbrާ Y} L[o6V·l ۣpUv l cSɀ <9Ip9 3? x6LْZ&*ZC8:+5X?kصhPY`ʂ,@UCf669 tF>4n5^Zrn%^?cЄ|: ohuf|1/jo} Ak $n1,vE11i㏮HF-zH#mk_>E($3qҡRECט.ә-6x3Ps`Ŝ}g\P-hEPאfu3B>g=ɟL>O[n܅n, )'Juo$q\NjrP&EwBBXnmu mrvߴQ, Iث-fKaq'PybG|Ϲt.,޻-U3t {Gf3~9l">;َ8:fdT:Fɢ@[rBkq+sd0iPϨ`x$UT]/QN `hʗV,tRS18F+uaAϏ:) ~Iͷ);X,qݦlTtT.)&Qӆ]Y3* 4ݧ2rr؟6Zp0MZ=PuӮˏNW&d!dL|"bGRٰF ݫZy!ʆ518#y-΀ȅS*}[>ϔk;X7D CP{ْJ"刬CߋW-ί9l)ރo-耮7.eY@+0οD+ x'ekK_,̒Ȯo ZN5*m-M?'3fkrbq|a?B9?40|]Ujo[~Ď9(pEpf[=rL/:0u]f!x "]. PNӔ~QIpBaRAٞTɇ6)h%-`%p\-ʳB1,l&vM# 41iEк `3Cڵpcn* G8~y1?+ x{1V:ԱSCF.3#Ty(cQLً _:^L^dve3ܡDHUMcVS:btH\v;s5_r(?[/afcz1C߽aJb˲#;HHtOYv%*_e={?rIF4 &6c[QӮv*U*؀p]0UfIb\_V sS>=<׼R֚?TkKiQm{yRRHETղª]&==Z\_i^ gr .χnVmxI(kLs#þ?p"`RK|R8QTY?͉k~`@17$}iEf5ic/Kz\K},29=uO էYa/~R5]:ޭeGf߬6_7GHЋ5rvb{_{FEO/!hjΣ2D݈?E-Bmq' T(aݡ(|b4-Ӌ!^kN?q1f7@^G\,;HV\J5vԯ*׎% B5:(3.jܿ;V~ޒ)wĶ1>c yKqΐJԄVSAA(^vO,:RxU[ޛW!ʪ?BM,&=pn׻6Ό;ҫgz{COtx(pţZ?S ^}>xZ\@!ɿޔoڨYNh(`O69t+3;]}5@ϴ#G[lT@1P=IZ[jAoΨAgxý]*5Qn);EQHѕ!>CQͩG( RuXf;E2&@٪챉e[o4,'݋YSZz,}0{u2!ՠĭixe|!A$}jӲ%} A-.?)ȆW.&Q֣y)T?1}OEL ;sTUꍚY a<'{݈#?ONUEvmMx6\DV. ~-kZض+OeTŶyd ƚWTE4F}E٥l>Y@KKBunpi͖hjǍu Dv:?3ԋ=4oK X⌲,o|`2 ,/2FY".HZ;*HS.QʵD4k l-\R뢄gVttv+2V3tX.\`BCJ~%1HLz%"lIbTAH&Fqr') j~s ,%{"Y `U^gŝoY }ϹOR6.)2o2]X3B3m<@yq2 KU=:q•2iin>/zZ\^6`jjS~V.]21j2bIꯕU?1Vmu`"SUD>g1\SHSA;]-)վĀ,LJU^m{zy[o֣93\GsO(ͱÑz3nS7t't_?˽Gs饎WH .cN7UGTNdV~e&SLW-6Eq$SZ/Z@j#^V1&އ΀ߧ*~1A:4ޮj1_,ѹY0.C*͠ m7uc?]zŒ9ޥ=q pg'ߚo":L!R4EGKyx9_PX+(Cq> &p2 ̻$H POn˩EݧX]=7ŋr4&2< }nNqvXe=Jr7ezs8k Y%ΎW^pA34LS8|3.H#hސ9K!PK!v?FAdocProps/core.xml =(1O0w$C=ҪtuA 6˾cن'mC޻^78ZS T.KN(ɛ@ѪɅeuq$ghe{}&ibjl5 !s!p=0#RH 41(p0(NƙNq/Rѽj4v]u!FO0jL+p6NJS:I鲢2R pcWenjguzPQϋ0yEXzu/GݪiJ"qfxC˗PK!t?9z(customXml/_rels/item1.xml.rels (1 ;ܝxxYt23iS(O+,1 ?¬S4T5(zG?)'2=l,D60& +Jd2:Yw#u]otm@aCo J6 wE0X(\|̔6(`x k PK!G5word/numbering.xml]MHޏY!LfEE 6 I9UVY3&$"K2@Cڬw Iuy;pp*7?j},}O_zGYbu|tx^M'paHC:[}B#ÛIF:];݀;o><a56{>&!O38xv'+>n߾ޑ#|M $Fgz\s -۠{,J.roOpvZ;2XN\~i:XOc]*u< 'IQCoOp^()t?m`>.->+Ŭ5 )c0Q*">+MH5 )s0)XR>+C5 )k0A̻t:,L" p, PW+0”\Wd–s{YR.;62ʼn h Oc&ǖ'xEqCP;PxzŃpF}1u9T/vM{y_rJNćNU?;¸ 6g( BZ_+w>VC{h{]i>f']qmJvs$ {o.=.ڙ⃻ߚז'Il q`QC z-:]CId >|7R3r wϷ//VN{W/ύGdd?=N>}$oOpP[]ygwdn3`ϢL .FtM"hqn<'<_9HyơRŁ >qD[7p>:{7r(y"m7LjMAS<ȃa y(},vߑ 6f&J_L7X)$m/1kހz񝓀)mц^{rcœG h ӏ-~MSbؖX$&j$?0G;*!6yW$^:o-lS8û3s[Vt}AnyC6ּ|8lr4˶@yCXQdlJw8ûo?IgXxwF}Ϋڰǒ»9@a|m;[ڍkf<Ɵ"or48FI1:_5`%gr*i\d^-}tm{?휋 ^'F&ԡ|"p6^+7];/kJ5n%@- 7/}NGAy[mUq)2|Y(wIvIRɛ+GeXT;Z;hJwGR]4R:Gl,¥tإqάSt+y9wɬL \b*+XJ7[ d.N JSD<`R<4HӞu{IŰq$>}%kAek '@+:Bb,>‰D|~5FXJ ]#(hk]9E `yԯ=Fzz@ULF>сQW&r0t7m꧅ICL \3ݴсU#::XZ6KlVQԈYtC7,`PBZRy uPx -2Ѷ4 OQ)Ƥ@޴Idw.8`Q.dJ/EZJ|}@LqmQӰPڬ6% l_-s{_UV%`+6vgx~~1(x9]; ; ^O8~_Q* TLRA`WSL(;e 1"@d0{Dm"C .v88l̹e,0]<7bc9tJ'$' 8}2ͺ,/lSZL0兲e`8 "p8  <a0@FU,o D 6bIc LQTl}  a xZJB`GFW߻Jxc+M3F Ǚ*_[W6ۺQWXPgV6F AZNbQ!\FTu0 A0m h,89F ot8M+,LԑPznjK(xHrW-vG+z?A bނJ F@Hܑv:b]9QL`R;Ħpgh*V,6Rb-e̡l%C--b,[CprS%i _Pp9@[>UFx+#ST6̐)|AD>2C>3X5|J0_P>%[g>|Pf|HQdF-+ s T'D}{hqd;]RZ f'A%bN_زF-&^%&<6قE\j½jt/TBP\xQmIPD#Z$x+S|[&cetʖ/ReJ"Q*[)ڤڮ8\#Ѫ$P!!tߪ27t:H|NkSP|>:_EhG.M vڶ׏r8GK[1Ղ{znƊ9U ±Kbh*U0J!LDp~ @@,t1fٖVz @Ж&houys& P:PY9-ؑTԏ2ys@pf 8-@bV(VQsYRMB^ϭ8Ӱ Hs~4 @`(50ppy)4鷦&- +D_@HsH薸,dx/8zXDҷHe`Wo@$}OH4OZeiI5p (vJh*VslGE b少p8UQ5FâȂS!;nliT"ecpLXTA\M((x)D/DJ68oHÈ@r~*(4ٱmcamhي!U 0IO`zz~?3S@2S[Նzט*dMmc; À`S @,@Pqk\@G{+otI_.6,*緇}w؜[\[Y;+"cj`z7ke4^;+ReTՐdR@ Wh5!WPN~AW(Gt8Xbg)ص~(Tf@@mbc.gie!شGa!`"wV @ ˠ&z$M44i!k+RoeZ"@@\sJe \JjdwAm"0͟6 me:e`fik,dVp@h"e:W{:tXxU` \"e)h"0t͐'o /Y~dy}5PƬ~-d7R%&  E9w_@?nُލw_= 4z?g"IFri?6PZ:q+;>T3w+,:}@_%q c.v( 0Fb  1Y0'̙ބ>Szxt'/xǴ È\F1 Nql7я#[]OWEds 9f]4OZŒqeN}~87PK!\(customXml/item1.xml $( I /-JN-VNIM.IM .IUq pԋQR %bJ 9yVIJ%%Vzy@ (]??--39%?475DL?)3)'3?( jUч{Ǝ PK!Nword/glossary/webSettings.xmlJ1;,ٕ"t R"ivvdLjOoڪ ^z$@_Щf^ S/ٍ$0O:Qb gH(AZڦ[n)B(#1TJ4~ř%&.U]_oQh;;l]-e!2Y)?yh\e?eӼ,OUڛxB*ƗsP}br>aM|˔XKdPK!چ'bword/stylesWithEffects.xml][s;~ߪ*?[Ntdg'3e$U9L3ܖQOd% K7qrj Aݦ5I}}2ҋtl?>ՋmW&ƯO/x߃W{~ow2Kez2M4[}.K~k?]ZivwQ{Crlwh?ͤOu{od(,txoHeovNv0C\.}-׻x~7}2a*,X6l~Y[C3š}B]le3X2|=K;ٝ]Ҭ/-=OPԡ0Tz4n6У$tyFa~f2IU={2I>@+w 4bONN$\w,Y%'/M ~6O?UʥxI`/@va/FdSl\e0 t ~|<2ECJD 6 ?5^]s,t%^]x!K 9 MZ uU~W2=nw_--@hz{^t(tC$ Qŋ'HhlTqČU_JG}lLhF yM6o mS^L7.J^pPR * | i9DT7 Y|7 I|Ø7B.o#K{f7n&X_;34놠BnAY!կp6 Scfқ5FeK >%Mdtz,Euڔy(9sx)*8{vLݒ!R xאw7 G﫾ou}R+9'ۭ}'=KVN2R4|DxnVqzw%k8CC$6q}Ս;RոN] UrXL8b'],E p {{9lߣ{>G#%W{^5 yIF@H n $IJ}/kp>{%z|4x.r PO'H5 kkvBhZW?=R:0ϗ-DWqϏȡyH!S3 @) Q6џHs@+C2`d' V9- RPȈooBH{A+$A($!=cQG:o*dU hIx{Bl PBQ;A9xWi=hcT=Ã$`l`y/꟞oj'%H!-0C<|8K/=C@I%7$-%y1r{+(6T B?wP5'dT1o~ˬ,zKD +L?M/lDl, s*^DPVhtk նPE\d( 3, s6_A1ޡ/q{k;񎗖?JfMKn^xzCG6-Y%\2ˡ72Ւwsϧxhb~S<Ӧ`?8F1ԙľM/F7BMhE)kӕfp騪ʯ5G~ }iq3JTw̩ӊ]O+isNū܁:ԩ8eCӮ~5L_$V#*Me4aX4Sa, L9c#MAycUUW2p8횱d =ȱd\*.*q'VnΜD6řU\ˌu=\J&td,kU٧p c> 2,uJ:hm;T/Z__;+$#b&|Dyre8ܔ+.3h]{w[U=]v7ݲ=ģ(oo (c:;&ACZS7޹ϰ2U 7:'Bu9yPiw q*"EMn^_%إ"hH "?͹6iaޡOa1z 9׀qX,{k1ԃ:́vp3Rn^c:'* TjUU>`K9/MDS[;4OǗd\7k  "K8BhCgT@@v."_L@h#F"'FU,qT5U,E4TT)UH~ck- ͓Ő*}7Yws\*ӫ Bl4W {UkXb%R-Z視|i+'3dqy)\\|g(ϊ)k%|Ź8G8X6yK|XuW|nGBKᙚpH%af"5Ʊ/a%dfmDդMK W$2H ޲,|X ʻҞea;W\弓fN(?\5Z=Nbp{)Wl㇅w)|e0SRŨ?dPaD\Ѯ0fvQ5|_6~vkL$mt Dʄֺ> E兜("BX%{Bf mfN(1Zk3MS$@c!=]q 5g{\M2)eX ;}][uYk 9lv\  ;H82fgUȢ1vr  M g"ǓTm0%=.gX0|;oSB#Kl4,TPr@h8m>鯒(HnMfVF:L2>rRѦd'b5]hV81_EE3].vnO2ysQKW6O .;`twH]9:$}y>$z?amDV39AXdB7_j EG;^CV֋ZtM~=ў}:htJ hFlnћfySe[/sW]j9Uyh`wPX)}%rW՜_nm *H`dJ[CnArm[!dI2/nvMh:xsT$gO ت""Yw*bɅL"Icr,",0M"B[(;*wd \}}p[![;Y 6PPiPDWC,?2ným!#b߽91lTrpe˸̅nn_;sS!`y0}V" 'P?!i?\+Gl}cjqSCKDNEFe(. #v} g9O|  0PKib#mb*Su-a큙2#? ~tahr&Az2Xd|:b 7#XCs^Ƥُn3Rp;vOu&t19S䄼>JHX7X6VλlۣpUUv l cSـ 8=9Ip% 3? 2xݶLoLU"sujbW kM-Р[SYJ 6̎MlFsP@融hZjJǠ h0p,*3l:W}vXBMouemu+Al[ -ji|t2nY#2iۂMbWLq }'&*pl<a х[%`.?,o*:6γq1[A5GNdv٤d{4 pH. ^/Bpr1\HU{^ 絒wv8xjءˌP vύbF(@HqJc1C̺~7.yDL!b"ܢF#r@ҹȒhâ{EORmLWqkeCM>n*V龡&Z~M3QLnniѝ*Z]cBm[G7m`9BjKTAh &T屘s]1K>WEd.swf/Mg'1qeVfdT;FɢrBkq+sd0aPϸ`xdU\/^N `hʧf,tPS18F3ufAϏ:( L~A7);,qflTtT.)&Qq beΨ,3^t̘sTv& b6uG@yhɳh #SM>d`p@~`kw>oSk:;Q^ʢxHvN++s.|#^G[}+tymIgS\#lXsHޚUͼPJPuÀ#yM΀CŢTnpv[ϒJm fS10SURַ3 ~+#1O7'S6. DF :_Sb.J=憛6H-@bt6vLWKլ<#\Rx(M77z5' U>gqB.RyooGq&筙d3ͿLyݯ!?bo8 / -@b7pf;V:Jb'? z$(5d򈮲%]>I@\Lh,$n /2}^oUgTTe3oanoOGW A ޺/=̨1j\fsԵqlHy*\O/B^R+:TJu0!uhPSV(ViUt,%^'B1wXWp`O,1wN(2 p᥌Q/}hZ(VT!^kBiL)еGq +9@ƎUeण޵Z>[3"@~ƅbudYw'[367Ƨpb)}V)Lѝj&(Hxi7Eg[oj {sbruuyPeUUÌXx+pnMq vWfl዇8 PZjNx}rl H&iqzs$zSܣig*s'?T&sYye_1jzx=9bbXINS!xJJ&ֶZbTOwAgxý]*5Qm!;EQHэ!!CUͩG( tX;E2&تij@-UqPwQT&͓E߬)/=&OrQ>0{u2!٠ĭixe|!B$j)} E]j~S ]M *G⥐YT\=3j>C?GUgިyPps׍8tTYkքgEnڲfŋmλdo[F[lG~Xj- MAyD#>iebP7E,o॥JSL3TrEa痋5---*MQhїV@3y?OO;mXD"t0В&bOb%]vI 18uC){ڈtR8PR)}8vU+L*7V~{EyCerX7j]lUơU?2L-@蕒"FXXANDNƍ:Ցõ\h5h 5hU@El7RB o6B *n5CuD1-?_i_Q0g]"b?_6iz|X yDQ|=95|ºZU xWUgŝX }ϹOR6.2o2:]X3B3}<@yq2 KU=;q+e}_4h9=m57m@jfS~V.dVg.db#ŨR_3~bE}⸈=v0TZr}7Y <²3Y0Ϡsa?Σ~4ǢG͸sgOݜyБ,_]4=:^:*\B2ڲ+BTNdV~e!SLW-6Uq4Sz/Z@#^V1އOU@Ѓ]x/-ba͌}&huY vI3\wb'OpZq2'na"6[uDv)$CTUEKyx>_pMWKQ8|ͱ% .ZdwIN,ܚsK޻O9r//FGW%Qs}~%;y;=oΘ'y;n:W0k.6筐gh%ap :f(\~'5ƛG~1ƽ!sB9PK!Nword/webSettings.xmlJ1;,ٕ"t R"ivvdLjOoڪ ^z$@_Щf^ S/ٍ$0O:Qb gH(AZڦ[n)B(#1TJ4~ř%&.U]_oQh;;l]-e!2Y)?yh\e?eӼ,OUڛxB*ƗsP}br>aM|˔XKdPK! & word/fontTable.xmlĖ[o0'; K*4H{h5-X6iH֐6hm` Og4"@%F\1""KgDH" ЎjtsvKi =Q6Ym[Gʉ)0 nD=E$yJ2d vqUn9^d(Td|[]]x6Di51DŽdW[U,gX03G5<h1vo)XCߩ,.,Fk, XX?`?լr/e wąA;c@4m@8Dm bx0|S+FU!V.P8$\GYpJN"f/tAOo")VCtALp8[R5IH | b(¤Fk[uwp>[$f֨:II$~Pl'Qţ`Pu?'$F8C#d6HëǴOw.$QJJ(#E!)E TZ[N(bk,:7uaZ"u|nʘAtg { j]U]s~hRgs/(Bf . ؊$O2Zþ4"M4yC'ϨSheB+mQ\Uw=GQWC`e=`0UGPK!{<word/glossary/styles.xmlrHj߁슒uظ*:]{`dM-ާߞaFt|e {FOga$U05{!G2xwiD15Ed~w.WNoG^psBߎca(or#=?wL̈́+jX( Px`QNGGP9" hK 23Aɐ/PEj`:Gm \<*7Lco`~s[őކX +;r)[_fA$M#(E\~03Dqt?f2N\xM3S3S/3m"ޟЕ@>cocue9eC$~ڇX4YXt((uRpWl*p1ܘȂ7T!ԼL"]W%^vDp jQ Gc,/rOӁ]ځt8Ax\(PGd/᫔"7 @,_&M m6^7HR'5VNR|y.ϔQQQ׎(vD)gG86 W, ¾'k(ui1n~н9\61Uӷ:UP;#Н}&/Ύ$(L}PaR|vَ)q'2W:y˨uaZʇ]lwrkaIW]LPꌓr8j߄+qjo#Di. S4)*(t(!$'4}cI+z}Iz}e+5fݹT=x5P+c ؋8O1{ȧ1sFSv.^tAa#bNJAz * V3eآSbf*k.gbޡT\ݯ<*&?D ѬG;F5>YdB>yH4o [.eGV1[37 _}@a'7 vv ,Vk}9k*'(ṽ7BD7Ԏx@7\!7ֆLSM#(/[Kft{hě@a', ;;UM`#J(2#o&o&oxCo śbCʋ7pUUMTof/;AV&>) &DԎx@7Ԏx@ŻҞxXlm45/[2P^ 6*޸] vMSL,v L ,M#oq"jG #P;M5zH{M`!Լx@ly@y&xyw&P *7NAP3& *2#o x@@8ijG #Ps񮇴'[2M͋7Ė o z-%oOUuqWدHSlEDc bEyPCVAmU%7Tw"X3' _0qXR;oPOyGvǝG#@xJz`}CUemJ߁(g,NDA޳=Hݽ8yJ;٣yX?3?;G>d B k$uuי9th%u(LWv\CSKƚW݉Zt'rt/j0evYN&ckQo1OƗ5̆ɰ;O񢿚&TxgxeYkkl2./՛gv\GPK!M_Ot?#word/glossary/stylesWithEffects.xmlms8}Cl'Sᚙk r8NJ]C^5hTsWF'zk̷qy5ֵ(6}t&;_6]i`n5ѷqv:e}+ğ,ufX]CbQ鿚x|`mxq _vXY;mc}CW!16q('8MFιKb'd.h0.!n3^{;(TȘCs8,;1v2sy=dhk &͈0|p{2)bTԢw~ G^Y,J }S$2qC;M@͐$')[fIςdԻƠ(KĠ&d6Qs/`/4#ImԘ[IsdňRՎ(MRԎ(DRԎ(%vD)#J<;2p/g؅VYt݆R EωjqJ9\,WqŎfF;{&/`kFl@ Q~Bv5J1ɍrfޒ*e:0ߝmPZذbҫg"݉ÊPꌣr8j?lja4S4)*(D0!$?i.t"Vt}Iо%+׈vgffkVFȋXGĈSZ憩Sr.:JӑPbBNJA *zV3%Ȣ:f UZ5ksbпvT>oRg ʁe7Π <^Wddn{佣3gI3>˓gH$Y-;KuBnr ~mpJi)~\)/<~e8kX0q̽< .=9e!LQQ]'[0=n^Ysțh%u(LWv\]S#/L6Zrn܍f[rp}ݛwdHp[d].?G,hpl1xlnFwn;.p\G_PK!y#kIT+word/glossary/fontTable.xmlė]o0'?Do h#ӴRvdR$&]Q\ݼyJ3)Ʈ\H.Xyx1p$tvo~ڎb)2~G<,KG5D_ʔ 0 ުljzڤ)؂%,y[Qdq"z+ "{&Q f.mɶj*QybqDj82.b<{"Ϥ>_ux4RE~^H9T;)9kI2vGuPUz&S&JӬZl8&%2eѺ?VF/ؽCI6D/"eESE@Ap [P D~ـ` frUF40P!p0$0,\R%,?tl!N1%H[P L6p8^LYLlgFS4121a4ht eZ=W|nf]u/QUţ`мsOH$GWJrM" QFb|'Jc:6bytW@wYh9JJ5LoŽ:>2/]b5|uQUh?@J;xn"d6W:ߥ>-iL6If_ŷq87A*J9oS:1Z&Ӛ+fuɴ9L_Ň: Ϊ) -IBF`3W^[shdMIL>ǼܔX07)nN$PР&zZ] PK-!g [Content_Types].xmlPK-!N Q_rels/.relsPK-!uword/_rels/document.xml.relsPK-!Ed word/document.xmlPK-!TI#Qword/footer1.xmlPK-!R5Sword/endnotes.xmlPK-! !Uword/footnotes.xmlPK- !Wword/media/image26.pngPK- !k``Bword/media/image27.pngPK- !ېeword/media/image28.pngPK- !,44word/media/image25.pngPK- !0MŇTTշword/media/image23.pngPK- !0_6hnn word/media/image29.pngPK- !C)xxzword/media/image22.pngPK-!} Uword/theme/theme1.xmlPK- !\' [word/media/image20.pngPK- !w6w6@word/media/image24.pngPK- !ڼõ&&+wword/media/image31.pngPK- !{x_5_5word/media/image19.pngPK- !};;6word/media/image39.pngPK- !݂gh;h;word/media/image38.pngPK- !1%#word/media/image37.pngPK- !Q??Gword/media/image36.pngPK- !^aaword/media/image35.pngPK- !Bw word/media/image34.pngPK- !"sJJ word/media/image33.pngPK- !- : word/media/image32.pngPK- !9i1ff word/media/image30.pngPK- !vT``b3 word/media/image21.pngPK- !z**P word/media/image17.pngPK- !۟n word/media/image7.pngPK- !?G++ word/media/image6.pngPK- !]mmQmQ word/media/image5.pngPK- !\33\word/media/image18.pngPK- !j.8word/media/image3.pngPK- !Aword/media/image2.pngPK- !˸A""word/media/image1.pngPK- !?MMword/media/image8.pngPK- !Ȉc(c(Bword/media/image4.pngPK- !kkkword/media/image10.pngPK- !}U}Uword/media/image16.pngPK- !Æ Poo,word/media/image15.pngPK- !%(L(L(1word/media/image14.pngPK- !z##}word/media/image9.pngPK- !,LVLVxword/media/image12.pngPK- !eX??word/media/image13.pngPK- !S `&`&kword/media/image11.pngPK-!y lword/glossary/settings.xmlPK-!%ioMword/glossary/document.xmlPK-!AOx M(word/settings.xmlPK-!l~5%word/glossary/_rels/document.xml.relsPK-!&΢&_word/styles.xmlPK-!v?F?docProps/core.xmlPK-!t?9z(customXml/_rels/item1.xml.relsPK-!G5word/numbering.xmlPK-!T~UcustomXml/itemProps1.xmlPK-!+^docProps/app.xmlPK-!\customXml/item1.xmlPK-!Nqword/glossary/webSettings.xmlPK-!چ'bword/stylesWithEffects.xmlPK-!NeEword/webSettings.xmlPK-! & Fword/fontTable.xmlPK-!{<Iword/glossary/styles.xmlPK-!M_Ot?#Qword/glossary/stylesWithEffects.xmlPK-!y#kIT+uZword/glossary/fontTable.xmlPKAA:^cpputest-3.4/examples/0000755000175300017530000000000012143642714012060 500000000000000cpputest-3.4/examples/AllTests/0000755000175300017530000000000012143642713013612 500000000000000cpputest-3.4/examples/AllTests/AllTests.cpp0000644000175300017530000000451412023251674015774 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/CommandLineTestRunner.h" #include "CppUTest/TestPlugin.h" #include "CppUTest/TestRegistry.h" #include "CppUTestExt/MockSupportPlugin.h" class MyDummyComparator : public MockNamedValueComparator { public: virtual bool isEqual(void* object1, void* object2) { return object1 == object2; } virtual SimpleString valueToString(void* object) { return StringFrom(object); } }; int main(int ac, char** av) { MyDummyComparator dummyComparator; MockSupportPlugin mockPlugin; mockPlugin.installComparator("MyDummyType", dummyComparator); TestRegistry::getCurrentRegistry()->installPlugin(&mockPlugin); return CommandLineTestRunner::RunAllTests(ac, av); } #include "ApplicationLib/AllTests.h" cpputest-3.4/examples/AllTests/AllTests.dsp0000644000175300017530000001123612023251675016000 00000000000000# Microsoft Developer Studio Project File - Name="AllTests" - Package Owner=<4> # Microsoft Developer Studio Generated Build File, Format Version 6.00 # ** DO NOT EDIT ** # TARGTYPE "Win32 (x86) Console Application" 0x0103 CFG=AllTests - Win32 Debug !MESSAGE This is not a valid makefile. To build this project using NMAKE, !MESSAGE use the Export Makefile command and run !MESSAGE !MESSAGE NMAKE /f "AllTests.mak". !MESSAGE !MESSAGE You can specify a configuration when running NMAKE !MESSAGE by defining the macro CFG on the command line. For example: !MESSAGE !MESSAGE NMAKE /f "AllTests.mak" CFG="AllTests - Win32 Debug" !MESSAGE !MESSAGE Possible choices for configuration are: !MESSAGE !MESSAGE "AllTests - Win32 Release" (based on "Win32 (x86) Console Application") !MESSAGE "AllTests - Win32 Debug" (based on "Win32 (x86) Console Application") !MESSAGE # Begin Project # PROP AllowPerConfigDependencies 0 # PROP Scc_ProjName "" # PROP Scc_LocalPath "" CPP=cl.exe RSC=rc.exe !IF "$(CFG)" == "AllTests - Win32 Release" # PROP BASE Use_MFC 0 # PROP BASE Use_Debug_Libraries 0 # PROP BASE Output_Dir "Release" # PROP BASE Intermediate_Dir "Release" # PROP BASE Target_Dir "" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 0 # PROP Output_Dir "Release" # PROP Intermediate_Dir "Release" # PROP Target_Dir "" # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c # ADD CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c # ADD BASE RSC /l 0x409 /d "NDEBUG" # ADD RSC /l 0x409 /d "NDEBUG" BSC32=bscmake.exe # ADD BASE BSC32 /nologo # ADD BSC32 /nologo LINK32=link.exe # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 !ELSEIF "$(CFG)" == "AllTests - Win32 Debug" # PROP BASE Use_MFC 0 # PROP BASE Use_Debug_Libraries 1 # PROP BASE Output_Dir "AllTests___Win32_Debug" # PROP BASE Intermediate_Dir "AllTests___Win32_Debug" # PROP BASE Target_Dir "" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 1 # PROP Output_Dir "Debug" # PROP Intermediate_Dir "Debug" # PROP Ignore_Export_Lib 0 # PROP Target_Dir "" # ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c # ADD CPP /nologo /MDd /W3 /GX /ZI /Od /I "../../include" /I "../../include/Platforms/VisualCpp" /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /FD /GZ /c # SUBTRACT CPP /YX # ADD BASE RSC /l 0x409 /d "_DEBUG" # ADD RSC /l 0x409 /d "_DEBUG" BSC32=bscmake.exe # ADD BASE BSC32 /nologo # ADD BSC32 /nologo LINK32=link.exe # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept # ADD LINK32 ../../lib/CppUTest.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib winmm.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept # SUBTRACT LINK32 /incremental:no !ENDIF # Begin Target # Name "AllTests - Win32 Release" # Name "AllTests - Win32 Debug" # Begin Group "Source Files" # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" # Begin Source File SOURCE=.\AllTests.cpp # End Source File # Begin Source File SOURCE=..\ApplicationLib\CircularBufferTest.cpp # End Source File # Begin Source File SOURCE=..\ApplicationLib\HelloTest.cpp # End Source File # Begin Source File SOURCE=..\ApplicationLib\PrinterTest.cpp # End Source File # End Group # Begin Group "Header Files" # PROP Default_Filter "h;hpp;hxx;hm;inl" # End Group # Begin Group "Resource Files" # PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" # End Group # End Target # End Project cpputest-3.4/examples/AllTests/CircularBufferTest.cpp0000644000175300017530000001400712023251675017776 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" #include "MockPrinter.h" #include "CircularBuffer.h" TEST_GROUP(CircularBuffer) { CircularBuffer* buffer; void setup() { buffer = new CircularBuffer(); } void teardown() { delete buffer; } void fillTheQueue(int seed, int howMany) { for (int i = 0; i < howMany; i++) buffer->Put(seed + i); } void removeFromQueue(int howMany) { for (int i = 0; i < howMany; i++) buffer->Get(); } }; TEST(CircularBuffer, EmptyAfterCreation) { CHECK(buffer->IsEmpty()); } TEST(CircularBuffer, NotEmpty) { buffer->Put(10046); CHECK(!buffer->IsEmpty()); } TEST(CircularBuffer, NotEmptyThenEmpty) { buffer->Put(4567); CHECK(!buffer->IsEmpty()); buffer->Get(); CHECK(buffer->IsEmpty()); } TEST(CircularBuffer, GetPutOneValue) { buffer->Put(4567); LONGS_EQUAL(4567, buffer->Get()); } TEST(CircularBuffer, GetPutAFew) { buffer->Put(1); buffer->Put(2); buffer->Put(3); LONGS_EQUAL(1, buffer->Get()); LONGS_EQUAL(2, buffer->Get()); LONGS_EQUAL(3, buffer->Get()); } TEST(CircularBuffer, Capacity) { CircularBuffer b(2); LONGS_EQUAL(2, b.Capacity()); } TEST(CircularBuffer, IsFull) { fillTheQueue(0, buffer->Capacity()); CHECK(buffer->IsFull()); } TEST(CircularBuffer, EmptyToFullToEmpty) { fillTheQueue(100, buffer->Capacity()); CHECK(buffer->IsFull()); removeFromQueue(buffer->Capacity()); CHECK(buffer->IsEmpty()); } TEST(CircularBuffer, WrapAround) { fillTheQueue(100, buffer->Capacity()); CHECK(buffer->IsFull()); LONGS_EQUAL(100, buffer->Get()); CHECK(!buffer->IsFull()); buffer->Put(1000); CHECK(buffer->IsFull()); removeFromQueue(buffer->Capacity() - 1); LONGS_EQUAL(1000, buffer->Get()); CHECK(buffer->IsEmpty()); } TEST(CircularBuffer, PutToFull) { int capacity = buffer->Capacity(); fillTheQueue(900, capacity); buffer->Put(9999); for (int i = 0; i < buffer->Capacity() - 1; i++) LONGS_EQUAL(i+900+1, buffer->Get()); LONGS_EQUAL(9999, buffer->Get()); CHECK(buffer->IsEmpty()); } //Sometime people ask what tests the tests. //Do you know the answer TEST(CircularBuffer, GetFromEmpty) { LONGS_EQUAL(-1, buffer->Get()); CHECK(buffer->IsEmpty()); } /* * the next tests demonstrate using a mock object for * capturing output * */ TEST(CircularBuffer, PrintEmpty) { MockPrinter mock; Printer* p = &mock; buffer->Print(p); CHECK_EQUAL("Circular buffer content:\n<>\n", mock.getOutput()); } TEST(CircularBuffer, PrintAfterOnePut) { MockPrinter mock; buffer->Put(1); buffer->Print(&mock); CHECK_EQUAL("Circular buffer content:\n<1>\n", mock.getOutput()); } TEST(CircularBuffer, PrintNotYetWrappedOrFull) { MockPrinter mock; buffer->Put(1); buffer->Put(2); buffer->Put(3); buffer->Print(&mock); CHECK_EQUAL("Circular buffer content:\n<1, 2, 3>\n", mock.getOutput()); } TEST(CircularBuffer, PrintNotYetWrappedAndIsFull) { MockPrinter mock; fillTheQueue(200, buffer->Capacity()); buffer->Print(&mock); const char* expected = "Circular buffer content:\n" "<200, 201, 202, 203, 204>\n"; CHECK_EQUAL(expected, mock.getOutput()); } TEST(CircularBuffer, PrintWrappedAndIsFullOldestToNewest) { MockPrinter mock; fillTheQueue(200, buffer->Capacity()); buffer->Get(); buffer->Put(999); buffer->Print(&mock); const char* expected = "Circular buffer content:\n" "<201, 202, 203, 204, 999>\n"; CHECK_EQUAL(expected, mock.getOutput()); } TEST(CircularBuffer, PrintWrappedAndFullOverwriteOldest) { MockPrinter mock; fillTheQueue(200, buffer->Capacity()); buffer->Put(9999); buffer->Print(&mock); const char* expected = "Circular buffer content:\n" "<201, 202, 203, 204, 9999>\n"; CHECK_EQUAL(expected, mock.getOutput()); } TEST(CircularBuffer, PrintBoundary) { MockPrinter mock; fillTheQueue(200, buffer->Capacity()); removeFromQueue(buffer->Capacity() - 2); buffer->Put(888); fillTheQueue(300, buffer->Capacity() - 1); buffer->Print(&mock); const char* expected = "Circular buffer content:\n" "<888, 300, 301, 302, 303>\n"; CHECK_EQUAL(expected, mock.getOutput()); } TEST(CircularBuffer, FillEmptyThenPrint) { MockPrinter mock; fillTheQueue(200, buffer->Capacity()); removeFromQueue(buffer->Capacity()); buffer->Print(&mock); const char* expected = "Circular buffer content:\n" "<>\n"; CHECK_EQUAL(expected, mock.getOutput()); } cpputest-3.4/examples/AllTests/EventDispatcherTest.cpp0000644000175300017530000001004012023251675020161 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" #include "CppUTestExt/MockSupport.h" #include "EventDispatcher.h" class ObserverMock : public EventObserver { public: virtual void notify(const Event& event, int timeOutInSeconds) { mock().actualCall("notify").onObject(this).withParameterOfType("Event", "event", (void*) &event).withParameter("timeOutInSeconds", timeOutInSeconds); } virtual void notifyRegistration(EventObserver* newObserver) { mock().actualCall("notifyRegistration").onObject(this).withParameter("newObserver", newObserver); } }; class EventComparator : public MockNamedValueComparator { public: virtual bool isEqual(void* object1, void* object2) { return ((Event*)object1)->type == ((Event*)object2)->type; } virtual SimpleString valueToString(void* object) { return StringFrom(((Event*)object)->type); } }; TEST_GROUP(EventDispatcher) { Event event; EventDispatcher* dispatcher; ObserverMock observer; ObserverMock observer2; EventComparator eventComparator; void setup() { dispatcher = new EventDispatcher; mock().installComparator("Event", eventComparator); } void teardown() { delete dispatcher; mock().removeAllComparators(); } }; TEST(EventDispatcher, EventWithoutRegistrationsResultsIntoNoCalls) { dispatcher->dispatchEvent(event, 10); } TEST(EventDispatcher, EventWithRegistrationForEventResultsIntoCallback) { mock().expectOneCall("notify").onObject(&observer).withParameterOfType("Event", "event", &event).withParameter("timeOutInSeconds", 10); event.type = IMPORTANT_EVENT; dispatcher->registerObserver(IMPORTANT_EVENT, &observer); dispatcher->dispatchEvent(event, 10); } TEST(EventDispatcher, DifferentEventWithRegistrationDoesNotResultIntoCallback) { event.type = LESS_IMPORTANT_EVENT; dispatcher->registerObserver(IMPORTANT_EVENT, &observer); dispatcher->dispatchEvent(event, 10); } TEST(EventDispatcher, RegisterTwoObserversResultIntoTwoCallsAndARegistrationNotification) { mock().expectOneCall("notify").onObject(&observer).withParameterOfType("Event", "event", &event).withParameter("timeOutInSeconds", 10); mock().expectOneCall("notify").onObject(&observer2).withParameterOfType("Event", "event", &event).withParameter("timeOutInSeconds", 10); mock().expectOneCall("notifyRegistration").onObject(&observer).withParameter("newObserver", &observer2); event.type = IMPORTANT_EVENT; dispatcher->registerObserver(IMPORTANT_EVENT, &observer); dispatcher->registerObserver(IMPORTANT_EVENT, &observer2); dispatcher->dispatchEvent(event, 10); } cpputest-3.4/examples/AllTests/HelloTest.cpp0000664000175300017530000000427312066727207016157 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "hello.h" #include #include #include "CppUTest/TestHarness.h" static SimpleString* buffer; TEST_GROUP(HelloWorld) { static int output_method(const char* output, ...) { va_list arguments; va_start(arguments, output); *buffer = VStringFromFormat(output, arguments); va_end(arguments); return 1; } void setup() { buffer = new SimpleString(); UT_PTR_SET(PrintFormated, &output_method); } void teardown() { delete buffer; } }; TEST(HelloWorld, PrintOk) { printHelloWorld(); STRCMP_EQUAL("Hello World!\n", buffer->asCharString()); } cpputest-3.4/examples/AllTests/MockDocumentationTest.cpp0000644000175300017530000001352212137414545020527 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" #include "CppUTestExt/MockSupport.h" #include "CppUTestExt/MockSupport_c.h" TEST_GROUP(FirstTestGroup) { }; TEST(FirstTestGroup, FirsTest) { // FAIL("Fail me!"); } TEST(FirstTestGroup, SecondTest) { // STRCMP_EQUAL("hello", "world"); } TEST_GROUP(MockDocumentation) { }; static void productionCode() { mock().actualCall("productionCode"); } TEST(MockDocumentation, SimpleScenario) { mock().expectOneCall("productionCode"); productionCode(); mock().checkExpectations(); } class ClassFromProductionCode { public: virtual void importantFunction(){} virtual ~ClassFromProductionCode() {} }; class ClassFromProductionCodeMock : public ClassFromProductionCode { public: virtual void importantFunction() { mock().actualCall("importantFunction").onObject(this); } }; TEST(MockDocumentation, SimpleScenarioObject) { ClassFromProductionCode* object = new ClassFromProductionCodeMock; /* create mock instead of real thing */ mock().expectOneCall("importantFunction").onObject(object); object->importantFunction(); mock().checkExpectations(); delete object; } static void parameters_function(int p1, const char* p2) { void* object = (void*) 1; mock().actualCall("function").onObject(object).withParameter("p1", p1).withParameter("p2", p2); } TEST(MockDocumentation, parameters) { void* object = (void*) 1; mock().expectOneCall("function").onObject(object).withParameter("p1", 2).withParameter("p2", "hah"); parameters_function(2, "hah"); } class MyTypeComparator : public MockNamedValueComparator { public: virtual bool isEqual(void* object1, void* object2) { return object1 == object2; } virtual SimpleString valueToString(void* object) { return StringFrom(object); } }; TEST(MockDocumentation, ObjectParameters) { void* object = (void*) 1; MyTypeComparator comparator; mock().installComparator("myType", comparator); mock().expectOneCall("function").withParameterOfType("myType", "parameterName", object); mock().clear(); mock().removeAllComparators(); } TEST(MockDocumentation, returnValue) { mock().expectOneCall("function").andReturnValue(10); int value = mock().actualCall("function").returnValue().getIntValue(); value = mock().returnValue().getIntValue(); LONGS_EQUAL(10, value); } TEST(MockDocumentation, setData) { ClassFromProductionCode object; mock().setData("importantValue", 10); mock().setDataObject("importantObject", "ClassFromProductionCode", &object); ClassFromProductionCode * pobject; int value = mock().getData("importantValue").getIntValue(); pobject = (ClassFromProductionCode*) mock().getData("importantObject").getObjectPointer(); LONGS_EQUAL(10, value); POINTERS_EQUAL(pobject, &object); } static void doSomethingThatWouldOtherwiseBlowUpTheMockingFramework() { } TEST(MockDocumentation, otherMockSupport) { mock().crashOnFailure(); // mock().actualCall("unex"); mock().expectOneCall("foo"); mock().ignoreOtherCalls(); mock().disable(); doSomethingThatWouldOtherwiseBlowUpTheMockingFramework(); mock().enable(); mock().clear(); } TEST(MockDocumentation, scope) { mock("xmlparser").expectOneCall("open"); mock("filesystem").ignoreOtherCalls(); mock("xmlparser").actualCall("open"); } static int equalMethod(void* object1, void* object2) { return object1 == object2; } static char* toStringMethod(void*) { return (char*) "string"; } TEST(MockDocumentation, CInterface) { void* object = (void*) 0x1; mock_c()->expectOneCall("foo")->withIntParameters("integer", 10)->andReturnDoubleValue(1.11); double d = mock_c()->actualCall("foo")->withIntParameters("integer", 10)->returnValue().value.doubleValue; DOUBLES_EQUAL(1.11, d, 0.00001); mock_c()->installComparator("type", equalMethod, toStringMethod); mock_scope_c("scope")->expectOneCall("bar")->withParameterOfType("type", "name", object); mock_scope_c("scope")->actualCall("bar")->withParameterOfType("type", "name", object); mock_c()->removeAllComparators(); mock_c()->setIntData("important", 10); mock_c()->checkExpectations(); mock_c()->clear(); } TEST_GROUP(FooTestGroup) { void setup() { // Init stuff } void teardown() { // Uninit stuff } }; TEST(FooTestGroup, Foo) { // Test FOO } TEST(FooTestGroup, MoreFoo) { // Test more FOO } TEST_GROUP(BarTestGroup) { void setup() { // Init Bar } }; TEST(BarTestGroup, Bar) { // Test Bar } cpputest-3.4/examples/AllTests/PrinterTest.cpp0000644000175300017530000000426712023251675016532 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/TestHarness.h" #include "Printer.h" #include "MockPrinter.h" TEST_GROUP(Printer) { Printer* printer; MockPrinter* mockPrinter; void setup() { mockPrinter = new MockPrinter(); printer = mockPrinter; } void teardown() { delete printer; } }; TEST(Printer, PrintConstCharStar) { printer->Print("hello"); printer->Print("hello\n"); CHECK_EQUAL("hellohello\n", mockPrinter->getOutput()); } TEST(Printer, PrintLong) { printer->Print(1234); CHECK_EQUAL("1234", mockPrinter->getOutput()); } TEST(Printer, StreamOperators) { *printer << "n=" << 1234; CHECK_EQUAL("n=1234", mockPrinter->getOutput()); } cpputest-3.4/examples/AllTests/RunAllTests.sh0000755000175300017530000000013412023251675016307 00000000000000#!/bin/bash #put any pre-test execution commands here. echo Running all tests ./AllTests $1 cpputest-3.4/examples/ApplicationLib/0000755000175300017530000000000012143642713014751 500000000000000cpputest-3.4/examples/ApplicationLib/AllTests.h0000644000175300017530000000336112023251675016600 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ IMPORT_TEST_GROUP( Printer); IMPORT_TEST_GROUP( CircularBuffer); IMPORT_TEST_GROUP( HelloWorld); IMPORT_TEST_GROUP( EventDispatcher); IMPORT_TEST_GROUP( MockDocumentation); cpputest-3.4/examples/ApplicationLib/ApplicationLib.dsp0000644000175300017530000000656312023251675020305 00000000000000# Microsoft Developer Studio Project File - Name="ApplicationLib" - Package Owner=<4> # Microsoft Developer Studio Generated Build File, Format Version 6.00 # ** DO NOT EDIT ** # TARGTYPE "Win32 (x86) Static Library" 0x0104 CFG=ApplicationLib - Win32 Debug !MESSAGE This is not a valid makefile. To build this project using NMAKE, !MESSAGE use the Export Makefile command and run !MESSAGE !MESSAGE NMAKE /f "ApplicationLib.mak". !MESSAGE !MESSAGE You can specify a configuration when running NMAKE !MESSAGE by defining the macro CFG on the command line. For example: !MESSAGE !MESSAGE NMAKE /f "ApplicationLib.mak" CFG="ApplicationLib - Win32 Debug" !MESSAGE !MESSAGE Possible choices for configuration are: !MESSAGE !MESSAGE "ApplicationLib - Win32 Release" (based on "Win32 (x86) Static Library") !MESSAGE "ApplicationLib - Win32 Debug" (based on "Win32 (x86) Static Library") !MESSAGE # Begin Project # PROP AllowPerConfigDependencies 0 # PROP Scc_ProjName "" # PROP Scc_LocalPath "" CPP=cl.exe RSC=rc.exe !IF "$(CFG)" == "ApplicationLib - Win32 Release" # PROP BASE Use_MFC 0 # PROP BASE Use_Debug_Libraries 0 # PROP BASE Output_Dir "Release" # PROP BASE Intermediate_Dir "Release" # PROP BASE Target_Dir "" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 0 # PROP Output_Dir "Release" # PROP Intermediate_Dir "Release" # PROP Target_Dir "" # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c # ADD CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c # ADD BASE RSC /l 0x409 /d "NDEBUG" # ADD RSC /l 0x409 /d "NDEBUG" BSC32=bscmake.exe # ADD BASE BSC32 /nologo # ADD BSC32 /nologo LIB32=link.exe -lib # ADD BASE LIB32 /nologo # ADD LIB32 /nologo !ELSEIF "$(CFG)" == "ApplicationLib - Win32 Debug" # PROP BASE Use_MFC 0 # PROP BASE Use_Debug_Libraries 1 # PROP BASE Output_Dir "Debug" # PROP BASE Intermediate_Dir "Debug" # PROP BASE Target_Dir "" # PROP Use_MFC 0 # PROP Use_Debug_Libraries 1 # PROP Output_Dir "Debug" # PROP Intermediate_Dir "Debug" # PROP Target_Dir "" # ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c # ADD CPP /nologo /MDd /W3 /GX /ZI /Od /I "../../include" /I "../../include/Platforms/VisualCpp" /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /FD /GZ /c # SUBTRACT CPP /YX # ADD BASE RSC /l 0x409 /d "_DEBUG" # ADD RSC /l 0x409 /d "_DEBUG" BSC32=bscmake.exe # ADD BASE BSC32 /nologo # ADD BSC32 /nologo LIB32=link.exe -lib # ADD BASE LIB32 /nologo # ADD LIB32 /nologo !ENDIF # Begin Target # Name "ApplicationLib - Win32 Release" # Name "ApplicationLib - Win32 Debug" # Begin Group "Source Files" # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" # Begin Source File SOURCE=.\CircularBuffer.cpp # End Source File # Begin Source File SOURCE=.\hello.c # End Source File # Begin Source File SOURCE=.\Printer.cpp # End Source File # End Group # Begin Group "Header Files" # PROP Default_Filter "h;hpp;hxx;hm;inl" # Begin Source File SOURCE=.\AllTests.h # End Source File # Begin Source File SOURCE=.\CircularBuffer.h # End Source File # Begin Source File SOURCE=.\hello.h # End Source File # Begin Source File SOURCE=.\MockPrinter.h # End Source File # Begin Source File SOURCE=.\Printer.h # End Source File # End Group # End Target # End Project cpputest-3.4/examples/ApplicationLib/CircularBuffer.cpp0000644000175300017530000000556012023251675020301 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CircularBuffer.h" #include "Printer.h" CircularBuffer::CircularBuffer(int _capacity) : index(0), outdex(0), capacity(_capacity), empty(true), full(false) { buffer = new int[this->capacity]; } CircularBuffer::~CircularBuffer() { delete[] buffer; } bool CircularBuffer::IsEmpty() { return empty; } bool CircularBuffer::IsFull() { return full; } void CircularBuffer::Put(int i) { empty = false; buffer[index] = i; index = Next(index); if (full) outdex = Next(outdex); else if (index == outdex) full = true; } int CircularBuffer::Get() { int result = -1; full = false; if (!empty) { result = buffer[outdex]; outdex = Next(outdex); if (outdex == index) empty = true; } return result; } int CircularBuffer::Capacity() { return capacity; } int CircularBuffer::Next(int i) { if (++i >= capacity) i = 0; return i; } void CircularBuffer::Print(Printer* p) { p->Print("Circular buffer content:\n<"); int printIndex = outdex; int count = index - outdex; if (!empty && (index <= outdex)) count = capacity - (outdex - index); for (int i = 0; i < count; i++) { p->Print(buffer[printIndex]); printIndex = Next(printIndex); if (i + 1 != count) p->Print(", "); } p->Print(">\n"); } cpputest-3.4/examples/ApplicationLib/CircularBuffer.h0000644000175300017530000000462612023251675017750 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef D_CircularBuffer_H #define D_CircularBuffer_H /////////////////////////////////////////////////////////////////////////////// // // CircularBuffer.h // // CircularBuffer is responsible for ... // /////////////////////////////////////////////////////////////////////////////// class Printer; class CircularBuffer { public: explicit CircularBuffer(int capacity = CAPACITY); virtual ~CircularBuffer(); void Put(int); int Get(); bool IsEmpty(); bool IsFull(); int Capacity(); int Next(int i); void Print(Printer*); private: int index; int outdex; int* buffer; int capacity; enum { CAPACITY = 5 }; bool empty; bool full; CircularBuffer(const CircularBuffer&); CircularBuffer& operator=(const CircularBuffer&); }; #endif // D_CircularBuffer_H cpputest-3.4/examples/ApplicationLib/EventDispatcher.cpp0000664000175300017530000000433012066727207020475 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "EventDispatcher.h" using namespace std; EventDispatcher::EventDispatcher() { } void EventDispatcher::registerObserver(EventType type, EventObserver* observer) { for (list >::iterator i = observerList_.begin(); i != observerList_.end(); i++) i->second->notifyRegistration(observer); observerList_.push_back(make_pair(type, observer)); } void EventDispatcher::dispatchEvent(const Event& event, int timeoutSeconds) { for (list >::iterator i = observerList_.begin(); i != observerList_.end(); i++) { if (i->first == event.type) i->second->notify(event, timeoutSeconds); } } cpputest-3.4/examples/ApplicationLib/EventDispatcher.h0000664000175300017530000000426412066727207020150 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef EVENTDISPATCHER__H #define EVENTDISPATCHER__H #include enum EventType { IMPORTANT_EVENT, LESS_IMPORTANT_EVENT }; class Event { public: EventType type; }; class EventObserver { public: virtual void notify(const Event& event, int timeOutInSeconds)=0; virtual void notifyRegistration(EventObserver* newObserver)=0; virtual ~EventObserver() {} }; class EventDispatcher { std::list > observerList_; public: EventDispatcher(); void registerObserver(EventType type, EventObserver* observer); void dispatchEvent(const Event& event, int timeoutSeconds); }; #endif cpputest-3.4/examples/ApplicationLib/ExamplesNewOverrides.h0000644000175300017530000000320612023251675021156 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include #include "CppUTest/MemoryLeakDetectorNewMacros.h" cpputest-3.4/examples/ApplicationLib/MockPrinter.h0000644000175300017530000000475212023251675017307 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef D_MockPrinter_H #define D_MockPrinter_H /////////////////////////////////////////////////////////////////////////////// // // MockPrinter.h // // MockPrinter is responsible for providing a test stub for Printer // /////////////////////////////////////////////////////////////////////////////// #include "Printer.h" #include "CppUTest/SimpleString.h" #include #include class MockPrinter: public Printer { public: explicit MockPrinter() { } virtual ~MockPrinter() { } virtual void Print(const char* s) { savedOutput.append(s); } virtual void Print(long int value) { SimpleString buffer; buffer = StringFromFormat("%ld", value); savedOutput.append(buffer.asCharString()); } std::string getOutput() const { return savedOutput; } private: std::string savedOutput; MockPrinter(const MockPrinter&); MockPrinter& operator=(const MockPrinter&); }; #endif // D_MockPrinter_H cpputest-3.4/examples/ApplicationLib/Printer.cpp0000644000175300017530000000403012023251675017015 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "Printer.h" #include "CppUTest/TestHarness.h" #include "CppUTest/SimpleString.h" #include Printer::Printer() { } Printer::~Printer() { } void Printer::Print(const char* s) { for (const char* p = s; *p; p++) putchar(*p); } void Printer::Print(long n) { Print(StringFrom(n).asCharString()); } Printer& operator<<(Printer& p, const char* s) { p.Print(s); return p; } Printer& operator<<(Printer& p, long int i) { p.Print(i); return p; } cpputest-3.4/examples/ApplicationLib/Printer.h0000644000175300017530000000416712023251675016475 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef D_Printer_H #define D_Printer_H /////////////////////////////////////////////////////////////////////////////// // // Printer is responsible for ... // /////////////////////////////////////////////////////////////////////////////// class Printer { public: explicit Printer(); virtual ~Printer(); virtual void Print(const char*); virtual void Print(long int); private: Printer(const Printer&); Printer& operator=(const Printer&); }; Printer& operator<<(Printer&, const char*); Printer& operator<<(Printer&, long int); #endif // D_Printer_H cpputest-3.4/examples/ApplicationLib/hello.c0000644000175300017530000000337612023251675016151 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include #include "hello.h" void printHelloWorld() { PrintFormated("Hello World!\n"); } int (*PrintFormated)(const char*, ...) = printf; cpputest-3.4/examples/ApplicationLib/hello.h0000664000175300017530000000347712066727207016170 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef HELLO_H_ #define HELLO_H_ #ifdef __cplusplus extern "C" { #endif extern void printHelloWorld(void); extern int (*PrintFormated)(const char*, ...); #ifdef __cplusplus } #endif #endif /*HELLO_H_*/ cpputest-3.4/examples/.settings/0000755000175300017530000000000012143642713013775 500000000000000cpputest-3.4/examples/.settings/org.eclipse.cdt.core.prefs0000644000175300017530000000014712023251674020671 00000000000000#Thu Apr 19 15:52:43 CDT 2007 eclipse.preferences.version=1 indexerId=org.eclipse.cdt.core.fastIndexer cpputest-3.4/examples/.cdtproject0000644000175300017530000000420312023251674014137 00000000000000 cpputest-3.4/examples/.project0000644000175300017530000000507712023251674013456 00000000000000 CppUTestExample org.eclipse.cdt.make.core.makeBuilder org.eclipse.cdt.make.core.build.arguments org.eclipse.cdt.core.errorOutputParser org.eclipse.cdt.core.MakeErrorParser;org.eclipse.cdt.core.GCCErrorParser;org.eclipse.cdt.core.GASErrorParser;org.eclipse.cdt.core.GLDErrorParser;org.eclipse.cdt.core.VCErrorParser; org.eclipse.cdt.make.core.environment org.eclipse.cdt.make.core.enableAutoBuild true org.eclipse.cdt.make.core.build.target.inc all org.eclipse.cdt.make.core.enableFullBuild true org.eclipse.cdt.make.core.enabledIncrementalBuild true org.eclipse.cdt.make.core.build.location org.eclipse.cdt.make.core.build.command make org.eclipse.cdt.make.core.build.target.clean clean depend org.eclipse.cdt.make.core.enableCleanBuild true org.eclipse.cdt.make.core.append_environment true org.eclipse.cdt.make.core.useDefaultBuildCmd true org.eclipse.cdt.make.core.build.target.auto all org.eclipse.cdt.make.core.stopOnError false org.eclipse.cdt.make.core.ScannerConfigBuilder org.eclipse.cdt.core.cnature org.eclipse.cdt.make.core.makeNature org.eclipse.cdt.make.core.ScannerConfigNature org.eclipse.cdt.core.ccnature cpputest-3.4/examples/CppUTestExample.dsw0000644000175300017530000000153512023251675015545 00000000000000Microsoft Developer Studio Workspace File, Format Version 6.00 # WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! ############################################################################### Project: "AllTests"=.\AllTests\AllTests.dsp - Package Owner=<4> Package=<5> {{{ }}} Package=<4> {{{ Begin Project Dependency Project_Dep_Name ApplicationLib End Project Dependency }}} ############################################################################### Project: "ApplicationLib"=.\ApplicationLib\ApplicationLib.dsp - Package Owner=<4> Package=<5> {{{ }}} Package=<4> {{{ }}} ############################################################################### Global: Package=<5> {{{ }}} Package=<3> {{{ }}} ############################################################################### cpputest-3.4/examples/Makefile0000644000175300017530000000131412023251675013436 00000000000000#--------- # # CppUTest Examples Makefile # #---------- #Set this to @ to keep the makefile quiet ifndef SILENCE SILENCE = @ endif #--- Inputs ----# COMPONENT_NAME = CppUTestExamples CPPUTEST_HOME = .. CPPUTEST_USE_EXTENSIONS = Y CPP_PLATFORM = Gcc # This line is overriding the default new macros. This is helpful # when using std library includes like and other containers # so that memory leak detection does not conflict with stl. CPPUTEST_MEMLEAK_DETECTOR_NEW_MACRO_FILE = -include ApplicationLib/ExamplesNewOverrides.h SRC_DIRS = \ ApplicationLib TEST_SRC_DIRS = \ AllTests INCLUDE_DIRS =\ .\ ApplicationLib\ $(CPPUTEST_HOME)/include\ include $(CPPUTEST_HOME)/build/MakefileWorker.mk cpputest-3.4/examples/README.txt0000644000175300017530000000016012023251675013472 00000000000000To build the examples for gcc: make clean all test gcov for MS Studio: The workspace files may be out of date.cpputest-3.4/include/0000755000175300017530000000000012143642712011663 500000000000000cpputest-3.4/include/CppUTest/0000755000175300017530000000000012143642712013372 500000000000000cpputest-3.4/include/CppUTest/CommandLineArguments.h0000664000175300017530000000605212066727207017553 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef D_CommandLineArguments_H #define D_CommandLineArguments_H #include "SimpleString.h" #include "TestOutput.h" #include "TestFilter.h" class TestPlugin; class CommandLineArguments { public: explicit CommandLineArguments(int ac, const char** av); virtual ~CommandLineArguments(); bool parse(TestPlugin* plugin); bool isVerbose() const; int getRepeatCount() const; TestFilter getGroupFilter() const; TestFilter getNameFilter() const; bool isJUnitOutput() const; bool isEclipseOutput() const; bool runTestsInSeperateProcess() const; const char* usage() const; private: enum OutputType { OUTPUT_ECLIPSE, OUTPUT_JUNIT }; int ac_; const char** av_; bool verbose_; bool runTestsAsSeperateProcess_; int repeat_; TestFilter groupFilter_; TestFilter nameFilter_; OutputType outputType_; SimpleString getParameterField(int ac, const char** av, int& i, const SimpleString& parameterName); void SetRepeatCount(int ac, const char** av, int& index); void SetGroupFilter(int ac, const char** av, int& index); void SetStrictGroupFilter(int ac, const char** av, int& index); void SetNameFilter(int ac, const char** av, int& index); void SetStrictNameFilter(int ac, const char** av, int& index); void SetTestToRunBasedOnVerboseOutput(int ac, const char** av, int& index, const char* parameterName); bool SetOutputType(int ac, const char** av, int& index); CommandLineArguments(const CommandLineArguments&); CommandLineArguments& operator=(const CommandLineArguments&); }; #endif cpputest-3.4/include/CppUTest/PlatformSpecificFunctions.h0000664000175300017530000000406312066727207020622 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef PLATFORMSPECIFICFUNCTIONS_H_ #define PLATFORMSPECIFICFUNCTIONS_H_ #include "CppUTest/TestOutput.h" TestOutput::WorkingEnvironment PlatformSpecificGetWorkingEnvironment(); void PlatformSpecificRunTestInASeperateProcess(UtestShell* shell, TestPlugin* plugin, TestResult* result); /* Platform specific interface we use in order to minimize dependencies with LibC. * This enables porting to different embedded platforms. * */ #include "CppUTest/PlatformSpecificFunctions_c.h" #endif cpputest-3.4/include/CppUTest/TestMemoryAllocator.h0000664000175300017530000000721012066727207017445 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef D_TestMemoryAllocator_h #define D_TestMemoryAllocator_h struct MemoryLeakNode; class TestMemoryAllocator; extern void setCurrentNewAllocator(TestMemoryAllocator* allocator); extern TestMemoryAllocator* getCurrentNewAllocator(); extern void setCurrentNewAllocatorToDefault(); extern TestMemoryAllocator* defaultNewAllocator(); extern void setCurrentNewArrayAllocator(TestMemoryAllocator* allocator); extern TestMemoryAllocator* getCurrentNewArrayAllocator(); extern void setCurrentNewArrayAllocatorToDefault(); extern TestMemoryAllocator* defaultNewArrayAllocator(); extern void setCurrentMallocAllocator(TestMemoryAllocator* allocator); extern TestMemoryAllocator* getCurrentMallocAllocator(); extern void setCurrentMallocAllocatorToDefault(); extern TestMemoryAllocator* defaultMallocAllocator(); class TestMemoryAllocator { public: TestMemoryAllocator(const char* name_str = "generic", const char* alloc_name_str = "alloc", const char* free_name_str = "free"); virtual ~TestMemoryAllocator(); bool hasBeenDestroyed(); virtual char* alloc_memory(size_t size, const char* file, int line); virtual void free_memory(char* memory, const char* file, int line); virtual const char* name(); virtual const char* alloc_name(); virtual const char* free_name(); virtual bool isOfEqualType(TestMemoryAllocator* allocator); virtual char* allocMemoryLeakNode(size_t size); virtual void freeMemoryLeakNode(char* memory); protected: const char* name_; const char* alloc_name_; const char* free_name_; bool hasBeenDestroyed_; }; class CrashOnAllocationAllocator : public TestMemoryAllocator { unsigned allocationToCrashOn_; public: CrashOnAllocationAllocator(); virtual void setNumberToCrashOn(unsigned allocationToCrashOn); virtual char* alloc_memory(size_t size, const char* file, int line); }; class NullUnknownAllocator: public TestMemoryAllocator { public: NullUnknownAllocator(); virtual char* alloc_memory(size_t size, const char* file, int line); virtual void free_memory(char* memory, const char* file, int line); static TestMemoryAllocator* defaultAllocator(); }; #endif cpputest-3.4/include/CppUTest/CommandLineTestRunner.h0000644000175300017530000000502012134163705017700 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef D_CommandLineTestRunner_H #define D_CommandLineTestRunner_H #include "TestHarness.h" #include "TestOutput.h" #include "CommandLineArguments.h" #include "TestFilter.h" class JUnitTestOutput; class TestRegistry; #define DEF_PLUGIN_MEM_LEAK "MemoryLeakPlugin" #define DEF_PLUGIN_SET_POINTER "SetPointerPlugin" class CommandLineTestRunner { public: enum OutputType { OUTPUT_NORMAL, OUTPUT_JUNIT }; static int RunAllTests(int ac, const char** av); static int RunAllTests(int ac, char** av); CommandLineTestRunner(int ac, const char** av, TestOutput*, TestRegistry* registry); virtual ~CommandLineTestRunner(); int runAllTestsMain(); private: TestOutput* output_; JUnitTestOutput* jUnitOutput_; CommandLineArguments* arguments_; TestRegistry* registry_; bool parseArguments(TestPlugin*); int runAllTests(); void initializeTestRun(); bool isVerbose(); int getRepeatCount(); TestFilter getGroupFilter(); TestFilter getNameFilter(); }; #endif cpputest-3.4/include/CppUTest/PlatformSpecificFunctions_c.h0000664000175300017530000000756012066727207021131 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /****************************************************************************** * * PlatformSpecificFunctions_c.H * * Provides an interface for when working with pure C * *******************************************************************************/ #ifndef PLATFORMSPECIFICFUNCTIONS_C_H_ #define PLATFORMSPECIFICFUNCTIONS_C_H_ #ifdef __cplusplus extern "C" { #endif /* Jumping operations. They manage their own jump buffers */ int PlatformSpecificSetJmp(void (*function) (void*), void* data); void PlatformSpecificLongJmp(void); void PlatformSpecificRestoreJumpBuffer(void); /* Time operations */ long GetPlatformSpecificTimeInMillis(void); void SetPlatformSpecificTimeInMillisMethod(long(*platformSpecific)(void)); const char* GetPlatformSpecificTimeString(void); void SetPlatformSpecificTimeStringMethod(const char* (*platformMethod)(void)); /* String operations */ int PlatformSpecificAtoI(const char*str); size_t PlatformSpecificStrLen(const char* str); char* PlatformSpecificStrCat(char* s1, const char* s2); char* PlatformSpecificStrCpy(char* s1, const char* s2); char* PlatformSpecificStrNCpy(char* s1, const char* s2, size_t size); int PlatformSpecificStrCmp(const char* s1, const char* s2); int PlatformSpecificStrNCmp(const char* s1, const char* s2, size_t size); char* PlatformSpecificStrStr(const char* s1, const char* s2); int PlatformSpecificVSNprintf(char *str, size_t size, const char* format, va_list va_args_list); char PlatformSpecificToLower(char c); /* Misc */ double PlatformSpecificFabs(double d); int PlatformSpecificIsNan(double d); int PlatformSpecificAtExit(void(*func)(void)); /* IO operations */ typedef void* PlatformSpecificFile; PlatformSpecificFile PlatformSpecificFOpen(const char* filename, const char* flag); void PlatformSpecificFPuts(const char* str, PlatformSpecificFile file); void PlatformSpecificFClose(PlatformSpecificFile file); int PlatformSpecificPutchar(int c); void PlatformSpecificFlush(void); /* Dynamic Memory operations */ void* PlatformSpecificMalloc(size_t size); void* PlatformSpecificRealloc(void* memory, size_t size); void PlatformSpecificFree(void* memory); void* PlatformSpecificMemCpy(void* s1, const void* s2, size_t size); void* PlatformSpecificMemset(void* mem, int c, size_t size); #ifdef __cplusplus } #endif #endif /* PLATFORMSPECIFICFUNCTIONS_C_H_ */ cpputest-3.4/include/CppUTest/TestOutput.h0000644000175300017530000001177112134163705015632 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef D_TestOutput_h #define D_TestOutput_h /////////////////////////////////////////////////////////////////////////////// // // This is a minimal printer inteface. // We kept streams out too keep footprint small, and so the test // harness could be used with less capable compilers so more // platforms could use this test harness // /////////////////////////////////////////////////////////////////////////////// class UtestShell; class TestFailure; class TestResult; class TestOutput { public: explicit TestOutput(); virtual ~TestOutput(); virtual void printTestsStarted(); virtual void printTestsEnded(const TestResult& result); virtual void printCurrentTestStarted(const UtestShell& test); virtual void printCurrentTestEnded(const TestResult& res); virtual void printCurrentGroupStarted(const UtestShell& test); virtual void printCurrentGroupEnded(const TestResult& res); virtual void verbose(); virtual void printBuffer(const char*)=0; virtual void print(const char*); virtual void print(long); virtual void printDouble(double); virtual void printHex(long); virtual void print(const TestFailure& failure); virtual void printTestRun(int number, int total); virtual void setProgressIndicator(const char*); virtual void flush(); enum WorkingEnvironment {vistualStudio, eclipse, detectEnvironment}; static void setWorkingEnvironment(WorkingEnvironment workEnvironment); static WorkingEnvironment getWorkingEnvironment(); protected: virtual void printEclipseErrorInFileOnLine(SimpleString file, int lineNumber); virtual void printVistualStudioErrorInFileOnLine(SimpleString file, int lineNumber); virtual void printProgressIndicator(); void printFileAndLineForTestAndFailure(const TestFailure& failure); void printFileAndLineForFailure(const TestFailure& failure); void printFailureInTest(SimpleString testName); void printFailureMessage(SimpleString reason); void printErrorInFileOnLineFormattedForWorkingEnvironment(SimpleString testFile, int lineNumber); TestOutput(const TestOutput&); TestOutput& operator=(const TestOutput&); int dotCount_; bool verbose_; const char* progressIndication_; static WorkingEnvironment workingEnvironment_; }; TestOutput& operator<<(TestOutput&, const char*); TestOutput& operator<<(TestOutput&, long); /////////////////////////////////////////////////////////////////////////////// // // ConsoleTestOutput.h // // Printf Based Solution // /////////////////////////////////////////////////////////////////////////////// class ConsoleTestOutput: public TestOutput { public: explicit ConsoleTestOutput() { } virtual ~ConsoleTestOutput() { } virtual void printBuffer(const char* s); virtual void flush(); private: ConsoleTestOutput(const ConsoleTestOutput&); ConsoleTestOutput& operator=(const ConsoleTestOutput&); }; /////////////////////////////////////////////////////////////////////////////// // // StringBufferTestOutput.h // // TestOutput for test purposes // /////////////////////////////////////////////////////////////////////////////// class StringBufferTestOutput: public TestOutput { public: explicit StringBufferTestOutput() { } virtual ~StringBufferTestOutput(); void printBuffer(const char* s) { output += s; } void flush() { output = ""; } const SimpleString& getOutput() { return output; } private: SimpleString output; StringBufferTestOutput(const StringBufferTestOutput&); StringBufferTestOutput& operator=(const StringBufferTestOutput&); }; #endif cpputest-3.4/include/CppUTest/CppUTestConfig.h0000644000175300017530000000740112134163705016322 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef CPPUTESTCONFIG_H_ #define CPPUTESTCONFIG_H_ #ifdef HAVE_CONFIG_H #include "config.h" #endif /* * This file is added for some specific CppUTest configurations that earlier were spread out into multiple files. * * The goal of this file is to stay really small and not to include other things, but mainly to remove duplication * from other files and resolve dependencies in #includes. * */ /* * Lib C dependencies that are currently still left: * * stdarg.h -> We use formatting functions and va_list requires to include stdarg.h in SimpleString * stdlib.h -> The TestHarness_c.h includes this to try to avoid conflicts in its malloc #define. This dependency can * easily be removed by not enabling the MALLOC overrides. * * Lib C++ dependencies are all under the CPPUTEST_USE_STD_CPP_LIB. * The only dependency is to which has the bad_alloc struct * */ /* Do we use Standard C or not? When doing Kernel development, standard C usage is out. */ #ifndef CPPUTEST_USE_STD_C_LIB #ifdef CPPUTEST_STD_C_LIB_DISABLED #define CPPUTEST_USE_STD_C_LIB 0 #else #define CPPUTEST_USE_STD_C_LIB 1 #endif #endif /* Do we use Standard C++ or not? */ #ifndef CPPUTEST_USE_STD_CPP_LIB #ifdef CPPUTEST_STD_CPP_LIB_DISABLED #define CPPUTEST_USE_STD_CPP_LIB 0 #else #define CPPUTEST_USE_STD_CPP_LIB 1 #endif #endif /* Is memory leak detection enabled? * Controls the override of the global operator new/deleted and malloc/free. * Without this, there will be no memory leak detection in C/C++. */ #ifndef CPPUTEST_USE_MEM_LEAK_DETECTION #ifdef CPPUTEST_MEM_LEAK_DETECTION_DISABLED #define CPPUTEST_USE_MEM_LEAK_DETECTION 0 #else #define CPPUTEST_USE_MEM_LEAK_DETECTION 1 #endif #endif /* Create a __no_return__ macro, which is used to flag a function as not returning. * Used for functions that always throws for instance. * * This is needed for compiling with clang, without breaking other compilers. */ #ifndef __has_attribute #define __has_attribute(x) 0 #endif #if __has_attribute(noreturn) #define __no_return__ __attribute__((noreturn)) #else #define __no_return__ #endif /* Should be the only #include here. Standard C library wrappers */ #include "StandardCLibrary.h" #endif cpputest-3.4/include/CppUTest/SimpleString.h0000644000175300017530000001204412143637532016110 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /////////////////////////////////////////////////////////////////////////////// // // SIMPLESTRING.H // // One of the design goals of CppUnitLite is to compilation with very old C++ // compilers. For that reason, the simple string class that provides // only the operations needed in CppUnitLite. // /////////////////////////////////////////////////////////////////////////////// #ifndef D_SimpleString_h #define D_SimpleString_h #include "StandardCLibrary.h" class SimpleStringCollection; class TestMemoryAllocator; class SimpleString { friend bool operator==(const SimpleString& left, const SimpleString& right); friend bool operator!=(const SimpleString& left, const SimpleString& right); public: SimpleString(const char *value = ""); SimpleString(const char *value, size_t repeatCount); SimpleString(const SimpleString& other); ~SimpleString(); SimpleString& operator=(const SimpleString& other); SimpleString operator+(const SimpleString&); SimpleString& operator+=(const SimpleString&); SimpleString& operator+=(const char*); char at(int pos) const; int find(char ch) const; int findFrom(size_t starting_position, char ch) const; bool contains(const SimpleString& other) const; bool containsNoCase(const SimpleString& other) const; bool startsWith(const SimpleString& other) const; bool endsWith(const SimpleString& other) const; void split(const SimpleString& split, SimpleStringCollection& outCollection) const; bool equalsNoCase(const SimpleString& str) const; size_t count(const SimpleString& str) const; void replace(char to, char with); void replace(const char* to, const char* with); SimpleString toLower() const; SimpleString subString(size_t beginPos, size_t amount) const; SimpleString subStringFromTill(char startChar, char lastExcludedChar) const; void copyToBuffer(char* buffer, size_t bufferSize) const; const char *asCharString() const; size_t size() const; bool isEmpty() const; static void padStringsToSameLength(SimpleString& str1, SimpleString& str2, char ch); static TestMemoryAllocator* getStringAllocator(); static void setStringAllocator(TestMemoryAllocator* allocator); static char* allocStringBuffer(size_t size); static void deallocStringBuffer(char* str); private: char *buffer_; static TestMemoryAllocator* stringAllocator_; char* getEmptyString() const; }; class SimpleStringCollection { public: SimpleStringCollection(); ~SimpleStringCollection(); void allocate(size_t size); size_t size() const; SimpleString& operator[](size_t index); private: SimpleString* collection_; SimpleString empty_; size_t size_; void operator =(SimpleStringCollection&); SimpleStringCollection(SimpleStringCollection&); }; SimpleString StringFrom(bool value); SimpleString StringFrom(const void* value); SimpleString StringFrom(char value); SimpleString StringFrom(const char *value); SimpleString StringFromOrNull(const char * value); SimpleString StringFrom(long value); SimpleString StringFrom(int value); SimpleString HexStringFrom(long value); SimpleString StringFrom(double value, int precision = 6); SimpleString StringFrom(const SimpleString& other); SimpleString StringFromFormat(const char* format, ...); SimpleString VStringFromFormat(const char* format, va_list args); #if CPPUTEST_USE_STD_CPP_LIB #include #include SimpleString StringFrom(const std::string& other); SimpleString StringFrom(unsigned long); SimpleString StringFrom(uint32_t); SimpleString StringFrom(uint16_t); SimpleString StringFrom(uint8_t); #endif #endif cpputest-3.4/include/CppUTest/TestPlugin.h0000664000175300017530000000703612066727207015600 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef D_TestPlugin_h #define D_TestPlugin_h class UtestShell; class TestResult; class TestPlugin { public: TestPlugin(const SimpleString& name); virtual ~TestPlugin(); virtual void preTestAction(UtestShell&, TestResult&) { } virtual void postTestAction(UtestShell&, TestResult&) { } virtual bool parseArguments(int /* ac */, const char** /* av */, int /* index */ ) { return false; } virtual void runAllPreTestAction(UtestShell&, TestResult&); virtual void runAllPostTestAction(UtestShell&, TestResult&); virtual bool parseAllArguments(int ac, const char** av, int index); virtual bool parseAllArguments(int ac, char** av, int index); virtual TestPlugin* addPlugin(TestPlugin*); virtual TestPlugin* removePluginByName(const SimpleString& name); virtual TestPlugin* getNext(); virtual void disable(); virtual void enable(); virtual bool isEnabled(); const SimpleString& getName(); TestPlugin* getPluginByName(const SimpleString& name); protected: TestPlugin(TestPlugin* next_); private: TestPlugin* next_; SimpleString name_; bool enabled_; }; /////////////////////////////////////////////////////////////////////////////// // // SetPointerPlugin // // This is a very small plugin_ that resets pointers to their original value. // /////////////////////////////////////////////////////////////////////////////// extern void CppUTestStore(void **location); class SetPointerPlugin: public TestPlugin { public: SetPointerPlugin(const SimpleString& name); virtual ~SetPointerPlugin(); virtual void postTestAction(UtestShell&, TestResult&); enum { MAX_SET = 1024 }; }; #define UT_PTR_SET(a, b) { CppUTestStore( (void**)&a ); a = b; } ///////////// Null Plugin class NullTestPlugin: public TestPlugin { public: NullTestPlugin(); virtual ~NullTestPlugin() { } virtual void runAllPreTestAction(UtestShell& test, TestResult& result); virtual void runAllPostTestAction(UtestShell& test, TestResult& result); static NullTestPlugin* instance(); }; #endif cpputest-3.4/include/CppUTest/JUnitTestOutput.h0000644000175300017530000000572312023251675016605 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef D_JUnitTestOutput_h #define D_JUnitTestOutput_h #include "TestOutput.h" #include "SimpleString.h" struct JUnitTestOutputImpl; struct JUnitTestCaseResultNode; class JUnitTestOutput: public TestOutput { public: JUnitTestOutput(); virtual ~JUnitTestOutput(); virtual void printTestsStarted(); virtual void printTestsEnded(const TestResult& result); virtual void printCurrentTestStarted(const UtestShell& test); virtual void printCurrentTestEnded(const TestResult& res); virtual void printCurrentGroupStarted(const UtestShell& test); virtual void printCurrentGroupEnded(const TestResult& res); virtual void verbose(); virtual void printBuffer(const char*); virtual void print(const char*); virtual void print(long); virtual void print(const TestFailure& failure); virtual void printTestRun(int number, int total); virtual void flush(); virtual SimpleString createFileName(const SimpleString& group); protected: JUnitTestOutputImpl* impl_; void resetTestGroupResult(); virtual void openFileForWrite(const SimpleString& fileName); virtual void writeTestGroupToFile(); virtual void writeToFile(const SimpleString& buffer); virtual void closeFile(); virtual void writeXmlHeader(); virtual void writeTestSuiteSummery(); virtual void writeProperties(); virtual void writeTestCases(); virtual void writeFailure(JUnitTestCaseResultNode* node); virtual void writeFileEnding(); }; #endif cpputest-3.4/include/CppUTest/StandardCLibrary.h0000664000175300017530000000257412066727207016674 00000000000000 #ifndef STANDARDCLIBRARY_H_ #define STANDARDCLIBRARY_H_ #include "CppUTestConfig.h" #if CPPUTEST_USE_STD_C_LIB /* Needed for size_t */ #include /* Sometimes the C++ library does an #undef in stdlib of malloc and free. We want to prevent that */ #ifdef __cplusplus #if CPPUTEST_USE_STD_CPP_LIB #include #endif #endif /* Needed for malloc */ #include /* Needed for ... */ #include #else #ifdef __KERNEL__ /* Unfinished and not working! Hacking hacking hacking. Why bother make the header files C++ safe! */ #define false kernel_false #define true kernel_true #define bool kernel_bool #define new kernel_new #define _Bool int #include #include #undef false #undef true #undef bool #undef new #else /* * #warning "These definitions in StandardCLibrary.h are pure (educated, from linux kernel) guesses at the moment. Replace with your platform includes." * Not on as warning are as errors :P */ #ifdef __SIZE_TYPE__ typedef __SIZE_TYPE__ size_t; #else typedef unsigned int size_t; #endif typedef char* va_list; #define NULL (0) extern void* malloc(size_t); extern void free(void *); #define _bnd(X, bnd) (((sizeof (X)) + (bnd)) & (~(bnd))) #define va_start(ap, A) (void) ((ap) = (((char *) &(A)) + (_bnd (A,sizeof(int)-1)))) #define va_end(ap) (void) 0 #endif #endif #endif cpputest-3.4/include/CppUTest/TestRegistry.h0000644000175300017530000000627612134163705016146 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /////////////////////////////////////////////////////////////////////////////// // // TestRegistry is a collection of tests that can be run // #ifndef D_TestRegistry_h #define D_TestRegistry_h #include "SimpleString.h" #include "TestFilter.h" class UtestShell; class TestResult; class TestPlugin; class TestRegistry { public: TestRegistry(); virtual ~TestRegistry(); virtual void addTest(UtestShell *test); virtual void unDoLastAddTest(); virtual int countTests(); virtual void runAllTests(TestResult& result); virtual void nameFilter(const TestFilter& filter); virtual void groupFilter(const TestFilter& filter); virtual void installPlugin(TestPlugin* plugin); virtual void resetPlugins(); virtual TestPlugin* getFirstPlugin(); virtual TestPlugin* getPluginByName(const SimpleString& name); virtual void removePluginByName(const SimpleString& name); virtual int countPlugins(); TestFilter getGroupFilter(); TestFilter getNameFilter(); virtual UtestShell* getFirstTest(); virtual UtestShell* getLastTest(); virtual UtestShell* getTestWithNext(UtestShell* test); virtual UtestShell* findTestWithName(const SimpleString& name); virtual UtestShell* findTestWithGroup(const SimpleString& name); static TestRegistry* getCurrentRegistry(); virtual void setCurrentRegistry(TestRegistry* registry); virtual void setRunTestsInSeperateProcess(); private: bool testShouldRun(UtestShell* test, TestResult& result); bool endOfGroup(UtestShell* test); UtestShell * tests_; TestFilter nameFilter_; TestFilter groupFilter_; TestPlugin* firstPlugin_; static TestRegistry* currentRegistry_; bool runInSeperateProcess_; }; #endif cpputest-3.4/include/CppUTest/MemoryLeakDetector.h0000644000175300017530000001761112134163705017230 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef D_MemoryLeakDetector_h #define D_MemoryLeakDetector_h #define MEM_LEAK_NONE "No memory leaks were detected." #define MEM_LEAK_HEADER "Memory leak(s) found.\n" #define MEM_LEAK_LEAK "Alloc num (%u) Leak size: %d Allocated at: %s and line: %d. Type: \"%s\"\n\t Memory: <%p> Content: \"%.15s\"\n" #define MEM_LEAK_TOO_MUCH "\netc etc etc etc. !!!! Too much memory leaks to report. Bailing out\n" #define MEM_LEAK_FOOTER "Total number of leaks: " #define MEM_LEAK_ADDITION_MALLOC_WARNING "NOTE:\n" \ "\tMemory leak reports about malloc and free can be caused by allocating using the cpputest version of malloc,\n" \ "\tbut deallocate using the standard free.\n" \ "\tIf this is the case, check whether your malloc/free replacements are working (#define malloc cpputest_malloc etc).\n" #define MEM_LEAK_NORMAL_FOOTER_SIZE (sizeof(MEM_LEAK_FOOTER) + 10 + sizeof(MEM_LEAK_TOO_MUCH)) /* the number of leaks */ #define MEM_LEAK_NORMAL_MALLOC_FOOTER_SIZE (MEM_LEAK_NORMAL_FOOTER_SIZE + sizeof(MEM_LEAK_ADDITION_MALLOC_WARNING)) #define MEM_LEAK_ALLOC_DEALLOC_MISMATCH "Allocation/deallocation type mismatch\n" #define MEM_LEAK_MEMORY_CORRUPTION "Memory corruption (written out of bounds?)\n" #define MEM_LEAK_ALLOC_LOCATION " allocated at file: %s line: %d size: %d type: %s\n" #define MEM_LEAK_DEALLOC_LOCATION " deallocated at file: %s line: %d type: %s\n" #define MEM_LEAK_DEALLOC_NON_ALLOCATED "Deallocating non-allocated memory\n" enum MemLeakPeriod { mem_leak_period_all, mem_leak_period_disabled, mem_leak_period_enabled, mem_leak_period_checking }; class TestMemoryAllocator; class MemoryLeakFailure { public: virtual ~MemoryLeakFailure() { } virtual void fail(char* fail_string)=0; }; struct SimpleStringBuffer { enum { SIMPLE_STRING_BUFFER_LEN = 4096 }; SimpleStringBuffer(); void clear(); void add(const char* format, ...); char* toString(); void setWriteLimit(int write_limit); void resetWriteLimit(); bool reachedItsCapacity(); private: char buffer_[SIMPLE_STRING_BUFFER_LEN]; int positions_filled_; int write_limit_; }; struct MemoryLeakDetectorNode { MemoryLeakDetectorNode() : size_(0), next_(0) { } void init(char* memory, unsigned number, size_t size, TestMemoryAllocator* allocator, MemLeakPeriod period, const char* file, int line); size_t size_; unsigned number_; char* memory_; const char* file_; int line_; TestMemoryAllocator* allocator_; MemLeakPeriod period_; private: friend struct MemoryLeakDetectorList; MemoryLeakDetectorNode* next_; }; struct MemoryLeakDetectorList { MemoryLeakDetectorList() : head_(0) {} void addNewNode(MemoryLeakDetectorNode* node); MemoryLeakDetectorNode* retrieveNode(char* memory); MemoryLeakDetectorNode* removeNode(char* memory); MemoryLeakDetectorNode* getFirstLeak(MemLeakPeriod period); MemoryLeakDetectorNode* getNextLeak(MemoryLeakDetectorNode* node, MemLeakPeriod period); MemoryLeakDetectorNode* getLeakFrom(MemoryLeakDetectorNode* node, MemLeakPeriod period); int getTotalLeaks(MemLeakPeriod period); bool hasLeaks(MemLeakPeriod period); void clearAllAccounting(MemLeakPeriod period); bool isInPeriod(MemoryLeakDetectorNode* node, MemLeakPeriod period); private: MemoryLeakDetectorNode* head_; }; struct MemoryLeakDetectorTable { void clearAllAccounting(MemLeakPeriod period); void addNewNode(MemoryLeakDetectorNode* node); MemoryLeakDetectorNode* retrieveNode(char* memory); MemoryLeakDetectorNode* removeNode(char* memory); bool hasLeaks(MemLeakPeriod period); int getTotalLeaks(MemLeakPeriod period); MemoryLeakDetectorNode* getFirstLeak(MemLeakPeriod period); MemoryLeakDetectorNode* getNextLeak(MemoryLeakDetectorNode* leak, MemLeakPeriod period); private: unsigned long hash(char* memory); enum { hash_prime = MEMORY_LEAK_HASH_TABLE_SIZE }; MemoryLeakDetectorList table_[hash_prime]; }; class MemoryLeakDetector { public: MemoryLeakDetector(MemoryLeakFailure* reporter); virtual ~MemoryLeakDetector() { } void enable(); void disable(); void disableAllocationTypeChecking(); void enableAllocationTypeChecking(); void startChecking(); void stopChecking(); const char* report(MemLeakPeriod period); void markCheckingPeriodLeaksAsNonCheckingPeriod(); int totalMemoryLeaks(MemLeakPeriod period); void clearAllAccounting(MemLeakPeriod period); char* allocMemory(TestMemoryAllocator* allocator, size_t size, bool allocatNodesSeperately = false); char* allocMemory(TestMemoryAllocator* allocator, size_t size, const char* file, int line, bool allocatNodesSeperately = false); void deallocMemory(TestMemoryAllocator* allocator, void* memory, bool allocatNodesSeperately = false); void deallocMemory(TestMemoryAllocator* allocator, void* memory, const char* file, int line, bool allocatNodesSeperately = false); char* reallocMemory(TestMemoryAllocator* allocator, char* memory, size_t size, const char* file, int line, bool allocatNodesSeperately = false); void invalidateMemory(char* memory); void removeMemoryLeakInformationWithoutCheckingOrDeallocating(void* memory); enum { memory_corruption_buffer_size = 3 }; unsigned getCurrentAllocationNumber(); private: MemoryLeakFailure* reporter_; MemLeakPeriod current_period_; SimpleStringBuffer output_buffer_; MemoryLeakDetectorTable memoryTable_; bool doAllocationTypeChecking_; unsigned allocationSequenceNumber_; bool validMemoryCorruptionInformation(char* memory); bool matchingAllocation(TestMemoryAllocator *alloc_allocator, TestMemoryAllocator *free_allocator); void storeLeakInformation(MemoryLeakDetectorNode * node, char *new_memory, size_t size, TestMemoryAllocator *allocator, const char *file, int line); void ConstructMemoryLeakReport(MemLeakPeriod period); void reportFailure(const char* message, const char* allocFile, int allocLine, size_t allocSize, TestMemoryAllocator* allocAllocator, const char* freeFile, int freeLine, TestMemoryAllocator* freeAllocator); size_t sizeOfMemoryWithCorruptionInfo(size_t size); MemoryLeakDetectorNode* getNodeFromMemoryPointer(char* memory, size_t size); char* reallocateMemoryAndLeakInformation(TestMemoryAllocator* allocator, char* memory, size_t size, const char* file, int line); void addMemoryCorruptionInformation(char* memory); void checkForCorruption(MemoryLeakDetectorNode* node, const char* file, int line, TestMemoryAllocator* allocator, bool allocateNodesSeperately); }; #endif cpputest-3.4/include/CppUTest/TestFailure.h0000664000175300017530000001132012066727207015720 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /////////////////////////////////////////////////////////////////////////////// // // Failure is a class which holds information for a specific // test failure. It can be overriden for more complex failure messages // /////////////////////////////////////////////////////////////////////////////// #ifndef D_TestFailure_H #define D_TestFailure_H #include "SimpleString.h" class UtestShell; class TestOutput; class TestFailure { public: TestFailure(UtestShell*, const char* fileName, int lineNumber, const SimpleString& theMessage); TestFailure(UtestShell*, const SimpleString& theMessage); TestFailure(UtestShell*, const char* fileName, int lineNumber); TestFailure(const TestFailure&); virtual ~TestFailure(); virtual SimpleString getFileName() const; virtual SimpleString getTestName() const; virtual int getFailureLineNumber() const; virtual SimpleString getMessage() const; virtual SimpleString getTestFileName() const; virtual int getTestLineNumber() const; bool isOutsideTestFile() const; bool isInHelperFunction() const; protected: SimpleString createButWasString(const SimpleString& expected, const SimpleString& actual); SimpleString createDifferenceAtPosString(const SimpleString& actual, size_t position); SimpleString testName_; SimpleString fileName_; int lineNumber_; SimpleString testFileName_; int testLineNumber_; SimpleString message_; TestFailure& operator=(const TestFailure&); }; class EqualsFailure: public TestFailure { public: EqualsFailure(UtestShell*, const char* fileName, int lineNumber, const char* expected, const char* actual); EqualsFailure(UtestShell*, const char* fileName, int lineNumber, const SimpleString& expected, const SimpleString& actual); }; class DoublesEqualFailure: public TestFailure { public: DoublesEqualFailure(UtestShell*, const char* fileName, int lineNumber, double expected, double actual, double threshold); }; class CheckEqualFailure : public TestFailure { public: CheckEqualFailure(UtestShell* test, const char* fileName, int lineNumber, const SimpleString& expected, const SimpleString& actual); }; class ContainsFailure: public TestFailure { public: ContainsFailure(UtestShell*, const char* fileName, int lineNumber, const SimpleString& expected, const SimpleString& actual); }; class CheckFailure : public TestFailure { public: CheckFailure(UtestShell* test, const char* fileName, int lineNumber, const SimpleString& checkString, const SimpleString& conditionString, const SimpleString& textString = ""); }; class FailFailure : public TestFailure { public: FailFailure(UtestShell* test, const char* fileName, int lineNumber, const SimpleString& message); }; class LongsEqualFailure : public TestFailure { public: LongsEqualFailure(UtestShell* test, const char* fileName, int lineNumber, long expected, long actual); }; class StringEqualFailure : public TestFailure { public: StringEqualFailure(UtestShell* test, const char* fileName, int lineNumber, const char* expected, const char* actual); }; class StringEqualNoCaseFailure : public TestFailure { public: StringEqualNoCaseFailure(UtestShell* test, const char* fileName, int lineNumber, const char* expected, const char* actual); }; #endif cpputest-3.4/include/CppUTest/TestResult.h0000664000175300017530000000655412066727207015624 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /////////////////////////////////////////////////////////////////////////////// // // A TestResult is a collection of the history of some test runs. Right now // it just collects failures. Really it just prints the failures. // #ifndef D_TestResult_h #define D_TestResult_h class TestFailure; class TestOutput; class UtestShell; class TestResult { public: TestResult(TestOutput&); virtual ~TestResult(); virtual void testsStarted(); virtual void testsEnded(); virtual void currentGroupStarted(UtestShell* test); virtual void currentGroupEnded(UtestShell* test); virtual void currentTestStarted(UtestShell* test); virtual void currentTestEnded(UtestShell* test); virtual void countTest(); virtual void countRun(); virtual void countCheck(); virtual void countFilteredOut(); virtual void countIgnored(); virtual void addFailure(const TestFailure& failure); virtual void print(const char* text); virtual void setProgressIndicator(const char*); int getTestCount() const { return testCount_; } int getRunCount() const { return runCount_; } int getCheckCount() const { return checkCount_; } int getFilteredOutCount() const { return filteredOutCount_; } int getIgnoredCount() const { return ignoredCount_; } int getFailureCount() const { return failureCount_; } long getTotalExecutionTime() const; void setTotalExecutionTime(long exTime); long getCurrentTestTotalExecutionTime() const; long getCurrentGroupTotalExecutionTime() const; private: TestOutput& output_; int testCount_; int runCount_; int checkCount_; int failureCount_; int filteredOutCount_; int ignoredCount_; long totalExecutionTime_; long timeStarted_; long currentTestTimeStarted_; long currentTestTotalExecutionTime_; long currentGroupTimeStarted_; long currentGroupTotalExecutionTime_; }; #endif cpputest-3.4/include/CppUTest/MemoryLeakDetectorMallocMacros.h0000664000175300017530000000370512066727207021535 00000000000000 /* * This file can be used to get extra debugging information about memory leaks in your production code. * It defines a preprocessor macro for malloc. This will pass additional information to the * malloc and this will give the line/file information of the memory leaks in your code. * * You can use this by including this file to all your production code. When using gcc, you can use * the -include file to do this for you. * */ #include "CppUTestConfig.h" #if CPPUTEST_USE_MEM_LEAK_DETECTION /* This prevents the declaration from done twice and makes sure the file only #defines malloc, so it can be included anywhere */ #ifndef CPPUTEST_USE_MALLOC_MACROS #ifdef __cplusplus extern "C" { #endif extern void* cpputest_malloc_location(size_t size, const char* file, int line); extern void* cpputest_calloc_location(size_t count, size_t size, const char* file, int line); extern void* cpputest_realloc_location(void *, size_t, const char* file, int line); extern void cpputest_free_location(void* buffer, const char* file, int line); #ifdef __cplusplus } #endif extern void crash_on_allocation_number(unsigned number); #endif /* NOTE on strdup! * * strdup was implemented earlier, however it is *not* an Standard C function but a POSIX function. * Because of that, it can lead to portability issues by providing more than is available on the local platform. * For that reason, strdup is *not* implemented as a macro. If you still want to use it, an easy implementation would be: * * size_t length = 1 + strlen(str); * char* result = (char*) cpputest_malloc_location(length, file, line); * memcpy(result, str, length); * return result; * */ #define malloc(a) cpputest_malloc_location(a, __FILE__, __LINE__) #define calloc(a, b) cpputest_calloc_location(a, b, __FILE__, __LINE__) #define realloc(a, b) cpputest_realloc_location(a, b, __FILE__, __LINE__) #define free(a) cpputest_free_location(a, __FILE__, __LINE__) #define CPPUTEST_USE_MALLOC_MACROS 1 #endif cpputest-3.4/include/CppUTest/TestFilter.h0000644000175300017530000000410512023251675015551 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef TESTFILTER_H_ #define TESTFILTER_H_ #include "SimpleString.h" class TestFilter { public: TestFilter(); TestFilter(const char* filter); TestFilter(const SimpleString& filter); bool match(const SimpleString& name) const; void strictMatching(); bool operator==(const TestFilter& filter) const; bool operator!=(const TestFilter& filter) const; SimpleString asString() const; private: SimpleString filter_; bool strictMatching_; }; SimpleString StringFrom(const TestFilter& filter); #endif cpputest-3.4/include/CppUTest/TestTestingFixture.h0000644000175300017530000000562012134163705017312 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef D_TestTestingFixture_H #define D_TestTestingFixture_H #include "TestRegistry.h" class TestTestingFixture { public: TestTestingFixture() { output_ = new StringBufferTestOutput(); result_ = new TestResult(*output_); genTest_ = new ExecFunctionTestShell(); registry_ = new TestRegistry(); registry_->setCurrentRegistry(registry_); registry_->addTest(genTest_); } virtual ~TestTestingFixture() { registry_->setCurrentRegistry(0); delete registry_; delete result_; delete output_; delete genTest_; } void setTestFunction(void(*testFunction)()) { genTest_->testFunction_ = testFunction; } void setSetup(void(*setupFunction)()) { genTest_->setup_ = setupFunction; } void setTeardown(void(*teardownFunction)()) { genTest_->teardown_ = teardownFunction; } void runAllTests() { registry_->runAllTests(*result_); } int getFailureCount() { return result_->getFailureCount(); } void assertPrintContains(const SimpleString& contains) { assertPrintContains(output_, contains); } static void assertPrintContains(StringBufferTestOutput* output, const SimpleString& contains) { STRCMP_CONTAINS(contains.asCharString(), output->getOutput().asCharString()); } TestRegistry* registry_; ExecFunctionTestShell* genTest_; StringBufferTestOutput* output_; TestResult * result_; }; #endif cpputest-3.4/include/CppUTest/MemoryLeakDetectorNewMacros.h0000664000175300017530000000411512066727207021053 00000000000000 /* * This file can be used to get extra debugging information about memory leaks in your production code. * It defines a preprocessor macro for operator new. This will pass additional information to the * operator new and this will give the line/file information of the memory leaks in your code. * * You can use this by including this file to all your production code. When using gcc, you can use * the -include file to do this for you. * * Warning: Using the new macro can cause a conflict with newly declared operator news. This can be * resolved by: * 1. #undef operator new before including this file * 2. Including the files that override operator new before this file. * This can be done by creating your own NewMacros.h file that includes your operator new overrides * and THEN this file. * * STL (or StdC++ lib) also does overrides for operator new. Therefore, you'd need to include the STL * files *before* this file too. * */ /* Warning for maintainers: * This macro code is duplicate from TestHarness.h. The reason for this is to make the two files * completely independent from each other. NewMacros file can be included in production code whereas * TestHarness.h is only included in test code. */ #include "CppUTestConfig.h" #if CPPUTEST_USE_MEM_LEAK_DETECTION /* This #ifndef prevents from being included twice and enables the file to be included anywhere */ #ifndef CPPUTEST_USE_NEW_MACROS #if CPPUTEST_USE_STD_CPP_LIB #include #include #include void* operator new(size_t size, const char* file, int line) throw (std::bad_alloc); void* operator new[](size_t size, const char* file, int line) throw (std::bad_alloc); void* operator new(size_t size) throw(std::bad_alloc); void* operator new[](size_t size) throw(std::bad_alloc); #else void* operator new(size_t size, const char* file, int line); void* operator new[](size_t size, const char* file, int line); void* operator new(size_t size); void* operator new[](size_t size); #endif #endif #define new new(__FILE__, __LINE__) #define CPPUTEST_USE_NEW_MACROS 1 #endif cpputest-3.4/include/CppUTest/TestHarness.h0000664000175300017530000000410312066727207015735 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef D_TestHarness_h #define D_TestHarness_h #include "CppUTestConfig.h" /* original value was 9973 which works well with large programs. Now set to smaller since it takes * a lot of memory in embedded apps. Change it if you experience the memory leak detector to be slow. */ #define MEMORY_LEAK_HASH_TABLE_SIZE 73 #include "Utest.h" #include "UtestMacros.h" #include "SimpleString.h" #include "TestResult.h" #include "TestFailure.h" #include "TestPlugin.h" #include "MemoryLeakWarningPlugin.h" #endif cpputest-3.4/include/CppUTest/Utest.h0000644000175300017530000001673612134163705014604 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ // This file contains the Test class along with the macros which make effective // in the harness. #ifndef D_UTest_h #define D_UTest_h #include "SimpleString.h" class TestResult; class TestPlugin; class TestFailure; class TestFilter; extern bool doubles_equal(double d1, double d2, double threshold); //////////////////// Utest class UtestShell; class Utest { public: Utest(); virtual ~Utest(); virtual void run(); virtual void setup(); virtual void teardown(); virtual void testBody(); }; //////////////////// UtestShell class UtestShell { public: UtestShell(const char* groupName, const char* testName, const char* fileName, int lineNumber); virtual ~UtestShell(); virtual void runOneTestWithPlugins(TestPlugin* plugin, TestResult& result); virtual SimpleString getFormattedName() const; virtual UtestShell* addTest(UtestShell* test); virtual UtestShell *getNext() const; virtual bool isNull() const; virtual int countTests(); bool shouldRun(const TestFilter& groupFilter, const TestFilter& nameFilter) const; const SimpleString getName() const; const SimpleString getGroup() const; const SimpleString getFile() const; int getLineNumber() const; virtual const char *getProgressIndicator() const; static TestResult *getTestResult(); static UtestShell *getCurrent(); virtual void assertTrue(bool condition, const char *checkString, const char *conditionString, const char *fileName, int lineNumber); virtual void assertTrueText(bool condition, const char *checkString, const char *conditionString, const char* text, const char *fileName, int lineNumber); virtual void assertCstrEqual(const char *expected, const char *actual, const char *fileName, int lineNumber); virtual void assertCstrNoCaseEqual(const char *expected, const char *actual, const char *fileName, int lineNumber); virtual void assertCstrContains(const char *expected, const char *actual, const char *fileName, int lineNumber); virtual void assertCstrNoCaseContains(const char *expected, const char *actual, const char *fileName, int lineNumber); virtual void assertLongsEqual(long expected, long actual, const char *fileName, int lineNumber); virtual void assertPointersEqual(const void *expected, const void *actual, const char *fileName, int lineNumber); virtual void assertDoublesEqual(double expected, double actual, double threshold, const char *fileName, int lineNumber); virtual void fail(const char *text, const char *fileName, int lineNumber); virtual void print(const char *text, const char *fileName, int lineNumber); virtual void print(const SimpleString & text, const char *fileName, int lineNumber); void setFileName(const char *fileName); void setLineNumber(int lineNumber); void setGroupName(const char *groupName); void setTestName(const char *testName); virtual void exitCurrentTest(); virtual void exitCurrentTestWithoutException(); static void crash(); static void setCrashMethod(void (*crashme)()); static void resetCrashMethod(); virtual bool isRunInSeperateProcess() const; virtual void setRunInSeperateProcess(); virtual Utest* createTest(); virtual void destroyTest(Utest* test); virtual void runOneTest(TestPlugin *plugin, TestResult & result); protected: UtestShell(); UtestShell(const char *groupName, const char *testName, const char *fileName, int lineNumber, UtestShell *nextTest); virtual SimpleString getMacroName() const; private: const char *group_; const char *name_; const char *file_; int lineNumber_; UtestShell *next_; bool isRunAsSeperateProcess_; void setTestResult(TestResult* result); void setCurrentTest(UtestShell* test); static UtestShell* currentTest_; static TestResult* testResult_; void failWith(const TestFailure& failure); }; //////////////////// NullTest class NullTestShell: public UtestShell { public: explicit NullTestShell(); explicit NullTestShell(const char* fileName, int lineNumber); virtual ~NullTestShell(); void testBody(); static NullTestShell& instance(); virtual int countTests(); virtual UtestShell*getNext() const; virtual bool isNull() const; private: NullTestShell(const NullTestShell&); NullTestShell& operator=(const NullTestShell&); }; //////////////////// ExecFunctionTest class ExecFunctionTestShell; class ExecFunctionTest : public Utest { public: ExecFunctionTest(ExecFunctionTestShell* shell); void testBody(); virtual void setup(); virtual void teardown(); private: ExecFunctionTestShell* shell_; }; //////////////////// ExecFunctionTestShell class ExecFunctionTestShell: public UtestShell { public: void (*setup_)(); void (*teardown_)(); void (*testFunction_)(); ExecFunctionTestShell(void(*set)() = 0, void(*tear)() = 0) : UtestShell("Generic", "Generic", "Generic", 1), setup_(set), teardown_( tear), testFunction_(0) { } Utest* createTest() { return new ExecFunctionTest(this); } virtual ~ExecFunctionTestShell(); }; //////////////////// CppUTestFailedException class CppUTestFailedException { public: int dummy_; }; //////////////////// IgnoredTest class IgnoredUtestShell : public UtestShell { public: IgnoredUtestShell(); virtual ~IgnoredUtestShell(); explicit IgnoredUtestShell(const char* groupName, const char* testName, const char* fileName, int lineNumber); virtual const char* getProgressIndicator() const; protected: virtual SimpleString getMacroName() const; virtual void runOneTestWithPlugins(TestPlugin* plugin, TestResult& result); private: IgnoredUtestShell(const IgnoredUtestShell&); IgnoredUtestShell& operator=(const IgnoredUtestShell&); }; //////////////////// TestInstaller class TestInstaller { public: explicit TestInstaller(UtestShell& shell, const char* groupName, const char* testName, const char* fileName, int lineNumber); virtual ~TestInstaller(); void unDo(); private: TestInstaller(const TestInstaller&); TestInstaller& operator=(const TestInstaller&); }; #endif cpputest-3.4/include/CppUTest/MemoryLeakWarningPlugin.h0000644000175300017530000001075512134163705020245 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef D_MemoryLeakWarningPlugin_h #define D_MemoryLeakWarningPlugin_h #include "TestPlugin.h" /////////////////////////////////////////////////////////////////////////////// // // MemoryLeakWarning.h // // MemoryLeakWarning defines the inteface to a platform specific // memory leak detection class. See Platforms directory for examples // /////////////////////////////////////////////////////////////////////////////// #define IGNORE_ALL_LEAKS_IN_TEST() MemoryLeakWarningPlugin::getFirstPlugin()->ignoreAllLeaksInTest(); #define EXPECT_N_LEAKS(n) MemoryLeakWarningPlugin::getFirstPlugin()->expectLeaksInTest(n); #if CPPUTEST_USE_MEM_LEAK_DETECTION #undef new #if CPPUTEST_USE_STD_CPP_LIB #include void* operator new(size_t size) throw(std::bad_alloc); void* operator new[](size_t size) throw(std::bad_alloc); void* operator new(size_t size, const std::nothrow_t&) throw(); void* operator new[](size_t size, const std::nothrow_t&) throw(); #else void* operator new(size_t size); void* operator new[](size_t size); #endif void operator delete(void* mem) throw(); void operator delete[](void* mem) throw(); void operator delete(void* mem, const char* file, int line) throw(); void operator delete[](void* mem, const char* file, int line) throw(); #if CPPUTEST_USE_NEW_MACROS #include "MemoryLeakDetectorNewMacros.h" #endif #endif extern void crash_on_allocation_number(unsigned alloc_number); class MemoryLeakDetector; class MemoryLeakFailure; class MemoryLeakWarningPlugin: public TestPlugin { public: MemoryLeakWarningPlugin(const SimpleString& name, MemoryLeakDetector* localDetector = 0); virtual ~MemoryLeakWarningPlugin(); virtual void preTestAction(UtestShell& test, TestResult& result); virtual void postTestAction(UtestShell& test, TestResult& result); virtual const char* FinalReport(int toBeDeletedLeaks = 0); void ignoreAllLeaksInTest(); void expectLeaksInTest(int n); void destroyGlobalDetectorAndTurnOffMemoryLeakDetectionInDestructor(bool des); MemoryLeakDetector* getMemoryLeakDetector(); static MemoryLeakWarningPlugin* getFirstPlugin(); static MemoryLeakDetector* getGlobalDetector(); static MemoryLeakFailure* getGlobalFailureReporter(); static void setGlobalDetector(MemoryLeakDetector* detector, MemoryLeakFailure* reporter); static void destroyGlobalDetector(); static void turnOffNewDeleteOverloads(); static void turnOnNewDeleteOverloads(); private: MemoryLeakDetector* memLeakDetector_; bool ignoreAllWarnings_; bool destroyGlobalDetectorAndTurnOfMemoryLeakDetectionInDestructor_; int expectedLeaks_; int failureCount_; static MemoryLeakWarningPlugin* firstPlugin_; }; extern void* cpputest_malloc_location_with_leak_detection(size_t size, const char* file, int line); extern void* cpputest_realloc_location_with_leak_detection(void* memory, size_t size, const char* file, int line); extern void cpputest_free_location_with_leak_detection(void* buffer, const char* file, int line); #endif cpputest-3.4/include/CppUTest/TestHarness_c.h0000664000175300017530000001067012066727207016245 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /****************************************************************************** * * Provides an interface for when working with pure C * *******************************************************************************/ #ifndef D_TestHarness_c_h #define D_TestHarness_c_h #include "CppUTestConfig.h" #define CHECK_EQUAL_C_INT(expected,actual) \ CHECK_EQUAL_C_INT_LOCATION(expected,actual,__FILE__,__LINE__) #define CHECK_EQUAL_C_REAL(expected,actual,threshold) \ CHECK_EQUAL_C_REAL_LOCATION(expected,actual,threshold,__FILE__,__LINE__) #define CHECK_EQUAL_C_CHAR(expected,actual) \ CHECK_EQUAL_C_CHAR_LOCATION(expected,actual,__FILE__,__LINE__) #define CHECK_EQUAL_C_STRING(expected,actual) \ CHECK_EQUAL_C_STRING_LOCATION(expected,actual,__FILE__,__LINE__) #define FAIL_TEXT_C(text) \ FAIL_TEXT_C_LOCATION(text,__FILE__,__LINE__) #define FAIL_C() \ FAIL_C_LOCATION(__FILE__,__LINE__) #define CHECK_C(condition) \ CHECK_C_LOCATION(condition, #condition, __FILE__,__LINE__) #ifdef __cplusplus extern "C" { #endif /* CHECKS that can be used from C code */ extern void CHECK_EQUAL_C_INT_LOCATION(int expected, int actual, const char* fileName, int lineNumber); extern void CHECK_EQUAL_C_REAL_LOCATION(double expected, double actual, double threshold, const char* fileName, int lineNumber); extern void CHECK_EQUAL_C_CHAR_LOCATION(char expected, char actual, const char* fileName, int lineNumber); extern void CHECK_EQUAL_C_STRING_LOCATION(const char* expected, const char* actual, const char* fileName, int lineNumber); extern void FAIL_TEXT_C_LOCATION(const char* text, const char* fileName, int lineNumber); extern void FAIL_C_LOCATION(const char* fileName, int lineNumber); extern void CHECK_C_LOCATION(int condition, const char* conditionString, const char* fileName, int lineNumber); extern void* cpputest_malloc(size_t size); extern void* cpputest_calloc(size_t num, size_t size); extern void* cpputest_realloc(void* ptr, size_t size); extern void cpputest_free(void* buffer); extern void* cpputest_malloc_location(size_t size, const char* file, int line); extern void* cpputest_calloc_location(size_t num, size_t size, const char* file, int line); extern void* cpputest_realloc_location(void* memory, size_t size, const char* file, int line); extern void cpputest_free_location(void* buffer, const char* file, int line); void cpputest_malloc_set_out_of_memory(void); void cpputest_malloc_set_not_out_of_memory(void); void cpputest_malloc_set_out_of_memory_countdown(int); void cpputest_malloc_count_reset(void); int cpputest_malloc_get_count(void); #ifdef __cplusplus } #endif /* * Small additional macro for unused arguments. This is common when stubbing, but in C you cannot remove the * name of the parameter (as in C++). */ #ifndef PUNUSED #if defined(__GNUC__) # define PUNUSED(x) PUNUSED_ ##x __attribute__((unused)) #else # define PUNUSED(x) x #endif #endif #endif cpputest-3.4/include/CppUTest/UtestMacros.h0000644000175300017530000002244412137414545015746 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef D_UTestMacros_h #define D_UTestMacros_h /*! \brief Define a group of tests * * All tests in a TEST_GROUP share the same setup() * and teardown(). setup() is run before the opening * curly brace of each TEST and teardown() is * called after the closing curly brace of TEST. * */ #define TEST_GROUP_BASE(testGroup, baseclass) \ extern int externTestGroup##testGroup; \ int externTestGroup##testGroup = 0; \ struct TEST_GROUP_##CppUTestGroup##testGroup : public baseclass #define TEST_BASE(testBaseClass) \ struct testBaseClass : public Utest #define TEST_GROUP(testGroup) \ TEST_GROUP_BASE(testGroup, Utest) #define TEST_SETUP() \ virtual void setup() #define TEST_TEARDOWN() \ virtual void teardown() #define TEST(testGroup, testName) \ /* External declarations for strict compilers */ \ class TEST_##testGroup##_##testName##_TestShell; \ extern TEST_##testGroup##_##testName##_TestShell TEST_##testGroup##_##testName##_TestShell_instance; \ \ class TEST_##testGroup##_##testName##_Test : public TEST_GROUP_##CppUTestGroup##testGroup \ { public: TEST_##testGroup##_##testName##_Test () : TEST_GROUP_##CppUTestGroup##testGroup () {} \ void testBody(); }; \ class TEST_##testGroup##_##testName##_TestShell : public UtestShell { \ virtual Utest* createTest() { return new TEST_##testGroup##_##testName##_Test; } \ } TEST_##testGroup##_##testName##_TestShell_instance; \ static TestInstaller TEST_##testGroup##_##testName##_Installer(TEST_##testGroup##_##testName##_TestShell_instance, #testGroup, #testName, __FILE__,__LINE__); \ void TEST_##testGroup##_##testName##_Test::testBody() #define IGNORE_TEST(testGroup, testName)\ /* External declarations for strict compilers */ \ class IGNORE##testGroup##_##testName##_TestShell; \ extern IGNORE##testGroup##_##testName##_TestShell IGNORE##testGroup##_##testName##_TestShell_instance; \ \ class IGNORE##testGroup##_##testName##_Test : public TEST_GROUP_##CppUTestGroup##testGroup \ { public: IGNORE##testGroup##_##testName##_Test () : TEST_GROUP_##CppUTestGroup##testGroup () {} \ public: void testBodyThatNeverRuns (); }; \ class IGNORE##testGroup##_##testName##_TestShell : public IgnoredUtestShell { \ virtual Utest* createTest() { return new IGNORE##testGroup##_##testName##_Test; } \ } IGNORE##testGroup##_##testName##_TestShell_instance; \ static TestInstaller TEST_##testGroup##testName##_Installer(IGNORE##testGroup##_##testName##_TestShell_instance, #testGroup, #testName, __FILE__,__LINE__); \ void IGNORE##testGroup##_##testName##_Test::testBodyThatNeverRuns () #define IMPORT_TEST_GROUP(testGroup) \ extern int externTestGroup##testGroup;\ extern int* p##testGroup; \ int* p##testGroup = &externTestGroup##testGroup // Different checking macros #define CHECK(condition)\ CHECK_LOCATION_TRUE(condition, "CHECK", #condition, __FILE__, __LINE__) #define CHECK_TEXT(condition, text) \ CHECK_LOCATION_TEXT(condition, "CHECK", #condition, text, __FILE__, __LINE__) #define CHECK_TRUE(condition)\ CHECK_LOCATION_TRUE(condition, "CHECK_TRUE", #condition, __FILE__, __LINE__) #define CHECK_FALSE(condition)\ CHECK_LOCATION_FALSE(condition, "CHECK_FALSE", #condition, __FILE__, __LINE__) #define CHECK_LOCATION_TEXT(condition, checkString, conditionString, text, file, line) \ { UtestShell::getCurrent()->assertTrueText((condition) != 0, checkString, conditionString, text, file, line); } #define CHECK_LOCATION_TRUE(condition, checkString, conditionString, file, line)\ { UtestShell::getCurrent()->assertTrue((condition) != 0, checkString, conditionString, file, line); } #define CHECK_LOCATION_FALSE(condition, checkString, conditionString, file, line)\ { UtestShell::getCurrent()->assertTrue((condition) == 0, checkString, conditionString, file, line); } //This check needs the operator!=(), and a StringFrom(YourType) function #define CHECK_EQUAL(expected,actual)\ CHECK_EQUAL_LOCATION(expected, actual, __FILE__, __LINE__) #define CHECK_EQUAL_LOCATION(expected,actual, file, line)\ if ((expected) != (actual))\ {\ { \ UtestShell::getTestResult()->countCheck();\ CheckEqualFailure _f(UtestShell::getCurrent(), file, line, StringFrom(expected), StringFrom(actual)); \ UtestShell::getTestResult()->addFailure(_f);\ } \ UtestShell::getCurrent()->exitCurrentTest(); \ }\ else\ UtestShell::getTestResult()->countCheck(); //This check checks for char* string equality using strcmp. //This makes up for the fact that CHECK_EQUAL only compares the pointers to char*'s #define STRCMP_EQUAL(expected,actual)\ STRCMP_EQUAL_LOCATION(expected, actual, __FILE__, __LINE__) #define STRCMP_EQUAL_LOCATION(expected,actual, file, line)\ { UtestShell::getCurrent()->assertCstrEqual(expected, actual, file, line); } #define STRCMP_NOCASE_EQUAL(expected,actual)\ STRCMP_NOCASE_EQUAL_LOCATION(expected, actual, __FILE__, __LINE__) #define STRCMP_NOCASE_EQUAL_LOCATION(expected,actual, file, line)\ { UtestShell::getCurrent()->assertCstrNoCaseEqual(expected, actual, file, line); } #define STRCMP_CONTAINS(expected,actual)\ STRCMP_CONTAINS_LOCATION(expected, actual, __FILE__, __LINE__) #define STRCMP_CONTAINS_LOCATION(expected,actual, file, line)\ { UtestShell::getCurrent()->assertCstrContains(expected, actual, file, line); } #define STRCMP_NOCASE_CONTAINS(expected,actual)\ STRCMP_NOCASE_CONTAINS_LOCATION(expected, actual, __FILE__, __LINE__) #define STRCMP_NOCASE_CONTAINS_LOCATION(expected,actual, file, line)\ { UtestShell::getCurrent()->assertCstrNoCaseContains(expected, actual, file, line); } //Check two long integers for equality #define LONGS_EQUAL(expected,actual)\ LONGS_EQUAL_LOCATION(expected,actual,__FILE__, __LINE__) #define LONGS_EQUAL_LOCATION(expected,actual,file,line)\ { UtestShell::getCurrent()->assertLongsEqual((long)expected, (long)actual, file, line); } #define BYTES_EQUAL(expected, actual)\ LONGS_EQUAL((expected) & 0xff,(actual) & 0xff) #define POINTERS_EQUAL(expected, actual)\ POINTERS_EQUAL_LOCATION((expected),(actual), __FILE__, __LINE__) #define POINTERS_EQUAL_LOCATION(expected,actual,file,line)\ { UtestShell::getCurrent()->assertPointersEqual((void *)expected, (void *)actual, file, line); } //Check two doubles for equality within a tolerance threshold #define DOUBLES_EQUAL(expected,actual,threshold)\ DOUBLES_EQUAL_LOCATION(expected,actual,threshold,__FILE__,__LINE__) #define DOUBLES_EQUAL_LOCATION(expected,actual,threshold,file,line)\ { UtestShell::getCurrent()->assertDoublesEqual(expected, actual, threshold, file, line); } //Fail if you get to this macro //The macro FAIL may already be taken, so allow FAIL_TEST too #ifndef FAIL #define FAIL(text)\ FAIL_LOCATION(text, __FILE__,__LINE__) #define FAIL_LOCATION(text, file, line)\ { UtestShell::getCurrent()->fail(text, file, line); } #endif #define FAIL_TEST(text)\ FAIL_TEST_LOCATION(text, __FILE__,__LINE__) #define FAIL_TEST_LOCATION(text, file,line)\ { UtestShell::getCurrent()->fail(text, file, line); } #define UT_PRINT_LOCATION(text, file, line) \ { UtestShell::getCurrent()->print(text, file, line); } #define UT_PRINT(text) \ UT_PRINT_LOCATION(text, __FILE__, __LINE__) #if CPPUTEST_USE_STD_CPP_LIB #define CHECK_THROWS(expected, expression) \ { \ SimpleString msg("expected to throw "#expected "\nbut threw nothing"); \ bool caught_expected = false; \ try { \ (expression); \ } catch(const expected &) { \ caught_expected = true; \ } catch(...) { \ msg = "expected to throw " #expected "\nbut threw a different type"; \ } \ if (!caught_expected) { \ UtestShell::getCurrent()->fail(msg.asCharString(), __FILE__, __LINE__); \ } \ } #endif /* CPPUTEST_USE_STD_CPP_LIB */ #define UT_CRASH() { UtestShell::crash(); } #define RUN_ALL_TESTS(ac, av) CommandLineTestRunner::RunAllTests(ac, av) #endif /*D_UTestMacros_h*/ cpputest-3.4/include/CppUTestExt/0000755000175300017530000000000012143642714014055 500000000000000cpputest-3.4/include/CppUTestExt/CppUTestGMock/0000755000175300017530000000000012143642712016503 500000000000000cpputest-3.4/include/CppUTestExt/CppUTestGMock/gmock/0000755000175300017530000000000012143642714017605 500000000000000cpputest-3.4/include/CppUTestExt/CppUTestGMock/gmock/gmock.h0000644000175300017530000000331712023251675021001 00000000000000/* * Copyright (c) 2011, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef CPPUTEST_GMOCK_H_ #define CPPUTEST_GMOCK_H_ /* This is to be done. Implement the GMock interface with CppUTest Mocking */ #endif cpputest-3.4/include/CppUTestExt/CppUTestGTest/0000755000175300017530000000000012143642712016531 500000000000000cpputest-3.4/include/CppUTestExt/CppUTestGTest/gtest/0000755000175300017530000000000012143642714017661 500000000000000cpputest-3.4/include/CppUTestExt/CppUTestGTest/gtest/gtest.h0000644000175300017530000000315412023251675021102 00000000000000/* * Copyright (c) 2011, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTestExt/GTestInterface.h" cpputest-3.4/include/CppUTestExt/MemoryReportAllocator.h0000644000175300017530000000463212023251675020457 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef D_MemoryReportAllocator_h #define D_MemoryReportAllocator_h #include "CppUTest/TestMemoryAllocator.h" class MemoryReportFormatter; class MemoryReportAllocator : public TestMemoryAllocator { protected: TestResult* result_; TestMemoryAllocator* realAllocator_; MemoryReportFormatter* formatter_; public: MemoryReportAllocator(); virtual ~MemoryReportAllocator(); virtual void setFormatter(MemoryReportFormatter* formatter); virtual void setTestResult(TestResult* result); virtual void setRealAllocator(TestMemoryAllocator* allocator); virtual TestMemoryAllocator* getRealAllocator(); virtual char* alloc_memory(size_t size, const char* file, int line); virtual void free_memory(char* memory, const char* file, int line); virtual const char* name(); virtual const char* alloc_name(); virtual const char* free_name(); }; #endif cpputest-3.4/include/CppUTestExt/MockExpectedFunctionsList.h0000644000175300017530000001044112134163705021244 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef D_MockExpectedFunctionsList_h #define D_MockExpectedFunctionsList_h class MockExpectedFunctionCall; class MockNamedValue; class MockExpectedFunctionsList { public: MockExpectedFunctionsList(); virtual ~MockExpectedFunctionsList(); virtual void deleteAllExpectationsAndClearList(); virtual int size() const; virtual int amountOfExpectationsFor(const SimpleString& name) const; virtual int amountOfUnfulfilledExpectations() const; virtual bool hasUnfullfilledExpectations() const; virtual bool hasFulfilledExpectations() const; virtual bool hasUnfulfilledExpectationsBecauseOfMissingParameters() const; virtual bool hasExpectationWithName(const SimpleString& name) const; virtual bool hasCallsOutOfOrder() const; virtual bool isEmpty() const; virtual void addExpectedCall(MockExpectedFunctionCall* call); virtual void addExpectations(const MockExpectedFunctionsList& list); virtual void addExpectationsRelatedTo(const SimpleString& name, const MockExpectedFunctionsList& list); virtual void addUnfilfilledExpectations(const MockExpectedFunctionsList& list); virtual void onlyKeepExpectationsRelatedTo(const SimpleString& name); virtual void onlyKeepExpectationsWithParameter(const MockNamedValue& parameter); virtual void onlyKeepExpectationsWithParameterName(const SimpleString& name); virtual void onlyKeepExpectationsOnObject(void* objectPtr); virtual void onlyKeepUnfulfilledExpectations(); virtual void onlyKeepUnfulfilledExpectationsRelatedTo(const SimpleString& name); virtual void onlyKeepUnfulfilledExpectationsWithParameter(const MockNamedValue& parameter); virtual void onlyKeepUnfulfilledExpectationsOnObject(void* objectPtr); virtual MockExpectedFunctionCall* removeOneFulfilledExpectation(); virtual MockExpectedFunctionCall* removeOneFulfilledExpectationWithIgnoredParameters(); virtual void resetExpectations(); virtual void callWasMade(int callOrder); virtual void wasPassedToObject(); virtual void parameterWasPassed(const SimpleString& parameterName); virtual SimpleString unfulfilledFunctionsToString(const SimpleString& linePrefix = "") const; virtual SimpleString fulfilledFunctionsToString(const SimpleString& linePrefix = "") const; virtual SimpleString missingParametersToString() const; protected: virtual void pruneEmptyNodeFromList(); class MockExpectedFunctionsListNode { public: MockExpectedFunctionCall* expectedCall_; MockExpectedFunctionsListNode* next_; MockExpectedFunctionsListNode(MockExpectedFunctionCall* expectedCall) : expectedCall_(expectedCall), next_(NULL) {} }; virtual MockExpectedFunctionsListNode* findNodeWithCallOrderOf(int callOrder) const; private: MockExpectedFunctionsListNode* head_; MockExpectedFunctionsList(const MockExpectedFunctionsList&); }; #endif cpputest-3.4/include/CppUTestExt/MockSupportPlugin.h0000644000175300017530000000417312023251675017617 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef D_MockSupportPlugin_h #define D_MockSupportPlugin_h #include "CppUTest/TestPlugin.h" #include "CppUTestExt/MockNamedValue.h" class MockSupportPlugin : public TestPlugin { public: MockSupportPlugin(const SimpleString& name = "MockSupportPLugin"); virtual ~MockSupportPlugin(); virtual void preTestAction(UtestShell&, TestResult&); virtual void postTestAction(UtestShell&, TestResult&); virtual void installComparator(const SimpleString& name, MockNamedValueComparator& comparator); private: MockNamedValueComparatorRepository repository_; }; #endif cpputest-3.4/include/CppUTestExt/MockSupport.h0000664000175300017530000001117112066727207016444 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef D_MockSupport_h #define D_MockSupport_h #include "CppUTestExt/MockFailure.h" #include "CppUTestExt/MockFunctionCall.h" #include "CppUTestExt/MockExpectedFunctionCall.h" #include "CppUTestExt/MockExpectedFunctionsList.h" class UtestShell; class MockSupport; /* This allows access to "the global" mocking support for easier testing */ MockSupport& mock(const SimpleString& mockName = ""); class MockSupport { public: MockSupport(); virtual ~MockSupport(); virtual void strictOrder(); virtual MockFunctionCall& expectOneCall(const SimpleString& functionName); virtual MockFunctionCall& expectNCalls(int amount, const SimpleString& functionName); virtual MockFunctionCall& actualCall(const SimpleString& functionName); virtual bool hasReturnValue(); virtual MockNamedValue returnValue(); virtual int intReturnValue(); virtual const char* stringReturnValue(); virtual double doubleReturnValue(); virtual void* pointerReturnValue(); bool hasData(const SimpleString& name); void setData(const SimpleString& name, int value); void setData(const SimpleString& name, const char* value); void setData(const SimpleString& name, double value); void setData(const SimpleString& name, void* value); void setDataObject(const SimpleString& name, const SimpleString& type, void* value); MockNamedValue getData(const SimpleString& name); MockSupport* getMockSupportScope(const SimpleString& name); const char* getTraceOutput(); /* * The following functions are recursively through the lower MockSupports scopes * This means, if you do mock().disable() it will disable *all* mocking scopes, including mock("myScope"). */ virtual void disable(); virtual void enable(); virtual void tracing(bool enabled); virtual void ignoreOtherCalls(); virtual void checkExpectations(); virtual bool expectedCallsLeft(); virtual void clear(); virtual void setMockFailureReporter(MockFailureReporter* reporter); virtual void crashOnFailure(); virtual void installComparator(const SimpleString& typeName, MockNamedValueComparator& comparator); virtual void installComparators(const MockNamedValueComparatorRepository& repository); virtual void removeAllComparators(); protected: MockSupport* clone(); virtual MockActualFunctionCall *createActualFunctionCall(); virtual void failTest(MockFailure& failure); private: static int callOrder_; static int expectedCallOrder_; bool strictOrdering_; MockFailureReporter *reporter_; MockFailureReporter defaultReporter_; MockExpectedFunctionsList expectations_; bool ignoreOtherCalls_; bool enabled_; MockActualFunctionCall *lastActualFunctionCall_; MockFunctionCallComposite compositeCalls_; MockNamedValueComparatorRepository comparatorRepository_; MockNamedValueList data_; bool tracing_; void checkExpectationsOfLastCall(); bool wasLastCallFulfilled(); void failTestWithUnexpectedCalls(); void failTestWithOutOfOrderCalls(); MockNamedValue* retrieveDataFromStore(const SimpleString& name); MockSupport* getMockSupport(MockNamedValueListNode* node); }; #endif cpputest-3.4/include/CppUTestExt/MockExpectedFunctionCall.h0000644000175300017530000001064212023251675021025 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef D_MockExpectedFunctionCall_h #define D_MockExpectedFunctionCall_h #include "CppUTestExt/MockFunctionCall.h" #include "CppUTestExt/MockNamedValue.h" extern SimpleString StringFrom(const MockNamedValue& parameter); class MockExpectedFunctionCall : public MockFunctionCall { public: MockExpectedFunctionCall(); virtual ~MockExpectedFunctionCall(); virtual MockFunctionCall& withName(const SimpleString& name); virtual MockFunctionCall& withCallOrder(int); virtual MockFunctionCall& withParameter(const SimpleString& name, int value); virtual MockFunctionCall& withParameter(const SimpleString& name, double value); virtual MockFunctionCall& withParameter(const SimpleString& name, const char* value); virtual MockFunctionCall& withParameter(const SimpleString& name, void* value); virtual MockFunctionCall& withParameterOfType(const SimpleString& typeName, const SimpleString& name, void* value); virtual MockFunctionCall& ignoreOtherParameters(); virtual MockFunctionCall& andReturnValue(int value); virtual MockFunctionCall& andReturnValue(double value); virtual MockFunctionCall& andReturnValue(const char* value); virtual MockFunctionCall& andReturnValue(void* value); virtual bool hasReturnValue(); virtual MockNamedValue returnValue(); virtual MockFunctionCall& onObject(void* objectPtr); virtual MockNamedValue getParameter(const SimpleString& name); virtual SimpleString getParameterType(const SimpleString& name); virtual SimpleString getParameterValueString(const SimpleString& name); virtual bool hasParameterWithName(const SimpleString& name); virtual bool hasParameter(const MockNamedValue& parameter); virtual bool relatesTo(const SimpleString& functionName); virtual bool relatesToObject(void*objectPtr) const; virtual bool isFulfilled(); virtual bool isFulfilledWithoutIgnoredParameters(); virtual bool areParametersFulfilled(); virtual bool areIgnoredParametersFulfilled(); virtual bool isOutOfOrder() const; virtual void callWasMade(int callOrder); virtual void parameterWasPassed(const SimpleString& name); virtual void parametersWereIgnored(); virtual void wasPassedToObject(); virtual void resetExpectation(); virtual SimpleString callToString(); virtual SimpleString missingParametersToString(); enum { NOT_CALLED_YET = -1, NO_EXPECTED_CALL_ORDER = -1}; virtual int getCallOrder() const; private: class MockExpectedFunctionParameter : public MockNamedValue { public: MockExpectedFunctionParameter(const SimpleString& name); void setFulfilled(bool b); bool isFulfilled() const; private: bool fulfilled_; }; MockExpectedFunctionParameter* item(MockNamedValueListNode* node); bool ignoreOtherParameters_; bool parametersWereIgnored_; int callOrder_; int expectedCallOrder_; bool outOfOrder_; MockNamedValueList* parameters_; MockNamedValue returnValue_; void* objectPtr_; bool wasPassedToObject_; }; #endif cpputest-3.4/include/CppUTestExt/MemoryReportFormatter.h0000644000175300017530000000603612134163705020501 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef D_MemoryReportFormatter_h #define D_MemoryReportFormatter_h class TestOutput; class UtestShell; class MemoryReportFormatter { public: virtual ~MemoryReportFormatter(){} virtual void report_testgroup_start(TestResult* result, UtestShell& test)=0; virtual void report_testgroup_end(TestResult* result, UtestShell& test)=0; virtual void report_test_start(TestResult* result, UtestShell& test)=0; virtual void report_test_end(TestResult* result, UtestShell& test)=0; virtual void report_alloc_memory(TestResult* result, TestMemoryAllocator* allocator, size_t size, char* memory, const char* file, int line)=0; virtual void report_free_memory(TestResult* result, TestMemoryAllocator* allocator, char* memory, const char* file, int line)=0; }; class NormalMemoryReportFormatter : public MemoryReportFormatter { public: NormalMemoryReportFormatter(); virtual ~NormalMemoryReportFormatter(); virtual void report_testgroup_start(TestResult* /*result*/, UtestShell& /*test*/); virtual void report_testgroup_end(TestResult* /*result*/, UtestShell& /*test*/){} virtual void report_test_start(TestResult* result, UtestShell& test); virtual void report_test_end(TestResult* result, UtestShell& test); virtual void report_alloc_memory(TestResult* result, TestMemoryAllocator* allocator, size_t size, char* memory, const char* file, int line); virtual void report_free_memory(TestResult* result, TestMemoryAllocator* allocator, char* memory, const char* file, int line); }; #endif cpputest-3.4/include/CppUTestExt/MockFailure.h0000644000175300017530000001052612134163705016351 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef D_MockFailure_h #define D_MockFailure_h #include "CppUTest/TestFailure.h" class MockExpectedFunctionsList; class MockActualFunctionCall; class MockNamedValue; class MockFailure; class MockFailureReporter { protected: bool crashOnFailure_; public: MockFailureReporter() : crashOnFailure_(false){} virtual ~MockFailureReporter() {} virtual void failTest(const MockFailure& failure); virtual UtestShell* getTestToFail(); virtual int getAmountOfTestFailures(); virtual void crashOnFailure() {crashOnFailure_ = true; } }; class MockFailure : public TestFailure { public: MockFailure(UtestShell* test); virtual ~MockFailure(){} protected: void addExpectationsAndCallHistory(const MockExpectedFunctionsList& expectations); void addExpectationsAndCallHistoryRelatedTo(const SimpleString& function, const MockExpectedFunctionsList& expectations); }; class MockExpectedCallsDidntHappenFailure : public MockFailure { public: MockExpectedCallsDidntHappenFailure(UtestShell* test, const MockExpectedFunctionsList& expectations); virtual ~MockExpectedCallsDidntHappenFailure(){} }; class MockUnexpectedCallHappenedFailure : public MockFailure { public: MockUnexpectedCallHappenedFailure(UtestShell* test, const SimpleString& name, const MockExpectedFunctionsList& expectations); virtual ~MockUnexpectedCallHappenedFailure(){} }; class MockCallOrderFailure : public MockFailure { public: MockCallOrderFailure(UtestShell* test, const MockExpectedFunctionsList& expectations); virtual ~MockCallOrderFailure(){} }; class MockUnexpectedParameterFailure : public MockFailure { public: MockUnexpectedParameterFailure(UtestShell* test, const SimpleString& functionName, const MockNamedValue& parameter, const MockExpectedFunctionsList& expectations); virtual ~MockUnexpectedParameterFailure(){} }; class MockExpectedParameterDidntHappenFailure : public MockFailure { public: MockExpectedParameterDidntHappenFailure(UtestShell* test, const SimpleString& functionName, const MockExpectedFunctionsList& expectations); virtual ~MockExpectedParameterDidntHappenFailure(){} }; class MockNoWayToCompareCustomTypeFailure : public MockFailure { public: MockNoWayToCompareCustomTypeFailure(UtestShell* test, const SimpleString& typeName); virtual ~MockNoWayToCompareCustomTypeFailure(){} }; class MockUnexpectedObjectFailure : public MockFailure { public: MockUnexpectedObjectFailure(UtestShell* test, const SimpleString& functionName, void* expected, const MockExpectedFunctionsList& expectations); virtual ~MockUnexpectedObjectFailure(){} }; class MockExpectedObjectDidntHappenFailure : public MockFailure { public: MockExpectedObjectDidntHappenFailure(UtestShell* test, const SimpleString& functionName, const MockExpectedFunctionsList& expectations); virtual ~MockExpectedObjectDidntHappenFailure(){} }; #endif cpputest-3.4/include/CppUTestExt/MockSupport_c.h0000664000175300017530000000754212066727207016755 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef D_MockSupport_c_h #define D_MockSupport_c_h #ifdef __cplusplus extern "C" { #endif typedef enum { MOCKVALUETYPE_INTEGER, MOCKVALUETYPE_DOUBLE, MOCKVALUETYPE_STRING, MOCKVALUETYPE_POINTER, MOCKVALUETYPE_OBJECT } MockValueType_c; typedef struct SMockValue_c { MockValueType_c type; union { int intValue; double doubleValue; const char* stringValue; void* pointerValue; void* objectValue; } value; } MockValue_c; typedef struct SMockFunctionCall_c MockFunctionCall_c; struct SMockFunctionCall_c { MockFunctionCall_c* (*withIntParameters)(const char* name, int value); MockFunctionCall_c* (*withDoubleParameters)(const char* name, double value); MockFunctionCall_c* (*withStringParameters)(const char* name, const char* value); MockFunctionCall_c* (*withPointerParameters)(const char* name, void* value); MockFunctionCall_c* (*withParameterOfType)(const char* type, const char* name, void* value); MockFunctionCall_c* (*andReturnIntValue)(int value); MockFunctionCall_c* (*andReturnDoubleValue)(double value); MockFunctionCall_c* (*andReturnStringValue)(const char* value); MockFunctionCall_c* (*andReturnPointerValue)(void* value); MockValue_c (*returnValue)(void); }; typedef int (*MockTypeEqualFunction_c)(void* object1, void* object2); typedef char* (*MockTypeValueToStringFunction_c)(void* object1); typedef struct SMockSupport_c MockSupport_c; struct SMockSupport_c { MockFunctionCall_c* (*expectOneCall)(const char* name); MockFunctionCall_c* (*actualCall)(const char* name); MockValue_c (*returnValue)(void); void (*enable)(void); void (*disable)(void); void (*setIntData) (const char* name, int value); void (*setDoubleData) (const char* name, double value); void (*setStringData) (const char* name, const char* value); void (*setPointerData) (const char* name, void* value); void (*setDataObject) (const char* name, const char* type, void* value); MockValue_c (*getData)(const char* name); void (*checkExpectations)(void); int (*expectedCallsLeft)(void); void (*clear)(void); void (*installComparator) (const char* typeName, MockTypeEqualFunction_c isEqual, MockTypeValueToStringFunction_c valueToString); void (*removeAllComparators)(void); }; MockSupport_c* mock_c(void); MockSupport_c* mock_scope_c(const char* scope); #ifdef __cplusplus } #endif #endif cpputest-3.4/include/CppUTestExt/GMock.h0000664000175300017530000000370112066727207015156 00000000000000/* * Copyright (c) 2011, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef GMOCK_H_ #define GMOCK_H_ #ifdef CPPUTEST_USE_REAL_GMOCK #undef new #endif #define GTEST_DONT_DEFINE_TEST 1 #define GTEST_DONT_DEFINE_FAIL 1 #include "gmock/gmock.h" #undef RUN_ALL_TESTS #ifdef CPPUTEST_USE_REAL_GMOCK using testing::Return; using testing::NiceMock; #endif #ifdef CPPUTEST_USE_NEW_MACROS #include "CppUTest/MemoryLeakDetectorNewMacros.h" #endif #endif cpputest-3.4/include/CppUTestExt/MemoryReporterPlugin.h0000644000175300017530000000514312023251675020322 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef D_MemoryReporterPlugin_h #define D_MemoryReporterPlugin_h #include "CppUTest/TestPlugin.h" #include "CppUTestExt/MemoryReportAllocator.h" class MemoryReportFormatter; class MemoryReporterPlugin : public TestPlugin { MemoryReportFormatter* formatter_; MemoryReportAllocator mallocAllocator; MemoryReportAllocator newAllocator; MemoryReportAllocator newArrayAllocator; SimpleString currentTestGroup_; public: MemoryReporterPlugin(); virtual ~MemoryReporterPlugin(); virtual void preTestAction(UtestShell & test, TestResult & result); virtual void postTestAction(UtestShell & test, TestResult & result); virtual bool parseArguments(int, const char**, int); protected: virtual MemoryReportFormatter* createMemoryFormatter(const SimpleString& type); private: void destroyMemoryFormatter(MemoryReportFormatter* formatter); void setGlobalMemoryReportAllocators(); void removeGlobalMemoryReportAllocators(); void initializeAllocator(MemoryReportAllocator* allocator, TestResult & result); }; #endif cpputest-3.4/include/CppUTestExt/MockFunctionCall.h0000644000175300017530000001540212134163705017341 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef D_MockFunctionCall_h #define D_MockFunctionCall_h /* * MockFunctionCall is the main interface for recording and actualizing mock calls. * */ class MockNamedValueComparator; class MockNamedValueComparatorRepository; #include "CppUTestExt/MockNamedValue.h" class MockFunctionCall { public: MockFunctionCall(); virtual ~MockFunctionCall(); virtual MockFunctionCall& withName(const SimpleString& name)=0; virtual MockFunctionCall& withCallOrder(int)=0; virtual MockFunctionCall& withParameter(const SimpleString& name, int value)=0; virtual MockFunctionCall& withParameter(const SimpleString& name, double value)=0; virtual MockFunctionCall& withParameter(const SimpleString& name, const char* value)=0; virtual MockFunctionCall& withParameter(const SimpleString& name, void* value)=0; virtual MockFunctionCall& withParameterOfType(const SimpleString& typeName, const SimpleString& name, void* value)=0; virtual MockFunctionCall& ignoreOtherParameters() { return *this;} virtual MockFunctionCall& andReturnValue(int value)=0; virtual MockFunctionCall& andReturnValue(double value)=0; virtual MockFunctionCall& andReturnValue(const char* value)=0; virtual MockFunctionCall& andReturnValue(void* value)=0; virtual bool hasReturnValue()=0; virtual MockNamedValue returnValue()=0; virtual MockFunctionCall& onObject(void* objectPtr)=0; virtual void setComparatorRepository(MockNamedValueComparatorRepository* repository); protected: void setName(const SimpleString& name); SimpleString getName() const; MockNamedValueComparator* getComparatorForType(const SimpleString& type) const; private: SimpleString functionName_; MockNamedValueComparatorRepository* comparatorRepository_; }; struct MockFunctionCallCompositeNode; class MockFunctionCallComposite : public MockFunctionCall { public: MockFunctionCallComposite(); virtual ~MockFunctionCallComposite(); virtual MockFunctionCall& withName(const SimpleString&); virtual MockFunctionCall& withCallOrder(int); virtual MockFunctionCall& withParameter(const SimpleString&, int); virtual MockFunctionCall& withParameter(const SimpleString&, double); virtual MockFunctionCall& withParameter(const SimpleString&, const char*); virtual MockFunctionCall& withParameter(const SimpleString& , void*); virtual MockFunctionCall& withParameterOfType(const SimpleString&, const SimpleString&, void*); virtual MockFunctionCall& ignoreOtherParameters(); virtual MockFunctionCall& andReturnValue(int); virtual MockFunctionCall& andReturnValue(double); virtual MockFunctionCall& andReturnValue(const char*); virtual MockFunctionCall& andReturnValue(void*); virtual bool hasReturnValue(); virtual MockNamedValue returnValue(); virtual MockFunctionCall& onObject(void* ); virtual void add(MockFunctionCall& call); virtual void clear(); private: MockFunctionCallCompositeNode* head_; }; class MockIgnoredCall : public MockFunctionCall { public: virtual MockFunctionCall& withName(const SimpleString&) { return *this;} virtual MockFunctionCall& withCallOrder(int) { return *this; } virtual MockFunctionCall& withParameter(const SimpleString&, int) { return *this; } virtual MockFunctionCall& withParameter(const SimpleString&, double) { return *this; } virtual MockFunctionCall& withParameter(const SimpleString&, const char*) { return *this; } virtual MockFunctionCall& withParameter(const SimpleString& , void*) { return *this; } virtual MockFunctionCall& withParameterOfType(const SimpleString&, const SimpleString&, void*) { return *this; } virtual MockFunctionCall& andReturnValue(int) { return *this; } virtual MockFunctionCall& andReturnValue(double) { return *this;} virtual MockFunctionCall& andReturnValue(const char*) { return *this; } virtual MockFunctionCall& andReturnValue(void*) { return *this; } virtual bool hasReturnValue() { return false; } virtual MockNamedValue returnValue() { return MockNamedValue(""); } virtual MockFunctionCall& onObject(void* ) { return *this; } static MockFunctionCall& instance() { static MockIgnoredCall call; return call; } }; class MockFunctionCallTrace : public MockFunctionCall { public: MockFunctionCallTrace(); virtual ~MockFunctionCallTrace(); virtual MockFunctionCall& withName(const SimpleString& name); virtual MockFunctionCall& withCallOrder(int); virtual MockFunctionCall& withParameter(const SimpleString& name, int value); virtual MockFunctionCall& withParameter(const SimpleString& name, double value); virtual MockFunctionCall& withParameter(const SimpleString& name, const char* value); virtual MockFunctionCall& withParameter(const SimpleString& name, void* value); virtual MockFunctionCall& withParameterOfType(const SimpleString& typeName, const SimpleString& name, void* value); virtual MockFunctionCall& ignoreOtherParameters(); virtual MockFunctionCall& andReturnValue(int value); virtual MockFunctionCall& andReturnValue(double value); virtual MockFunctionCall& andReturnValue(const char* value); virtual MockFunctionCall& andReturnValue(void* value); virtual bool hasReturnValue(); virtual MockNamedValue returnValue(); virtual MockFunctionCall& onObject(void* objectPtr); const char* getTraceOutput(); void clear(); static MockFunctionCallTrace& instance(); private: SimpleString traceBuffer_; }; #endif cpputest-3.4/include/CppUTestExt/OrderedTest.h0000644000175300017530000000704412134176151016374 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef D_OrderedTest_h #define D_OrderedTest_h class OrderedTestShell : public UtestShell { public: OrderedTestShell(); virtual ~OrderedTestShell(); virtual OrderedTestShell* addOrderedTest(OrderedTestShell* test); virtual OrderedTestShell* getNextOrderedTest(); int getLevel(); void setLevel(int level); static void addOrderedTestToHead(OrderedTestShell* test); static OrderedTestShell* getOrderedTestHead(); static bool firstOrderedTest(); static void setOrderedTestHead(OrderedTestShell* test); private: static OrderedTestShell* _orderedTestsHead; OrderedTestShell* _nextOrderedTest; int _level; }; class OrderedTestInstaller { public: explicit OrderedTestInstaller(OrderedTestShell& test, const char* groupName, const char* testName, const char* fileName, int lineNumber, int level); virtual ~OrderedTestInstaller(); private: void addOrderedTestInOrder(OrderedTestShell* test); void addOrderedTestInOrderNotAtHeadPosition(OrderedTestShell* test); }; #define TEST_ORDERED(testGroup, testName, testLevel) \ /* declarations for compilers */ \ class TEST_##testGroup##_##testName##_TestShell; \ extern TEST_##testGroup##_##testName##_TestShell TEST_##testGroup##_##testName##_Instance; \ class TEST_##testGroup##_##testName##_Test : public TEST_GROUP_##CppUTestGroup##testGroup \ { public: TEST_##testGroup##_##testName##_Test () : TEST_GROUP_##CppUTestGroup##testGroup () {} \ void testBody(); }; \ class TEST_##testGroup##_##testName##_TestShell : public OrderedTestShell { \ virtual Utest* createTest() { return new TEST_##testGroup##_##testName##_Test; } \ } TEST_##testGroup##_##testName##_Instance; \ static OrderedTestInstaller TEST_##testGroup##_##testName##_Installer(TEST_##testGroup##_##testName##_Instance, #testGroup, #testName, __FILE__,__LINE__, testLevel); \ void TEST_##testGroup##_##testName##_Test::testBody() #endif cpputest-3.4/include/CppUTestExt/GTestConvertor.h0000664000175300017530000000511312066727207017105 00000000000000/* * Copyright (c) 2011, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef GTESTCONVERTOR_H_ #define GTESTCONVERTOR_H_ #include "CppUTest/Utest.h" #ifdef CPPUTEST_USE_REAL_GTEST class GTestResultReporter; namespace testing { class TestInfo; class TestCase; class Test; } class GTestShell : public UtestShell { ::testing::TestInfo* testinfo_; GTestShell* next_; public: GTestShell(::testing::TestInfo* testinfo, GTestShell* next); virtual Utest* createTest(); GTestShell* nextGTest(); }; class GTestConvertor { public: GTestConvertor(bool shouldSimulateFailureAtCreationToAllocateThreadLocalData = true); virtual ~GTestConvertor(); virtual void addAllGTestToTestRegistry(); protected: virtual void simulateGTestFailureToPreAllocateAllTheThreadLocalData(); virtual void addNewTestCaseForTestInfo(::testing::TestInfo* testinfo); virtual void addAllTestsFromTestCaseToTestRegistry(::testing::TestCase* testcase); virtual void createDummyInSequenceToAndFailureReporterAvoidMemoryLeakInGMock(); private: GTestResultReporter* reporter_; GTestShell* first_; }; #endif #endif cpputest-3.4/include/CppUTestExt/MockActualFunctionCall.h0000644000175300017530000000752312023251675020501 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef D_MockActualFunctionCall_h #define D_MockActualFunctionCall_h #include "CppUTestExt/MockFunctionCall.h" #include "CppUTestExt/MockExpectedFunctionsList.h" class MockFailureReporter; class MockFailure; class MockNamedValue; class MockActualFunctionCall : public MockFunctionCall { public: MockActualFunctionCall(int callOrder, MockFailureReporter* reporter, const MockExpectedFunctionsList& expectations); virtual ~MockActualFunctionCall(); virtual MockFunctionCall& withName(const SimpleString& name); virtual MockFunctionCall& withCallOrder(int); virtual MockFunctionCall& withParameter(const SimpleString& name, int value); virtual MockFunctionCall& withParameter(const SimpleString& name, double value); virtual MockFunctionCall& withParameter(const SimpleString& name, const char* value); virtual MockFunctionCall& withParameter(const SimpleString& name, void* value); virtual MockFunctionCall& withParameterOfType(const SimpleString& type, const SimpleString& name, void* value); virtual MockFunctionCall& andReturnValue(int value); virtual MockFunctionCall& andReturnValue(double value); virtual MockFunctionCall& andReturnValue(const char* value); virtual MockFunctionCall& andReturnValue(void* value); virtual bool hasReturnValue(); virtual MockNamedValue returnValue(); virtual MockFunctionCall& onObject(void* objectPtr); virtual bool isFulfilled() const; virtual bool hasFailed() const; virtual void checkExpectations(); virtual void setMockFailureReporter(MockFailureReporter* reporter); protected: virtual UtestShell* getTest() const; virtual void callHasSucceeded(); virtual void finnalizeCallWhenFulfilled(); virtual void failTest(const MockFailure& failure); virtual void checkActualParameter(const MockNamedValue& actualParameter); enum ActualCallState { CALL_IN_PROGESS, CALL_FAILED, CALL_SUCCEED }; virtual const char* stringFromState(ActualCallState state); virtual void setState(ActualCallState state); virtual void checkStateConsistency(ActualCallState oldState, ActualCallState newState); private: int callOrder_; MockFailureReporter* reporter_; ActualCallState state_; MockExpectedFunctionCall* _fulfilledExpectation; MockExpectedFunctionsList unfulfilledExpectations_; const MockExpectedFunctionsList& allExpectations_; }; #endif cpputest-3.4/include/CppUTestExt/MockNamedValue.h0000644000175300017530000001217512134163705017005 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef D_MockNamedValue_h #define D_MockNamedValue_h /* * MockParameterComparator is an interface that needs to be used when creating Comparators. * This is needed when comparing values of non-native type. */ class MockNamedValueComparator { public: MockNamedValueComparator() {} virtual ~MockNamedValueComparator() {} virtual bool isEqual(void* object1, void* object2)=0; virtual SimpleString valueToString(void* object)=0; }; class MockFunctionComparator : public MockNamedValueComparator { public: typedef bool (*isEqualFunction)(void*, void*); typedef SimpleString (*valueToStringFunction)(void*); MockFunctionComparator(isEqualFunction equal, valueToStringFunction valToString) : equal_(equal), valueToString_(valToString) {} virtual ~MockFunctionComparator(){} virtual bool isEqual(void* object1, void* object2){ return equal_(object1, object2); } virtual SimpleString valueToString(void* object) { return valueToString_(object); } private: isEqualFunction equal_; valueToStringFunction valueToString_; }; /* * MockNamedValue is the generic value class used. It encapsulates basic types and can use them "as if one" * Also it enables other types by putting object pointers. They can be compared with comparators. * * Basically this class ties together a Name, a Value, a Type, and a Comparator */ class MockNamedValue { public: MockNamedValue(const SimpleString& name); virtual ~MockNamedValue(); virtual void setValue(int value); virtual void setValue(double value); virtual void setValue(void* value); virtual void setValue(const char* value); virtual void setObjectPointer(const SimpleString& type, void* objectPtr); virtual void setComparator(MockNamedValueComparator* comparator); virtual void setName(const char* name); virtual bool equals(const MockNamedValue& p) const; virtual SimpleString toString() const; virtual SimpleString getName() const; virtual SimpleString getType() const; virtual int getIntValue() const; virtual double getDoubleValue() const; virtual const char* getStringValue() const; virtual void* getPointerValue() const; virtual void* getObjectPointer() const; private: SimpleString name_; SimpleString type_; union { int intValue_; double doubleValue_; const char* stringValue_; void* pointerValue_; void* objectPointerValue_; } value_; MockNamedValueComparator* comparator_; }; class MockNamedValueListNode { public: MockNamedValueListNode(MockNamedValue* newValue); SimpleString getName() const; SimpleString getType() const; MockNamedValueListNode* next(); MockNamedValue* item(); void destroy(); void setNext(MockNamedValueListNode* node); private: MockNamedValue* data_; MockNamedValueListNode* next_; }; class MockNamedValueList { public: MockNamedValueList(); MockNamedValueListNode* begin(); void add(MockNamedValue* newValue); void clear(); MockNamedValue* getValueByName(const SimpleString& name); private: MockNamedValueListNode* head_; }; /* * MockParameterComparatorRepository is a class which stores comparators which can be used for comparing non-native types * */ struct MockNamedValueComparatorRepositoryNode; class MockNamedValueComparatorRepository { MockNamedValueComparatorRepositoryNode* head_; public: MockNamedValueComparatorRepository(); virtual ~MockNamedValueComparatorRepository(); virtual void installComparator(const SimpleString& name, MockNamedValueComparator& comparator); virtual void installComparators(const MockNamedValueComparatorRepository& repository); virtual MockNamedValueComparator* getComparatorForType(const SimpleString& name); void clear(); }; #endif cpputest-3.4/include/CppUTestExt/CodeMemoryReportFormatter.h0000644000175300017530000000630412134163705021272 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef D_CodeMemoryReportFormatter_h #define D_CodeMemoryReportFormatter_h #include "CppUTestExt/MemoryReportFormatter.h" struct CodeReportingAllocationNode; class CodeMemoryReportFormatter : public MemoryReportFormatter { private: CodeReportingAllocationNode* codeReportingList_; TestMemoryAllocator* internalAllocator_; public: CodeMemoryReportFormatter(TestMemoryAllocator* internalAllocator); virtual ~CodeMemoryReportFormatter(); virtual void report_testgroup_start(TestResult* result, UtestShell& test); virtual void report_testgroup_end(TestResult* /*result*/, UtestShell& /*test*/){} virtual void report_test_start(TestResult* result, UtestShell& test); virtual void report_test_end(TestResult* result, UtestShell& test); virtual void report_alloc_memory(TestResult* result, TestMemoryAllocator* allocator, size_t size, char* memory, const char* file, int line); virtual void report_free_memory(TestResult* result, TestMemoryAllocator* allocator, char* memory, const char* file, int line); private: void addNodeToList(const char* variableName, void* memory, CodeReportingAllocationNode* next); CodeReportingAllocationNode* findNode(void* memory); bool variableExists(const SimpleString& variableName); void clearReporting(); bool isNewAllocator(TestMemoryAllocator* allocator); SimpleString createVariableNameFromFileLineInfo(const char *file, int line); SimpleString getAllocationString(TestMemoryAllocator* allocator, const SimpleString& variableName, size_t size); SimpleString getDeallocationString(TestMemoryAllocator* allocator, const SimpleString& variableName, const char* file, int line); }; #endif cpputest-3.4/include/CppUTestExt/GTestInterface.h0000644000175300017530000001111412134214565017012 00000000000000/* * Copyright (c) 2011, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CppUTest/CppUTestConfig.h" #include "CppUTest/Utest.h" #include "CppUTest/TestResult.h" #include "CppUTest/TestFailure.h" #define TEST(testGroup, testName) \ /* external declaration */ \ class TEST_##testGroup##_##testName##_TestShell; \ extern TEST_##testGroup##_##testName##_TestShell TEST_##testGroup##_##testName##_TestShell_Instance; \ class TEST_##testGroup##_##testName##_Test : public Utest \ { public: TEST_##testGroup##_##testName##_Test () : Utest () {} \ void testBody(); }; \ class TEST_##testGroup##_##testName##_TestShell : public UtestShell \ { public: virtual Utest* createTest() { return new TEST_##testGroup##_##testName##_Test; } \ } TEST_##testGroup##_##testName##_TestShell_Instance; \ static TestInstaller TEST_##testGroup##_##testName##_Installer(TEST_##testGroup##_##testName##_TestShell_Instance, #testGroup, #testName, __FILE__,__LINE__); \ void TEST_##testGroup##_##testName##_Test::testBody() #define TEST_F(testGroup, testName) \ /* external declaration */ \ class TEST_##testGroup##_##testName##_TestShell; \ extern TEST_##testGroup##_##testName##_TestShell TEST_##testGroup##_##testName##_TestShell_instance; \ class TEST_##testGroup##_##testName##_Test : public testGroup \ { public: TEST_##testGroup##_##testName##_Test () : testGroup () {} \ void testBody(); }; \ class TEST_##testGroup##_##testName##_TestShell : public UtestShell { \ virtual Utest* createTest() { return new TEST_##testGroup##_##testName##_Test; } \ } TEST_##testGroup##_##testName##_TestShell_instance; \ static TestInstaller TEST_##testGroup##_##testName##_Installer(TEST_##testGroup##_##testName##_TestShell_instance, #testGroup, #testName, __FILE__,__LINE__); \ void TEST_##testGroup##_##testName##_Test::testBody() /* * NOTICE: * * Code duplicated from UtestMacros.h. Its hard to share as don't want to include the CppUTest * macros in the gtest interface. * */ #define EXPECT_EQ(expected, actual) \ if ((expected) != (actual))\ {\ { \ UtestShell::getTestResult()->countCheck();\ CheckEqualFailure _f(UtestShell::getCurrent(), __FILE__, __LINE__, StringFrom(expected), StringFrom(actual)); \ UtestShell::getTestResult()->addFailure(_f);\ } \ UtestShell::getCurrent()->exitCurrentTest(); \ }\ else\ UtestShell::getTestResult()->countCheck(); #define EXPECT_TRUE(condition) \ { UtestShell::getCurrent()->assertTrue((condition) != 0, "EXPECT_TRUE", #condition, __FILE__, __LINE__); } #define EXPECT_FALSE(condition) \ { UtestShell::getCurrent()->assertTrue((condition) == 0, "EXPECT_FALSE", #condition, __FILE__, __LINE__); } #define EXPECT_STREQ(expected, actual) \ { UtestShell::getCurrent()->assertCstrEqual(expected, actual, __FILE__, __LINE__); } #define ASSERT_EQ(expected, actual) EXPECT_EQ(expected, actual) #define ASSERT_TRUE(condition) EXPECT_TRUE(condition) namespace testing { class Test : public Utest { virtual void SetUp(){} virtual void TearDown(){} void setup() { SetUp(); } void teardown() { TearDown(); } }; } cpputest-3.4/include/Platforms/0000755000175300017530000000000012143642712013632 500000000000000cpputest-3.4/include/Platforms/Gcc/0000755000175300017530000000000012143642714014330 500000000000000cpputest-3.4/include/Platforms/Gcc/Platform.h0000644000175300017530000000323512023251675016207 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef D_Gcc_Platform_H #define D_Gcc_Platform_H #endif cpputest-3.4/include/Platforms/StarterKit/0000755000175300017530000000000012143642714015730 500000000000000cpputest-3.4/include/Platforms/StarterKit/Platform.h0000644000175300017530000000323512023251675017607 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef D_Gcc_Platform_H #define D_Gcc_Platform_H #endif cpputest-3.4/include/Platforms/Symbian/0000755000175300017530000000000012143642714015236 500000000000000cpputest-3.4/include/Platforms/Symbian/Platform.h0000644000175300017530000000010212023251675017103 00000000000000 #ifndef PLATFORM_H_ #define PLATFORM_H_ #endif /*PLATFORM_H_*/ cpputest-3.4/include/Platforms/VisualCpp/0000755000175300017530000000000012143642714015542 500000000000000cpputest-3.4/include/Platforms/VisualCpp/Platform.h0000644000175300017530000000362212023251675017421 00000000000000/* * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifdef _MSC_VER #pragma warning(disable:4786) #pragma warning(disable:4290) #pragma warning(disable:4996) #endif #ifdef WIN32 #ifdef _VC80_UPGRADE #pragma warning(disable:4996) #pragma warning(disable:4290) #else #define vsnprintf _vsnprintf #endif #endif cpputest-3.4/include/Platforms/VisualCpp/stdint.h0000644000175300017530000001336512023251675017147 00000000000000/* ISO C9x 7.18 Integer types * Based on ISO/IEC SC22/WG14 9899 Committee draft (SC22 N2794) * * THIS SOFTWARE IS NOT COPYRIGHTED * * Contributor: Danny Smith * * This source code is offered for use in the public domain. You may * use, modify or distribute it freely. * * This code is distributed in the hope that it will be useful but * WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY * DISCLAIMED. This includes but is not limited to warranties of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * * Date: 2000-12-02 */ #ifndef _STDINT_H #define _STDINT_H #define __need_wint_t #define __need_wchar_t #include /* 7.18.1.1 Exact-width integer types */ typedef signed char int8_t; typedef unsigned char uint8_t; typedef short int16_t; typedef unsigned short uint16_t; typedef int int32_t; typedef unsigned uint32_t; //typedef long long int64_t; //typedef unsigned long long uint64_t; /* 7.18.1.2 Minimum-width integer types */ typedef signed char int_least8_t; typedef unsigned char uint_least8_t; typedef short int_least16_t; typedef unsigned short uint_least16_t; typedef int int_least32_t; typedef unsigned uint_least32_t; //typedef long long int_least64_t; //typedef unsigned long long uint_least64_t; /* 7.18.1.3 Fastest minimum-width integer types * Not actually guaranteed to be fastest for all purposes * Here we use the exact-width types for 8 and 16-bit ints. */ typedef signed char int_fast8_t; typedef unsigned char uint_fast8_t; typedef short int_fast16_t; typedef unsigned short uint_fast16_t; typedef int int_fast32_t; typedef unsigned int uint_fast32_t; //typedef long long int_fast64_t; //typedef unsigned long long uint_fast64_t; /* 7.18.1.4 Integer types capable of holding object pointers */ #ifndef _INTPTR_T_DEFINED #define _INTPTR_T_DEFINED #ifdef _WIN64 typedef __int64 intptr_t; #else typedef int intptr_t; #endif #endif #ifndef _UINTPTR_T_DEFINED #define _UINTPTR_T_DEFINED #ifdef _WIN64 typedef unsigned __int64 uintptr_t; #else typedef unsigned int uintptr_t; #endif #endif /* 7.18.1.5 Greatest-width integer types */ //typedef long long intmax_t; //typedef unsigned long long uintmax_t; /* 7.18.2 Limits of specified-width integer types */ #if !defined ( __cplusplus) || defined (__STDC_LIMIT_MACROS) /* 7.18.2.1 Limits of exact-width integer types */ #define INT8_MIN (-128) #define INT16_MIN (-32768) #define INT32_MIN (-2147483647 - 1) #define INT64_MIN (-9223372036854775807LL - 1) #define INT8_MAX 127 #define INT16_MAX 32767 #define INT32_MAX 2147483647 #define INT64_MAX 9223372036854775807LL #define UINT8_MAX 0xff /* 255U */ #define UINT16_MAX 0xffff /* 65535U */ #define UINT32_MAX 0xffffffff /* 4294967295U */ #define UINT64_MAX 0xffffffffffffffffULL /* 18446744073709551615ULL */ /* 7.18.2.2 Limits of minimum-width integer types */ #define INT_LEAST8_MIN INT8_MIN #define INT_LEAST16_MIN INT16_MIN #define INT_LEAST32_MIN INT32_MIN #define INT_LEAST64_MIN INT64_MIN #define INT_LEAST8_MAX INT8_MAX #define INT_LEAST16_MAX INT16_MAX #define INT_LEAST32_MAX INT32_MAX #define INT_LEAST64_MAX INT64_MAX #define UINT_LEAST8_MAX UINT8_MAX #define UINT_LEAST16_MAX UINT16_MAX #define UINT_LEAST32_MAX UINT32_MAX #define UINT_LEAST64_MAX UINT64_MAX /* 7.18.2.3 Limits of fastest minimum-width integer types */ #define INT_FAST8_MIN INT8_MIN #define INT_FAST16_MIN INT16_MIN #define INT_FAST32_MIN INT32_MIN #define INT_FAST64_MIN INT64_MIN #define INT_FAST8_MAX INT8_MAX #define INT_FAST16_MAX INT16_MAX #define INT_FAST32_MAX INT32_MAX #define INT_FAST64_MAX INT64_MAX #define UINT_FAST8_MAX UINT8_MAX #define UINT_FAST16_MAX UINT16_MAX #define UINT_FAST32_MAX UINT32_MAX #define UINT_FAST64_MAX UINT64_MAX /* 7.18.2.4 Limits of integer types capable of holding object pointers */ #ifdef _WIN64 #define INTPTR_MIN INT64_MIN #define INTPTR_MAX INT64_MAX #define UINTPTR_MAX UINT64_MAX #else #define INTPTR_MIN INT32_MIN #define INTPTR_MAX INT32_MAX #define UINTPTR_MAX UINT32_MAX #endif /* 7.18.2.5 Limits of greatest-width integer types */ #define INTMAX_MIN INT64_MIN #define INTMAX_MAX INT64_MAX #define UINTMAX_MAX UINT64_MAX /* 7.18.3 Limits of other integer types */ #define PTRDIFF_MIN INTPTR_MIN #define PTRDIFF_MAX INTPTR_MAX #define SIG_ATOMIC_MIN INTPTR_MIN #define SIG_ATOMIC_MAX INTPTR_MAX #define SIZE_MAX UINTPTR_MAX #ifndef WCHAR_MIN /* also in wchar.h */ #define WCHAR_MIN 0 #define WCHAR_MAX 0xffff /* UINT16_MAX */ #endif /* * wint_t is unsigned short for compatibility with MS runtime */ #define WINT_MIN 0 #define WINT_MAX 0xffff /* UINT16_MAX */ #endif /* !defined ( __cplusplus) || defined __STDC_LIMIT_MACROS */ /* 7.18.4 Macros for integer constants */ #if !defined ( __cplusplus) || defined (__STDC_CONSTANT_MACROS) /* 7.18.4.1 Macros for minimum-width integer constants Accoding to Douglas Gwyn : "This spec was changed in ISO/IEC 9899:1999 TC1; in ISO/IEC 9899:1999 as initially published, the expansion was required to be an integer constant of precisely matching type, which is impossible to accomplish for the shorter types on most platforms, because C99 provides no standard way to designate an integer constant with width less than that of type int. TC1 changed this to require just an integer constant *expression* with *promoted* type." */ #define INT8_C(val) val #define UINT8_C(val) val #define INT16_C(val) val #define UINT16_C(val) val #define INT32_C(val) val #define UINT32_C(val) val##U #define INT64_C(val) val##LL #define UINT64_C(val) val##ULL /* 7.18.4.2 Macros for greatest-width integer constants */ #define INTMAX_C(val) INT64_C(val) #define UINTMAX_C(val) UINT64_C(val) #endif /* !defined ( __cplusplus) || defined __STDC_CONSTANT_MACROS */ #endif cpputest-3.4/lib/0000755000175300017530000000000012143642714011010 500000000000000cpputest-3.4/lib/NoteOnVisualStudio.txt0000644000175300017530000000041012023251675015241 00000000000000This directory will contain the last lib created by any of the visual studion builds. In case you simultaneously use more than one VS version, there are subdirectories for each supported VS version where CppUTest.lib and the associated pdb file are copied. cpputest-3.4/m4/0000755000175300017530000000000012143642712010560 500000000000000cpputest-3.4/m4/acx_pthread.m40000644000175300017530000002237412140134154013225 00000000000000dnl @synopsis ACX_PTHREAD([ACTION-IF-FOUND[, ACTION-IF-NOT-FOUND]]) dnl dnl @summary figure out how to build C programs using POSIX threads dnl dnl This macro figures out how to build C programs using POSIX threads. dnl It sets the PTHREAD_LIBS output variable to the threads library and dnl linker flags, and the PTHREAD_CFLAGS output variable to any special dnl C compiler flags that are needed. (The user can also force certain dnl compiler flags/libs to be tested by setting these environment dnl variables.) dnl dnl Also sets PTHREAD_CC to any special C compiler that is needed for dnl multi-threaded programs (defaults to the value of CC otherwise). dnl (This is necessary on AIX to use the special cc_r compiler alias.) dnl dnl NOTE: You are assumed to not only compile your program with these dnl flags, but also link it with them as well. e.g. you should link dnl with $PTHREAD_CC $CFLAGS $PTHREAD_CFLAGS $LDFLAGS ... $PTHREAD_LIBS dnl $LIBS dnl dnl If you are only building threads programs, you may wish to use dnl these variables in your default LIBS, CFLAGS, and CC: dnl dnl LIBS="$PTHREAD_LIBS $LIBS" dnl CFLAGS="$CFLAGS $PTHREAD_CFLAGS" dnl CC="$PTHREAD_CC" dnl dnl In addition, if the PTHREAD_CREATE_JOINABLE thread-attribute dnl constant has a nonstandard name, defines PTHREAD_CREATE_JOINABLE to dnl that name (e.g. PTHREAD_CREATE_UNDETACHED on AIX). dnl dnl ACTION-IF-FOUND is a list of shell commands to run if a threads dnl library is found, and ACTION-IF-NOT-FOUND is a list of commands to dnl run it if it is not found. If ACTION-IF-FOUND is not specified, the dnl default action will define HAVE_PTHREAD. dnl dnl Please let the authors know if this macro fails on any platform, or dnl if you have any other suggestions or comments. This macro was based dnl on work by SGJ on autoconf scripts for FFTW (www.fftw.org) (with dnl help from M. Frigo), as well as ac_pthread and hb_pthread macros dnl posted by Alejandro Forero Cuervo to the autoconf macro repository. dnl We are also grateful for the helpful feedback of numerous users. dnl dnl @category InstalledPackages dnl @author Steven G. Johnson dnl @version 2006-05-29 dnl @license GPLWithACException AC_DEFUN([ACX_PTHREAD], [ AC_REQUIRE([AC_CANONICAL_HOST]) AC_LANG_SAVE AC_LANG_C acx_pthread_ok=no # We used to check for pthread.h first, but this fails if pthread.h # requires special compiler flags (e.g. on True64 or Sequent). # It gets checked for in the link test anyway. # First of all, check if the user has set any of the PTHREAD_LIBS, # etcetera environment variables, and if threads linking works using # them: if test x"$PTHREAD_LIBS$PTHREAD_CFLAGS" != x; then save_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS $PTHREAD_CFLAGS" save_LIBS="$LIBS" LIBS="$PTHREAD_LIBS $LIBS" AC_MSG_CHECKING([for pthread_join in LIBS=$PTHREAD_LIBS with CFLAGS=$PTHREAD_CFLAGS]) AC_TRY_LINK_FUNC(pthread_join, acx_pthread_ok=yes) AC_MSG_RESULT($acx_pthread_ok) if test x"$acx_pthread_ok" = xno; then PTHREAD_LIBS="" PTHREAD_CFLAGS="" fi LIBS="$save_LIBS" CFLAGS="$save_CFLAGS" fi # We must check for the threads library under a number of different # names; the ordering is very important because some systems # (e.g. DEC) have both -lpthread and -lpthreads, where one of the # libraries is broken (non-POSIX). # Create a list of thread flags to try. Items starting with a "-" are # C compiler flags, and other items are library names, except for "none" # which indicates that we try without any flags at all, and "pthread-config" # which is a program returning the flags for the Pth emulation library. acx_pthread_flags="pthreads none -Kthread -kthread lthread -pthread -pthreads -mthreads pthread --thread-safe -mt pthread-config" # The ordering *is* (sometimes) important. Some notes on the # individual items follow: # pthreads: AIX (must check this before -lpthread) # none: in case threads are in libc; should be tried before -Kthread and # other compiler flags to prevent continual compiler warnings # -Kthread: Sequent (threads in libc, but -Kthread needed for pthread.h) # -kthread: FreeBSD kernel threads (preferred to -pthread since SMP-able) # lthread: LinuxThreads port on FreeBSD (also preferred to -pthread) # -pthread: Linux/gcc (kernel threads), BSD/gcc (userland threads) # -pthreads: Solaris/gcc # -mthreads: Mingw32/gcc, Lynx/gcc # -mt: Sun Workshop C (may only link SunOS threads [-lthread], but it # doesn't hurt to check since this sometimes defines pthreads too; # also defines -D_REENTRANT) # ... -mt is also the pthreads flag for HP/aCC # pthread: Linux, etcetera # --thread-safe: KAI C++ # pthread-config: use pthread-config program (for GNU Pth library) case "${host_cpu}-${host_os}" in *solaris*) # On Solaris (at least, for some versions), libc contains stubbed # (non-functional) versions of the pthreads routines, so link-based # tests will erroneously succeed. (We need to link with -pthreads/-mt/ # -lpthread.) (The stubs are missing pthread_cleanup_push, or rather # a function called by this macro, so we could check for that, but # who knows whether they'll stub that too in a future libc.) So, # we'll just look for -pthreads and -lpthread first: acx_pthread_flags="-pthreads pthread -mt -pthread $acx_pthread_flags" ;; esac if test x"$acx_pthread_ok" = xno; then for flag in $acx_pthread_flags; do case $flag in none) AC_MSG_CHECKING([whether pthreads work without any flags]) ;; -*) AC_MSG_CHECKING([whether pthreads work with $flag]) PTHREAD_CFLAGS="$flag" ;; pthread-config) AC_CHECK_PROG(acx_pthread_config, pthread-config, yes, no) if test x"$acx_pthread_config" = xno; then continue; fi PTHREAD_CFLAGS="`pthread-config --cflags`" PTHREAD_LIBS="`pthread-config --ldflags` `pthread-config --libs`" ;; *) AC_MSG_CHECKING([for the pthreads library -l$flag]) PTHREAD_LIBS="-l$flag" ;; esac save_LIBS="$LIBS" save_CFLAGS="$CFLAGS" LIBS="$PTHREAD_LIBS $LIBS" CFLAGS="$CFLAGS $PTHREAD_CFLAGS" # Check for various functions. We must include pthread.h, # since some functions may be macros. (On the Sequent, we # need a special flag -Kthread to make this header compile.) # We check for pthread_join because it is in -lpthread on IRIX # while pthread_create is in libc. We check for pthread_attr_init # due to DEC craziness with -lpthreads. We check for # pthread_cleanup_push because it is one of the few pthread # functions on Solaris that doesn't have a non-functional libc stub. # We try pthread_create on general principles. AC_TRY_LINK([#include ], [pthread_t th; pthread_join(th, 0); pthread_attr_init(0); pthread_cleanup_push(0, 0); pthread_create(0,0,0,0); pthread_cleanup_pop(0); ], [acx_pthread_ok=yes]) LIBS="$save_LIBS" CFLAGS="$save_CFLAGS" AC_MSG_RESULT($acx_pthread_ok) if test "x$acx_pthread_ok" = xyes; then break; fi PTHREAD_LIBS="" PTHREAD_CFLAGS="" done fi # Various other checks: if test "x$acx_pthread_ok" = xyes; then save_LIBS="$LIBS" LIBS="$PTHREAD_LIBS $LIBS" save_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS $PTHREAD_CFLAGS" # Detect AIX lossage: JOINABLE attribute is called UNDETACHED. AC_MSG_CHECKING([for joinable pthread attribute]) attr_name=unknown for attr in PTHREAD_CREATE_JOINABLE PTHREAD_CREATE_UNDETACHED; do AC_TRY_LINK([#include ], [int attr=$attr; return attr;], [attr_name=$attr; break]) done AC_MSG_RESULT($attr_name) if test "$attr_name" != PTHREAD_CREATE_JOINABLE; then AC_DEFINE_UNQUOTED(PTHREAD_CREATE_JOINABLE, $attr_name, [Define to necessary symbol if this constant uses a non-standard name on your system.]) fi AC_MSG_CHECKING([if more special flags are required for pthreads]) flag=no case "${host_cpu}-${host_os}" in *-aix* | *-freebsd* | *-darwin*) flag="-D_THREAD_SAFE";; *solaris* | *-osf* | *-hpux*) flag="-D_REENTRANT";; esac AC_MSG_RESULT(${flag}) if test "x$flag" != xno; then PTHREAD_CFLAGS="$flag $PTHREAD_CFLAGS" fi LIBS="$save_LIBS" CFLAGS="$save_CFLAGS" # More AIX lossage: must compile with xlc_r or cc_r if test x"$GCC" != xyes; then AC_CHECK_PROGS(PTHREAD_CC, xlc_r cc_r, ${CC}) else PTHREAD_CC=$CC fi else PTHREAD_CC="$CC" fi AC_SUBST(PTHREAD_LIBS) AC_SUBST(PTHREAD_CFLAGS) AC_SUBST(PTHREAD_CC) # Finally, execute ACTION-IF-FOUND/ACTION-IF-NOT-FOUND: if test x"$acx_pthread_ok" = xyes; then ifelse([$1],,AC_DEFINE(HAVE_PTHREAD,1,[Define if you have POSIX threads libraries and header files.]),[$1]) : else acx_pthread_ok=no $2 fi AC_LANG_RESTORE ])dnl ACX_PTHREAD cpputest-3.4/m4/libtool.m40000644000175300017530000104622012134202464012407 00000000000000# libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- # # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, # 2006, 2007, 2008, 2009, 2010 Free Software Foundation, # Inc. # Written by Gordon Matzigkeit, 1996 # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. m4_define([_LT_COPYING], [dnl # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, # 2006, 2007, 2008, 2009, 2010 Free Software Foundation, # Inc. # Written by Gordon Matzigkeit, 1996 # # This file is part of GNU Libtool. # # GNU Libtool is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as # published by the Free Software Foundation; either version 2 of # the License, or (at your option) any later version. # # As a special exception to the GNU General Public License, # if you distribute this file as part of a program or library that # is built using GNU Libtool, you may include this file under the # same distribution terms that you use for the rest of that program. # # GNU Libtool is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with GNU Libtool; see the file COPYING. If not, a copy # can be downloaded from http://www.gnu.org/licenses/gpl.html, or # obtained by writing to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. ]) # serial 57 LT_INIT # LT_PREREQ(VERSION) # ------------------ # Complain and exit if this libtool version is less that VERSION. m4_defun([LT_PREREQ], [m4_if(m4_version_compare(m4_defn([LT_PACKAGE_VERSION]), [$1]), -1, [m4_default([$3], [m4_fatal([Libtool version $1 or higher is required], 63)])], [$2])]) # _LT_CHECK_BUILDDIR # ------------------ # Complain if the absolute build directory name contains unusual characters m4_defun([_LT_CHECK_BUILDDIR], [case `pwd` in *\ * | *\ *) AC_MSG_WARN([Libtool does not cope well with whitespace in `pwd`]) ;; esac ]) # LT_INIT([OPTIONS]) # ------------------ AC_DEFUN([LT_INIT], [AC_PREREQ([2.58])dnl We use AC_INCLUDES_DEFAULT AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl AC_BEFORE([$0], [LT_LANG])dnl AC_BEFORE([$0], [LT_OUTPUT])dnl AC_BEFORE([$0], [LTDL_INIT])dnl m4_require([_LT_CHECK_BUILDDIR])dnl dnl Autoconf doesn't catch unexpanded LT_ macros by default: m4_pattern_forbid([^_?LT_[A-Z_]+$])dnl m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])dnl dnl aclocal doesn't pull ltoptions.m4, ltsugar.m4, or ltversion.m4 dnl unless we require an AC_DEFUNed macro: AC_REQUIRE([LTOPTIONS_VERSION])dnl AC_REQUIRE([LTSUGAR_VERSION])dnl AC_REQUIRE([LTVERSION_VERSION])dnl AC_REQUIRE([LTOBSOLETE_VERSION])dnl m4_require([_LT_PROG_LTMAIN])dnl _LT_SHELL_INIT([SHELL=${CONFIG_SHELL-/bin/sh}]) dnl Parse OPTIONS _LT_SET_OPTIONS([$0], [$1]) # This can be used to rebuild libtool when needed LIBTOOL_DEPS="$ltmain" # Always use our own libtool. LIBTOOL='$(SHELL) $(top_builddir)/libtool' AC_SUBST(LIBTOOL)dnl _LT_SETUP # Only expand once: m4_define([LT_INIT]) ])# LT_INIT # Old names: AU_ALIAS([AC_PROG_LIBTOOL], [LT_INIT]) AU_ALIAS([AM_PROG_LIBTOOL], [LT_INIT]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_PROG_LIBTOOL], []) dnl AC_DEFUN([AM_PROG_LIBTOOL], []) # _LT_CC_BASENAME(CC) # ------------------- # Calculate cc_basename. Skip known compiler wrappers and cross-prefix. m4_defun([_LT_CC_BASENAME], [for cc_temp in $1""; do case $cc_temp in compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;; distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` ]) # _LT_FILEUTILS_DEFAULTS # ---------------------- # It is okay to use these file commands and assume they have been set # sensibly after `m4_require([_LT_FILEUTILS_DEFAULTS])'. m4_defun([_LT_FILEUTILS_DEFAULTS], [: ${CP="cp -f"} : ${MV="mv -f"} : ${RM="rm -f"} ])# _LT_FILEUTILS_DEFAULTS # _LT_SETUP # --------- m4_defun([_LT_SETUP], [AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl AC_REQUIRE([_LT_PREPARE_SED_QUOTE_VARS])dnl AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])dnl _LT_DECL([], [host_alias], [0], [The host system])dnl _LT_DECL([], [host], [0])dnl _LT_DECL([], [host_os], [0])dnl dnl _LT_DECL([], [build_alias], [0], [The build system])dnl _LT_DECL([], [build], [0])dnl _LT_DECL([], [build_os], [0])dnl dnl AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([LT_PATH_LD])dnl AC_REQUIRE([LT_PATH_NM])dnl dnl AC_REQUIRE([AC_PROG_LN_S])dnl test -z "$LN_S" && LN_S="ln -s" _LT_DECL([], [LN_S], [1], [Whether we need soft or hard links])dnl dnl AC_REQUIRE([LT_CMD_MAX_LEN])dnl _LT_DECL([objext], [ac_objext], [0], [Object file suffix (normally "o")])dnl _LT_DECL([], [exeext], [0], [Executable file suffix (normally "")])dnl dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_CHECK_SHELL_FEATURES])dnl m4_require([_LT_PATH_CONVERSION_FUNCTIONS])dnl m4_require([_LT_CMD_RELOAD])dnl m4_require([_LT_CHECK_MAGIC_METHOD])dnl m4_require([_LT_CHECK_SHAREDLIB_FROM_LINKLIB])dnl m4_require([_LT_CMD_OLD_ARCHIVE])dnl m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl m4_require([_LT_WITH_SYSROOT])dnl _LT_CONFIG_LIBTOOL_INIT([ # See if we are running on zsh, and set the options which allow our # commands through without removal of \ escapes INIT. if test -n "\${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi ]) if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi _LT_CHECK_OBJDIR m4_require([_LT_TAG_COMPILER])dnl case $host_os in aix3*) # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test "X${COLLECT_NAMES+set}" != Xset; then COLLECT_NAMES= export COLLECT_NAMES fi ;; esac # Global variables: ofile=libtool can_build_shared=yes # All known linkers require a `.a' archive for static linking (except MSVC, # which needs '.lib'). libext=a with_gnu_ld="$lt_cv_prog_gnu_ld" old_CC="$CC" old_CFLAGS="$CFLAGS" # Set sane defaults for various variables test -z "$CC" && CC=cc test -z "$LTCC" && LTCC=$CC test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS test -z "$LD" && LD=ld test -z "$ac_objext" && ac_objext=o _LT_CC_BASENAME([$compiler]) # Only perform the check for file, if the check method requires it test -z "$MAGIC_CMD" && MAGIC_CMD=file case $deplibs_check_method in file_magic*) if test "$file_magic_cmd" = '$MAGIC_CMD'; then _LT_PATH_MAGIC fi ;; esac # Use C for the default configuration in the libtool script LT_SUPPORTED_TAG([CC]) _LT_LANG_C_CONFIG _LT_LANG_DEFAULT_CONFIG _LT_CONFIG_COMMANDS ])# _LT_SETUP # _LT_PREPARE_SED_QUOTE_VARS # -------------------------- # Define a few sed substitution that help us do robust quoting. m4_defun([_LT_PREPARE_SED_QUOTE_VARS], [# Backslashify metacharacters that are still active within # double-quoted strings. sed_quote_subst='s/\([["`$\\]]\)/\\\1/g' # Same as above, but do not quote variable references. double_quote_subst='s/\([["`\\]]\)/\\\1/g' # Sed substitution to delay expansion of an escaped shell variable in a # double_quote_subst'ed string. delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' # Sed substitution to delay expansion of an escaped single quote. delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g' # Sed substitution to avoid accidental globbing in evaled expressions no_glob_subst='s/\*/\\\*/g' ]) # _LT_PROG_LTMAIN # --------------- # Note that this code is called both from `configure', and `config.status' # now that we use AC_CONFIG_COMMANDS to generate libtool. Notably, # `config.status' has no value for ac_aux_dir unless we are using Automake, # so we pass a copy along to make sure it has a sensible value anyway. m4_defun([_LT_PROG_LTMAIN], [m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([ltmain.sh])])dnl _LT_CONFIG_LIBTOOL_INIT([ac_aux_dir='$ac_aux_dir']) ltmain="$ac_aux_dir/ltmain.sh" ])# _LT_PROG_LTMAIN ## ------------------------------------- ## ## Accumulate code for creating libtool. ## ## ------------------------------------- ## # So that we can recreate a full libtool script including additional # tags, we accumulate the chunks of code to send to AC_CONFIG_COMMANDS # in macros and then make a single call at the end using the `libtool' # label. # _LT_CONFIG_LIBTOOL_INIT([INIT-COMMANDS]) # ---------------------------------------- # Register INIT-COMMANDS to be passed to AC_CONFIG_COMMANDS later. m4_define([_LT_CONFIG_LIBTOOL_INIT], [m4_ifval([$1], [m4_append([_LT_OUTPUT_LIBTOOL_INIT], [$1 ])])]) # Initialize. m4_define([_LT_OUTPUT_LIBTOOL_INIT]) # _LT_CONFIG_LIBTOOL([COMMANDS]) # ------------------------------ # Register COMMANDS to be passed to AC_CONFIG_COMMANDS later. m4_define([_LT_CONFIG_LIBTOOL], [m4_ifval([$1], [m4_append([_LT_OUTPUT_LIBTOOL_COMMANDS], [$1 ])])]) # Initialize. m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS]) # _LT_CONFIG_SAVE_COMMANDS([COMMANDS], [INIT_COMMANDS]) # ----------------------------------------------------- m4_defun([_LT_CONFIG_SAVE_COMMANDS], [_LT_CONFIG_LIBTOOL([$1]) _LT_CONFIG_LIBTOOL_INIT([$2]) ]) # _LT_FORMAT_COMMENT([COMMENT]) # ----------------------------- # Add leading comment marks to the start of each line, and a trailing # full-stop to the whole comment if one is not present already. m4_define([_LT_FORMAT_COMMENT], [m4_ifval([$1], [ m4_bpatsubst([m4_bpatsubst([$1], [^ *], [# ])], [['`$\]], [\\\&])]m4_bmatch([$1], [[!?.]$], [], [.]) )]) ## ------------------------ ## ## FIXME: Eliminate VARNAME ## ## ------------------------ ## # _LT_DECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION], [IS-TAGGED?]) # ------------------------------------------------------------------- # CONFIGNAME is the name given to the value in the libtool script. # VARNAME is the (base) name used in the configure script. # VALUE may be 0, 1 or 2 for a computed quote escaped value based on # VARNAME. Any other value will be used directly. m4_define([_LT_DECL], [lt_if_append_uniq([lt_decl_varnames], [$2], [, ], [lt_dict_add_subkey([lt_decl_dict], [$2], [libtool_name], [m4_ifval([$1], [$1], [$2])]) lt_dict_add_subkey([lt_decl_dict], [$2], [value], [$3]) m4_ifval([$4], [lt_dict_add_subkey([lt_decl_dict], [$2], [description], [$4])]) lt_dict_add_subkey([lt_decl_dict], [$2], [tagged?], [m4_ifval([$5], [yes], [no])])]) ]) # _LT_TAGDECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION]) # -------------------------------------------------------- m4_define([_LT_TAGDECL], [_LT_DECL([$1], [$2], [$3], [$4], [yes])]) # lt_decl_tag_varnames([SEPARATOR], [VARNAME1...]) # ------------------------------------------------ m4_define([lt_decl_tag_varnames], [_lt_decl_filter([tagged?], [yes], $@)]) # _lt_decl_filter(SUBKEY, VALUE, [SEPARATOR], [VARNAME1..]) # --------------------------------------------------------- m4_define([_lt_decl_filter], [m4_case([$#], [0], [m4_fatal([$0: too few arguments: $#])], [1], [m4_fatal([$0: too few arguments: $#: $1])], [2], [lt_dict_filter([lt_decl_dict], [$1], [$2], [], lt_decl_varnames)], [3], [lt_dict_filter([lt_decl_dict], [$1], [$2], [$3], lt_decl_varnames)], [lt_dict_filter([lt_decl_dict], $@)])[]dnl ]) # lt_decl_quote_varnames([SEPARATOR], [VARNAME1...]) # -------------------------------------------------- m4_define([lt_decl_quote_varnames], [_lt_decl_filter([value], [1], $@)]) # lt_decl_dquote_varnames([SEPARATOR], [VARNAME1...]) # --------------------------------------------------- m4_define([lt_decl_dquote_varnames], [_lt_decl_filter([value], [2], $@)]) # lt_decl_varnames_tagged([SEPARATOR], [VARNAME1...]) # --------------------------------------------------- m4_define([lt_decl_varnames_tagged], [m4_assert([$# <= 2])dnl _$0(m4_quote(m4_default([$1], [[, ]])), m4_ifval([$2], [[$2]], [m4_dquote(lt_decl_tag_varnames)]), m4_split(m4_normalize(m4_quote(_LT_TAGS)), [ ]))]) m4_define([_lt_decl_varnames_tagged], [m4_ifval([$3], [lt_combine([$1], [$2], [_], $3)])]) # lt_decl_all_varnames([SEPARATOR], [VARNAME1...]) # ------------------------------------------------ m4_define([lt_decl_all_varnames], [_$0(m4_quote(m4_default([$1], [[, ]])), m4_if([$2], [], m4_quote(lt_decl_varnames), m4_quote(m4_shift($@))))[]dnl ]) m4_define([_lt_decl_all_varnames], [lt_join($@, lt_decl_varnames_tagged([$1], lt_decl_tag_varnames([[, ]], m4_shift($@))))dnl ]) # _LT_CONFIG_STATUS_DECLARE([VARNAME]) # ------------------------------------ # Quote a variable value, and forward it to `config.status' so that its # declaration there will have the same value as in `configure'. VARNAME # must have a single quote delimited value for this to work. m4_define([_LT_CONFIG_STATUS_DECLARE], [$1='`$ECHO "$][$1" | $SED "$delay_single_quote_subst"`']) # _LT_CONFIG_STATUS_DECLARATIONS # ------------------------------ # We delimit libtool config variables with single quotes, so when # we write them to config.status, we have to be sure to quote all # embedded single quotes properly. In configure, this macro expands # each variable declared with _LT_DECL (and _LT_TAGDECL) into: # # ='`$ECHO "$" | $SED "$delay_single_quote_subst"`' m4_defun([_LT_CONFIG_STATUS_DECLARATIONS], [m4_foreach([_lt_var], m4_quote(lt_decl_all_varnames), [m4_n([_LT_CONFIG_STATUS_DECLARE(_lt_var)])])]) # _LT_LIBTOOL_TAGS # ---------------- # Output comment and list of tags supported by the script m4_defun([_LT_LIBTOOL_TAGS], [_LT_FORMAT_COMMENT([The names of the tagged configurations supported by this script])dnl available_tags="_LT_TAGS"dnl ]) # _LT_LIBTOOL_DECLARE(VARNAME, [TAG]) # ----------------------------------- # Extract the dictionary values for VARNAME (optionally with TAG) and # expand to a commented shell variable setting: # # # Some comment about what VAR is for. # visible_name=$lt_internal_name m4_define([_LT_LIBTOOL_DECLARE], [_LT_FORMAT_COMMENT(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [description])))[]dnl m4_pushdef([_libtool_name], m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [libtool_name])))[]dnl m4_case(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [value])), [0], [_libtool_name=[$]$1], [1], [_libtool_name=$lt_[]$1], [2], [_libtool_name=$lt_[]$1], [_libtool_name=lt_dict_fetch([lt_decl_dict], [$1], [value])])[]dnl m4_ifval([$2], [_$2])[]m4_popdef([_libtool_name])[]dnl ]) # _LT_LIBTOOL_CONFIG_VARS # ----------------------- # Produce commented declarations of non-tagged libtool config variables # suitable for insertion in the LIBTOOL CONFIG section of the `libtool' # script. Tagged libtool config variables (even for the LIBTOOL CONFIG # section) are produced by _LT_LIBTOOL_TAG_VARS. m4_defun([_LT_LIBTOOL_CONFIG_VARS], [m4_foreach([_lt_var], m4_quote(_lt_decl_filter([tagged?], [no], [], lt_decl_varnames)), [m4_n([_LT_LIBTOOL_DECLARE(_lt_var)])])]) # _LT_LIBTOOL_TAG_VARS(TAG) # ------------------------- m4_define([_LT_LIBTOOL_TAG_VARS], [m4_foreach([_lt_var], m4_quote(lt_decl_tag_varnames), [m4_n([_LT_LIBTOOL_DECLARE(_lt_var, [$1])])])]) # _LT_TAGVAR(VARNAME, [TAGNAME]) # ------------------------------ m4_define([_LT_TAGVAR], [m4_ifval([$2], [$1_$2], [$1])]) # _LT_CONFIG_COMMANDS # ------------------- # Send accumulated output to $CONFIG_STATUS. Thanks to the lists of # variables for single and double quote escaping we saved from calls # to _LT_DECL, we can put quote escaped variables declarations # into `config.status', and then the shell code to quote escape them in # for loops in `config.status'. Finally, any additional code accumulated # from calls to _LT_CONFIG_LIBTOOL_INIT is expanded. m4_defun([_LT_CONFIG_COMMANDS], [AC_PROVIDE_IFELSE([LT_OUTPUT], dnl If the libtool generation code has been placed in $CONFIG_LT, dnl instead of duplicating it all over again into config.status, dnl then we will have config.status run $CONFIG_LT later, so it dnl needs to know what name is stored there: [AC_CONFIG_COMMANDS([libtool], [$SHELL $CONFIG_LT || AS_EXIT(1)], [CONFIG_LT='$CONFIG_LT'])], dnl If the libtool generation code is destined for config.status, dnl expand the accumulated commands and init code now: [AC_CONFIG_COMMANDS([libtool], [_LT_OUTPUT_LIBTOOL_COMMANDS], [_LT_OUTPUT_LIBTOOL_COMMANDS_INIT])]) ])#_LT_CONFIG_COMMANDS # Initialize. m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS_INIT], [ # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH sed_quote_subst='$sed_quote_subst' double_quote_subst='$double_quote_subst' delay_variable_subst='$delay_variable_subst' _LT_CONFIG_STATUS_DECLARATIONS LTCC='$LTCC' LTCFLAGS='$LTCFLAGS' compiler='$compiler_DEFAULT' # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF \$[]1 _LTECHO_EOF' } # Quote evaled strings. for var in lt_decl_all_varnames([[ \ ]], lt_decl_quote_varnames); do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[[\\\\\\\`\\"\\\$]]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done # Double-quote double-evaled strings. for var in lt_decl_all_varnames([[ \ ]], lt_decl_dquote_varnames); do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[[\\\\\\\`\\"\\\$]]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done _LT_OUTPUT_LIBTOOL_INIT ]) # _LT_GENERATED_FILE_INIT(FILE, [COMMENT]) # ------------------------------------ # Generate a child script FILE with all initialization necessary to # reuse the environment learned by the parent script, and make the # file executable. If COMMENT is supplied, it is inserted after the # `#!' sequence but before initialization text begins. After this # macro, additional text can be appended to FILE to form the body of # the child script. The macro ends with non-zero status if the # file could not be fully written (such as if the disk is full). m4_ifdef([AS_INIT_GENERATED], [m4_defun([_LT_GENERATED_FILE_INIT],[AS_INIT_GENERATED($@)])], [m4_defun([_LT_GENERATED_FILE_INIT], [m4_require([AS_PREPARE])]dnl [m4_pushdef([AS_MESSAGE_LOG_FD])]dnl [lt_write_fail=0 cat >$1 <<_ASEOF || lt_write_fail=1 #! $SHELL # Generated by $as_me. $2 SHELL=\${CONFIG_SHELL-$SHELL} export SHELL _ASEOF cat >>$1 <<\_ASEOF || lt_write_fail=1 AS_SHELL_SANITIZE _AS_PREPARE exec AS_MESSAGE_FD>&1 _ASEOF test $lt_write_fail = 0 && chmod +x $1[]dnl m4_popdef([AS_MESSAGE_LOG_FD])])])# _LT_GENERATED_FILE_INIT # LT_OUTPUT # --------- # This macro allows early generation of the libtool script (before # AC_OUTPUT is called), incase it is used in configure for compilation # tests. AC_DEFUN([LT_OUTPUT], [: ${CONFIG_LT=./config.lt} AC_MSG_NOTICE([creating $CONFIG_LT]) _LT_GENERATED_FILE_INIT(["$CONFIG_LT"], [# Run this file to recreate a libtool stub with the current configuration.]) cat >>"$CONFIG_LT" <<\_LTEOF lt_cl_silent=false exec AS_MESSAGE_LOG_FD>>config.log { echo AS_BOX([Running $as_me.]) } >&AS_MESSAGE_LOG_FD lt_cl_help="\ \`$as_me' creates a local libtool stub from the current configuration, for use in further configure time tests before the real libtool is generated. Usage: $[0] [[OPTIONS]] -h, --help print this help, then exit -V, --version print version number, then exit -q, --quiet do not print progress messages -d, --debug don't remove temporary files Report bugs to ." lt_cl_version="\ m4_ifset([AC_PACKAGE_NAME], [AC_PACKAGE_NAME ])config.lt[]dnl m4_ifset([AC_PACKAGE_VERSION], [ AC_PACKAGE_VERSION]) configured by $[0], generated by m4_PACKAGE_STRING. Copyright (C) 2010 Free Software Foundation, Inc. This config.lt script is free software; the Free Software Foundation gives unlimited permision to copy, distribute and modify it." while test $[#] != 0 do case $[1] in --version | --v* | -V ) echo "$lt_cl_version"; exit 0 ;; --help | --h* | -h ) echo "$lt_cl_help"; exit 0 ;; --debug | --d* | -d ) debug=: ;; --quiet | --q* | --silent | --s* | -q ) lt_cl_silent=: ;; -*) AC_MSG_ERROR([unrecognized option: $[1] Try \`$[0] --help' for more information.]) ;; *) AC_MSG_ERROR([unrecognized argument: $[1] Try \`$[0] --help' for more information.]) ;; esac shift done if $lt_cl_silent; then exec AS_MESSAGE_FD>/dev/null fi _LTEOF cat >>"$CONFIG_LT" <<_LTEOF _LT_OUTPUT_LIBTOOL_COMMANDS_INIT _LTEOF cat >>"$CONFIG_LT" <<\_LTEOF AC_MSG_NOTICE([creating $ofile]) _LT_OUTPUT_LIBTOOL_COMMANDS AS_EXIT(0) _LTEOF chmod +x "$CONFIG_LT" # configure is writing to config.log, but config.lt does its own redirection, # appending to config.log, which fails on DOS, as config.log is still kept # open by configure. Here we exec the FD to /dev/null, effectively closing # config.log, so it can be properly (re)opened and appended to by config.lt. lt_cl_success=: test "$silent" = yes && lt_config_lt_args="$lt_config_lt_args --quiet" exec AS_MESSAGE_LOG_FD>/dev/null $SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false exec AS_MESSAGE_LOG_FD>>config.log $lt_cl_success || AS_EXIT(1) ])# LT_OUTPUT # _LT_CONFIG(TAG) # --------------- # If TAG is the built-in tag, create an initial libtool script with a # default configuration from the untagged config vars. Otherwise add code # to config.status for appending the configuration named by TAG from the # matching tagged config vars. m4_defun([_LT_CONFIG], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl _LT_CONFIG_SAVE_COMMANDS([ m4_define([_LT_TAG], m4_if([$1], [], [C], [$1]))dnl m4_if(_LT_TAG, [C], [ # See if we are running on zsh, and set the options which allow our # commands through without removal of \ escapes. if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi cfgfile="${ofile}T" trap "$RM \"$cfgfile\"; exit 1" 1 2 15 $RM "$cfgfile" cat <<_LT_EOF >> "$cfgfile" #! $SHELL # `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services. # Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # NOTE: Changes made to this file will be lost: look at ltmain.sh. # _LT_COPYING _LT_LIBTOOL_TAGS # ### BEGIN LIBTOOL CONFIG _LT_LIBTOOL_CONFIG_VARS _LT_LIBTOOL_TAG_VARS # ### END LIBTOOL CONFIG _LT_EOF case $host_os in aix3*) cat <<\_LT_EOF >> "$cfgfile" # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test "X${COLLECT_NAMES+set}" != Xset; then COLLECT_NAMES= export COLLECT_NAMES fi _LT_EOF ;; esac _LT_PROG_LTMAIN # We use sed instead of cat because bash on DJGPP gets confused if # if finds mixed CR/LF and LF-only lines. Since sed operates in # text mode, it properly converts lines to CR/LF. This bash problem # is reportedly fixed, but why not run on old versions too? sed '$q' "$ltmain" >> "$cfgfile" \ || (rm -f "$cfgfile"; exit 1) _LT_PROG_REPLACE_SHELLFNS mv -f "$cfgfile" "$ofile" || (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") chmod +x "$ofile" ], [cat <<_LT_EOF >> "$ofile" dnl Unfortunately we have to use $1 here, since _LT_TAG is not expanded dnl in a comment (ie after a #). # ### BEGIN LIBTOOL TAG CONFIG: $1 _LT_LIBTOOL_TAG_VARS(_LT_TAG) # ### END LIBTOOL TAG CONFIG: $1 _LT_EOF ])dnl /m4_if ], [m4_if([$1], [], [ PACKAGE='$PACKAGE' VERSION='$VERSION' TIMESTAMP='$TIMESTAMP' RM='$RM' ofile='$ofile'], []) ])dnl /_LT_CONFIG_SAVE_COMMANDS ])# _LT_CONFIG # LT_SUPPORTED_TAG(TAG) # --------------------- # Trace this macro to discover what tags are supported by the libtool # --tag option, using: # autoconf --trace 'LT_SUPPORTED_TAG:$1' AC_DEFUN([LT_SUPPORTED_TAG], []) # C support is built-in for now m4_define([_LT_LANG_C_enabled], []) m4_define([_LT_TAGS], []) # LT_LANG(LANG) # ------------- # Enable libtool support for the given language if not already enabled. AC_DEFUN([LT_LANG], [AC_BEFORE([$0], [LT_OUTPUT])dnl m4_case([$1], [C], [_LT_LANG(C)], [C++], [_LT_LANG(CXX)], [Java], [_LT_LANG(GCJ)], [Fortran 77], [_LT_LANG(F77)], [Fortran], [_LT_LANG(FC)], [Windows Resource], [_LT_LANG(RC)], [m4_ifdef([_LT_LANG_]$1[_CONFIG], [_LT_LANG($1)], [m4_fatal([$0: unsupported language: "$1"])])])dnl ])# LT_LANG # _LT_LANG(LANGNAME) # ------------------ m4_defun([_LT_LANG], [m4_ifdef([_LT_LANG_]$1[_enabled], [], [LT_SUPPORTED_TAG([$1])dnl m4_append([_LT_TAGS], [$1 ])dnl m4_define([_LT_LANG_]$1[_enabled], [])dnl _LT_LANG_$1_CONFIG($1)])dnl ])# _LT_LANG # _LT_LANG_DEFAULT_CONFIG # ----------------------- m4_defun([_LT_LANG_DEFAULT_CONFIG], [AC_PROVIDE_IFELSE([AC_PROG_CXX], [LT_LANG(CXX)], [m4_define([AC_PROG_CXX], defn([AC_PROG_CXX])[LT_LANG(CXX)])]) AC_PROVIDE_IFELSE([AC_PROG_F77], [LT_LANG(F77)], [m4_define([AC_PROG_F77], defn([AC_PROG_F77])[LT_LANG(F77)])]) AC_PROVIDE_IFELSE([AC_PROG_FC], [LT_LANG(FC)], [m4_define([AC_PROG_FC], defn([AC_PROG_FC])[LT_LANG(FC)])]) dnl The call to [A][M_PROG_GCJ] is quoted like that to stop aclocal dnl pulling things in needlessly. AC_PROVIDE_IFELSE([AC_PROG_GCJ], [LT_LANG(GCJ)], [AC_PROVIDE_IFELSE([A][M_PROG_GCJ], [LT_LANG(GCJ)], [AC_PROVIDE_IFELSE([LT_PROG_GCJ], [LT_LANG(GCJ)], [m4_ifdef([AC_PROG_GCJ], [m4_define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[LT_LANG(GCJ)])]) m4_ifdef([A][M_PROG_GCJ], [m4_define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[LT_LANG(GCJ)])]) m4_ifdef([LT_PROG_GCJ], [m4_define([LT_PROG_GCJ], defn([LT_PROG_GCJ])[LT_LANG(GCJ)])])])])]) AC_PROVIDE_IFELSE([LT_PROG_RC], [LT_LANG(RC)], [m4_define([LT_PROG_RC], defn([LT_PROG_RC])[LT_LANG(RC)])]) ])# _LT_LANG_DEFAULT_CONFIG # Obsolete macros: AU_DEFUN([AC_LIBTOOL_CXX], [LT_LANG(C++)]) AU_DEFUN([AC_LIBTOOL_F77], [LT_LANG(Fortran 77)]) AU_DEFUN([AC_LIBTOOL_FC], [LT_LANG(Fortran)]) AU_DEFUN([AC_LIBTOOL_GCJ], [LT_LANG(Java)]) AU_DEFUN([AC_LIBTOOL_RC], [LT_LANG(Windows Resource)]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_CXX], []) dnl AC_DEFUN([AC_LIBTOOL_F77], []) dnl AC_DEFUN([AC_LIBTOOL_FC], []) dnl AC_DEFUN([AC_LIBTOOL_GCJ], []) dnl AC_DEFUN([AC_LIBTOOL_RC], []) # _LT_TAG_COMPILER # ---------------- m4_defun([_LT_TAG_COMPILER], [AC_REQUIRE([AC_PROG_CC])dnl _LT_DECL([LTCC], [CC], [1], [A C compiler])dnl _LT_DECL([LTCFLAGS], [CFLAGS], [1], [LTCC compiler flags])dnl _LT_TAGDECL([CC], [compiler], [1], [A language specific compiler])dnl _LT_TAGDECL([with_gcc], [GCC], [0], [Is the compiler the GNU compiler?])dnl # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC ])# _LT_TAG_COMPILER # _LT_COMPILER_BOILERPLATE # ------------------------ # Check for compiler boilerplate output or warnings with # the simple compiler test code. m4_defun([_LT_COMPILER_BOILERPLATE], [m4_require([_LT_DECL_SED])dnl ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $RM conftest* ])# _LT_COMPILER_BOILERPLATE # _LT_LINKER_BOILERPLATE # ---------------------- # Check for linker boilerplate output or warnings with # the simple link test code. m4_defun([_LT_LINKER_BOILERPLATE], [m4_require([_LT_DECL_SED])dnl ac_outfile=conftest.$ac_objext echo "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $RM -r conftest* ])# _LT_LINKER_BOILERPLATE # _LT_REQUIRED_DARWIN_CHECKS # ------------------------- m4_defun_once([_LT_REQUIRED_DARWIN_CHECKS],[ case $host_os in rhapsody* | darwin*) AC_CHECK_TOOL([DSYMUTIL], [dsymutil], [:]) AC_CHECK_TOOL([NMEDIT], [nmedit], [:]) AC_CHECK_TOOL([LIPO], [lipo], [:]) AC_CHECK_TOOL([OTOOL], [otool], [:]) AC_CHECK_TOOL([OTOOL64], [otool64], [:]) _LT_DECL([], [DSYMUTIL], [1], [Tool to manipulate archived DWARF debug symbol files on Mac OS X]) _LT_DECL([], [NMEDIT], [1], [Tool to change global to local symbols on Mac OS X]) _LT_DECL([], [LIPO], [1], [Tool to manipulate fat objects and archives on Mac OS X]) _LT_DECL([], [OTOOL], [1], [ldd/readelf like tool for Mach-O binaries on Mac OS X]) _LT_DECL([], [OTOOL64], [1], [ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4]) AC_CACHE_CHECK([for -single_module linker flag],[lt_cv_apple_cc_single_mod], [lt_cv_apple_cc_single_mod=no if test -z "${LT_MULTI_MODULE}"; then # By default we will add the -single_module flag. You can override # by either setting the environment variable LT_MULTI_MODULE # non-empty at configure time, or by adding -multi_module to the # link flags. rm -rf libconftest.dylib* echo "int foo(void){return 1;}" > conftest.c echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c" >&AS_MESSAGE_LOG_FD $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c 2>conftest.err _lt_result=$? if test -f libconftest.dylib && test ! -s conftest.err && test $_lt_result = 0; then lt_cv_apple_cc_single_mod=yes else cat conftest.err >&AS_MESSAGE_LOG_FD fi rm -rf libconftest.dylib* rm -f conftest.* fi]) AC_CACHE_CHECK([for -exported_symbols_list linker flag], [lt_cv_ld_exported_symbols_list], [lt_cv_ld_exported_symbols_list=no save_LDFLAGS=$LDFLAGS echo "_main" > conftest.sym LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], [lt_cv_ld_exported_symbols_list=yes], [lt_cv_ld_exported_symbols_list=no]) LDFLAGS="$save_LDFLAGS" ]) AC_CACHE_CHECK([for -force_load linker flag],[lt_cv_ld_force_load], [lt_cv_ld_force_load=no cat > conftest.c << _LT_EOF int forced_loaded() { return 2;} _LT_EOF echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&AS_MESSAGE_LOG_FD $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&AS_MESSAGE_LOG_FD echo "$AR cru libconftest.a conftest.o" >&AS_MESSAGE_LOG_FD $AR cru libconftest.a conftest.o 2>&AS_MESSAGE_LOG_FD echo "$RANLIB libconftest.a" >&AS_MESSAGE_LOG_FD $RANLIB libconftest.a 2>&AS_MESSAGE_LOG_FD cat > conftest.c << _LT_EOF int main() { return 0;} _LT_EOF echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&AS_MESSAGE_LOG_FD $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err _lt_result=$? if test -f conftest && test ! -s conftest.err && test $_lt_result = 0 && $GREP forced_load conftest 2>&1 >/dev/null; then lt_cv_ld_force_load=yes else cat conftest.err >&AS_MESSAGE_LOG_FD fi rm -f conftest.err libconftest.a conftest conftest.c rm -rf conftest.dSYM ]) case $host_os in rhapsody* | darwin1.[[012]]) _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;; darwin1.*) _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; darwin*) # darwin 5.x on # if running on 10.5 or later, the deployment target defaults # to the OS version, if on x86, and 10.4, the deployment # target defaults to 10.4. Don't you love it? case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in 10.0,*86*-darwin8*|10.0,*-darwin[[91]]*) _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; 10.[[012]]*) _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; 10.*) _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; esac ;; esac if test "$lt_cv_apple_cc_single_mod" = "yes"; then _lt_dar_single_mod='$single_module' fi if test "$lt_cv_ld_exported_symbols_list" = "yes"; then _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym' else _lt_dar_export_syms='~$NMEDIT -s $output_objdir/${libname}-symbols.expsym ${lib}' fi if test "$DSYMUTIL" != ":" && test "$lt_cv_ld_force_load" = "no"; then _lt_dsymutil='~$DSYMUTIL $lib || :' else _lt_dsymutil= fi ;; esac ]) # _LT_DARWIN_LINKER_FEATURES # -------------------------- # Checks for linker and compiler features on darwin m4_defun([_LT_DARWIN_LINKER_FEATURES], [ m4_require([_LT_REQUIRED_DARWIN_CHECKS]) _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_automatic, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported if test "$lt_cv_ld_force_load" = "yes"; then _LT_TAGVAR(whole_archive_flag_spec, $1)='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' else _LT_TAGVAR(whole_archive_flag_spec, $1)='' fi _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(allow_undefined_flag, $1)="$_lt_dar_allow_undefined" case $cc_basename in ifort*) _lt_dar_can_shared=yes ;; *) _lt_dar_can_shared=$GCC ;; esac if test "$_lt_dar_can_shared" = "yes"; then output_verbose_link_cmd=func_echo_all _LT_TAGVAR(archive_cmds, $1)="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" _LT_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" _LT_TAGVAR(module_expsym_cmds, $1)="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" m4_if([$1], [CXX], [ if test "$lt_cv_apple_cc_single_mod" != "yes"; then _LT_TAGVAR(archive_cmds, $1)="\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dsymutil}" _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dar_export_syms}${_lt_dsymutil}" fi ],[]) else _LT_TAGVAR(ld_shlibs, $1)=no fi ]) # _LT_SYS_MODULE_PATH_AIX([TAGNAME]) # ---------------------------------- # Links a minimal program and checks the executable # for the system default hardcoded library path. In most cases, # this is /usr/lib:/lib, but when the MPI compilers are used # the location of the communication and MPI libs are included too. # If we don't find anything, use the default library path according # to the aix ld manual. # Store the results from the different compilers for each TAGNAME. # Allow to override them for all tags through lt_cv_aix_libpath. m4_defun([_LT_SYS_MODULE_PATH_AIX], [m4_require([_LT_DECL_SED])dnl if test "${lt_cv_aix_libpath+set}" = set; then aix_libpath=$lt_cv_aix_libpath else AC_CACHE_VAL([_LT_TAGVAR([lt_cv_aix_libpath_], [$1])], [AC_LINK_IFELSE([AC_LANG_PROGRAM],[ lt_aix_libpath_sed='[ /Import File Strings/,/^$/ { /^0/ { s/^0 *\([^ ]*\) *$/\1/ p } }]' _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi],[]) if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then _LT_TAGVAR([lt_cv_aix_libpath_], [$1])="/usr/lib:/lib" fi ]) aix_libpath=$_LT_TAGVAR([lt_cv_aix_libpath_], [$1]) fi ])# _LT_SYS_MODULE_PATH_AIX # _LT_SHELL_INIT(ARG) # ------------------- m4_define([_LT_SHELL_INIT], [m4_divert_text([M4SH-INIT], [$1 ])])# _LT_SHELL_INIT # _LT_PROG_ECHO_BACKSLASH # ----------------------- # Find how we can fake an echo command that does not interpret backslash. # In particular, with Autoconf 2.60 or later we add some code to the start # of the generated configure script which will find a shell with a builtin # printf (which we can use as an echo command). m4_defun([_LT_PROG_ECHO_BACKSLASH], [ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO AC_MSG_CHECKING([how to print strings]) # Test print first, because it will be a builtin if present. if test "X`( print -r -- -n ) 2>/dev/null`" = X-n && \ test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then ECHO='print -r --' elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then ECHO='printf %s\n' else # Use this function as a fallback that always works. func_fallback_echo () { eval 'cat <<_LTECHO_EOF $[]1 _LTECHO_EOF' } ECHO='func_fallback_echo' fi # func_echo_all arg... # Invoke $ECHO with all args, space-separated. func_echo_all () { $ECHO "$*" } case "$ECHO" in printf*) AC_MSG_RESULT([printf]) ;; print*) AC_MSG_RESULT([print -r]) ;; *) AC_MSG_RESULT([cat]) ;; esac m4_ifdef([_AS_DETECT_SUGGESTED], [_AS_DETECT_SUGGESTED([ test -n "${ZSH_VERSION+set}${BASH_VERSION+set}" || ( ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO PATH=/empty FPATH=/empty; export PATH FPATH test "X`printf %s $ECHO`" = "X$ECHO" \ || test "X`print -r -- $ECHO`" = "X$ECHO" )])]) _LT_DECL([], [SHELL], [1], [Shell to use when invoking shell scripts]) _LT_DECL([], [ECHO], [1], [An echo program that protects backslashes]) ])# _LT_PROG_ECHO_BACKSLASH # _LT_WITH_SYSROOT # ---------------- AC_DEFUN([_LT_WITH_SYSROOT], [AC_MSG_CHECKING([for sysroot]) AC_ARG_WITH([sysroot], [ --with-sysroot[=DIR] Search for dependent libraries within DIR (or the compiler's sysroot if not specified).], [], [with_sysroot=no]) dnl lt_sysroot will always be passed unquoted. We quote it here dnl in case the user passed a directory name. lt_sysroot= case ${with_sysroot} in #( yes) if test "$GCC" = yes; then lt_sysroot=`$CC --print-sysroot 2>/dev/null` fi ;; #( /*) lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"` ;; #( no|'') ;; #( *) AC_MSG_RESULT([${with_sysroot}]) AC_MSG_ERROR([The sysroot must be an absolute path.]) ;; esac AC_MSG_RESULT([${lt_sysroot:-no}]) _LT_DECL([], [lt_sysroot], [0], [The root where to search for ]dnl [dependent libraries, and in which our libraries should be installed.])]) # _LT_ENABLE_LOCK # --------------- m4_defun([_LT_ENABLE_LOCK], [AC_ARG_ENABLE([libtool-lock], [AS_HELP_STRING([--disable-libtool-lock], [avoid locking (might break parallel builds)])]) test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes # Some flags need to be propagated to the compiler or linker for good # libtool support. case $host in ia64-*-hpux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.$ac_objext` in *ELF-32*) HPUX_IA64_MODE="32" ;; *ELF-64*) HPUX_IA64_MODE="64" ;; esac fi rm -rf conftest* ;; *-*-irix6*) # Find out which ABI we are using. echo '[#]line '$LINENO' "configure"' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then if test "$lt_cv_prog_gnu_ld" = yes; then case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -melf32bsmip" ;; *N32*) LD="${LD-ld} -melf32bmipn32" ;; *64-bit*) LD="${LD-ld} -melf64bmip" ;; esac else case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -32" ;; *N32*) LD="${LD-ld} -n32" ;; *64-bit*) LD="${LD-ld} -64" ;; esac fi fi rm -rf conftest* ;; x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \ s390*-*linux*|s390*-*tpf*|sparc*-*linux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.o` in *32-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_i386_fbsd" ;; x86_64-*linux*) LD="${LD-ld} -m elf_i386" ;; ppc64-*linux*|powerpc64-*linux*) 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" ;; ppc*-*linux*|powerpc*-*linux*) LD="${LD-ld} -m elf64ppc" ;; s390*-*linux*|s390*-*tpf*) LD="${LD-ld} -m elf64_s390" ;; sparc*-*linux*) LD="${LD-ld} -m elf64_sparc" ;; esac ;; esac fi rm -rf conftest* ;; *-*-sco3.2v5*) # On SCO OpenServer 5, we need -belf to get full-featured binaries. SAVE_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -belf" AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf, [AC_LANG_PUSH(C) AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],[[]])],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no]) AC_LANG_POP]) if test x"$lt_cv_cc_needs_belf" != x"yes"; then # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf CFLAGS="$SAVE_CFLAGS" fi ;; sparc*-*solaris*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.o` in *64-bit*) case $lt_cv_prog_gnu_ld in yes*) LD="${LD-ld} -m elf64_sparc" ;; *) if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then LD="${LD-ld} -64" fi ;; esac ;; esac fi rm -rf conftest* ;; esac need_locks="$enable_libtool_lock" ])# _LT_ENABLE_LOCK # _LT_PROG_AR # ----------- m4_defun([_LT_PROG_AR], [AC_CHECK_TOOLS(AR, [ar], false) : ${AR=ar} : ${AR_FLAGS=cru} _LT_DECL([], [AR], [1], [The archiver]) _LT_DECL([], [AR_FLAGS], [1], [Flags to create an archive]) AC_CACHE_CHECK([for archiver @FILE support], [lt_cv_ar_at_file], [lt_cv_ar_at_file=no AC_COMPILE_IFELSE([AC_LANG_PROGRAM], [echo conftest.$ac_objext > conftest.lst lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&AS_MESSAGE_LOG_FD' AC_TRY_EVAL([lt_ar_try]) if test "$ac_status" -eq 0; then # Ensure the archiver fails upon bogus file names. rm -f conftest.$ac_objext libconftest.a AC_TRY_EVAL([lt_ar_try]) if test "$ac_status" -ne 0; then lt_cv_ar_at_file=@ fi fi rm -f conftest.* libconftest.a ]) ]) if test "x$lt_cv_ar_at_file" = xno; then archiver_list_spec= else archiver_list_spec=$lt_cv_ar_at_file fi _LT_DECL([], [archiver_list_spec], [1], [How to feed a file listing to the archiver]) ])# _LT_PROG_AR # _LT_CMD_OLD_ARCHIVE # ------------------- m4_defun([_LT_CMD_OLD_ARCHIVE], [_LT_PROG_AR AC_CHECK_TOOL(STRIP, strip, :) test -z "$STRIP" && STRIP=: _LT_DECL([], [STRIP], [1], [A symbol stripping program]) AC_CHECK_TOOL(RANLIB, ranlib, :) test -z "$RANLIB" && RANLIB=: _LT_DECL([], [RANLIB], [1], [Commands used to install an old-style archive]) # Determine commands to create old-style static archives. old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' old_postinstall_cmds='chmod 644 $oldlib' old_postuninstall_cmds= if test -n "$RANLIB"; then case $host_os in openbsd*) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$oldlib" ;; *) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$oldlib" ;; esac old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib" fi case $host_os in darwin*) lock_old_archive_extraction=yes ;; *) lock_old_archive_extraction=no ;; esac _LT_DECL([], [old_postinstall_cmds], [2]) _LT_DECL([], [old_postuninstall_cmds], [2]) _LT_TAGDECL([], [old_archive_cmds], [2], [Commands used to build an old-style archive]) _LT_DECL([], [lock_old_archive_extraction], [0], [Whether to use a lock for old archive extraction]) ])# _LT_CMD_OLD_ARCHIVE # _LT_COMPILER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, # [OUTPUT-FILE], [ACTION-SUCCESS], [ACTION-FAILURE]) # ---------------------------------------------------------------- # Check whether the given compiler option works AC_DEFUN([_LT_COMPILER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_SED])dnl AC_CACHE_CHECK([$1], [$2], [$2=no m4_if([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4]) echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$3" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&AS_MESSAGE_LOG_FD echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then $2=yes fi fi $RM conftest* ]) if test x"[$]$2" = xyes; then m4_if([$5], , :, [$5]) else m4_if([$6], , :, [$6]) fi ])# _LT_COMPILER_OPTION # Old name: AU_ALIAS([AC_LIBTOOL_COMPILER_OPTION], [_LT_COMPILER_OPTION]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], []) # _LT_LINKER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, # [ACTION-SUCCESS], [ACTION-FAILURE]) # ---------------------------------------------------- # Check whether the given linker option works AC_DEFUN([_LT_LINKER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_SED])dnl AC_CACHE_CHECK([$1], [$2], [$2=no save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS $3" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&AS_MESSAGE_LOG_FD $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then $2=yes fi else $2=yes fi fi $RM -r conftest* LDFLAGS="$save_LDFLAGS" ]) if test x"[$]$2" = xyes; then m4_if([$4], , :, [$4]) else m4_if([$5], , :, [$5]) fi ])# _LT_LINKER_OPTION # Old name: AU_ALIAS([AC_LIBTOOL_LINKER_OPTION], [_LT_LINKER_OPTION]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], []) # LT_CMD_MAX_LEN #--------------- AC_DEFUN([LT_CMD_MAX_LEN], [AC_REQUIRE([AC_CANONICAL_HOST])dnl # find the maximum length of command line arguments AC_MSG_CHECKING([the maximum length of command line arguments]) AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl i=0 teststring="ABCD" case $build_os in msdosdjgpp*) # On DJGPP, this test can blow up pretty badly due to problems in libc # (any single argument exceeding 2000 bytes causes a buffer overrun # during glob expansion). Even if it were fixed, the result of this # check would be larger than it should be. lt_cv_sys_max_cmd_len=12288; # 12K is about right ;; gnu*) # Under GNU Hurd, this test is not required because there is # no limit to the length of command line arguments. # Libtool will interpret -1 as no limit whatsoever lt_cv_sys_max_cmd_len=-1; ;; cygwin* | mingw* | cegcc*) # On Win9x/ME, this test blows up -- it succeeds, but takes # about 5 minutes as the teststring grows exponentially. # Worse, since 9x/ME are not pre-emptively multitasking, # you end up with a "frozen" computer, even though with patience # the test eventually succeeds (with a max line length of 256k). # Instead, let's just punt: use the minimum linelength reported by # all of the supported platforms: 8192 (on NT/2K/XP). lt_cv_sys_max_cmd_len=8192; ;; mint*) # On MiNT this can take a long time and run out of memory. lt_cv_sys_max_cmd_len=8192; ;; amigaos*) # On AmigaOS with pdksh, this test takes hours, literally. # So we just punt and use a minimum line length of 8192. lt_cv_sys_max_cmd_len=8192; ;; netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) # This has been around since 386BSD, at least. Likely further. if test -x /sbin/sysctl; then lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` elif test -x /usr/sbin/sysctl; then lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` else lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs fi # And add a safety zone lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` ;; interix*) # We know the value 262144 and hardcode it with a safety zone (like BSD) lt_cv_sys_max_cmd_len=196608 ;; 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"; 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"`func_fallback_echo "$teststring$teststring" 2>/dev/null` \ = "X$teststring$teststring"; } >/dev/null 2>&1 && test $i != 17 # 1/2 MB should be enough do i=`expr $i + 1` teststring=$teststring$teststring done # Only check the string length outside the loop. lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` teststring= # Add a significant safety factor because C++ compilers can tack on # massive amounts of additional arguments before passing them to the # linker. It appears as though 1/2 is a usable value. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` fi ;; esac ]) if test -n $lt_cv_sys_max_cmd_len ; then AC_MSG_RESULT($lt_cv_sys_max_cmd_len) else AC_MSG_RESULT(none) fi max_cmd_len=$lt_cv_sys_max_cmd_len _LT_DECL([], [max_cmd_len], [0], [What is the maximum length of a command?]) ])# LT_CMD_MAX_LEN # Old name: AU_ALIAS([AC_LIBTOOL_SYS_MAX_CMD_LEN], [LT_CMD_MAX_LEN]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], []) # _LT_HEADER_DLFCN # ---------------- m4_defun([_LT_HEADER_DLFCN], [AC_CHECK_HEADERS([dlfcn.h], [], [], [AC_INCLUDES_DEFAULT])dnl ])# _LT_HEADER_DLFCN # _LT_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE, # ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING) # ---------------------------------------------------------------- m4_defun([_LT_TRY_DLOPEN_SELF], [m4_require([_LT_HEADER_DLFCN])dnl if test "$cross_compiling" = yes; then : [$4] else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF [#line $LINENO "configure" #include "confdefs.h" #if HAVE_DLFCN_H #include #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif /* When -fvisbility=hidden is used, assume the code has been annotated correspondingly for the symbols needed. */ #if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) int fnord () __attribute__((visibility("default"))); #endif int fnord () { return 42; } int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else { if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; else puts (dlerror ()); } /* dlclose (self); */ } else puts (dlerror ()); return status; }] _LT_EOF if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) $1 ;; x$lt_dlneed_uscore) $2 ;; x$lt_dlunknown|x*) $3 ;; esac else : # compilation failed $3 fi fi rm -fr conftest* ])# _LT_TRY_DLOPEN_SELF # LT_SYS_DLOPEN_SELF # ------------------ AC_DEFUN([LT_SYS_DLOPEN_SELF], [m4_require([_LT_HEADER_DLFCN])dnl if test "x$enable_dlopen" != xyes; then enable_dlopen=unknown enable_dlopen_self=unknown enable_dlopen_self_static=unknown else lt_cv_dlopen=no lt_cv_dlopen_libs= case $host_os in beos*) lt_cv_dlopen="load_add_on" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ;; mingw* | pw32* | cegcc*) lt_cv_dlopen="LoadLibrary" lt_cv_dlopen_libs= ;; cygwin*) lt_cv_dlopen="dlopen" lt_cv_dlopen_libs= ;; darwin*) # if libdl is installed we need to link against it AC_CHECK_LIB([dl], [dlopen], [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],[ lt_cv_dlopen="dyld" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ]) ;; *) AC_CHECK_FUNC([shl_load], [lt_cv_dlopen="shl_load"], [AC_CHECK_LIB([dld], [shl_load], [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld"], [AC_CHECK_FUNC([dlopen], [lt_cv_dlopen="dlopen"], [AC_CHECK_LIB([dl], [dlopen], [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"], [AC_CHECK_LIB([svld], [dlopen], [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"], [AC_CHECK_LIB([dld], [dld_link], [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld"]) ]) ]) ]) ]) ]) ;; esac if test "x$lt_cv_dlopen" != xno; then enable_dlopen=yes else enable_dlopen=no fi case $lt_cv_dlopen in dlopen) save_CPPFLAGS="$CPPFLAGS" test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" save_LDFLAGS="$LDFLAGS" wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" save_LIBS="$LIBS" LIBS="$lt_cv_dlopen_libs $LIBS" AC_CACHE_CHECK([whether a program can dlopen itself], lt_cv_dlopen_self, [dnl _LT_TRY_DLOPEN_SELF( lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes, lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross) ]) if test "x$lt_cv_dlopen_self" = xyes; then wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" AC_CACHE_CHECK([whether a statically linked program can dlopen itself], lt_cv_dlopen_self_static, [dnl _LT_TRY_DLOPEN_SELF( lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross) ]) fi CPPFLAGS="$save_CPPFLAGS" LDFLAGS="$save_LDFLAGS" LIBS="$save_LIBS" ;; esac case $lt_cv_dlopen_self in yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; *) enable_dlopen_self=unknown ;; esac case $lt_cv_dlopen_self_static in yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; *) enable_dlopen_self_static=unknown ;; esac fi _LT_DECL([dlopen_support], [enable_dlopen], [0], [Whether dlopen is supported]) _LT_DECL([dlopen_self], [enable_dlopen_self], [0], [Whether dlopen of programs is supported]) _LT_DECL([dlopen_self_static], [enable_dlopen_self_static], [0], [Whether dlopen of statically linked programs is supported]) ])# LT_SYS_DLOPEN_SELF # Old name: AU_ALIAS([AC_LIBTOOL_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], []) # _LT_COMPILER_C_O([TAGNAME]) # --------------------------- # Check to see if options -c and -o are simultaneously supported by compiler. # This macro does not hard code the compiler like AC_PROG_CC_C_O. m4_defun([_LT_COMPILER_C_O], [m4_require([_LT_DECL_SED])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_TAG_COMPILER])dnl AC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext], [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)], [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no $RM -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&AS_MESSAGE_LOG_FD echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then _LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes fi fi chmod u+w . 2>&AS_MESSAGE_LOG_FD $RM conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files $RM out/* && rmdir out cd .. $RM -r conftest $RM conftest* ]) _LT_TAGDECL([compiler_c_o], [lt_cv_prog_compiler_c_o], [1], [Does compiler simultaneously support -c and -o options?]) ])# _LT_COMPILER_C_O # _LT_COMPILER_FILE_LOCKS([TAGNAME]) # ---------------------------------- # Check to see if we can do hard links to lock some files if needed m4_defun([_LT_COMPILER_FILE_LOCKS], [m4_require([_LT_ENABLE_LOCK])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl _LT_COMPILER_C_O([$1]) hard_links="nottested" if test "$_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)" = no && test "$need_locks" != no; then # do not overwrite the value of need_locks provided by the user AC_MSG_CHECKING([if we can lock with hard links]) hard_links=yes $RM conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no AC_MSG_RESULT([$hard_links]) if test "$hard_links" = no; then AC_MSG_WARN([`$CC' does not support `-c -o', so `make -j' may be unsafe]) need_locks=warn fi else need_locks=no fi _LT_DECL([], [need_locks], [1], [Must we lock files when doing compilation?]) ])# _LT_COMPILER_FILE_LOCKS # _LT_CHECK_OBJDIR # ---------------- m4_defun([_LT_CHECK_OBJDIR], [AC_CACHE_CHECK([for objdir], [lt_cv_objdir], [rm -f .libs 2>/dev/null mkdir .libs 2>/dev/null if test -d .libs; then lt_cv_objdir=.libs else # MS-DOS does not allow filenames that begin with a dot. lt_cv_objdir=_libs fi rmdir .libs 2>/dev/null]) objdir=$lt_cv_objdir _LT_DECL([], [objdir], [0], [The name of the directory that contains temporary libtool files])dnl m4_pattern_allow([LT_OBJDIR])dnl AC_DEFINE_UNQUOTED(LT_OBJDIR, "$lt_cv_objdir/", [Define to the sub-directory in which libtool stores uninstalled libraries.]) ])# _LT_CHECK_OBJDIR # _LT_LINKER_HARDCODE_LIBPATH([TAGNAME]) # -------------------------------------- # Check hardcoding attributes. m4_defun([_LT_LINKER_HARDCODE_LIBPATH], [AC_MSG_CHECKING([how to hardcode library paths into programs]) _LT_TAGVAR(hardcode_action, $1)= if test -n "$_LT_TAGVAR(hardcode_libdir_flag_spec, $1)" || test -n "$_LT_TAGVAR(runpath_var, $1)" || test "X$_LT_TAGVAR(hardcode_automatic, $1)" = "Xyes" ; then # We can hardcode non-existent directories. if test "$_LT_TAGVAR(hardcode_direct, $1)" != no && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test "$_LT_TAGVAR(hardcode_shlibpath_var, $1)" != no && test "$_LT_TAGVAR(hardcode_minus_L, $1)" != no; then # Linking always hardcodes the temporary library directory. _LT_TAGVAR(hardcode_action, $1)=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. _LT_TAGVAR(hardcode_action, $1)=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. _LT_TAGVAR(hardcode_action, $1)=unsupported fi AC_MSG_RESULT([$_LT_TAGVAR(hardcode_action, $1)]) if test "$_LT_TAGVAR(hardcode_action, $1)" = relink || test "$_LT_TAGVAR(inherit_rpath, $1)" = yes; then # Fast installation is not supported enable_fast_install=no elif test "$shlibpath_overrides_runpath" = yes || test "$enable_shared" = no; then # Fast installation is not necessary enable_fast_install=needless fi _LT_TAGDECL([], [hardcode_action], [0], [How to hardcode a shared library path into an executable]) ])# _LT_LINKER_HARDCODE_LIBPATH # _LT_CMD_STRIPLIB # ---------------- m4_defun([_LT_CMD_STRIPLIB], [m4_require([_LT_DECL_EGREP]) striplib= old_striplib= AC_MSG_CHECKING([whether stripping libraries is possible]) if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" test -z "$striplib" && striplib="$STRIP --strip-unneeded" AC_MSG_RESULT([yes]) else # FIXME - insert some real tests, host_os isn't really good enough case $host_os in darwin*) if test -n "$STRIP" ; then striplib="$STRIP -x" old_striplib="$STRIP -S" AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) fi ;; *) AC_MSG_RESULT([no]) ;; esac fi _LT_DECL([], [old_striplib], [1], [Commands to strip libraries]) _LT_DECL([], [striplib], [1]) ])# _LT_CMD_STRIPLIB # _LT_SYS_DYNAMIC_LINKER([TAG]) # ----------------------------- # PORTME Fill in your ld.so characteristics m4_defun([_LT_SYS_DYNAMIC_LINKER], [AC_REQUIRE([AC_CANONICAL_HOST])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_OBJDUMP])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_CHECK_SHELL_FEATURES])dnl AC_MSG_CHECKING([dynamic linker characteristics]) m4_if([$1], [], [ if test "$GCC" = yes; then case $host_os in darwin*) lt_awk_arg="/^libraries:/,/LR/" ;; *) lt_awk_arg="/^libraries:/" ;; esac case $host_os in mingw* | cegcc*) lt_sed_strip_eq="s,=\([[A-Za-z]]:\),\1,g" ;; *) lt_sed_strip_eq="s,=/,/,g" ;; esac lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq` case $lt_search_path_spec in *\;*) # if the path contains ";" then we assume it to be the separator # otherwise default to the standard path separator (i.e. ":") - it is # assumed that no part of a normal pathname contains ";" but that should # okay in the real world where ";" in dirpaths is itself problematic. lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'` ;; *) lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"` ;; esac # Ok, now we have the path, separated by spaces, we can step through it # and add multilib dir if necessary. lt_tmp_lt_search_path_spec= lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` for lt_sys_path in $lt_search_path_spec; do if test -d "$lt_sys_path/$lt_multi_os_dir"; then lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir" else test -d "$lt_sys_path" && \ lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" fi done lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk ' BEGIN {RS=" "; FS="/|\n";} { lt_foo=""; lt_count=0; for (lt_i = NF; lt_i > 0; lt_i--) { if ($lt_i != "" && $lt_i != ".") { if ($lt_i == "..") { lt_count++; } else { if (lt_count == 0) { lt_foo="/" $lt_i lt_foo; } else { lt_count--; } } } } if (lt_foo != "") { lt_freq[[lt_foo]]++; } if (lt_freq[[lt_foo]] == 1) { print lt_foo; } }'` # AWK program above erroneously prepends '/' to C:/dos/paths # for these hosts. case $host_os in mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\ $SED 's,/\([[A-Za-z]]:\),\1,g'` ;; esac sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP` else sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" fi]) library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=".so" postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown case $host_os in aix3*) version_type=linux 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 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 need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32* | cegcc*) version_type=windows shrext_cmds=".dll" need_version=no need_lib_prefix=no case $GCC,$cc_basename in yes,*) # gcc library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname~ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; fi' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' m4_if([$1], [],[ sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api"]) ;; mingw* | cegcc*) # MinGW DLLs use traditional 'lib' prefix soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' ;; esac dynamic_linker='Win32 ld.exe' ;; *,cl*) # Native MSVC libname_spec='$name' soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' library_names_spec='${libname}.dll.lib' case $build_os in mingw*) sys_lib_search_path_spec= lt_save_ifs=$IFS IFS=';' for lt_path in $LIB do IFS=$lt_save_ifs # Let DOS variable expansion print the short 8.3 style file name. lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"` sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path" done IFS=$lt_save_ifs # Convert to MSYS style. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([[a-zA-Z]]\\):| /\\1|g' -e 's|^ ||'` ;; cygwin*) # Convert to unix form, then to dos form, then back to unix form # but this time dos style (no spaces!) so that the unix form looks # like /cygdrive/c/PROGRA~1:/cygdr... sys_lib_search_path_spec=`cygpath --path --unix "$LIB"` sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null` sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` ;; *) sys_lib_search_path_spec="$LIB" if $ECHO "$sys_lib_search_path_spec" | [$GREP ';[c-zC-Z]:/' >/dev/null]; then # It is most probably a Windows format PATH. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi # FIXME: find the short name or the path components, as spaces are # common. (e.g. "Program Files" -> "PROGRA~1") ;; esac # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes dynamic_linker='Win32 link.exe' ;; *) # Assume MSVC wrapper library_names_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext} $libname.lib' dynamic_linker='Win32 ld.exe' ;; esac # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' soname_spec='${libname}${release}${major}$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' m4_if([$1], [],[ sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib"]) sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux 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 ;; freebsd1*) dynamic_linker=no ;; 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[[123]]*) 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 ;; 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 ;; haiku*) version_type=linux 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 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 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 Linux ELF. linux* | k*bsd*-gnu | kopensolaris*-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' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # Some binutils ld are patched to set DT_RUNPATH AC_CACHE_VAL([lt_cv_shlibpath_overrides_runpath], [lt_cv_shlibpath_overrides_runpath=no save_LDFLAGS=$LDFLAGS save_libdir=$libdir eval "libdir=/foo; wl=\"$_LT_TAGVAR(lt_prog_compiler_wl, $1)\"; \ LDFLAGS=\"\$LDFLAGS $_LT_TAGVAR(hardcode_libdir_flag_spec, $1)\"" AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], [AS_IF([ ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null], [lt_cv_shlibpath_overrides_runpath=yes])]) LDFLAGS=$save_LDFLAGS libdir=$save_libdir ]) shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; netbsdelf*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='NetBSD ld.elf_so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux 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 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 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 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 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 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac AC_MSG_RESULT([$dynamic_linker]) test "$dynamic_linker" = no && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test "$GCC" = yes; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" fi if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" fi _LT_DECL([], [variables_saved_for_relink], [1], [Variables whose values should be saved in libtool wrapper scripts and restored at link time]) _LT_DECL([], [need_lib_prefix], [0], [Do we need the "lib" prefix for modules?]) _LT_DECL([], [need_version], [0], [Do we need a version for libraries?]) _LT_DECL([], [version_type], [0], [Library versioning type]) _LT_DECL([], [runpath_var], [0], [Shared library runtime path variable]) _LT_DECL([], [shlibpath_var], [0],[Shared library path variable]) _LT_DECL([], [shlibpath_overrides_runpath], [0], [Is shlibpath searched before the hard-coded library search path?]) _LT_DECL([], [libname_spec], [1], [Format of library name prefix]) _LT_DECL([], [library_names_spec], [1], [[List of archive names. First name is the real one, the rest are links. The last name is the one that the linker finds with -lNAME]]) _LT_DECL([], [soname_spec], [1], [[The coded name of the library, if different from the real name]]) _LT_DECL([], [install_override_mode], [1], [Permission mode override for installation of shared libraries]) _LT_DECL([], [postinstall_cmds], [2], [Command to use after installation of a shared archive]) _LT_DECL([], [postuninstall_cmds], [2], [Command to use after uninstallation of a shared archive]) _LT_DECL([], [finish_cmds], [2], [Commands used to finish a libtool library installation in a directory]) _LT_DECL([], [finish_eval], [1], [[As "finish_cmds", except a single script fragment to be evaled but not shown]]) _LT_DECL([], [hardcode_into_libs], [0], [Whether we should hardcode library paths into libraries]) _LT_DECL([], [sys_lib_search_path_spec], [2], [Compile-time system search path for libraries]) _LT_DECL([], [sys_lib_dlsearch_path_spec], [2], [Run-time system search path for libraries]) ])# _LT_SYS_DYNAMIC_LINKER # _LT_PATH_TOOL_PREFIX(TOOL) # -------------------------- # find a file program which can recognize shared library AC_DEFUN([_LT_PATH_TOOL_PREFIX], [m4_require([_LT_DECL_EGREP])dnl AC_MSG_CHECKING([for $1]) AC_CACHE_VAL(lt_cv_path_MAGIC_CMD, [case $MAGIC_CMD in [[\\/*] | ?:[\\/]*]) lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. ;; *) lt_save_MAGIC_CMD="$MAGIC_CMD" lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR dnl $ac_dummy forces splitting on constant user-supplied paths. dnl POSIX.2 word splitting is done only on the output of word expansions, dnl not every word. This closes a longstanding sh security hole. ac_dummy="m4_if([$2], , $PATH, [$2])" for ac_dir in $ac_dummy; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/$1; then lt_cv_path_MAGIC_CMD="$ac_dir/$1" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <<_LT_EOF 1>&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org _LT_EOF fi ;; esac fi break fi done IFS="$lt_save_ifs" MAGIC_CMD="$lt_save_MAGIC_CMD" ;; esac]) MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if test -n "$MAGIC_CMD"; then AC_MSG_RESULT($MAGIC_CMD) else AC_MSG_RESULT(no) fi _LT_DECL([], [MAGIC_CMD], [0], [Used to examine libraries when file_magic_cmd begins with "file"])dnl ])# _LT_PATH_TOOL_PREFIX # Old name: AU_ALIAS([AC_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_PATH_TOOL_PREFIX], []) # _LT_PATH_MAGIC # -------------- # find a file program which can recognize a shared library m4_defun([_LT_PATH_MAGIC], [_LT_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH) if test -z "$lt_cv_path_MAGIC_CMD"; then if test -n "$ac_tool_prefix"; then _LT_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH) else MAGIC_CMD=: fi fi ])# _LT_PATH_MAGIC # LT_PATH_LD # ---------- # find the pathname to the GNU or non-GNU linker AC_DEFUN([LT_PATH_LD], [AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_PROG_ECHO_BACKSLASH])dnl AC_ARG_WITH([gnu-ld], [AS_HELP_STRING([--with-gnu-ld], [assume the C compiler uses GNU ld @<:@default=no@:>@])], [test "$withval" = no || with_gnu_ld=yes], [with_gnu_ld=no])dnl ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. AC_MSG_CHECKING([for ld used by $CC]) case $host in *-*-mingw*) # gcc leaves a trailing carriage return which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [[\\/]]* | ?:[[\\/]]*) re_direlt='/[[^/]][[^/]]*/\.\./' # Canonicalize the pathname of ld ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` done test -z "$LD" && LD="$ac_prog" ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test "$with_gnu_ld" = yes; then AC_MSG_CHECKING([for GNU ld]) else AC_MSG_CHECKING([for non-GNU ld]) fi AC_CACHE_VAL(lt_cv_path_LD, [if test -z "$LD"; then lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then lt_cv_path_LD="$ac_dir/$ac_prog" # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 &1 /dev/null 2>&1; then lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' else # Keep this pattern in sync with the one in func_win32_libid. lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' lt_cv_file_magic_cmd='$OBJDUMP -f' fi ;; cegcc*) # use the weaker test based on 'objdump'. See mingw*. lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?' lt_cv_file_magic_cmd='$OBJDUMP -f' ;; darwin* | rhapsody*) lt_cv_deplibs_check_method=pass_all ;; freebsd* | dragonfly*) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then case $host_cpu in i*86 ) # Not sure whether the presence of OpenBSD here was a mistake. # Let's accept both of them until this is cleared up. lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand paged shared library' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` ;; esac else lt_cv_deplibs_check_method=pass_all fi ;; gnu*) lt_cv_deplibs_check_method=pass_all ;; 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 Linux ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu) lt_cv_deplibs_check_method=pass_all ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|_pic\.a)$' fi ;; newos6*) lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=/usr/lib/libnls.so ;; *nto* | *qnx*) lt_cv_deplibs_check_method=pass_all ;; openbsd*) if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' fi ;; osf3* | osf4* | osf5*) lt_cv_deplibs_check_method=pass_all ;; rdos*) lt_cv_deplibs_check_method=pass_all ;; solaris*) lt_cv_deplibs_check_method=pass_all ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) lt_cv_deplibs_check_method=pass_all ;; sysv4 | sysv4.3*) case $host_vendor in motorola) lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib) M[[0-9]][[0-9]]* Version [[0-9]]' lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` ;; ncr) lt_cv_deplibs_check_method=pass_all ;; sequent) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )' ;; sni) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib" lt_cv_file_magic_test_file=/lib/libc.so ;; siemens) lt_cv_deplibs_check_method=pass_all ;; pc) lt_cv_deplibs_check_method=pass_all ;; esac ;; tpf*) lt_cv_deplibs_check_method=pass_all ;; esac ]) file_magic_glob= want_nocaseglob=no if test "$build" = "$host"; then case $host_os in mingw* | pw32*) if ( shopt | grep nocaseglob ) >/dev/null 2>&1; then want_nocaseglob=yes else file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e "s/\(..\)/s\/[[\1]]\/[[\1]]\/g;/g"` fi ;; esac fi file_magic_cmd=$lt_cv_file_magic_cmd deplibs_check_method=$lt_cv_deplibs_check_method test -z "$deplibs_check_method" && deplibs_check_method=unknown _LT_DECL([], [deplibs_check_method], [1], [Method to check whether dependent libraries are shared objects]) _LT_DECL([], [file_magic_cmd], [1], [Command to use when deplibs_check_method = "file_magic"]) _LT_DECL([], [file_magic_glob], [1], [How to find potential files when deplibs_check_method = "file_magic"]) _LT_DECL([], [want_nocaseglob], [1], [Find potential files using nocaseglob when deplibs_check_method = "file_magic"]) ])# _LT_CHECK_MAGIC_METHOD # LT_PATH_NM # ---------- # find the pathname to a BSD- or MS-compatible name lister AC_DEFUN([LT_PATH_NM], [AC_REQUIRE([AC_PROG_CC])dnl AC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM, [if test -n "$NM"; then # Let the user override the test. lt_cv_path_NM="$NM" else lt_nm_to_check="${ac_tool_prefix}nm" if test -n "$ac_tool_prefix" && test "$build" = "$host"; then lt_nm_to_check="$lt_nm_to_check nm" fi for lt_tmp_nm in $lt_nm_to_check; do lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. tmp_nm="$ac_dir/$lt_tmp_nm" if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then # Check to see if the nm accepts a BSD-compat flag. # Adding the `sed 1q' prevents false positives on HP-UX, which says: # nm: unknown option "B" ignored # Tru64's nm complains that /dev/null is an invalid object file case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in */dev/null* | *'Invalid file or object type'*) lt_cv_path_NM="$tmp_nm -B" break ;; *) case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in */dev/null*) lt_cv_path_NM="$tmp_nm -p" break ;; *) lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but continue # so that we can try to find one that supports BSD flags ;; esac ;; esac fi done IFS="$lt_save_ifs" done : ${lt_cv_path_NM=no} fi]) if test "$lt_cv_path_NM" != "no"; then NM="$lt_cv_path_NM" else # Didn't find any BSD compatible name lister, look for dumpbin. if test -n "$DUMPBIN"; then : # Let the user override the test. else AC_CHECK_TOOLS(DUMPBIN, [dumpbin "link -dump"], :) case `$DUMPBIN -symbols /dev/null 2>&1 | sed '1q'` in *COFF*) DUMPBIN="$DUMPBIN -symbols" ;; *) DUMPBIN=: ;; esac fi AC_SUBST([DUMPBIN]) if test "$DUMPBIN" != ":"; then NM="$DUMPBIN" fi fi test -z "$NM" && NM=nm AC_SUBST([NM]) _LT_DECL([], [NM], [1], [A BSD- or MS-compatible name lister])dnl AC_CACHE_CHECK([the name lister ($NM) interface], [lt_cv_nm_interface], [lt_cv_nm_interface="BSD nm" echo "int some_variable = 0;" > conftest.$ac_ext (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$ac_compile" 2>conftest.err) cat conftest.err >&AS_MESSAGE_LOG_FD (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&AS_MESSAGE_LOG_FD) (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) cat conftest.err >&AS_MESSAGE_LOG_FD (eval echo "\"\$as_me:$LINENO: output\"" >&AS_MESSAGE_LOG_FD) cat conftest.out >&AS_MESSAGE_LOG_FD if $GREP 'External.*some_variable' conftest.out > /dev/null; then lt_cv_nm_interface="MS dumpbin" fi rm -f conftest*]) ])# LT_PATH_NM # Old names: AU_ALIAS([AM_PROG_NM], [LT_PATH_NM]) AU_ALIAS([AC_PROG_NM], [LT_PATH_NM]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AM_PROG_NM], []) dnl AC_DEFUN([AC_PROG_NM], []) # _LT_CHECK_SHAREDLIB_FROM_LINKLIB # -------------------------------- # how to determine the name of the shared library # associated with a specific link library. # -- PORTME fill in with the dynamic library characteristics m4_defun([_LT_CHECK_SHAREDLIB_FROM_LINKLIB], [m4_require([_LT_DECL_EGREP]) m4_require([_LT_DECL_OBJDUMP]) m4_require([_LT_DECL_DLLTOOL]) AC_CACHE_CHECK([how to associate runtime and link libraries], lt_cv_sharedlib_from_linklib_cmd, [lt_cv_sharedlib_from_linklib_cmd='unknown' case $host_os in cygwin* | mingw* | pw32* | cegcc*) # two different shell functions defined in ltmain.sh # decide which to use based on capabilities of $DLLTOOL case `$DLLTOOL --help 2>&1` in *--identify-strict*) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib ;; *) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib_fallback ;; esac ;; *) # fallback: assume linklib IS sharedlib lt_cv_sharedlib_from_linklib_cmd="$ECHO" ;; esac ]) sharedlib_from_linklib_cmd=$lt_cv_sharedlib_from_linklib_cmd test -z "$sharedlib_from_linklib_cmd" && sharedlib_from_linklib_cmd=$ECHO _LT_DECL([], [sharedlib_from_linklib_cmd], [1], [Command to associate shared and link libraries]) ])# _LT_CHECK_SHAREDLIB_FROM_LINKLIB # _LT_PATH_MANIFEST_TOOL # ---------------------- # locate the manifest tool m4_defun([_LT_PATH_MANIFEST_TOOL], [AC_CHECK_TOOL(MANIFEST_TOOL, mt, :) test -z "$MANIFEST_TOOL" && MANIFEST_TOOL=mt AC_CACHE_CHECK([if $MANIFEST_TOOL is a manifest tool], [lt_cv_path_mainfest_tool], [lt_cv_path_mainfest_tool=no echo "$as_me:$LINENO: $MANIFEST_TOOL '-?'" >&AS_MESSAGE_LOG_FD $MANIFEST_TOOL '-?' 2>conftest.err > conftest.out cat conftest.err >&AS_MESSAGE_LOG_FD if $GREP 'Manifest Tool' conftest.out > /dev/null; then lt_cv_path_mainfest_tool=yes fi rm -f conftest*]) if test "x$lt_cv_path_mainfest_tool" != xyes; then MANIFEST_TOOL=: fi _LT_DECL([], [MANIFEST_TOOL], [1], [Manifest tool])dnl ])# _LT_PATH_MANIFEST_TOOL # LT_LIB_M # -------- # check for math library AC_DEFUN([LT_LIB_M], [AC_REQUIRE([AC_CANONICAL_HOST])dnl LIBM= case $host in *-*-beos* | *-*-cegcc* | *-*-cygwin* | *-*-haiku* | *-*-pw32* | *-*-darwin*) # These system don't have libm, or don't need it ;; *-ncr-sysv4.3*) AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw") AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm") ;; *) AC_CHECK_LIB(m, cos, LIBM="-lm") ;; esac AC_SUBST([LIBM]) ])# LT_LIB_M # Old name: AU_ALIAS([AC_CHECK_LIBM], [LT_LIB_M]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_CHECK_LIBM], []) # _LT_COMPILER_NO_RTTI([TAGNAME]) # ------------------------------- m4_defun([_LT_COMPILER_NO_RTTI], [m4_require([_LT_TAG_COMPILER])dnl _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= if test "$GCC" = yes; then case $cc_basename in nvcc*) _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -Xcompiler -fno-builtin' ;; *) _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' ;; esac _LT_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions], lt_cv_prog_compiler_rtti_exceptions, [-fno-rtti -fno-exceptions], [], [_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"]) fi _LT_TAGDECL([no_builtin_flag], [lt_prog_compiler_no_builtin_flag], [1], [Compiler flag to turn off builtin functions]) ])# _LT_COMPILER_NO_RTTI # _LT_CMD_GLOBAL_SYMBOLS # ---------------------- m4_defun([_LT_CMD_GLOBAL_SYMBOLS], [AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_PROG_AWK])dnl AC_REQUIRE([LT_PATH_NM])dnl AC_REQUIRE([LT_PATH_LD])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_TAG_COMPILER])dnl # Check for command to grab the raw symbol name followed by C symbol from nm. AC_MSG_CHECKING([command to parse $NM output from $compiler object]) AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe], [ # These are sane defaults that work on at least a few old systems. # [They come from Ultrix. What could be older than Ultrix?!! ;)] # Character class describing NM global symbol codes. symcode='[[BCDEGRST]]' # Regexp to match symbols that can be accessed directly from C. sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)' # Define system-specific variables. case $host_os in aix*) symcode='[[BCDT]]' ;; cygwin* | mingw* | pw32* | cegcc*) symcode='[[ABCDGISTW]]' ;; hpux*) if test "$host_cpu" = ia64; then symcode='[[ABCDEGRST]]' fi ;; irix* | nonstopux*) symcode='[[BCDEGRST]]' ;; osf*) symcode='[[BCDEGQRST]]' ;; solaris*) symcode='[[BDRT]]' ;; sco3.2v5*) symcode='[[DT]]' ;; sysv4.2uw2*) symcode='[[DT]]' ;; sysv5* | sco5v6* | unixware* | OpenUNIX*) symcode='[[ABDT]]' ;; sysv4) symcode='[[DFNSTU]]' ;; esac # If we're using GNU nm, then use its standard symbol codes. case `$NM -V 2>&1` in *GNU* | *'with BFD'*) symcode='[[ABCDGIRSTW]]' ;; esac # Transform an extracted symbol line into a proper C declaration. # Some systems (esp. on ia64) link data and code symbols differently, # so use this general approach. lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" # Transform an extracted symbol line into symbol name and symbol address lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\)[[ ]]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (void *) \&\2},/p'" lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \([[^ ]]*\)[[ ]]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \(lib[[^ ]]*\)$/ {\"\2\", (void *) \&\2},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"lib\2\", (void *) \&\2},/p'" # Handle CRLF in mingw tool chain opt_cr= case $build_os in mingw*) opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp ;; esac # Try without a prefix underscore, then with it. for ac_symprfx in "" "_"; do # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. symxfrm="\\1 $ac_symprfx\\2 \\2" # Write the raw and C identifiers. if test "$lt_cv_nm_interface" = "MS dumpbin"; then # Fake it for dumpbin and say T for any non-static function # and D for any global variable. # Also find C++ and __fastcall symbols from MSVC++, # which start with @ or ?. lt_cv_sys_global_symbol_pipe="$AWK ['"\ " {last_section=section; section=\$ 3};"\ " /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ " \$ 0!~/External *\|/{next};"\ " / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ " {if(hide[section]) next};"\ " {f=0}; \$ 0~/\(\).*\|/{f=1}; {printf f ? \"T \" : \"D \"};"\ " {split(\$ 0, a, /\||\r/); split(a[2], s)};"\ " s[1]~/^[@?]/{print s[1], s[1]; next};"\ " s[1]~prfx {split(s[1],t,\"@\"); print t[1], substr(t[1],length(prfx))}"\ " ' prfx=^$ac_symprfx]" else lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[ ]]\($symcode$symcode*\)[[ ]][[ ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" fi lt_cv_sys_global_symbol_pipe="$lt_cv_sys_global_symbol_pipe | sed '/ __gnu_lto/d'" # Check to see that the pipe works correctly. pipe_works=no rm -f conftest* cat > conftest.$ac_ext <<_LT_EOF #ifdef __cplusplus extern "C" { #endif char nm_test_var; void nm_test_func(void); void nm_test_func(void){} #ifdef __cplusplus } #endif int main(){nm_test_var='a';nm_test_func();return(0);} _LT_EOF if AC_TRY_EVAL(ac_compile); then # Now try to grab the symbols. nlist=conftest.nm if AC_TRY_EVAL(NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) && test -s "$nlist"; then # Try sorting and uniquifying the output. if sort "$nlist" | uniq > "$nlist"T; then mv -f "$nlist"T "$nlist" else rm -f "$nlist"T fi # Make sure that we snagged all the symbols we need. if $GREP ' nm_test_var$' "$nlist" >/dev/null; then if $GREP ' nm_test_func$' "$nlist" >/dev/null; then cat <<_LT_EOF > conftest.$ac_ext /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ #if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE) /* DATA imports from DLLs on WIN32 con't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs. */ # define LT@&t@_DLSYM_CONST #elif defined(__osf__) /* This system does not cope well with relocations in const data. */ # define LT@&t@_DLSYM_CONST #else # define LT@&t@_DLSYM_CONST const #endif #ifdef __cplusplus extern "C" { #endif _LT_EOF # Now generate the symbol file. eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext' cat <<_LT_EOF >> conftest.$ac_ext /* The mapping between symbol names and symbols. */ LT@&t@_DLSYM_CONST struct { const char *name; void *address; } lt__PROGRAM__LTX_preloaded_symbols[[]] = { { "@PROGRAM@", (void *) 0 }, _LT_EOF $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (void *) \&\2},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext cat <<\_LT_EOF >> conftest.$ac_ext {0, (void *) 0} }; /* This works around a problem in FreeBSD linker */ #ifdef FREEBSD_WORKAROUND static const void *lt_preloaded_setup() { return lt__PROGRAM__LTX_preloaded_symbols; } #endif #ifdef __cplusplus } #endif _LT_EOF # Now try linking the two files. mv conftest.$ac_objext conftstm.$ac_objext lt_globsym_save_LIBS=$LIBS lt_globsym_save_CFLAGS=$CFLAGS LIBS="conftstm.$ac_objext" CFLAGS="$CFLAGS$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)" if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext}; then pipe_works=yes fi LIBS=$lt_globsym_save_LIBS CFLAGS=$lt_globsym_save_CFLAGS else echo "cannot find nm_test_func in $nlist" >&AS_MESSAGE_LOG_FD fi else echo "cannot find nm_test_var in $nlist" >&AS_MESSAGE_LOG_FD fi else echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD fi else echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD cat conftest.$ac_ext >&5 fi rm -rf conftest* conftst* # Do not use the global_symbol_pipe unless it works. if test "$pipe_works" = yes; then break else lt_cv_sys_global_symbol_pipe= fi done ]) if test -z "$lt_cv_sys_global_symbol_pipe"; then lt_cv_sys_global_symbol_to_cdecl= fi if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then AC_MSG_RESULT(failed) else AC_MSG_RESULT(ok) fi # Response file support. if test "$lt_cv_nm_interface" = "MS dumpbin"; then nm_file_list_spec='@' elif $NM --help 2>/dev/null | grep '[[@]]FILE' >/dev/null; then nm_file_list_spec='@' fi _LT_DECL([global_symbol_pipe], [lt_cv_sys_global_symbol_pipe], [1], [Take the output of nm and produce a listing of raw symbols and C names]) _LT_DECL([global_symbol_to_cdecl], [lt_cv_sys_global_symbol_to_cdecl], [1], [Transform the output of nm in a proper C declaration]) _LT_DECL([global_symbol_to_c_name_address], [lt_cv_sys_global_symbol_to_c_name_address], [1], [Transform the output of nm in a C name address pair]) _LT_DECL([global_symbol_to_c_name_address_lib_prefix], [lt_cv_sys_global_symbol_to_c_name_address_lib_prefix], [1], [Transform the output of nm in a C name address pair when lib prefix is needed]) _LT_DECL([], [nm_file_list_spec], [1], [Specify filename containing input files for $NM]) ]) # _LT_CMD_GLOBAL_SYMBOLS # _LT_COMPILER_PIC([TAGNAME]) # --------------------------- m4_defun([_LT_COMPILER_PIC], [m4_require([_LT_TAG_COMPILER])dnl _LT_TAGVAR(lt_prog_compiler_wl, $1)= _LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_static, $1)= m4_if([$1], [CXX], [ # C++ specific cases for pic, static, wl, etc. if test "$GXX" = yes; then _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' ;; esac ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | os2* | pw32* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' ;; *djgpp*) # DJGPP does not support shared libraries at all _LT_TAGVAR(lt_prog_compiler_pic, $1)= ;; haiku*) # PIC is the default for Haiku. # The "-static" flag exists, but is broken. _LT_TAGVAR(lt_prog_compiler_static, $1)= ;; interix[[3-9]]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; sysv4*MP*) if test -d /usr/nec; then _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic fi ;; hpux*) # PIC is the default for 64-bit PA HP-UX, but not for 32-bit # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag # sets the default TLS model and affects inlining. case $host_cpu in hppa*64*) ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac ;; *qnx* | *nto*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac else case $host_os in aix[[4-9]]*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' else _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' fi ;; chorus*) case $cc_basename in cxch68*) # Green Hills C++ Compiler # _LT_TAGVAR(lt_prog_compiler_static, $1)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" ;; esac ;; mingw* | cygwin* | os2* | pw32* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) ;; dgux*) case $cc_basename in ec++*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ;; ghcx*) # Green Hills C++ Compiler _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; *) ;; esac ;; freebsd* | dragonfly*) # FreeBSD uses GNU C++ ;; hpux9* | hpux10* | hpux11*) case $cc_basename in CC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' if test "$host_cpu" != ia64; then _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' fi ;; aCC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' ;; esac ;; *) ;; esac ;; interix*) # This is c89, which is MS Visual C++ (no shared libs) # Anyone wants to do a port? ;; irix5* | irix6* | nonstopux*) case $cc_basename in CC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' # CC pic flag -KPIC is the default. ;; *) ;; esac ;; linux* | k*bsd*-gnu | kopensolaris*-gnu) case $cc_basename in KCC*) # KAI C++ Compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; ecpc* ) # old Intel C++ for x86_64 which still supported -KPIC. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; icpc* ) # Intel C++, used to be incompatible with GCC. # ICC 10 doesn't accept -KPIC any more. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; pgCC* | pgcpp*) # Portland Group C++ compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; cxx*) # Compaq C++ # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. _LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; xlc* | xlC* | bgxl[[cC]]* | mpixl[[cC]]*) # IBM XL 8.0, 9.0 on PPC and BlueGene _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ;; esac ;; esac ;; lynxos*) ;; m88k*) ;; mvs*) case $cc_basename in cxx*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall' ;; *) ;; esac ;; netbsd* | netbsdelf*-gnu) ;; *qnx* | *nto*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; osf3* | osf4* | osf5*) case $cc_basename in KCC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' ;; RCC*) # Rational C++ 2.4.1 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; cxx*) # Digital/Compaq C++ _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. _LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; *) ;; esac ;; psos*) ;; solaris*) case $cc_basename in CC* | sunCC*) # Sun C++ 4.2, 5.x and Centerline C++ _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ;; gcx*) # Green Hills C++ Compiler _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' ;; *) ;; esac ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; lcc*) # Lucid _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; *) ;; esac ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) case $cc_basename in CC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ;; *) ;; esac ;; vxworks*) ;; *) _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; esac fi ], [ if test "$GCC" = yes; then _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' ;; esac ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' ;; haiku*) # PIC is the default for Haiku. # The "-static" flag exists, but is broken. _LT_TAGVAR(lt_prog_compiler_static, $1)= ;; hpux*) # PIC is the default for 64-bit PA HP-UX, but not for 32-bit # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag # sets the default TLS model and affects inlining. case $host_cpu in hppa*64*) # +Z the default ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac ;; interix[[3-9]]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; msdosdjgpp*) # Just because we use GCC doesn't mean we suddenly get shared libraries # on systems that don't support them. _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no enable_shared=no ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; sysv4*MP*) if test -d /usr/nec; then _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic fi ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac case $cc_basename in nvcc*) # Cuda Compiler Driver 2.2 _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Xlinker ' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-Xcompiler -fPIC' ;; esac else # PORTME Check for flag to pass linker flags through the system compiler. case $host_os in aix*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' else _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' fi ;; mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) ;; hpux9* | hpux10* | hpux11*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # PIC (with -KPIC) is the default. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; linux* | k*bsd*-gnu | kopensolaris*-gnu) case $cc_basename in # old Intel for x86_64 which still supported -KPIC. ecc*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; # icc used to be incompatible with GCC. # ICC 10 doesn't accept -KPIC any more. icc* | ifort*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; # Lahey Fortran 8.1. lf95*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='--shared' _LT_TAGVAR(lt_prog_compiler_static, $1)='--static' ;; nagfor*) # NAG Fortran compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,-Wl,,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group compilers (*not* the Pentium gcc compiler, # which looks to be a dead project) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; ccc*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # All Alpha code is PIC. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; xl* | bgxl* | bgf* | mpixl*) # IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ F* | *Sun*Fortran*) # Sun Fortran 8.3 passes all unrecognized flags to the linker _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='' ;; *Sun\ C*) # Sun C 5.9 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ;; esac ;; esac ;; newsos6) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; osf3* | osf4* | osf5*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # All OSF/1 code is PIC. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; rdos*) _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; solaris*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' case $cc_basename in f77* | f90* | f95* | sunf77* | sunf90* | sunf95*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ';; *) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,';; esac ;; sunos4*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; sysv4 | sysv4.2uw2* | sysv4.3*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; sysv4*MP*) if test -d /usr/nec ;then _LT_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; unicos*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; uts4*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; *) _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; esac fi ]) case $host_os in # For platforms which do not support PIC, -DPIC is meaningless: *djgpp*) _LT_TAGVAR(lt_prog_compiler_pic, $1)= ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)="$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])" ;; esac AC_CACHE_CHECK([for $compiler option to produce PIC], [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)], [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_prog_compiler_pic, $1)]) _LT_TAGVAR(lt_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_cv_prog_compiler_pic, $1) # # Check to make sure the PIC flag actually works. # if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then _LT_COMPILER_OPTION([if $compiler PIC flag $_LT_TAGVAR(lt_prog_compiler_pic, $1) works], [_LT_TAGVAR(lt_cv_prog_compiler_pic_works, $1)], [$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])], [], [case $_LT_TAGVAR(lt_prog_compiler_pic, $1) in "" | " "*) ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)=" $_LT_TAGVAR(lt_prog_compiler_pic, $1)" ;; esac], [_LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no]) fi _LT_TAGDECL([pic_flag], [lt_prog_compiler_pic], [1], [Additional compiler flags for building library objects]) _LT_TAGDECL([wl], [lt_prog_compiler_wl], [1], [How to pass a linker flag through the compiler]) # # Check to make sure the static flag actually works. # wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) eval lt_tmp_static_flag=\"$_LT_TAGVAR(lt_prog_compiler_static, $1)\" _LT_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], _LT_TAGVAR(lt_cv_prog_compiler_static_works, $1), $lt_tmp_static_flag, [], [_LT_TAGVAR(lt_prog_compiler_static, $1)=]) _LT_TAGDECL([link_static_flag], [lt_prog_compiler_static], [1], [Compiler flag to prevent dynamic linking]) ])# _LT_COMPILER_PIC # _LT_LINKER_SHLIBS([TAGNAME]) # ---------------------------- # See if the linker supports building shared libraries. m4_defun([_LT_LINKER_SHLIBS], [AC_REQUIRE([LT_PATH_LD])dnl AC_REQUIRE([LT_PATH_NM])dnl m4_require([_LT_PATH_MANIFEST_TOOL])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl m4_require([_LT_TAG_COMPILER])dnl AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) m4_if([$1], [CXX], [ _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] case $host_os in aix[[4-9]]*) # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm # Also, AIX nm treats weak defined symbols like other global defined # symbols, whereas GNU nm marks them as "W". if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' else _LT_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' fi ;; pw32*) _LT_TAGVAR(export_symbols_cmds, $1)="$ltdll_cmds" ;; cygwin* | mingw* | cegcc*) case $cc_basename in cl*) ;; *) _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'] ;; esac ;; linux* | k*bsd*-gnu | gnu*) _LT_TAGVAR(link_all_deplibs, $1)=no ;; *) _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' ;; esac ], [ runpath_var= _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_cmds, $1)= _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(compiler_needs_object, $1)=no _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(old_archive_from_new_cmds, $1)= _LT_TAGVAR(old_archive_from_expsyms_cmds, $1)= _LT_TAGVAR(thread_safe_flag_spec, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= # include_expsyms should be a list of space-separated symbols to be *always* # included in the symbol list _LT_TAGVAR(include_expsyms, $1)= # exclude_expsyms can be an extended regexp of symbols to exclude # it will be wrapped by ` (' and `)$', so one must not match beginning or # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', # as well as any symbol that contains `d'. _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out # platforms (ab)use it in PIC code, but their linkers get confused if # the symbol is explicitly referenced. Since portable code cannot # rely on this symbol name, it's probably fine to never include it in # preloaded symbol tables. # Exclude shared library initialization/finalization symbols. dnl Note also adjust exclude_expsyms for C++ above. extract_expsyms_cmds= case $host_os in cygwin* | mingw* | pw32* | cegcc*) # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. if test "$GCC" != yes; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; openbsd*) with_gnu_ld=no ;; linux* | k*bsd*-gnu | gnu*) _LT_TAGVAR(link_all_deplibs, $1)=no ;; esac _LT_TAGVAR(ld_shlibs, $1)=yes # On some targets, GNU ld is compatible enough with the native linker # that we're better off using the native interface for both. lt_use_gnu_ld_interface=no if test "$with_gnu_ld" = yes; then case $host_os in aix*) # The AIX port of GNU ld has always aspired to compatibility # with the native linker. However, as the warning in the GNU ld # block says, versions before 2.19.5* couldn't really create working # shared libraries, regardless of the interface used. case `$LD -v 2>&1` in *\ \(GNU\ Binutils\)\ 2.19.5*) ;; *\ \(GNU\ Binutils\)\ 2.[[2-9]]*) ;; *\ \(GNU\ Binutils\)\ [[3-9]]*) ;; *) lt_use_gnu_ld_interface=yes ;; esac ;; *) lt_use_gnu_ld_interface=yes ;; esac fi if test "$lt_use_gnu_ld_interface" = yes; then # If archive_cmds runs LD, not CC, wlarc should be empty wlarc='${wl}' # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. runpath_var=LD_RUN_PATH _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else _LT_TAGVAR(whole_archive_flag_spec, $1)= fi supports_anon_versioning=no case `$LD -v 2>&1` in *GNU\ gold*) supports_anon_versioning=yes ;; *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... *\ 2.11.*) ;; # other 2.11 versions *) supports_anon_versioning=yes ;; esac # See if GNU ld supports shared libraries. case $host_os in aix[[3-9]]*) # On AIX/PPC, the GNU linker is very broken if test "$host_cpu" != ia64; then _LT_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 *** Warning: the GNU linker, at least up to release 2.19, is reported *** to be unable to reliably create shared libraries on AIX. *** Therefore, libtool is disabling shared libraries support. If you *** really care for shared libraries, you may want to install binutils *** 2.20 or above, or modify your PATH so that a non-GNU linker is found. *** You will then need to restart the configuration process. _LT_EOF fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='' ;; m68k) _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes ;; esac ;; beos*) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(allow_undefined_flag, $1)=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; cygwin* | mingw* | pw32* | cegcc*) # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, # as there is no search path for DLLs. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-all-symbols' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'] if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; haiku*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(link_all_deplibs, $1)=yes ;; interix[[3-9]]*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) tmp_diet=no if test "$host_os" = linux-dietlibc; then case $cc_basename in diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) esac fi if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ && test "$tmp_diet" = no then tmp_addflag=' $pic_flag' tmp_sharedflag='-shared' case $cc_basename,$host_cpu in pgcc*) # Portland Group C compiler _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group f77 and f90 compilers _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag -Mnomain' ;; ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 tmp_addflag=' -i_dynamic' ;; efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 tmp_addflag=' -i_dynamic -nofor_main' ;; ifc* | ifort*) # Intel Fortran compiler tmp_addflag=' -nofor_main' ;; lf95*) # Lahey Fortran 8.1 _LT_TAGVAR(whole_archive_flag_spec, $1)= tmp_sharedflag='--shared' ;; xl[[cC]]* | bgxl[[cC]]* | mpixl[[cC]]*) # IBM XL C 8.0 on PPC (deal with xlf below) tmp_sharedflag='-qmkshrobj' tmp_addflag= ;; nvcc*) # Cuda Compiler Driver 2.2 _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes ;; esac case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C 5.9 _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes tmp_sharedflag='-G' ;; *Sun\ F*) # Sun Fortran 8.3 tmp_sharedflag='-G' ;; esac _LT_TAGVAR(archive_cmds, $1)='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' if test "x$supports_anon_versioning" = xyes; then _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' fi case $cc_basename in xlf* | bgf* | bgxlf* | mpixlf*) # IBM XL Fortran 10.1 on PPC cannot create shared libs itself _LT_TAGVAR(whole_archive_flag_spec, $1)='--whole-archive$convenience --no-whole-archive' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='-rpath $libdir' _LT_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib' if test "x$supports_anon_versioning" = xyes; then _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' fi ;; esac else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' fi ;; solaris*) if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then _LT_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 *** Warning: The releases 2.8.* of the GNU linker cannot reliably *** create shared libraries on Solaris systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.9.1 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) case `$LD -v 2>&1` in *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.1[[0-5]].*) _LT_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 *** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not *** reliably create shared libraries on SCO systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.16.91.0.3 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF ;; *) # For security reasons, it is highly recommended that you always # use absolute paths for naming shared libraries, and exclude the # DT_RUNPATH tag from executables and libraries. But doing so # requires that you compile everything twice, which is a pain. if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; sunos4*) _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' wlarc= _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac if test "$_LT_TAGVAR(ld_shlibs, $1)" = no; then runpath_var= _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= fi else # PORTME fill in a description of your system's linker (not GNU ld) case $host_os in aix3*) _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=yes _LT_TAGVAR(archive_expsym_cmds, $1)='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. _LT_TAGVAR(hardcode_minus_L, $1)=yes if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. _LT_TAGVAR(hardcode_direct, $1)=unsupported fi ;; aix[[4-9]]*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm # Also, AIX nm treats weak defined symbols like other global # defined symbols, whereas GNU nm marks them as "W". if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' else _LT_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) for ld_flag in $LDFLAGS; do if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then aix_use_runtimelinking=yes break fi done ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. _LT_TAGVAR(archive_cmds, $1)='' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(file_list_spec, $1)='${wl}-f,' if test "$GCC" = yes; then case $host_os in aix4.[[012]]|aix4.[[012]].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 _LT_TAGVAR(hardcode_direct, $1)=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)= fi ;; esac shared_flag='-shared' if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi _LT_TAGVAR(link_all_deplibs, $1)=no else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. _LT_TAGVAR(always_export_symbols, $1)=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. _LT_TAGVAR(allow_undefined_flag, $1)='-berok' # Determine the default libpath from the value encoded in an # empty executable. _LT_SYS_MODULE_PATH_AIX([$1]) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. _LT_SYS_MODULE_PATH_AIX([$1]) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' if test "$with_gnu_ld" = yes; then # We only use this code for GNU lds that support --whole-archive. _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' fi _LT_TAGVAR(archive_cmds_need_lc, $1)=yes # This is similar to how AIX traditionally builds its shared libraries. _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='' ;; m68k) _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes ;; esac ;; bsdi[[45]]*) _LT_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic ;; cygwin* | mingw* | pw32* | cegcc*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. case $cc_basename in cl*) # Native MSVC _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=yes _LT_TAGVAR(file_list_spec, $1)='@' # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then sed -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; else sed -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; fi~ $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1,DATA/'\'' | $SED -e '\''/^[[AITW]][[ ]]/s/.*[[ ]]//'\'' | sort | uniq > $export_symbols' # Don't use ranlib _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib' _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~ lt_tool_outputfile="@TOOL_OUTPUT@"~ case $lt_outputfile in *.exe|*.EXE) ;; *) lt_outputfile="$lt_outputfile.exe" lt_tool_outputfile="$lt_tool_outputfile.exe" ;; esac~ if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; $RM "$lt_outputfile.manifest"; fi' ;; *) # Assume MSVC wrapper _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. _LT_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' # FIXME: Should let the user specify the lib program. _LT_TAGVAR(old_archive_cmds, $1)='lib -OUT:$oldlib$oldobjs$old_deplibs' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes ;; esac ;; darwin* | rhapsody*) _LT_DARWIN_LINKER_FEATURES($1) ;; dgux*) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; freebsd1*) _LT_TAGVAR(ld_shlibs, $1)=no ;; # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor # support. Future versions do this automatically, but an explicit c++rt0.o # does not break anything, and helps significantly (at the cost of a little # extra space). freebsd2.2*) _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. freebsd2*) _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. freebsd* | dragonfly*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; hpux9*) if test "$GCC" = yes; then _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_direct, $1)=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' ;; hpux10*) if test "$GCC" = yes && test "$with_gnu_ld" = no; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi if test "$with_gnu_ld" = no; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='+b $libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_TAGVAR(hardcode_minus_L, $1)=yes fi ;; hpux11*) if test "$GCC" = yes && test "$with_gnu_ld" = no; then case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) m4_if($1, [], [ # Older versions of the 11.00 compiler do not understand -b yet # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does) _LT_LINKER_OPTION([if $CC understands -b], _LT_TAGVAR(lt_cv_prog_compiler__b, $1), [-b], [_LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'], [_LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'])], [_LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags']) ;; esac fi if test "$with_gnu_ld" = no; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: case $host_cpu in hppa*64*|ia64*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_TAGVAR(hardcode_minus_L, $1)=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) if test "$GCC" = yes; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' # Try to use the -exported_symbol ld option, if it does not # work, assume that -exports_file does not work either and # implicitly export all symbols. # This should be the same for all languages, so no per-tag cache variable. AC_CACHE_CHECK([whether the $host_os linker accepts -exported_symbol], [lt_cv_irix_exported_symbol], [save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null" AC_LINK_IFELSE( [AC_LANG_SOURCE( [AC_LANG_CASE([C], [[int foo (void) { return 0; }]], [C++], [[int foo (void) { return 0; }]], [Fortran 77], [[ subroutine foo end]], [Fortran], [[ subroutine foo end]])])], [lt_cv_irix_exported_symbol=yes], [lt_cv_irix_exported_symbol=no]) LDFLAGS="$save_LDFLAGS"]) if test "$lt_cv_irix_exported_symbol" = yes; then _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib' fi else _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib' fi _LT_TAGVAR(archive_cmds_need_lc, $1)='no' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(inherit_rpath, $1)=yes _LT_TAGVAR(link_all_deplibs, $1)=yes ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else _LT_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; newsos6) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *nto* | *qnx*) ;; openbsd*) if test -f /usr/libexec/ld.so; then _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=yes if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' else case $host_os in openbsd[[01]].* | openbsd2.[[0-7]] | openbsd2.[[0-7]].*) _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' ;; esac fi else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; os2*) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~echo DATA >> $output_objdir/$libname.def~echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' _LT_TAGVAR(old_archive_from_new_cmds, $1)='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' ;; osf3*) if test "$GCC" = yes; then _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' fi _LT_TAGVAR(archive_cmds_need_lc, $1)='no' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag if test "$GCC" = yes; then _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $pic_flag $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' else _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp' # Both c and cxx compiler support -rpath directly _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' fi _LT_TAGVAR(archive_cmds_need_lc, $1)='no' _LT_TAGVAR(hardcode_libdir_separator, $1)=: ;; solaris*) _LT_TAGVAR(no_undefined_flag, $1)=' -z defs' if test "$GCC" = yes; then wlarc='${wl}' _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' else case `$CC -V 2>&1` in *"Compilers 5.0"*) wlarc='' _LT_TAGVAR(archive_cmds, $1)='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' ;; *) wlarc='${wl}' _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' ;; esac fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands `-z linker_flag'. GCC discards it without `$wl', # but is careful enough not to reorder. # Supported since Solaris 2.6 (maybe 2.5.1?) if test "$GCC" = yes; then _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' else _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' fi ;; esac _LT_TAGVAR(link_all_deplibs, $1)=yes ;; sunos4*) if test "x$host_vendor" = xsequent; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; sysv4) case $host_vendor in sni) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=yes # is this really true??? ;; siemens) ## LD is ld it makes a PLAMLIB ## CC just makes a GrossModule. _LT_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(reload_cmds, $1)='$CC -r -o $output$reload_objs' _LT_TAGVAR(hardcode_direct, $1)=no ;; motorola) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=no #Motorola manual says yes, but my tests say they lie ;; esac runpath_var='LD_RUN_PATH' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; sysv4.3*) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport' ;; sysv4*MP*) if test -d /usr/nec; then _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var=LD_RUN_PATH hardcode_runpath_var=yes _LT_TAGVAR(ld_shlibs, $1)=yes fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; uts4*) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_TAGVAR(ld_shlibs, $1)=no ;; esac if test x$host_vendor = xsni; then case $host in sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Blargedynsym' ;; esac fi fi ]) AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no _LT_TAGVAR(with_gnu_ld, $1)=$with_gnu_ld _LT_DECL([], [libext], [0], [Old archive suffix (normally "a")])dnl _LT_DECL([], [shrext_cmds], [1], [Shared library suffix (normally ".so")])dnl _LT_DECL([], [extract_expsyms_cmds], [2], [The commands to extract the exported symbol list from a shared archive]) # # Do we need to explicitly link libc? # case "x$_LT_TAGVAR(archive_cmds_need_lc, $1)" in x|xyes) # Assume -lc should be added _LT_TAGVAR(archive_cmds_need_lc, $1)=yes if test "$enable_shared" = yes && test "$GCC" = yes; then case $_LT_TAGVAR(archive_cmds, $1) in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. AC_CACHE_CHECK([whether -lc should be explicitly linked in], [lt_cv_]_LT_TAGVAR(archive_cmds_need_lc, $1), [$RM conftest* echo "$lt_simple_compile_test_code" > conftest.$ac_ext if AC_TRY_EVAL(ac_compile) 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) pic_flag=$_LT_TAGVAR(lt_prog_compiler_pic, $1) compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$_LT_TAGVAR(allow_undefined_flag, $1) _LT_TAGVAR(allow_undefined_flag, $1)= if AC_TRY_EVAL(_LT_TAGVAR(archive_cmds, $1) 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) then lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=no else lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=yes fi _LT_TAGVAR(allow_undefined_flag, $1)=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $RM conftest* ]) _LT_TAGVAR(archive_cmds_need_lc, $1)=$lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1) ;; esac fi ;; esac _LT_TAGDECL([build_libtool_need_lc], [archive_cmds_need_lc], [0], [Whether or not to add -lc for building shared libraries]) _LT_TAGDECL([allow_libtool_libs_with_static_runtimes], [enable_shared_with_static_runtimes], [0], [Whether or not to disallow shared libs when runtime libs are static]) _LT_TAGDECL([], [export_dynamic_flag_spec], [1], [Compiler flag to allow reflexive dlopens]) _LT_TAGDECL([], [whole_archive_flag_spec], [1], [Compiler flag to generate shared objects directly from archives]) _LT_TAGDECL([], [compiler_needs_object], [1], [Whether the compiler copes with passing no objects directly]) _LT_TAGDECL([], [old_archive_from_new_cmds], [2], [Create an old-style archive from a shared archive]) _LT_TAGDECL([], [old_archive_from_expsyms_cmds], [2], [Create a temporary old-style archive to link instead of a shared archive]) _LT_TAGDECL([], [archive_cmds], [2], [Commands used to build a shared archive]) _LT_TAGDECL([], [archive_expsym_cmds], [2]) _LT_TAGDECL([], [module_cmds], [2], [Commands used to build a loadable module if different from building a shared archive.]) _LT_TAGDECL([], [module_expsym_cmds], [2]) _LT_TAGDECL([], [with_gnu_ld], [1], [Whether we are building with GNU ld or not]) _LT_TAGDECL([], [allow_undefined_flag], [1], [Flag that allows shared libraries with undefined symbols to be built]) _LT_TAGDECL([], [no_undefined_flag], [1], [Flag that enforces no undefined symbols]) _LT_TAGDECL([], [hardcode_libdir_flag_spec], [1], [Flag to hardcode $libdir into a binary during linking. This must work even if $libdir does not exist]) _LT_TAGDECL([], [hardcode_libdir_flag_spec_ld], [1], [[If ld is used when linking, flag to hardcode $libdir into a binary during linking. This must work even if $libdir does not exist]]) _LT_TAGDECL([], [hardcode_libdir_separator], [1], [Whether we need a single "-rpath" flag with a separated argument]) _LT_TAGDECL([], [hardcode_direct], [0], [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the resulting binary]) _LT_TAGDECL([], [hardcode_direct_absolute], [0], [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the resulting binary and the resulting library dependency is "absolute", i.e impossible to change by setting ${shlibpath_var} if the library is relocated]) _LT_TAGDECL([], [hardcode_minus_L], [0], [Set to "yes" if using the -LDIR flag during linking hardcodes DIR into the resulting binary]) _LT_TAGDECL([], [hardcode_shlibpath_var], [0], [Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into the resulting binary]) _LT_TAGDECL([], [hardcode_automatic], [0], [Set to "yes" if building a shared library automatically hardcodes DIR into the library and all subsequent libraries and executables linked against it]) _LT_TAGDECL([], [inherit_rpath], [0], [Set to yes if linker adds runtime paths of dependent libraries to runtime path list]) _LT_TAGDECL([], [link_all_deplibs], [0], [Whether libtool must link a program against all its dependency libraries]) _LT_TAGDECL([], [always_export_symbols], [0], [Set to "yes" if exported symbols are required]) _LT_TAGDECL([], [export_symbols_cmds], [2], [The commands to list exported symbols]) _LT_TAGDECL([], [exclude_expsyms], [1], [Symbols that should not be listed in the preloaded symbols]) _LT_TAGDECL([], [include_expsyms], [1], [Symbols that must always be exported]) _LT_TAGDECL([], [prelink_cmds], [2], [Commands necessary for linking programs (against libraries) with templates]) _LT_TAGDECL([], [postlink_cmds], [2], [Commands necessary for finishing linking programs]) _LT_TAGDECL([], [file_list_spec], [1], [Specify filename containing input files]) dnl FIXME: Not yet implemented dnl _LT_TAGDECL([], [thread_safe_flag_spec], [1], dnl [Compiler flag to generate thread safe objects]) ])# _LT_LINKER_SHLIBS # _LT_LANG_C_CONFIG([TAG]) # ------------------------ # Ensure that the configuration variables for a C compiler are suitably # defined. These variables are subsequently used by _LT_CONFIG to write # the compiler configuration to `libtool'. m4_defun([_LT_LANG_C_CONFIG], [m4_require([_LT_DECL_EGREP])dnl lt_save_CC="$CC" AC_LANG_PUSH(C) # Source file extension for C test sources. ac_ext=c # Object file extension for compiled C test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" # Code to be used in simple link tests lt_simple_link_test_code='int main(){return(0);}' _LT_TAG_COMPILER # Save the default compiler, since it gets overwritten when the other # tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP. compiler_DEFAULT=$CC # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE ## 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_COMPILER_NO_RTTI($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) LT_SYS_DLOPEN_SELF _LT_CMD_STRIPLIB # Report which library types will actually be built AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) test "$can_build_shared" = "no" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no fi ;; esac AC_MSG_RESULT([$enable_shared]) AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. test "$enable_shared" = yes || enable_static=yes AC_MSG_RESULT([$enable_static]) _LT_CONFIG($1) fi AC_LANG_POP CC="$lt_save_CC" ])# _LT_LANG_C_CONFIG # _LT_LANG_CXX_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for a C++ compiler are suitably # defined. These variables are subsequently used by _LT_CONFIG to write # the compiler configuration to `libtool'. m4_defun([_LT_LANG_CXX_CONFIG], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_PATH_MANIFEST_TOOL])dnl if test -n "$CXX" && ( test "X$CXX" != "Xno" && ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || (test "X$CXX" != "Xg++"))) ; then AC_PROG_CXXCPP else _lt_caught_CXX_error=yes fi AC_LANG_PUSH(C++) _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(compiler_needs_object, $1)=no _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds _LT_TAGVAR(no_undefined_flag, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no # Source file extension for C++ test sources. ac_ext=cpp # Object file extension for compiled C++ test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # No sense in running all these tests if we already determined that # the CXX compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. if test "$_lt_caught_CXX_error" != yes; then # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" # Code to be used in simple link tests lt_simple_link_test_code='int main(int, char *[[]]) { return(0); }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_CFLAGS=$CFLAGS lt_save_LD=$LD lt_save_GCC=$GCC GCC=$GXX lt_save_with_gnu_ld=$with_gnu_ld lt_save_path_LD=$lt_cv_path_LD if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx else $as_unset lt_cv_prog_gnu_ld fi if test -n "${lt_cv_path_LDCXX+set}"; then lt_cv_path_LD=$lt_cv_path_LDCXX else $as_unset lt_cv_path_LD fi test -z "${LDCXX+set}" || LD=$LDCXX CC=${CXX-"c++"} CFLAGS=$CXXFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) if test -n "$compiler"; then # We don't want -fno-exception when compiling C++ code, so set the # no_builtin_flag separately if test "$GXX" = yes; then _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' else _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= fi if test "$GXX" = yes; then # Set up default GNU C++ configuration LT_PATH_LD # Check if GNU C++ uses GNU ld as the underlying linker, since the # archiving commands below assume that GNU ld is being used. if test "$with_gnu_ld" = yes; then _LT_TAGVAR(archive_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' # If archive_cmds runs LD, not CC, wlarc should be empty # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to # investigate it a little bit more. (MM) wlarc='${wl}' # ancient GNU ld didn't support --whole-archive et. al. if eval "`$CC -print-prog-name=ld` --help 2>&1" | $GREP 'no-whole-archive' > /dev/null; then _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else _LT_TAGVAR(whole_archive_flag_spec, $1)= fi else with_gnu_ld=no wlarc= # A generic and very simple default shared library creation # command for GNU C++ for the case where it uses the native # linker, instead of GNU ld. If possible, this setting should # overridden to take advantage of the native linker features on # the platform it is being used on. _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' fi # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' else GXX=no with_gnu_ld=no wlarc= fi # PORTME: fill in a description of your system's C++ link characteristics AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) _LT_TAGVAR(ld_shlibs, $1)=yes case $host_os in aix3*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; aix[[4-9]]*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) for ld_flag in $LDFLAGS; do case $ld_flag in *-brtl*) aix_use_runtimelinking=yes break ;; esac done ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. _LT_TAGVAR(archive_cmds, $1)='' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(file_list_spec, $1)='${wl}-f,' if test "$GXX" = yes; then case $host_os in aix4.[[012]]|aix4.[[012]].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 _LT_TAGVAR(hardcode_direct, $1)=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)= fi esac shared_flag='-shared' if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to # export. _LT_TAGVAR(always_export_symbols, $1)=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. _LT_TAGVAR(allow_undefined_flag, $1)='-berok' # Determine the default libpath from the value encoded in an empty # executable. _LT_SYS_MODULE_PATH_AIX([$1]) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. _LT_SYS_MODULE_PATH_AIX([$1]) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' if test "$with_gnu_ld" = yes; then # We only use this code for GNU lds that support --whole-archive. _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' fi _LT_TAGVAR(archive_cmds_need_lc, $1)=yes # This is similar to how AIX traditionally builds its shared # libraries. _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; beos*) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(allow_undefined_flag, $1)=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; chorus*) case $cc_basename in *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; cygwin* | mingw* | pw32* | cegcc*) case $GXX,$cc_basename in ,cl* | no,cl*) # Native MSVC # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=yes _LT_TAGVAR(file_list_spec, $1)='@' # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then $SED -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; else $SED -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; fi~ $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes # Don't use ranlib _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib' _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~ lt_tool_outputfile="@TOOL_OUTPUT@"~ case $lt_outputfile in *.exe|*.EXE) ;; *) lt_outputfile="$lt_outputfile.exe" lt_tool_outputfile="$lt_tool_outputfile.exe" ;; esac~ func_to_tool_file "$lt_outputfile"~ if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; $RM "$lt_outputfile.manifest"; fi' ;; *) # g++ # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, # as there is no search path for DLLs. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-all-symbols' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; darwin* | rhapsody*) _LT_DARWIN_LINKER_FEATURES($1) ;; dgux*) case $cc_basename in ec++*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; ghcx*) # Green Hills C++ Compiler # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; freebsd[[12]]*) # C++ shared libraries reported to be fairly broken before # switch to ELF _LT_TAGVAR(ld_shlibs, $1)=no ;; freebsd-elf*) _LT_TAGVAR(archive_cmds_need_lc, $1)=no ;; freebsd* | dragonfly*) # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF # conventions _LT_TAGVAR(ld_shlibs, $1)=yes ;; gnu*) ;; haiku*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(link_all_deplibs, $1)=yes ;; hpux9*) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, # but as the default # location of the library. case $cc_basename in CC*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; aCC*) _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) if test "$GXX" = yes; then _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared -nostdlib $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; hpux10*|hpux11*) if test $with_gnu_ld = no; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: case $host_cpu in hppa*64*|ia64*) ;; *) _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' ;; esac fi case $host_cpu in hppa*64*|ia64*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, # but as the default # location of the library. ;; esac case $cc_basename in CC*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; aCC*) case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) if test "$GXX" = yes; then if test $with_gnu_ld = no; then case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac fi else # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; interix[[3-9]]*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; irix5* | irix6*) case $cc_basename in CC*) # SGI C++ _LT_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' # Archives containing C++ object files must be created using # "CC -ar", where "CC" is the IRIX C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs' ;; *) if test "$GXX" = yes; then if test "$with_gnu_ld" = no; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` -o $lib' fi fi _LT_TAGVAR(link_all_deplibs, $1)=yes ;; esac _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(inherit_rpath, $1)=yes ;; linux* | k*bsd*-gnu | kopensolaris*-gnu) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' # Archives containing C++ object files must be created using # "CC -Bstatic", where "CC" is the KAI C++ compiler. _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; icpc* | ecpc* ) # Intel C++ with_gnu_ld=yes # version 8.0 and above of icpc choke on multiply defined symbols # if we add $predep_objects and $postdep_objects, however 7.1 and # earlier do not add the objects themselves. case `$CC -V 2>&1` in *"Version 7."*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ;; *) # Version 8.0 or newer tmp_idyn= case $host_cpu in ia64*) tmp_idyn=' -i_dynamic';; esac _LT_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ;; esac _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' ;; pgCC* | pgcpp*) # Portland Group C++ compiler case `$CC -V` in *pgCC\ [[1-5]].* | *pgcpp\ [[1-5]].*) _LT_TAGVAR(prelink_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~ compile_command="$compile_command `find $tpldir -name \*.o | sort | $NL2SP`"' _LT_TAGVAR(old_archive_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~ $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | sort | $NL2SP`~ $RANLIB $oldlib' _LT_TAGVAR(archive_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' ;; *) # Version 6 and above use weak symbols _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' ;; esac _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' ;; cxx*) # Compaq C++ _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols' runpath_var=LD_RUN_PATH _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "X$list" | $Xsed' ;; xl* | mpixl* | bgxl*) # IBM XL 8.0 on PPC, with GNU ld _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' _LT_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' if test "x$supports_anon_versioning" = xyes; then _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' fi ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file ${wl}$export_symbols' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes # Not sure whether something based on # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 # would be better. output_verbose_link_cmd='func_echo_all' # Archives containing C++ object files must be created using # "CC -xar", where "CC" is the Sun C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' ;; esac ;; esac ;; lynxos*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; m88k*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; mvs*) case $cc_basename in cxx*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' wlarc= _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no fi # Workaround some broken pre-1.5 toolchains output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' ;; *nto* | *qnx*) _LT_TAGVAR(ld_shlibs, $1)=yes ;; openbsd2*) # C++ shared libraries are fairly broken _LT_TAGVAR(ld_shlibs, $1)=no ;; openbsd*) if test -f /usr/libexec/ld.so; then _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' fi output_verbose_link_cmd=func_echo_all else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; osf3* | osf4* | osf5*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Archives containing C++ object files must be created using # the KAI C++ compiler. case $host in osf3*) _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; *) _LT_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs' ;; esac ;; RCC*) # Rational C++ 2.4.1 # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; cxx*) case $host in osf3*) _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && func_echo_all "${wl}-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' ;; *) _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ echo "-hidden">> $lib.exp~ $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname ${wl}-input ${wl}$lib.exp `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~ $RM $lib.exp' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' ;; esac _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) if test "$GXX" = yes && test "$with_gnu_ld" = no; then _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' case $host in osf3*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' ;; esac _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' else # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; psos*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; lcc*) # Lucid # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; solaris*) case $cc_basename in CC* | sunCC*) # Sun C++ 4.2, 5.x and Centerline C++ _LT_TAGVAR(archive_cmds_need_lc,$1)=yes _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands `-z linker_flag'. # Supported since Solaris 2.6 (maybe 2.5.1?) _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' ;; esac _LT_TAGVAR(link_all_deplibs, $1)=yes output_verbose_link_cmd='func_echo_all' # Archives containing C++ object files must be created using # "CC -xar", where "CC" is the Sun C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' ;; gcx*) # Green Hills C++ Compiler _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' # The C++ compiler must be used to create the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs' ;; *) # GNU C++ compiler with Solaris linker if test "$GXX" = yes && test "$with_gnu_ld" = no; then _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-z ${wl}defs' if $CC --version | $GREP -v '^2\.7' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -shared $pic_flag -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' else # g++ 2.7 appears to require `-G' NOT `-shared' on this # platform. _LT_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $wl$libdir' case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' ;; esac fi ;; esac ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var='LD_RUN_PATH' case $cc_basename in CC*) _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' runpath_var='LD_RUN_PATH' case $cc_basename in CC*) _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(old_archive_cmds, $1)='$CC -Tprelink_objects $oldobjs~ '"$_LT_TAGVAR(old_archive_cmds, $1)" _LT_TAGVAR(reload_cmds, $1)='$CC -Tprelink_objects $reload_objs~ '"$_LT_TAGVAR(reload_cmds, $1)" ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; vxworks*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no _LT_TAGVAR(GCC, $1)="$GXX" _LT_TAGVAR(LD, $1)="$LD" ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... _LT_SYS_HIDDEN_LIBDEPS($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi # test -n "$compiler" CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS LDCXX=$LD LD=$lt_save_LD GCC=$lt_save_GCC with_gnu_ld=$lt_save_with_gnu_ld lt_cv_path_LDCXX=$lt_cv_path_LD lt_cv_path_LD=$lt_save_path_LD lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld fi # test "$_lt_caught_CXX_error" != yes AC_LANG_POP ])# _LT_LANG_CXX_CONFIG # _LT_FUNC_STRIPNAME_CNF # ---------------------- # func_stripname_cnf prefix suffix name # strip PREFIX and SUFFIX off of NAME. # PREFIX and SUFFIX must not contain globbing or regex special # characters, hashes, percent signs, but SUFFIX may contain a leading # dot (in which case that matches only a dot). # # This function is identical to the (non-XSI) version of func_stripname, # except this one can be used by m4 code that may be executed by configure, # rather than the libtool script. m4_defun([_LT_FUNC_STRIPNAME_CNF],[dnl AC_REQUIRE([_LT_DECL_SED]) AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH]) func_stripname_cnf () { case ${2} in .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;; *) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;; esac } # func_stripname_cnf ])# _LT_FUNC_STRIPNAME_CNF # _LT_SYS_HIDDEN_LIBDEPS([TAGNAME]) # --------------------------------- # Figure out "hidden" library dependencies from verbose # compiler output when linking a shared library. # Parse the compiler output and extract the necessary # objects, libraries and library flags. m4_defun([_LT_SYS_HIDDEN_LIBDEPS], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl AC_REQUIRE([_LT_FUNC_STRIPNAME_CNF])dnl # Dependencies to place before and after the object being linked: _LT_TAGVAR(predep_objects, $1)= _LT_TAGVAR(postdep_objects, $1)= _LT_TAGVAR(predeps, $1)= _LT_TAGVAR(postdeps, $1)= _LT_TAGVAR(compiler_lib_search_path, $1)= dnl we can't use the lt_simple_compile_test_code here, dnl because it contains code intended for an executable, dnl not a library. It's possible we should let each dnl tag define a new lt_????_link_test_code variable, dnl but it's only used here... m4_if([$1], [], [cat > conftest.$ac_ext <<_LT_EOF int a; void foo (void) { a = 0; } _LT_EOF ], [$1], [CXX], [cat > conftest.$ac_ext <<_LT_EOF class Foo { public: Foo (void) { a = 0; } private: int a; }; _LT_EOF ], [$1], [F77], [cat > conftest.$ac_ext <<_LT_EOF subroutine foo implicit none integer*4 a a=0 return end _LT_EOF ], [$1], [FC], [cat > conftest.$ac_ext <<_LT_EOF subroutine foo implicit none integer a a=0 return end _LT_EOF ], [$1], [GCJ], [cat > conftest.$ac_ext <<_LT_EOF public class foo { private int a; public void bar (void) { a = 0; } }; _LT_EOF ]) _lt_libdeps_save_CFLAGS=$CFLAGS case "$CC $CFLAGS " in #( *\ -flto*\ *) CFLAGS="$CFLAGS -fno-lto" ;; *\ -fwhopr*\ *) CFLAGS="$CFLAGS -fno-whopr" ;; esac dnl Parse the compiler output and extract the necessary dnl objects, libraries and library flags. if AC_TRY_EVAL(ac_compile); then # Parse the compiler output and extract the necessary # objects, libraries and library flags. # Sentinel used to keep track of whether or not we are before # the conftest object file. pre_test_object_deps_done=no for p in `eval "$output_verbose_link_cmd"`; do case ${prev}${p} in -L* | -R* | -l*) # Some compilers place space between "-{L,R}" and the path. # Remove the space. if test $p = "-L" || test $p = "-R"; then prev=$p continue fi # Expand the sysroot to ease extracting the directories later. if test -z "$prev"; then case $p in -L*) func_stripname_cnf '-L' '' "$p"; prev=-L; p=$func_stripname_result ;; -R*) func_stripname_cnf '-R' '' "$p"; prev=-R; p=$func_stripname_result ;; -l*) func_stripname_cnf '-l' '' "$p"; prev=-l; p=$func_stripname_result ;; esac fi case $p in =*) func_stripname_cnf '=' '' "$p"; p=$lt_sysroot$func_stripname_result ;; esac if test "$pre_test_object_deps_done" = no; then case ${prev} in -L | -R) # Internal compiler library paths should come after those # provided the user. The postdeps already come after the # user supplied libs so there is no need to process them. if test -z "$_LT_TAGVAR(compiler_lib_search_path, $1)"; then _LT_TAGVAR(compiler_lib_search_path, $1)="${prev}${p}" else _LT_TAGVAR(compiler_lib_search_path, $1)="${_LT_TAGVAR(compiler_lib_search_path, $1)} ${prev}${p}" fi ;; # The "-l" case would never come before the object being # linked, so don't bother handling this case. esac else if test -z "$_LT_TAGVAR(postdeps, $1)"; then _LT_TAGVAR(postdeps, $1)="${prev}${p}" else _LT_TAGVAR(postdeps, $1)="${_LT_TAGVAR(postdeps, $1)} ${prev}${p}" fi fi prev= ;; *.lto.$objext) ;; # Ignore GCC LTO objects *.$objext) # This assumes that the test object file only shows up # once in the compiler output. if test "$p" = "conftest.$objext"; then pre_test_object_deps_done=yes continue fi if test "$pre_test_object_deps_done" = no; then if test -z "$_LT_TAGVAR(predep_objects, $1)"; then _LT_TAGVAR(predep_objects, $1)="$p" else _LT_TAGVAR(predep_objects, $1)="$_LT_TAGVAR(predep_objects, $1) $p" fi else if test -z "$_LT_TAGVAR(postdep_objects, $1)"; then _LT_TAGVAR(postdep_objects, $1)="$p" else _LT_TAGVAR(postdep_objects, $1)="$_LT_TAGVAR(postdep_objects, $1) $p" fi fi ;; *) ;; # Ignore the rest. esac done # Clean up. rm -f a.out a.exe else echo "libtool.m4: error: problem compiling $1 test program" fi $RM -f confest.$objext CFLAGS=$_lt_libdeps_save_CFLAGS # PORTME: override above test on systems where it is broken m4_if([$1], [CXX], [case $host_os in interix[[3-9]]*) # Interix 3.5 installs completely hosed .la files for C++, so rather than # hack all around it, let's just trust "g++" to DTRT. _LT_TAGVAR(predep_objects,$1)= _LT_TAGVAR(postdep_objects,$1)= _LT_TAGVAR(postdeps,$1)= ;; linux*) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 # The more standards-conforming stlport4 library is # incompatible with the Cstd library. Avoid specifying # it if it's in CXXFLAGS. Ignore libCrun as # -library=stlport4 depends on it. case " $CXX $CXXFLAGS " in *" -library=stlport4 "*) solaris_use_stlport4=yes ;; esac if test "$solaris_use_stlport4" != yes; then _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun' fi ;; esac ;; solaris*) case $cc_basename in CC* | sunCC*) # The more standards-conforming stlport4 library is # incompatible with the Cstd library. Avoid specifying # it if it's in CXXFLAGS. Ignore libCrun as # -library=stlport4 depends on it. case " $CXX $CXXFLAGS " in *" -library=stlport4 "*) solaris_use_stlport4=yes ;; esac # Adding this requires a known-good setup of shared libraries for # Sun compiler versions before 5.6, else PIC objects from an old # archive will be linked into the output, leading to subtle bugs. if test "$solaris_use_stlport4" != yes; then _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun' fi ;; esac ;; esac ]) case " $_LT_TAGVAR(postdeps, $1) " in *" -lc "*) _LT_TAGVAR(archive_cmds_need_lc, $1)=no ;; esac _LT_TAGVAR(compiler_lib_search_dirs, $1)= if test -n "${_LT_TAGVAR(compiler_lib_search_path, $1)}"; then _LT_TAGVAR(compiler_lib_search_dirs, $1)=`echo " ${_LT_TAGVAR(compiler_lib_search_path, $1)}" | ${SED} -e 's! -L! !g' -e 's!^ !!'` fi _LT_TAGDECL([], [compiler_lib_search_dirs], [1], [The directories searched by this compiler when creating a shared library]) _LT_TAGDECL([], [predep_objects], [1], [Dependencies to place before and after the objects being linked to create a shared library]) _LT_TAGDECL([], [postdep_objects], [1]) _LT_TAGDECL([], [predeps], [1]) _LT_TAGDECL([], [postdeps], [1]) _LT_TAGDECL([], [compiler_lib_search_path], [1], [The library search path used internally by the compiler when linking a shared library]) ])# _LT_SYS_HIDDEN_LIBDEPS # _LT_LANG_F77_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for a Fortran 77 compiler are # suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to `libtool'. m4_defun([_LT_LANG_F77_CONFIG], [AC_LANG_PUSH(Fortran 77) if test -z "$F77" || test "X$F77" = "Xno"; then _lt_disable_F77=yes fi _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds _LT_TAGVAR(no_undefined_flag, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no # Source file extension for f77 test sources. ac_ext=f # Object file extension for compiled f77 test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # No sense in running all these tests if we already determined that # the F77 compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. if test "$_lt_disable_F77" != yes; then # Code to be used in simple compile tests lt_simple_compile_test_code="\ subroutine t return end " # Code to be used in simple link tests lt_simple_link_test_code="\ program t end " # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC="$CC" lt_save_GCC=$GCC lt_save_CFLAGS=$CFLAGS CC=${F77-"f77"} CFLAGS=$FFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) GCC=$G77 if test -n "$compiler"; then AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) test "$can_build_shared" = "no" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no fi ;; esac AC_MSG_RESULT([$enable_shared]) AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. test "$enable_shared" = yes || enable_static=yes AC_MSG_RESULT([$enable_static]) _LT_TAGVAR(GCC, $1)="$G77" _LT_TAGVAR(LD, $1)="$LD" ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi # test -n "$compiler" GCC=$lt_save_GCC CC="$lt_save_CC" CFLAGS="$lt_save_CFLAGS" fi # test "$_lt_disable_F77" != yes AC_LANG_POP ])# _LT_LANG_F77_CONFIG # _LT_LANG_FC_CONFIG([TAG]) # ------------------------- # Ensure that the configuration variables for a Fortran compiler are # suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to `libtool'. m4_defun([_LT_LANG_FC_CONFIG], [AC_LANG_PUSH(Fortran) if test -z "$FC" || test "X$FC" = "Xno"; then _lt_disable_FC=yes fi _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds _LT_TAGVAR(no_undefined_flag, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no # Source file extension for fc test sources. ac_ext=${ac_fc_srcext-f} # Object file extension for compiled fc test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # No sense in running all these tests if we already determined that # the FC compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. if test "$_lt_disable_FC" != yes; then # Code to be used in simple compile tests lt_simple_compile_test_code="\ subroutine t return end " # Code to be used in simple link tests lt_simple_link_test_code="\ program t end " # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC="$CC" lt_save_GCC=$GCC lt_save_CFLAGS=$CFLAGS CC=${FC-"f95"} CFLAGS=$FCFLAGS compiler=$CC GCC=$ac_cv_fc_compiler_gnu _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) if test -n "$compiler"; then AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) test "$can_build_shared" = "no" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no fi ;; esac AC_MSG_RESULT([$enable_shared]) AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. test "$enable_shared" = yes || enable_static=yes AC_MSG_RESULT([$enable_static]) _LT_TAGVAR(GCC, $1)="$ac_cv_fc_compiler_gnu" _LT_TAGVAR(LD, $1)="$LD" ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... _LT_SYS_HIDDEN_LIBDEPS($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi # test -n "$compiler" GCC=$lt_save_GCC CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS fi # test "$_lt_disable_FC" != yes AC_LANG_POP ])# _LT_LANG_FC_CONFIG # _LT_LANG_GCJ_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for the GNU Java Compiler compiler # are suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to `libtool'. m4_defun([_LT_LANG_GCJ_CONFIG], [AC_REQUIRE([LT_PROG_GCJ])dnl AC_LANG_SAVE # Source file extension for Java test sources. ac_ext=java # Object file extension for compiled Java test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="class foo {}" # Code to be used in simple link tests lt_simple_link_test_code='public class conftest { public static void main(String[[]] argv) {}; }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_CFLAGS=$CFLAGS lt_save_GCC=$GCC GCC=yes CC=${GCJ-"gcj"} CFLAGS=$GCJFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_TAGVAR(LD, $1)="$LD" _LT_CC_BASENAME([$compiler]) # GCJ did not exist at the time GCC didn't implicitly link libc in. _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds ## 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_COMPILER_NO_RTTI($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi AC_LANG_RESTORE GCC=$lt_save_GCC CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS ])# _LT_LANG_GCJ_CONFIG # _LT_LANG_RC_CONFIG([TAG]) # ------------------------- # Ensure that the configuration variables for the Windows resource compiler # are suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to `libtool'. m4_defun([_LT_LANG_RC_CONFIG], [AC_REQUIRE([LT_PROG_RC])dnl AC_LANG_SAVE # Source file extension for RC test sources. ac_ext=rc # Object file extension for compiled RC test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }' # Code to be used in simple link tests lt_simple_link_test_code="$lt_simple_compile_test_code" # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC="$CC" lt_save_CFLAGS=$CFLAGS lt_save_GCC=$GCC GCC= CC=${RC-"windres"} CFLAGS= compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) _LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes if test -n "$compiler"; then : _LT_CONFIG($1) fi GCC=$lt_save_GCC AC_LANG_RESTORE CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS ])# _LT_LANG_RC_CONFIG # LT_PROG_GCJ # ----------- AC_DEFUN([LT_PROG_GCJ], [m4_ifdef([AC_PROG_GCJ], [AC_PROG_GCJ], [m4_ifdef([A][M_PROG_GCJ], [A][M_PROG_GCJ], [AC_CHECK_TOOL(GCJ, gcj,) test "x${GCJFLAGS+set}" = xset || GCJFLAGS="-g -O2" AC_SUBST(GCJFLAGS)])])[]dnl ]) # Old name: AU_ALIAS([LT_AC_PROG_GCJ], [LT_PROG_GCJ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([LT_AC_PROG_GCJ], []) # LT_PROG_RC # ---------- AC_DEFUN([LT_PROG_RC], [AC_CHECK_TOOL(RC, windres,) ]) # Old name: AU_ALIAS([LT_AC_PROG_RC], [LT_PROG_RC]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([LT_AC_PROG_RC], []) # _LT_DECL_EGREP # -------------- # If we don't have a new enough Autoconf to choose the best grep # available, choose the one first in the user's PATH. m4_defun([_LT_DECL_EGREP], [AC_REQUIRE([AC_PROG_EGREP])dnl AC_REQUIRE([AC_PROG_FGREP])dnl test -z "$GREP" && GREP=grep _LT_DECL([], [GREP], [1], [A grep program that handles long lines]) _LT_DECL([], [EGREP], [1], [An ERE matcher]) _LT_DECL([], [FGREP], [1], [A literal string matcher]) dnl Non-bleeding-edge autoconf doesn't subst GREP, so do it here too AC_SUBST([GREP]) ]) # _LT_DECL_OBJDUMP # -------------- # If we don't have a new enough Autoconf to choose the best objdump # available, choose the one first in the user's PATH. m4_defun([_LT_DECL_OBJDUMP], [AC_CHECK_TOOL(OBJDUMP, objdump, false) test -z "$OBJDUMP" && OBJDUMP=objdump _LT_DECL([], [OBJDUMP], [1], [An object symbol dumper]) AC_SUBST([OBJDUMP]) ]) # _LT_DECL_DLLTOOL # ---------------- # Ensure DLLTOOL variable is set. m4_defun([_LT_DECL_DLLTOOL], [AC_CHECK_TOOL(DLLTOOL, dlltool, false) test -z "$DLLTOOL" && DLLTOOL=dlltool _LT_DECL([], [DLLTOOL], [1], [DLL creation program]) AC_SUBST([DLLTOOL]) ]) # _LT_DECL_SED # ------------ # Check for a fully-functional sed program, that truncates # as few characters as possible. Prefer GNU sed if found. m4_defun([_LT_DECL_SED], [AC_PROG_SED test -z "$SED" && SED=sed Xsed="$SED -e 1s/^X//" _LT_DECL([], [SED], [1], [A sed program that does not truncate output]) _LT_DECL([], [Xsed], ["\$SED -e 1s/^X//"], [Sed that helps us avoid accidentally triggering echo(1) options like -n]) ])# _LT_DECL_SED m4_ifndef([AC_PROG_SED], [ ############################################################ # NOTE: This macro has been submitted for inclusion into # # GNU Autoconf as AC_PROG_SED. When it is available in # # a released version of Autoconf we should remove this # # macro and use it instead. # ############################################################ m4_defun([AC_PROG_SED], [AC_MSG_CHECKING([for a sed that does not truncate output]) AC_CACHE_VAL(lt_cv_path_SED, [# Loop through the user's path and test for sed and gsed. # Then use that list of sed's as ones to test for truncation. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for lt_ac_prog in sed gsed; do for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$lt_ac_prog$ac_exec_ext"; then lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext" fi done done done IFS=$as_save_IFS lt_ac_max=0 lt_ac_count=0 # Add /usr/xpg4/bin/sed as it is typically found on Solaris # along with /bin/sed that truncates output. for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do test ! -f $lt_ac_sed && continue cat /dev/null > conftest.in lt_ac_count=0 echo $ECHO_N "0123456789$ECHO_C" >conftest.in # Check for GNU sed and select it if it is found. if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then lt_cv_path_SED=$lt_ac_sed break fi while true; do cat conftest.in conftest.in >conftest.tmp mv conftest.tmp conftest.in cp conftest.in conftest.nl echo >>conftest.nl $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break cmp -s conftest.out conftest.nl || break # 10000 chars as input seems more than enough test $lt_ac_count -gt 10 && break lt_ac_count=`expr $lt_ac_count + 1` if test $lt_ac_count -gt $lt_ac_max; then lt_ac_max=$lt_ac_count lt_cv_path_SED=$lt_ac_sed fi done done ]) SED=$lt_cv_path_SED AC_SUBST([SED]) AC_MSG_RESULT([$SED]) ])#AC_PROG_SED ])#m4_ifndef # Old name: AU_ALIAS([LT_AC_PROG_SED], [AC_PROG_SED]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([LT_AC_PROG_SED], []) # _LT_CHECK_SHELL_FEATURES # ------------------------ # Find out whether the shell is Bourne or XSI compatible, # or has some other useful features. m4_defun([_LT_CHECK_SHELL_FEATURES], [AC_MSG_CHECKING([whether the shell understands some XSI constructs]) # Try some XSI features xsi_shell=no ( _lt_dummy="a/b/c" test "${_lt_dummy##*/},${_lt_dummy%/*},${_lt_dummy#??}"${_lt_dummy%"$_lt_dummy"}, \ = c,a/b,b/c, \ && eval 'test $(( 1 + 1 )) -eq 2 \ && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \ && xsi_shell=yes AC_MSG_RESULT([$xsi_shell]) _LT_CONFIG_LIBTOOL_INIT([xsi_shell='$xsi_shell']) AC_MSG_CHECKING([whether the shell understands "+="]) lt_shell_append=no ( foo=bar; set foo baz; eval "$[1]+=\$[2]" && test "$foo" = barbaz ) \ >/dev/null 2>&1 \ && lt_shell_append=yes AC_MSG_RESULT([$lt_shell_append]) _LT_CONFIG_LIBTOOL_INIT([lt_shell_append='$lt_shell_append']) if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then lt_unset=unset else lt_unset=false fi _LT_DECL([], [lt_unset], [0], [whether the shell understands "unset"])dnl # test EBCDIC or ASCII case `echo X|tr X '\101'` in A) # ASCII based system # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr lt_SP2NL='tr \040 \012' lt_NL2SP='tr \015\012 \040\040' ;; *) # EBCDIC based system lt_SP2NL='tr \100 \n' lt_NL2SP='tr \r\n \100\100' ;; esac _LT_DECL([SP2NL], [lt_SP2NL], [1], [turn spaces into newlines])dnl _LT_DECL([NL2SP], [lt_NL2SP], [1], [turn newlines into spaces])dnl ])# _LT_CHECK_SHELL_FEATURES # _LT_PROG_FUNCTION_REPLACE (FUNCNAME, REPLACEMENT-BODY) # ------------------------------------------------------ # In `$cfgfile', look for function FUNCNAME delimited by `^FUNCNAME ()$' and # '^} FUNCNAME ', and replace its body with REPLACEMENT-BODY. m4_defun([_LT_PROG_FUNCTION_REPLACE], [dnl { sed -e '/^$1 ()$/,/^} # $1 /c\ $1 ()\ {\ m4_bpatsubsts([$2], [$], [\\], [^\([ ]\)], [\\\1]) } # Extended-shell $1 implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: ]) # _LT_PROG_REPLACE_SHELLFNS # ------------------------- # Replace existing portable implementations of several shell functions with # equivalent extended shell implementations where those features are available.. m4_defun([_LT_PROG_REPLACE_SHELLFNS], [if test x"$xsi_shell" = xyes; then _LT_PROG_FUNCTION_REPLACE([func_dirname], [dnl case ${1} in */*) func_dirname_result="${1%/*}${2}" ;; * ) func_dirname_result="${3}" ;; esac]) _LT_PROG_FUNCTION_REPLACE([func_basename], [dnl func_basename_result="${1##*/}"]) _LT_PROG_FUNCTION_REPLACE([func_dirname_and_basename], [dnl case ${1} in */*) func_dirname_result="${1%/*}${2}" ;; * ) func_dirname_result="${3}" ;; esac func_basename_result="${1##*/}"]) _LT_PROG_FUNCTION_REPLACE([func_stripname], [dnl # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are # positional parameters, so assign one to ordinary parameter first. func_stripname_result=${3} func_stripname_result=${func_stripname_result#"${1}"} func_stripname_result=${func_stripname_result%"${2}"}]) _LT_PROG_FUNCTION_REPLACE([func_split_long_opt], [dnl func_split_long_opt_name=${1%%=*} func_split_long_opt_arg=${1#*=}]) _LT_PROG_FUNCTION_REPLACE([func_split_short_opt], [dnl func_split_short_opt_arg=${1#??} func_split_short_opt_name=${1%"$func_split_short_opt_arg"}]) _LT_PROG_FUNCTION_REPLACE([func_lo2o], [dnl case ${1} in *.lo) func_lo2o_result=${1%.lo}.${objext} ;; *) func_lo2o_result=${1} ;; esac]) _LT_PROG_FUNCTION_REPLACE([func_xform], [ func_xform_result=${1%.*}.lo]) _LT_PROG_FUNCTION_REPLACE([func_arith], [ func_arith_result=$(( $[*] ))]) _LT_PROG_FUNCTION_REPLACE([func_len], [ func_len_result=${#1}]) fi if test x"$lt_shell_append" = xyes; then _LT_PROG_FUNCTION_REPLACE([func_append], [ eval "${1}+=\\${2}"]) _LT_PROG_FUNCTION_REPLACE([func_append_quoted], [dnl func_quote_for_eval "${2}" dnl m4 expansion turns \\\\ into \\, and then the shell eval turns that into \ eval "${1}+=\\\\ \\$func_quote_for_eval_result"]) # Save a `func_append' function call where possible by direct use of '+=' sed -e 's%func_append \([[a-zA-Z_]]\{1,\}\) "%\1+="%g' $cfgfile > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: else # Save a `func_append' function call even when '+=' is not available sed -e 's%func_append \([[a-zA-Z_]]\{1,\}\) "%\1="$\1%g' $cfgfile > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: fi if test x"$_lt_function_replace_fail" = x":"; then AC_MSG_WARN([Unable to substitute extended shell functions in $ofile]) fi ]) # _LT_PATH_CONVERSION_FUNCTIONS # ----------------------------- # Determine which file name conversion functions should be used by # func_to_host_file (and, implicitly, by func_to_host_path). These are needed # for certain cross-compile configurations and native mingw. m4_defun([_LT_PATH_CONVERSION_FUNCTIONS], [AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl AC_MSG_CHECKING([how to convert $build file names to $host format]) AC_CACHE_VAL(lt_cv_to_host_file_cmd, [case $host in *-*-mingw* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_host_file_cmd=func_convert_file_msys_to_w32 ;; *-*-cygwin* ) lt_cv_to_host_file_cmd=func_convert_file_cygwin_to_w32 ;; * ) # otherwise, assume *nix lt_cv_to_host_file_cmd=func_convert_file_nix_to_w32 ;; esac ;; *-*-cygwin* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_host_file_cmd=func_convert_file_msys_to_cygwin ;; *-*-cygwin* ) lt_cv_to_host_file_cmd=func_convert_file_noop ;; * ) # otherwise, assume *nix lt_cv_to_host_file_cmd=func_convert_file_nix_to_cygwin ;; esac ;; * ) # unhandled hosts (and "normal" native builds) lt_cv_to_host_file_cmd=func_convert_file_noop ;; esac ]) to_host_file_cmd=$lt_cv_to_host_file_cmd AC_MSG_RESULT([$lt_cv_to_host_file_cmd]) _LT_DECL([to_host_file_cmd], [lt_cv_to_host_file_cmd], [0], [convert $build file names to $host format])dnl AC_MSG_CHECKING([how to convert $build file names to toolchain format]) AC_CACHE_VAL(lt_cv_to_tool_file_cmd, [#assume ordinary cross tools, or native build. lt_cv_to_tool_file_cmd=func_convert_file_noop case $host in *-*-mingw* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_tool_file_cmd=func_convert_file_msys_to_w32 ;; esac ;; esac ]) to_tool_file_cmd=$lt_cv_to_tool_file_cmd AC_MSG_RESULT([$lt_cv_to_tool_file_cmd]) _LT_DECL([to_tool_file_cmd], [lt_cv_to_tool_file_cmd], [0], [convert $build files to toolchain format])dnl ])# _LT_PATH_CONVERSION_FUNCTIONS cpputest-3.4/m4/ltoptions.m40000644000175300017530000002725612134202464013005 00000000000000# Helper functions for option handling. -*- Autoconf -*- # # Copyright (C) 2004, 2005, 2007, 2008, 2009 Free Software Foundation, # Inc. # Written by Gary V. Vaughan, 2004 # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. # serial 7 ltoptions.m4 # This is to help aclocal find these macros, as it can't see m4_define. AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])]) # _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME) # ------------------------------------------ m4_define([_LT_MANGLE_OPTION], [[_LT_OPTION_]m4_bpatsubst($1__$2, [[^a-zA-Z0-9_]], [_])]) # _LT_SET_OPTION(MACRO-NAME, OPTION-NAME) # --------------------------------------- # Set option OPTION-NAME for macro MACRO-NAME, and if there is a # matching handler defined, dispatch to it. Other OPTION-NAMEs are # saved as a flag. m4_define([_LT_SET_OPTION], [m4_define(_LT_MANGLE_OPTION([$1], [$2]))dnl m4_ifdef(_LT_MANGLE_DEFUN([$1], [$2]), _LT_MANGLE_DEFUN([$1], [$2]), [m4_warning([Unknown $1 option `$2'])])[]dnl ]) # _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET]) # ------------------------------------------------------------ # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. m4_define([_LT_IF_OPTION], [m4_ifdef(_LT_MANGLE_OPTION([$1], [$2]), [$3], [$4])]) # _LT_UNLESS_OPTIONS(MACRO-NAME, OPTION-LIST, IF-NOT-SET) # ------------------------------------------------------- # Execute IF-NOT-SET unless all options in OPTION-LIST for MACRO-NAME # are set. m4_define([_LT_UNLESS_OPTIONS], [m4_foreach([_LT_Option], m4_split(m4_normalize([$2])), [m4_ifdef(_LT_MANGLE_OPTION([$1], _LT_Option), [m4_define([$0_found])])])[]dnl m4_ifdef([$0_found], [m4_undefine([$0_found])], [$3 ])[]dnl ]) # _LT_SET_OPTIONS(MACRO-NAME, OPTION-LIST) # ---------------------------------------- # OPTION-LIST is a space-separated list of Libtool options associated # with MACRO-NAME. If any OPTION has a matching handler declared with # LT_OPTION_DEFINE, dispatch to that macro; otherwise complain about # the unknown option and exit. m4_defun([_LT_SET_OPTIONS], [# Set options m4_foreach([_LT_Option], m4_split(m4_normalize([$2])), [_LT_SET_OPTION([$1], _LT_Option)]) m4_if([$1],[LT_INIT],[ dnl dnl Simply set some default values (i.e off) if boolean options were not dnl specified: _LT_UNLESS_OPTIONS([LT_INIT], [dlopen], [enable_dlopen=no ]) _LT_UNLESS_OPTIONS([LT_INIT], [win32-dll], [enable_win32_dll=no ]) dnl dnl If no reference was made to various pairs of opposing options, then dnl we run the default mode handler for the pair. For example, if neither dnl `shared' nor `disable-shared' was passed, we enable building of shared dnl archives by default: _LT_UNLESS_OPTIONS([LT_INIT], [shared disable-shared], [_LT_ENABLE_SHARED]) _LT_UNLESS_OPTIONS([LT_INIT], [static disable-static], [_LT_ENABLE_STATIC]) _LT_UNLESS_OPTIONS([LT_INIT], [pic-only no-pic], [_LT_WITH_PIC]) _LT_UNLESS_OPTIONS([LT_INIT], [fast-install disable-fast-install], [_LT_ENABLE_FAST_INSTALL]) ]) ])# _LT_SET_OPTIONS ## --------------------------------- ## ## Macros to handle LT_INIT options. ## ## --------------------------------- ## # _LT_MANGLE_DEFUN(MACRO-NAME, OPTION-NAME) # ----------------------------------------- m4_define([_LT_MANGLE_DEFUN], [[_LT_OPTION_DEFUN_]m4_bpatsubst(m4_toupper([$1__$2]), [[^A-Z0-9_]], [_])]) # LT_OPTION_DEFINE(MACRO-NAME, OPTION-NAME, CODE) # ----------------------------------------------- m4_define([LT_OPTION_DEFINE], [m4_define(_LT_MANGLE_DEFUN([$1], [$2]), [$3])[]dnl ])# LT_OPTION_DEFINE # dlopen # ------ LT_OPTION_DEFINE([LT_INIT], [dlopen], [enable_dlopen=yes ]) AU_DEFUN([AC_LIBTOOL_DLOPEN], [_LT_SET_OPTION([LT_INIT], [dlopen]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the `dlopen' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_DLOPEN], []) # win32-dll # --------- # Declare package support for building win32 dll's. LT_OPTION_DEFINE([LT_INIT], [win32-dll], [enable_win32_dll=yes case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-cegcc*) AC_CHECK_TOOL(AS, as, false) AC_CHECK_TOOL(DLLTOOL, dlltool, false) AC_CHECK_TOOL(OBJDUMP, objdump, false) ;; esac test -z "$AS" && AS=as _LT_DECL([], [AS], [1], [Assembler program])dnl test -z "$DLLTOOL" && DLLTOOL=dlltool _LT_DECL([], [DLLTOOL], [1], [DLL creation program])dnl test -z "$OBJDUMP" && OBJDUMP=objdump _LT_DECL([], [OBJDUMP], [1], [Object dumper program])dnl ])# win32-dll AU_DEFUN([AC_LIBTOOL_WIN32_DLL], [AC_REQUIRE([AC_CANONICAL_HOST])dnl _LT_SET_OPTION([LT_INIT], [win32-dll]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the `win32-dll' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_WIN32_DLL], []) # _LT_ENABLE_SHARED([DEFAULT]) # ---------------------------- # implement the --enable-shared flag, and supports the `shared' and # `disable-shared' LT_INIT options. # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. m4_define([_LT_ENABLE_SHARED], [m4_define([_LT_ENABLE_SHARED_DEFAULT], [m4_if($1, no, no, yes)])dnl AC_ARG_ENABLE([shared], [AS_HELP_STRING([--enable-shared@<:@=PKGS@:>@], [build shared libraries @<:@default=]_LT_ENABLE_SHARED_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_shared=yes ;; no) enable_shared=no ;; *) enable_shared=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_shared=yes fi done IFS="$lt_save_ifs" ;; esac], [enable_shared=]_LT_ENABLE_SHARED_DEFAULT) _LT_DECL([build_libtool_libs], [enable_shared], [0], [Whether or not to build shared libraries]) ])# _LT_ENABLE_SHARED LT_OPTION_DEFINE([LT_INIT], [shared], [_LT_ENABLE_SHARED([yes])]) LT_OPTION_DEFINE([LT_INIT], [disable-shared], [_LT_ENABLE_SHARED([no])]) # Old names: AC_DEFUN([AC_ENABLE_SHARED], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[shared]) ]) AC_DEFUN([AC_DISABLE_SHARED], [_LT_SET_OPTION([LT_INIT], [disable-shared]) ]) AU_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)]) AU_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AM_ENABLE_SHARED], []) dnl AC_DEFUN([AM_DISABLE_SHARED], []) # _LT_ENABLE_STATIC([DEFAULT]) # ---------------------------- # implement the --enable-static flag, and support the `static' and # `disable-static' LT_INIT options. # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. m4_define([_LT_ENABLE_STATIC], [m4_define([_LT_ENABLE_STATIC_DEFAULT], [m4_if($1, no, no, yes)])dnl AC_ARG_ENABLE([static], [AS_HELP_STRING([--enable-static@<:@=PKGS@:>@], [build static libraries @<:@default=]_LT_ENABLE_STATIC_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_static=yes ;; no) enable_static=no ;; *) enable_static=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_static=yes fi done IFS="$lt_save_ifs" ;; esac], [enable_static=]_LT_ENABLE_STATIC_DEFAULT) _LT_DECL([build_old_libs], [enable_static], [0], [Whether or not to build static libraries]) ])# _LT_ENABLE_STATIC LT_OPTION_DEFINE([LT_INIT], [static], [_LT_ENABLE_STATIC([yes])]) LT_OPTION_DEFINE([LT_INIT], [disable-static], [_LT_ENABLE_STATIC([no])]) # Old names: AC_DEFUN([AC_ENABLE_STATIC], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static]) ]) AC_DEFUN([AC_DISABLE_STATIC], [_LT_SET_OPTION([LT_INIT], [disable-static]) ]) AU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)]) AU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AM_ENABLE_STATIC], []) dnl AC_DEFUN([AM_DISABLE_STATIC], []) # _LT_ENABLE_FAST_INSTALL([DEFAULT]) # ---------------------------------- # implement the --enable-fast-install flag, and support the `fast-install' # and `disable-fast-install' LT_INIT options. # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. m4_define([_LT_ENABLE_FAST_INSTALL], [m4_define([_LT_ENABLE_FAST_INSTALL_DEFAULT], [m4_if($1, no, no, yes)])dnl AC_ARG_ENABLE([fast-install], [AS_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@], [optimize for fast installation @<:@default=]_LT_ENABLE_FAST_INSTALL_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_fast_install=yes ;; no) enable_fast_install=no ;; *) enable_fast_install=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_fast_install=yes fi done IFS="$lt_save_ifs" ;; esac], [enable_fast_install=]_LT_ENABLE_FAST_INSTALL_DEFAULT) _LT_DECL([fast_install], [enable_fast_install], [0], [Whether or not to optimize for fast installation])dnl ])# _LT_ENABLE_FAST_INSTALL LT_OPTION_DEFINE([LT_INIT], [fast-install], [_LT_ENABLE_FAST_INSTALL([yes])]) LT_OPTION_DEFINE([LT_INIT], [disable-fast-install], [_LT_ENABLE_FAST_INSTALL([no])]) # Old names: AU_DEFUN([AC_ENABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the `fast-install' option into LT_INIT's first parameter.]) ]) AU_DEFUN([AC_DISABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], [disable-fast-install]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the `disable-fast-install' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_ENABLE_FAST_INSTALL], []) dnl AC_DEFUN([AM_DISABLE_FAST_INSTALL], []) # _LT_WITH_PIC([MODE]) # -------------------- # implement the --with-pic flag, and support the `pic-only' and `no-pic' # LT_INIT options. # MODE is either `yes' or `no'. If omitted, it defaults to `both'. m4_define([_LT_WITH_PIC], [AC_ARG_WITH([pic], [AS_HELP_STRING([--with-pic], [try to use only PIC/non-PIC objects @<:@default=use both@:>@])], [pic_mode="$withval"], [pic_mode=default]) test -z "$pic_mode" && pic_mode=m4_default([$1], [default]) _LT_DECL([], [pic_mode], [0], [What type of objects to build])dnl ])# _LT_WITH_PIC LT_OPTION_DEFINE([LT_INIT], [pic-only], [_LT_WITH_PIC([yes])]) LT_OPTION_DEFINE([LT_INIT], [no-pic], [_LT_WITH_PIC([no])]) # Old name: AU_DEFUN([AC_LIBTOOL_PICMODE], [_LT_SET_OPTION([LT_INIT], [pic-only]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the `pic-only' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_PICMODE], []) ## ----------------- ## ## LTDL_INIT Options ## ## ----------------- ## m4_define([_LTDL_MODE], []) LT_OPTION_DEFINE([LTDL_INIT], [nonrecursive], [m4_define([_LTDL_MODE], [nonrecursive])]) LT_OPTION_DEFINE([LTDL_INIT], [recursive], [m4_define([_LTDL_MODE], [recursive])]) LT_OPTION_DEFINE([LTDL_INIT], [subproject], [m4_define([_LTDL_MODE], [subproject])]) m4_define([_LTDL_TYPE], []) LT_OPTION_DEFINE([LTDL_INIT], [installable], [m4_define([_LTDL_TYPE], [installable])]) LT_OPTION_DEFINE([LTDL_INIT], [convenience], [m4_define([_LTDL_TYPE], [convenience])]) cpputest-3.4/m4/ltsugar.m40000644000175300017530000001042412134202464012420 00000000000000# ltsugar.m4 -- libtool m4 base layer. -*-Autoconf-*- # # Copyright (C) 2004, 2005, 2007, 2008 Free Software Foundation, Inc. # Written by Gary V. Vaughan, 2004 # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. # serial 6 ltsugar.m4 # This is to help aclocal find these macros, as it can't see m4_define. AC_DEFUN([LTSUGAR_VERSION], [m4_if([0.1])]) # lt_join(SEP, ARG1, [ARG2...]) # ----------------------------- # Produce ARG1SEPARG2...SEPARGn, omitting [] arguments and their # associated separator. # Needed until we can rely on m4_join from Autoconf 2.62, since all earlier # versions in m4sugar had bugs. m4_define([lt_join], [m4_if([$#], [1], [], [$#], [2], [[$2]], [m4_if([$2], [], [], [[$2]_])$0([$1], m4_shift(m4_shift($@)))])]) m4_define([_lt_join], [m4_if([$#$2], [2], [], [m4_if([$2], [], [], [[$1$2]])$0([$1], m4_shift(m4_shift($@)))])]) # lt_car(LIST) # lt_cdr(LIST) # ------------ # Manipulate m4 lists. # These macros are necessary as long as will still need to support # Autoconf-2.59 which quotes differently. m4_define([lt_car], [[$1]]) m4_define([lt_cdr], [m4_if([$#], 0, [m4_fatal([$0: cannot be called without arguments])], [$#], 1, [], [m4_dquote(m4_shift($@))])]) m4_define([lt_unquote], $1) # lt_append(MACRO-NAME, STRING, [SEPARATOR]) # ------------------------------------------ # Redefine MACRO-NAME to hold its former content plus `SEPARATOR'`STRING'. # Note that neither SEPARATOR nor STRING are expanded; they are appended # to MACRO-NAME as is (leaving the expansion for when MACRO-NAME is invoked). # No SEPARATOR is output if MACRO-NAME was previously undefined (different # than defined and empty). # # This macro is needed until we can rely on Autoconf 2.62, since earlier # versions of m4sugar mistakenly expanded SEPARATOR but not STRING. m4_define([lt_append], [m4_define([$1], m4_ifdef([$1], [m4_defn([$1])[$3]])[$2])]) # lt_combine(SEP, PREFIX-LIST, INFIX, SUFFIX1, [SUFFIX2...]) # ---------------------------------------------------------- # Produce a SEP delimited list of all paired combinations of elements of # PREFIX-LIST with SUFFIX1 through SUFFIXn. Each element of the list # has the form PREFIXmINFIXSUFFIXn. # Needed until we can rely on m4_combine added in Autoconf 2.62. m4_define([lt_combine], [m4_if(m4_eval([$# > 3]), [1], [m4_pushdef([_Lt_sep], [m4_define([_Lt_sep], m4_defn([lt_car]))])]]dnl [[m4_foreach([_Lt_prefix], [$2], [m4_foreach([_Lt_suffix], ]m4_dquote(m4_dquote(m4_shift(m4_shift(m4_shift($@)))))[, [_Lt_sep([$1])[]m4_defn([_Lt_prefix])[$3]m4_defn([_Lt_suffix])])])])]) # lt_if_append_uniq(MACRO-NAME, VARNAME, [SEPARATOR], [UNIQ], [NOT-UNIQ]) # ----------------------------------------------------------------------- # Iff MACRO-NAME does not yet contain VARNAME, then append it (delimited # by SEPARATOR if supplied) and expand UNIQ, else NOT-UNIQ. m4_define([lt_if_append_uniq], [m4_ifdef([$1], [m4_if(m4_index([$3]m4_defn([$1])[$3], [$3$2$3]), [-1], [lt_append([$1], [$2], [$3])$4], [$5])], [lt_append([$1], [$2], [$3])$4])]) # lt_dict_add(DICT, KEY, VALUE) # ----------------------------- m4_define([lt_dict_add], [m4_define([$1($2)], [$3])]) # lt_dict_add_subkey(DICT, KEY, SUBKEY, VALUE) # -------------------------------------------- m4_define([lt_dict_add_subkey], [m4_define([$1($2:$3)], [$4])]) # lt_dict_fetch(DICT, KEY, [SUBKEY]) # ---------------------------------- m4_define([lt_dict_fetch], [m4_ifval([$3], m4_ifdef([$1($2:$3)], [m4_defn([$1($2:$3)])]), m4_ifdef([$1($2)], [m4_defn([$1($2)])]))]) # lt_if_dict_fetch(DICT, KEY, [SUBKEY], VALUE, IF-TRUE, [IF-FALSE]) # ----------------------------------------------------------------- m4_define([lt_if_dict_fetch], [m4_if(lt_dict_fetch([$1], [$2], [$3]), [$4], [$5], [$6])]) # lt_dict_filter(DICT, [SUBKEY], VALUE, [SEPARATOR], KEY, [...]) # -------------------------------------------------------------- m4_define([lt_dict_filter], [m4_if([$5], [], [], [lt_join(m4_quote(m4_default([$4], [[, ]])), lt_unquote(m4_split(m4_normalize(m4_foreach(_Lt_key, lt_car([m4_shiftn(4, $@)]), [lt_if_dict_fetch([$1], _Lt_key, [$2], [$3], [_Lt_key ])])))))])[]dnl ]) cpputest-3.4/m4/ltversion.m40000644000175300017530000000125612134202464012767 00000000000000# ltversion.m4 -- version numbers -*- Autoconf -*- # # Copyright (C) 2004 Free Software Foundation, Inc. # Written by Scott James Remnant, 2004 # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. # @configure_input@ # serial 3293 ltversion.m4 # This file is part of GNU Libtool m4_define([LT_PACKAGE_VERSION], [2.4]) m4_define([LT_PACKAGE_REVISION], [1.3293]) AC_DEFUN([LTVERSION_VERSION], [macro_version='2.4' macro_revision='1.3293' _LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?]) _LT_DECL(, macro_revision, 0) ]) cpputest-3.4/m4/lt~obsolete.m40000644000175300017530000001375612134202464013324 00000000000000# lt~obsolete.m4 -- aclocal satisfying obsolete definitions. -*-Autoconf-*- # # Copyright (C) 2004, 2005, 2007, 2009 Free Software Foundation, Inc. # Written by Scott James Remnant, 2004. # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. # serial 5 lt~obsolete.m4 # These exist entirely to fool aclocal when bootstrapping libtool. # # In the past libtool.m4 has provided macros via AC_DEFUN (or AU_DEFUN) # which have later been changed to m4_define as they aren't part of the # exported API, or moved to Autoconf or Automake where they belong. # # The trouble is, aclocal is a bit thick. It'll see the old AC_DEFUN # in /usr/share/aclocal/libtool.m4 and remember it, then when it sees us # using a macro with the same name in our local m4/libtool.m4 it'll # pull the old libtool.m4 in (it doesn't see our shiny new m4_define # and doesn't know about Autoconf macros at all.) # # So we provide this file, which has a silly filename so it's always # included after everything else. This provides aclocal with the # AC_DEFUNs it wants, but when m4 processes it, it doesn't do anything # because those macros already exist, or will be overwritten later. # We use AC_DEFUN over AU_DEFUN for compatibility with aclocal-1.6. # # Anytime we withdraw an AC_DEFUN or AU_DEFUN, remember to add it here. # Yes, that means every name once taken will need to remain here until # we give up compatibility with versions before 1.7, at which point # we need to keep only those names which we still refer to. # This is to help aclocal find these macros, as it can't see m4_define. AC_DEFUN([LTOBSOLETE_VERSION], [m4_if([1])]) m4_ifndef([AC_LIBTOOL_LINKER_OPTION], [AC_DEFUN([AC_LIBTOOL_LINKER_OPTION])]) m4_ifndef([AC_PROG_EGREP], [AC_DEFUN([AC_PROG_EGREP])]) m4_ifndef([_LT_AC_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH])]) m4_ifndef([_LT_AC_SHELL_INIT], [AC_DEFUN([_LT_AC_SHELL_INIT])]) m4_ifndef([_LT_AC_SYS_LIBPATH_AIX], [AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX])]) m4_ifndef([_LT_PROG_LTMAIN], [AC_DEFUN([_LT_PROG_LTMAIN])]) m4_ifndef([_LT_AC_TAGVAR], [AC_DEFUN([_LT_AC_TAGVAR])]) m4_ifndef([AC_LTDL_ENABLE_INSTALL], [AC_DEFUN([AC_LTDL_ENABLE_INSTALL])]) m4_ifndef([AC_LTDL_PREOPEN], [AC_DEFUN([AC_LTDL_PREOPEN])]) m4_ifndef([_LT_AC_SYS_COMPILER], [AC_DEFUN([_LT_AC_SYS_COMPILER])]) m4_ifndef([_LT_AC_LOCK], [AC_DEFUN([_LT_AC_LOCK])]) m4_ifndef([AC_LIBTOOL_SYS_OLD_ARCHIVE], [AC_DEFUN([AC_LIBTOOL_SYS_OLD_ARCHIVE])]) m4_ifndef([_LT_AC_TRY_DLOPEN_SELF], [AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF])]) m4_ifndef([AC_LIBTOOL_PROG_CC_C_O], [AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O])]) m4_ifndef([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], [AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS])]) m4_ifndef([AC_LIBTOOL_OBJDIR], [AC_DEFUN([AC_LIBTOOL_OBJDIR])]) m4_ifndef([AC_LTDL_OBJDIR], [AC_DEFUN([AC_LTDL_OBJDIR])]) m4_ifndef([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], [AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH])]) m4_ifndef([AC_LIBTOOL_SYS_LIB_STRIP], [AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP])]) m4_ifndef([AC_PATH_MAGIC], [AC_DEFUN([AC_PATH_MAGIC])]) m4_ifndef([AC_PROG_LD_GNU], [AC_DEFUN([AC_PROG_LD_GNU])]) m4_ifndef([AC_PROG_LD_RELOAD_FLAG], [AC_DEFUN([AC_PROG_LD_RELOAD_FLAG])]) m4_ifndef([AC_DEPLIBS_CHECK_METHOD], [AC_DEFUN([AC_DEPLIBS_CHECK_METHOD])]) m4_ifndef([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI])]) m4_ifndef([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], [AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])]) m4_ifndef([AC_LIBTOOL_PROG_COMPILER_PIC], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC])]) m4_ifndef([AC_LIBTOOL_PROG_LD_SHLIBS], [AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS])]) m4_ifndef([AC_LIBTOOL_POSTDEP_PREDEP], [AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP])]) m4_ifndef([LT_AC_PROG_EGREP], [AC_DEFUN([LT_AC_PROG_EGREP])]) m4_ifndef([LT_AC_PROG_SED], [AC_DEFUN([LT_AC_PROG_SED])]) m4_ifndef([_LT_CC_BASENAME], [AC_DEFUN([_LT_CC_BASENAME])]) m4_ifndef([_LT_COMPILER_BOILERPLATE], [AC_DEFUN([_LT_COMPILER_BOILERPLATE])]) m4_ifndef([_LT_LINKER_BOILERPLATE], [AC_DEFUN([_LT_LINKER_BOILERPLATE])]) m4_ifndef([_AC_PROG_LIBTOOL], [AC_DEFUN([_AC_PROG_LIBTOOL])]) m4_ifndef([AC_LIBTOOL_SETUP], [AC_DEFUN([AC_LIBTOOL_SETUP])]) m4_ifndef([_LT_AC_CHECK_DLFCN], [AC_DEFUN([_LT_AC_CHECK_DLFCN])]) m4_ifndef([AC_LIBTOOL_SYS_DYNAMIC_LINKER], [AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER])]) m4_ifndef([_LT_AC_TAGCONFIG], [AC_DEFUN([_LT_AC_TAGCONFIG])]) m4_ifndef([AC_DISABLE_FAST_INSTALL], [AC_DEFUN([AC_DISABLE_FAST_INSTALL])]) m4_ifndef([_LT_AC_LANG_CXX], [AC_DEFUN([_LT_AC_LANG_CXX])]) m4_ifndef([_LT_AC_LANG_F77], [AC_DEFUN([_LT_AC_LANG_F77])]) m4_ifndef([_LT_AC_LANG_GCJ], [AC_DEFUN([_LT_AC_LANG_GCJ])]) m4_ifndef([AC_LIBTOOL_LANG_C_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG])]) m4_ifndef([_LT_AC_LANG_C_CONFIG], [AC_DEFUN([_LT_AC_LANG_C_CONFIG])]) m4_ifndef([AC_LIBTOOL_LANG_CXX_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG])]) m4_ifndef([_LT_AC_LANG_CXX_CONFIG], [AC_DEFUN([_LT_AC_LANG_CXX_CONFIG])]) m4_ifndef([AC_LIBTOOL_LANG_F77_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG])]) m4_ifndef([_LT_AC_LANG_F77_CONFIG], [AC_DEFUN([_LT_AC_LANG_F77_CONFIG])]) m4_ifndef([AC_LIBTOOL_LANG_GCJ_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG])]) m4_ifndef([_LT_AC_LANG_GCJ_CONFIG], [AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG])]) m4_ifndef([AC_LIBTOOL_LANG_RC_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG])]) m4_ifndef([_LT_AC_LANG_RC_CONFIG], [AC_DEFUN([_LT_AC_LANG_RC_CONFIG])]) m4_ifndef([AC_LIBTOOL_CONFIG], [AC_DEFUN([AC_LIBTOOL_CONFIG])]) m4_ifndef([_LT_AC_FILE_LTDLL_C], [AC_DEFUN([_LT_AC_FILE_LTDLL_C])]) m4_ifndef([_LT_REQUIRED_DARWIN_CHECKS], [AC_DEFUN([_LT_REQUIRED_DARWIN_CHECKS])]) m4_ifndef([_LT_AC_PROG_CXXCPP], [AC_DEFUN([_LT_AC_PROG_CXXCPP])]) m4_ifndef([_LT_PREPARE_SED_QUOTE_VARS], [AC_DEFUN([_LT_PREPARE_SED_QUOTE_VARS])]) m4_ifndef([_LT_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_PROG_ECHO_BACKSLASH])]) m4_ifndef([_LT_PROG_F77], [AC_DEFUN([_LT_PROG_F77])]) m4_ifndef([_LT_PROG_FC], [AC_DEFUN([_LT_PROG_FC])]) m4_ifndef([_LT_PROG_CXX], [AC_DEFUN([_LT_PROG_CXX])]) cpputest-3.4/platforms/0000755000175300017530000000000012143642714012251 500000000000000cpputest-3.4/platforms/IAR-STR912.zip0000644000175300017530000247516612023251675014256 00000000000000PK xZ< IAR-STR912/UT LjKʈKux PKxZ6}xLw>M=z'STB{&j3XlȝK7Oxbk(BkU5ƯNnN8\K\8Ūqz3}A"/=%>6 Zay2f5ZPA[!k10xDVu~ot|*u x%@z{, xE+ݜ:;Ћ[Pqn8V“,/?6[rI3u nj&^~!;y2$^WczbS(n*_m>~?тs]λ (.oؚ*EWu&DqiM}Jnt-;i)EbK"Է#ڏ!PK vZ<IAR-STR912/startup/UT LjKʈKux PK yZ<IAR-STR912/startup/.svn/UT LjKʈKux PKvZ< 98IAR-STR912/startup/.svn/entriesUT LjKLjKux N0Ex;Ύ%U7N&%u"۩| THpVW;Gc㜘=a]BۼliiIGj#^oiYW}KqsB\|*aVHGi-Zs`J"; cxd߱S4#itƓucN>]iNl>2F=^^>8N'HWhH4O7U79?v0c':He@͡U PK vZ<"IAR-STR912/startup/.svn/prop-base/UT LjKʈKux PK vZ<"IAR-STR912/startup/.svn/text-base/UT LjKʈKux PKvZ<: T5IAR-STR912/startup/.svn/text-base/91x_vect.s.svn-baseUT LjKLjKux msڸ?oft_%@zw{636N/xJ +6{d b;utز?e|k k]lQ Lܞ]gVӓoA˙٠g \?PGd7 ]Yb1s&]`=V,FjK?H. =^YlosxK)q߱fl~A˝MDt1?ؘ9*Di]߆gEn>!3T*-h;*{~Iz({W2~ꥤ脚+C4늪S.0T`j] $kc1+8n4YU6~O `N&hvѤfG%*5P4IWйoX#J=C4DkR(RWT#H+;ٺf`ZzK4(;9-SPAWRTмNx t \3%* ]ENBб*v')dړog''8Y(@EV/~|xo >v9NOH$K)=/KkŸy JA UhC!fGFr)r }Armt,8"ujH;ArW0Y73{zz*P>RJ)ji"sw/yI{r[Ť^=־>S;!, ^{+gWVta.}bЬs51ESxփɺ=% @ss&)LSmqҺɌa }\Kl qGSj?*wjX?l)š`1[zDd !r #紕p=[/F38)V5iȾdvQʚ=}Z&2Vj. ('I,&jq=.Ft;?[Z-rJ/;¯h#Aa5?cPdev Gǣ204.D# 2qH:bZbVZPn d?]Ik]k՞ &y=Ɇb<3 /o:.qzJo6FȩQm((b?U U5V?J~I Ԏ;]`-<k0ÇDZXr̩JgjO>ۘ$jQV KM?kX.+"Q{ĢkUv޾7to5ȑg1mk["3yn+E6#xnqFY/ jn|=X*5a'"Zf4|xA;(S;} )a A#;_Q .@<䯦|DM6B V\誻P|AS:RBҾ}cha.?fO䬮N5str Vs`{"<3{1+V+Ə &Vsðn-f٫Io?P?6,|]zkݤ!afiAÏRQ]/#Vao .f̥򒦛vx►Xv\b,uLvƬ\Zf`%4l!beHs_qժDŽ,zT^-`?5 6=vEbr{hcbq\d"{x@gy<ɳ3l)ikJD&ymulmO#A:8Iz+_`+I(q~2:Z8% qJ&& I0Y2Fež3X`K`,l ]\DIᕵUkn]0a֟00f aUaaf!fmaXRSK|ѻA.U|1w | |/zS8|5ʃ/xC):?| |_'| | E`Y[G0Cx!AXSOAX0+OE0ֿU_^{V..^x4:^q__f/<6x]8O/ ]癯.8// ]-M\~pQV n[ l l񂗹1w:*.NA2..^2o`j$+kQ, z&|țcYr_`kt\R /dSUCHWs#; Zi^A .H~P0H;BuAz/o%JGyIe7} zX*01Or_P^P~{=LopuŲ1P^d"(ܔ7cyX*()OJJ{x0u`0O+eS#Q I8M`ѝ%[{5z i( "W a/C nglW$iߋ9Eh?WU<T@6Oh"x2 pI;8"=}̼b#hإQp w{S(43͵|=qF +n=\HS'P!>; f#Ebcw'L,&c#%H&_ÜK 0`ugIҩ+(/m׾uɂ$NtlȎ>cLIuSU0 x9U{UӵGVqRv!pe5 pa$QĚLPZaġE(nb qewdh[X=i=ZՖ jd:>YT*:%]SrR@S*KjΪDQ*b`܀ 3 nw(DQ+rT|kK &RSڒgZN yGkVw؛xQ303- {\|pD@2Ɵ&iٖby2-'b}sէacKϩZkP*F =*q *P :w4M~>{jI*y[`Z }g$Ž7@x̎5Tˣ%& Ema59>O0a[y6{ "B2tFX/B4P.?dblL:Z2I9ns˪bڃ1UN dˣjuC?-ƓH yv".s7W輎(H 7w yc:6LĚ_*`,[8pAgmvnћ8Hs򪪫%QG$ܛ:l-3i^{)xYZ(+OxM߀|yŧUnn(,ϿEWmk@5 *5Qpl}\۔jmPsCWOk#b`D;֋fnEkhD9 n#=j2ԏ*/?kP:E1 \yeZ {|o5Մu"b L e .vv3[Cȷ6شRU+>I@[^@;Un2=Ut>af #HG~h57@s>x iBtv@.uybSM Gh̖ne0 f\8{8 EK#) -!w^ ,6-k٣6p65zҙ `g 1*JO,n5Q طr&̋.yojYVKs,~]AoVļbz !+8j JQo~Vl#Q/REʻe_U4OS' t.~PKvZ<@j#IAR-STR912/startup/.svn/all-wcpropsUT LjKLjKux V02*.˳*O*JOI,*K-*-- S03'+ELKJ rKr=tC, KJJ \\, +RK􊹼 YjnFHˤP APK vZ<IAR-STR912/startup/.svn/props/UT LjKʈKux PK vZ<IAR-STR912/startup/.svn/tmp/UT LjKʈKux PK vZ<&IAR-STR912/startup/.svn/tmp/prop-base/UT LjKʈKux PK vZ<&IAR-STR912/startup/.svn/tmp/text-base/UT LjKʈKux PK vZ<"IAR-STR912/startup/.svn/tmp/props/UT LjKʈKux PKvZ<: TIAR-STR912/startup/91x_vect.sUT LjKLjKux msڸ?oft_%@zw{636N/xJ +6{d b;utز?e|k k]lQ Lܞ]gVӓoA˙٠g \?PGd7 ]Yb1s&]`=V,FjK?H. =^YlosxK)q߱fl~A˝MDt1?ؘ9*Di]߆gEn>!3T*-h;*{~Iz({W2~ꥤ脚+C4늪S.0T`j] $kc1+8n4YU6~O `N&hvѤfG%*5P4IWйoX#J=C4DkR(RWT#H+;ٺf`ZzK4(;9-SPAWRTмNx t \3%* ]ENBб*v')dړog''8Y(@EV/~|xo >v9NOH$K)=/KkŸy JA UhC!fGFr)r }Armt,8"ujH;ArW0Y73{zz*P>RJ)ji"sw/yI{r[Ť^=־>S;!, ^{+gWVta.}bЬs51ESxփɺ=% @ss&)LSmqҺɌa }\Kl qGSj?*wjX?l)š`1[zDd !r #紕p=[/F38)V5iȾdvQʚ=}Z&2Vj. ('I,&jq=.Ft;?[Z-rJ/;¯h#Aa5?cPdev Gǣ204.D# 2qH:bZbVZPn d?]Ik]k՞ &y=Ɇb<3 /o:.qzJo6FȩQm((b?U U5V?J~I Ԏ;]`-<k0ÇDZXr̩JgjO>ۘ$jQV KM?kX.+"Q{ĢkUv޾7to5ȑg1mk["3yn+E6#xnqFY/ jn|=X*5a'"Zf4|xA;(S;} )a A#;_Q .@<䯦|DM6B V\誻P|AS:RBҾ}cha.?fO䬮N5str Vs`{"<3{1+V+Ə &Vsðn-f٫Io?P?6,|]zkݤ!afiAÏRQ]/#Vao .f̥򒦛vx►Xv\b,uLvƬ\Zf`%4l!beHs_qժDŽ,zT^-`?5 6=vEbr{hcbq\d"{x@gy<ɳ3l)ikJD&ymulmO#A:8Iz+_`+I(q~2:Z8% qJ&& I0Y2Fež3X`K`,l ]\DIᕵUkn]0a֟00f aUaaf!fmaXRSK|ѻA.U|1w | |/zS8|5ʃ/xC):?| |_'| | E`Y[G0Cx!AXSOAX0+OE0ֿU_^{V..^x4:^q__f/<6x]8O/ ]癯.8// ]-M\~pQV n[ l l񂗹1w:*.NA2..^2o`j$+kQ, z&|țcYr_`kt\R /dSUCHWs#; Zi^A .H~P0H;BuAz/o%JGyIe7} zX*01Or_P^P~{=LopuŲ1P^d"(ܔ7cyX*()OJJ{x0u`0O+eS#Q I8M`ѝ%[{5z i( "W a/C nglW$iߋ9Eh?WU<T@6Oh"x2 pI;8"=}̼b#hإQp w{S(43͵|=qF +n=\HS'P!>; f#Ebcw'L,&c#%H&_ÜK 0`ugIҩ+(/m׾uɂ$NtlȎ>cLIuSU0 x9U{UӵGVqRv!pe5 pa$QĚLPZaġE(nb qewdh[X=i=ZՖ jd:>YT*:%]SrR@S*KjΪDQ*b`܀ 3 nw(DQ+rT|kK &RSڒgZN yGkVw؛xQ303- {\|pD@2Ɵ&iٖby2-'b}sէacKϩZkP*F =*q *P :w4M~>{jI*y[`Z }g$Ž7@x̎5Tˣ%& Ema59>O0a[y6{ "B2tFX/B4P.?dblL:Z2I9ns˪bڃ1UN dˣjuC?-ƓH yv".s7W輎(H 7w yc:6LĚ_*`,[8pAgmvnћ8Hs򪪫%QG$ܛ:l-3i^{)xYZ(+OxM߀|yŧUnn(,ϿEWmk@5 *5Qpl}\۔jmPsCWOk#b`D;֋fnEkhD9 n#=j2ԏ*/?kP:E1 \yeZ {|o5Մu"b L e .vv3[Cȷ6شRU+>I@[^@;Un2=Ut>af #HG~h57@s>x iBtv@.uybSM Gh̖ne0 f\8{8 EK#) -!w^ ,6-k٣6p65zҙ `g 1*JO,n5Q طr&̋.yojYVKs,~]AoVļbz !+8j JQo~Vl#Q/REʻe_U4OS' t.~PKxZ<߂SYE#IAR-STR912/CppUTest-STR912-Main.ewdUT LjKLjKux \o8>iC݇;iMz뤬n"M8+ȘK^װ\V5ǿ籟wC8uZg~`vMN'=Bzlu9#cI9 &e'Kտ`v80a(7r. Q:QVmRV` hTs'XnID*iir}ӸK' _O؞LnvRm[c> [,B"W+xm mHf&pQ.>C6(l6s]j&6qC챉p+$~J~^QŴ<++)9Ԉv4.>i2`Te)C~ȀjBaRefaܴ6^ 1py52lT~_Zj 7mAogW!**?/rky^V{Zy" ._sOTT[M,ΣP%/Yu}%K6?_P;=6ӟ& +  WOOsAĴ J jϳO#EbXG6;}l)V8ORSn鸕#xNB7\il;Q"2(C關@E~Yb1f1 q͚Skc $PKxZ;2C+yl vխ55l"-W>յcz.%NH5:W`$ Y7Vh$ jUެ"I7Y;-KNup(kW=afw4q/'řPKxZ< eMIAR-STR912/CppUTest-IAR.ewwUT LjKLjKux R0 C)^k‚Bڋ^E4>[mtϷRzfcfOo u@pyB]̤7~<]p@R_38q an 6hOb wEݳ/*5B13TiY&3 4ũ%] K!Rba=L!A׸m_r)ΘY`ᣩVx챤'%h!K*VS>(dBR ɩg&W-%AG,o/$Kq$϶O؆Mf~tfo.F>[r<6^{WM!&?J!:D ~&mh&muhhX0ΤtXoTHyu3QJ&z"}) FQ7Lb$qI;+Nݏa$r=V?_I9~iU+p`e**f$9˚Ue^?PKvZ/֐*12M[# tϪ^`Wr5ͯۅQΒ7*>q2`66I3cM<`ᣩVx챤'%h!K*VS>(dBR ɩg&W-%AG,o/$Kq$϶O؆Mf~tfo.F>[r<6^{WM!&?J!:D ~&mh&muhhX0ΤtXoTHyu3QJ&z"}) FQ7Lb$qI;+Nݏa$r=V?_I9~iU+p`e**f$9˚Ue^?PKvZ/֐*12M[# tϪ^`Wr5ͯۅQΒ7*>q2`66I3cM<SIgNJ*\T,)Z0g4Du],W萪xar ⶿O‥_cg Ep*R mm6a}7ڽ}#-x@Tt oqjD#{Gi=ġShoDMDIÔ m ƙTB\*,V5RD^B&%0*UIڄP"Hi+a H"$QD79NXOr # tf䘔sNOrYV+bb&OYŨX擎PKvZ<6%̫"IAR-STR912/linker/.svn/all-wcpropsUT LjKLjKux V02*.˳*O*JOI,*K-*-- S03'+E-KJ rKr=tC, s2S\\"n>zi\ބl0k)a1lErJ/q1C`vHsAAh\\di@q8PK vZ<IAR-STR912/linker/.svn/props/UT LjKʈKux PK vZ<IAR-STR912/linker/.svn/tmp/UT LjKʈKux PK vZ<%IAR-STR912/linker/.svn/tmp/prop-base/UT LjKʈKux PK vZ<%IAR-STR912/linker/.svn/tmp/text-base/UT LjKʈKux PK vZ<!IAR-STR912/linker/.svn/tmp/props/UT LjKʈKux PKvZSIgNJ*\T,)Z0g4Du],W萪xar ⶿O‥_cg Ep*R mm6a}7ڽ}#-x@Tt oqjD#{Gi=ġShoDMDIÔ m ƙTB\*,V5RD^B&%0*UIڄP"Hi+a H"$QD79NXOr # tf䘔sNOrYV+bb&OYŨX擎PK xZ<IAR-STR912/examples/UT LjKʈKux PK xZ<IAR-STR912/examples/GPIO/UT LjKʈKux PKxZDea)=#Ʉ(|CyrGۿI5bpY!a cE1/.2. ^ "iQ  I2 }*e P얃,xc-\ Ԃ)䅆k & v%&E,Q`)$,cs톼  [ EfȈ+"3PK,K YIT2p?U"8kv2IE]ܓ|[ѣ04Oa' ζ`wcG{Os984Aee}Vk5L2*̺%D Jn[5WJ\0HǽJ؝0<~G;~%Folp ~Vzzh:ء 7 +@TuGE׏D 12K"P#{(Q|cW7m6,\ i2OHSiyi!iIv$)9@M49`3cYSݐ[߫! ڍQ b8PHgg^xPڌj)Uzv}OQVE |A4uFgZu\un~ώS,1E7\7vF-34_Si]Yt3~>_i:%SsN1׌8') 0l e{A Rb0$T._ʹȘVNu9P(HyLJ~ L@?WkU뻢Ʋ~WljFMkH8ӜHIEy/GCܒV[F4 qK< *<(J_nC80.?弭-24]H',Ct#i-B 3,^~*42̡]i̓i"_܂=4ټ5ˁSy9!G!B}hFsKwfz\`apu}.Mu}nٱ.OU]S"r8P ͡HKqa $U%)=M@JOd eDa L|?NR2 3*ɜ5'1$=jH% ShL&m<+qr"*$a]#4SIssDפ7,S5):WfϸO7Y(%+pNenBppsN!K,f@eǩ*.&.?0\ѥ RA[p}cEE=o*6EYz!|mfڭV6*k.*u1=Z?-!JR1bxqSȅǐ ɲi,۵\$c9aF ;M R b2ŞA|#/1}~ҿ΄?e _W"Ff7ծ PT0{̰HnW@#i@ G.e )B]j[L_ (I{A=,>m?ĉbPSt9m-E}*seɚAǧRKR%tq2:dCRu1E㲥w*sy~ BjOZ@,|DЏ0DEˁ/3pBGrZYUDsl Ka%罺 :DqZjm-HDkܕ{'IQ'\#l pV^֣a8(=k ]ej(Cɰ='AP}?{A|sAfCMInR)MW ExKqnq)SF±<:[` x/nrxCi^@gfos#zz Udx|]}ɺYWwT`!ޗu㖍5Q21& pѻBU[U:e(8 !s3s39tVL@:Ş4߶?PKxZ$oM}Is6Bz5nsDLdR(?Cm-Yڗ8 ](~!98r"DŽ_4k ~Abջ6_~q{N,5#!KlO} Dv .R4 Zuu. 9"Y=l6ق`s5BQ}1u=Ľ9Yn[~te[Gm|iY}FCl^B;,uftVxHTxFPUO/ZTm>` ( %IӄC@WBz?:tZ-ء>4|/oCĥQ"ya– 'L7IZ3HߚMąhϡ)vPa3'QM]M*wtCX.pMhyҐTӞ}cḴEb3uϩ;bT>+$SfU[ gï-gs5hId;$" q+PBԷbkuxeB* .;FGY w5CC_6מ&C&9ok5mm.ƥ^_ 7uHH( q1=FS~u"Fz}bWlSxw{8S":MCanW:t0`Sa䣍'77O͡]8t3dp9펞N!؅1P0Vʋ\9No::trk<#EHY3e%s` SQ PiP]PI9զ@z/%QH8QP4 ̘%/fTqc9tA aRi 8m91$J̭!,Nz27~u*W/Θ9yK('m=IEC_hn{SJ28޻2ړ5kY$Pg Ƅ`b]{Y?N#Ӌ46` M"k7O7QRN)bWՍacѥ^r]i6ʁ& &'&wmgӵ2|S0C)aX/F1GWC3 L!PK>($,ktw#]E}g[Aok]A #X1`188U;N}+gNn~ =; 8(Ac"ȒV]8λƚ;m,9c@#^e 0 ,.ĭ굧O(F8 1}87+ڦ;T*z!)$yԱ3`'tVQ@ žMT8ƾA%Ibi #P>ƕ.M 'ߕ23&JV̖'(tanv5]9gWGª B~z؇-=eeb@ ,C|}c~W;<ޚ3H?gf gcTeg0O4D.4(2= Q_i"ɸEJ5h]9i܎'sfWBJ0ˡ7Nx ?HO zC]a[{m;w?ܼ\y#@BT=ܿb=Su7o6. o]2u鶦Y7 ,EXd wBP$i0]beK$6fp$gz1e9J5&!T*XU`8i! vCfyVJz(*{L. ̦f(.%2߯ ڗt)6Ty@)ΰ6)') 5=T#ެƜY@(\ae2аp\J .dir';^☸eYƥUм1GoǕ%sN}" +3[-:TuMJ.LgўF{x ?DpC CGQqR`AuŽfDY;(V7/æ0T8HӡE g9hF0daƛ`dvSQ(D xN.Nerw(L g0ֿݹzZ9ܻWK`oO4l`oXmی>-]VOΒ(+@ob;j=}^z>=Lˬ.ZJNiG:$IKXW @Wx >qŪm@7=@~Pne?(PK yZ<IAR-STR912/examples/GPIO/.svn/UT LjKʈKux PKxZ<:%IAR-STR912/examples/GPIO/.svn/entriesUT LjKLjKux ?o0 w_6-S).%QwaU۠A7Ax~x$,e]uin+/k|e͉8x<Sη[7]h==Oc@ӅU 4N(h[gY(iWry,+>2 4J"?oYB- Q|[~}il;;`8h/Ov rO&[il)d u~h6*Sa2ɬɓs^id?PK xZ<(IAR-STR912/examples/GPIO/.svn/prop-base/UT LjKʈKux PK xZ<(IAR-STR912/examples/GPIO/.svn/text-base/UT LjKʈKux PKxZ<7%R9IAR-STR912/examples/GPIO/.svn/text-base/gpio.ewp.svn-baseUT LjKLjKux \[۶~>$oM}Is6Bz5nsDLdR(?Cm-Yڗ8 ](~!98r"DŽ_4k ~Abջ6_~q{N,5#!KlO} Dv .R4 Zuu. 9"Y=l6ق`s5BQ}1u=Ľ9Yn[~te[Gm|iY}FCl^B;,uftVxHTxFPUO/ZTm>` ( %IӄC@WBz?:tZ-ء>4|/oCĥQ"ya– 'L7IZ3HߚMąhϡ)vPa3'QM]M*wtCX.pMhyҐTӞ}cḴEb3uϩ;bT>+$SfU[ gï-gs5hId;$" q+PBԷbkuxeB* .;FGY w5CC_6מ&C&9ok5mm.ƥ^_ 7uHH( q1=FS~u"Fz}bWlSxw{8S":MCanW:t0`Sa䣍'77O͡]8t3dp9펞N!؅1P0Vʋ\9No::trk<#EHY3e%s` SQ PiP]PI9զ@z/%QH8QP4 ̘%/fTqc9tA aRi 8m91$J̭!,Nz27~u*W/Θ9yK('m=IEC_hn{SJ28޻2ړ5kY$Pg Ƅ`b]{Y?N#Ӌ46` M"k7O7QRN)bWՍacѥ^r]i6ʁ& &'&wmgӵ2|S0C)aX/F1GWC3 L!PK>($,ktw#]E}g[Aok]A #X1`188U;N}+gNn~ =; 8(Ac"ȒV]8λƚ;m,9c@#^e 0 ,.ĭ굧O(F8 1}87+ڦ;T*z!)$yԱ3`'tVQ@ žMT8ƾA%Ibi #P>ƕ.M 'ߕ23&JV̖'(tanv5]9gWGª B~z؇-=eeb@ ,C|}c~W;<ޚ3H?gf gcTeg0O4D.4(2= Q_i"ɸEJ5h]9i܎'sfWBJ0ˡ7Nx ?HO zC]a[{m;w?ܼ\y#@BT=ܿb=Su7o6. o]2u鶦Y7 ,EXd wBP$i0]beK$6fp$gz1e9J5&!T*XU`8i! vCfyVJz(*{L. ̦f(.%2߯ ڗt)6Ty@)ΰ6)') 5=T#ެƜY@(\ae2аp\J .dir';^☸eYƥUм1GoǕ%sN}" +3[-:TuMJ.LgўF{x ?DpC CGQqR`AuŽfDY;(V7/æ0T8HӡE g9hF0daƛ`dvSQ(D xN.Nerw(L g0ֿݹzZ9ܻWK`oO4l`oXmی>-]VOΒ(+@ob;j=}^z>=Lˬ.ZJNiG:$IKXW @Wx >qŪm@7=@~Pne?(PKxZi!iIv$)9@M49`3cYSݐ[߫! ڍQ b8PHgg^xPڌj)Uzv}OQVE |A4uFgZu\un~ώS,1E7\7vF-34_Si]Yt3~>_i:%SsN1׌8') 0l e{A Rb0$T._ʹȘVNu9P(HyLJ~ L@?WkU뻢Ʋ~WljFMkH8ӜHIEy/GCܒV[F4 qK< *<(J_nC80.?弭-24]H',Ct#i-B 3,^~*42̡]i̓i"_܂=4ټ5ˁSy9!G!B}hFsKwfz\`apu}.Mu}nٱ.OU]S"r8P ͡HKqa $U%)=M@JOd eDa L|?NR2 3*ɜ5'1$=jH% ShL&m<+qr"*$a]#4SIssDפ7,S5):WfϸO7Y(%+pNenBppsN!K,f@eǩ*.&.?0\ѥ RA[p}cEE=o*6EYz!|mfڭV6*k.*u1=Z?-!JR1bxqSȅǐ ɲi,۵\$c9aF ;M R b2ŞA|#/1}~ҿ΄?e _W"Ff7ծ PT0{̰HnW@#i@ G.e )B]j[L_ (I{A=,>m?ĉbPSt9m-E}*seɚAǧRKR%tq2:dCRu1E㲥w*sy~ BjOZ@,|DЏ0DEˁ/3pBGrZYUDsl Ka%罺 :DqZjm-HDkܕ{'IQ'\#l pV^֣a8(=k ]ej(Cɰ='AP}?{A|sAfCMInR)MW ExKqnq)SF±<:[` x/nrxCi^@gfos#zz Udx|]}ɺYWwT`!ޗu㖍5Q21& pѻBU[U:e(8 !s3s39tVL@:Ş4߶?PKxZDea)=#Ʉ(|CyrGۿI5bpY!a cE1/.2. ^ "iQ  I2 }*e P얃,xc-\ Ԃ)䅆k & v%&E,Q`)$,cs톼  [ EfȈ+"3PK,K YIT2p?U"8kv2IE]ܓ|[ѣ04Oa' ζ`wcG{Os984Aee}Vk5L2*̺%D Jn[5WJ\0HǽJ؝0<~G;~%Folp ~Vzzh:ء 7 +@TuGE׏D 12K"P#{(Q|cW7m6,\ i2OHSiy&1 Iq*@$ %, dDwVK3bƑ`sNHH&݄6E֢ hn;Boaa8dAش]IY  B1u 3ZYm #Ixzf{ ^a6%dEVvW ]yW+pg!l_^==8.qH즺P*RJPӶMc:\ߤɔǝzicخaa_a_'ܻD8KH24RȾǤo7ELmLI4ByBDŽ7<&I/wBiۦ"}zqcֳfy1ӦV_[U̟lUw^I'Q8 CH|#=?vr{O"O_s<`ϽPKxZ< $8,=9IAR-STR912/examples/GPIO/.svn/text-base/91x_it.c.svn-baseUT LjKLjKux ՛]O8G73#Dig|ĥ F*Iq`j;^0k9Ee=>S8W.~7]t2e0:9 (gREU350tŸW<Ru 끳٬,yY쥒cHQIUU|`@'v \TJ1<>^e" ӼZH.DpqgⲖycR n,-C]YR z rŁȸκ̶a*p>@e\>C;ގ^x8]dxxQ陪FާcZE-F0YK=>+զ,yAan{I)AeD˘4sAyCq)~'|*AņnQU1T9-qxXqI %l8.?>)Z+ézt4R*=}}۾Z?!c6%0IBBI4f '&Rw 4qdN='t D  pj p;RňqD|8 @2u|ˆ)=s /1>ɚw*"vQ98pJFpyLaGfu1$s A ]CEcV0d bm!&x$(Q~ɋl]ö> y&uE w}¼X,˫i~ŸnIJi}bS', ?ZN/PKxZ0dڌmjy1-0DƑY $lEJ `^(EQ nu~mUnõ 4ە(\.*t4<ϣ9e'|CPYtNcK>~gx 9@? <׾;!xnQzbp# >~EE'ukd [̯L!ρЃfr5vA𔺐lfr3``6^W ̶ƕ*Hý(}JX/ht# }ڐ0m {JR#L:ktH0 8%[AL,K.0 axEs)bWNngѪI9|Hj<[qȻ04i!&bzAh2E B!%rHF "n;Euí2o9}}ojE6/>7K1Rmr^=(*qu$4pH'rAVX^`_hdTW Pj62Q'YJ[)Qْ HALw`(03G ܕ}h=?_uOsmi֖{xݝ4L1lGݡmjI {Zf(S;ԆHWiuy<,ٰLxUHSUζ@O] h?gWeF U7Tb ~lv[+få+gexÎfHVgO{f޻CQNE;\;]a)]UtqUi7WzrլNK_CUX \/[ϡXXNXܕvxzf~,+Iϸyfy޵~ &|>;=/[~2עz/PKxZ0dڌmjy1-0DƑY $lEJ `^(EQ nu~mUnõ 4ە(\.*t4<ϣ9e'|CPYtNcK>~gx 9@? <׾;!xnQzbp# >~EE'ukd [̯L!ρЃfr5vA𔺐lfr3``6^W ̶ƕ*Hý(}JX/ht# }ڐ0m {JR#L:ktH0 8%[AL,K.0 axEs)bWNngѪI9|Hj<[qȻ04i!&bzAh2E B!%rHF "n;Euí2o9}}ojE6/>7K1Rmr^=(*qu$4pH'rAVX^`_hdTW Pj62Q'YJ[)Qْ HALw`(03G ܕ}h=?_uOsmi֖{xݝ4L1lGݡmjI {Zf(S;ԆHWiuy<,ٰLxUHSUζ@O] h?gWeF U7Tb ~lv[+få+gexÎfHVgO{f޻CQNE;\;]a)]UtqUi7WzrլNK_CUX \/[ϡXXNXܕvxzf~,+Iϸyfy޵~ &|>;=/[~2עz/PKxZ&1 Iq*@$ %, dDwVK3bƑ`sNHH&݄6E֢ hn;Boaa8dAش]IY  B1u 3ZYm #Ixzf{ ^a6%dEVvW ]yW+pg!l_^==8.qH즺P*RJPӶMc:\ߤɔǝzicخaa_a_'ܻD8KH24RȾǤo7ELmLI4ByBDŽ7<&I/wBiۦ"}zqcֳfy1ӦV_[U̟lUw^I'Q8 CH|#=?vr{O"O_s<`ϽPKxZ< $8,=!IAR-STR912/examples/GPIO/91x_it.cUT LjKLjKux ՛]O8G73#Dig|ĥ F*Iq`j;^0k9Ee=>S8W.~7]t2e0:9 (gREU350tŸW<Ru 끳٬,yY쥒cHQIUU|`@'v \TJ1<>^e" ӼZH.DpqgⲖycR n,-C]YR z rŁȸκ̶a*p>@e\>C;ގ^x8]dxxQ陪FާcZE-F0YK=>+զ,yAan{I)AeD˘4sAyCq)~'|*AņnQU1T9-qxXqI %l8.?>)Z+ézt4R*=}}۾Z?!c6%0IBBI4f '&Rw 4qdN='t D  pj p;RňqD|8 @2u|ˆ)=s /1>ɚw*"vQ98pJFpyLaGfu1$s A ]CEcV0d bm!&x$(Q~ɋl]ö> y&uE w}¼X,˫i~ŸnIJi}bS', ?ZN/PKxZxPK xZ<IAR-STR912/examples/RTC/UT LjKʈKux PKxZ<3j<IAR-STR912/examples/RTC/rtc.ewdUT LjKLjKux Yo8 ?AvLm]GS%v Dl$RKQI:|6QPEAg3}- j7ƈ'FK<'(&ׯ_O޿{nDW2Su(KߵK lu t8Kn3.3BwЪi6lzioFq4q-=#?@7k;ޑuK07+O͛-!qAJN3$b}1p=Mr`0,]o%S8&T>ʵ(O-A&y<(2u?@*PJ<‡tj;SDbFߴ;>2D/\!d®Q`fcmkyÒf J]3ixvEڗ7\&| bڼq:4$_ /.zgC}hFSc p| By9@r"W~s ؟nQ'SdyiZ*Uf0ω8A\:2 hhY!s3GZy( [k}|2 0L0r T $wNw|-ier &dhc$٬.O=AN2Շğ:fG7.F@|$hPd,˔39E ]2mH}#N* mVRWsT>U_bAXR,[-a2NO%xI!O,C(C2 r}:8o _C̚fkcPH raI]^}*.9kA`bE$YpĭJΆJGgz}ȄMܻhnhv`UO 31sȿU !9:"?gV$,pϝ?@<)ʀ8kj2aC$/+7 !+0%M:fSppLiѦ,fӬqnZR"NGuϘԤ0yhCx^z9^ -%{蕣 q`R$ݢ0_}Q]NΝ3,kz=+yգzjU;.'5O"#ũ.s8g:,Iv:<>m3JncXc$ j^v3P`tMJD"ȟ~b~=#y5c&1;#yc?Fw>>Y_c Mszc@^[ҋ+o6(ve8H|;l{)e$pfg[ n>z{#˜vj( $i c]5;Z0NnH40ÝFjrTmRP)ܛ1%ž$sCzx a Qm]M*lCX.pMhuԐӞ꜡}cK,E=bs4x*q۰nU[ /-'{ja[qE LBAfP܊81CtR]B^[!ł οQbl/&A;^s};MNo i2O<5mkP,0.ˇs_7ڭFqq=CROObFIcjӒ_od)F~[vSb-˼}j.T.E+u[v]=cA>u}"&hm.e/=¡[$mtCu(qDsm\9ǧj=>s!zװV-*LȠ16ҧx(j-EqV uh`,efH(]GFxg"( ǡ  Jc)o(]7! Vzm.̂, aeU,ϓ)SztiL*G; L)mJix! L`Ԭeb"B2O3'c cq^49Kh \t1&B{_GI 8e ]n; V*&Ӫf)# .¤̔J =M @LNLn8Nֵɻ(!k4#HUDLëokkx ,`0JyĆkMBW:_\ڦ}cץh|H(ʤgcp5ճp[4+g~k41, +"J6AuL:k෥4按c zm bPFjV0k(SU=}B1a-{mH/7b(R"QI; v,@wT`kݤ7$I̘70 pD*x 2AqFwz9s&JVV'm$F!jz=vzϮUqI2 %ϝqe[ ) 9mi\pk ղVd~\ ` ZO8T718R'ȥZEOBԗ.`z>d"}rXP9i܎'SWBJ0ˡ7vnvxK?Bz~'¥ Cj[we;wps}"F>fsbI\)7FхGf 47kYm}K)zUHڽ}%`XY.K$,)MHG包*4B_җ.WP`u@ IPR@4K*2G󵩽eA=(.%ދ2ׯNnWt)6Ryӡ@%N6'Nd)Ջ.uho^acN,U t\aAj1v rՂ#7 k*=oYNv>Nv{wȸZ3g୵ ɜ `}taeKe CCV GxG-ƛN (-0ga=r>w#>k :t]}teBCu3w/Boqqr:gdi')+R<+:PQ%TP%_?A`x{Z*F$v#!)pi_y+&̐ЄPP;$Kئ_Fyi vr`܃1_RjK *IQQlm2~hA޿u,:A1T{ -x2e m+>hv&."*mزDmiYPK xZ<'IAR-STR912/examples/RTC/.svn/prop-base/UT LjKʈKux PK xZ<'IAR-STR912/examples/RTC/.svn/text-base/UT LjKʈKux PKxZ<(3{7IAR-STR912/examples/RTC/.svn/text-base/rtc.eww.svn-baseUT LjKLjKux Q(K-*ϳU23PRHKOKU,׵05T)/..HLNrl RK7$N%<83H%$Y/F, V&)$9é43'E(`l8PKxZ<1dV'L7IAR-STR912/examples/RTC/.svn/text-base/rtc.ewp.svn-baseUT LjKLjKux \mo6BoX xiڱa;0hʤFQ_#%-솢 s@_ޑ<=m 1agF뙅|B_?q {n,3'!Kkw*ctN#?-+ž$sCzx a Qm]M*lCX.pMhuԐӞ꜡}cK,E=bs4x*q۰nU[ /-'{ja[qE LBAfP܊81CtR]B^[!ł οQbl/&A;^s};MNo i2O<5mkP,0.ˇs_7ڭFqq=CROObFIcjӒ_od)F~[vSb-˼}j.T.E+u[v]=cA>u}"&hm.e/=¡[$mtCu(qDsm\9ǧj=>s!zװV-*LȠ16ҧx(j-EqV uh`,efH(]GFxg"( ǡ  Jc)o(]7! Vzm.̂, aeU,ϓ)SztiL*G; L)mJix! L`Ԭeb"B2O3'c cq^49Kh \t1&B{_GI 8e ]n; V*&Ӫf)# .¤̔J =M @LNLn8Nֵɻ(!k4#HUDLëokkx ,`0JyĆkMBW:_\ڦ}cץh|H(ʤgcp5ճp[4+g~k41, +"J6AuL:k෥4按c zm bPFjV0k(SU=}B1a-{mH/7b(R"QI; v,@wT`kݤ7$I̘70 pD*x 2AqFwz9s&JVV'm$F!jz=vzϮUqI2 %ϝqe[ ) 9mi\pk ղVd~\ ` ZO8T718R'ȥZEOBԗ.`z>d"}rXP9i܎'SWBJ0ˡ7vnvxK?Bz~'¥ Cj[we;wps}"F>fsbI\)7FхGf 47kYm}K)zUHڽ}%`XY.K$,)MHG包*4B_җ.WP`u@ IPR@4K*2G󵩽eA=(.%ދ2ׯNnWt)6Ryӡ@%N6'Nd)Ջ.uho^acN,U t\aAj1v rՂ#7 k*=oYNv>Nv{wȸZ3g୵ ɜ `}taeKe CCV GxG-ƛN (-0ga=r>w#>k ʵ(O-A&y<(2u?@*PJ<‡tj;SDbFߴ;>2D/\!d®Q`fcmkyÒf J]3ixvEڗ7\&| bڼq:4$_ /.zgC}hFSc p| By9@r"W~s ؟nQ'SdyiZ*Uf0ω8A\:2 hhY!s3GZy( [k}|2 0L0r T $wNw|-ier &dhc$٬.O=AN2Շğ:fG7.F@|$hPd,˔39E ]2mH}#N* mVRWsT>U_bAXR,[-a2NO%xI!O,C(C2 r}:8o _C̚fkcPH raI]^}*.9kA`bE$YpĭJΆJGgz}ȄMܻhnhv`UO 31sȿU !9:"?gV$,pϝ?@<)ʀ8kj2aC$/+7 !+0%M:fSppLiѦ,fӬqnZR"NGuϘԤ0yhCx^z9^ -%{蕣 q`R$ݢ0_}Q]NΝ3,kz=+yգzjU;.'5O"#ũ.s8g:,Iv:<>m3JncXc$ j^v3P`tMJD"ȟ~b~=#y5c&1;#yc?Fw>>Y_c Mszc@^[ҋ+o6(ve8H|;l{)e$pfg[ n>z{#˜vj( $i c]5;Z0NnH40ÝFjrTmRP)ܛ1%ybbƝGҚ@raROEs5~R"ӹ~Z;IJo߷zW?^2Tq+yS<ۨ{&9#D96v'BY?$SD(-]BEDdûH 0%o^S2r9TX!gwJ$|Nl>j"yd G8F)pD< v󁑥oI Ksώ,Fc-y%cR侁̒5bPt;2Kv9GBNb֩T1򐺑 R$~>N /4\u4Bٞ[]&ϙF*?ũBQ{Q mYÛ&޶j`z;CMW~h+k;j=5FS9>WO}` E7~q49q$tٶW'0n dmv8R5M^\iDЦ>)>gv< MOj辭ќX{_ ˞Ns PKxZUCCc*A?o R|]BG |&^n~umP,| r Hܐ\Q8e\ qa!"0'f\!M80+N7n,G1I/dJRWpAx4iJa,' $i ީ$uEG}|x02 hCI[XwX1R9#x$$cnBU PiQnn;a\maa8dش]I -A)ģ0fzFzb}RlD>?у#*_sT(b4ŧ ]y!5T m Yዻ* ;"B (fI)I)1) c8IcPݶty"$[ 07 BCHŜުۖhDO>۲cXx`ΖYkHxfivsnYjb/~f^oqKءnCy;b}OPKxZO.v60<> RRJVet3(tW:ҨE%a:V"TQEvR X]7bz4$vBZ18<6QX ѳV*!eR yWQE)CS/n4<+Z@SUܤ r j!@ȅɺa"Sp=@獄B-ƒ=C;\-D 8]dxDYFgR`ZfeQ-F1Y+3>*E֙AciY{I%AU6G˘4@EC ~#| :AFܮAU39͵q x/qI 9.ٲ?>1ZÉ~t8ԫ*>}}Z?!c>0IhJ#i<3P7(Nl|y(GM||7My$cՋM0@H8#HIL+NzMd!%8 !Ԅ$!@#%1 Ǔ8b^ D1S c0rPDGd;8J3OBrF>p ^:OX=840G7tܞ0?j=40T1i #NXD}4P/l0)$Eh̗ ~>;dMnsq`~5n֯Tu}>i^+ٴO”VDU)Gب͞DF/;BwU1n?t@-5Ca7BHPJ*ǰohl;g*syǰ#vnT9yç3 uZߟxF^Q+w][.w;mT$L$|>w> wgnm{:K~h^8K]t<~۹A?Soʛ vQ;w_$ez?$=ȇM]{$;um{N=܄lnRﺶqID6F.|G6:g6F.|˧6l:Z&-v(9Z,y'M'=ּVI~˷=ּV;K.M]'umMǹ0um\g}b[_xſoy59xm0kr#V0?DxMmKdt~f݄ uo2|' zPKxZcͶq06mlKئԜ[0,ωr 2s+4 mL_M ne{OKz!;w VPsZ|&av-BФJҶjc $Y("w3yJX~>zޗyګHӌ?AO`cR#gR!xxhb[nN_~i0 y0[i4ܹp` = iEVD| "%R}giLC<@!S/ s0+[}9ǒ_l>?"ɒ߷*>%s6Os+Ysa 4 D Si֠$=ĜM>/R@At[rCf RVXXD4,Z+B@ y*8ɰ`^{DyagOyr Ӽd+!l <uշ5Xy6O,`@F,t<^}8+t͓B0 [/ls/s'ro3ԑ9s"SwL yNA!E/H%Ae[UerQHF-+˻on"xywv7ZQlwcbfɹ,kdiI#Ԍ}~ mm4הNʈKRKo}h-e(~\ga'b1A"|lE\ꀋ6iL{P3*i's{º;{HKf*ŶzҠX_wcK߾-o2.ؠ cͶq06mlKئԜ[0,ωr 2s+4 mL_M ne{OKz!;w VPsZ|&av-BФJҶjc $Y("w3yJX~>zޗyګHӌ?AO`cR#gR!xxhb[nN_~i0 y0[i4ܹp` = iEVD| "%R}giLC<@!S/ s0+[}9ǒ_l>?"ɒ߷*>%s6Os+Ysa 4 D Si֠$=ĜM>/R@At[rCf RVXXD4,Z+B@ y*8ɰ`^{DyagOyr Ӽd+!l <uշ5Xy6O,`@F,t<^}8+t͓B0 [/ls/s'ro3ԑ9s"SwL yNA!E/H%Ae[UerQHF-+˻on"xywv7ZQlwcbfɹ,kdiI#Ԍ}~ mm4הNʈKRKo}h-e(~\ga'b1A"|lE\ꀋ6iL{P3*i's{º;{HKf*ŶzҠX_wcK߾-o2.ؠ UCCc*A?o R|]BG |&^n~umP,| r Hܐ\Q8e\ qa!"0'f\!M80+N7n,G1I/dJRWpAx4iJa,' $i ީ$uEG}|x02 hCI[XwX1R9#x$$cnBU PiQnn;a\maa8dش]I -A)ģ0fzFzb}RlD>?у#*_sT(b4ŧ ]y!5T m Yዻ* ;"B (fI)I)1) c8IcPݶty"$[ 07 BCHŜުۖhDO>۲cXx`ΖYkHxfivsnYjb/~f^oqKءnCy;b}OPKxZO.v60<> RRJVet3(tW:ҨE%a:V"TQEvR X]7bz4$vBZ18<6QX ѳV*!eR yWQE)CS/n4<+Z@SUܤ r j!@ȅɺa"Sp=@獄B-ƒ=C;\-D 8]dxDYFgR`ZfeQ-F1Y+3>*E֙AciY{I%AU6G˘4@EC ~#| :AFܮAU39͵q x/qI 9.ٲ?>1ZÉ~t8ԫ*>}}Z?!c>0IhJ#i<3P7(Nl|y(GM||7My$cՋM0@H8#HIL+NzMd!%8 !Ԅ$!@#%1 Ǔ8b^ D1S c0rPDGd;8J3OBrF>p ^:OX=840G7tܞ0?j=40T1i #NXD}4P/l0)$Eh̗ ~>;dMnsq`~5n֯Tu}>i^+ٴO”VDU)Gب͞DF/;BwU1n?t@-5Ca7BHPJ*ǰohl;g*syǰ#vnT9yç3 uZߟxF^Q+w][.w;mT$L$|>w> wgnm{:K~h^8K]t<~۹A?Soʛ vQ;w_$ez?$=ȇM]{$;um{N=܄lnRﺶqID6F.|G6:g6F.|˧6l:Z&-v(9Z,y'M'=ּVI~˷=ּV;K.M]'umMǹ0um\g}b[_xſoy59xm0kr#V0?DxMmKdt~f݄ uo2|' zPKxZ<5J"IAR-STR912/examples/RTC/readme.txtUT LjKLjKux TMo8x6#mF-Rt UmePJӶgޛ7ϞY\r&x }b)\/ W)mk]:۞L5tr5ҢѸ5.Fݓ)wY# B6eL{Ei"^W>ybbƝGҚ@raROEs5~R"ӹ~Z;IJo߷zW?^2Tq+yS<ۨ{&9#D96v'BY?$SD(-]BEDdûH 0%o^S2r9TX!gwJ$|Nl>j"yd G8F)pD< v󁑥oI Ksώ,Fc-y%cR侁̒5bPt;2Kv9GBNb֩T1򐺑 R$~>N /4\u4Bٞ[]&ϙF*?ũBQ{Q mYÛ&޶j`z;CMW~h+k;j=5FS9>WO}` E7~q49q$tٶW'0n dmv8R5M^\iDЦ>)>gv< MOj辭ќX{_ ˞Ns PKxZ<(3{IAR-STR912/examples/RTC/rtc.ewwUT LjKLjKux Q(K-*ϳU23PRHKOKU,׵05T)/..HLNrl RK7$N%<83H%$Y/F, V&)$9é43'E(`l8PK wZ<IAR-STR912/examples/CAN/UT LjKʈKux PKwZuG 3L^-EEGlmU~5JܘǸ3WƯw k2Wڍ§bCaQ)oAH̵+  7&Lghf BڭIܛԽH=[@saw ɭ[i\6]vq޺C<.7'1 vC'.{*ۘl]=đ''GşLԒl{7\cOeu$ķiNsV{Ip$G%~gIi`,yd ҋi)>`9 4ĽYmiH,A4n'ǐ^XnZ~ق]C4A\%Z]*l5qqK|5g|mDQ d*b_v50YXĶ&G d{d6!,C:jHihryо%آrt֞`Js΋OB20n5BjbPyd^B@63q+NqҖI(^[:{_Kȶkk2$TXp|78Jd0}r'Kwνv.oiWc=M'29?5޴mmƥq_'pI( q1/ZV[~Z͟,EonJleZjѥhbsW3kރO-_'iR6޵__0X٥=W8tsc , ~R͸s = f^?"yWw08xNjOg1,Fa%Dʠz802rLM)^2J2{ ihmD.5gLWQRNIrWN/~yU2y꼣YJ|5kK0)3dfcO(u$^̐h{J5Kq*"|h7ɵ-fc0bCx)mmӾ4{$]eҳ18fG ڊZ#bprM5{vpP D%H}q&w5YwMYsD@61(#55`Xv]Gמ>İ^ýX6ERE՛1H)㤎; ]mJ*5 nގcT$f Q{ba8"c8B^{;A%?if+AQ}pζra5nv=];gGª$B~z؅NJzL{v8޲-ڂX&4vy5ukjC+2F? .~wÿN0G  nxqDVRS"'!K0=i2nR>;,xܴpnƓ)^^k!i%;7;Y~!=un~3ۻ;>>_y#@BTMfؤoO@#3wnkq6> NJ%$ sh%[Ins&p$'rBsn{EF}Tp Oքf$( f YHjj޲APHQDW\'7_PKH'H'wEg?671'*j:iac5 ;j';@g;= M;d\ Z-3yZdNډ`ھOd: Ѱ2%`YѲKY!J<ӇhMi3~N Ȱ9nQJhdPnc Xٳg7ߋ}36Z.*` NuΒ(ϯ@o_R:h.-w'}:IK>H}aUY^Reu+Win;XIKD輴jވuکp=va+Vm{٭zw PKwZ<2W{IAR-STR912/examples/CAN/can.ewwUT LjKLjKux Q(K-*ϳU23PRHKOKU,׵05T)/..HLNrl RK7$N%<83H%&91O/F, V&)$9é43'E(`l8PK yZ<IAR-STR912/examples/CAN/.svn/UT LjKʈKux PKwZG27Er,D_V{[ &'6/ bm|ź:B%B@'J u!t-"WE徬 jBƧh ` ȘJa"u\Vf,:@=c uEPڗul%B5:'N{;1P6i7@;-k{;3hcEʶ7uIhΙPK wZ<'IAR-STR912/examples/CAN/.svn/prop-base/UT LjKʈKux PK wZ<'IAR-STR912/examples/CAN/.svn/text-base/UT LjKʈKux PKwZ<$IGOqL7IAR-STR912/examples/CAN/.svn/text-base/can.ewp.svn-baseUT LjKLjKux \mo6BomnX xiڱa;0hʤFQ_#%-솢 s@_ޑ<=m 1aקF멅|B_zwO{t">cOeu$ķiNsV{Ip$G%~gIi`,yd ҋi)>`9 4ĽYmiH,A4n'ǐ^XnZ~ق]C4A\%Z]*l5qqK|5g|mDQ d*b_v50YXĶ&G d{d6!,C:jHihryо%آrt֞`Js΋OB20n5BjbPyd^B@63q+NqҖI(^[:{_Kȶkk2$TXp|78Jd0}r'Kwνv.oiWc=M'29?5޴mmƥq_'pI( q1/ZV[~Z͟,EonJleZjѥhbsW3kރO-_'iR6޵__0X٥=W8tsc , ~R͸s = f^?"yWw08xNjOg1,Fa%Dʠz802rLM)^2J2{ ihmD.5gLWQRNIrWN/~yU2y꼣YJ|5kK0)3dfcO(u$^̐h{J5Kq*"|h7ɵ-fc0bCx)mmӾ4{$]eҳ18fG ڊZ#bprM5{vpP D%H}q&w5YwMYsD@61(#55`Xv]Gמ>İ^ýX6ERE՛1H)㤎; ]mJ*5 nގcT$f Q{ba8"c8B^{;A%?if+AQ}pζra5nv=];gGª$B~z؅NJzL{v8޲-ڂX&4vy5ukjC+2F? .~wÿN0G  nxqDVRS"'!K0=i2nR>;,xܴpnƓ)^^k!i%;7;Y~!=un~3ۻ;>>_y#@BTMfؤoO@#3wnkq6> NJ%$ sh%[Ins&p$'rBsn{EF}Tp Oքf$( f YHjj޲APHQDW\'7_PKH'H'wEg?671'*j:iac5 ;j';@g;= M;d\ Z-3yZdNډ`ھOd: Ѱ2%`YѲKY!J<ӇhMi3~N Ȱ9nQJhdPnc Xٳg7ߋ}36Z.*` NuΒ(ϯ@o_R:h.-w'}:IK>H}aUY^Reu+Win;XIKD輴jވuکp=va+Vm{٭zw PKwZuG 3L^-EEGlmU~5JܘǸ3WƯw k2Wڍ§bCaQ)oAH̵+  7&Lghf BڭIܛԽH=[@saw ɭ[i\6]vq޺C<.7'1 vC'.{*ۘl]=đ''GşLԒl{7\'r%p ҐR9JUy2Jx|盎9gsD);(*,S"ӏrPKPa/r=0 pyuK-5P6@ftE)F^^`^yǗrƈCBケ!j6uY d<' }L+TX#usI#$x'o4Wdjm }Mr$eL+RG'aGgmR97s{]U>6׿T>N aE|r,:kc遤$.\|!< \**$WĈ!ʟ)rހ4טuֳܜxj|OSv}6 |T1DRܞQoO~2Geܢs>˄ºayvaNUϦ !SȿUL):&?橄f(,\q iE@`\5v5d?BSG-Rv P”7%N)ξfoJ+6%g7M5ܲxc>aR v/$Kw=8ᣥbޙf޸+E2,R%W{יӹ7RɲF8M~ŋVm+QBw[/\(=22#ÖT(i' 3;65FjsW ?83LUEAJ.{5O{5ɫy3J`ȃ!{aP/][oV( ;R 0LwX9ͷ4.%cH2rϢ-?\+{Y J-'NPHIu˩~u'|bJ'+|n4W]jːʢ J! )繕zWsrqa;˖PKwZ<1 :IAR-STR912/examples/CAN/.svn/text-base/91x_conf.h.svn-baseUT LjKLjKux WMo8ƒFSM>\Jt֖RY6J+ie tFo޼S 3x۳5}4G|g<[=j ٖyu>u<=yRyR%kMvRh)o6[dr`TnVaYŰ٫{CϠMEU xitSFGnuv.݄Pc9a0`M80 #%e= s[` 42Y$ˉ֤a"6&QłA -}vDTDwz;rcTFa1!A(a`<a ;d&t)-@ ( jp 1qh-A,e0oL 3jPpHMqV&ۓ;zpz^l0WMf-PNd[*oy ˥*] &/<_UVB`V4+V v×eȬ i/;.J6.ɺlsGbYmh˸>1eyԆ2}LLve?|]{|~ڨh6L/VO9=sFښAJ!('RHm4jC 64gi$ͧAcH5J j{!$|'l)&4} %Mmx`8"91|R7w${^@HpG wvF64Xa˰p{&i6LV,׭O*xǛ&"/%F-MҲt*[kQ)KN7w1^&PKwZ<2W{7IAR-STR912/examples/CAN/.svn/text-base/can.eww.svn-baseUT LjKLjKux Q(K-*ϳU23PRHKOKU,׵05T)/..HLNrl RK7$N%<83H%&91O/F, V&)$9é43'E(`l8PKwZ<5pdA8IAR-STR912/examples/CAN/.svn/text-base/91x_it.c.svn-baseUT LjKLjKux ՜kOF?/h+`Bh͖퐩|ہ2@&vsQgI[ucXEy96 m0#Z@iRtL^Y0xNz阂O(,.־Ln":%,o]pM t&1O "ODg+CaCZ??ʺpF &$ݖTPTFy Ӣ(BZܦ /yQD)E@\Q(z9 e#(ʪU6 G1Iyܥ|0V#Yӥ #E3#30dq FIy\Olg4Ye'_u{v$/fAyzA88a7ܛq沛Oi2K^W0Ȇe:ܟw]hp`(CNG$|nɗ["{~y:|{Kgs+wPc*P/Tה'5HOQʅ⫼a_5!~XK5 Q% ([Ǘx u;. wIׁyݵ%g3x_.z_u~ ~/H1|gnE-=ѯVC݈|[[ɿ*N#mwF% <꟬^d\ ||G_b9hpKe_wQz_񭀼G뮕\W>x z <@߁ ɯCh}J>|&Vc~yɖ(2@YJ_xX-QbA2qQ鿊_th-Chûw!wbe e,Nh!+'W"Xfڒ,ZzQUR0Y?@{2 K/F_.?u}@6]2ݻU}Hk|=WЄrz;nV&Y*"?E u\y.}*3׋_gkͮz5*Z XOu*O jPD\\_x< r}+~H:fYGD[ SPkK^' |xB4+Րo0摼c~ŷΙ>xɽZ jp3b=]X8Go@Uo&7^OOdIk_IVdYk_ͬט.4IZxtG\N\KW?{eY/o{ıgiPKwZj] Vu€ỷw6}c3s 3uI< B(>oA=ױc7bvPaŠFQ\;ܗNYIH`s$nM&d1ZAMN=ACiP_%4'5HiQ2`27 YWorR$•7e`t@KG,B43e7/@jh7sCs"RxVjo?ij"ڝToT?]*-Nͼ5$tx#QE(="0|:(^}#Ň9lZĂsο΋~TU7>y$Q7Gϋ~i-ԟr#Zph'^|>yܻ µp:f}_Jub3(kuvvosv*M f^mŴqm::qc! F.1=Lqc:aJQi4C{P2jbp\m2dKJ%һ5l3I f;پ7]1@0(E̛|Y +4- })qLVLG S)U3D+떫h771N<,u +..tBnٍMX߈=ٴre\*M{3X b%xxꋩ. o6Xlf@?#uWZϊgq:l@0pJuN餹Qh--x#L r(}BAqc(2 U>Mv'RiUf޽+2P'/smϡd gG[IEpyG==2L|ifG17KXxP5~Hs7!ayyVѡQZRrtzyNF)Ta? Dc*/ZZM=\g`³ZjN1*a~S ]B >%JNM-KT-`~;eB8NU)XX~MXMn_m|IR}KmuCѳay9=G=ǢKcg+p^Sdwh]p }Bq,uzC>Pp-cN膦_^d%(J!7wBgS߻C :ㅈ3w)S#},Ĉ%>t t+P>#͓~ Ҳ3,F"KgJh N[ZUKRH@D8.X`EJ)zJ؍NrAᾆ#[ryB7EO]܆%q\rsfpMV!_PKwZ<1%b(IAR-STR912/examples/CAN/.svn/all-wcpropsUT LjKLjKux һ 0=Oa@O`KW 1RMB/_n:k~rNd8.R5 Jfk*UΙY k BT* wpr\вb_o.Ksb>I`;@[\*ct`f&C"oHN|? |sf{<8+[[ib6%Ϟ0SLj\ڃ`˄~PK wZ<#IAR-STR912/examples/CAN/.svn/props/UT LjKʈKux PK wZ<!IAR-STR912/examples/CAN/.svn/tmp/UT LjKʈKux PK wZ<+IAR-STR912/examples/CAN/.svn/tmp/prop-base/UT LjKʈKux PK wZ<+IAR-STR912/examples/CAN/.svn/tmp/text-base/UT LjKʈKux PK wZ<'IAR-STR912/examples/CAN/.svn/tmp/props/UT LjKʈKux PKwZ<Ծ1<IAR-STR912/examples/CAN/can.ewdUT LjKLjKux ko:O}8GZnvIYw($-kRrlir!^6KkiVδVJ? | "Q:AJHϟ=։)=wjSqi\{OQRA "xjItvyz3 M5{ٰݲge2ƵHF ,?4,[߿Yil5ofWLv!1smiRhYgZgz迋}D&  PE}j "SC7H0VkYKjn]qnc#0}'r%p ҐR9JUy2Jx|盎9gsD);(*,S"ӏrPKPa/r=0 pyuK-5P6@ftE)F^^`^yǗrƈCBケ!j6uY d<' }L+TX#usI#$x'o4Wdjm }Mr$eL+RG'aGgmR97s{]U>6׿T>N aE|r,:kc遤$.\|!< \**$WĈ!ʟ)rހ4טuֳܜxj|OSv}6 |T1DRܞQoO~2Geܢs>˄ºayvaNUϦ !SȿUL):&?橄f(,\q iE@`\5v5d?BSG-Rv P”7%N)ξfoJ+6%g7M5ܲxc>aR v/$Kw=8ᣥbޙf޸+E2,R%W{יӹ7RɲF8M~ŋVm+QBw[/\(=22#ÖT(i' 3;65FjsW ?83LUEAJ.{5O{5ɫy3J`ȃ!{aP/][oV( ;R 0LwX9ͷ4.%cH2rϢ-?\+{Y J-'NPHIu˩~u'|bJ'+|n4W]jːʢ J! )繕zWsrqa;˖PKwZj] Vu€ỷw6}c3s 3uI< B(>oA=ױc7bvPaŠFQ\;ܗNYIH`s$nM&d1ZAMN=ACiP_%4'5HiQ2`27 YWorR$•7e`t@KG,B43e7/@jh7sCs"RxVjo?ij"ڝToT?]*-Nͼ5$tx#QE(="0|:(^}#Ň9lZĂsο΋~TU7>y$Q7Gϋ~i-ԟr#Zph'^|>yܻ µp:f}_Jub3(kuvvosv*M f^mŴqm::qc! F.1=Lqc:aJQi4C{P2jbp\m2dKJ%һ5l3I f;پ7]1@0(E̛|Y +4- })qLVLG S)U3D+떫h771N<,u +..tBnٍMX߈=ٴre\*M{3X b%xxꋩ. o6Xlf@?#uWZϊgq:l@0pJuN餹Qh--x#L r(}BAqc(2 U>Mv'RiUf޽+2P'/smϡd gG[IEpyG==2L|ifG17KXxP5~Hs7!ayyVѡQZRrtzyNF)Ta? Dc*/ZZM=\g`³ZjN1*a~S ]B >%JNM-KT-`~;eB8NU)XX~MXMn_m|IR}KmuCѳay9=G=ǢKcg+p^Sdwh]p }Bq,uzC>Pp-cN膦_^d%(J!7wBgS߻C :ㅈ3w)S#},Ĉ%>t t+P>#͓~ Ҳ3,F"KgJh N[ZUKRH@D8.X`EJ)zJ؍NrAᾆ#[ryB7EO]܆%q\rsfpMV!_PKwZ<1 "IAR-STR912/examples/CAN/91x_conf.hUT LjKLjKux WMo8ƒFSM>\Jt֖RY6J+ie tFo޼S 3x۳5}4G|g<[=j ٖyu>u<=yRyR%kMvRh)o6[dr`TnVaYŰ٫{CϠMEU xitSFGnuv.݄Pc9a0`M80 #%e= s[` 42Y$ˉ֤a"6&QłA -}vDTDwz;rcTFa1!A(a`<a ;d&t)-@ ( jp 1qh-A,e0oL 3jPpHMqV&ۓ;zpz^l0WMf-PNd[*oy ˥*] &/<_UVB`V4+V v×eȬ i/;.J6.ɺlsGbYmh˸>1eyԆ2}LLve?|]{|~ڨh6L/VO9=sFښAJ!('RHm4jC 64gi$ͧAcH5J j{!$|'l)&4} %Mmx`8"91|R7w${^@HpG wvF64Xa˰p{&i6LV,׭O*xǛ&"/%F-MҲt*[kQ)KN7w1^&PKwZ<5pdA IAR-STR912/examples/CAN/91x_it.cUT LjKLjKux ՜kOF?/h+`Bh͖퐩|ہ2@&vsQgI[ucXEy96 m0#Z@iRtL^Y0xNz阂O(,.־Ln":%,o]pM t&1O "ODg+CaCZ??ʺpF &$ݖTPTFy Ӣ(BZܦ /yQD)E@\Q(z9 e#(ʪU6 G1Iyܥ|0V#Yӥ #E3#30dq FIy\Olg4Ye'_u{v$/fAyzA88a7ܛq沛Oi2K^W0Ȇe:ܟw]hp`(CNG$|nɗ["{~y:|{Kgs+wPc*P/Tה'5HOQʅ⫼a_5!~XK5 Q% ([Ǘx u;. wIׁyݵ%g3x_.z_u~ ~/H1|gnE-=ѯVC݈|[[ɿ*N#mwF% <꟬^d\ ||G_b9hpKe_wQz_񭀼G뮕\W>x z <@߁ ɯCh}J>|&Vc~yɖ(2@YJ_xX-QbA2qQ鿊_th-Chûw!wbe e,Nh!+'W"Xfڒ,ZzQUR0Y?@{2 K/F_.?u}@6]2ݻU}Hk|=WЄrz;nV&Y*"?E u\y.}*3׋_gkͮz5*Z XOu*O jPD\\_x< r}+~H:fYGD[ SPkK^' |xB4+Րo0摼c~ŷΙ>xɽZ jp3b=]X8Go@Uo&7^OOdIk_IVdYk_ͬט.4IZxtG\N\KW?{eY/o{ıgiPK wZ<IAR-STR912/examples/WDG/UT LjKʈKux PK wZ<"IAR-STR912/examples/WDG/interrupt/UT LjKʈKux PKwZ~s{;#]lP)xv5kdՎQ`θ{+VW,| 5%~;4~ȆmI8K=DC`CeyaZvy;{HӢimb:PKwZ3D/F,֣&)$9é43'E(`lPKwZȯX"#xOx0#ߴ{W-C$ +\ꋽpQqh(c9jwu%b)%#1#E/|Zu}an&_f@sd;C; L!,=44c0. qz >M2,N,$a8 8QmS|ű3e|n&@*q|ؗ"hOԮ?=q{3'iAF q >aI5;b*;vv\M=5}NL&0'V; ̧(/zt^a;i$ uołLNq'A4tkufxLcj .Xh#OYl^zg4 v(~fˤY"wkߵ7MR1 /~[k6jŅ ў^ h4OC~]i4MRrѦhc{F`0Ztn@郺4;6 7/599 +df{D~79%=h.Ѽ:+<%R33s Qlp žda<6c* *  #.6H9$5EEVUp`,EjHۑ#*q$ Ahj,|Aq2AK/Y`,<;ey*O9 cpXIEaNRpSSo%eRƲ(D#լCQcD7Cp 2!xLZ*ܶѐ4M$pǽM1?kcNYLYK?.z@4QTur`q> ɅEV(!JPhڌ[$UKHNa=J Ѓ~Ȫڅ҄U#Y[`CAjU Z;UE2[sYT O (&UGW]'7۷Vt8P&'A+/u~`ZxNX2*9WXsYIhY_8FMJp>d%@edKWn\ Z%͹{Zn&-8nyŀh++,hަ?vФ֪qyg0q >Nc ݻ.??Y#TEa4H*>ەC8&-%$$ZԊ8˒U{>}_O}@_ht͓~]_] {E aUM6ReXiU AeXatUH!a5Kʖ&ݫuYKb mf83ǠQ7v7E ՗PKwZʵ(O-A&y<(2u?@*PJ<‡tj;SDbFߴ;>2D/\!d®Q`fcmkyÒf J]3ixvEڗ7\&| bڼq:4$_ /.zgC}hFSc p| By9@r"W~s ؟nQ'SdyiZ*Uf0ω8A\:2 hhY!s3GZy( [k}|2 0L0r T $wNw|-ier &dhc$٬.O=AN2Շğ:fG7.F@|$hPd,˔39E ]2mH}#N* mVRWsT>U_bAXR,vDF0:>M%>Y 20b-E'xً@}(qYl`-}݉:A.,+OE#g !B:(,S4.??^Eq2Cg̣3>vd&Y]GL^4K74EvejM*@'CFy Θ9*X ɜBpTK3nTn  qEpd 5v50Dsȗ-qK)HLP7N!2GěQOzƹiI8+w>aR ($K=Nj8:ᣥb>wr!,VdY&K/*iйsRWeMpCy%/zZ[49.'5O"#ũ.s8g:,Iv:<>]3JncXc$ j^v3PXtMJD"ȟ~b~=#y5c&1;#yc?Dw>>Y_c Mszc@^[ҋ+o6(ve 8H|;l{)e$pfg[ n>z{#˜vj( $i c]5;Z0NnH40ÝFjrTmRP)ܛ1%8=÷Oq,׹[фݡ:HI; 'Јqix/W(2H(y=el`g a$xbd3vvᷞdԉ 3fǨC6_oRRús ۼPTIdS"]P4)(b 6wpygEm>wh&&QztV1i]PPVX2`oh^ޟe*֞FQ9 (O(r1fy66g{vȲl\=$6+R-L ۊY& j [<}̨y PK wZ<1IAR-STR912/examples/WDG/interrupt/.svn/prop-base/UT LjKʈKux PK wZ<1IAR-STR912/examples/WDG/interrupt/.svn/text-base/UT LjKʈKux PKwZȯX"#xOx0#ߴ{W-C$ +\ꋽpQqh(c9jwu%b)%#1#E/|Zu}an&_f@sd;C; L!,=44c0. qz >M2,N,$a8 8QmS|ű3e|n&@*q|ؗ"hOԮ?=q{3'iAF q >aI5;b*;vv\M=5}NL&0'V; ̧(/zt^a;i$ uołLNq'A4tkufxLcj .Xh#OYl^zg4 v(~fˤY"wkߵ7MR1 /~[k6jŅ ў^ h4OC~]i4MRrѦhc{F`0Ztn@郺4;6 7/599 +df{D~79%=h.Ѽ:+<%R33s Qlp žda<6c* *  #.6H9$5EEVUp`,EjHۑ#*q$ Ahj,|Aq2AK/Y`,<;ey*O9 cpXIEaNRpSSo%eRƲ(D#լCQcD7Cp 2!xLZ*ܶѐ4M$pǽM1?kcNYLYK?.z@4QTur`q> ɅEV(!JPhڌ[$UKHNa=J Ѓ~Ȫڅ҄U#Y[`CAjU Z;UE2[sYT O (&UGW]'7۷Vt8P&'A+/u~`ZxNX2*9WXsYIhY_8FMJp>d%@edKWn\ Z%͹{Zn&-8nyŀh++,hަ?vФ֪qyg0q >Nc ݻ.??Y#TEa4H*>ەC8&-%$$ZԊ8˒U{>}_O}@_ht͓~]_] {E aUM6ReXiU AeXatUH!a5Kʖ&ݫuYKb mf83ǠQ7v7E ՗PKwZ~s{;#]lP)xv5kdՎQ`θ{+VW,| 5%~;4~ȆmI8K=DC`CeyaZvy;{HӢimb:PKwZ3D/F,֣&)$9é43'E(`lPKwZʵ(O-A&y<(2u?@*PJ<‡tj;SDbFߴ;>2D/\!d®Q`fcmkyÒf J]3ixvEڗ7\&| bڼq:4$_ /.zgC}hFSc p| By9@r"W~s ؟nQ'SdyiZ*Uf0ω8A\:2 hhY!s3GZy( [k}|2 0L0r T $wNw|-ier &dhc$٬.O=AN2Շğ:fG7.F@|$hPd,˔39E ]2mH}#N* mVRWsT>U_bAXR,vDF0:>M%>Y 20b-E'xً@}(qYl`-}݉:A.,+OE#g !B:(,S4.??^Eq2Cg̣3>vd&Y]GL^4K74EvejM*@'CFy Θ9*X ɜBpTK3nTn  qEpd 5v50Dsȗ-qK)HLP7N!2GěQOzƹiI8+w>aR ($K=Nj8:ᣥb>wr!,VdY&K/*iйsRWeMpCy%/zZ[49.'5O"#ũ.s8g:,Iv:<>]3JncXc$ j^v3PXtMJD"ȟ~b~=#y5c&1;#yc?Dw>>Y_c Mszc@^[ҋ+o6(ve 8H|;l{)e$pfg[ n>z{#˜vj( $i c]5;Z0NnH40ÝFjrTmRP)ܛ1%bgܕvX>, S5^,"$6aШ)1x1OρͶA8Gԣ6€1.<Bc .{$8,BG $9#8'S6!(HkێX,[D 87|~$pFmK|P?t-:v',6Q~(9F$ϻl/ s*;teP'#R|+ʯ]D/X soR,F5OVz]|/lmh>~e; Q`6BU{n?y.F_ X}e_/pC>:|_^:J 8i$Sݳd(BTxXBjTi:ca;$i(ؖb_(b_)b('4Ӣ35jb[DI&_/)!=qo<J<:_:gM tؾ@Y5!T ajs;a3:MpæY>˗Nװ*_[/^tw]|{ߠɝpZW! /Տ~KUOoHG^o'̣PKwZ<H:=BIAR-STR912/examples/WDG/interrupt/.svn/text-base/91x_it.c.svn-baseUT LjKLjKux ՛]O8G 1--5U(K+RC#8à=v 4{|'c[mUD !~X*xgi oI>([1{9|D7 J, 9zDdE%!y)eo=9\2^JE{LyVA^'Y$j- fk2Jd9+(|K]f%J"i D J Ē2u eu7mˆe">y"M+X!!yݴ/Y]lxX^V<$a'y=FI1ǧ^ >-8gY~ I\lI7AVE@˘l4ĦgD nժx _LPakxR{ x&dN zd 2+`kCax*D/9[>AkkG|ytxpx{{S5ks vszR?oLIGK5|]wOPLJl׼TDLT<]Zd׾eqÃxNz=疨2 M 2. FZHn . þk\{Kb"5=p0[>5P;k\~?h8G*+V 7]oawwS=WgPF_0,8`<%\n98ԅ,1[ eUUĒś;gUkX 2;e,W)=ݏun2!skQ :^O}I~׹|j.|>Og/f|ZK~Y+gƒ?K~'+w﵃ ?g-6TLMKHwk@V e&k m+;toOݷ̈́ifRoֱ"FD\6Jn.|G62g6Jn.|ͧ6d`uL;o1H5O8q~}^5wh``19 2<W#n0p=Ne8&ױccKnqg1|&c#bBQ55,T87߸d1k+`Bv"Urssn  ܸ4k-~Hٗ)6X2_M ie{ܧ% ]&~M)'~2}N,HJJ40魸R)w2%,qxTC<j^T6np =a T OzpnE 0WpV an6Lvw,tNV?Y$q1myuUϸr>37ݫJSO*@/ e:r+ۄiJG ~X&KN*EV}iuډjQ77▊|6ģx߬6OxcXi?6.ݿPKwZ}|iD-("ufIiDة׽AL-B&a͵ɥV gg5#εRr0iOs+qUP̤. xRe\ ׺RH )i.ܔD_jw ˮI;pU-?A 9e%w<^^RdmN\v g<PK wZ<-IAR-STR912/examples/WDG/interrupt/.svn/props/UT LjKʈKux PK wZ<+IAR-STR912/examples/WDG/interrupt/.svn/tmp/UT LjKʈKux PK wZ<5IAR-STR912/examples/WDG/interrupt/.svn/tmp/prop-base/UT LjKʈKux PK wZ<5IAR-STR912/examples/WDG/interrupt/.svn/tmp/text-base/UT LjKʈKux PK wZ<1IAR-STR912/examples/WDG/interrupt/.svn/tmp/props/UT LjKʈKux PKwZ<ɬ$(IAR-STR912/examples/WDG/interrupt/main.cUT LjKLjKux WnF}@ .N@+iQTHʆZYPwf.&v~ ggΜ=;KuN0`kGv2RDF9< d, WB#6bf=`lZ`ױB "\祘sNu")G\+,\oA| WXo~}^5wh``19 2<W#n0p=Ne8&ױccKnqg1|&c#bBQ55,T87߸d1k+`Bv"Urssn  ܸ4k-~Hٗ)6X2_M ie{ܧ% ]&~M)'~2}N,HJJ40魸R)w2%,qxTC<j^T6np =a T OzpnE 0WpV an6Lvw,tNV?Y$q1myuUϸr>37ݫJSO*@/ e:r+ۄiJG ~X&KN*EV}iuډjQ77▊|6ģx߬6OxcXi?6.ݿPKwZ<7Jo,IAR-STR912/examples/WDG/interrupt/91x_conf.hUT LjKLjKux WMsHrI\Y WFbj`O*,b6xm,ńTeG:_~ ȂCĦ.0!~( ,lQӓ3dkA_g(mT]uHȁt#NZ $-XUmRiH;QV2<7Q-!ٳ{c/ Ed_eSxInVEr+P˒BoZ&X_bRE48{QwaF0MCBx@1S>bgܕvX>, S5^,"$6aШ)1x1OρͶA8Gԣ6€1.<Bc .{$8,BG $9#8'S6!(HkێX,[D 87|~$pFmK|P?t-:v',6Q~(9F$ϻl/ s*;teP'#R|+ʯ]D/X soR,F5OVz]|/lmh>~e; Q`6BU{n?y.F_ X}e_/pC>:|_^:J 8i$Sݳd(BTxXBjTi:ca;$i(ؖb_(b_)b('4Ӣ35jb[DI&_/)!=qo<J<:_:gM tؾ@Y5!T ajs;a3:MpæY>˗Nװ*_[/^tw]|{ߠɝpZW! /Տ~KUOoHG^o'̣PKwZ<H:=*IAR-STR912/examples/WDG/interrupt/91x_it.cUT LjKLjKux ՛]O8G 1--5U(K+RC#8à=v 4{|'c[mUD !~X*xgi oI>([1{9|D7 J, 9zDdE%!y)eo=9\2^JE{LyVA^'Y$j- fk2Jd9+(|K]f%J"i D J Ē2u eu7mˆe">y"M+X!!yݴ/Y]lxX^V<$a'y=FI1ǧ^ >-8gY~ I\lI7AVE@˘l4ĦgD nժx _LPakxR{ x&dN zd 2+`kCax*D/9[>AkkG|ytxpx{{S5ks vszR?oLIGK5|]wOPLJl׼TDLT<]Zd׾eqÃxNz=疨2 M 2. FZHn . þk\{Kb"5=p0[>5P;k\~?h8G*+V 7]oawwS=WgPF_0,8`<%\n98ԅ,1[ eUUĒś;gUkX 2;e,W)=ݏun2!skQ :^O}I~׹|j.|>Og/f|ZK~Y+gƒ?K~'+w﵃ ?g-6TLMKHwk@V e&k m+;toOݷ̈́ifRoֱ"FD\6Jn.|G62g6Jn.|ͧ6d`uL;o1H5O8qkMB*~-, {9 3s!5R!LrYslcO#ߐ8 %4%yܝrS)ɯ@# ҍFYe*7NH n+Ba1ϗuŶT-uǵ>18PK wZ<'IAR-STR912/examples/WDG/.svn/prop-base/UT LjKʈKux PK wZ<'IAR-STR912/examples/WDG/.svn/text-base/UT LjKʈKux PKwZ޼y振.x0_?p̯?A!Ҧ4ZtFwMi\tr˦UɽYWګ=;BzWk0r8M)];J}p$BPc0k{UW_r SYp=$([0_\>ZAm0O%neHy>o߇ۙ}ϧ "洠"_{),96,"YH!ϒ ,-XIJB)3#dvavJ3tE`zh C% r(R r_lq& yN g,,I@ $ۄ${qR 1YA`ی$؁/83go`tP {%ɢRQ}xf+5ȗ 2a7@A[oU PKwZ<3+IAR-STR912/examples/WDG/polling/wdg_pol.ewwUT LjKLjKux Q(K-*ϳU23PRHKOKU,׵05T)/..HLNrl RK7$N%<83H%<%= ?G/F,֣&)$9é43'E(`lPKwZh0rX$iB!N+!۱ݴFԇ&mi4J:-lTjD): Ck8S-=T!ž$GsCzxa Qm]M*lCpC:jHihruо%آrt^`4x*q۰nJ-BsW]{5Z20ƭ8"ƅLBAfqcn![:b !CBם,lɝLŽ{_ANG7J_4r'šxӶz(ccY'1G$ıƼhZmӒ~7;D~ZtĶXVx{yEt)XÜU:`Sc'w?'Vv/k= nng/Eٌ8 d3wu'3s4qC]07270[.1%UřcZm OQZe ;Y̐>PGFxW"(Cơ  Jc3̷a.Đ<+6a? Cy6[Tz/Ι9ysH m=IeC_hn{%SJM28{25kY$Pg Ƅ`12y=NsqNCZc& )7ڣ:Jj)IX\\w/ỤUR#F>6A.¤̔J =M @LNL8Nֵ{]2C)hdyJߑZj0Bլx 6El]"tג׶.c@@GB1V1 ]ig1h+j@#l#fR>;M 8(Ac"Ȋ%P]>8[ SDW ` ef#Aqˮt7^'#| LmKvTQe R%jS9i`gNBW讣 ,}w= 4|$KGCXH@ouA&h6W:NFxnDOJPTDl\(D ̛]gD0ӫPrIIiAn@[ŠX[P9cƘ1W R-{he@` Df '[j?wa<׼TJ2Lwg[T/ '7-dpwZHZ f9No釠_p:Pob7]ܜ@n f)7 kAinZc",3+!R({0'α~0X`rl):eI h\hF!}ȨڇJ r3oMhvHjYU֩>nMm. Aq)fy>uur*;LyoOXr@:Ax"^^焗= +r.wWcY P*pq˓_jpLƕղ9ﯝ˕1; Z_B@4 9 8Zv=43J>38j1tJFSI#{׭>?,Mt`s$r|6}gFedPi>NYh}=J ~N:{ԿkBCPu$ܧˀ/koQH\ +ڰ.V:sU \K1ڞ2vېnpj]"B?(IPK yZ<%IAR-STR912/examples/WDG/polling/.svn/UT LjKʈKux PKwZN1O ZןK<-r:36j;ɰ3zF[2L6 =2$ῼ=ʺk]_˷q֥[Á"#&ɀ<:D\6Z&4ƐCI:֣Ѫش j9 }YgS3ՒQ9Jˀ*hMh0rX$iB!N+!۱ݴFԇ&mi4J:-lTjD): Ck8S-=T!ž$GsCzxa Qm]M*lCpC:jHihruо%آrt^`4x*q۰nJ-BsW]{5Z20ƭ8"ƅLBAfqcn![:b !CBם,lɝLŽ{_ANG7J_4r'šxӶz(ccY'1G$ıƼhZmӒ~7;D~ZtĶXVx{yEt)XÜU:`Sc'w?'Vv/k= nng/Eٌ8 d3wu'3s4qC]07270[.1%UřcZm OQZe ;Y̐>PGFxW"(Cơ  Jc3̷a.Đ<+6a? Cy6[Tz/Ι9ysH m=IeC_hn{%SJM28{25kY$Pg Ƅ`12y=NsqNCZc& )7ڣ:Jj)IX\\w/ỤUR#F>6A.¤̔J =M @LNL8Nֵ{]2C)hdyJߑZj0Bլx 6El]"tג׶.c@@GB1V1 ]ig1h+j@#l#fR>;M 8(Ac"Ȋ%P]>8[ SDW ` ef#Aqˮt7^'#| LmKvTQe R%jS9i`gNBW讣 ,}w= 4|$KGCXH@ouA&h6W:NFxnDOJPTDl\(D ̛]gD0ӫPrIIiAn@[ŠX[P9cƘ1W R-{he@` Df '[j?wa<׼TJ2Lwg[T/ '7-dpwZHZ f9No釠_p:Pob7]ܜ@n f)7 kAinZc",3+!R({0'α~0X`rl):eI h\hF!}ȨڇJ r3oMhvHjYU֩>nMm. Aq)fy>uur*;LyoOXr@:Ax"^^焗= +r.wWcY P*pq˓_jpLƕղ9ﯝ˕1; Z_B@4 9 8Zv=43J>38j1tJFSI#{׭>?,Mt`s$r|6}gFedPi>NYh}=J ~N:{ԿkBCPu$ܧˀ/koQH\ +ڰ.V:sU \K1ڞ2vېnpj]"B?(IPKwZ<0}*?BIAR-STR912/examples/WDG/polling/.svn/text-base/Readme.txt.svn-baseUT LjKLjKux UMo8;mwk`D[D9-XȢARH~כ]z>޼y振.x0_?p̯?A!Ҧ4ZtFwMi\tr˦UɽYWګ=;BzWk0r8M)];J}p$BPc0k{UW_r SYp=$([0_\>ZAm0O%neHy>o߇ۙ}ϧ "洠"_{),96,"YH!ϒ ,-XIJB)3#dvavJ3tE`zh C% r(R r_lq& yN g,,I@ $ۄ${qR 1YA`ی$؁/83go`tP {%ɢRQ}xf+5ȗ 2a7@A[oU PKwZ'A@EqY)9E 2mbgGa3ȯ|V׿Tk;$Y>JD#)J >| `)uBA1d`KN.7i/r5fM]tӃOQux\XW$gB쳅t/XC%X*Tp6WXf#}k 0w̡]M*O -*p!WeXRa2e>\G,*D<\|\0G7~]M$9 ќy eK\R C*`Jқ NA2[g7fsӒbq:-WaR +$jK7=dz8:᳥$c>5z#CX)y(Lėl_TDqSsR&ʚ$^JzZ[GMK =lS< p0HT9g:,IC;ik^vV-IBk=%qEHQRN|{5Ojޣa$qI Hȱ7ѝ{XBӜPq?gQpEfC"(+4 ޒ(sq7x Ùiyo x7_+=>NzC#1'Q@I4Ӯ~٫kvORS!\0 ^40ÝB59 LPs(RfL Z: ot~aOWsc7{PKwZ<7JoBIAR-STR912/examples/WDG/polling/.svn/text-base/91x_conf.h.svn-baseUT LjKLjKux WMsHrI\Y WFbj`O*,b6xm,ńTeG:_~ ȂCĦ.0!~( ,lQӓ3dkA_g(mT]uHȁt#NZ $-XUmRiH;QV2<7Q-!ٳ{c/ Ed_eSxInVEr+P˒BoZ&X_bRE48{QwaF0MCBx@1S>bgܕvX>, S5^,"$6aШ)1x1OρͶA8Gԣ6€1.<Bc .{$8,BG $9#8'S6!(HkێX,[D 87|~$pFmK|P?t-:v',6Q~(9F$ϻl/ s*;teP'#R|+ʯ]D/X soR,F5OVz]|/lmh>~e; Q`6BU{n?y.F_ X}e_/pC>:|_^:J 8i$Sݳd(BTxXBjTi:ca;$i(ؖb_(b_)b('4Ӣ35jb[DI&_/)!=qo<J<:_:gM tؾ@Y5!T ajs;a3:MpæY>˗Nװ*_[/^tw]|{ߠɝpZW! /Տ~KUOoHG^o'̣PKwZO.v60<> RRJVet3(tW:ҨE%a:V"TQEvR X]7bz4$vBZ18<6QX ѳV*!eR yWQE)CS/n4<+Z@SUܤ r j!@ȅɺa"Sp=@獄B-ƒ=C;\-D 8]dxDYFgR`ZfeQ-F1Y+3>*E֙AciY{I%AU6G˘4@EC ~#| :AFܮAU39͵q x/qI 9.ٲ?>1ZÉ~t8ԫ*>}}Z?!c>0IhJ#i<3P7(Nl|y(GM||7My$cՋM0@H8#HIL+NzMd!%8 !Ԅ$!@#%1 Ǔ8b^ D1S c0rPDGd;8J3OBrF>p ^:OX=840G7tܞ0?j=40T1i #NXD}4P/l0)$Eh̗ ~>;dMnsq`~5n֯Tu}>i^+ٴO”VDU)Gب͞DF/;BwU1n?t@-5Ca7BHPJ*ǰohl;g*syǰ#vnT9yç3 uZߟxF^Q+w][.w;mT$L$|>w> wgnm{:K~h^8K]t<~۹A?Soʛ vQ;w_$ez?$=ȇM]{$;um{N=܄lnRﺶqID6F.|G6:g6F.|˧6l:Z&-v(9Z,y'M'=ּVI~˷=ּV;K.M]'umMǹ0um\g}b[_xſoy59xm0kr#V0?DxMmKdt~f݄ uo2|' zPKwZ<2j >IAR-STR912/examples/WDG/polling/.svn/text-base/main.c.svn-baseUT LjKLjKux W[oJ~0R=4(^`Ucsl(OȱXȗ]s Ml`ofgwL N&Q23̳TFSDlB"RUr_06-0DFa) KyQ/Jd|gw[Ѻ"/ȣ:WrV ag<\ :3/2E_.9wFq>ZP``19 2<W#n0p=Ne8&ױc}܏̩cwŃ6RpF]<64<%ŀ#wkj>YSP7 cRu%7= <Ȱmp F̶Ff pZw Ebܰ2Ɛ:6!+BO) a1_Ev"X;„m&yJ) x*ha7~WQYGV w̔en yF4 H0wIYT?b8&uUP'K)ܪ*NJ]X*<*ߨr!m"`gT&+rNV9MUy$,F8s}ۧB ,:)a%Y ۊ'n[Yd(Ig((TD`;*S=:ٻU4&}ݤ$j8 k'KuA4?DzJWغ(=z]V v3j^iieb VY^6òd.)Ä-l])F=P٤**I JѴ4'v^o M+)Q(D~ջq'˥.R.neFmxF-ZQarY6^3 z&]a{? B~4+]CJoh aۍoU˒o4QNB GBŗ+H!)wFKp8EqSlgW$Ip]a%"W#>H*dP~Z~/0Qкmݦ*t固X~yUw}z˯VX=6߿PKwZ<94OL0IAR-STR912/examples/WDG/polling/.svn/all-wcpropsUT LjKLjKux œ @:iH-("u]KZwӈS 33H7ZP``19 2<W#n0p=Ne8&ױc}܏̩cwŃ6RpF]<64<%ŀ#wkj>YSP7 cRu%7= <Ȱmp F̶Ff pZw Ebܰ2Ɛ:6!+BO) a1_Ev"X;„m&yJ) x*ha7~WQYGV w̔en yF4 H0wIYT?b8&uUP'K)ܪ*NJ]X*<*ߨr!m"`gT&+rNV9MUy$,F8s}ۧB ,:)a%Y ۊ'n[Yd(Ig((TD`;*S=:ٻU4&}ݤ$j8 k'KuA4?DzJWغ(=z]V v3j^iieb VY^6òd.)Ä-l])F=P٤**I JѴ4'v^o M+)Q(D~ջq'˥.R.neFmxF-ZQarY6^3 z&]a{? B~4+]CJoh aۍoU˒o4QNB GBŗ+H!)wFKp8EqSlgW$Ip]a%"W#>H*dP~Z~/0Qкmݦ*t固X~yUw}z˯VX=6߿PKwZ<7Jo*IAR-STR912/examples/WDG/polling/91x_conf.hUT LjKLjKux WMsHrI\Y WFbj`O*,b6xm,ńTeG:_~ ȂCĦ.0!~( ,lQӓ3dkA_g(mT]uHȁt#NZ $-XUmRiH;QV2<7Q-!ٳ{c/ Ed_eSxInVEr+P˒BoZ&X_bRE48{QwaF0MCBx@1S>bgܕvX>, S5^,"$6aШ)1x1OρͶA8Gԣ6€1.<Bc .{$8,BG $9#8'S6!(HkێX,[D 87|~$pFmK|P?t-:v',6Q~(9F$ϻl/ s*;teP'#R|+ʯ]D/X soR,F5OVz]|/lmh>~e; Q`6BU{n?y.F_ X}e_/pC>:|_^:J 8i$Sݳd(BTxXBjTi:ca;$i(ؖb_(b_)b('4Ӣ35jb[DI&_/)!=qo<J<:_:gM tؾ@Y5!T ajs;a3:MpæY>˗Nװ*_[/^tw]|{ߠɝpZW! /Տ~KUOoHG^o'̣PKwZO.v60<> RRJVet3(tW:ҨE%a:V"TQEvR X]7bz4$vBZ18<6QX ѳV*!eR yWQE)CS/n4<+Z@SUܤ r j!@ȅɺa"Sp=@獄B-ƒ=C;\-D 8]dxDYFgR`ZfeQ-F1Y+3>*E֙AciY{I%AU6G˘4@EC ~#| :AFܮAU39͵q x/qI 9.ٲ?>1ZÉ~t8ԫ*>}}Z?!c>0IhJ#i<3P7(Nl|y(GM||7My$cՋM0@H8#HIL+NzMd!%8 !Ԅ$!@#%1 Ǔ8b^ D1S c0rPDGd;8J3OBrF>p ^:OX=840G7tܞ0?j=40T1i #NXD}4P/l0)$Eh̗ ~>;dMnsq`~5n֯Tu}>i^+ٴO”VDU)Gب͞DF/;BwU1n?t@-5Ca7BHPJ*ǰohl;g*syǰ#vnT9yç3 uZߟxF^Q+w][.w;mT$L$|>w> wgnm{:K~h^8K]t<~۹A?Soʛ vQ;w_$ez?$=ȇM]{$;um{N=܄lnRﺶqID6F.|G6:g6F.|˧6l:Z&-v(9Z,y'M'=ּVI~˷=ּV;K.M]'umMǹ0um\g}b[_xſoy59xm0kr#V0?DxMmKdt~f݄ uo2|' zPKwZ'A@EqY)9E 2mbgGa3ȯ|V׿Tk;$Y>JD#)J >| `)uBA1d`KN.7i/r5fM]tӃOQux\XW$gB쳅t/XC%X*Tp6WXf#}k 0w̡]M*O -*p!WeXRa2e>\G,*D<\|\0G7~]M$9 ќy eK\R C*`Jқ NA2[g7fsӒbq:-WaR +$jK7=dz8:᳥$c>5z#CX)y(Lėl_TDqSsR&ʚ$^JzZ[GMK =lS< p0HT9g:,IC;ik^vV-IBk=%qEHQRN|{5Ojޣa$qI Hȱ7ѝ{XBӜPq?gQpEfC"(+4 ޒ(sq7x Ùiyo x7_+=>NzC#1'Q@I4Ӯ~٫kvORS!\0 ^40ÝB59 LPs(RfL Z: ot~aOWsc7{PK xZ<IAR-STR912/examples/I2C/UT LjKʈKux PKxZ<"0bȚ "IAR-STR912/examples/I2C/Readme.txtUT LjKLjKux VKo8 c{{P$%&֖ 蚨^KR~gHΫ[,]"q^|+ A^drVt< b!WX6r5S{Z9L#3f*x" Jm5)Gtu/JRx:B;OBi@蕒urx]`J;?d&i}#t/2 ZbUqR@^A3`9\\.Y$a i2-r I?%."]YNY1íd,AEP4, 2YF2,rT4̆BS [#y0 :ȗ% 4a sg|IZy xغ X'%"$Xb,C,8w`+B, 3S Y ]zI;p$ѩK y YБ"Kb$ٵA؂|ѧ{C@yl'{Fjz{6[R#n-0([u7p'Vٶ :֭ɝQk`\FyU냆ld mI3pSa}6kW8oPyw+|/i݆ۗkh{J? N{v+PzBBs=@-K%֧]qyY*5(Z6HQwжV(|'FşhV58X"k͆k\)vw\?Ф_cQoE;_݃U (Rnm&^c$9k$JJLJbqFqҹq YsG2WƝ,gRceS 67z(94rg7YrKo4y%i> tFČ鄥11a{NvT \)dn֬aTx^e㤀"Lk]SqUnͽKR^7c˾l4u񺭪vm{ [p{,^MGwT{[M4'G9t}U};* FX]Amn8nUFsͿ[=ض <==͖CpF?@7~#_$cwPKxZʵ(O-A&y<(2u?@*PJ<‡tj;SDbFߴ;>2D/\!d®Q`fcmkyÒf J]3ixvEڗ7\&| bڼq:4$_ /.zgC}hFSc p| By9@r"W~s ؟nQ'SdyiZ*Uf0ω8A\:2 hhY!s3GZy( [k}|2 0L0r T $wNw|-ier &dhc$٬.O=AN2Շğ:fG7.F@|$hPd,˔39E ]2mH}#N* mVRWsT>U_bAXR,vDF0:>M%>Y 20b-E'xً@}(qYl`-}݉:A.,+OE#g !B:(,S4.??^Eq2Cg̣3>vd&Y]GL^4K74EvejM*@'CFy Θ9*X ɜBpTK3nTn  qEpd 5v50Dsȗ-qK)HLP7N!2GěQOzƹiI8+w>aR ($K=Nj8:ᣥb>wr!,VdY&K/*iйsRWeMpCy%/zZ[49.'5O"#ũ.s8g:,Iv:<>]3JncXc$ j^v3PXtMJD"ȟ~b~=#y5c&1;#yc?Dw>>Y_c Mszc@^[ҋ+o6(ve 8H|;l{)e$pfg[ n>z{#˜vj( $i c]5;Z0NnH40ÝFjrTmRP)ܛ1%3D/F,֣&)$9é43'E(`lPKxZ@㴦$wf}F$8G9~w'YԪ`,f2n~V(k- R{s i3XUd3D~E _7vXbƝ|P),uDi/qٞ(ZxD{֪[U{7td3T$B!N+!z]ʰ4&tY0i gqZf4#is\,)sotfL 4j oǷP{}I(u8qoF"6M59Ȩ s!!a!|7eACRM{sm1;vv\MUW~Z>'&0'&vOQ_:^%Hd=w,I*młLNpc :il3t1CBeK,4,^^zG4/ voj3i,5ǛsU5FT a\5FxhOKRYSh4Ӑ_)F~ }.ɖg{m!]Lhm/e/Hfkx0B"UG4wZ{}y}! a7201لAg[m KQX՚FiVUh`,EfH#:l[0U h7vϭs~aUvlo=lCs'=feobm@ ,C|{b~8ߚHYz{_'NU@z^nԉox8o}y#r6GǓ gڌ[TOK '6-wRHZ f9V`Ơ_H_]p{nlb׿\ݜ@n qY_n'Tf;Qa }ۚf`> `)"a"R Iw/+K.12$ >Ot8#a>a=J %kJ VIފܘD" DT֩.J잱6Eՠbz7>^ܿ*:q_jLOXr@:A:0W/,wFi9DTis:l.Z6V#pS Y P2pC>ﳗ8&nS|AR*9ӜȽ7J8(s C"Q ZET*e<³}0q >Nt1]V=b2)4ʬnA m7v%˒'t. # Ul wDچٯXMfsD႒]v/PKxZʵ(O-A&y<(2u?@*PJ<‡tj;SDbFߴ;>2D/\!d®Q`fcmkyÒf J]3ixvEڗ7\&| bڼq:4$_ /.zgC}hFSc p| By9@r"W~s ؟nQ'SdyiZ*Uf0ω8A\:2 hhY!s3GZy( [k}|2 0L0r T $wNw|-ier &dhc$٬.O=AN2Շğ:fG7.F@|$hPd,˔39E ]2mH}#N* mVRWsT>U_bAXR,vDF0:>M%>Y 20b-E'xً@}(qYl`-}݉:A.,+OE#g !B:(,S4.??^Eq2Cg̣3>vd&Y]GL^4K74EvejM*@'CFy Θ9*X ɜBpTK3nTn  qEpd 5v50Dsȗ-qK)HLP7N!2GěQOzƹiI8+w>aR ($K=Nj8:ᣥb>wr!,VdY&K/*iйsRWeMpCy%/zZ[49.'5O"#ũ.s8g:,Iv:<>]3JncXc$ j^v3PXtMJD"ȟ~b~=#y5c&1;#yc?Dw>>Y_c Mszc@^[ҋ+o6(ve 8H|;l{)e$pfg[ n>z{#˜vj( $i c]5;Z0NnH40ÝFjrTmRP)ܛ1% tFČ鄥11a{NvT \)dn֬aTx^e㤀"Lk]SqUnͽKR^7c˾l4u񺭪vm{ [p{,^MGwT{[M4'G9t}U};* FX]Amn8nUFsͿ[=ض <==͖CpF?@7~#_$cwPKxZ<k:IAR-STR912/examples/I2C/.svn/text-base/91x_conf.h.svn-baseUT LjKLjKux WMsHrI\Y WFbj`O*,b6xm,ńTe>_~ ȂCĦ.0!~( ,lQӓ3dkA_g(mT]uHȁt#NZ $-XUmRiH;QV2<7Q-!ٳ{c/ Ed_eSxInVEr+?P˒BoZ&X_bRE48{QwaF0MCBx@1S>bgܕvX>, S5^,"$6aШ)1x1OρͶA8Gԣ6€1.<Bc .{$8,BG~ $9#8'S6!(HkێX,[D 87|~$pFmK|P?t-:v',6Q/@QrI=:=U+嫌"&s|ЕB񞞌pK(Bv%b)-K(6P? Xu-˿Z5G5d6GPyۗkxdhKK'Ӗoqd6>zpޢ#>S[ڪ{2Zơ/dhsUX}/`.}u_lPq5zͣ^B+q2\⤑OuϒTRa= mSuXC?錅z*ئb[}ؗ}׊}؟ӈOmv!PKk$)|D\;Lao<~(l|چП6 C/?&c™j5 qhڃh@z#~,ܬi5JV;]oCenrN0d"_f5mw:6ϟ]HG^m'̣PKxZ<&F8IAR-STR912/examples/I2C/.svn/text-base/91x_it.c.svn-baseUT LjKLjKux ՜ms_73g7VZBN\{+)v2V D`/-C ,u-nG'ލ(}`o/^`/M1Rϣ{;`ǾlYG-zq0A•\v]ݶ$ҷg(F  \!9vV>p#ӌ[[lS`p*,X`/CSGi~x?,t,}7Og7i$1(XM}MfAohXSeC!04W k2EDS5E:1-hTf.SmhI.dS‚ձB-CS% @`T1Ȗhg"M1d@j M˃C ]}2Pa.e TM+=!ehXkTY/H"6Ž<@$MzPEsmʆJ$"*UZ$>5($ aAq"LCtβЗ49 ̈f`I9'N%&KLLN$Ǐ}մj z c/:c;M3aqҺɞ"%k*K{L80Yvkq#x{R ɒUPgdVy9Whq[  gvdגyNp{pU8gtV@Rs׃.hy bFu`W]ry8u\4k = nc$_T^ |Z>/|Z1|sz/讆TT[R;wjKS9ROjKZc^ד}Qy5 P1|KxRW]vbz8wד|Axr \OyyE6ǎĞW]v]9zNs/mѸ󪫸MZ}0'xe# 6<omy}WF̞[}Aw<@x#^uFyoh7'^p0)"b|yT'Z@&Rb{0{E$ &y?Nb[JJ^£1ՎD@MٰtҢ[>B6`p~.5պvgO.)clr^lscːrX~K>@Z_4Y'kIlLV{#񵭣r'hnόy"؉xJsA$<l.TC[t8o rqS4;'xf ܺYsYSJ%T8iDAK~{Fl0#4wffSi,;kW?e쀷#,^3qK?97񄹉GD͸fc)5uXE&88 _xΕ(![ S^X`G' HWoOm2KXdeM?Cfע,]cMј &` 'bf0[v>znv7kf(f<G,9Bd=w%XזfL>QC!B kT֚[s(!kTbyֵ%_`=&-=:jh\OyU|;ʼ+O X`x1xcטE %+I_G_Tb!IPKxZP]m6 M:6 ip-p \s`p6lk[CSs9W}Z.pnuI*{Mۤ:/c\AWl#B[H˶Mpj[|g3F>TzG, ƎU7}- pU͡ld!EdndݓώV A6c ?!B|OvoLؿpOVlOfհ0['8U>:m߿1$ziSp8Y58BHibqqg>"QLGJڒv$sJ='SÞ8o-®uڭєuZi +.4f?{;1gǸv1T[GV>9sO+]#u'%|.T)RD&(">@h-@YFGZο؉ȟ TjQ8-9tG?D0: VC~M%+ƱDZ]|۩GPªd.>gd*]H=MCQ;xWYZ-{QȈ`eiRl'$<`ÔC'LQ@zN9T7Ng4.y;9y8LZ?NS&'pgw0OH΄ fyEhȎ*`Z,֡L"$äQ! IF͸"B2bTJ3:UZ"Dꃊkcy٩I[Z` b*IRdpVM' k .z=c!qB5!o&>ap o41s%Йo6)eE׫4i7 >2pO(cׄx rŌ_Wq[y,a,-Kx$NuɯS( eH?avah%_?8$Q1$jE(˪:bühn=3eo=(DPv#3LXb7Z_2.y@PDYvqeM,_mlTdLdNsᘓÿc_:J`6Dp 4*B=`Nd_ϡ<, sTf&n#Svs0 Ɔ>[w*ڎU]z?y^{AB=!O"hQ?l9k"ȝҢ%!.3n6gƢ4}0:}PKxZ<\ (IAR-STR912/examples/I2C/.svn/all-wcpropsUT LjKLjKux  0"LoQ"`UƜ4m??=A˂nI^eQʠ6Z [hVknL"GX6hnm^`RY}Cߥ jT43z H#!Δ~vȈÈ;FƤr|TA1BL8X;Wm[G\yѫ~'NBloPK xZ<#IAR-STR912/examples/I2C/.svn/props/UT LjKʈKux PK xZ<!IAR-STR912/examples/I2C/.svn/tmp/UT LjKʈKux PK xZ<+IAR-STR912/examples/I2C/.svn/tmp/prop-base/UT LjKʈKux PK xZ<+IAR-STR912/examples/I2C/.svn/tmp/text-base/UT LjKʈKux PK xZ<'IAR-STR912/examples/I2C/.svn/tmp/props/UT LjKʈKux PKxZ<3D/F,֣&)$9é43'E(`lPKxZ@㴦$wf}F$8G9~w'YԪ`,f2n~V(k- R{s i3XUd3D~E _7vXbƝ|P),uDi/qٞ(ZxD{֪[U{7td3T$B!N+!z]ʰ4&tY0i gqZf4#is\,)sotfL 4j oǷP{}I(u8qoF"6M59Ȩ s!!a!|7eACRM{sm1;vv\MUW~Z>'&0'&vOQ_:^%Hd=w,I*młLNpc :il3t1CBeK,4,^^zG4/ voj3i,5ǛsU5FT a\5FxhOKRYSh4Ӑ_)F~ }.ɖg{m!]Lhm/e/Hfkx0B"UG4wZ{}y}! a7201لAg[m KQX՚FiVUh`,EfH#:l[0U h7vϭs~aUvlo=lCs'=feobm@ ,C|{b~8ߚHYz{_'NU@z^nԉox8o}y#r6GǓ gڌ[TOK '6-wRHZ f9V`Ơ_H_]p{nlb׿\ݜ@n qY_n'Tf;Qa }ۚf`> `)"a"R Iw/+K.12$ >Ot8#a>a=J %kJ VIފܘD" DT֩.J잱6Eՠbz7>^ܿ*:q_jLOXr@:A:0W/,wFi9DTis:l.Z6V#pS Y P2pC>ﳗ8&nS|AR*9ӜȽ7J8(s C"Q ZET*e<³}0q >Nt1]V=b2)4ʬnA m7v%˒'t. # Ul wDچٯXMfsD႒]v/PKxZP]m6 M:6 ip-p \s`p6lk[CSs9W}Z.pnuI*{Mۤ:/c\AWl#B[H˶Mpj[|g3F>TzG, ƎU7}- pU͡ld!EdndݓώV A6c ?!B|OvoLؿpOVlOfհ0['8U>:m߿1$ziSp8Y58BHibqqg>"QLGJڒv$sJ='SÞ8o-®uڭєuZi +.4f?{;1gǸv1T[GV>9sO+]#u'%|.T)RD&(">@h-@YFGZο؉ȟ TjQ8-9tG?D0: VC~M%+ƱDZ]|۩GPªd.>gd*]H=MCQ;xWYZ-{QȈ`eiRl'$<`ÔC'LQ@zN9T7Ng4.y;9y8LZ?NS&'pgw0OH΄ fyEhȎ*`Z,֡L"$äQ! IF͸"B2bTJ3:UZ"Dꃊkcy٩I[Z` b*IRdpVM' k .z=c!qB5!o&>ap o41s%Йo6)eE׫4i7 >2pO(cׄx rŌ_Wq[y,a,-Kx$NuɯS( eH?avah%_?8$Q1$jE(˪:bühn=3eo=(DPv#3LXb7Z_2.y@PDYvqeM,_mlTdLdNsᘓÿc_:J`6Dp 4*B=`Nd_ϡ<, sTf&n#Svs0 Ɔ>[w*ڎU]z?y^{AB=!O"hQ?l9k"ȝҢ%!.3n6gƢ4}0:}PKxZ<k"IAR-STR912/examples/I2C/91x_conf.hUT LjKLjKux WMsHrI\Y WFbj`O*,b6xm,ńTe>_~ ȂCĦ.0!~( ,lQӓ3dkA_g(mT]uHȁt#NZ $-XUmRiH;QV2<7Q-!ٳ{c/ Ed_eSxInVEr+?P˒BoZ&X_bRE48{QwaF0MCBx@1S>bgܕvX>, S5^,"$6aШ)1x1OρͶA8Gԣ6€1.<Bc .{$8,BG~ $9#8'S6!(HkێX,[D 87|~$pFmK|P?t-:v',6Q/@QrI=:=U+嫌"&s|ЕB񞞌pK(Bv%b)-K(6P? Xu-˿Z5G5d6GPyۗkxdhKK'Ӗoqd6>zpޢ#>S[ڪ{2Zơ/dhsUX}/`.}u_lPq5zͣ^B+q2\⤑OuϒTRa= mSuXC?錅z*ئb[}ؗ}׊}؟ӈOmv!PKk$)|D\;Lao<~(l|چП6 C/?&c™j5 qhڃh@z#~,ܬi5JV;]oCenrN0d"_f5mw:6ϟ]HG^m'̣PKxZ<&F IAR-STR912/examples/I2C/91x_it.cUT LjKLjKux ՜ms_73g7VZBN\{+)v2V D`/-C ,u-nG'ލ(}`o/^`/M1Rϣ{;`ǾlYG-zq0A•\v]ݶ$ҷg(F  \!9vV>p#ӌ[[lS`p*,X`/CSGi~x?,t,}7Og7i$1(XM}MfAohXSeC!04W k2EDS5E:1-hTf.SmhI.dS‚ձB-CS% @`T1Ȗhg"M1d@j M˃C ]}2Pa.e TM+=!ehXkTY/H"6Ž<@$MzPEsmʆJ$"*UZ$>5($ aAq"LCtβЗ49 ̈f`I9'N%&KLLN$Ǐ}մj z c/:c;M3aqҺɞ"%k*K{L80Yvkq#x{R ɒUPgdVy9Whq[  gvdגyNp{pU8gtV@Rs׃.hy bFu`W]ry8u\4k = nc$_T^ |Z>/|Z1|sz/讆TT[R;wjKS9ROjKZc^ד}Qy5 P1|KxRW]vbz8wד|Axr \OyyE6ǎĞW]v]9zNs/mѸ󪫸MZ}0'xe# 6<omy}WF̞[}Aw<@x#^uFyoh7'^p0)"b|yT'Z@&Rb{0{E$ &y?Nb[JJ^£1ՎD@MٰtҢ[>B6`p~.5պvgO.)clr^lscːrX~K>@Z_4Y'kIlLV{#񵭣r'hnόy"؉xJsA$<l.TC[t8o rqS4;'xf ܺYsYSJ%T8iDAK~{Fl0#4wffSi,;kW?e쀷#,^3qK?97񄹉GD͸fc)5uXE&88 _xΕ(![ S^X`G' HWoOm2KXdeM?Cfע,]cMј &` 'bf0[v>znv7kf(f<G,9Bd=w%XזfL>QC!B kT֚[s(!kTbyֵ%_`=&-=:jh\OyU|;ʼ+O X`x1xcטE %+I_G_Tb!IPK xZ<IAR-STR912/examples/TIM/UT LjKʈKux PK xZ<IAR-STR912/examples/TIM/PWM/UT LjKʈKux PKxZ<:_'IAR-STR912/examples/TIM/PWM/tim_pwm.ewwUT LjKLjKux Q(K-*ϳU23PRHKOKU,׵05T)/..HLNrl RK7$N%<83H%$37bh8>ҙ]l»^L@^Vg Ҕ 3,m(mjЦ(9.ARzm3KJ}|vpa\Kv#9?}\_"~_Vۍ )Il0gT|zJ)w/PKxZʵ(O-A&y<(2u?@*PJ<‡tj;SDbFߴ;>2D/\!d®Q`fcmkyÒf J]3ixvEڗ7\&| bڼq:4$_ /.zgC}hFSc p| By9@r"W~s ؟nQ'SdyiZ*Uf0ω8A\:2 hhY!s3GZy( [k}|2 0L0r T $wNw|-ier &dhc$٬.O=AN2Շğ:fG7.F@|$hPd,˔39E ]2mH}#N* mVRWsT>U_bAXR,vDF0:>M%>Y 20b-E'xً@}(qYl`-}݉:A.,+OE#g !B:(,S4.??^Eq2Cg̣3>vd&Y]GL^4K74EvejM*@'CFy Θ9*X ɜBpTK3nTn  qEpd 5v50Dsȗ-qK)HLP7N!2GěQOzƹiI8+w>aR ($K=Nj8:ᣥb>wr!,VdY&K/*iйsRWeMpCy%/zZ[49.'5O"#ũ.s8g:,Iv:<>]3JncXc$ j^v3PXtMJD"ȟ~b~=#y5c&1;#yc?Dw>>Y_c Mszc@^[ҋ+o6(ve 8H|;l{)e$pfg[ n>z{#˜vj( $i c]5;Z0NnH40ÝFjrTmRP)ܛ1%LC8%՞ |?DO˚fN>9B2dt$H%2/WPYަuZgK9 M}B6wG m݌̒K(]'g5 mSh?p{iJ[}Ne\uJ7im*[<}_G3<9c0vc>/H~yw_s{N,3'!}4O}9 RDq .RWx:ί BoHQ(j%;M ;ȯ&X"٫pN ut{W%}$ Η^w˽pQqhy(m9*wPubB X쉒 /|:V'̾4z$ rPwCHE/vC-il. }4A\Z]*l5qq: CkxmTQ *a_v=0Ym]MR*H{d6!,Cs!zװLkEDʠz802rLM)%QeH8IPP6ު̘ eG5+1xo:ɠA04A>#N|FrθA q+sga+"xVd?:K̜9$6̤/Jp4Pg)&mc=D؋cPCD@qFp cB0]E=bqӋ46` M"kÚsDh8ag$arq߽hJq:h(1A R/LL4>]+I%3d8QxF!ŠoCK /Loa5+0>(et]E<0õڴK PI0 ig3h#MĜmOݬ]Cgg!A%`1hBYQGgXu-]1gL2)AY\PܮIJb<ͦک^{bZxE}WzQ)̱3`'tWq @ž N>I}J܌٭! p@, G$ouA&h6W:NFxnDOJPTDV.Ljͮkg_X#"݇m(zRc{PPm1(2Tط qcݩ;TZ1ap3zFbP `vKC ȥZEf(!K04Hf_?VANd-@UIoW8&n|^q%hd66r reNک`ھO}aeKYYU% tèS45~N9ݻnAfhPnc\#8˗/o pfl\V@!:ͧ_} 8K㢼MSiϙ_gx8 8u_M}VtnB-M&RmXֆ%Ht.V:sUh;nCOTŎV){4B~PwPKxZ<~>IAR-STR912/examples/TIM/PWM/.svn/text-base/Readme.txt.svn-baseUT LjKLjKux Un0 ? R 4#=RNS،MĒ +NҤ)Ovgvv] ^9.zQq>bh8>ҙ]l»^L@^Vg Ҕ 3,m(mjЦ(9.ARzm3KJ}|vpa\Kv#9?}\_"~_Vۍ )Il0gT|zJ)w/PKxZIAR-STR912/examples/TIM/PWM/.svn/text-base/91x_conf.h.svn-baseUT LjKLjKux WMs6{agrIJ*|c'g0ʗl%antV'!`B@] |yYJݬHZkFغ؟[ZeV ׳*nHv~Xe (M8G/^JzUQ(7Bm&Xc0YBI4$fpqO`0NKB  "BNH<F O.v60<> RRJVet3(tW:ҨE%a:V"TQEvR X]7bz4$vBZ18<6QX ѳV*!eR yWQE)CS/n4<+Z@SUܤ r j!@ȅɺa"Sp=@獄B-ƒ=C;\-D 8]dxDYFgR`ZfeQ-F1Y+3>*E֙AciY{I%AU6G˘4@EC ~#| :AFܮAU39͵q x/qI 9.ٲ?>1ZÉ~t8ԫ*>}}Z?!c>0IhJ#i<3P7(Nl|y(GM||7My$cՋM0@H8#HIL+NzMd!%8 !Ԅ$!@#%1 Ǔ8b^ D1S c0rPDGd;8J3OBrF>p ^:OX=840G7tܞ0?j=40T1i #NXD}4P/l0)$Eh̗ ~>;dMnsq`~5n֯Tu}>i^+ٴO”VDU)Gب͞DF/;BwU1n?t@-5Ca7BHPJ*ǰohl;g*syǰ#vnT9yç3 uZߟxF^Q+w][.w;mT$L$|>w> wgnm{:K~h^8K]t<~۹A?Soʛ vQ;w_$ez?$=ȇM]{$;um{N=܄lnRﺶqID6F.|G6:g6F.|˧6l:Z&-v(9Z,y'M'=ּVI~˷=ּV;K.M]'umMǹ0um\g}b[_xſoy59xm0kr#V0?DxMmKdt~f݄ uo2|' zPKxZʵ(O-A&y<(2u?@*PJ<‡tj;SDbFߴ;>2D/\!d®Q`fcmkyÒf J]3ixvEڗ7\&| bڼq:4$_ /.zgC}hFSc p| By9@r"W~s ؟nQ'SdyiZ*Uf0ω8A\:2 hhY!s3GZy( [k}|2 0L0r T $wNw|-ier &dhc$٬.O=AN2Շğ:fG7.F@|$hPd,˔39E ]2mH}#N* mVRWsT>U_bAXR,vDF0:>M%>Y 20b-E'xً@}(qYl`-}݉:A.,+OE#g !B:(,S4.??^Eq2Cg̣3>vd&Y]GL^4K74EvejM*@'CFy Θ9*X ɜBpTK3nTn  qEpd 5v50Dsȗ-qK)HLP7N!2GěQOzƹiI8+w>aR ($K=Nj8:ᣥb>wr!,VdY&K/*iйsRWeMpCy%/zZ[49.'5O"#ũ.s8g:,Iv:<>]3JncXc$ j^v3PXtMJD"ȟ~b~=#y5c&1;#yc?Dw>>Y_c Mszc@^[ҋ+o6(ve 8H|;l{)e$pfg[ n>z{#˜vj( $i c]5;Z0NnH40ÝFjrTmRP)ܛ1%֔M-M{oຠcag!1;W]zQn(>WM9k"z;x߅yrv70G9tL;涹+grN; iaє0u ̓u )mARV&!͊ T Ұ>"X^VEKm*2pC!7p 0#2˩ 9$6CT~{#g a%$$Gn؝.RW~JuMur뛢i}S[t/-S Xa|>4u+Bm.aKBߣjtuZM>;G{m7HNN#Eӕk_|ss] ]_8UZD~zv?3ςvdDQ^V뛡U u]{5ua4&Dl{?wka3*֙ꅲ5x\|]eEk#mu&+vbX'Mhr,7 R'x~Y$2ސ~#̵%;6kg̿PKxZ<ȡK,,IAR-STR912/examples/TIM/PWM/.svn/all-wcpropsUT LjKLjKux  @֔M-M{oຠcag!1;W]zQn(>WM9k"z;x߅yrv70G9tL;涹+grN; iaє0u ̓u )mARV&!͊ T Ұ>"X^VEKm*2pC!7p 0#2˩ 9$6CT~{#g a%$$Gn؝.RW~JuMur뛢i}S[t/-S Xa|>4u+Bm.aKBߣjtuZM>;G{m7HNN#Eӕk_|ss] ]_8UZD~zv?3ςvdDQ^V뛡U u]{5ua4&Dl{?wka3*֙ꅲ5x\|]eEk#mu&+vbX'Mhr,7 R'x~Y$2ސ~#̵%;6kg̿PKxZJ*|c'g0ʗl%antV'!`B@] |yYJݬHZkFغ؟[ZeV ׳*nHv~Xe (M8G/^JzUQ(7Bm&Xc0YBI4$fpqO`0NKB  "BNH<F O.v60<> RRJVet3(tW:ҨE%a:V"TQEvR X]7bz4$vBZ18<6QX ѳV*!eR yWQE)CS/n4<+Z@SUܤ r j!@ȅɺa"Sp=@獄B-ƒ=C;\-D 8]dxDYFgR`ZfeQ-F1Y+3>*E֙AciY{I%AU6G˘4@EC ~#| :AFܮAU39͵q x/qI 9.ٲ?>1ZÉ~t8ԫ*>}}Z?!c>0IhJ#i<3P7(Nl|y(GM||7My$cՋM0@H8#HIL+NzMd!%8 !Ԅ$!@#%1 Ǔ8b^ D1S c0rPDGd;8J3OBrF>p ^:OX=840G7tܞ0?j=40T1i #NXD}4P/l0)$Eh̗ ~>;dMnsq`~5n֯Tu}>i^+ٴO”VDU)Gب͞DF/;BwU1n?t@-5Ca7BHPJ*ǰohl;g*syǰ#vnT9yç3 uZߟxF^Q+w][.w;mT$L$|>w> wgnm{:K~h^8K]t<~۹A?Soʛ vQ;w_$ez?$=ȇM]{$;um{N=܄lnRﺶqID6F.|G6:g6F.|˧6l:Z&-v(9Z,y'M'=ּVI~˷=ּV;K.M]'umMǹ0um\g}b[_xſoy59xm0kr#V0?DxMmKdt~f݄ uo2|' zPKxZ<էqiL'IAR-STR912/examples/TIM/PWM/tim_pwm.ewpUT LjKLjKux \mo۶Bon-uPjdž@hDj8[vCQ.:^(><9c0vc>/H~yw_s{N,3'!}4O}9 RDq .RWx:ί BoHQ(j%;M ;ȯ&X"٫pN ut{W%}$ Η^w˽pQqhy(m9*wPubB X쉒 /|:V'̾4z$ rPwCHE/vC-il. }4A\Z]*l5qq: CkxmTQ *a_v=0Ym]MR*H{d6!,Cs!zװLkEDʠz802rLM)%QeH8IPP6ު̘ eG5+1xo:ɠA04A>#N|FrθA q+sga+"xVd?:K̜9$6̤/Jp4Pg)&mc=D؋cPCD@qFp cB0]E=bqӋ46` M"kÚsDh8ag$arq߽hJq:h(1A R/LL4>]+I%3d8QxF!ŠoCK /Loa5+0>(et]E<0õڴK PI0 ig3h#MĜmOݬ]Cgg!A%`1hBYQGgXu-]1gL2)AY\PܮIJb<ͦک^{bZxE}WzQ)̱3`'tWq @ž N>I}J܌٭! p@, G$ouA&h6W:NFxnDOJPTDV.Ljͮkg_X#"݇m(zRc{PPm1(2Tط qcݩ;TZ1ap3zFbP `vKC ȥZEf(!K04Hf_?VANd-@UIoW8&n|^q%hd66r reNک`ھO}aeKYYU% tèS45~N9ݻnAfhPnc\#8˗/o pfl\V@!:ͧ_} 8K㢼MSiϙ_gx8 8u_M}VtnB-M&RmXֆ%Ht.V:sUh;nCOTŎV){4B~PwPK xZ< IAR-STR912/examples/TIM/OPM-PWM/UT LjKʈKux PKxZ<*8*IAR-STR912/examples/TIM/OPM-PWM/Readme.txtUT LjKLjKux UMo8 cScۮ=(mЇK |Zc(*~g$N[a.Ogޛ7x‚wf'j-a>ԪP{kJ[uԅ8+RM싥۵kB3 JJ2Դxv*i/mʴzjF7=ɉf@KV6 7/R֭~A{nnؿu?(kRKH|5SX&V[x xt愜`l"(ٓδ3lY/ INfW=fe5*ΐi2 ^ŶjtvP6dqaBEסWy[]@}xQ>TYѷ:6Njɪʶuy<BdGuLW0>#Mgx04A!Ʊ1]c*/p<8Ip,IAR-STR912/examples/TIM/OPM-PWM/.svn/entriesUT LjKLjKux Oo0 BmE){Vd2zV|[Q`7c; !(A4,(%^J]y^Kr]"rvջr)E]Yӏn>RƵ{th^oaϼv}i<}[Q|Q(a'mKHYh{y=-4m~GSM?SЉ"F9 xRE>Ӵ+/PK xZ</IAR-STR912/examples/TIM/OPM-PWM/.svn/prop-base/UT LjKʈKux PK xZ</IAR-STR912/examples/TIM/OPM-PWM/.svn/text-base/UT LjKʈKux PKxZʵ(O-A&y<(2u?@*PJ<‡tj;SDbFߴ;>2D/\!d®Q`fcmkyÒf J]3ixvEڗ7\&| bڼq:4$_ /.zgC}hFSc p| By9@r"W~s ؟nQ'SdyiZ*Uf0ω8A\:2 hhY!s3GZy( [k}|2 0L0r T $wNw|-ier &dhc$٬.O=AN2Շğ:fG7.F@|$hPd,˔39E ]2mH}#N* mVRWsT>U_bAXR,vDF0:>M%>Y 20b-E'xً@}(qYl`-}݉:A.,+OE#g !B:(,S4.??^Eq2Cg̣3>vd&Y]GL^4K74EvejM*@'CFy Θ9*X ɜBpTK3nTn  qEpd 5v50Dsȗ-qK)HLP7N!2GěQOzƹiI8+w>aR ($K=Nj8:ᣥb>wr!,VdY&K/*iйsRWeMpCy%/zZ[49.'5O"#ũ.s8g:,Iv:<>]3JncXc$ j^v3PXtMJD"ȟ~b~=#y5c&1;#yc?Dw>>Y_c Mszc@^[ҋ+o6(ve 8H|;l{)e$pfg[ n>z{#˜vj( $i c]5;Z0NnH40ÝFjrTmRP)ܛ1%ԪP{kJ[uԅ8+RM싥۵kB3 JJ2Դxv*i/mʴzjF7=ɉf@KV6 7/R֭~A{nnؿu?(kRKH|5SX&V[x xt愜`l"(ٓδ3lY/ INfW=fe5*ΐi2 ^ŶjtvP6dqaBEסWy[]@}xQ>TYѷ:6Njɪʶuy<BdGuLW0>#Mgx04A!Ʊ1]c*/p<8Ip]ʛ2!=9C6ƖX`Z{.t~|VHfmúaV(WMl*0# ђf1nI1.Խe 2{8ǭCs Qߊ=D/![5X,`M%fv1 z]ܻ74}tzXhO!g~̭)nύWm[b1q_> 9y}s4JBk̋VՖ?-Qw'NJO7OleZ ~QDY:]C/XlЯ{>|]>I1x2z~yxbeؗ^͍޲6KQ4:a8y`M\9ǧj=>s!zװL-*Lx16ҧx(j-EqV uh`,efH(]GFxg"(ơ  Jc#̷a.Đ<+6az*lESztCiL*Gu;v+Rl.C4񗌽Y:&0D: dgN0&47hHCks $v<`Mh&pJ*n;݋d~hyGDy jFzaRfuƞ& &'&Q'ZI,!k4a <Zjxar| YlF)xE*j K:\ۺoL  Xt.c ѝz6n&l#ܯurv !@Š1dED.RyI]cYtSƜ1Q Ƞ ef#pAqˮ8jzH k  m[vTQe R%jS9cgNBW讣 ,}w=4|$[GCXH@uA&h6W:^N?GxnDOJPTDV.Lbͮkg_XD 0ӻP2Ǵl7-bP-HeϱocOjǘSw=2 cg0zBbP `dvKC ȥZEf(!K04Hf=TAN_y#@BT9ܽb9Sso> sAin c{",3;!R({'Jα,,JptSPh0 ͹U h]RÁL IPR@4K*2G޲APHQoEW\'7_PKH'H#I'A.uoo^a{NU ՔotsEh^M8FŽAZpd-@YUdiqɎoW8&nc|^q%hd5g6ݵ dNډ`ھO}aee C^:|ADXc?=!&`p6KjÒO!Vc,]UiuJ#6,-h{mCOTŞVw){t=$%PKxZJ*|c'g0ʗl%antV'!`B@] |yYJݬHZkFغ؟[ZeV ׳*nHv~Xe (M8G/^JzUQ(7Bm&Xc0YBI4$fpqO`0NKB  "BNH<F O.v60<> RRJVet3(tW:ҨE%a:V"TQEvR X]7bz4$vBZ18<6QX ѳV*!eR yWQE)CS/n4<+Z@SUܤ r j!@ȅɺa"Sp=@獄B-ƒ=C;\-D 8]dxDYFgR`ZfeQ-F1Y+3>*E֙AciY{I%AU6G˘4@EC ~#| :AFܮAU39͵q x/qI 9.ٲ?>1ZÉ~t8ԫ*>}}Z?!c>0IhJ#i<3P7(Nl|y(GM||7My$cՋM0@H8#HIL+NzMd!%8 !Ԅ$!@#%1 Ǔ8b^ D1S c0rPDGd;8J3OBrF>p ^:OX=840G7tܞ0?j=40T1i #NXD}4P/l0)$Eh̗ ~>;dMnsq`~5n֯Tu}>i^+ٴO”VDU)Gب͞DF/;BwU1n?t@-5Ca7BHPJ*ǰohl;g*syǰ#vnT9yç3 uZߟxF^Q+w][.w;mT$L$|>w> wgnm{:K~h^8K]t<~۹A?Soʛ vQ;w_$ez?$=ȇM]{$;um{N=܄lnRﺶqID6F.|G6:g6F.|˧6l:Z&-v(9Z,y'M'=ּVI~˷=ּV;K.M]'umMǹ0um\g}b[_xſoy59xm0kr#V0?DxMmKdt~f݄ uo2|' zPKxZIAR-STR912/examples/TIM/OPM-PWM/.svn/text-base/main.c.svn-baseUT LjKLjKux XYoH ~@")v7 Hc[X]+ $(8T i_rFQMi ɏ9IݖG1XanW#G|\y&%l3=9=cz=JZzfBF+?q4d,dn׏2`,Sw k߀n9!x-r`sXܵ r#s!`= QJ& +9y%CGvtBek!Cݶ"b0d _LB V'e:Enan;*r!VaVH!! C8¤-rfG n" d)n|nĀI䞋H,Ig+sxAV8'_Pxw1N/u˜O%-"(g 日+ćmD7*4Fv'z\a8<YU[8؁d E|aНW|9T``UuQv(8uURpLw)x݅Y%8zo:abJ/ɮF wGRʳ(v 017=j7c/4/8:F8q RNgti4R"-#)D+bn ?M1\PeawVHRY+esv̥QeHTSt&lBZK/]:"J">2O#kɼJ<͵aIj @R5diNY`MngOv7hO#ٕդ~oY-;ew}v(ꆗКn׌fKkAϱ_~{EF1Upn*dosyvaƽggFz㕭XR+⮶%g3foU4ՂY]0֎ ¿v; zh#./v+ʾЄ/p')}ic?4C3OMca{OUIj/>V㦉`]:V ^e nȖc(14#=֏Y{6ˆ)ߓAƖ돢MVLbfX.{zYG:m})?h_uS\sM-5PKxZE=Vz aIcэ$S)0S}Mo -iJa:#rE~R"J ´@ sQK ֡uBo(W38t !rWI7 NSa=Њwd]$F9l! g6VC -7nw1S`RuPvyPK xZ<+IAR-STR912/examples/TIM/OPM-PWM/.svn/props/UT LjKʈKux PK xZ<)IAR-STR912/examples/TIM/OPM-PWM/.svn/tmp/UT LjKʈKux PK xZ<3IAR-STR912/examples/TIM/OPM-PWM/.svn/tmp/prop-base/UT LjKʈKux PK xZ<3IAR-STR912/examples/TIM/OPM-PWM/.svn/tmp/text-base/UT LjKʈKux PK xZ</IAR-STR912/examples/TIM/OPM-PWM/.svn/tmp/props/UT LjKʈKux PKxZʵ(O-A&y<(2u?@*PJ<‡tj;SDbFߴ;>2D/\!d®Q`fcmkyÒf J]3ixvEڗ7\&| bڼq:4$_ /.zgC}hFSc p| By9@r"W~s ؟nQ'SdyiZ*Uf0ω8A\:2 hhY!s3GZy( [k}|2 0L0r T $wNw|-ier &dhc$٬.O=AN2Շğ:fG7.F@|$hPd,˔39E ]2mH}#N* mVRWsT>U_bAXR,vDF0:>M%>Y 20b-E'xً@}(qYl`-}݉:A.,+OE#g !B:(,S4.??^Eq2Cg̣3>vd&Y]GL^4K74EvejM*@'CFy Θ9*X ɜBpTK3nTn  qEpd 5v50Dsȗ-qK)HLP7N!2GěQOzƹiI8+w>aR ($K=Nj8:ᣥb>wr!,VdY&K/*iйsRWeMpCy%/zZ[49.'5O"#ũ.s8g:,Iv:<>]3JncXc$ j^v3PXtMJD"ȟ~b~=#y5c&1;#yc?Dw>>Y_c Mszc@^[ҋ+o6(ve 8H|;l{)e$pfg[ n>z{#˜vj( $i c]5;Z0NnH40ÝFjrTmRP)ܛ1%]ʛ2!=9C6ƖX`Z{.t~|VHfmúaV(WMl*0# ђf1nI1.Խe 2{8ǭCs Qߊ=D/![5X,`M%fv1 z]ܻ74}tzXhO!g~̭)nύWm[b1q_> 9y}s4JBk̋VՖ?-Qw'NJO7OleZ ~QDY:]C/XlЯ{>|]>I1x2z~yxbeؗ^͍޲6KQ4:a8y`M\9ǧj=>s!zװL-*Lx16ҧx(j-EqV uh`,efH(]GFxg"(ơ  Jc#̷a.Đ<+6az*lESztCiL*Gu;v+Rl.C4񗌽Y:&0D: dgN0&47hHCks $v<`Mh&pJ*n;݋d~hyGDy jFzaRfuƞ& &'&Q'ZI,!k4a <Zjxar| YlF)xE*j K:\ۺoL  Xt.c ѝz6n&l#ܯurv !@Š1dED.RyI]cYtSƜ1Q Ƞ ef#pAqˮ8jzH k  m[vTQe R%jS9cgNBW讣 ,}w=4|$[GCXH@uA&h6W:^N?GxnDOJPTDV.Lbͮkg_XD 0ӻP2Ǵl7-bP-HeϱocOjǘSw=2 cg0zBbP `dvKC ȥZEf(!K04Hf=TAN_y#@BT9ܽb9Sso> sAin c{",3;!R({'Jα,,JptSPh0 ͹U h]RÁL IPR@4K*2G޲APHQoEW\'7_PKH'H#I'A.uoo^a{NU ՔotsEh^M8FŽAZpd-@YUdiqɎoW8&nc|^q%hd5g6ݵ dNډ`ھO}aee C^:|ADXc?=!&`p6KjÒO!Vc,]UiuJ#6,-h{mCOTŞVw){t=$%PKxZ9=cz=JZzfBF+?q4d,dn׏2`,Sw k߀n9!x-r`sXܵ r#s!`= QJ& +9y%CGvtBek!Cݶ"b0d _LB V'e:Enan;*r!VaVH!! C8¤-rfG n" d)n|nĀI䞋H,Ig+sxAV8'_Pxw1N/u˜O%-"(g 日+ćmD7*4Fv'z\a8<YU[8؁d E|aНW|9T``UuQv(8uURpLw)x݅Y%8zo:abJ/ɮF wGRʳ(v 017=j7c/4/8:F8q RNgti4R"-#)D+bn ?M1\PeawVHRY+esv̥QeHTSt&lBZK/]:"J">2O#kɼJ<͵aIj @R5diNY`MngOv7hO#ٕդ~oY-;ew}v(ꆗКn׌fKkAϱ_~{EF1Upn*dosyvaƽggFz㕭XR+⮶%g3foU4ՂY]0֎ ¿v; zh#./v+ʾЄ/p')}ic?4C3OMca{OUIj/>V㦉`]:V ^e nȖc(14#=֏Y{6ˆ)ߓAƖ돢MVLbfX.{zYG:m})?h_uS\sM-5PKxZJ*|c'g0ʗl%antV'!`B@] |yYJݬHZkFغ؟[ZeV ׳*nHv~Xe (M8G/^JzUQ(7Bm&Xc0YBI4$fpqO`0NKB  "BNH<F O.v60<> RRJVet3(tW:ҨE%a:V"TQEvR X]7bz4$vBZ18<6QX ѳV*!eR yWQE)CS/n4<+Z@SUܤ r j!@ȅɺa"Sp=@獄B-ƒ=C;\-D 8]dxDYFgR`ZfeQ-F1Y+3>*E֙AciY{I%AU6G˘4@EC ~#| :AFܮAU39͵q x/qI 9.ٲ?>1ZÉ~t8ԫ*>}}Z?!c>0IhJ#i<3P7(Nl|y(GM||7My$cՋM0@H8#HIL+NzMd!%8 !Ԅ$!@#%1 Ǔ8b^ D1S c0rPDGd;8J3OBrF>p ^:OX=840G7tܞ0?j=40T1i #NXD}4P/l0)$Eh̗ ~>;dMnsq`~5n֯Tu}>i^+ٴO”VDU)Gب͞DF/;BwU1n?t@-5Ca7BHPJ*ǰohl;g*syǰ#vnT9yç3 uZߟxF^Q+w][.w;mT$L$|>w> wgnm{:K~h^8K]t<~۹A?Soʛ vQ;w_$ez?$=ȇM]{$;um{N=܄lnRﺶqID6F.|G6:g6F.|˧6l:Z&-v(9Z,y'M'=ּVI~˷=ּV;K.M]'umMǹ0um\g}b[_xſoy59xm0kr#V0?DxMmKdt~f݄ uo2|' zPK yZ<IAR-STR912/examples/TIM/.svn/UT LjKʈKux PKxZ< Ye$IAR-STR912/examples/TIM/.svn/entriesUT LjKLjKux ?0Jk lD$&nҴE7].tgp )ȏk8"Cϝ&s<<_jm\HN=yެ0K" &FBa!(StTpޑ1gï@(irDL5eyKJjW_X*7=PK xZ<'IAR-STR912/examples/TIM/.svn/prop-base/UT LjKʈKux PK xZ<'IAR-STR912/examples/TIM/.svn/text-base/UT LjKʈKux PKxZ<-mo(IAR-STR912/examples/TIM/.svn/all-wcpropsUT LjKLjKux V02*.˳*O*JOI,*K-*-- S07'+ELKJ rKr=tC, S+s rRC<}\\PK xZ<#IAR-STR912/examples/TIM/.svn/props/UT LjKʈKux PK xZ<!IAR-STR912/examples/TIM/.svn/tmp/UT LjKʈKux PK xZ<+IAR-STR912/examples/TIM/.svn/tmp/prop-base/UT LjKʈKux PK xZ<+IAR-STR912/examples/TIM/.svn/tmp/text-base/UT LjKʈKux PK xZ<'IAR-STR912/examples/TIM/.svn/tmp/props/UT LjKʈKux PK xZ<IAR-STR912/examples/UART/UT LjKʈKux PKxZ<Y)L!IAR-STR912/examples/UART/uart.ewpUT LjKLjKux \mo6BoX xiʱa;0hʤFQ_#%-솢 s@_ޑ<=m% agF뙅B_?s n,3#ˊkw۷*gtF”#Q<-+8P Ȧ D$iB!N+!P[~ق]@z,mi4N<-lTjD9.uE֌R;vSqZF5[}}I(8sgN"u59L G>]ʛ2!=9C6cY;.f*i:?hL>+"Sa0+&ϐ_ZN%hId=4*mFLNscf!X쥺lsfCBeK,Нñ,_^};\s};ɊNnsi2,H}5ǛsUFP"F0.ˇs_7ڭFqq=C2OGijӒ_)F~[v]b-ϼyjm>F]V0l+z }0D0M÷Fc+ԗc_<đ[X$MtwCc!8Q ۺ#ǹ3BOL{}8!a0720[,0%ULȠ16ңx(j-CI²V $uh`F,efH([Gxg"( ǡ  Ic)o(]7! Vze.̂,`eU,ϓ)죯SztiL*G}8sL)mJix e&0jֲHHq0'S1 Clv( M/%4] k:ωr=گ㴆 1ʋkN.o^EU2iyGӌIQ jFQZfuƎ& &'&7S'Z]̐{5K*"hշ)5f7#0-@G(NuBҸȯ@ǯSk#.+w/}0&{ 'i%~Zeu9Z_Q!mKۓOPwVPl$mUk}a+Vmv5eE%#[ԗ/PKxZ0;d$`%q)S/ !30 BBGYgE"( ~c fm 0i!r0] K)I+9D'qO #iﻔ`0Fl Y+_cQcBI$1{!([v@:PͷOeb^k,[Kŵm#^r#\ vSrXl+Zt[ m.e L. hD7={oMmȢ FVORxV3e%*f-A-|Cd09$b[i1:}bx͟sk٥B*&'ŵ-B>ngD?/ Ȳ-{TAWXRw9<(C(', |4dQ5HA͵4[:mPo`0 !ͩL\Vj4R;6-f{9) n!E8FHE<ݎ/|>V96(O"BswW T'MoImm0|x)t;%;ܓKY^"{Cژ9B?6KyrQbI:4% a6B6GWqeђw7VvqMlždF~m]q%,l?En=20a:w_ n7>4ט9ܵҖHD~x ʱYF&:Ij0ʵ(O-A&y<(2u?@*PJ<‡tj;SDbFߴ;>2D/\!d®Q`fcmkyÒf J]3ixvEڗ7\&| bڼq:4$_ /.zgC}hFSc p| By9@r"W~s ؟nQ'SdyiZ*Uf0ω8A\:2 hhY!s3GZy( [k}|2 0L0r T $wNw|-ier &dhc$٬.O=AN2Շğ:fG7.F@|$hPd,˔39E ]2mH}#N* mVRWsT>U_bAXR,[feHI B,ȭGXJ]PPd 1L#|trpވ׽ԇ5vҧܟx’"T]>rb-҉*1ŊHJ[: ~/3ؑ gw1{,s 4ٟ '.*8c `?*0C*&s3 uD~(R ͬ2IsYʟ;xCUÑ1pt(d͙H"_VPoC&mqW(`JʛuXSҊMAYͨY=ܴD;1IaЪ ABs>ZJ*9+GbHEa"f")~;g*5x5Y'1zWG[ O#R|B[/+=R2#ÒT(k's^;65FjKeW ?9 UEפQJ.yj(jޣ1W8fþ39Sta|54g7-|a(f#i;QfثЌGx˾vimq(RF) g5m v_鐭7"!i&>Q/Ov0V^]| IZ(Hs >i&HՖ!I>BʽSs/l gržw嗭ڛPK yZ<IAR-STR912/examples/UART/.svn/UT LjKʈKux PKxZqVB{`i)ou^!6+ND!GB@N:FhID@fpQ֎U'WӍ(ؤ4t&-%> jX|644QӶΒSj)b~4-u@+˅)JkAC;iIv)[G`PdH&kex-cPK xZ<(IAR-STR912/examples/UART/.svn/prop-base/UT LjKʈKux PK xZ<(IAR-STR912/examples/UART/.svn/text-base/UT LjKʈKux PKxZʵ(O-A&y<(2u?@*PJ<‡tj;SDbFߴ;>2D/\!d®Q`fcmkyÒf J]3ixvEڗ7\&| bڼq:4$_ /.zgC}hFSc p| By9@r"W~s ؟nQ'SdyiZ*Uf0ω8A\:2 hhY!s3GZy( [k}|2 0L0r T $wNw|-ier &dhc$٬.O=AN2Շğ:fG7.F@|$hPd,˔39E ]2mH}#N* mVRWsT>U_bAXR,[feHI B,ȭGXJ]PPd 1L#|trpވ׽ԇ5vҧܟx’"T]>rb-҉*1ŊHJ[: ~/3ؑ gw1{,s 4ٟ '.*8c `?*0C*&s3 uD~(R ͬ2IsYʟ;xCUÑ1pt(d͙H"_VPoC&mqW(`JʛuXSҊMAYͨY=ܴD;1IaЪ ABs>ZJ*9+GbHEa"f")~;g*5x5Y'1zWG[ O#R|B[/+=R2#ÒT(k's^;65FjKeW ?9 UEפQJ.yj(jޣ1W8fþ39Sta|54g7-|a(f#i;QfثЌGx˾vimq(RF) g5m v_鐭7"!i&>Q/Ov0V^]| IZ(Hs >i&HՖ!I>BʽSs/l gržw嗭ڛPKxZ<`9IAR-STR912/examples/UART/.svn/text-base/uart.dep.svn-baseUT LjKLjKux Xn@ow:PJ^1ެHt!4wQ9 go@\-]!CJw x6#o@!մf6+cGt\j(^n;ߐ, Zm\{C XM7=k=gF~'D>d2n^Gi?HR 1 lgҁGXׂØ9,-I A P$!V m" qѬA$aܔF]IZXڸTƑ'L?Zs[?n &<8..qW/p0k\׎aPUg Y[Vt9읬Gifҭc7vF~PrV:t~ͻ:vC@@=M&YKja]#L.ɘfT8ln%1Ls<}1{Njq$DyR%} q׹hhneb3`ט2U8kP[ wU9{:ʘzrg(""nW˶Y5=$uc0˝6IY8My@uG8P Ȧ D$iB!N+!P[~ق]@z,mi4N<-lTjD9.uE֌R;vSqZF5[}}I(8sgN"u59L G>]ʛ2!=9C6cY;.f*i:?hL>+"Sa0+&ϐ_ZN%hId=4*mFLNscf!X쥺lsfCBeK,Нñ,_^};\s};ɊNnsi2,H}5ǛsUFP"F0.ˇs_7ڭFqq=C2OGijӒ_)F~[v]b-ϼyjm>F]V0l+z }0D0M÷Fc+ԗc_<đ[X$MtwCc!8Q ۺ#ǹ3BOL{}8!a0720[,0%ULȠ16ңx(j-CI²V $uh`F,efH([Gxg"( ǡ  Ic)o(]7! Vze.̂,`eU,ϓ)죯SztiL*G}8sL)mJix e&0jֲHHq0'S1 Clv( M/%4] k:ωr=گ㴆 1ʋkN.o^EU2iyGӌIQ jFQZfuƎ& &'&7S'Z]̐{5K*"hշ)5f7#0-@G(NuBҸȯ@ǯSk#.+w/}0&{ 'i%~Zeu9Z_Q!mKۓOPwVPl$mUk}a+Vmv5eE%#[ԗ/PKxZ<Ɲ- ;IAR-STR912/examples/UART/.svn/text-base/Readme.txt.svn-baseUT LjKLjKux VmoFo\ӻDMةmFT-x zB}gv$=zR3/KNƧ0v;`xq3L.X*li&RṆD=bHkZix\lWׅ\r#U%)tiZeo]ý Y z@4K-kZY {I /B zh2Qz{MpH?<~6NoiwIQi<$)O03ߋQeh3E0Y< =ld,B󙗱8${YB|q d1}=>0;d$`%q)S/ !30 BBGYgE"( ~c fm 0i!r0] K)I+9D'qO #iﻔ`0Fl Y+_cQcBI$1{!([v@:PͷOeb^k,[Kŵm#^r#\ vSrXl+Zt[ m.e L. hD7={oMmȢ FVORxV3e%*f-A-|Cd09$b[i1:}bx͟sk٥B*&'ŵ-B>ngD?/ Ȳ-{TAWXRw9<(C(', |4dQ5HA͵4[:mPo`0 !ͩL\Vj4R;6-f{9) n!E8FHE<ݎ/|>V96(O"BswW T'MoImm0|x)t;%;ܓKY^"{Cژ9B?6KyrQbI:4% a6B6GWqeђw7VvqMlždF~m]q%,l?En=20a:w_ n7>4ט9ܵҖHD~x ʱYF&:Ij0J*|c'a/%DJn',gB6cY<=-YVeBf+EZh9Wdr`4*>US#S*^@TM3 u]V/778B⿛_}]*>IB9x$HBg(N`2D.8 2EcpS.&7axH#H$D{+8 N<4[ oxj4H∹OXOFm$ItKs"8wH ɘP&HT(7h00Ji* oFSlڮ$ BQu #Z Ym #AXD=PBIE[Ev6EvOD}b.0WM)AS^Hzz2*ṬA^fr.乜,j%,|΋/Tjm`>|Uv"hKxlˎ+fE!Vr8].EqC!x:̊oQ}K/qԔ-uҾRH5JaW :t`nxz!EԠa[Î5|K _iZ5ɸDO!(]8섐h %i5R^Q5hiְcnl"OaD}RޓT{ (ŜU!Uǖn8Јvϋ~#UðpD˺Ζ,f/WHx>L{sq\ZY5ר;u O.v60<> RRJVet3(tW:ҨE%a:V"TQEvR X]7bz4$vBZ18<6QX ѳV*!eR yWQE)CS/n4<+Z@SUܤ r j!@ȅɺa"Sp=@獄B-ƒ=C;\-D 8]dxDYFgR`ZfeQ-F1Y+3>*E֙AciY{I%AU6G˘4@EC ~#| :AFܮAU39͵q x/qI 9.ٲ?>1ZÉ~t8ԫ*>}}Z?!c>0IhJ#i<3P7(Nl|y(GM||7My$cՋM0@H8#HIL+NzMd!%8 !Ԅ$!@#%1 Ǔ8b^ D1S c0rPDGd;8J3OBrF>p ^:OX=840G7tܞ0?j=40T1i #NXD}4P/l0)$Eh̗ ~>;dMnsq`~5n֯Tu}>i^+ٴO”VDU)Gب͞DF/;BwU1n?t@-5Ca7BHPJ*ǰohl;g*syǰ#vnT9yç3 uZߟxF^Q+w][.w;mT$L$|>w> wgnm{:K~h^8K]t<~۹A?Soʛ vQ;w_$ez?$=ȇM]{$;um{N=܄lnRﺶqID6F.|G6:g6F.|˧6l:Z&-v(9Z,y'M'=ּVI~˷=ּV;K.M]'umMǹ0um\g}b[_xſoy59xm0kr#V0?DxMmKdt~f݄ uo2|' zPKxZm=Q1X0U`;f]!U2o޷7o>=4&m.$f!$i L>9n20%9D)-+_ Ts(UL}_sY-:,Iɢ:,&J8xJ_$QR's9Rj9kovkw/0uG7]pIu7>t-zcCSLU|:hc}44:v\kd}l`h>T\2{-а\J`ٚnP6Gk h }E]htյ-Pp`¥}}P.pA3l~E S`PLtq2M*=ݑ;h#\ȁ:۶ е!JщKY]pZbjm%;: MȂ%X2 ^V1L] :dIѲHd'm+ٌp|>?x[ Ik,4J:|b36H@Tނ=h"܏{{,qЌkL,Qțp F߮v[[^8[p5"!IV!}oV7~!$ƊzFp+a%KÓlʳ]^+ϾD__B9g=%% CrE]At ?}0^S!9|V*{WŪ9I9^7)UKY%|y]XCvES*A<7ٛ8=5u$n^ aݡ7ȓGp1#$sv1GUƫŒ#F Vƫ+aGF yD\줁g;y0QΪIvݐ|΢Y0_>Tr,2YF!,Gm^ )|?B0~T~"kMI%I=w'baKN}IClP_E1=]-ep$b+)bͩa'c't7eAy95> , \<]9˪LUs,}IBR(ǐ8{<7Zs|ܤ SIIIJW±1 kЀ .hSC]P&*چ-)KɿBe?_ȸt0dfw}bU^ _P* 9|G+:7^ॿ aB($vPb9L+7o 8h8#@װe u&Q]Z(>uDZ(l÷ehc#FT%[8wnj7ڮ13PK xZjW$o C9M ;o2Kv o^} "NY-qD3YCm+|)=7jiT;8GLXСmPK xZ<$IAR-STR912/examples/UART/.svn/props/UT LjKʈKux PK xZ<"IAR-STR912/examples/UART/.svn/tmp/UT LjKʈKux PK xZ<,IAR-STR912/examples/UART/.svn/tmp/prop-base/UT LjKʈKux PK xZ<,IAR-STR912/examples/UART/.svn/tmp/text-base/UT LjKʈKux PK xZ<(IAR-STR912/examples/UART/.svn/tmp/props/UT LjKʈKux PKxZ<`!IAR-STR912/examples/UART/uart.depUT LjKLjKux Xn@ow:PJ^1ެHt!4wQ9 go@\-]!CJw x6#o@!մf6+cGt\j(^n;ߐ, Zm\{C XM7=k=gF~'D>d2n^Gi?HR 1 lgҁGXׂØ9,-I A P$!V m" qѬA$aܔF]IZXڸTƑ'L?Zs[?n &<8..qW/p0k\׎aPUg Y[Vt9읬Gifҭc7vF~PrV:t~ͻ:vC@@=M&YKja]#L.ɘfT8ln%1Ls<}1{Njq$DyR%} q׹hhneb3`ט2U8kP[ wU9{:ʘzrg(""nW˶Y5=$uc0˝6IY8My@uGm=Q1X0U`;f]!U2o޷7o>=4&m.$f!$i L>9n20%9D)-+_ Ts(UL}_sY-:,Iɢ:,&J8xJ_$QR's9Rj9kovkw/0uG7]pIu7>t-zcCSLU|:hc}44:v\kd}l`h>T\2{-а\J`ٚnP6Gk h }E]htյ-Pp`¥}}P.pA3l~E S`PLtq2M*=ݑ;h#\ȁ:۶ е!JщKY]pZbjm%;: MȂ%X2 ^V1L] :dIѲHd'm+ٌp|>?x[ Ik,4J:|b36H@Tނ=h"܏{{,qЌkL,Qțp F߮v[[^8[p5"!IV!}oV7~!$ƊzFp+a%KÓlʳ]^+ϾD__B9g=%% CrE]At ?}0^S!9|V*{WŪ9I9^7)UKY%|y]XCvES*A<7ٛ8=5u$n^ aݡ7ȓGp1#$sv1GUƫŒ#F Vƫ+aGF yD\줁g;y0QΪIvݐ|΢Y0_>Tr,2YF!,Gm^ )|?B0~T~"kMI%I=w'baKN}IClP_E1=]-ep$b+)bͩa'c't7eAy95> , \<]9˪LUs,}IBR(ǐ8{<7Zs|ܤ SIIIJW±1 kЀ .hSC]P&*چ-)KɿBe?_ȸt0dfw}bU^ _P* 9|G+:7^ॿ aB($vPb9L+7o 8h8#@װe u&Q]Z(>uDZ(l÷ehc#FT%[8wnj7ڮ13PKxZ<:ua#IAR-STR912/examples/UART/91x_conf.hUT LjKLjKux WMo8ƒFKET^Jt֖RYlP]k*Х}yf81owƓ}e]a>J*|c'a/%DJn',gB6cY<=-YVeBf+EZh9Wdr`4*>US#S*^@TM3 u]V/778B⿛_}]*>IB9x$HBg(N`2D.8 2EcpS.&7axH#H$D{+8 N<4[ oxj4H∹OXOFm$ItKs"8wH ɘP&HT(7h00Ji* oFSlڮ$ BQu #Z Ym #AXD=PBIE[Ev6EvOD}b.0WM)AS^Hzz2*ṬA^fr.乜,j%,|΋/Tjm`>|Uv"hKxlˎ+fE!Vr8].EqC!x:̊oQ}K/qԔ-uҾRH5JaW :t`nxz!EԠa[Î5|K _iZ5ɸDO!(]8섐h %i5R^Q5hiְcnl"OaD}RޓT{ (ŜU!Uǖn8Јvϋ~#UðpD˺Ζ,f/WHx>L{sq\ZY5ר;u O.v60<> RRJVet3(tW:ҨE%a:V"TQEvR X]7bz4$vBZ18<6QX ѳV*!eR yWQE)CS/n4<+Z@SUܤ r j!@ȅɺa"Sp=@獄B-ƒ=C;\-D 8]dxDYFgR`ZfeQ-F1Y+3>*E֙AciY{I%AU6G˘4@EC ~#| :AFܮAU39͵q x/qI 9.ٲ?>1ZÉ~t8ԫ*>}}Z?!c>0IhJ#i<3P7(Nl|y(GM||7My$cՋM0@H8#HIL+NzMd!%8 !Ԅ$!@#%1 Ǔ8b^ D1S c0rPDGd;8J3OBrF>p ^:OX=840G7tܞ0?j=40T1i #NXD}4P/l0)$Eh̗ ~>;dMnsq`~5n֯Tu}>i^+ٴO”VDU)Gب͞DF/;BwU1n?t@-5Ca7BHPJ*ǰohl;g*syǰ#vnT9yç3 uZߟxF^Q+w][.w;mT$L$|>w> wgnm{:K~h^8K]t<~۹A?Soʛ vQ;w_$ez?$=ȇM]{$;um{N=܄lnRﺶqID6F.|G6:g6F.|˧6l:Z&-v(9Z,y'M'=ּVI~˷=ּV;K.M]'umMǹ0um\g}b[_xſoy59xm0kr#V0?DxMmKdt~f݄ uo2|' zPK xZ<"IAR-STR912/examples/UART/settings/UT LjKʈKux PKxZ``th ؞mCS/)qa{X0(dHz~w>ͱ"O޽{G_^u<"@4B% :PB~P!̯p](ſh3l7("yݢ0 `q A+PZ58isK]PV{*Jim"1n/E\Djcxok!>hgv`p-[$ $ $[2vLjK‰Z R; cTI#2];@Q\wH52*(?(Tw$0mNmk?F5̑lE%L/;EO:%ܶ%) $tT:VĖ >U*U #F[e`_)j :5^7#je 2v]3vYI^'*Y63 ! a xG$Rk&ʵ3puJg:Kyilf%On==OSM={>g^[:k/PK yZ<'IAR-STR912/examples/UART/settings/.svn/UT LjKʈKux PKxZ<Ѩ+.IAR-STR912/examples/UART/settings/.svn/entriesUT LjKLjKux N0E{_I<{H%YI;Znj4=caa =2nגrXi]O1c*|-T.!^u|ɗ-tvڽӋ?ϧnJc]@WPFڐ!&أ?|\8n='!ʃ#SDɸ.ERݰ/gд`ekDKۑH4{P?!~{uy~/Wʡʙd'U;2&C!^~-j!1@K:HQD&PK xZ<1IAR-STR912/examples/UART/settings/.svn/prop-base/UT LjKʈKux PK xZ<1IAR-STR912/examples/UART/settings/.svn/text-base/UT LjKʈKux PKxZ``th ؞mCS/)qa{X0(dHz~w>ͱ"O޽{G_^u<"@4B% :PB~P!̯p](ſh3l7("yݢ0 `q A+PZ58isK]PV{*Jim"1n/E\Djcxok!>hgv`p-[$ $ $[2vLjK‰Z R; cTI#2];@Q\wH52*(?(Tw$0mNmk?F5̑lE%L/;EO:%ܶ%) $tT:VĖ >U*U #F[e`_)j :5^7#je 2v]3vYI^'*Y63 ! a xG$Rk&ʵ3puJg:Kyilf%On==OSM={>g^[:k/PKxZ<=ZBIAR-STR912/examples/UART/settings/.svn/text-base/uart.dni.svn-baseUT LjKLjKux v,N,.NMIUOIQ\NEy%@aҼOf^KQfYjP<<$99?/6^50 02$ PKxZcE~; S倂5a,7Ua R~ziO3uȟkOPK xZ<-IAR-STR912/examples/UART/settings/.svn/props/UT LjKʈKux PK xZ<+IAR-STR912/examples/UART/settings/.svn/tmp/UT LjKʈKux PK xZ<5IAR-STR912/examples/UART/settings/.svn/tmp/prop-base/UT LjKʈKux PK xZ<5IAR-STR912/examples/UART/settings/.svn/tmp/text-base/UT LjKʈKux PK xZ<1IAR-STR912/examples/UART/settings/.svn/tmp/props/UT LjKʈKux PKxZ<=Z*IAR-STR912/examples/UART/settings/uart.dniUT LjKLjKux v,N,.NMIUOIQ\NEy%@aҼOf^KQfYjP<<$99?/6^50 02$ PKxZ#唤ڼ7*NoO_c~^:piEr^N6eq yad )b eayFLyV, ^VuS^9[Vx|I8]w ,$(yB/*rCf9˃Zf,%h\`qUJ + )ʨ$$cbEEE\bd,h5tծ]jqq6YZ2wZ!λrM;zHd<ˊBN Ww'm'-aM!N$ ^['A 4 ި!}g 1 Ǘo9nX ^_Nb|#h\ĺ[p/ztW On  T"i{37/sՋvPzkY5ε\cꀣFN@NG &x tgegl&azԽx5`ka]  \ǠcXʘ}iqic?1 !*0`xЦƥl`ġ*'r%p ҐR9JUy2Jx|盎9gsD);(*,S"ӏrPKPa/r=0 pyuK-5P6@ftE)F^^`^yǗrƈCBケ!j6uY d<' }L+TX#usI#$x'o4Wdjm }Mr$eL+RG'aGgmR97s{]U>6׿T>N aE|r,:kc遤$.\|!< \**$WĈ!ʟ)rހ4טuֳܜxj|OSv}6 |T1DRܞQoO~2Geܢs>˄ºayvaNUϦ !SȿUL):&?橄f(,\q iE@`\5v5d?BSG-Rv P”7%N)ξfoJ+6%g7M5ܲxc>aR v/$Kw=8ᣥbޙf޸+E2,R%W{יӹ7RɲF8M~ŋVm+QBw[/\(=22#ÖT(i' 3;65FjsW ?83LUEAJ.{5O{5ɫy3J`ȃ!{aP/][oV( ;R 0LwX9ͷ4.%cH2rϢ-?\+{Y J-'NPHIu˩~u'|bJ'+|n4W]jːʢ J! )繕zWsrqa;˖PKxZoݏק{]RRFb ؖ iVF4LgwQKZGOIɦEN$86<\XvJ(:I:;`,R4"&mlN>*L Q*F?LmҡG5)W $..DJ\ulC$̜r2/{#4r[e)6*;)frRz[o]9)/hٳ6KɃIX7lհco\&Ze`Y;!}̻Ć5a:QM5LĚ/e6U PK xZ<'IAR-STR912/examples/FMI/.svn/prop-base/UT LjKʈKux PK xZ<'IAR-STR912/examples/FMI/.svn/text-base/UT LjKʈKux PKxZ<ۭCM:IAR-STR912/examples/FMI/.svn/text-base/Readme.txt.svn-baseUT LjKLjKux UMo6 cHl~@D[DRr Ƣc"hPtwH9=9(yo#唤ڼ7*NoO_c~^:piEr^N6eq yad )b eayFLyV, ^VuS^9[Vx|I8]w ,$(yB/*rCf9˃Zf,%h\`qUJ + )ʨ$$cbEEE\bd,h5tծ]jqq6YZ2wZ!λrM;zHd<ˊBN Ww'm'-aM!N$ ^['A 4 ި!}g 1 Ǘo9nX ^_Nb|#h\ĺ[p/ztW On  T"i{37/sՋvPzkY5ε\cꀣFN@NG &x tgegl&azԽx5`ka]  \ǠcXʘ}iqic?1 !*0`xЦƥl`ġ*'r%p ҐR9JUy2Jx|盎9gsD);(*,S"ӏrPKPa/r=0 pyuK-5P6@ftE)F^^`^yǗrƈCBケ!j6uY d<' }L+TX#usI#$x'o4Wdjm }Mr$eL+RG'aGgmR97s{]U>6׿T>N aE|r,:kc遤$.\|!< \**$WĈ!ʟ)rހ4טuֳܜxj|OSv}6 |T1DRܞQoO~2Geܢs>˄ºayvaNUϦ !SȿUL):&?橄f(,\q iE@`\5v5d?BSG-Rv P”7%N)ξfoJ+6%g7M5ܲxc>aR v/$Kw=8ᣥbޙf޸+E2,R%W{יӹ7RɲF8M~ŋVm+QBw[/\(=22#ÖT(i' 3;65FjsW ?83LUEAJ.{5O{5ɫy3J`ȃ!{aP/][oV( ;R 0LwX9ͷ4.%cH2rϢ-?\+{Y J-'NPHIu˩~u'|bJ'+|n4W]jːʢ J! )繕zWsrqa;˖PKxZR^ 0vc>OI~~ͻO{t">cOeu$ķiNsV{Ip$G%~gIi`,yd ҋi)>`9 4ĽYmiH,A4n'ǐ^|sC7-il. }by[ .aN .f88Qy%JК3Dj6tn"@˨v||H/EP|G~p,HT,b[W =2 \yS!Z5$g4.pI( q1/ZV[~Z͟,EonJleZjѥhbsW3kރO-_'iR6޵_^0X٥=W8tsc , ~R͸s = f^>"yWw08xNjOg1,Fa%Dʠz802rLM)^2J2{ ihmD.5gLWQRNIrWN/~yU2y꼣YJ|5kK0)3dfcO(u$^̐h{J5Kq*"|h7ɵ-fc0bCx)mmӾ4{$]eҳ18fG ڊZ#bprM5{vpP D%H}q&w5YwMYsD@61(#55`Xv]Gמ>İ^ýX6ERE՛1H)㤎; ]mJ*5 nގcT$f Q{ba8"c8B^{;A%?if+AQ}pζra5nv=];gGª$B~z؅NJzL{v8޲-ڂX&4vy5ukjC+2F? .~wÿN0G  nxqDVRS"'!K0=i2nR>;,xܴpnƓ)^^k!i%;7;Y~!=un~3ۻ;>>_y#@BTMfؤoO@#3wnkq6> NJ%$ s|I,JpD 6#>a3s}M+2\Cy&4;$AfH5,ͪ@RT TEfצBz%<^\::i_-JOXr@:A80S/W={Ay9D{o:%OsbGvRF#*68v3dI8Ϟ=^ÝrQ TupDy~?|KOACui;IZbAK.$*Nscʑ"jԈuکpƵ=va+Vm{٭zOPKxZҟdS* BIjT?$)o ㋻ 6OesRvo;K5O^`4XMEj}nԁso1va{ va;RsG<0JC 'O"^"WnT:{rg꦳['O/4 t,^cw+[wP7F;.{OPKxZO.v60<> RRJVet3(tW:ҨE%a:V"TQEvR X]7bz4$vBZ18<6QX ѳV*!eR yWQE)CS/n4<+Z@SUܤ r j!@ȅɺa"Sp=@獄B-ƒ=C;\-D 8]dxDYFgR`ZfeQ-F1Y+3>*E֙AciY{I%AU6G˘4@EC ~#| :AFܮAU39͵q x/qI 9.ٲ?>1ZÉ~t8ԫ*>}}Z?!c>0IhJ#i<3P7(Nl|y(GM||7My$cՋM0@H8#HIL+NzMd!%8 !Ԅ$!@#%1 Ǔ8b^ D1S c0rPDGd;8J3OBrF>p ^:OX=840G7tܞ0?j=40T1i #NXD}4P/l0)$Eh̗ ~>;dMnsq`~5n֯Tu}>i^+ٴO”VDU)Gب͞DF/;BwU1n?t@-5Ca7BHPJ*ǰohl;g*syǰ#vnT9yç3 uZߟxF^Q+w][.w;mT$L$|>w> wgnm{:K~h^8K]t<~۹A?Soʛ vQ;w_$ez?$=ȇM]{$;um{N=܄lnRﺶqID6F.|G6:g6F.|˧6l:Z&-v(9Z,y'M'=ּVI~˷=ּV;K.M]'umMǹ0um\g}b[_xſoy59xm0kr#V0?DxMmKdt~f݄ uo2|' zPKxZ<P6IAR-STR912/examples/FMI/.svn/text-base/main.c.svn-baseUT LjKLjKux XmoH vЊ+Z݇ 0j^LhO(%C;*$(/ݮVϞ@ Kd<~l?؁ ,x a|jr&'E&j[1L%<9#LHm}k`.35 &hNUmH0* J.Jw~I{V״to^" RVdUE&  IzàHdrݪZU2ᷝ? >~zM{f:Qc!c92")ƾ8OF+(Sl ^+ϨӎC5iYEe~iLt[/} q[{.b=+WV󲚓o1X}$EYP)X׼(YYدpЉ4Sk?|VS:<6tX]Bke)]GXk9"-dű/ hp-D *gLfg,YëhlG$qX6fP"8gp[Wv'+9V-қc$ N|CTߦ ~N c!PK xZ<#IAR-STR912/examples/FMI/.svn/props/UT LjKʈKux PK xZ<!IAR-STR912/examples/FMI/.svn/tmp/UT LjKʈKux PK xZ<+IAR-STR912/examples/FMI/.svn/tmp/prop-base/UT LjKʈKux PK xZ<+IAR-STR912/examples/FMI/.svn/tmp/text-base/UT LjKʈKux PK xZ<'IAR-STR912/examples/FMI/.svn/tmp/props/UT LjKʈKux PKxZR^ 0vc>OI~~ͻO{t">cOeu$ķiNsV{Ip$G%~gIi`,yd ҋi)>`9 4ĽYmiH,A4n'ǐ^|sC7-il. }by[ .aN .f88Qy%JК3Dj6tn"@˨v||H/EP|G~p,HT,b[W =2 \yS!Z5$g4.pI( q1/ZV[~Z͟,EonJleZjѥhbsW3kރO-_'iR6޵_^0X٥=W8tsc , ~R͸s = f^>"yWw08xNjOg1,Fa%Dʠz802rLM)^2J2{ ihmD.5gLWQRNIrWN/~yU2y꼣YJ|5kK0)3dfcO(u$^̐h{J5Kq*"|h7ɵ-fc0bCx)mmӾ4{$]eҳ18fG ڊZ#bprM5{vpP D%H}q&w5YwMYsD@61(#55`Xv]Gמ>İ^ýX6ERE՛1H)㤎; ]mJ*5 nގcT$f Q{ba8"c8B^{;A%?if+AQ}pζra5nv=];gGª$B~z؅NJzL{v8޲-ڂX&4vy5ukjC+2F? .~wÿN0G  nxqDVRS"'!K0=i2nR>;,xܴpnƓ)^^k!i%;7;Y~!=un~3ۻ;>>_y#@BTMfؤoO@#3wnkq6> NJ%$ s|I,JpD 6#>a3s}M+2\Cy&4;$AfH5,ͪ@RT TEfצBz%<^\::i_-JOXr@:A80S/W={Ay9D{o:%OsbGvRF#*68v3dI8Ϟ=^ÝrQ TupDy~?|KOACui;IZbAK.$*Nscʑ"jԈuکpƵ=va+Vm{٭zOPKxZ<PIAR-STR912/examples/FMI/main.cUT LjKLjKux XmoH vЊ+Z݇ 0j^LhO(%C;*$(/ݮVϞ@ Kd<~l?؁ ,x a|jr&'E&j[1L%<9#LHm}k`.35 &hNUmH0* J.Jw~I{V״to^" RVdUE&  IzàHdrݪZU2ᷝ? >~zM{f:Qc!c92")ƾ8OF+(Sl ^+ϨӎC5iYEe~iLt[/} q[{.b=+WV󲚓o1X}$EYP)X׼(YYدpЉ4Sk?|VS:<6tX]Bke)]GXk9"-dű/ hp-D *gLfg,YëhlG$qX6fP"8gp[Wv'+9V-қҟdS* BIjT?$)o ㋻ 6OesRvo;K5O^`4XMEj}nԁso1va{ va;RsG<0JC 'O"^"WnT:{rg꦳['O/4 t,^cw+[wP7F;.{OPKxZO.v60<> RRJVet3(tW:ҨE%a:V"TQEvR X]7bz4$vBZ18<6QX ѳV*!eR yWQE)CS/n4<+Z@SUܤ r j!@ȅɺa"Sp=@獄B-ƒ=C;\-D 8]dxDYFgR`ZfeQ-F1Y+3>*E֙AciY{I%AU6G˘4@EC ~#| :AFܮAU39͵q x/qI 9.ٲ?>1ZÉ~t8ԫ*>}}Z?!c>0IhJ#i<3P7(Nl|y(GM||7My$cՋM0@H8#HIL+NzMd!%8 !Ԅ$!@#%1 Ǔ8b^ D1S c0rPDGd;8J3OBrF>p ^:OX=840G7tܞ0?j=40T1i #NXD}4P/l0)$Eh̗ ~>;dMnsq`~5n֯Tu}>i^+ٴO”VDU)Gب͞DF/;BwU1n?t@-5Ca7BHPJ*ǰohl;g*syǰ#vnT9yç3 uZߟxF^Q+w][.w;mT$L$|>w> wgnm{:K~h^8K]t<~۹A?Soʛ vQ;w_$ez?$=ȇM]{$;um{N=܄lnRﺶqID6F.|G6:g6F.|˧6l:Z&-v(9Z,y'M'=ּVI~˷=ּV;K.M]'umMǹ0um\g}b[_xſoy59xm0kr#V0?DxMmKdt~f݄ uo2|' zPK xZ<IAR-STR912/examples/ADC/UT LjKʈKux PK xZ<"IAR-STR912/examples/ADC/interrupt/UT LjKʈKux PKxZLpX7bՈy1RN D~v[˲0R!0Augw]/V<|n^"& ]ւO7L% |`/EoкߚBE3J7Nߑ>\doU|`9d,Rsρg0KR[}I>ǣ c{e'K3{xᑗ$yń<`:A,A@3yFv0!d0~y {aq-9 w2 ŏ/L4ʹBEˆ 0ۂ Pv3*a&q%@IdE;hP,30}}, oɿPKxZ3D/F,֣&)$9é43'E(`lPK yZ<'IAR-STR912/examples/ADC/interrupt/.svn/UT LjKʈKux PKxZ<,uL.IAR-STR912/examples/ADC/interrupt/.svn/entriesUT LjKLjKux ͎ ;V4`nDzI7_]Uj3' BqQ:ayV^kr]e9r?qrԿIC]ӏa>ڒi};āo=pN7'MklJH/s 3˃p.P(۸wS~( 1?%^ 酝ZϪ= ԟ~iuI,.A4'ǐ^ݴDV wM1 (BaicUwIZ3HߚMąh@֎)vP8sgN"6u59L %\қ2 !=%C!ƖcZ{!fSw~|VHmͺgV(&ϐXNv hd3$" q+PBԷbuxeB* .;cGYٮ~;ܺë'yNjsi2O<5{EK5FZ߿^ h4埆QWvGȟF#=<-^j4v>Et(XÜU:t0`SaFowP_.KE2{bSH2I ϔNeN&c$NoN=nRiv 8dٻdnl`X`* * 3 #s;ǴH3 1 [9@vW9Y;}] FwKP0HC'4&0')o(7!9'VzeΣ? CpLz)3RN&=x/Θ9yK'm=IEC_ਯn{SJ28޻2דy5kYG$Pg 1 :2{y?J~NCZc& )6ڣ.J*)!Y\ݹΤ}o:W5V:ٕMSF>6A.¤ȔJ ({胘\qk%ax]0C)]Xe?$-8#>԰ar|ZlF!cYx*_ :\ۺoL A EХwb3Zլ{lE=s/#l#o]Ag)A`1hLYQܪCg2~p˺ܖ!pJԘ3&  D,`!(nVQ`u1ګ^{b/smz >+~Y,CrTNhf:KYa:* vcߠ$7cvh4s4ƍ.MG 'ߍ<3&JV̖'l[o$F!*`j>rϮ B-^}؅;\ zqe[ ) 9Cy\pu ղVd~va /T5;R{vȅZEPBԗ!`d"~qX.xٴpF9^;3+!i%;';E~~~'BuĮ7۽ۿ?ܼ\y#@BT9ܽb9Su?o(0v+fg0_a^ B;ܗvE7!TX$!7[AmG}8S }K_e2RÁ[`AhjU uWʄfťD[XzU!م1潕7;2 qsd|'fjr׵Gjě؞3^ +|˹Ih^9FŽAJp:d%@;/ɶ.Ov|1˶VF&wf.bD0[* ~m'> Ѱ2s/0,hѡhZת v㨧&$J5^Juy8ȍ +-/ge혷ע(ZŒR)G-Zq7"*@g : ;j6%mGO5m"Ďs(L g0ֿݹ)!Tx!k%pGQ7kb< 'e bUO~!g7gFKZIKz$++} |JSw{{+6ǐg{_՝'#߫&ReXT%Ȣ2%)v2VL#=@`LKpN׹'.aݪybOC=@PePKxZ<Ծ1<EIAR-STR912/examples/ADC/interrupt/.svn/text-base/adc_int.ewd.svn-baseUT LjKLjKux ko:O}8GZnvIYw($-kRrlir!^6KkiVδVJ? | "Q:AJHϟ=։)=wjSqi\{OQRA "xjItvyz3 M5{ٰݲge2ƵHF ,?4,[߿Yil5ofWLv!1smiRhYgZgz迋}D&  PE}j "SC7H0VkYKjn]qnc#0}'r%p ҐR9JUy2Jx|盎9gsD);(*,S"ӏrPKPa/r=0 pyuK-5P6@ftE)F^^`^yǗrƈCBケ!j6uY d<' }L+TX#usI#$x'o4Wdjm }Mr$eL+RG'aGgmR97s{]U>6׿T>N aE|r,:kc遤$.\|!< \**$WĈ!ʟ)rހ4טuֳܜxj|OSv}6 |T1DRܞQoO~2Geܢs>˄ºayvaNUϦ !SȿUL):&?橄f(,\q iE@`\5v5d?BSG-Rv P”7%N)ξfoJ+6%g7M5ܲxc>aR v/$Kw=8ᣥbޙf޸+E2,R%W{יӹ7RɲF8M~ŋVm+QBw[/\(=22#ÖT(i' 3;65FjsW ?83LUEAJ.{5O{5ɫy3J`ȃ!{aP/][oV( ;R 0LwX9ͷ4.%cH2rϢ-?\+{Y J-'NPHIu˩~u'|bJ'+|n4W]jːʢ J! )繕zWsrqa;˖PKxZ3D/F,֣&)$9é43'E(`lPKxZLpX7bՈy1RN D~v[˲0R!0Augw]/V<|n^"& ]ւO7L% |`/EoкߚBE3J7Nߑ>\doU|`9d,Rsρg0KR[}I>ǣ c{e'K3{xᑗ$yń<`:A,A@3yFv0!d0~y {aq-9 w2 ŏ/L4ʹBEˆ 0ۂ Pv3*a&q%@IdE;hP,30}}, oɿPKxZy$x&I\,NK9%  <@$W72Y"K_sq;# q Hz1!Ot8M])qBYҦ¹d \1wi?saQ*_wIѯ f`2~?ETԙ=v?PKxZ< [Ǯ=BIAR-STR912/examples/ADC/interrupt/.svn/text-base/91x_it.c.svn-baseUT LjKLjKux ՛]o8+?޴i2;ѽ@K|@UD QNdž!^Leԋ{|']2')6 i ,a%iYYdIoI>8)x=u -3~F%\cɳ$YY@D{؊9Ő@h|y0c *_HmdqV)8ep){ AY9  VHpG/!ibA跄ʬ+;fֆ}e 3FCAmXlkxhQɞrcF1 }"YC\$sljSiV|63,%mp q1]hf_ oQXy^>@$( :k ,"T;ف4!RP k\>)Z+ӥxt4(=zۺ? hj,Cۋ lXL9`2'6s qC0"7"y T4}YAþW""VstN ,5&vcB6Æ"t qFP.!#-Có%6e-T41a5 mFHe&%p$$D~Ɋ$ܓ\7"vv\¼H t9moL j^qV7A9|wʂʏ5/5+^W,}Ds|Ob.wPo Uޱrd\371d1\Uqš,FAs3wM+k%qzdz