From 7e5407b0613d88ba967f54b21289fa0895386e9f Mon Sep 17 00:00:00 2001 From: Andreas Waidler Date: Fri, 5 Aug 2011 22:06:33 +0200 Subject: [PATCH] Switched from autotools to CMake. Introduced stricter compiler flags, adjusted code. --- .gitignore | 61 +- CMakeLists.txt | 25 + CMakeModules/FindCPPUNIT.cmake | 25 + Doxyfile.in | 1417 ------- Makefile.am | 13 - configure.ac | 268 -- include/Makefile.am | 1 - include/libsex/Makefile.am | 10 - libsex.pc.in | 10 - m4/ax_compare_version.m4 | 178 - m4/libtool.m4 | 6656 ------------------------------ m4/pkg.m4 | 155 - source/.libs/libsex.lai | 41 + source/.libs/libsex.so.0 | 1 + source/.libs/libsex.so.0.0.0 | Bin 0 -> 11128 bytes source/CMakeLists.txt | 15 + {src => source}/Exception.cxx | 2 +- {include/libsex => source}/Exception.hxx | 2 +- source/config.hxx | 84 + {include/libsex => source}/declare.hxx | 2 +- {include/libsex => source}/define.hxx | 0 {include/libsex => source}/throw.hxx | 2 +- {src => source}/utility.cxx | 4 +- {include/libsex => source}/utility.hxx | 4 +- {include/libsex => source}/utility.ixx | 4 +- src/Makefile.am | 3 - tests/.libs/lt-tests | Bin 0 -> 118123 bytes tests/.libs/tests | Bin 0 -> 118083 bytes tests/CMakeLists.txt | 10 + tests/Makefile.am | 25 - tests/framework/CountingException.hxx | 2 +- tests/framework/Makefile.am | 8 - tests/framework/MockException.hxx | 2 +- tests/framework/UncloneableException.hxx | 2 +- tests/main.cxx | 61 +- tests/{testRegistry.cxx => registry.cxx} | 0 tests/src/Makefile.am | 10 - tests/src/TestException.cxx | 6 +- tests/src/TestUtility.cxx | 2 +- tests/src/UsageExamples.cxx | 32 +- 40 files changed, 276 insertions(+), 8867 deletions(-) rewrite .gitignore (81%) create mode 100644 CMakeLists.txt create mode 100644 CMakeModules/FindCPPUNIT.cmake delete mode 100644 Doxyfile.in delete mode 100644 Makefile.am delete mode 100644 configure.ac delete mode 100644 include/Makefile.am delete mode 100644 include/libsex/Makefile.am delete mode 100644 libsex.pc.in delete mode 100644 m4/ax_compare_version.m4 delete mode 100644 m4/libtool.m4 delete mode 100644 m4/pkg.m4 create mode 100644 source/.libs/libsex.lai create mode 120000 source/.libs/libsex.so.0 create mode 100755 source/.libs/libsex.so.0.0.0 create mode 100644 source/CMakeLists.txt rename {src => source}/Exception.cxx (98%) rename {include/libsex => source}/Exception.hxx (99%) create mode 100644 source/config.hxx rename {include/libsex => source}/declare.hxx (91%) rename {include/libsex => source}/define.hxx (100%) rename {include/libsex => source}/throw.hxx (96%) rename {src => source}/utility.cxx (95%) rename {include/libsex => source}/utility.hxx (96%) rename {include/libsex => source}/utility.ixx (90%) delete mode 100644 src/Makefile.am create mode 100755 tests/.libs/lt-tests create mode 100755 tests/.libs/tests create mode 100644 tests/CMakeLists.txt delete mode 100644 tests/Makefile.am delete mode 100644 tests/framework/Makefile.am rewrite tests/main.cxx (68%) rename tests/{testRegistry.cxx => registry.cxx} (100%) delete mode 100644 tests/src/Makefile.am diff --git a/.gitignore b/.gitignore dissimilarity index 81% index 14513bd..98a0654 100644 --- a/.gitignore +++ b/.gitignore @@ -1,47 +1,14 @@ -*.swp -Makefile -Makefile.in -aclocal.m4 -autom4te.cache -autoscan-*.log -config.guess -config.log -config.status -config.sub -configure -configure.lineno -configure.scan -depcomp -install-sh -libtool -ltmain.sh -missing -nohup.out -*.Po -*.Plo -*.o -*.so -*.lo -*.a -*.la -.deps -config.hxx -config.hxx.in -stamp-h1 -src/.libs -tests/tests -doc/ -*~ -Doxyfile -*.pc -.libs -.tdldb.bak -.tdldb.lock -*.loT -*.BASE.* -*.LOCAL.* -*.REMOTE.* -m4/ltoptions.m4 -m4/ltsugar.m4 -m4/ltversion.m4 -m4/lt~obsolete.m4 +*~ +*.swp +*.Po +*.Plo +*.o +*.so +*.lo +*.a +*.la +*.pc +*.BASE.* +*.LOCAL.* +*.REMOTE.* +Makefile diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..f830632 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,25 @@ +# Formalia... +CMAKE_MINIMUM_REQUIRED(VERSION 2.6) + +# The name of this project, obviously. +PROJECT(libsex) + + +### Compiler Options + +# At least let the compiler think our code is perfect. +ADD_DEFINITIONS("-Werror -Wfatal-errors -Wall -Wextra -ansi -pedantic-errors") +ADD_DEFINITIONS("-Wno-variadic-macros") + + +### Project Tree + +# Only one include directory, for uniformity's sake. +# Hence this one is the only candidate possible. +INCLUDE_DIRECTORIES(.) + +# This one contains our code. +ADD_SUBDIRECTORY(source) + +# That one the programmer tests (not build by default). +ADD_SUBDIRECTORY(tests EXCLUDE_FROM_ALL) diff --git a/CMakeModules/FindCPPUNIT.cmake b/CMakeModules/FindCPPUNIT.cmake new file mode 100644 index 0000000..dea006f --- /dev/null +++ b/CMakeModules/FindCPPUNIT.cmake @@ -0,0 +1,25 @@ +# Searches for CppUnit. +# +# Handles REQUIRED argument properly. +# +# The following variables will be set, if found: +# - CPPUNIT_FOUND +# - CPPUNIT_INCLUDE_DIR +# - CPPUNIT_LIBRARIES + + + +FIND_PATH(CPPUNIT_INCLUDE_DIR cppunit/TestCase.h ${CMAKE_SYSTEM_INCLUDE_PATH}) +FIND_LIBRARY(CPPUNIT_LIBRARIES cppunit ${CMAKE_SYSTEM_LIBRARY_PATH}) + +IF(CPPUNIT_INCLUDE_DIR AND CPPUNIT_LIBRARIES) + SET(CPPUNIT_FOUND true) +ENDIF(CPPUNIT_INCLUDE_DIR AND CPPUNIT_LIBRARIES) + +IF(NOT CPPUNIT_FOUND) + IF(CPPUNIT_FIND_REQUIRED) + MESSAGE(FATAL_ERROR "Required library CppUnit not found.") + ELSE(CPPUNIT_FIND_REQUIRED) + MESSAGE(STATUS, "CppUnit not found.") + ENDIF(CPPUNIT_FIND_REQUIRED) +ENDIF(NOT CPPUNIT_FOUND) diff --git a/Doxyfile.in b/Doxyfile.in deleted file mode 100644 index 824fb25..0000000 --- a/Doxyfile.in +++ /dev/null @@ -1,1417 +0,0 @@ -# Doxyfile 1.5.6 - -# 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 = @PACKAGE@ - -# 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 = @VERSION@ - -# 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 = doc - -# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create -# 4096 sub-directories (in 2 levels) under the output directory of each output -# format and will distribute the generated files over these directories. -# Enabling this option can be useful when feeding doxygen a huge amount of -# source files, where putting all generated files in the same directory would -# otherwise cause performance problems for the file system. - -CREATE_SUBDIRS = NO - -# The OUTPUT_LANGUAGE tag is used to specify the language in which all -# documentation generated by doxygen is written. Doxygen will use this -# information to generate all constant output in the proper language. -# The default language is English, other supported languages are: -# Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, -# Croatian, Czech, Danish, Dutch, Farsi, Finnish, French, German, Greek, -# Hungarian, Italian, Japanese, Japanese-en (Japanese with English messages), -# Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, Polish, -# Portuguese, Romanian, Russian, Serbian, Slovak, Slovene, Spanish, Swedish, -# and Ukrainian. - -OUTPUT_LANGUAGE = English - -# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will -# include brief member descriptions after the members that are listed in -# the file and class documentation (similar to JavaDoc). -# Set to NO to disable this. - -BRIEF_MEMBER_DESC = YES - -# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend -# the brief description of a member or function before the detailed description. -# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the -# brief descriptions will be completely suppressed. - -REPEAT_BRIEF = YES - -# This tag implements a quasi-intelligent brief description abbreviator -# that is used to form the text in various listings. Each string -# in this list, if found as the leading text of the brief description, will be -# stripped from the text and the result after processing the whole list, is -# used as the annotated text. Otherwise, the brief description is used as-is. -# If left blank, the following values are used ("$name" is automatically -# replaced with the name of the entity): "The $name class" "The $name widget" -# "The $name file" "is" "provides" "specifies" "contains" -# "represents" "a" "an" "the" - -ABBREVIATE_BRIEF = - -# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then -# Doxygen will generate a detailed section even if there is only a brief -# description. - -ALWAYS_DETAILED_SEC = YES - -# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all -# inherited members of a class in the documentation of that class as if those -# members were ordinary class members. Constructors, destructors and assignment -# operators of the base classes will not be shown. - -INLINE_INHERITED_MEMB = NO - -# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full -# path before files name in the file list and in the header files. If set -# to NO the shortest path that makes the file name unique will be used. - -FULL_PATH_NAMES = NO - -# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag -# can be used to strip a user-defined part of the path. Stripping is -# only done if one of the specified strings matches the left-hand part of -# the path. The tag can be used to show relative paths in the file list. -# If left blank the directory from which doxygen is run is used as the -# path to strip. - -STRIP_FROM_PATH = - -# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of -# the path mentioned in the documentation of a class, which tells -# the reader which header file to include in order to use a class. -# If left blank only the name of the header file containing the class -# definition is used. Otherwise one should specify the include paths that -# are normally passed to the compiler using the -I flag. - -STRIP_FROM_INC_PATH = - -# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter -# (but less readable) file names. This can be useful is your file systems -# doesn't support long names like on DOS, Mac, or CD-ROM. - -SHORT_NAMES = NO - -# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen -# will interpret the first line (until the first dot) of a JavaDoc-style -# comment as the brief description. If set to NO, the JavaDoc -# comments will behave just like regular Qt-style comments -# (thus requiring an explicit @brief command for a brief description.) - -JAVADOC_AUTOBRIEF = YES - -# If the QT_AUTOBRIEF tag is set to YES then Doxygen will -# interpret the first line (until the first dot) of a Qt-style -# comment as the brief description. If set to NO, the comments -# will behave just like regular Qt-style comments (thus requiring -# an explicit \brief command for a brief description.) - -QT_AUTOBRIEF = YES - -# 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 = YES - -# If the DETAILS_AT_TOP tag is set to YES then Doxygen -# will output the detailed description near the top, like JavaDoc. -# If set to NO, the detailed description appears after the member -# documentation. - -DETAILS_AT_TOP = NO - -# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented -# member inherits the documentation from any documented member that it -# re-implements. - -INHERIT_DOCS = YES - -# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce -# a new page for each member. If set to NO, the documentation of a member will -# be part of the file/class/namespace that contains it. - -SEPARATE_MEMBER_PAGES = NO - -# The TAB_SIZE tag can be used to set the number of spaces in a tab. -# Doxygen uses this value to replace tabs by spaces in code fragments. - -TAB_SIZE = 8 - -# This tag can be used to specify a number of aliases that acts -# as commands in the documentation. An alias has the form "name=value". -# For example adding "sideeffect=\par Side Effects:\n" will allow you to -# put the command \sideeffect (or @sideeffect) in the documentation, which -# will result in a user-defined paragraph with heading "Side Effects:". -# You can put \n's in the value part of an alias to insert newlines. - -ALIASES = - -# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C -# sources only. Doxygen will then generate output that is more tailored for C. -# For instance, some of the names that are used will be different. The list -# of all members will be omitted, etc. - -OPTIMIZE_OUTPUT_FOR_C = 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 - -# 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 = YES - -# 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 to replace the get and set methods by a property in the -# documentation. This will only work if the methods are indeed getting or -# setting a simple type. If this is not the case, or you want to show the -# methods anyway, you should set this option to NO. - -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 TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum -# is documented as struct, union, or enum with the name of the typedef. So -# typedef struct TypeS {} TypeT, will appear in the documentation as a struct -# with name TypeT. When disabled the typedef will appear as a member of a file, -# namespace, or class. And the struct will be named TypeS. This can typically -# be useful for C code in case the coding convention dictates that all compound -# types are typedef'ed and only the typedef is referenced, never the tag name. - -TYPEDEF_HIDES_STRUCT = NO - -#--------------------------------------------------------------------------- -# Build related configuration options -#--------------------------------------------------------------------------- - -# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in -# documentation are documented, even if no documentation was available. -# Private class members and static file members will be hidden unless -# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES - -EXTRACT_ALL = YES - -# If the EXTRACT_PRIVATE tag is set to YES all private members of a class -# will be included in the documentation. - -EXTRACT_PRIVATE = YES - -# If the EXTRACT_STATIC tag is set to YES all static members of a file -# will be included in the documentation. - -EXTRACT_STATIC = YES - -# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) -# defined locally in source files will be included in the documentation. -# If set to NO only classes defined in header files are included. - -EXTRACT_LOCAL_CLASSES = YES - -# This flag is only useful for Objective-C code. When set to YES local -# methods, which are defined in the implementation section but not in -# the interface are included in the documentation. -# If set to NO (the default) only methods in the interface are included. - -EXTRACT_LOCAL_METHODS = NO - -# If this flag is set to YES, the members of anonymous namespaces will be -# extracted and appear in the documentation as a namespace called -# 'anonymous_namespace{file}', where file will be replaced with the base -# name of the file that contains the anonymous namespace. By default -# anonymous namespace are hidden. - -EXTRACT_ANON_NSPACES = NO - -# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all -# undocumented members of documented classes, files or namespaces. -# If set to NO (the default) these members will be included in the -# various overviews, but no documentation section is generated. -# This option has no effect if EXTRACT_ALL is enabled. - -HIDE_UNDOC_MEMBERS = NO - -# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all -# undocumented classes that are normally visible in the class hierarchy. -# If set to NO (the default) these classes will be included in the various -# overviews. This option has no effect if EXTRACT_ALL is enabled. - -HIDE_UNDOC_CLASSES = NO - -# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all -# friend (class|struct|union) declarations. -# If set to NO (the default) these declarations will be included in the -# documentation. - -HIDE_FRIEND_COMPOUNDS = NO - -# If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any -# documentation blocks found inside the body of a function. -# If set to NO (the default) these blocks will be appended to the -# function's detailed documentation block. - -HIDE_IN_BODY_DOCS = NO - -# The INTERNAL_DOCS tag determines if documentation -# that is typed after a \internal command is included. If the tag is set -# to NO (the default) then the documentation will be excluded. -# Set it to YES to include the internal documentation. - -INTERNAL_DOCS = NO - -# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate -# file names in lower-case letters. If set to YES upper-case letters are also -# allowed. This is useful if you have classes or files whose names only differ -# in case and if your file system supports case sensitive file names. Windows -# and Mac users are advised to set this option to NO. - -CASE_SENSE_NAMES = YES - -# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen -# will show members with their full class and namespace scopes in the -# documentation. If set to YES the scope will be hidden. - -HIDE_SCOPE_NAMES = YES - -# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen -# will put a list of the files that are included by a file in the documentation -# of that file. - -SHOW_INCLUDE_FILES = YES - -# If the INLINE_INFO tag is set to YES (the default) then a tag [inline] -# is inserted in the documentation for inline members. - -INLINE_INFO = YES - -# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen -# will sort the (detailed) documentation of file and class members -# alphabetically by member name. If set to NO the members will appear in -# declaration order. - -SORT_MEMBER_DOCS = YES - -# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the -# brief documentation of file, namespace and class members alphabetically -# by member name. If set to NO (the default) the members will appear in -# declaration order. - -SORT_BRIEF_DOCS = NO - -# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the -# hierarchy of group names into alphabetical order. If set to NO (the default) -# the group names will appear in their defined order. - -SORT_GROUP_NAMES = NO - -# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be -# sorted by fully-qualified names, including namespaces. If set to -# NO (the default), the class list will be sorted only by class name, -# not including the namespace part. -# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. -# Note: This option applies only to the class list, not to the -# alphabetical list. - -SORT_BY_SCOPE_NAME = NO - -# The GENERATE_TODOLIST tag can be used to enable (YES) or -# disable (NO) the todo list. This list is created by putting \todo -# commands in the documentation. - -GENERATE_TODOLIST = YES - -# The GENERATE_TESTLIST tag can be used to enable (YES) or -# disable (NO) the test list. This list is created by putting \test -# commands in the documentation. - -GENERATE_TESTLIST = YES - -# The GENERATE_BUGLIST tag can be used to enable (YES) or -# disable (NO) the bug list. This list is created by putting \bug -# commands in the documentation. - -GENERATE_BUGLIST = YES - -# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or -# disable (NO) the deprecated list. This list is created by putting -# \deprecated commands in the documentation. - -GENERATE_DEPRECATEDLIST= YES - -# The ENABLED_SECTIONS tag can be used to enable conditional -# documentation sections, marked by \if sectionname ... \endif. - -ENABLED_SECTIONS = - -# The MAX_INITIALIZER_LINES tag determines the maximum number of lines -# the initial value of a variable or define consists of for it to appear in -# the documentation. If the initializer consists of more lines than specified -# here it will be hidden. Use a value of 0 to hide initializers completely. -# The appearance of the initializer of individual variables and defines in the -# documentation can be controlled using \showinitializer or \hideinitializer -# command in the documentation regardless of this setting. - -MAX_INITIALIZER_LINES = 30 - -# Set the SHOW_USED_FILES tag to NO to disable the list of files generated -# at the bottom of the documentation of classes and structs. If set to YES the -# list will mention the files that were used to generate the documentation. - -SHOW_USED_FILES = YES - -# If the sources in your project are distributed over multiple directories -# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy -# in the documentation. The default is NO. - -SHOW_DIRECTORIES = 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 = - -#--------------------------------------------------------------------------- -# configuration options related to warning and progress messages -#--------------------------------------------------------------------------- - -# The QUIET tag can be used to turn on/off the messages that are generated -# by doxygen. Possible values are YES and NO. If left blank NO is used. - -QUIET = NO - -# The WARNINGS tag can be used to turn on/off the warning messages that are -# generated by doxygen. Possible values are YES and NO. If left blank -# NO is used. - -WARNINGS = YES - -# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings -# for undocumented members. If EXTRACT_ALL is set to YES then this flag will -# automatically be disabled. - -WARN_IF_UNDOCUMENTED = YES - -# If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for -# potential errors in the documentation, such as not documenting some -# parameters in a documented function, or documenting parameters that -# don't exist or using markup commands wrongly. - -WARN_IF_DOC_ERROR = YES - -# This WARN_NO_PARAMDOC option can be abled to get warnings for -# functions that are documented, but have no documentation for their parameters -# or return value. If set to NO (the default) doxygen will only warn about -# wrong or incomplete parameter documentation, but not about the absence of -# documentation. - -WARN_NO_PARAMDOC = YES - -# The WARN_FORMAT tag determines the format of the warning messages that -# doxygen can produce. The string should contain the $file, $line, and $text -# tags, which will be replaced by the file and line number from which the -# warning originated and the warning text. Optionally the format may contain -# $version, which will be replaced by the version of the file (if it could -# be obtained via FILE_VERSION_FILTER) - -WARN_FORMAT = "$file:$line: $text" - -# The WARN_LOGFILE tag can be used to specify a file to which warning -# and error messages should be written. If left blank the output is written -# to stderr. - -WARN_LOGFILE = - -#--------------------------------------------------------------------------- -# configuration options related to the input files -#--------------------------------------------------------------------------- - -# The INPUT tag can be used to specify the files and/or directories that contain -# documented source files. You may enter file names like "myfile.cpp" or -# directories like "/usr/src/myproject". Separate the files or directories -# with spaces. - -INPUT = @top_srcdir@/src - -# This tag can be used to specify the character encoding of the source files -# that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is -# also the default input encoding. Doxygen uses libiconv (or the iconv built -# into libc) for the transcoding. See http://www.gnu.org/software/libiconv for -# the list of possible encodings. - -INPUT_ENCODING = UTF-8 - -# If the value of the INPUT tag contains directories, you can use the -# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp -# and *.h) to filter out the source-files in the directories. If left -# blank the following patterns are tested: -# *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx -# *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py *.f90 - -FILE_PATTERNS = *.cxx *.hxx *.ixx - -# 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 = src/config.h - -# The EXCLUDE_SYMLINKS tag can be used select whether or not files or -# directories that are symbolic links (a Unix filesystem feature) are excluded -# from the input. - -EXCLUDE_SYMLINKS = NO - -# If the value of the INPUT tag contains directories, you can use the -# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude -# certain files from those directories. Note that the wildcards are matched -# against the file with absolute path, so to exclude all test directories -# for example use the pattern */test/* - -EXCLUDE_PATTERNS = - -# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names -# (namespaces, classes, functions, etc.) that should be excluded from the -# output. The symbol name can be a fully qualified name, a word, or if the -# wildcard * is used, a substring. Examples: ANamespace, AClass, -# AClass::ANamespace, ANamespace::*Test - -EXCLUDE_SYMBOLS = - -# The EXAMPLE_PATH tag can be used to specify one or more files or -# directories that contain example code fragments that are included (see -# the \include command). - -EXAMPLE_PATH = - -# If the value of the EXAMPLE_PATH tag contains directories, you can use the -# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp -# and *.h) to filter out the source-files in the directories. If left -# blank all files are included. - -EXAMPLE_PATTERNS = - -# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be -# searched for input files to be used with the \include or \dontinclude -# commands irrespective of the value of the RECURSIVE tag. -# Possible values are YES and NO. If left blank NO is used. - -EXAMPLE_RECURSIVE = NO - -# The IMAGE_PATH tag can be used to specify one or more files or -# directories that contain image that are included in the documentation (see -# the \image command). - -IMAGE_PATH = - -# The INPUT_FILTER tag can be used to specify a program that doxygen should -# invoke to filter for each input file. Doxygen will invoke the filter program -# by executing (via popen()) the command , where -# is the value of the INPUT_FILTER tag, and is the name of an -# input file. Doxygen will then use the output that the filter program writes -# to standard output. If FILTER_PATTERNS is specified, this tag will be -# ignored. - -INPUT_FILTER = - -# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern -# basis. Doxygen will compare the file name with each pattern and apply the -# filter if there is a match. The filters are a list of the form: -# pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further -# info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER -# is applied to all files. - -FILTER_PATTERNS = - -# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using -# INPUT_FILTER) will be used to filter the input files when producing source -# files to browse (i.e. when SOURCE_BROWSER is set to YES). - -FILTER_SOURCE_FILES = NO - -#--------------------------------------------------------------------------- -# configuration options related to source browsing -#--------------------------------------------------------------------------- - -# If the SOURCE_BROWSER tag is set to YES then a list of source files will -# be generated. Documented entities will be cross-referenced with these sources. -# Note: To get rid of all source code in the generated output, make sure also -# VERBATIM_HEADERS is set to NO. - -SOURCE_BROWSER = YES - -# 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 -# 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 -# 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 = @with_htags@ - -# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen -# will generate a verbatim copy of the header file for each class for -# which an include is specified. Set to NO to disable this. - -VERBATIM_HEADERS = YES - -#--------------------------------------------------------------------------- -# configuration options related to the alphabetical class index -#--------------------------------------------------------------------------- - -# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index -# of all compounds will be generated. Enable this if the project -# contains a lot of classes, structs, unions or interfaces. - -ALPHABETICAL_INDEX = NO - -# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then -# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns -# in which this list will be split (can be a number in the range [1..20]) - -COLS_IN_ALPHA_INDEX = 5 - -# In case all classes in a project start with a common prefix, all -# classes will be put under the same header in the alphabetical index. -# The IGNORE_PREFIX tag can be used to specify one or more prefixes that -# should be ignored while generating the index headers. - -IGNORE_PREFIX = - -#--------------------------------------------------------------------------- -# configuration options related to the HTML output -#--------------------------------------------------------------------------- - -# If the GENERATE_HTML tag is set to YES (the default) Doxygen will -# generate HTML output. - -GENERATE_HTML = YES - -# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. -# If a relative path is entered the value of OUTPUT_DIRECTORY will be -# put in front of it. If left blank `html' will be used as the default path. - -HTML_OUTPUT = html - -# The HTML_FILE_EXTENSION tag can be used to specify the file extension for -# each generated HTML page (for example: .htm,.php,.asp). If it is left blank -# doxygen will generate files with .html extension. - -HTML_FILE_EXTENSION = .html - -# The HTML_HEADER tag can be used to specify a personal HTML header for -# each generated HTML page. If it is left blank doxygen will generate a -# standard header. - -HTML_HEADER = - -# The HTML_FOOTER tag can be used to specify a personal HTML footer for -# each generated HTML page. If it is left blank doxygen will generate a -# standard footer. - -HTML_FOOTER = - -# The HTML_STYLESHEET tag can be used to specify a user-defined cascading -# style sheet that is used by each HTML page. It can be used to -# fine-tune the look of the HTML output. If the tag is left blank doxygen -# will generate a default style sheet. Note that doxygen will try to copy -# the style sheet file to the HTML output directory, so don't put your own -# stylesheet in the HTML output directory as well, or it will be erased! - -HTML_STYLESHEET = - -# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, -# files or namespaces will be aligned in HTML using tables. If set to -# NO a bullet list will be used. - -HTML_ALIGN_MEMBERS = YES - -# If the GENERATE_HTMLHELP tag is set to YES, additional index files -# will be generated that can be used as input for tools like the -# Microsoft HTML help workshop to generate a compiled HTML help file (.chm) -# of the generated HTML documentation. - -GENERATE_HTMLHELP = NO - -# If the GENERATE_DOCSET tag is set to YES, additional index files -# will be generated that can be used as input for Apple's Xcode 3 -# integrated development environment, introduced with OSX 10.5 (Leopard). -# To create a documentation set, doxygen will generate a Makefile in the -# HTML output directory. Running make will produce the docset in that -# directory and running "make install" will install the docset in -# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find -# it at startup. - -GENERATE_DOCSET = NO - -# When GENERATE_DOCSET tag is set to YES, this tag determines the name of the -# feed. A documentation feed provides an umbrella under which multiple -# documentation sets from a single provider (such as a company or product suite) -# can be grouped. - -DOCSET_FEEDNAME = "Doxygen generated docs" - -# When GENERATE_DOCSET tag is set to YES, this tag specifies a string that -# should uniquely identify the documentation set bundle. This should be a -# reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen -# will append .docset to the name. - -DOCSET_BUNDLE_ID = org.doxygen.Project - -# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML -# documentation will contain sections that can be hidden and shown after the -# page has loaded. For this to work a browser that supports -# JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox -# Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari). - -HTML_DYNAMIC_SECTIONS = NO - -# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can -# be used to specify the file name of the resulting .chm file. You -# can add a path in front of the file if the result should not be -# written to the html output directory. - -CHM_FILE = - -# If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can -# be used to specify the location (absolute path including file name) of -# the HTML help compiler (hhc.exe). If non-empty doxygen will try to run -# the HTML help compiler on the generated index.hhp. - -HHC_LOCATION = - -# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag -# controls if a separate .chi index file is generated (YES) or that -# it should be included in the master .chm file (NO). - -GENERATE_CHI = NO - -# If the GENERATE_HTMLHELP tag is set to YES, the 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 - -# 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 # Fallback, as we are not using tabs. - -# 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 FRAME, 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. Other possible values -# for this tag are: HIERARCHIES, which will generate the Groups, Directories, -# and Class Hiererachy pages using a tree view instead of an ordered list; -# ALL, which combines the behavior of FRAME and HIERARCHIES; and NONE, which -# disables this behavior completely. For backwards compatibility with previous -# releases of Doxygen, the values YES and NO are equivalent to FRAME and NONE -# respectively. - -GENERATE_TREEVIEW = NONE - -# 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 - -# 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 - -#--------------------------------------------------------------------------- -# 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 = NO - -# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. -# If a relative path is entered the value of OUTPUT_DIRECTORY will be -# put in front of it. If left blank `latex' will be used as the default path. - -LATEX_OUTPUT = latex - -# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be -# invoked. If left blank `latex' will be used as the default command name. - -LATEX_CMD_NAME = latex - -# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to -# generate index for LaTeX. If left blank `makeindex' will be used as the -# default command name. - -MAKEINDEX_CMD_NAME = makeindex - -# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact -# LaTeX documents. This may be useful for small projects and may help to -# save some trees in general. - -COMPACT_LATEX = NO - -# The PAPER_TYPE tag can be used to set the paper type that is used -# by the printer. Possible values are: a4, a4wide, letter, legal and -# executive. If left blank a4wide will be used. - -PAPER_TYPE = a4wide - -# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX -# packages that should be included in the LaTeX output. - -EXTRA_PACKAGES = - -# The LATEX_HEADER tag can be used to specify a personal LaTeX header for -# the generated latex document. The header should contain everything until -# the first chapter. If it is left blank doxygen will generate a -# standard header. Notice: only use this tag if you know what you are doing! - -LATEX_HEADER = - -# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated -# is prepared for conversion to pdf (using ps2pdf). The pdf file will -# contain links (just like the HTML output) instead of page references -# This makes the output suitable for online browsing using a pdf viewer. - -PDF_HYPERLINKS = YES - -# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of -# plain latex in the generated Makefile. Set this option to YES to get a -# higher quality PDF documentation. - -USE_PDFLATEX = YES - -# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. -# command to the generated LaTeX files. This will instruct LaTeX to keep -# running if errors occur, instead of asking the user for help. -# This option is also used when generating formulas in HTML. - -LATEX_BATCHMODE = YES - -# 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 = @perl_path@ - -#--------------------------------------------------------------------------- -# 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 = NO - -# 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 = @with_dot@ - -# By default doxygen will write a font called FreeSans.ttf to the output -# directory and reference it in all dot files that doxygen generates. This -# font does not include all possible unicode characters however, so when you need -# these (or just want a differently looking font) you can specify the font name -# using DOT_FONTNAME. You need 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 = FreeSans - -# By default doxygen will tell dot to use the output directory to look for the -# FreeSans.ttf font (which doxygen will put there itself). If you specify a -# different font using DOT_FONTNAME you can set the path where dot -# can find it using this tag. - -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 -# the CLASS_DIAGRAMS tag to NO. - -CLASS_GRAPH = NO - -# 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 = YES - -# If set to YES, the inheritance and collaboration graphs will show the -# relations between templates and their instances. - -TEMPLATE_RELATIONS = YES - -# 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 = YES - -# 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 = YES - -# 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 DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of -# nodes that will be shown in the graph. If the number of nodes in a graph -# becomes larger than this value, doxygen will truncate the graph, which is -# visualized by representing a node as a red box. Note that doxygen if the -# number of direct children of the root node in a graph is already larger than -# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note -# that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. - -DOT_GRAPH_MAX_NODES = 50 - -# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the -# graphs generated by dot. A depth value of 3 means that only nodes reachable -# from the root by following a path via at most 3 edges will be shown. Nodes -# that lay further from the root node will be omitted. Note that setting this -# option to 1 or 2 may greatly reduce the computation time needed for large -# code bases. Also note that the size of a graph can be further restricted by -# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. - -MAX_DOT_GRAPH_DEPTH = 0 - -# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent -# background. This is enabled by default, which results in a transparent -# background. Warning: Depending on the platform used, enabling this option -# may lead to badly anti-aliased labels on the edges of a graph (i.e. they -# become hard to read). - -DOT_TRANSPARENT = YES - -# Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output -# files in one run (i.e. multiple -o and -T options on the command line). This -# makes dot run faster, but since only newer versions of dot (>1.8.10) -# support this, this feature is disabled by default. - -DOT_MULTI_TARGETS = @dot_multi_targets@ - -# 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 diff --git a/Makefile.am b/Makefile.am deleted file mode 100644 index 55b4a7e..0000000 --- a/Makefile.am +++ /dev/null @@ -1,13 +0,0 @@ -AUTOMAKE_OPTIONS = foreign -ACLOCAL_AMFLAGS = -I m4 - -SUBDIRS = include src tests - -pkgconfigdir = $(libdir)/pkgconfig - -# Include the version number to support parallel -# installs of different versions. -pkgconfig_DATA = $(PACKAGE).pc - -doxygen: - doxygen diff --git a/configure.ac b/configure.ac deleted file mode 100644 index ba13963..0000000 --- a/configure.ac +++ /dev/null @@ -1,268 +0,0 @@ -AC_INIT([libsex], [1.0.0], []) -AC_PREREQ(2.50) -AM_INIT_AUTOMAKE([-Wall -Werror]) -AC_DEFINE_UNQUOTED( - COPYRIGHT, - ["2010 Andreas Waidler"], - [Copyright information.]) - -#AC_CONFIG_SRCDIR([src/Option]) -AC_CONFIG_SRCDIR([src]) -AM_CONFIG_HEADER([src/config.hxx]) - -EXTRA_DIST=m4 - -# cxxflags -AC_MSG_CHECKING([whether configure should try to set CXXFLAGS]) -if test "x${CXXFLAGS+set}" = xset; then - enable_cxxflags_setting=no -else - enable_cxxflags_setting=yes -fi -AC_MSG_RESULT($enable_cxxflags_setting) - - -# Optional Features -# debug -AC_ARG_ENABLE( - [debug], - AC_HELP_STRING( - [--enable-debug], - [enable debugging output to stderr @<:@default=no@>:@]), - [debug=${enableval}], - [debug=no]) - -if test "x${debug}" = xyes; then - AC_DEFINE( - DEBUG, - [1], - [Define to 1 to enable debugging output to stderr]) - if test "x${enable_cxxflags_setting}" = xyes; then - CXXFLAGS="-g -O0" # Debugging information for gdb. - fi -else - if test "x${enable_cxxflags_setting}" = xyes; then - CXXFLAGS="-O2" - fi -fi - -# dot-multi-targets -AC_ARG_ENABLE( - [dot-multi-targets], - AC_HELP_STRING( - [--disable-dot-multi-targets], - [disable dot's output to multiple files in one run (make doxygen) - @<:@default=use@:>@]), - [dot_multi_targets=${withval}], - [dot_multi_targets=yes]) - - -# Optional Packages -# dot -AC_ARG_WITH( - [dot], - AC_HELP_STRING( - [--without-dot], - [do not use dot for graph generation (make doxygen) - @<:@default=use@:>@]), - [with_dot=${withval}], - [with_dot=yes]) - -# htags -AC_ARG_WITH( - [htags], - AC_HELP_STRING( - [--with-htags], - [enable the htags (GNU GLOBAL) source browser (make doxygen) - @<:@default=no@:>@]), - [with_htags=${withval}], - [with_htags=no]) - - -# Checks for programs. -# AC_PROG_* -AC_PROG_CXX -AC_PROG_CC -AC_PROG_CPP -AC_PROG_INSTALL -AC_PROG_LN_S -AC_PROG_MAKE_SET -AC_PROG_LIBTOOL -AC_PROG_AWK -AC_PROG_SED - -# doxygen -AC_CHECK_PROG([have_doxygen], [doxygen], [yes], [no]) -if test "x${have_doxygen}" = xno; then - echo \ -"------------------------------------------------- - Unable to find Doxygen. - \"make doxygen\" will not work. --------------------------------------------------" -fi - -# perl -AC_PATH_PROG([perl_path], [perl], [no]) -if test "x${perl_path}" = xno; then - echo \ -"------------------------------------------------- - Unable to find Perl. - \"make doxygen\" will not work. --------------------------------------------------" -fi - -if test "x${have_doxygen}" = xyes -a "x${perl_path}" != xno; then - # dot - if test "x${with_dot}" = xyes; then - AC_CHECK_PROG([with_dot], [dot], [yes], [no]) - if test "x${with_dot}" = xno; then - echo \ -"------------------------------------------------- - Unable to find dot. - \"make doxygen\" will not build powerful graphs. --------------------------------------------------" - else - if test "x${dot_multi_targets}" = xyes; then - dot_version=`dot -V 2>&1 | \ - sed -e 's/.*version //' | sed -e 's/ .*//'` - # Requires AX_COMPARE_VERSION from the Autoconf Macro Archive - AX_COMPARE_VERSION( - [$dot_version], - [gt], - [1.8.10], - [], - [dot_multi_targets=no]) - AC_MSG_CHECKING([for dot > 1.8.10]) - AC_MSG_RESULT([$dot_multi_targets]) - if test "x${dot_multi_targets}" = xno; then - echo \ -"------------------------------------------------- - Unable to find dot > 1.8.10. - \"make doxygen\" will not enable dot to output - multiple files in one run. Therefore it will run - slower. --------------------------------------------------" - fi - fi - fi - else - dot_multi_targets=no - fi - - # htags - if test "x${with_htags}" = xyes; then - AC_MSG_CHECKING([for htags >= 4.8.6]) - htags_version=`htags --version | - sed -ne 1p | sed -e 's/.* //'` - # Requires AX_COMPARE_VERSION from the Autoconf Macro Archive - AX_COMPARE_VERSION( - [$htags_version], - [ge], - [4.8.6], - [], - [with_htags=no]) - AC_MSG_RESULT([$with_htags]) - if test "x${with_htags}" = xno; then - echo \ -"------------------------------------------------- - Unable to find htags (GNU GLOBAL) >= 4.8.6. - \"make doxygen\" will not use htags as the - source browser. --------------------------------------------------" - fi - fi - -else - with_dot=no - dot_multi_targets=no - with_htags=no -fi - -# Checks for language. -AC_LANG([C++]) - -# Checks for header files. -AC_HEADER_STDC - -# Checks for libraries. -# cppunit -PKG_CHECK_MODULES( - [CPPUNIT], - [cppunit >= 1.12.0], - [have_cppunit=yes], - [have_cppunit=no]) -if test "x${have_cppunit}" = xno; then - echo \ -"------------------------------------------------- - Unable to find CppUnit >= 1.12.0. - \"make check\" will not work. --------------------------------------------------" -fi - - -# Checks for typedefs, structures, and compiler characteristics. -AC_HEADER_STDBOOL -AC_C_CONST -AC_C_INLINE - -# Checks for library functions. - -# Substs -AC_SUBST(debug) -AC_SUBST(dot_multi_targets) - -AC_SUBST(perl_path) -AC_SUBST(with_dot) -AC_SUBST(with_htags) - -AC_SUBST(CPPUNIT_CFLAGS) -AC_SUBST(CPPUNIT_LIBS) - -# Conditionals -AM_CONDITIONAL(can_run_tests, test "x${have_cppunit}" = xyes) - - -AC_CONFIG_FILES([ - Makefile - include/Makefile - include/libsex/Makefile - src/Makefile - tests/Makefile - tests/framework/Makefile - tests/src/Makefile - ${PACKAGE}.pc - Doxyfile -]) - - -AC_OUTPUT - -echo \ -"------------------------------------------------- - - ${PACKAGE_NAME} ${PACKAGE_VERSION} - - Prefix: '${prefix}'. - Compiler: '${CXX} ${CXXFLAGS} ${CPPFLAGS}' - - Package features: - debug : ${debug} - make doxygen: - doxygen (needed) : ${have_doxygen} - Perl (needed) : ${perl_path} - dot : ${with_dot} - dot multi targets : ${dot_multi_targets} - htags : ${with_htags} - make check: - cppunit (needed) : ${have_cppunit} - pthreads (needed) : ${have_pthreads} - - Now type 'make @<:@@:>@' - where the optional is: - all - build all binaries - check - run unittests - doxygen - build the documentation - install - install everything - uninstall - uninstall everything - --------------------------------------------------" diff --git a/include/Makefile.am b/include/Makefile.am deleted file mode 100644 index 715ea36..0000000 --- a/include/Makefile.am +++ /dev/null @@ -1 +0,0 @@ -SUBDIRS = $(PACKAGE) diff --git a/include/libsex/Makefile.am b/include/libsex/Makefile.am deleted file mode 100644 index c98b14d..0000000 --- a/include/libsex/Makefile.am +++ /dev/null @@ -1,10 +0,0 @@ -installdir = $(includedir)/$(PACKAGE) -install_HEADERS = \ - Exception.hxx \ - utility.hxx utility.ixx \ - declare.hxx \ - define.hxx \ - throw.hxx - -uninstall-hook: - rm -rf $(includedir)/$(PACKAGE) diff --git a/libsex.pc.in b/libsex.pc.in deleted file mode 100644 index 7df9db2..0000000 --- a/libsex.pc.in +++ /dev/null @@ -1,10 +0,0 @@ -prefix=@prefix@ -exec_prefix=@exec_prefix@ -libdir=@libdir@ -includedir=@includedir@ - -Name: @PACKAGE@ -Description: Library providing a simple exception framework for C++. -Version: @VERSION@ -Libs: -L${libdir} -lsex -Cflags: -I${includedir} diff --git a/m4/ax_compare_version.m4 b/m4/ax_compare_version.m4 deleted file mode 100644 index 5ad0977..0000000 --- a/m4/ax_compare_version.m4 +++ /dev/null @@ -1,178 +0,0 @@ -# =========================================================================== -# http://autoconf-archive.cryp.to/ax_compare_version.html -# =========================================================================== -# -# SYNOPSIS -# -# AX_COMPARE_VERSION(VERSION_A, OP, VERSION_B, [ACTION-IF-TRUE], [ACTION-IF-FALSE]) -# -# DESCRIPTION -# -# This macro compares two version strings. Due to the various number of -# minor-version numbers that can exist, and the fact that string -# comparisons are not compatible with numeric comparisons, this is not -# necessarily trivial to do in a autoconf script. This macro makes doing -# these comparisons easy. -# -# The six basic comparisons are available, as well as checking equality -# limited to a certain number of minor-version levels. -# -# The operator OP determines what type of comparison to do, and can be one -# of: -# -# eq - equal (test A == B) -# ne - not equal (test A != B) -# le - less than or equal (test A <= B) -# ge - greater than or equal (test A >= B) -# lt - less than (test A < B) -# gt - greater than (test A > B) -# -# Additionally, the eq and ne operator can have a number after it to limit -# the test to that number of minor versions. -# -# eq0 - equal up to the length of the shorter version -# ne0 - not equal up to the length of the shorter version -# eqN - equal up to N sub-version levels -# neN - not equal up to N sub-version levels -# -# When the condition is true, shell commands ACTION-IF-TRUE are run, -# otherwise shell commands ACTION-IF-FALSE are run. The environment -# variable 'ax_compare_version' is always set to either 'true' or 'false' -# as well. -# -# Examples: -# -# AX_COMPARE_VERSION([3.15.7],[lt],[3.15.8]) -# AX_COMPARE_VERSION([3.15],[lt],[3.15.8]) -# -# would both be true. -# -# AX_COMPARE_VERSION([3.15.7],[eq],[3.15.8]) -# AX_COMPARE_VERSION([3.15],[gt],[3.15.8]) -# -# would both be false. -# -# AX_COMPARE_VERSION([3.15.7],[eq2],[3.15.8]) -# -# would be true because it is only comparing two minor versions. -# -# AX_COMPARE_VERSION([3.15.7],[eq0],[3.15]) -# -# would be true because it is only comparing the lesser number of minor -# versions of the two values. -# -# Note: The characters that separate the version numbers do not matter. An -# empty string is the same as version 0. OP is evaluated by autoconf, not -# configure, so must be a string, not a variable. -# -# The author would like to acknowledge Guido Draheim whose advice about -# the m4_case and m4_ifvaln functions make this macro only include the -# portions necessary to perform the specific comparison specified by the -# OP argument in the final configure script. -# -# LAST MODIFICATION -# -# 2008-04-12 -# -# COPYLEFT -# -# Copyright (c) 2008 Tim Toolan -# -# 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. - -dnl ######################################################################### -AC_DEFUN([AX_COMPARE_VERSION], [ - AC_PROG_AWK - - # Used to indicate true or false condition - ax_compare_version=false - - # Convert the two version strings to be compared into a format that - # allows a simple string comparison. The end result is that a version - # string of the form 1.12.5-r617 will be converted to the form - # 0001001200050617. In other words, each number is zero padded to four - # digits, and non digits are removed. - AS_VAR_PUSHDEF([A],[ax_compare_version_A]) - A=`echo "$1" | sed -e 's/\([[0-9]]*\)/Z\1Z/g' \ - -e 's/Z\([[0-9]]\)Z/Z0\1Z/g' \ - -e 's/Z\([[0-9]][[0-9]]\)Z/Z0\1Z/g' \ - -e 's/Z\([[0-9]][[0-9]][[0-9]]\)Z/Z0\1Z/g' \ - -e 's/[[^0-9]]//g'` - - AS_VAR_PUSHDEF([B],[ax_compare_version_B]) - B=`echo "$3" | sed -e 's/\([[0-9]]*\)/Z\1Z/g' \ - -e 's/Z\([[0-9]]\)Z/Z0\1Z/g' \ - -e 's/Z\([[0-9]][[0-9]]\)Z/Z0\1Z/g' \ - -e 's/Z\([[0-9]][[0-9]][[0-9]]\)Z/Z0\1Z/g' \ - -e 's/[[^0-9]]//g'` - - dnl # In the case of le, ge, lt, and gt, the strings are sorted as necessary - dnl # then the first line is used to determine if the condition is true. - dnl # The sed right after the echo is to remove any indented white space. - m4_case(m4_tolower($2), - [lt],[ - ax_compare_version=`echo "x$A -x$B" | sed 's/^ *//' | sort -r | sed "s/x${A}/false/;s/x${B}/true/;1q"` - ], - [gt],[ - ax_compare_version=`echo "x$A -x$B" | sed 's/^ *//' | sort | sed "s/x${A}/false/;s/x${B}/true/;1q"` - ], - [le],[ - ax_compare_version=`echo "x$A -x$B" | sed 's/^ *//' | sort | sed "s/x${A}/true/;s/x${B}/false/;1q"` - ], - [ge],[ - ax_compare_version=`echo "x$A -x$B" | sed 's/^ *//' | sort -r | sed "s/x${A}/true/;s/x${B}/false/;1q"` - ],[ - dnl Split the operator from the subversion count if present. - m4_bmatch(m4_substr($2,2), - [0],[ - # A count of zero means use the length of the shorter version. - # Determine the number of characters in A and B. - ax_compare_version_len_A=`echo "$A" | $AWK '{print(length)}'` - ax_compare_version_len_B=`echo "$B" | $AWK '{print(length)}'` - - # Set A to no more than B's length and B to no more than A's length. - A=`echo "$A" | sed "s/\(.\{$ax_compare_version_len_B\}\).*/\1/"` - B=`echo "$B" | sed "s/\(.\{$ax_compare_version_len_A\}\).*/\1/"` - ], - [[0-9]+],[ - # A count greater than zero means use only that many subversions - A=`echo "$A" | sed "s/\(\([[0-9]]\{4\}\)\{m4_substr($2,2)\}\).*/\1/"` - B=`echo "$B" | sed "s/\(\([[0-9]]\{4\}\)\{m4_substr($2,2)\}\).*/\1/"` - ], - [.+],[ - AC_WARNING( - [illegal OP numeric parameter: $2]) - ],[]) - - # Pad zeros at end of numbers to make same length. - ax_compare_version_tmp_A="$A`echo $B | sed 's/./0/g'`" - B="$B`echo $A | sed 's/./0/g'`" - A="$ax_compare_version_tmp_A" - - # Check for equality or inequality as necessary. - m4_case(m4_tolower(m4_substr($2,0,2)), - [eq],[ - test "x$A" = "x$B" && ax_compare_version=true - ], - [ne],[ - test "x$A" != "x$B" && ax_compare_version=true - ],[ - AC_WARNING([illegal OP parameter: $2]) - ]) - ]) - - AS_VAR_POPDEF([A])dnl - AS_VAR_POPDEF([B])dnl - - dnl # Execute ACTION-IF-TRUE / ACTION-IF-FALSE. - if test "$ax_compare_version" = "true" ; then - m4_ifvaln([$4],[$4],[:])dnl - m4_ifvaln([$5],[else $5])dnl - fi -]) dnl AX_COMPARE_VERSION diff --git a/m4/libtool.m4 b/m4/libtool.m4 deleted file mode 100644 index a352a65..0000000 --- a/m4/libtool.m4 +++ /dev/null @@ -1,6656 +0,0 @@ -# libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- -## Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, 2007, -## 2008 Free Software Foundation, Inc. -## Originally 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. - -# serial 52 AC_PROG_LIBTOOL - - -# AC_PROVIDE_IFELSE(MACRO-NAME, IF-PROVIDED, IF-NOT-PROVIDED) -# ----------------------------------------------------------- -# If this macro is not defined by Autoconf, define it here. -m4_ifdef([AC_PROVIDE_IFELSE], - [], - [m4_define([AC_PROVIDE_IFELSE], - [m4_ifdef([AC_PROVIDE_$1], - [$2], [$3])])]) - - -# AC_PROG_LIBTOOL -# --------------- -AC_DEFUN([AC_PROG_LIBTOOL], -[AC_REQUIRE([_AC_PROG_LIBTOOL])dnl -dnl If AC_PROG_CXX has already been expanded, run AC_LIBTOOL_CXX -dnl immediately, otherwise, hook it in at the end of AC_PROG_CXX. - AC_PROVIDE_IFELSE([AC_PROG_CXX], - [AC_LIBTOOL_CXX], - [define([AC_PROG_CXX], defn([AC_PROG_CXX])[AC_LIBTOOL_CXX - ])]) -dnl And a similar setup for Fortran 77 support - AC_PROVIDE_IFELSE([AC_PROG_F77], - [AC_LIBTOOL_F77], - [define([AC_PROG_F77], defn([AC_PROG_F77])[AC_LIBTOOL_F77 -])]) - -dnl Quote A][M_PROG_GCJ so that aclocal doesn't bring it in needlessly. -dnl If either AC_PROG_GCJ or A][M_PROG_GCJ have already been expanded, run -dnl AC_LIBTOOL_GCJ immediately, otherwise, hook it in at the end of both. - AC_PROVIDE_IFELSE([AC_PROG_GCJ], - [AC_LIBTOOL_GCJ], - [AC_PROVIDE_IFELSE([A][M_PROG_GCJ], - [AC_LIBTOOL_GCJ], - [AC_PROVIDE_IFELSE([LT_AC_PROG_GCJ], - [AC_LIBTOOL_GCJ], - [ifdef([AC_PROG_GCJ], - [define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[AC_LIBTOOL_GCJ])]) - ifdef([A][M_PROG_GCJ], - [define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[AC_LIBTOOL_GCJ])]) - ifdef([LT_AC_PROG_GCJ], - [define([LT_AC_PROG_GCJ], - defn([LT_AC_PROG_GCJ])[AC_LIBTOOL_GCJ])])])]) -])])# AC_PROG_LIBTOOL - - -# _AC_PROG_LIBTOOL -# ---------------- -AC_DEFUN([_AC_PROG_LIBTOOL], -[AC_REQUIRE([AC_LIBTOOL_SETUP])dnl -AC_BEFORE([$0],[AC_LIBTOOL_CXX])dnl -AC_BEFORE([$0],[AC_LIBTOOL_F77])dnl -AC_BEFORE([$0],[AC_LIBTOOL_GCJ])dnl - -# This can be used to rebuild libtool when needed -LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" - -# Always use our own libtool. -LIBTOOL='$(SHELL) $(top_builddir)/libtool' -AC_SUBST(LIBTOOL)dnl - -# Prevent multiple expansion -define([AC_PROG_LIBTOOL], []) -])# _AC_PROG_LIBTOOL - - -# AC_LIBTOOL_SETUP -# ---------------- -AC_DEFUN([AC_LIBTOOL_SETUP], -[AC_PREREQ(2.50)dnl -AC_REQUIRE([AC_ENABLE_SHARED])dnl -AC_REQUIRE([AC_ENABLE_STATIC])dnl -AC_REQUIRE([AC_ENABLE_FAST_INSTALL])dnl -AC_REQUIRE([AC_CANONICAL_HOST])dnl -AC_REQUIRE([AC_CANONICAL_BUILD])dnl -AC_REQUIRE([AC_PROG_CC])dnl -AC_REQUIRE([AC_PROG_LD])dnl -AC_REQUIRE([AC_PROG_LD_RELOAD_FLAG])dnl -AC_REQUIRE([AC_PROG_NM])dnl - -AC_REQUIRE([AC_PROG_LN_S])dnl -AC_REQUIRE([AC_DEPLIBS_CHECK_METHOD])dnl -# Autoconf 2.13's AC_OBJEXT and AC_EXEEXT macros only works for C compilers! -AC_REQUIRE([AC_OBJEXT])dnl -AC_REQUIRE([AC_EXEEXT])dnl -dnl -AC_LIBTOOL_SYS_MAX_CMD_LEN -AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE -AC_LIBTOOL_OBJDIR - -AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl -_LT_AC_PROG_ECHO_BACKSLASH - -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 - -# 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 to delay expansion of an escaped shell variable in a -# double_quote_subst'ed string. -delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' - -# Sed substitution to avoid accidental globbing in evaled expressions -no_glob_subst='s/\*/\\\*/g' - -# Constants: -rm="rm -f" - -# Global variables: -default_ofile=libtool -can_build_shared=yes - -# All known linkers require a `.a' archive for static linking (except MSVC, -# which needs '.lib'). -libext=a -ltmain="$ac_aux_dir/ltmain.sh" -ofile="$default_ofile" -with_gnu_ld="$lt_cv_prog_gnu_ld" - -AC_CHECK_TOOL(AR, ar, false) -AC_CHECK_TOOL(RANLIB, ranlib, :) -AC_CHECK_TOOL(STRIP, strip, :) - -old_CC="$CC" -old_CFLAGS="$CFLAGS" - -# Set sane defaults for various variables -test -z "$AR" && AR=ar -test -z "$AR_FLAGS" && AR_FLAGS=cru -test -z "$AS" && AS=as -test -z "$CC" && CC=cc -test -z "$LTCC" && LTCC=$CC -test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS -test -z "$DLLTOOL" && DLLTOOL=dlltool -test -z "$LD" && LD=ld -test -z "$LN_S" && LN_S="ln -s" -test -z "$MAGIC_CMD" && MAGIC_CMD=file -test -z "$NM" && NM=nm -test -z "$SED" && SED=sed -test -z "$OBJDUMP" && OBJDUMP=objdump -test -z "$RANLIB" && RANLIB=: -test -z "$STRIP" && STRIP=: -test -z "$ac_objext" && ac_objext=o - -# 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 - -_LT_CC_BASENAME([$compiler]) - -# Only perform the check for file, if the check method requires it -case $deplibs_check_method in -file_magic*) - if test "$file_magic_cmd" = '$MAGIC_CMD'; then - AC_PATH_MAGIC - fi - ;; -esac - -_LT_REQUIRED_DARWIN_CHECKS - -AC_PROVIDE_IFELSE([AC_LIBTOOL_DLOPEN], enable_dlopen=yes, enable_dlopen=no) -AC_PROVIDE_IFELSE([AC_LIBTOOL_WIN32_DLL], -enable_win32_dll=yes, enable_win32_dll=no) - -AC_ARG_ENABLE([libtool-lock], - [AC_HELP_STRING([--disable-libtool-lock], - [avoid locking (might break parallel builds)])]) -test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes - -AC_ARG_WITH([pic], - [AC_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=default - -# Use C for the default configuration in the libtool script -tagname= -AC_LIBTOOL_LANG_C_CONFIG -_LT_AC_TAGCONFIG -])# AC_LIBTOOL_SETUP - - -# _LT_AC_SYS_COMPILER -# ------------------- -AC_DEFUN([_LT_AC_SYS_COMPILER], -[AC_REQUIRE([AC_PROG_CC])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_AC_SYS_COMPILER - - -# _LT_CC_BASENAME(CC) -# ------------------- -# Calculate cc_basename. Skip known compiler wrappers and cross-prefix. -AC_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 "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` -]) - - -# _LT_COMPILER_BOILERPLATE -# ------------------------ -# Check for compiler boilerplate output or warnings with -# the simple compiler test code. -AC_DEFUN([_LT_COMPILER_BOILERPLATE], -[AC_REQUIRE([LT_AC_PROG_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. -AC_DEFUN([_LT_LINKER_BOILERPLATE], -[AC_REQUIRE([LT_AC_PROG_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 -# -------------------------- -# Check for some things on darwin -AC_DEFUN([_LT_REQUIRED_DARWIN_CHECKS],[ - case $host_os in - rhapsody* | darwin*) - AC_CHECK_TOOL([DSYMUTIL], [dsymutil], [:]) - AC_CHECK_TOOL([NMEDIT], [nmedit], [:]) - - 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. - echo "int foo(void){return 1;}" > conftest.c - $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ - -dynamiclib ${wl}-single_module conftest.c - if test -f libconftest.dylib; then - lt_cv_apple_cc_single_mod=yes - rm -rf libconftest.dylib* - fi - rm conftest.c - 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" - ]) - case $host_os in - rhapsody* | darwin1.[[0123]]) - _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;; - darwin1.*) - _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; - darwin*) - # 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" != ":"; then - _lt_dsymutil="~$DSYMUTIL \$lib || :" - else - _lt_dsymutil= - fi - ;; - esac -]) - -# _LT_AC_SYS_LIBPATH_AIX -# ---------------------- -# 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. -AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX], -[AC_REQUIRE([LT_AC_PROG_SED])dnl -AC_LINK_IFELSE(AC_LANG_PROGRAM,[ -lt_aix_libpath_sed=' - /Import File Strings/,/^$/ { - /^0/ { - s/^0 *\(.*\)$/\1/ - p - } - }' -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 "$aix_libpath"; then - aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` -fi],[]) -if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi -])# _LT_AC_SYS_LIBPATH_AIX - - -# _LT_AC_SHELL_INIT(ARG) -# ---------------------- -AC_DEFUN([_LT_AC_SHELL_INIT], -[ifdef([AC_DIVERSION_NOTICE], - [AC_DIVERT_PUSH(AC_DIVERSION_NOTICE)], - [AC_DIVERT_PUSH(NOTICE)]) -$1 -AC_DIVERT_POP -])# _LT_AC_SHELL_INIT - - -# _LT_AC_PROG_ECHO_BACKSLASH -# -------------------------- -# Add some code to the start of the generated configure script which -# will find an echo command which doesn't interpret backslashes. -AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH], -[_LT_AC_SHELL_INIT([ -# Check that we are running under the correct shell. -SHELL=${CONFIG_SHELL-/bin/sh} - -case X$ECHO in -X*--fallback-echo) - # Remove one level of quotation (which was required for Make). - ECHO=`echo "$ECHO" | sed 's,\\\\\[$]\\[$]0,'[$]0','` - ;; -esac - -echo=${ECHO-echo} -if test "X[$]1" = X--no-reexec; then - # Discard the --no-reexec flag, and continue. - shift -elif test "X[$]1" = X--fallback-echo; then - # Avoid inline document here, it may be left over - : -elif test "X`($echo '\t') 2>/dev/null`" = 'X\t' ; then - # Yippee, $echo works! - : -else - # Restart under the correct shell. - exec $SHELL "[$]0" --no-reexec ${1+"[$]@"} -fi - -if test "X[$]1" = X--fallback-echo; then - # used as fallback echo - shift - cat </dev/null 2>&1 && unset CDPATH - -if test -z "$ECHO"; then -if test "X${echo_test_string+set}" != Xset; then -# find a string as large as possible, as long as the shell can cope with it - for cmd in 'sed 50q "[$]0"' 'sed 20q "[$]0"' 'sed 10q "[$]0"' 'sed 2q "[$]0"' 'echo test'; do - # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ... - if (echo_test_string=`eval $cmd`) 2>/dev/null && - echo_test_string=`eval $cmd` && - (test "X$echo_test_string" = "X$echo_test_string") 2>/dev/null - then - break - fi - done -fi - -if test "X`($echo '\t') 2>/dev/null`" = 'X\t' && - echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` && - test "X$echo_testing_string" = "X$echo_test_string"; then - : -else - # The Solaris, AIX, and Digital Unix default echo programs unquote - # backslashes. This makes it impossible to quote backslashes using - # echo "$something" | sed 's/\\/\\\\/g' - # - # So, first we look for a working echo in the user's PATH. - - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR - for dir in $PATH /usr/ucb; do - IFS="$lt_save_ifs" - if (test -f $dir/echo || test -f $dir/echo$ac_exeext) && - test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' && - echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` && - test "X$echo_testing_string" = "X$echo_test_string"; then - echo="$dir/echo" - break - fi - done - IFS="$lt_save_ifs" - - if test "X$echo" = Xecho; then - # We didn't find a better echo, so look for alternatives. - if test "X`(print -r '\t') 2>/dev/null`" = 'X\t' && - echo_testing_string=`(print -r "$echo_test_string") 2>/dev/null` && - test "X$echo_testing_string" = "X$echo_test_string"; then - # This shell has a builtin print -r that does the trick. - echo='print -r' - elif (test -f /bin/ksh || test -f /bin/ksh$ac_exeext) && - test "X$CONFIG_SHELL" != X/bin/ksh; then - # If we have ksh, try running configure again with it. - ORIGINAL_CONFIG_SHELL=${CONFIG_SHELL-/bin/sh} - export ORIGINAL_CONFIG_SHELL - CONFIG_SHELL=/bin/ksh - export CONFIG_SHELL - exec $CONFIG_SHELL "[$]0" --no-reexec ${1+"[$]@"} - else - # Try using printf. - echo='printf %s\n' - if test "X`($echo '\t') 2>/dev/null`" = 'X\t' && - echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` && - test "X$echo_testing_string" = "X$echo_test_string"; then - # Cool, printf works - : - elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` && - test "X$echo_testing_string" = 'X\t' && - echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` && - test "X$echo_testing_string" = "X$echo_test_string"; then - CONFIG_SHELL=$ORIGINAL_CONFIG_SHELL - export CONFIG_SHELL - SHELL="$CONFIG_SHELL" - export SHELL - echo="$CONFIG_SHELL [$]0 --fallback-echo" - elif echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` && - test "X$echo_testing_string" = 'X\t' && - echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` && - test "X$echo_testing_string" = "X$echo_test_string"; then - echo="$CONFIG_SHELL [$]0 --fallback-echo" - else - # maybe with a smaller string... - prev=: - - for cmd in 'echo test' 'sed 2q "[$]0"' 'sed 10q "[$]0"' 'sed 20q "[$]0"' 'sed 50q "[$]0"'; do - if (test "X$echo_test_string" = "X`eval $cmd`") 2>/dev/null - then - break - fi - prev="$cmd" - done - - if test "$prev" != 'sed 50q "[$]0"'; then - echo_test_string=`eval $prev` - export echo_test_string - exec ${ORIGINAL_CONFIG_SHELL-${CONFIG_SHELL-/bin/sh}} "[$]0" ${1+"[$]@"} - else - # Oops. We lost completely, so just stick with echo. - echo=echo - fi - fi - fi - fi -fi -fi - -# Copy echo and quote the copy suitably for passing to libtool from -# the Makefile, instead of quoting the original, which is used later. -ECHO=$echo -if test "X$ECHO" = "X$CONFIG_SHELL [$]0 --fallback-echo"; then - ECHO="$CONFIG_SHELL \\\$\[$]0 --fallback-echo" -fi - -AC_SUBST(ECHO) -])])# _LT_AC_PROG_ECHO_BACKSLASH - - -# _LT_AC_LOCK -# ----------- -AC_DEFUN([_LT_AC_LOCK], -[AC_ARG_ENABLE([libtool-lock], - [AC_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 __oline__ "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*|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*) - 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_TRY_LINK([],[],[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* - ;; - -AC_PROVIDE_IFELSE([AC_LIBTOOL_WIN32_DLL], -[*-*-cygwin* | *-*-mingw* | *-*-pw32*) - AC_CHECK_TOOL(DLLTOOL, dlltool, false) - AC_CHECK_TOOL(AS, as, false) - AC_CHECK_TOOL(OBJDUMP, objdump, false) - ;; - ]) -esac - -need_locks="$enable_libtool_lock" - -])# _LT_AC_LOCK - - -# AC_LIBTOOL_COMPILER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, -# [OUTPUT-FILE], [ACTION-SUCCESS], [ACTION-FAILURE]) -# ---------------------------------------------------------------- -# Check whether the given compiler option works -AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], -[AC_REQUIRE([LT_AC_PROG_SED]) -AC_CACHE_CHECK([$1], [$2], - [$2=no - ifelse([$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:__oline__: $lt_compile\"" >&AS_MESSAGE_LOG_FD) - (eval "$lt_compile" 2>conftest.err) - ac_status=$? - cat conftest.err >&AS_MESSAGE_LOG_FD - echo "$as_me:__oline__: \$? = $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 "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/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 - ifelse([$5], , :, [$5]) -else - ifelse([$6], , :, [$6]) -fi -])# AC_LIBTOOL_COMPILER_OPTION - - -# AC_LIBTOOL_LINKER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, -# [ACTION-SUCCESS], [ACTION-FAILURE]) -# ------------------------------------------------------------ -# Check whether the given compiler option works -AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], -[AC_REQUIRE([LT_AC_PROG_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 "X$_lt_linker_boilerplate" | $Xsed -e '/^$/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 - ifelse([$4], , :, [$4]) -else - ifelse([$5], , :, [$5]) -fi -])# AC_LIBTOOL_LINKER_OPTION - - -# AC_LIBTOOL_SYS_MAX_CMD_LEN -# -------------------------- -AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], -[# 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*) - # 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; - ;; - - 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 - SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} - while (test "X"`$SHELL [$]0 --fallback-echo "X$teststring" 2>/dev/null` \ - = "XX$teststring") >/dev/null 2>&1 && - new_result=`expr "X$teststring" : ".*" 2>&1` && - lt_cv_sys_max_cmd_len=$new_result && - test $i != 17 # 1/2 MB should be enough - do - i=`expr $i + 1` - teststring=$teststring$teststring - done - 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 -])# AC_LIBTOOL_SYS_MAX_CMD_LEN - - -# _LT_AC_CHECK_DLFCN -# ------------------ -AC_DEFUN([_LT_AC_CHECK_DLFCN], -[AC_CHECK_HEADERS(dlfcn.h)dnl -])# _LT_AC_CHECK_DLFCN - - -# _LT_AC_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE, -# ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING) -# --------------------------------------------------------------------- -AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF], -[AC_REQUIRE([_LT_AC_CHECK_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 < -#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 - -#ifdef __cplusplus -extern "C" void exit (int); -#endif - -void fnord() { int i=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; - /* dlclose (self); */ - } - else - puts (dlerror ()); - - exit (status); -}] -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_AC_TRY_DLOPEN_SELF - - -# AC_LIBTOOL_DLOPEN_SELF -# ---------------------- -AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], -[AC_REQUIRE([_LT_AC_CHECK_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*) - 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_AC_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_AC_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 -])# AC_LIBTOOL_DLOPEN_SELF - - -# AC_LIBTOOL_PROG_CC_C_O([TAGNAME]) -# --------------------------------- -# Check to see if options -c and -o are simultaneously supported by compiler -AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O], -[AC_REQUIRE([LT_AC_PROG_SED])dnl -AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl -AC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext], - [_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)], - [_LT_AC_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:__oline__: $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:__oline__: \$? = $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 "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/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_AC_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 .. - rmdir conftest - $rm conftest* -]) -])# AC_LIBTOOL_PROG_CC_C_O - - -# AC_LIBTOOL_SYS_HARD_LINK_LOCKS([TAGNAME]) -# ----------------------------------------- -# Check to see if we can do hard links to lock some files if needed -AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], -[AC_REQUIRE([_LT_AC_LOCK])dnl - -hard_links="nottested" -if test "$_LT_AC_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 -])# AC_LIBTOOL_SYS_HARD_LINK_LOCKS - - -# AC_LIBTOOL_OBJDIR -# ----------------- -AC_DEFUN([AC_LIBTOOL_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 -])# AC_LIBTOOL_OBJDIR - - -# AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH([TAGNAME]) -# ---------------------------------------------- -# Check hardcoding attributes. -AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], -[AC_MSG_CHECKING([how to hardcode library paths into programs]) -_LT_AC_TAGVAR(hardcode_action, $1)= -if test -n "$_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)" || \ - test -n "$_LT_AC_TAGVAR(runpath_var, $1)" || \ - test "X$_LT_AC_TAGVAR(hardcode_automatic, $1)" = "Xyes" ; then - - # We can hardcode non-existant directories. - if test "$_LT_AC_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_AC_TAGVAR(hardcode_shlibpath_var, $1)" != no && - test "$_LT_AC_TAGVAR(hardcode_minus_L, $1)" != no; then - # Linking always hardcodes the temporary library directory. - _LT_AC_TAGVAR(hardcode_action, $1)=relink - else - # We can link without hardcoding, and we can hardcode nonexisting dirs. - _LT_AC_TAGVAR(hardcode_action, $1)=immediate - fi -else - # We cannot hardcode anything, or else we can only hardcode existing - # directories. - _LT_AC_TAGVAR(hardcode_action, $1)=unsupported -fi -AC_MSG_RESULT([$_LT_AC_TAGVAR(hardcode_action, $1)]) - -if test "$_LT_AC_TAGVAR(hardcode_action, $1)" = relink; 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 -])# AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH - - -# AC_LIBTOOL_SYS_LIB_STRIP -# ------------------------ -AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP], -[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 -])# AC_LIBTOOL_SYS_LIB_STRIP - - -# AC_LIBTOOL_SYS_DYNAMIC_LINKER -# ----------------------------- -# PORTME Fill in your ld.so characteristics -AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER], -[AC_REQUIRE([LT_AC_PROG_SED])dnl -AC_MSG_CHECKING([dynamic linker characteristics]) -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" -m4_if($1,[],[ -if test "$GCC" = yes; then - case $host_os in - darwin*) lt_awk_arg="/^libraries:/,/LR/" ;; - *) lt_awk_arg="/^libraries:/" ;; - esac - lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e "s,=/,/,g"` - if echo "$lt_search_path_spec" | grep ';' >/dev/null ; then - # 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 -e 's/;/ /g'` - else - lt_search_path_spec=`echo "$lt_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` - fi - # 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; } -}'` - sys_lib_search_path_spec=`echo $lt_search_path_spec` -else - sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" -fi]) -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*) - 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=`$echo "X$lib" | $Xsed -e '\''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' - ;; - -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*) - version_type=windows - shrext_cmds=".dll" - need_version=no - need_lib_prefix=no - - case $GCC,$host_os in - yes,cygwin* | yes,mingw* | yes,pw32*) - 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' - 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="/usr/lib /lib/w32api /lib /usr/local/lib" - ;; - mingw*) - # MinGW DLLs use traditional 'lib' prefix - soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' - sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` - if echo "$sys_lib_search_path_spec" | [grep ';[c-zC-Z]:/' >/dev/null]; then - # It is most probably a Windows format PATH printed by - # mingw gcc, but we are running on Cygwin. Gcc prints its search - # path with ; separators, and with drive letters. We can handle the - # drive letters (cygwin fileutils understands them), so leave them, - # especially as we might pass files found there to a mingw objdump, - # which wouldn't understand a cygwinified path. Ahh. - 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 - ;; - 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 - ;; - - *) - library_names_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext} $libname.lib' - ;; - esac - dynamic_linker='Win32 ld.exe' - # 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}${versuffix}$shared_ext ${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 - 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' - ;; - -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) - 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 - # 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;/^$/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' - ;; - -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=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 - ;; - -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 - export_dynamic_flag_spec='${wl}-Blargedynsym' - 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 - 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' - shlibpath_overrides_runpath=no - else - sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' - shlibpath_overrides_runpath=yes - 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' - ;; - -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 - -AC_CACHE_VAL([lt_cv_sys_lib_search_path_spec], -[lt_cv_sys_lib_search_path_spec="$sys_lib_search_path_spec"]) -sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" -AC_CACHE_VAL([lt_cv_sys_lib_dlsearch_path_spec], -[lt_cv_sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec"]) -sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" - -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 -])# AC_LIBTOOL_SYS_DYNAMIC_LINKER - - -# _LT_AC_TAGCONFIG -# ---------------- -AC_DEFUN([_LT_AC_TAGCONFIG], -[AC_REQUIRE([LT_AC_PROG_SED])dnl -AC_ARG_WITH([tags], - [AC_HELP_STRING([--with-tags@<:@=TAGS@:>@], - [include additional configurations @<:@automatic@:>@])], - [tagnames="$withval"]) - -if test -f "$ltmain" && test -n "$tagnames"; then - if test ! -f "${ofile}"; then - AC_MSG_WARN([output file `$ofile' does not exist]) - fi - - if test -z "$LTCC"; then - eval "`$SHELL ${ofile} --config | grep '^LTCC='`" - if test -z "$LTCC"; then - AC_MSG_WARN([output file `$ofile' does not look like a libtool script]) - else - AC_MSG_WARN([using `LTCC=$LTCC', extracted from `$ofile']) - fi - fi - if test -z "$LTCFLAGS"; then - eval "`$SHELL ${ofile} --config | grep '^LTCFLAGS='`" - fi - - # Extract list of available tagged configurations in $ofile. - # Note that this assumes the entire list is on one line. - available_tags=`grep "^available_tags=" "${ofile}" | $SED -e 's/available_tags=\(.*$\)/\1/' -e 's/\"//g'` - - lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," - for tagname in $tagnames; do - IFS="$lt_save_ifs" - # Check whether tagname contains only valid characters - case `$echo "X$tagname" | $Xsed -e 's:[[-_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890,/]]::g'` in - "") ;; - *) AC_MSG_ERROR([invalid tag name: $tagname]) - ;; - esac - - if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$" < "${ofile}" > /dev/null - then - AC_MSG_ERROR([tag name \"$tagname\" already exists]) - fi - - # Update the list of available tags. - if test -n "$tagname"; then - echo appending configuration tag \"$tagname\" to $ofile - - case $tagname in - CXX) - if test -n "$CXX" && ( test "X$CXX" != "Xno" && - ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || - (test "X$CXX" != "Xg++"))) ; then - AC_LIBTOOL_LANG_CXX_CONFIG - else - tagname="" - fi - ;; - - F77) - if test -n "$F77" && test "X$F77" != "Xno"; then - AC_LIBTOOL_LANG_F77_CONFIG - else - tagname="" - fi - ;; - - GCJ) - if test -n "$GCJ" && test "X$GCJ" != "Xno"; then - AC_LIBTOOL_LANG_GCJ_CONFIG - else - tagname="" - fi - ;; - - RC) - AC_LIBTOOL_LANG_RC_CONFIG - ;; - - *) - AC_MSG_ERROR([Unsupported tag name: $tagname]) - ;; - esac - - # Append the new tag name to the list of available tags. - if test -n "$tagname" ; then - available_tags="$available_tags $tagname" - fi - fi - done - IFS="$lt_save_ifs" - - # Now substitute the updated list of available tags. - if eval "sed -e 's/^available_tags=.*\$/available_tags=\"$available_tags\"/' \"$ofile\" > \"${ofile}T\""; then - mv "${ofile}T" "$ofile" - chmod +x "$ofile" - else - rm -f "${ofile}T" - AC_MSG_ERROR([unable to update list of available tagged configurations.]) - fi -fi -])# _LT_AC_TAGCONFIG - - -# AC_LIBTOOL_DLOPEN -# ----------------- -# enable checks for dlopen support -AC_DEFUN([AC_LIBTOOL_DLOPEN], - [AC_BEFORE([$0],[AC_LIBTOOL_SETUP]) -])# AC_LIBTOOL_DLOPEN - - -# AC_LIBTOOL_WIN32_DLL -# -------------------- -# declare package support for building win32 DLLs -AC_DEFUN([AC_LIBTOOL_WIN32_DLL], -[AC_BEFORE([$0], [AC_LIBTOOL_SETUP]) -])# AC_LIBTOOL_WIN32_DLL - - -# AC_ENABLE_SHARED([DEFAULT]) -# --------------------------- -# implement the --enable-shared flag -# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. -AC_DEFUN([AC_ENABLE_SHARED], -[define([AC_ENABLE_SHARED_DEFAULT], ifelse($1, no, no, yes))dnl -AC_ARG_ENABLE([shared], - [AC_HELP_STRING([--enable-shared@<:@=PKGS@:>@], - [build shared libraries @<:@default=]AC_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=]AC_ENABLE_SHARED_DEFAULT) -])# AC_ENABLE_SHARED - - -# AC_DISABLE_SHARED -# ----------------- -# set the default shared flag to --disable-shared -AC_DEFUN([AC_DISABLE_SHARED], -[AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl -AC_ENABLE_SHARED(no) -])# AC_DISABLE_SHARED - - -# AC_ENABLE_STATIC([DEFAULT]) -# --------------------------- -# implement the --enable-static flag -# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. -AC_DEFUN([AC_ENABLE_STATIC], -[define([AC_ENABLE_STATIC_DEFAULT], ifelse($1, no, no, yes))dnl -AC_ARG_ENABLE([static], - [AC_HELP_STRING([--enable-static@<:@=PKGS@:>@], - [build static libraries @<:@default=]AC_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=]AC_ENABLE_STATIC_DEFAULT) -])# AC_ENABLE_STATIC - - -# AC_DISABLE_STATIC -# ----------------- -# set the default static flag to --disable-static -AC_DEFUN([AC_DISABLE_STATIC], -[AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl -AC_ENABLE_STATIC(no) -])# AC_DISABLE_STATIC - - -# AC_ENABLE_FAST_INSTALL([DEFAULT]) -# --------------------------------- -# implement the --enable-fast-install flag -# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. -AC_DEFUN([AC_ENABLE_FAST_INSTALL], -[define([AC_ENABLE_FAST_INSTALL_DEFAULT], ifelse($1, no, no, yes))dnl -AC_ARG_ENABLE([fast-install], - [AC_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@], - [optimize for fast installation @<:@default=]AC_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=]AC_ENABLE_FAST_INSTALL_DEFAULT) -])# AC_ENABLE_FAST_INSTALL - - -# AC_DISABLE_FAST_INSTALL -# ----------------------- -# set the default to --disable-fast-install -AC_DEFUN([AC_DISABLE_FAST_INSTALL], -[AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl -AC_ENABLE_FAST_INSTALL(no) -])# AC_DISABLE_FAST_INSTALL - - -# AC_LIBTOOL_PICMODE([MODE]) -# -------------------------- -# implement the --with-pic flag -# MODE is either `yes' or `no'. If omitted, it defaults to `both'. -AC_DEFUN([AC_LIBTOOL_PICMODE], -[AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl -pic_mode=ifelse($#,1,$1,default) -])# AC_LIBTOOL_PICMODE - - -# AC_PROG_EGREP -# ------------- -# This is predefined starting with Autoconf 2.54, so this conditional -# definition can be removed once we require Autoconf 2.54 or later. -m4_ifndef([AC_PROG_EGREP], [AC_DEFUN([AC_PROG_EGREP], -[AC_CACHE_CHECK([for egrep], [ac_cv_prog_egrep], - [if echo a | (grep -E '(a|b)') >/dev/null 2>&1 - then ac_cv_prog_egrep='grep -E' - else ac_cv_prog_egrep='egrep' - fi]) - EGREP=$ac_cv_prog_egrep - AC_SUBST([EGREP]) -])]) - - -# AC_PATH_TOOL_PREFIX -# ------------------- -# find a file program which can recognize shared library -AC_DEFUN([AC_PATH_TOOL_PREFIX], -[AC_REQUIRE([AC_PROG_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="ifelse([$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 <&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 - -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 -])# AC_PATH_TOOL_PREFIX - - -# AC_PATH_MAGIC -# ------------- -# find a file program which can recognize a shared library -AC_DEFUN([AC_PATH_MAGIC], -[AC_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 - AC_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH) - else - MAGIC_CMD=: - fi -fi -])# AC_PATH_MAGIC - - -# AC_PROG_LD -# ---------- -# find the pathname to the GNU or non-GNU linker -AC_DEFUN([AC_PROG_LD], -[AC_ARG_WITH([gnu-ld], - [AC_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]) -AC_REQUIRE([LT_AC_PROG_SED])dnl -AC_REQUIRE([AC_PROG_CC])dnl -AC_REQUIRE([AC_CANONICAL_HOST])dnl -AC_REQUIRE([AC_CANONICAL_BUILD])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 - lt_cv_deplibs_check_method='file_magic file format pei*-i386(.*architecture: i386)?' - lt_cv_file_magic_cmd='$OBJDUMP -f' - fi - ;; - -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 - ;; - -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]) 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) - lt_cv_deplibs_check_method=pass_all - ;; - -netbsd*) - 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=unknown - ;; - -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 - ;; - -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 - ;; - -sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) - lt_cv_deplibs_check_method=pass_all - ;; -esac -]) -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 -])# AC_DEPLIBS_CHECK_METHOD - - -# AC_PROG_NM -# ---------- -# find the pathname to a BSD-compatible name lister -AC_DEFUN([AC_PROG_NM], -[AC_CACHE_CHECK([for BSD-compatible 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 - test -z "$lt_cv_path_NM" && lt_cv_path_NM=nm -fi]) -NM="$lt_cv_path_NM" -])# AC_PROG_NM - - -# AC_CHECK_LIBM -# ------------- -# check for math library -AC_DEFUN([AC_CHECK_LIBM], -[AC_REQUIRE([AC_CANONICAL_HOST])dnl -LIBM= -case $host in -*-*-beos* | *-*-cygwin* | *-*-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_CHECK_LIBM - - -# AC_LIBLTDL_CONVENIENCE([DIRECTORY]) -# ----------------------------------- -# sets LIBLTDL to the link flags for the libltdl convenience library and -# LTDLINCL to the include flags for the libltdl header and adds -# --enable-ltdl-convenience to the configure arguments. Note that -# AC_CONFIG_SUBDIRS is not called here. If DIRECTORY is not provided, -# it is assumed to be `libltdl'. LIBLTDL will be prefixed with -# '${top_builddir}/' and LTDLINCL will be prefixed with '${top_srcdir}/' -# (note the single quotes!). If your package is not flat and you're not -# using automake, define top_builddir and top_srcdir appropriately in -# the Makefiles. -AC_DEFUN([AC_LIBLTDL_CONVENIENCE], -[AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl - case $enable_ltdl_convenience in - no) AC_MSG_ERROR([this package needs a convenience libltdl]) ;; - "") enable_ltdl_convenience=yes - ac_configure_args="$ac_configure_args --enable-ltdl-convenience" ;; - esac - LIBLTDL='${top_builddir}/'ifelse($#,1,[$1],['libltdl'])/libltdlc.la - LTDLINCL='-I${top_srcdir}/'ifelse($#,1,[$1],['libltdl']) - # For backwards non-gettext consistent compatibility... - INCLTDL="$LTDLINCL" -])# AC_LIBLTDL_CONVENIENCE - - -# AC_LIBLTDL_INSTALLABLE([DIRECTORY]) -# ----------------------------------- -# sets LIBLTDL to the link flags for the libltdl installable library and -# LTDLINCL to the include flags for the libltdl header and adds -# --enable-ltdl-install to the configure arguments. Note that -# AC_CONFIG_SUBDIRS is not called here. If DIRECTORY is not provided, -# and an installed libltdl is not found, it is assumed to be `libltdl'. -# LIBLTDL will be prefixed with '${top_builddir}/'# and LTDLINCL with -# '${top_srcdir}/' (note the single quotes!). If your package is not -# flat and you're not using automake, define top_builddir and top_srcdir -# appropriately in the Makefiles. -# In the future, this macro may have to be called after AC_PROG_LIBTOOL. -AC_DEFUN([AC_LIBLTDL_INSTALLABLE], -[AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl - AC_CHECK_LIB(ltdl, lt_dlinit, - [test x"$enable_ltdl_install" != xyes && enable_ltdl_install=no], - [if test x"$enable_ltdl_install" = xno; then - AC_MSG_WARN([libltdl not installed, but installation disabled]) - else - enable_ltdl_install=yes - fi - ]) - if test x"$enable_ltdl_install" = x"yes"; then - ac_configure_args="$ac_configure_args --enable-ltdl-install" - LIBLTDL='${top_builddir}/'ifelse($#,1,[$1],['libltdl'])/libltdl.la - LTDLINCL='-I${top_srcdir}/'ifelse($#,1,[$1],['libltdl']) - else - ac_configure_args="$ac_configure_args --enable-ltdl-install=no" - LIBLTDL="-lltdl" - LTDLINCL= - fi - # For backwards non-gettext consistent compatibility... - INCLTDL="$LTDLINCL" -])# AC_LIBLTDL_INSTALLABLE - - -# AC_LIBTOOL_CXX -# -------------- -# enable support for C++ libraries -AC_DEFUN([AC_LIBTOOL_CXX], -[AC_REQUIRE([_LT_AC_LANG_CXX]) -])# AC_LIBTOOL_CXX - - -# _LT_AC_LANG_CXX -# --------------- -AC_DEFUN([_LT_AC_LANG_CXX], -[AC_REQUIRE([AC_PROG_CXX]) -AC_REQUIRE([_LT_AC_PROG_CXXCPP]) -_LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}CXX]) -])# _LT_AC_LANG_CXX - -# _LT_AC_PROG_CXXCPP -# ------------------ -AC_DEFUN([_LT_AC_PROG_CXXCPP], -[ -AC_REQUIRE([AC_PROG_CXX]) -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 -fi -])# _LT_AC_PROG_CXXCPP - -# AC_LIBTOOL_F77 -# -------------- -# enable support for Fortran 77 libraries -AC_DEFUN([AC_LIBTOOL_F77], -[AC_REQUIRE([_LT_AC_LANG_F77]) -])# AC_LIBTOOL_F77 - - -# _LT_AC_LANG_F77 -# --------------- -AC_DEFUN([_LT_AC_LANG_F77], -[AC_REQUIRE([AC_PROG_F77]) -_LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}F77]) -])# _LT_AC_LANG_F77 - - -# AC_LIBTOOL_GCJ -# -------------- -# enable support for GCJ libraries -AC_DEFUN([AC_LIBTOOL_GCJ], -[AC_REQUIRE([_LT_AC_LANG_GCJ]) -])# AC_LIBTOOL_GCJ - - -# _LT_AC_LANG_GCJ -# --------------- -AC_DEFUN([_LT_AC_LANG_GCJ], -[AC_PROVIDE_IFELSE([AC_PROG_GCJ],[], - [AC_PROVIDE_IFELSE([A][M_PROG_GCJ],[], - [AC_PROVIDE_IFELSE([LT_AC_PROG_GCJ],[], - [ifdef([AC_PROG_GCJ],[AC_REQUIRE([AC_PROG_GCJ])], - [ifdef([A][M_PROG_GCJ],[AC_REQUIRE([A][M_PROG_GCJ])], - [AC_REQUIRE([A][C_PROG_GCJ_OR_A][M_PROG_GCJ])])])])])]) -_LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}GCJ]) -])# _LT_AC_LANG_GCJ - - -# AC_LIBTOOL_RC -# ------------- -# enable support for Windows resource files -AC_DEFUN([AC_LIBTOOL_RC], -[AC_REQUIRE([LT_AC_PROG_RC]) -_LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}RC]) -])# AC_LIBTOOL_RC - - -# AC_LIBTOOL_LANG_C_CONFIG -# ------------------------ -# Ensure that the configuration vars for the C compiler are -# suitably defined. Those variables are subsequently used by -# AC_LIBTOOL_CONFIG to write the compiler configuration to `libtool'. -AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG], [_LT_AC_LANG_C_CONFIG]) -AC_DEFUN([_LT_AC_LANG_C_CONFIG], -[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_AC_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_AC_SYS_COMPILER - -# 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... -AC_LIBTOOL_PROG_COMPILER_NO_RTTI($1) -AC_LIBTOOL_PROG_COMPILER_PIC($1) -AC_LIBTOOL_PROG_CC_C_O($1) -AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1) -AC_LIBTOOL_PROG_LD_SHLIBS($1) -AC_LIBTOOL_SYS_DYNAMIC_LINKER($1) -AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1) -AC_LIBTOOL_SYS_LIB_STRIP -AC_LIBTOOL_DLOPEN_SELF - -# 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]) - -AC_LIBTOOL_CONFIG($1) - -AC_LANG_POP -CC="$lt_save_CC" -])# AC_LIBTOOL_LANG_C_CONFIG - - -# AC_LIBTOOL_LANG_CXX_CONFIG -# -------------------------- -# Ensure that the configuration vars for the C compiler are -# suitably defined. Those variables are subsequently used by -# AC_LIBTOOL_CONFIG to write the compiler configuration to `libtool'. -AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG], [_LT_AC_LANG_CXX_CONFIG(CXX)]) -AC_DEFUN([_LT_AC_LANG_CXX_CONFIG], -[AC_LANG_PUSH(C++) -AC_REQUIRE([AC_PROG_CXX]) -AC_REQUIRE([_LT_AC_PROG_CXXCPP]) - -_LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no -_LT_AC_TAGVAR(allow_undefined_flag, $1)= -_LT_AC_TAGVAR(always_export_symbols, $1)=no -_LT_AC_TAGVAR(archive_expsym_cmds, $1)= -_LT_AC_TAGVAR(export_dynamic_flag_spec, $1)= -_LT_AC_TAGVAR(hardcode_direct, $1)=no -_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)= -_LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= -_LT_AC_TAGVAR(hardcode_libdir_separator, $1)= -_LT_AC_TAGVAR(hardcode_minus_L, $1)=no -_LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported -_LT_AC_TAGVAR(hardcode_automatic, $1)=no -_LT_AC_TAGVAR(module_cmds, $1)= -_LT_AC_TAGVAR(module_expsym_cmds, $1)= -_LT_AC_TAGVAR(link_all_deplibs, $1)=unknown -_LT_AC_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds -_LT_AC_TAGVAR(no_undefined_flag, $1)= -_LT_AC_TAGVAR(whole_archive_flag_spec, $1)= -_LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=no - -# Dependencies to place before and after the object being linked: -_LT_AC_TAGVAR(predep_objects, $1)= -_LT_AC_TAGVAR(postdep_objects, $1)= -_LT_AC_TAGVAR(predeps, $1)= -_LT_AC_TAGVAR(postdeps, $1)= -_LT_AC_TAGVAR(compiler_lib_search_path, $1)= -_LT_AC_TAGVAR(compiler_lib_search_dirs, $1)= - -# Source file extension for C++ test sources. -ac_ext=cpp - -# Object file extension for compiled C++ test sources. -objext=o -_LT_AC_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(int, char *[[]]) { return(0); }' - -# ltmain only uses $CC for tagged configurations so make sure $CC is set. -_LT_AC_SYS_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_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++"} -compiler=$CC -_LT_AC_TAGVAR(compiler, $1)=$CC -_LT_CC_BASENAME([$compiler]) - -# We don't want -fno-exception wen compiling C++ code, so set the -# no_builtin_flag separately -if test "$GXX" = yes; then - _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' -else - _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= -fi - -if test "$GXX" = yes; then - # Set up default GNU C++ configuration - - AC_PROG_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_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' - - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' - _LT_AC_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_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' - else - _LT_AC_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_AC_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 "\-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_AC_TAGVAR(ld_shlibs, $1)=yes -case $host_os in - aix3*) - # FIXME: insert proper C++ library support - _LT_AC_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_AC_TAGVAR(archive_cmds, $1)='' - _LT_AC_TAGVAR(hardcode_direct, $1)=yes - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':' - _LT_AC_TAGVAR(link_all_deplibs, $1)=yes - - 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_AC_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_AC_TAGVAR(hardcode_minus_L, $1)=yes - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_AC_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 - - # It seems that -bexpall does not export symbols beginning with - # underscore (_), so it is better to generate a list of symbols to export. - _LT_AC_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_AC_TAGVAR(allow_undefined_flag, $1)='-berok' - # Determine the default libpath from the value encoded in an empty executable. - _LT_AC_SYS_LIBPATH_AIX - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" - - _LT_AC_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 echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" - else - if test "$host_cpu" = ia64; then - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' - _LT_AC_TAGVAR(allow_undefined_flag, $1)="-z nodefs" - _LT_AC_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_AC_SYS_LIBPATH_AIX - _LT_AC_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_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' - _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' - # Exported symbols can be pulled into shared objects from archives - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='$convenience' - _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes - # This is similar to how AIX traditionally builds its shared libraries. - _LT_AC_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_AC_TAGVAR(allow_undefined_flag, $1)=unsupported - # Joseph Beckenbach says some releases of gcc - # support --undefined. This deserves some investigation. FIXME - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - else - _LT_AC_TAGVAR(ld_shlibs, $1)=no - fi - ;; - - chorus*) - case $cc_basename in - *) - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - esac - ;; - - cygwin* | mingw* | pw32*) - # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, - # as there is no search path for DLLs. - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported - _LT_AC_TAGVAR(always_export_symbols, $1)=no - _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes - - if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then - _LT_AC_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_AC_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_AC_TAGVAR(ld_shlibs, $1)=no - fi - ;; - darwin* | rhapsody*) - _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no - _LT_AC_TAGVAR(hardcode_direct, $1)=no - _LT_AC_TAGVAR(hardcode_automatic, $1)=yes - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='' - _LT_AC_TAGVAR(link_all_deplibs, $1)=yes - _LT_AC_TAGVAR(allow_undefined_flag, $1)="$_lt_dar_allow_undefined" - if test "$GXX" = yes ; then - output_verbose_link_cmd='echo' - _LT_AC_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_AC_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" - _LT_AC_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_AC_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}" - if test "$lt_cv_apple_cc_single_mod" != "yes"; then - _LT_AC_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_AC_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 - case $cc_basename in - xlc*) - output_verbose_link_cmd='echo' - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj ${wl}-single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $xlcverstring' - _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' - # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj ${wl}-single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $xlcverstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' - _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' - ;; - *) - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - esac - fi - ;; - - dgux*) - case $cc_basename in - ec++*) - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - ghcx*) - # Green Hills C++ Compiler - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - *) - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - esac - ;; - freebsd[[12]]*) - # C++ shared libraries reported to be fairly broken before switch to ELF - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - freebsd-elf*) - _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no - ;; - freebsd* | dragonfly*) - # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF - # conventions - _LT_AC_TAGVAR(ld_shlibs, $1)=yes - ;; - gnu*) - ;; - hpux9*) - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' - _LT_AC_TAGVAR(hardcode_direct, $1)=yes - _LT_AC_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_AC_TAGVAR(ld_shlibs, $1)=no - ;; - aCC*) - _LT_AC_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) | grep "[[-]]L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' - ;; - *) - if test "$GXX" = yes; then - _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$CC -shared -nostdlib -fPIC ${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_AC_TAGVAR(ld_shlibs, $1)=no - fi - ;; - esac - ;; - hpux10*|hpux11*) - if test $with_gnu_ld = no; then - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: - - case $host_cpu in - hppa*64*|ia64*) ;; - *) - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' - ;; - esac - fi - case $host_cpu in - hppa*64*|ia64*) - _LT_AC_TAGVAR(hardcode_direct, $1)=no - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - *) - _LT_AC_TAGVAR(hardcode_direct, $1)=yes - _LT_AC_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_AC_TAGVAR(ld_shlibs, $1)=no - ;; - aCC*) - case $host_cpu in - hppa*64*) - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - ;; - ia64*) - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - ;; - *) - _LT_AC_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; echo $list' - ;; - *) - if test "$GXX" = yes; then - if test $with_gnu_ld = no; then - case $host_cpu in - hppa*64*) - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - ;; - ia64*) - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - ;; - *) - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${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_AC_TAGVAR(ld_shlibs, $1)=no - fi - ;; - esac - ;; - interix[[3-9]]*) - _LT_AC_TAGVAR(hardcode_direct, $1)=no - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - _LT_AC_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_AC_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_AC_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_AC_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && echo -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_AC_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_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - else - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` -o $lib' - fi - fi - _LT_AC_TAGVAR(link_all_deplibs, $1)=yes - ;; - esac - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: - ;; - linux* | k*bsd*-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_AC_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_AC_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; echo $list' - - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath,$libdir' - _LT_AC_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_AC_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' - ;; - icpc*) - # 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_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_AC_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_AC_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_AC_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_AC_TAGVAR(archive_cmds_need_lc, $1)=no - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' - ;; - pgCC* | pgcpp*) - # Portland Group C++ compiler - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' - _LT_AC_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' - - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' - ;; - cxx*) - # Compaq C++ - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_AC_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_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' - _LT_AC_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=`echo $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; echo $list' - ;; - *) - case `$CC -V 2>&1 | sed 5q` in - *Sun\ C*) - # Sun C++ 5.9 - _LT_AC_TAGVAR(no_undefined_flag, $1)=' -zdefs' - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - _LT_AC_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_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' - _LT_AC_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; $echo \"$new_convenience\"` ${wl}--no-whole-archive' - - # Not sure whether something based on - # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 - # would be better. - output_verbose_link_cmd='echo' - - # 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_AC_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' - ;; - esac - ;; - esac - ;; - lynxos*) - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - m88k*) - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - mvs*) - case $cc_basename in - cxx*) - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - *) - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - esac - ;; - netbsd*) - if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' - wlarc= - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' - _LT_AC_TAGVAR(hardcode_direct, $1)=yes - _LT_AC_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::"' - ;; - openbsd2*) - # C++ shared libraries are fairly broken - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - openbsd*) - if test -f /usr/libexec/ld.so; then - _LT_AC_TAGVAR(hardcode_direct, $1)=yes - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' - _LT_AC_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_AC_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_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' - fi - output_verbose_link_cmd='echo' - else - _LT_AC_TAGVAR(ld_shlibs, $1)=no - fi - ;; - osf3*) - 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_AC_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_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: - - # Archives containing C++ object files must be created using - # "CC -Bstatic", where "CC" is the KAI C++ compiler. - _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' - - ;; - RCC*) - # Rational C++ 2.4.1 - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - cxx*) - _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && echo ${wl}-set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' - - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - _LT_AC_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=`echo $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; echo $list' - ;; - *) - if test "$GXX" = yes && test "$with_gnu_ld" = no; then - _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' - _LT_AC_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" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - _LT_AC_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 "\-L"' - - else - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - fi - ;; - esac - ;; - 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_AC_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_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: - - # Archives containing C++ object files must be created using - # the KAI C++ compiler. - _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs' - ;; - RCC*) - # Rational C++ 2.4.1 - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - cxx*) - _LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' - _LT_AC_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_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' - _LT_AC_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=`echo $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; echo $list' - ;; - *) - if test "$GXX" = yes && test "$with_gnu_ld" = no; then - _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - _LT_AC_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 "\-L"' - - else - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - fi - ;; - esac - ;; - psos*) - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - sunos4*) - case $cc_basename in - CC*) - # Sun C++ 4.x - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - lcc*) - # Lucid - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - *) - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - esac - ;; - solaris*) - case $cc_basename in - CC*) - # Sun C++ 4.2, 5.x and Centerline C++ - _LT_AC_TAGVAR(archive_cmds_need_lc,$1)=yes - _LT_AC_TAGVAR(no_undefined_flag, $1)=' -zdefs' - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - _LT_AC_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_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' - _LT_AC_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_AC_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' - ;; - esac - _LT_AC_TAGVAR(link_all_deplibs, $1)=yes - - output_verbose_link_cmd='echo' - - # 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_AC_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' - ;; - gcx*) - # Green Hills C++ Compiler - _LT_AC_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_AC_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_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-z ${wl}defs' - if $CC --version | grep -v '^2\.7' > /dev/null; then - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ - $CC -shared -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 \"\-L\"" - else - # g++ 2.7 appears to require `-G' NOT `-shared' on this - # platform. - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' - _LT_AC_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 \"\-L\"" - fi - - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $wl$libdir' - case $host_os in - solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; - *) - _LT_AC_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_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' - _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - runpath_var='LD_RUN_PATH' - - case $cc_basename in - CC*) - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - ;; - *) - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_AC_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. - # 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. - # So that behaviour is only enabled if SCOABSPATH is set to a - # non-empty value in the environment. Most likely only useful for - # creating official distributions of packages. - # This is a hack until libtool officially supports absolute path - # names for shared libraries. - _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' - _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' - _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':' - _LT_AC_TAGVAR(link_all_deplibs, $1)=yes - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' - runpath_var='LD_RUN_PATH' - - case $cc_basename in - CC*) - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' - ;; - *) - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$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_AC_TAGVAR(ld_shlibs, $1)=no - ;; - *) - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - esac - ;; - vxworks*) - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - *) - # FIXME: insert proper C++ library support - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; -esac -AC_MSG_RESULT([$_LT_AC_TAGVAR(ld_shlibs, $1)]) -test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no - -_LT_AC_TAGVAR(GCC, $1)="$GXX" -_LT_AC_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... -AC_LIBTOOL_POSTDEP_PREDEP($1) -AC_LIBTOOL_PROG_COMPILER_PIC($1) -AC_LIBTOOL_PROG_CC_C_O($1) -AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1) -AC_LIBTOOL_PROG_LD_SHLIBS($1) -AC_LIBTOOL_SYS_DYNAMIC_LINKER($1) -AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1) - -AC_LIBTOOL_CONFIG($1) - -AC_LANG_POP -CC=$lt_save_CC -LDCXX=$LD -LD=$lt_save_LD -GCC=$lt_save_GCC -with_gnu_ldcxx=$with_gnu_ld -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 -])# AC_LIBTOOL_LANG_CXX_CONFIG - -# AC_LIBTOOL_POSTDEP_PREDEP([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. -AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP], -[AC_REQUIRE([LT_AC_PROG_SED])dnl -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... -ifelse([$1],[],[cat > conftest.$ac_ext < conftest.$ac_ext < conftest.$ac_ext < conftest.$ac_ext <&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_AC_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun' - fi - ;; - esac - ;; - -solaris*) - case $cc_basename in - CC*) - # 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_AC_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun' - fi - ;; - esac - ;; -esac -]) -case " $_LT_AC_TAGVAR(postdeps, $1) " in -*" -lc "*) _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no ;; -esac -])# AC_LIBTOOL_POSTDEP_PREDEP - -# AC_LIBTOOL_LANG_F77_CONFIG -# -------------------------- -# Ensure that the configuration vars for the C compiler are -# suitably defined. Those variables are subsequently used by -# AC_LIBTOOL_CONFIG to write the compiler configuration to `libtool'. -AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG], [_LT_AC_LANG_F77_CONFIG(F77)]) -AC_DEFUN([_LT_AC_LANG_F77_CONFIG], -[AC_REQUIRE([AC_PROG_F77]) -AC_LANG_PUSH(Fortran 77) - -_LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no -_LT_AC_TAGVAR(allow_undefined_flag, $1)= -_LT_AC_TAGVAR(always_export_symbols, $1)=no -_LT_AC_TAGVAR(archive_expsym_cmds, $1)= -_LT_AC_TAGVAR(export_dynamic_flag_spec, $1)= -_LT_AC_TAGVAR(hardcode_direct, $1)=no -_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)= -_LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= -_LT_AC_TAGVAR(hardcode_libdir_separator, $1)= -_LT_AC_TAGVAR(hardcode_minus_L, $1)=no -_LT_AC_TAGVAR(hardcode_automatic, $1)=no -_LT_AC_TAGVAR(module_cmds, $1)= -_LT_AC_TAGVAR(module_expsym_cmds, $1)= -_LT_AC_TAGVAR(link_all_deplibs, $1)=unknown -_LT_AC_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds -_LT_AC_TAGVAR(no_undefined_flag, $1)= -_LT_AC_TAGVAR(whole_archive_flag_spec, $1)= -_LT_AC_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_AC_TAGVAR(objext, $1)=$objext - -# 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_AC_SYS_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" -CC=${F77-"f77"} -compiler=$CC -_LT_AC_TAGVAR(compiler, $1)=$CC -_LT_CC_BASENAME([$compiler]) - -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_AC_TAGVAR(GCC, $1)="$G77" -_LT_AC_TAGVAR(LD, $1)="$LD" - -AC_LIBTOOL_PROG_COMPILER_PIC($1) -AC_LIBTOOL_PROG_CC_C_O($1) -AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1) -AC_LIBTOOL_PROG_LD_SHLIBS($1) -AC_LIBTOOL_SYS_DYNAMIC_LINKER($1) -AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1) - -AC_LIBTOOL_CONFIG($1) - -AC_LANG_POP -CC="$lt_save_CC" -])# AC_LIBTOOL_LANG_F77_CONFIG - - -# AC_LIBTOOL_LANG_GCJ_CONFIG -# -------------------------- -# Ensure that the configuration vars for the C compiler are -# suitably defined. Those variables are subsequently used by -# AC_LIBTOOL_CONFIG to write the compiler configuration to `libtool'. -AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG], [_LT_AC_LANG_GCJ_CONFIG(GCJ)]) -AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG], -[AC_LANG_SAVE - -# Source file extension for Java test sources. -ac_ext=java - -# Object file extension for compiled Java test sources. -objext=o -_LT_AC_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_AC_SYS_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" -CC=${GCJ-"gcj"} -compiler=$CC -_LT_AC_TAGVAR(compiler, $1)=$CC -_LT_CC_BASENAME([$compiler]) - -# GCJ did not exist at the time GCC didn't implicitly link libc in. -_LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no - -_LT_AC_TAGVAR(old_archive_cmds, $1)=$old_archive_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... -AC_LIBTOOL_PROG_COMPILER_NO_RTTI($1) -AC_LIBTOOL_PROG_COMPILER_PIC($1) -AC_LIBTOOL_PROG_CC_C_O($1) -AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1) -AC_LIBTOOL_PROG_LD_SHLIBS($1) -AC_LIBTOOL_SYS_DYNAMIC_LINKER($1) -AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1) - -AC_LIBTOOL_CONFIG($1) - -AC_LANG_RESTORE -CC="$lt_save_CC" -])# AC_LIBTOOL_LANG_GCJ_CONFIG - - -# AC_LIBTOOL_LANG_RC_CONFIG -# ------------------------- -# Ensure that the configuration vars for the Windows resource compiler are -# suitably defined. Those variables are subsequently used by -# AC_LIBTOOL_CONFIG to write the compiler configuration to `libtool'. -AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG], [_LT_AC_LANG_RC_CONFIG(RC)]) -AC_DEFUN([_LT_AC_LANG_RC_CONFIG], -[AC_LANG_SAVE - -# Source file extension for RC test sources. -ac_ext=rc - -# Object file extension for compiled RC test sources. -objext=o -_LT_AC_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_AC_SYS_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" -CC=${RC-"windres"} -compiler=$CC -_LT_AC_TAGVAR(compiler, $1)=$CC -_LT_CC_BASENAME([$compiler]) -_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes - -AC_LIBTOOL_CONFIG($1) - -AC_LANG_RESTORE -CC="$lt_save_CC" -])# AC_LIBTOOL_LANG_RC_CONFIG - - -# AC_LIBTOOL_CONFIG([TAGNAME]) -# ---------------------------- -# If TAGNAME is not passed, then 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 -# TAGNAME from the matching tagged config vars. -AC_DEFUN([AC_LIBTOOL_CONFIG], -[# The else clause should only fire when bootstrapping the -# libtool distribution, otherwise you forgot to ship ltmain.sh -# with your package, and you will get complaints that there are -# no rules to generate ltmain.sh. -if test -f "$ltmain"; then - # 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 - # Now quote all the things that may contain metacharacters while being - # careful not to overquote the AC_SUBSTed values. We take copies of the - # variables and quote the copies for generation of the libtool script. - for var in echo old_CC old_CFLAGS AR AR_FLAGS EGREP RANLIB LN_S LTCC LTCFLAGS NM \ - SED SHELL STRIP \ - libname_spec library_names_spec soname_spec extract_expsyms_cmds \ - old_striplib striplib file_magic_cmd finish_cmds finish_eval \ - deplibs_check_method reload_flag reload_cmds need_locks \ - lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl \ - lt_cv_sys_global_symbol_to_c_name_address \ - sys_lib_search_path_spec sys_lib_dlsearch_path_spec \ - old_postinstall_cmds old_postuninstall_cmds \ - _LT_AC_TAGVAR(compiler, $1) \ - _LT_AC_TAGVAR(CC, $1) \ - _LT_AC_TAGVAR(LD, $1) \ - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1) \ - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1) \ - _LT_AC_TAGVAR(lt_prog_compiler_static, $1) \ - _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) \ - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1) \ - _LT_AC_TAGVAR(thread_safe_flag_spec, $1) \ - _LT_AC_TAGVAR(whole_archive_flag_spec, $1) \ - _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1) \ - _LT_AC_TAGVAR(old_archive_cmds, $1) \ - _LT_AC_TAGVAR(old_archive_from_new_cmds, $1) \ - _LT_AC_TAGVAR(predep_objects, $1) \ - _LT_AC_TAGVAR(postdep_objects, $1) \ - _LT_AC_TAGVAR(predeps, $1) \ - _LT_AC_TAGVAR(postdeps, $1) \ - _LT_AC_TAGVAR(compiler_lib_search_path, $1) \ - _LT_AC_TAGVAR(compiler_lib_search_dirs, $1) \ - _LT_AC_TAGVAR(archive_cmds, $1) \ - _LT_AC_TAGVAR(archive_expsym_cmds, $1) \ - _LT_AC_TAGVAR(postinstall_cmds, $1) \ - _LT_AC_TAGVAR(postuninstall_cmds, $1) \ - _LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1) \ - _LT_AC_TAGVAR(allow_undefined_flag, $1) \ - _LT_AC_TAGVAR(no_undefined_flag, $1) \ - _LT_AC_TAGVAR(export_symbols_cmds, $1) \ - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) \ - _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1) \ - _LT_AC_TAGVAR(hardcode_libdir_separator, $1) \ - _LT_AC_TAGVAR(hardcode_automatic, $1) \ - _LT_AC_TAGVAR(module_cmds, $1) \ - _LT_AC_TAGVAR(module_expsym_cmds, $1) \ - _LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1) \ - _LT_AC_TAGVAR(fix_srcfile_path, $1) \ - _LT_AC_TAGVAR(exclude_expsyms, $1) \ - _LT_AC_TAGVAR(include_expsyms, $1); do - - case $var in - _LT_AC_TAGVAR(old_archive_cmds, $1) | \ - _LT_AC_TAGVAR(old_archive_from_new_cmds, $1) | \ - _LT_AC_TAGVAR(archive_cmds, $1) | \ - _LT_AC_TAGVAR(archive_expsym_cmds, $1) | \ - _LT_AC_TAGVAR(module_cmds, $1) | \ - _LT_AC_TAGVAR(module_expsym_cmds, $1) | \ - _LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1) | \ - _LT_AC_TAGVAR(export_symbols_cmds, $1) | \ - extract_expsyms_cmds | reload_cmds | finish_cmds | \ - postinstall_cmds | postuninstall_cmds | \ - old_postinstall_cmds | old_postuninstall_cmds | \ - sys_lib_search_path_spec | sys_lib_dlsearch_path_spec) - # Double-quote double-evaled strings. - eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\"" - ;; - *) - eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\"" - ;; - esac - done - - case $lt_echo in - *'\[$]0 --fallback-echo"') - lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\[$]0 --fallback-echo"[$]/[$]0 --fallback-echo"/'` - ;; - esac - -ifelse([$1], [], - [cfgfile="${ofile}T" - trap "$rm \"$cfgfile\"; exit 1" 1 2 15 - $rm -f "$cfgfile" - AC_MSG_NOTICE([creating $ofile])], - [cfgfile="$ofile"]) - - cat <<__EOF__ >> "$cfgfile" -ifelse([$1], [], -[#! $SHELL - -# `$echo "$cfgfile" | sed 's%^.*/%%'` - Provide generalized library-building support services. -# Generated automatically by $PROGRAM (GNU $PACKAGE $VERSION$TIMESTAMP) -# NOTE: Changes made to this file will be lost: look at ltmain.sh. -# -# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 -# Free Software Foundation, Inc. -# -# This file is part of GNU Libtool: -# Originally by Gordon Matzigkeit , 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 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. - -# 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//" - -# 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 - -# The names of the tagged configurations supported by this script. -available_tags= - -# ### BEGIN LIBTOOL CONFIG], -[# ### BEGIN LIBTOOL TAG CONFIG: $tagname]) - -# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: - -# Shell to use when invoking shell scripts. -SHELL=$lt_SHELL - -# Whether or not to build shared libraries. -build_libtool_libs=$enable_shared - -# Whether or not to build static libraries. -build_old_libs=$enable_static - -# Whether or not to add -lc for building shared libraries. -build_libtool_need_lc=$_LT_AC_TAGVAR(archive_cmds_need_lc, $1) - -# Whether or not to disallow shared libs when runtime libs are static -allow_libtool_libs_with_static_runtimes=$_LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1) - -# Whether or not to optimize for fast installation. -fast_install=$enable_fast_install - -# 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 - -# An echo program that does not interpret backslashes. -echo=$lt_echo - -# The archiver. -AR=$lt_AR -AR_FLAGS=$lt_AR_FLAGS - -# A C compiler. -LTCC=$lt_LTCC - -# LTCC compiler flags. -LTCFLAGS=$lt_LTCFLAGS - -# A language-specific compiler. -CC=$lt_[]_LT_AC_TAGVAR(compiler, $1) - -# Is the compiler the GNU C compiler? -with_gcc=$_LT_AC_TAGVAR(GCC, $1) - -# An ERE matcher. -EGREP=$lt_EGREP - -# The linker used to build libraries. -LD=$lt_[]_LT_AC_TAGVAR(LD, $1) - -# Whether we need hard or soft links. -LN_S=$lt_LN_S - -# A BSD-compatible nm program. -NM=$lt_NM - -# A symbol stripping program -STRIP=$lt_STRIP - -# Used to examine libraries when file_magic_cmd begins "file" -MAGIC_CMD=$MAGIC_CMD - -# Used on cygwin: DLL creation program. -DLLTOOL="$DLLTOOL" - -# Used on cygwin: object dumper. -OBJDUMP="$OBJDUMP" - -# Used on cygwin: assembler. -AS="$AS" - -# The name of the directory that contains temporary libtool files. -objdir=$objdir - -# How to create reloadable object files. -reload_flag=$lt_reload_flag -reload_cmds=$lt_reload_cmds - -# How to pass a linker flag through the compiler. -wl=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_wl, $1) - -# Object file suffix (normally "o"). -objext="$ac_objext" - -# Old archive suffix (normally "a"). -libext="$libext" - -# Shared library suffix (normally ".so"). -shrext_cmds='$shrext_cmds' - -# Executable file suffix (normally ""). -exeext="$exeext" - -# Additional compiler flags for building library objects. -pic_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) -pic_mode=$pic_mode - -# What is the maximum length of a command? -max_cmd_len=$lt_cv_sys_max_cmd_len - -# Does compiler simultaneously support -c and -o options? -compiler_c_o=$lt_[]_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1) - -# Must we lock files when doing compilation? -need_locks=$lt_need_locks - -# 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 - -# 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 - -# Compiler flag to prevent dynamic linking. -link_static_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_static, $1) - -# Compiler flag to turn off builtin functions. -no_builtin_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) - -# Compiler flag to allow reflexive dlopens. -export_dynamic_flag_spec=$lt_[]_LT_AC_TAGVAR(export_dynamic_flag_spec, $1) - -# Compiler flag to generate shared objects directly from archives. -whole_archive_flag_spec=$lt_[]_LT_AC_TAGVAR(whole_archive_flag_spec, $1) - -# Compiler flag to generate thread-safe objects. -thread_safe_flag_spec=$lt_[]_LT_AC_TAGVAR(thread_safe_flag_spec, $1) - -# Library versioning type. -version_type=$version_type - -# 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 - -# Commands used to build and install an old-style archive. -RANLIB=$lt_RANLIB -old_archive_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_cmds, $1) -old_postinstall_cmds=$lt_old_postinstall_cmds -old_postuninstall_cmds=$lt_old_postuninstall_cmds - -# Create an old-style archive from a shared archive. -old_archive_from_new_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_from_new_cmds, $1) - -# Create a temporary old-style archive to link instead of a shared archive. -old_archive_from_expsyms_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1) - -# Commands used to build and install a shared archive. -archive_cmds=$lt_[]_LT_AC_TAGVAR(archive_cmds, $1) -archive_expsym_cmds=$lt_[]_LT_AC_TAGVAR(archive_expsym_cmds, $1) -postinstall_cmds=$lt_postinstall_cmds -postuninstall_cmds=$lt_postuninstall_cmds - -# Commands used to build a loadable module (assumed same as above if empty) -module_cmds=$lt_[]_LT_AC_TAGVAR(module_cmds, $1) -module_expsym_cmds=$lt_[]_LT_AC_TAGVAR(module_expsym_cmds, $1) - -# Commands to strip libraries. -old_striplib=$lt_old_striplib -striplib=$lt_striplib - -# Dependencies to place before the objects being linked to create a -# shared library. -predep_objects=$lt_[]_LT_AC_TAGVAR(predep_objects, $1) - -# Dependencies to place after the objects being linked to create a -# shared library. -postdep_objects=$lt_[]_LT_AC_TAGVAR(postdep_objects, $1) - -# Dependencies to place before the objects being linked to create a -# shared library. -predeps=$lt_[]_LT_AC_TAGVAR(predeps, $1) - -# Dependencies to place after the objects being linked to create a -# shared library. -postdeps=$lt_[]_LT_AC_TAGVAR(postdeps, $1) - -# The directories searched by this compiler when creating a shared -# library -compiler_lib_search_dirs=$lt_[]_LT_AC_TAGVAR(compiler_lib_search_dirs, $1) - -# The library search path used internally by the compiler when linking -# a shared library. -compiler_lib_search_path=$lt_[]_LT_AC_TAGVAR(compiler_lib_search_path, $1) - -# 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 - -# Flag that allows shared libraries with undefined symbols to be built. -allow_undefined_flag=$lt_[]_LT_AC_TAGVAR(allow_undefined_flag, $1) - -# Flag that forces no undefined symbols. -no_undefined_flag=$lt_[]_LT_AC_TAGVAR(no_undefined_flag, $1) - -# Commands used to finish a libtool library installation in a directory. -finish_cmds=$lt_finish_cmds - -# Same as above, but a single script fragment to be evaled but not shown. -finish_eval=$lt_finish_eval - -# 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 - -# This is the shared library runtime path variable. -runpath_var=$runpath_var - -# This is the shared library path variable. -shlibpath_var=$shlibpath_var - -# Is shlibpath searched before the hard-coded library search path? -shlibpath_overrides_runpath=$shlibpath_overrides_runpath - -# How to hardcode a shared library path into an executable. -hardcode_action=$_LT_AC_TAGVAR(hardcode_action, $1) - -# Whether we should hardcode library paths into libraries. -hardcode_into_libs=$hardcode_into_libs - -# Flag to hardcode \$libdir into a binary during linking. -# This must work even if \$libdir does not exist. -hardcode_libdir_flag_spec=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $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. -hardcode_libdir_flag_spec_ld=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1) - -# Whether we need a single -rpath flag with a separated argument. -hardcode_libdir_separator=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_separator, $1) - -# Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the -# resulting binary. -hardcode_direct=$_LT_AC_TAGVAR(hardcode_direct, $1) - -# Set to yes if using the -LDIR flag during linking hardcodes DIR into the -# resulting binary. -hardcode_minus_L=$_LT_AC_TAGVAR(hardcode_minus_L, $1) - -# Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into -# the resulting binary. -hardcode_shlibpath_var=$_LT_AC_TAGVAR(hardcode_shlibpath_var, $1) - -# 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=$_LT_AC_TAGVAR(hardcode_automatic, $1) - -# Variables whose values should be saved in libtool wrapper scripts and -# restored at relink time. -variables_saved_for_relink="$variables_saved_for_relink" - -# Whether libtool must link a program against all its dependency libraries. -link_all_deplibs=$_LT_AC_TAGVAR(link_all_deplibs, $1) - -# 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 - -# Fix the shell variable \$srcfile for the compiler. -fix_srcfile_path=$lt_fix_srcfile_path - -# Set to yes if exported symbols are required. -always_export_symbols=$_LT_AC_TAGVAR(always_export_symbols, $1) - -# The commands to list exported symbols. -export_symbols_cmds=$lt_[]_LT_AC_TAGVAR(export_symbols_cmds, $1) - -# The commands to extract the exported symbol list from a shared archive. -extract_expsyms_cmds=$lt_extract_expsyms_cmds - -# Symbols that should not be listed in the preloaded symbols. -exclude_expsyms=$lt_[]_LT_AC_TAGVAR(exclude_expsyms, $1) - -# Symbols that must always be exported. -include_expsyms=$lt_[]_LT_AC_TAGVAR(include_expsyms, $1) - -ifelse([$1],[], -[# ### END LIBTOOL CONFIG], -[# ### END LIBTOOL TAG CONFIG: $tagname]) - -__EOF__ - -ifelse([$1],[], [ - case $host_os in - aix3*) - cat <<\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 -EOF - ;; - esac - - # 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) - - mv -f "$cfgfile" "$ofile" || \ - (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") - chmod +x "$ofile" -]) -else - # If there is no Makefile yet, we rely on a make rule to execute - # `config.status --recheck' to rerun these tests and create the - # libtool script then. - ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'` - if test -f "$ltmain_in"; then - test -f Makefile && make "$ltmain" - fi -fi -])# AC_LIBTOOL_CONFIG - - -# AC_LIBTOOL_PROG_COMPILER_NO_RTTI([TAGNAME]) -# ------------------------------------------- -AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], -[AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl - -_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= - -if test "$GCC" = yes; then - _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' - - AC_LIBTOOL_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions], - lt_cv_prog_compiler_rtti_exceptions, - [-fno-rtti -fno-exceptions], [], - [_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"]) -fi -])# AC_LIBTOOL_PROG_COMPILER_NO_RTTI - - -# AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE -# --------------------------------- -AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], -[AC_REQUIRE([AC_CANONICAL_HOST]) -AC_REQUIRE([LT_AC_PROG_SED]) -AC_REQUIRE([AC_PROG_NM]) -AC_REQUIRE([AC_OBJEXT]) -# 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]]*\)' - -# Transform an extracted symbol line into a proper C declaration -lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^. .* \(.*\)$/extern int \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\\\", (lt_ptr) 0},/p' -e 's/^$symcode \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" - -# Define system-specific variables. -case $host_os in -aix*) - symcode='[[BCDT]]' - ;; -cygwin* | mingw* | pw32*) - symcode='[[ABCDGISTW]]' - ;; -hpux*) # Its linker distinguishes data from code symbols - if test "$host_cpu" = ia64; then - symcode='[[ABCDEGRST]]' - fi - lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" - lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" - ;; -linux* | k*bsd*-gnu) - if test "$host_cpu" = ia64; then - symcode='[[ABCDGIRSTW]]' - lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" - lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" - 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 - -# 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 - -# If we're using GNU nm, then use its standard symbol codes. -case `$NM -V 2>&1` in -*GNU* | *'with BFD'*) - symcode='[[ABCDGIRSTW]]' ;; -esac - -# Try without a prefix undercore, 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. - lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[ ]]\($symcode$symcode*\)[[ ]][[ ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" - - # Check to see that the pipe works correctly. - pipe_works=no - - rm -f conftest* - cat > conftest.$ac_ext < $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 < conftest.$ac_ext -#ifdef __cplusplus -extern "C" { -#endif - -EOF - # Now generate the symbol file. - eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | grep -v main >> conftest.$ac_ext' - - cat <> conftest.$ac_ext -#if defined (__STDC__) && __STDC__ -# define lt_ptr_t void * -#else -# define lt_ptr_t char * -# define const -#endif - -/* The mapping between symbol names and symbols. */ -const struct { - const char *name; - lt_ptr_t address; -} -lt_preloaded_symbols[[]] = -{ -EOF - $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (lt_ptr_t) \&\2},/" < "$nlist" | grep -v main >> conftest.$ac_ext - cat <<\EOF >> conftest.$ac_ext - {0, (lt_ptr_t) 0} -}; - -#ifdef __cplusplus -} -#endif -EOF - # Now try linking the two files. - mv conftest.$ac_objext conftstm.$ac_objext - lt_save_LIBS="$LIBS" - lt_save_CFLAGS="$CFLAGS" - LIBS="conftstm.$ac_objext" - CFLAGS="$CFLAGS$_LT_AC_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_save_LIBS" - CFLAGS="$lt_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 -]) # AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE - - -# AC_LIBTOOL_PROG_COMPILER_PIC([TAGNAME]) -# --------------------------------------- -AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC], -[_LT_AC_TAGVAR(lt_prog_compiler_wl, $1)= -_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= -_LT_AC_TAGVAR(lt_prog_compiler_static, $1)= - -AC_MSG_CHECKING([for $compiler option to produce PIC]) - ifelse([$1],[CXX],[ - # C++ specific cases for pic, static, wl, etc. - if test "$GXX" = yes; then - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_AC_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_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - fi - ;; - amigaos*) - # 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_AC_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' - ;; - beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) - # PIC is the default for these OSes. - ;; - mingw* | cygwin* | os2* | pw32*) - # 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_AC_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_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' - ;; - *djgpp*) - # DJGPP does not support shared libraries at all - _LT_AC_TAGVAR(lt_prog_compiler_pic, $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_AC_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic - fi - ;; - hpux*) - # 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*) - ;; - *) - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' - ;; - esac - ;; - *) - _LT_AC_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_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - else - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' - fi - ;; - chorus*) - case $cc_basename in - cxch68*) - # Green Hills C++ Compiler - # _LT_AC_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 - ;; - darwin*) - # PIC is the default on this platform - # Common symbols not allowed in MH_DYLIB files - case $cc_basename in - xlc*) - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-qnocommon' - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - ;; - esac - ;; - dgux*) - case $cc_basename in - ec++*) - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - ;; - ghcx*) - # Green Hills C++ Compiler - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' - ;; - *) - ;; - esac - ;; - freebsd* | dragonfly*) - # FreeBSD uses GNU C++ - ;; - hpux9* | hpux10* | hpux11*) - case $cc_basename in - CC*) - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' - if test "$host_cpu" != ia64; then - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z' - fi - ;; - aCC*) - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' - case $host_cpu in - hppa*64*|ia64*) - # +Z the default - ;; - *) - _LT_AC_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_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' - # CC pic flag -KPIC is the default. - ;; - *) - ;; - esac - ;; - linux* | k*bsd*-gnu) - case $cc_basename in - KCC*) - # KAI C++ Compiler - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' - ;; - icpc* | ecpc*) - # Intel C++ - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' - ;; - pgCC* | pgcpp*) - # Portland Group C++ compiler. - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' - _LT_AC_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_AC_TAGVAR(lt_prog_compiler_pic, $1)= - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' - ;; - *) - case `$CC -V 2>&1 | sed 5q` in - *Sun\ C*) - # Sun C++ 5.9 - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' - ;; - esac - ;; - esac - ;; - lynxos*) - ;; - m88k*) - ;; - mvs*) - case $cc_basename in - cxx*) - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall' - ;; - *) - ;; - esac - ;; - netbsd*) - ;; - osf3* | osf4* | osf5*) - case $cc_basename in - KCC*) - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' - ;; - RCC*) - # Rational C++ 2.4.1 - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' - ;; - cxx*) - # Digital/Compaq C++ - _LT_AC_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_AC_TAGVAR(lt_prog_compiler_pic, $1)= - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' - ;; - *) - ;; - esac - ;; - psos*) - ;; - solaris*) - case $cc_basename in - CC*) - # Sun C++ 4.2, 5.x and Centerline C++ - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' - ;; - gcx*) - # Green Hills C++ Compiler - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' - ;; - *) - ;; - esac - ;; - sunos4*) - case $cc_basename in - CC*) - # Sun C++ 4.x - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; - lcc*) - # Lucid - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' - ;; - *) - ;; - esac - ;; - tandem*) - case $cc_basename in - NCC*) - # NonStop-UX NCC 3.20 - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - ;; - *) - ;; - esac - ;; - sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) - case $cc_basename in - CC*) - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; - esac - ;; - vxworks*) - ;; - *) - _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no - ;; - esac - fi -], -[ - if test "$GCC" = yes; then - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_AC_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_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - fi - ;; - - amigaos*) - # 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_AC_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' - ;; - - beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) - # PIC is the default for these OSes. - ;; - - mingw* | cygwin* | pw32* | os2*) - # 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_AC_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_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' - ;; - - 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_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no - enable_shared=no - ;; - - sysv4*MP*) - if test -d /usr/nec; then - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic - fi - ;; - - hpux*) - # 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_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' - ;; - esac - ;; - - *) - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' - ;; - esac - else - # PORTME Check for flag to pass linker flags through the system compiler. - case $host_os in - aix*) - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - if test "$host_cpu" = ia64; then - # AIX 5 now supports IA64 processor - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - else - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' - fi - ;; - darwin*) - # PIC is the default on this platform - # Common symbols not allowed in MH_DYLIB files - case $cc_basename in - xlc*) - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-qnocommon' - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - ;; - esac - ;; - - mingw* | cygwin* | pw32* | os2*) - # 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_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) - ;; - - hpux9* | hpux10* | hpux11*) - _LT_AC_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_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z' - ;; - esac - # Is there a better lt_prog_compiler_static that works with the bundled CC? - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' - ;; - - irix5* | irix6* | nonstopux*) - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - # PIC (with -KPIC) is the default. - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' - ;; - - newsos6) - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; - - linux* | k*bsd*-gnu) - case $cc_basename in - icc* | ecc*) - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' - ;; - pgcc* | pgf77* | pgf90* | pgf95*) - # Portland Group compilers (*not* the Pentium gcc compiler, - # which looks to be a dead project) - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; - ccc*) - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - # All Alpha code is PIC. - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' - ;; - *) - case `$CC -V 2>&1 | sed 5q` in - *Sun\ C*) - # Sun C 5.9 - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - ;; - *Sun\ F*) - # Sun Fortran 8.3 passes all unrecognized flags to the linker - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='' - ;; - esac - ;; - esac - ;; - - osf3* | osf4* | osf5*) - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - # All OSF/1 code is PIC. - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' - ;; - - rdos*) - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' - ;; - - solaris*) - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - case $cc_basename in - f77* | f90* | f95*) - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ';; - *) - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,';; - esac - ;; - - sunos4*) - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; - - sysv4 | sysv4.2uw2* | sysv4.3*) - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; - - sysv4*MP*) - if test -d /usr/nec ;then - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - fi - ;; - - sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; - - unicos*) - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no - ;; - - uts4*) - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; - - *) - _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no - ;; - esac - fi -]) -AC_MSG_RESULT([$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)]) - -# -# Check to make sure the PIC flag actually works. -# -if test -n "$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)"; then - AC_LIBTOOL_COMPILER_OPTION([if $compiler PIC flag $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) works], - _LT_AC_TAGVAR(lt_cv_prog_compiler_pic_works, $1), - [$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)ifelse([$1],[],[ -DPIC],[ifelse([$1],[CXX],[ -DPIC],[])])], [], - [case $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) in - "" | " "*) ;; - *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=" $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)" ;; - esac], - [_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= - _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no]) -fi -case $host_os in - # For platforms which do not support PIC, -DPIC is meaningless: - *djgpp*) - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= - ;; - *) - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)="$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)ifelse([$1],[],[ -DPIC],[ifelse([$1],[CXX],[ -DPIC],[])])" - ;; -esac - -# -# Check to make sure the static flag actually works. -# -wl=$_LT_AC_TAGVAR(lt_prog_compiler_wl, $1) eval lt_tmp_static_flag=\"$_LT_AC_TAGVAR(lt_prog_compiler_static, $1)\" -AC_LIBTOOL_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], - _LT_AC_TAGVAR(lt_cv_prog_compiler_static_works, $1), - $lt_tmp_static_flag, - [], - [_LT_AC_TAGVAR(lt_prog_compiler_static, $1)=]) -]) - - -# AC_LIBTOOL_PROG_LD_SHLIBS([TAGNAME]) -# ------------------------------------ -# See if the linker supports building shared libraries. -AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS], -[AC_REQUIRE([LT_AC_PROG_SED])dnl -AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) -ifelse([$1],[CXX],[ - _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' - 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 - if $NM -V 2>&1 | grep 'GNU' > /dev/null; then - _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols' - else - _LT_AC_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_AC_TAGVAR(export_symbols_cmds, $1)="$ltdll_cmds" - ;; - cygwin* | mingw*) - _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;/^.*[[ ]]__nm__/s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.*[[ ]]//'\'' | sort | uniq > $export_symbols' - ;; - *) - _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' - ;; - esac - _LT_AC_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] -],[ - runpath_var= - _LT_AC_TAGVAR(allow_undefined_flag, $1)= - _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=no - _LT_AC_TAGVAR(archive_cmds, $1)= - _LT_AC_TAGVAR(archive_expsym_cmds, $1)= - _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)= - _LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1)= - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)= - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= - _LT_AC_TAGVAR(thread_safe_flag_spec, $1)= - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)= - _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)= - _LT_AC_TAGVAR(hardcode_direct, $1)=no - _LT_AC_TAGVAR(hardcode_minus_L, $1)=no - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported - _LT_AC_TAGVAR(link_all_deplibs, $1)=unknown - _LT_AC_TAGVAR(hardcode_automatic, $1)=no - _LT_AC_TAGVAR(module_cmds, $1)= - _LT_AC_TAGVAR(module_expsym_cmds, $1)= - _LT_AC_TAGVAR(always_export_symbols, $1)=no - _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' - # include_expsyms should be a list of space-separated symbols to be *always* - # included in the symbol list - _LT_AC_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_AC_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= - # Just being paranoid about ensuring that cc_basename is set. - _LT_CC_BASENAME([$compiler]) - case $host_os in - cygwin* | mingw* | pw32*) - # 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 - ;; - esac - - _LT_AC_TAGVAR(ld_shlibs, $1)=yes - if test "$with_gnu_ld" = 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_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' - _LT_AC_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_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' - else - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= - fi - supports_anon_versioning=no - case `$LD -v 2>/dev/null` in - *\ [[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_AC_TAGVAR(ld_shlibs, $1)=no - cat <&2 - -*** Warning: the GNU linker, at least up to release 2.9.1, 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 modify your PATH -*** so that a non-GNU linker is found, and then restart. - -EOF - fi - ;; - - amigaos*) - _LT_AC_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_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes - - # Samuel A. Falvo II reports - # that the semantics of dynamic libraries on AmigaOS, at least up - # to version 4, is to share data among multiple programs linked - # with the same dynamic library. Since this doesn't match the - # behavior of shared libraries on other platforms, we can't use - # them. - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - - beos*) - if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then - _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported - # Joseph Beckenbach says some releases of gcc - # support --undefined. This deserves some investigation. FIXME - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - else - _LT_AC_TAGVAR(ld_shlibs, $1)=no - fi - ;; - - cygwin* | mingw* | pw32*) - # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, - # as there is no search path for DLLs. - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported - _LT_AC_TAGVAR(always_export_symbols, $1)=no - _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes - _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/'\'' -e '\''/^[[AITW]][[ ]]/s/.*[[ ]]//'\'' | sort | uniq > $export_symbols' - - if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then - _LT_AC_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_AC_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_AC_TAGVAR(ld_shlibs, $1)=no - fi - ;; - - interix[[3-9]]*) - _LT_AC_TAGVAR(hardcode_direct, $1)=no - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - _LT_AC_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_AC_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_AC_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* | k*bsd*-gnu) - if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then - tmp_addflag= - case $cc_basename,$host_cpu in - pgcc*) # Portland Group C compiler - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' - tmp_addflag=' $pic_flag' - ;; - pgf77* | pgf90* | pgf95*) # Portland Group f77 and f90 compilers - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$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' ;; - esac - case `$CC -V 2>&1 | sed 5q` in - *Sun\ C*) # Sun C 5.9 - _LT_AC_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; $echo \"$new_convenience\"` ${wl}--no-whole-archive' - tmp_sharedflag='-G' ;; - *Sun\ F*) # Sun Fortran 8.3 - tmp_sharedflag='-G' ;; - *) - tmp_sharedflag='-shared' ;; - esac - _LT_AC_TAGVAR(archive_cmds, $1)='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - - if test $supports_anon_versioning = yes; then - _LT_AC_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 - else - _LT_AC_TAGVAR(ld_shlibs, $1)=no - fi - ;; - - netbsd*) - if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' - wlarc= - else - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $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_AC_TAGVAR(ld_shlibs, $1)=no - cat <&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. - -EOF - elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_AC_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_AC_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_AC_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 - ;; - *) - if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`' - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname,-retain-symbols-file,$export_symbols -o $lib' - else - _LT_AC_TAGVAR(ld_shlibs, $1)=no - fi - ;; - esac - ;; - - sunos4*) - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' - wlarc= - _LT_AC_TAGVAR(hardcode_direct, $1)=yes - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - - *) - if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_AC_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_AC_TAGVAR(ld_shlibs, $1)=no - fi - ;; - esac - - if test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no; then - runpath_var= - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)= - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)= - _LT_AC_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_AC_TAGVAR(allow_undefined_flag, $1)=unsupported - _LT_AC_TAGVAR(always_export_symbols, $1)=yes - _LT_AC_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_AC_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_AC_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 - if $NM -V 2>&1 | grep 'GNU' > /dev/null; then - _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols' - else - _LT_AC_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_AC_TAGVAR(archive_cmds, $1)='' - _LT_AC_TAGVAR(hardcode_direct, $1)=yes - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':' - _LT_AC_TAGVAR(link_all_deplibs, $1)=yes - - 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_AC_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_AC_TAGVAR(hardcode_minus_L, $1)=yes - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_AC_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 - - # It seems that -bexpall does not export symbols beginning with - # underscore (_), so it is better to generate a list of symbols to export. - _LT_AC_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_AC_TAGVAR(allow_undefined_flag, $1)='-berok' - # Determine the default libpath from the value encoded in an empty executable. - _LT_AC_SYS_LIBPATH_AIX - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" - _LT_AC_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 echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" - else - if test "$host_cpu" = ia64; then - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' - _LT_AC_TAGVAR(allow_undefined_flag, $1)="-z nodefs" - _LT_AC_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_AC_SYS_LIBPATH_AIX - _LT_AC_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_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' - _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' - # Exported symbols can be pulled into shared objects from archives - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='$convenience' - _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes - # This is similar to how AIX traditionally builds its shared libraries. - _LT_AC_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*) - _LT_AC_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_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes - # see comment about different semantics on the GNU ld section - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - - bsdi[[45]]*) - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic - ;; - - cygwin* | mingw* | pw32*) - # 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. - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' - _LT_AC_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_AC_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | $SED -e '\''s/ -lc$//'\''` -link -dll~linknames=' - # The linker will automatically build a .lib file if we build a DLL. - _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)='true' - # FIXME: Should let the user specify the lib program. - _LT_AC_TAGVAR(old_archive_cmds, $1)='lib -OUT:$oldlib$oldobjs$old_deplibs' - _LT_AC_TAGVAR(fix_srcfile_path, $1)='`cygpath -w "$srcfile"`' - _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes - ;; - - darwin* | rhapsody*) - case $host_os in - rhapsody* | darwin1.[[012]]) - _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}suppress' - ;; - *) # Darwin 1.3 on - if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then - _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' - else - case ${MACOSX_DEPLOYMENT_TARGET} in - 10.[[012]]) - _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' - ;; - 10.*) - _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}dynamic_lookup' - ;; - esac - fi - ;; - esac - _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no - _LT_AC_TAGVAR(hardcode_direct, $1)=no - _LT_AC_TAGVAR(hardcode_automatic, $1)=yes - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='' - _LT_AC_TAGVAR(link_all_deplibs, $1)=yes - if test "$GCC" = yes ; then - output_verbose_link_cmd='echo' - _LT_AC_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_AC_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" - _LT_AC_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_AC_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}" - else - case $cc_basename in - xlc*) - output_verbose_link_cmd='echo' - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $xlcverstring' - _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' - # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $xlcverstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' - _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' - ;; - *) - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - esac - fi - ;; - - dgux*) - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - - freebsd1*) - _LT_AC_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_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' - _LT_AC_TAGVAR(hardcode_direct, $1)=yes - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - - # Unfortunately, older versions of FreeBSD 2 do not have this feature. - freebsd2*) - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' - _LT_AC_TAGVAR(hardcode_direct, $1)=yes - _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - - # FreeBSD 3 and greater uses gcc -shared to do shared libraries. - freebsd* | dragonfly*) - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -o $lib $libobjs $deplibs $compiler_flags' - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' - _LT_AC_TAGVAR(hardcode_direct, $1)=yes - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - - hpux9*) - if test "$GCC" = yes; then - _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$CC -shared -fPIC ${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_AC_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_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: - _LT_AC_TAGVAR(hardcode_direct, $1)=yes - - # hardcode_minus_L: Not really in the search PATH, - # but as the default location of the library. - _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' - ;; - - hpux10*) - if test "$GCC" = yes -a "$with_gnu_ld" = no; then - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' - else - _LT_AC_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_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: - - _LT_AC_TAGVAR(hardcode_direct, $1)=yes - _LT_AC_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_AC_TAGVAR(hardcode_minus_L, $1)=yes - fi - ;; - - hpux11*) - if test "$GCC" = yes -a "$with_gnu_ld" = no; then - case $host_cpu in - hppa*64*) - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' - ;; - ia64*) - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' - ;; - *) - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' - ;; - esac - else - case $host_cpu in - hppa*64*) - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' - ;; - ia64*) - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' - ;; - *) - _LT_AC_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_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: - - case $host_cpu in - hppa*64*|ia64*) - _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='+b $libdir' - _LT_AC_TAGVAR(hardcode_direct, $1)=no - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - *) - _LT_AC_TAGVAR(hardcode_direct, $1)=yes - _LT_AC_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_AC_TAGVAR(hardcode_minus_L, $1)=yes - ;; - esac - fi - ;; - - irix5* | irix6* | nonstopux*) - if test "$GCC" = yes; then - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - else - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' - _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='-rpath $libdir' - fi - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: - _LT_AC_TAGVAR(link_all_deplibs, $1)=yes - ;; - - netbsd*) - if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out - else - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF - fi - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' - _LT_AC_TAGVAR(hardcode_direct, $1)=yes - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - - newsos6) - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - _LT_AC_TAGVAR(hardcode_direct, $1)=yes - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - - openbsd*) - if test -f /usr/libexec/ld.so; then - _LT_AC_TAGVAR(hardcode_direct, $1)=yes - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' - else - case $host_os in - openbsd[[01]].* | openbsd2.[[0-7]] | openbsd2.[[0-7]].*) - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' - ;; - *) - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' - ;; - esac - fi - else - _LT_AC_TAGVAR(ld_shlibs, $1)=no - fi - ;; - - os2*) - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes - _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported - _LT_AC_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_AC_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' - ;; - - osf3*) - if test "$GCC" = yes; then - _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - else - _LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' - fi - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: - ;; - - osf4* | osf5*) # as osf3* with the addition of -msym flag - if test "$GCC" = yes; then - _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - else - _LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' - _LT_AC_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~ - $LD -shared${allow_undefined_flag} -input $lib.exp $linker_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_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' - fi - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: - ;; - - solaris*) - _LT_AC_TAGVAR(no_undefined_flag, $1)=' -z text' - if test "$GCC" = yes; then - wlarc='${wl}' - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ - $CC -shared ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$rm $lib.exp' - else - wlarc='' - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' - _LT_AC_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' - fi - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' - _LT_AC_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_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' - else - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' - fi - ;; - esac - _LT_AC_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_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' - else - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' - fi - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_AC_TAGVAR(hardcode_direct, $1)=yes - _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - - sysv4) - case $host_vendor in - sni) - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - _LT_AC_TAGVAR(hardcode_direct, $1)=yes # is this really true??? - ;; - siemens) - ## LD is ld it makes a PLAMLIB - ## CC just makes a GrossModule. - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags' - _LT_AC_TAGVAR(reload_cmds, $1)='$CC -r -o $output$reload_objs' - _LT_AC_TAGVAR(hardcode_direct, $1)=no - ;; - motorola) - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - _LT_AC_TAGVAR(hardcode_direct, $1)=no #Motorola manual says yes, but my tests say they lie - ;; - esac - runpath_var='LD_RUN_PATH' - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - - sysv4.3*) - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport' - ;; - - sysv4*MP*) - if test -d /usr/nec; then - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - runpath_var=LD_RUN_PATH - hardcode_runpath_var=yes - _LT_AC_TAGVAR(ld_shlibs, $1)=yes - fi - ;; - - sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) - _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' - _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - runpath_var='LD_RUN_PATH' - - if test "$GCC" = yes; then - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - else - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_AC_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_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' - _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' - _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':' - _LT_AC_TAGVAR(link_all_deplibs, $1)=yes - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' - runpath_var='LD_RUN_PATH' - - if test "$GCC" = yes; then - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' - else - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' - fi - ;; - - uts4*) - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no - ;; - - *) - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - esac - fi -]) -AC_MSG_RESULT([$_LT_AC_TAGVAR(ld_shlibs, $1)]) -test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no - -# -# Do we need to explicitly link libc? -# -case "x$_LT_AC_TAGVAR(archive_cmds_need_lc, $1)" in -x|xyes) - # Assume -lc should be added - _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes - - if test "$enable_shared" = yes && test "$GCC" = yes; then - case $_LT_AC_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_MSG_CHECKING([whether -lc should be explicitly linked in]) - $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_AC_TAGVAR(lt_prog_compiler_wl, $1) - pic_flag=$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) - compiler_flags=-v - linker_flags=-v - verstring= - output_objdir=. - libname=conftest - lt_save_allow_undefined_flag=$_LT_AC_TAGVAR(allow_undefined_flag, $1) - _LT_AC_TAGVAR(allow_undefined_flag, $1)= - if AC_TRY_EVAL(_LT_AC_TAGVAR(archive_cmds, $1) 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) - then - _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no - else - _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes - fi - _LT_AC_TAGVAR(allow_undefined_flag, $1)=$lt_save_allow_undefined_flag - else - cat conftest.err 1>&5 - fi - $rm conftest* - AC_MSG_RESULT([$_LT_AC_TAGVAR(archive_cmds_need_lc, $1)]) - ;; - esac - fi - ;; -esac -])# AC_LIBTOOL_PROG_LD_SHLIBS - - -# _LT_AC_FILE_LTDLL_C -# ------------------- -# Be careful that the start marker always follows a newline. -AC_DEFUN([_LT_AC_FILE_LTDLL_C], [ -# /* ltdll.c starts here */ -# #define WIN32_LEAN_AND_MEAN -# #include -# #undef WIN32_LEAN_AND_MEAN -# #include -# -# #ifndef __CYGWIN__ -# # ifdef __CYGWIN32__ -# # define __CYGWIN__ __CYGWIN32__ -# # endif -# #endif -# -# #ifdef __cplusplus -# extern "C" { -# #endif -# BOOL APIENTRY DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved); -# #ifdef __cplusplus -# } -# #endif -# -# #ifdef __CYGWIN__ -# #include -# DECLARE_CYGWIN_DLL( DllMain ); -# #endif -# HINSTANCE __hDllInstance_base; -# -# BOOL APIENTRY -# DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved) -# { -# __hDllInstance_base = hInst; -# return TRUE; -# } -# /* ltdll.c ends here */ -])# _LT_AC_FILE_LTDLL_C - - -# _LT_AC_TAGVAR(VARNAME, [TAGNAME]) -# --------------------------------- -AC_DEFUN([_LT_AC_TAGVAR], [ifelse([$2], [], [$1], [$1_$2])]) - - -# old names -AC_DEFUN([AM_PROG_LIBTOOL], [AC_PROG_LIBTOOL]) -AC_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)]) -AC_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)]) -AC_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)]) -AC_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)]) -AC_DEFUN([AM_PROG_LD], [AC_PROG_LD]) -AC_DEFUN([AM_PROG_NM], [AC_PROG_NM]) - -# This is just to silence aclocal about the macro not being used -ifelse([AC_DISABLE_FAST_INSTALL]) - -AC_DEFUN([LT_AC_PROG_GCJ], -[AC_CHECK_TOOL(GCJ, gcj, no) - test "x${GCJFLAGS+set}" = xset || GCJFLAGS="-g -O2" - AC_SUBST(GCJFLAGS) -]) - -AC_DEFUN([LT_AC_PROG_RC], -[AC_CHECK_TOOL(RC, windres, no) -]) - - -# Cheap backport of AS_EXECUTABLE_P and required macros -# from Autoconf 2.59; we should not use $as_executable_p directly. - -# _AS_TEST_PREPARE -# ---------------- -m4_ifndef([_AS_TEST_PREPARE], -[m4_defun([_AS_TEST_PREPARE], -[if test -x / >/dev/null 2>&1; then - as_executable_p='test -x' -else - as_executable_p='test -f' -fi -])])# _AS_TEST_PREPARE - -# AS_EXECUTABLE_P -# --------------- -# Check whether a file is executable. -m4_ifndef([AS_EXECUTABLE_P], -[m4_defun([AS_EXECUTABLE_P], -[AS_REQUIRE([_AS_TEST_PREPARE])dnl -$as_executable_p $1[]dnl -])])# AS_EXECUTABLE_P - -############################################################ -# 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. # -############################################################ -# LT_AC_PROG_SED -# -------------- -# Check for a fully-functional sed program, that truncates -# as few characters as possible. Prefer GNU sed if found. -AC_DEFUN([LT_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]) -]) diff --git a/m4/pkg.m4 b/m4/pkg.m4 deleted file mode 100644 index c6c0586..0000000 --- a/m4/pkg.m4 +++ /dev/null @@ -1,155 +0,0 @@ -# pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- -# -# Copyright © 2004 Scott James Remnant . -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, but -# WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -# -# As a special exception to the GNU General Public License, if you -# distribute this file as part of a program that contains a -# configuration script generated by Autoconf, you may include it under -# the same distribution terms that you use for the rest of that program. - -# PKG_PROG_PKG_CONFIG([MIN-VERSION]) -# ---------------------------------- -AC_DEFUN([PKG_PROG_PKG_CONFIG], -[m4_pattern_forbid([^_?PKG_[A-Z_]+$]) -m4_pattern_allow([^PKG_CONFIG(_PATH)?$]) -AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])dnl -if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then - AC_PATH_TOOL([PKG_CONFIG], [pkg-config]) -fi -if test -n "$PKG_CONFIG"; then - _pkg_min_version=m4_default([$1], [0.9.0]) - AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version]) - if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then - AC_MSG_RESULT([yes]) - else - AC_MSG_RESULT([no]) - PKG_CONFIG="" - fi - -fi[]dnl -])# PKG_PROG_PKG_CONFIG - -# PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) -# -# Check to see whether a particular set of modules exists. Similar -# to PKG_CHECK_MODULES(), but does not set variables or print errors. -# -# -# Similar to PKG_CHECK_MODULES, make sure that the first instance of -# this or PKG_CHECK_MODULES is called, or make sure to call -# PKG_CHECK_EXISTS manually -# -------------------------------------------------------------- -AC_DEFUN([PKG_CHECK_EXISTS], -[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl -if test -n "$PKG_CONFIG" && \ - AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then - m4_ifval([$2], [$2], [:]) -m4_ifvaln([$3], [else - $3])dnl -fi]) - - -# _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) -# --------------------------------------------- -m4_define([_PKG_CONFIG], -[if test -n "$$1"; then - pkg_cv_[]$1="$$1" - elif test -n "$PKG_CONFIG"; then - PKG_CHECK_EXISTS([$3], - [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`], - [pkg_failed=yes]) - else - pkg_failed=untried -fi[]dnl -])# _PKG_CONFIG - -# _PKG_SHORT_ERRORS_SUPPORTED -# ----------------------------- -AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED], -[AC_REQUIRE([PKG_PROG_PKG_CONFIG]) -if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then - _pkg_short_errors_supported=yes -else - _pkg_short_errors_supported=no -fi[]dnl -])# _PKG_SHORT_ERRORS_SUPPORTED - - -# PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], -# [ACTION-IF-NOT-FOUND]) -# -# -# Note that if there is a possibility the first call to -# PKG_CHECK_MODULES might not happen, you should be sure to include an -# explicit call to PKG_PROG_PKG_CONFIG in your configure.ac -# -# -# -------------------------------------------------------------- -AC_DEFUN([PKG_CHECK_MODULES], -[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl -AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl -AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl - -pkg_failed=no -AC_MSG_CHECKING([for $1]) - -_PKG_CONFIG([$1][_CFLAGS], [cflags], [$2]) -_PKG_CONFIG([$1][_LIBS], [libs], [$2]) - -m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS -and $1[]_LIBS to avoid the need to call pkg-config. -See the pkg-config man page for more details.]) - -if test $pkg_failed = yes; then - _PKG_SHORT_ERRORS_SUPPORTED - if test $_pkg_short_errors_supported = yes; then - $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "$2" 2>&1` - else - $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors "$2" 2>&1` - fi - # Put the nasty error message in config.log where it belongs - echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD - - ifelse([$4], , [AC_MSG_ERROR(dnl -[Package requirements ($2) were not met: - -$$1_PKG_ERRORS - -Consider adjusting the PKG_CONFIG_PATH environment variable if you -installed software in a non-standard prefix. - -_PKG_TEXT -])], - [AC_MSG_RESULT([no]) - $4]) -elif test $pkg_failed = untried; then - ifelse([$4], , [AC_MSG_FAILURE(dnl -[The pkg-config script could not be found or is too old. Make sure it -is in your PATH or set the PKG_CONFIG environment variable to the full -path to pkg-config. - -_PKG_TEXT - -To get pkg-config, see .])], - [$4]) -else - $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS - $1[]_LIBS=$pkg_cv_[]$1[]_LIBS - AC_MSG_RESULT([yes]) - ifelse([$3], , :, [$3]) -fi[]dnl -])# PKG_CHECK_MODULES diff --git a/source/.libs/libsex.lai b/source/.libs/libsex.lai new file mode 100644 index 0000000..92f9bc7 --- /dev/null +++ b/source/.libs/libsex.lai @@ -0,0 +1,41 @@ +# libsex.la - a libtool library file +# Generated by libtool (GNU libtool) 2.4 +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# The name that we can dlopen(3). +dlname='libsex.so.0' + +# Names of this library. +library_names='libsex.so.0.0.0 libsex.so.0 libsex.so' + +# The name of the static archive. +old_library='libsex.a' + +# Linker flags that can not go in dependency_libs. +inherited_linker_flags='' + +# Libraries that this one depends upon. +dependency_libs='' + +# Names of additional weak libraries provided by this library +weak_library_names='' + +# Version information for libsex. +current=0 +age=0 +revision=0 + +# Is this an already installed library? +installed=yes + +# Should we warn about portability when linking against -modules? +shouldnotlink=no + +# Files to dlopen/dlpreopen +dlopen='' +dlpreopen='' + +# Directory that this library needs to be installed in: +libdir='/usr/lib' diff --git a/source/.libs/libsex.so.0 b/source/.libs/libsex.so.0 new file mode 120000 index 0000000..7cf29c5 --- /dev/null +++ b/source/.libs/libsex.so.0 @@ -0,0 +1 @@ +libsex.so.0.0.0 \ No newline at end of file diff --git a/source/.libs/libsex.so.0.0.0 b/source/.libs/libsex.so.0.0.0 new file mode 100755 index 0000000000000000000000000000000000000000..757bd04117925c0a59cacbf3781943dc1559e354 GIT binary patch literal 11128 zcwVhq4RjONm40JM#$aQd#$Xe?L7^hp8=}f!985T=jb*^W0mn9k0?8mtW27KUjx=^m zN){*L&qwjD7jklF!s(I?nKSCi)u+e7j_vjioWAjqv6jTp$GkuGcgjq2N5 z%$QC-CPnnG?{lKI{|9GhOop1hf;(aAENp?38 zxyL3Dl@k4>!4~|PLUb#Uov4Cn644AzKAmVX(L@cyUK!C>3^t|`O(QDNa5>R(KGXEN?R&r4wfT+*U$?cd zeBHL=p0}seH+*=0&Bwc1F5ULR!msWAyR8R~58w7L#p{0d;Ts6~=&{RHd!ewd5`&2T?*PHyqyeci$b!S@syp(?s0P z^$Xa$q<@ACb!!;o+h3sDo50Re{RipcQcZq|%I8%Gc@g_0*={QTBJo<9+|?SsPWnX# z{db68qzSc5ldm)37twxX??VlrGu5}3@F4l$sL4l2ziXD5V~Fox$zOX>I=)hqy{{8L zQz+gMz&|72NB;h;hMy$;_0-V2G|XgqLuWW7M^#Tmm1QOeLIIV@9mGiF?e*Z+6AV0| zF!}x-xkcF!h^k7YKIn-?l_-S8{6bIm)y`=EjKS~oht{l2!u`` z9L;KGo;Rp?A`K*&BR7VlAl0K%`>qT<9tioUjicS2iq`sGPcSHVhm_tf#j7elbXRY$ z+@(aKVRVbSN$zoF50$*|ZlqehBHV1vMGm05A5fxE&jzKTd6^fj67qI!%Bo&J2P!Sg zT3xc{T{{hj5c#Nj{i38t)g%f9BA$QS0cFi2FN_pZB~ z(Xg``urqb%P2FwqdgUlkC6g7ONA*zuv{N*EzB6FU*_QRS>*bXT{iQBJ7{0Tb&8{I~EwE8XR!xRw5JZ=)5&IKt8&`S){+Sfkj9 zn(y3{k5$biZIL69y_1^UMHHPL7>|`oiB&u+3Irx%CG^#lzJM zfAaN>Hmp+a)v#KzD-Urk*2-Tl7w=iTpCx*gs^Ih?>IJ8T;#P2?o#6Dbdj^~w9|Wfb zL55Rq}~Fj1=k^PT9_OLrvQe)sils9Q;Qx4r$z0Lz^TPffRq0pfYZ0- z6gYiTPJ`2;^$a*Q(67OX65#YrIuB0YvWwsp#|Strgj-|h^Ac#lwNDLCrv*Vgb}^Yu zZW~f<2`qCH#S~Lw1vwf!lDBr4vE-X*@Z?K*T0bRU!q?D`+p}k=Wb!5cRfqWO368Nk z@Z;gxA&#*+@Z;avgB)WO;C;=f!71uIff}e0y)QflqMU20REn#4)P&?*Tr@F;*r1eZc!ThAaL9z=Is)CzJmma35i&T`T*4v#K@m zUAlW}xP!)3?0iw*_uv)lemEYxmgId{7>^;4eyby~pPs~Hn+XlPd5Y`|?EZlMSA6vD z^_8b$D>#E&dZCcD}5C zoufGMpH%Xx;b+NYzv?KBs}6fScA1{VhVuGz3O>D> zOdj2S8D3;|o<1IClRbOlhhMO%mXCdUi6(T=MD|D zIoyeP+@TBfX`_ZOrUtLo?9C@!1e?6WsJDo_5OpzC5j#@8c36u~yuW{c1$JI8MqmGk zW({??I(6Vp-0Jh-f;D*}o=bx65xjSe-|H}yOMJ==^KUcu!zQ>_tX$O8U|(FfvZ?J3 zd%dT7gI~4N;&j1+)VkLm2-&^i5dBE#_Nw8CJ=|gUgzTvmG~Vhg+nRi4biqvD0y~qY zS?*oW#GaFzBET1-4LwL4;{+e8UlYGbd@Hq-gT_oTjjv|nm{(oI@qXD${0Q+QcupZ- zBtAkMYYuIjfk{uaFllq1G_AmD-6@H+A65)Q6t=zw0mfJVFg?R>dsbg)cgHNP+jF`K ztw)Es9AD-0B(KhpuT9BCUCm9rws9|PqovX`y-wJ6Xyx(S-FmOYZ7hvhzp*1{yCpiI z(0c6Xa9w`KgyEyd3axedV$Tp?`qk79*dMS?m$Z7Vt=lb2cjV+esF&jPqpc2;?o!Ra zrQE*&_Yb!AqkfWOZ^3$w>$uXk7Nu;#&l5!ZsNJzoV*M{&m$%0R7}Wi{3?e=3KUjaF z)w|t7X4mh?c}$pGnlIM(gXDhjnurDV8hPE#RQD>b2OaDspCTRXm$16RyjTt?66Mtu zT8Ejqk}upMjjx}*McRQ?`4(3E6|ql;=Xn+Ps?uium|eR?e?C>3xX7khnk-u-+m=;a z_@wkC_JMSJc?)dIEE`3+CsXxImL`1dzCKCXDJr7tRo!M%tfO>}OCL)&yHFm#Q^0?q z@sk?I?;-5pTC8G^2zy)DXU3ixR?VfP^oQ%ous=ua|Bl$i-mSwT=5C8s%qfg~|vunm*xu6L@T4*r3&XcrjrbI$??Z>DQiF>HF6x zuJ055nCKTo7l^JC6;iOb6FG_QBU(=M2vLaWuZaGd=-WiE5q+QN$3(v%xcH(M8 zaKC;R3ag59L#W%?-W>?~?hg1EM}AM#&z!zZAu1`j8WEBnB@)Hff)U6hqw1k2Zn}ah zbMhTKr>gYQf4*<$jD-0weW&7=J0hM=MfUq5X+$QyURk_)WpXY^Pw-BTk^_Q0>LqoU z;FUze+%r#Sz)MBLD*q>{7S*&zsf;(=*{Ot7_D5XEcVPb?XJirT6;r z{!D81V%&q)uynmS8m(kvuHYW?1%&UHO{+)O$FHyPS{ckYP#?>T1M{xapojShI;6?- z4SGFH_=w51R^n9e}8$<87K`%&p!IHGhsP}IMJ?t@cm56Vse(AQc$Dga|@jPmY$f4?8qK|`L z8SG)tsjoCM->3I)!k~xm!C>j={s4Vq(8D|Qau$2IK4YSO=pomUH#K{^Tw}tXOT*Bc zZ_tx8!gt7GcwS3-HbehP2A*Tkvri}gaz*ZR9!t-2%ps#a*G!tzxoLc(Z`g>&Et*!T zq+?ODKS#%+28Tt*BI*&Fj>Qe$9Rdpn_NB1M*t+s{EL!kj3XkVp&uv+lD7Ytug(Bvv zz(Szs)+}0fx+;Z*;@%XVByJ|_SoAdJjKE@Xv~HG;MRwbl!nblBOkrWTD}{yOJt-^< z_m%5dWX1tF@<d!A+1|1$A2 zx2Elx<2!7^@0;*P;3@y6vP&%8z7ol?U2{2wr?Sa}{f73KA&I?dy?j04pBmy@1BVRu zBT~A5VgH*3hcSBoUdqgU4oR80(~k)obFY^SUgP4b6; z4Y}lA!p7X`bA*k#=+|;GbIBh*P>jOadv=V<&71$)62XO zHL7-ZbkMCV*SD=`k((M@+mKL~-5KcqdIRu<;Y4Cz_WutyomoB(GS!xV528ZmV0=)WBn+POhdEMpDMQ3qK5- +#include #include // strncpy() namespace libsex { diff --git a/include/libsex/Exception.hxx b/source/Exception.hxx similarity index 99% rename from include/libsex/Exception.hxx rename to source/Exception.hxx index 316ca5c..a9de5de 100644 --- a/include/libsex/Exception.hxx +++ b/source/Exception.hxx @@ -129,6 +129,6 @@ private: void _initMessage(const char* const message); }; -}; // namespace +} // namespace #endif diff --git a/source/config.hxx b/source/config.hxx new file mode 100644 index 0000000..b0345e9 --- /dev/null +++ b/source/config.hxx @@ -0,0 +1,84 @@ +/* src/config.hxx. Generated from config.hxx.in by configure. */ +/* src/config.hxx.in. Generated from configure.ac by autoheader. */ + +/* Copyright information. */ +#define COPYRIGHT "2010 Andreas Waidler" + +/* Define to 1 to enable debugging output to stderr */ +/* #undef DEBUG */ + +/* Define to 1 if you have the header file. */ +/* #undef HAVE_DLFCN_H */ + +/* Define to 1 if you have the header file. */ +/* #undef HAVE_INTTYPES_H */ + +/* Define to 1 if you have the header file. */ +/* #undef HAVE_MEMORY_H */ + +/* Define to 1 if stdbool.h conforms to C99. */ +#define HAVE_STDBOOL_H 1 + +/* Define to 1 if you have the header file. */ +/* #undef HAVE_STDINT_H */ + +/* Define to 1 if you have the header file. */ +/* #undef HAVE_STDLIB_H */ + +/* Define to 1 if you have the header file. */ +/* #undef HAVE_STRINGS_H */ + +/* Define to 1 if you have the header file. */ +/* #undef HAVE_STRING_H */ + +/* Define to 1 if you have the header file. */ +/* #undef HAVE_SYS_STAT_H */ + +/* Define to 1 if you have the header file. */ +/* #undef HAVE_SYS_TYPES_H */ + +/* Define to 1 if you have the header file. */ +/* #undef HAVE_UNISTD_H */ + +/* Define to 1 if the system has the type `_Bool'. */ +/* #undef HAVE__BOOL */ + +/* Define to the sub-directory in which libtool stores uninstalled libraries. + */ +#define LT_OBJDIR ".libs/" + +/* Name of package */ +#define PACKAGE "libsex" + +/* Define to the address where bug reports for this package should be sent. */ +#define PACKAGE_BUGREPORT "" + +/* Define to the full name of this package. */ +#define PACKAGE_NAME "libsex" + +/* Define to the full name and version of this package. */ +#define PACKAGE_STRING "libsex 1.0.0" + +/* Define to the one symbol short name of this package. */ +#define PACKAGE_TARNAME "libsex" + +/* Define to the home page for this package. */ +#define PACKAGE_URL "" + +/* Define to the version of this package. */ +#define PACKAGE_VERSION "1.0.0" + +/* Define to 1 if you have the ANSI C header files. */ +/* #undef STDC_HEADERS */ + +/* Version number of package */ +#define VERSION "1.0.0" + +/* Define to empty if `const' does not conform to ANSI C. */ +/* #undef const */ + +/* Define to `__inline__' or `__inline' if that's what the C compiler + calls it, or to nothing if 'inline' is not supported under any name. */ +#ifndef __cplusplus +/* #undef inline */ +#endif diff --git a/include/libsex/declare.hxx b/source/declare.hxx similarity index 91% rename from include/libsex/declare.hxx rename to source/declare.hxx index b97152e..e93c419 100644 --- a/include/libsex/declare.hxx +++ b/source/declare.hxx @@ -1,7 +1,7 @@ #ifndef LIBSEX_DECLARE_HXX #define LIBSEX_DECLARE_HXX -#include +#include /// Macro for declaring exception classes (.hxx). #define LIBSEX_DECLARE(parent, name) \ diff --git a/include/libsex/define.hxx b/source/define.hxx similarity index 100% rename from include/libsex/define.hxx rename to source/define.hxx diff --git a/include/libsex/throw.hxx b/source/throw.hxx similarity index 96% rename from include/libsex/throw.hxx rename to source/throw.hxx index 3e6fb17..a9b6511 100644 --- a/include/libsex/throw.hxx +++ b/source/throw.hxx @@ -1,7 +1,7 @@ #ifndef LIBSEX_THROW_HXX #define LIBSEX_THROW_HXX -#include +#include /** * Macro to throw an exception. diff --git a/src/utility.cxx b/source/utility.cxx similarity index 95% rename from src/utility.cxx rename to source/utility.cxx index 76906d5..fba45ac 100644 --- a/src/utility.cxx +++ b/source/utility.cxx @@ -1,4 +1,4 @@ -#include +#include #include namespace libsex { @@ -53,4 +53,4 @@ bool format( return result; } -}; // namespace +} // namespace diff --git a/include/libsex/utility.hxx b/source/utility.hxx similarity index 96% rename from include/libsex/utility.hxx rename to source/utility.hxx index 8a120a6..54d4cf6 100644 --- a/include/libsex/utility.hxx +++ b/source/utility.hxx @@ -1,7 +1,7 @@ #ifndef LIBSEX_UTILITY_HXX #define LIBSEX_UTILITY_HXX -#include +#include #include // variadic argument fun #include // size_t @@ -70,7 +70,7 @@ T formatted( unsigned short line, ...) throw(); -}; // End of namespace. +} // End of namespace. #include "utility.ixx" diff --git a/include/libsex/utility.ixx b/source/utility.ixx similarity index 90% rename from include/libsex/utility.ixx rename to source/utility.ixx index d75aac1..5dc8a22 100644 --- a/include/libsex/utility.ixx +++ b/source/utility.ixx @@ -1,4 +1,4 @@ -#include // Exception::LENGTH +#include // Exception::LENGTH namespace libsex { @@ -43,4 +43,4 @@ T formatted( return T(buf, previous); } -}; // End of namespace. +} // End of namespace. diff --git a/src/Makefile.am b/src/Makefile.am deleted file mode 100644 index ba268c6..0000000 --- a/src/Makefile.am +++ /dev/null @@ -1,3 +0,0 @@ -lib_LTLIBRARIES = libsex.la -libsex_la_CPPFLAGS = -I$(top_srcdir)/include -libsex_la_SOURCES = Exception.cxx utility.cxx diff --git a/tests/.libs/lt-tests b/tests/.libs/lt-tests new file mode 100755 index 0000000000000000000000000000000000000000..4932440241b3c8de0049d7390d13d7e402ea1592 GIT binary patch literal 118123 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 F|9`0*zh(dc literal 0 HcwPel00001 diff --git a/tests/.libs/tests b/tests/.libs/tests new file mode 100755 index 0000000000000000000000000000000000000000..9f2eefb6be187c7633958db574d01675052094ba GIT binary patch literal 118083 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 g!=Q57hBKcAMeHG}9`}!OwDoQ +#include class CountingException : public libsex::Exception { diff --git a/tests/framework/Makefile.am b/tests/framework/Makefile.am deleted file mode 100644 index 2ec637c..0000000 --- a/tests/framework/Makefile.am +++ /dev/null @@ -1,8 +0,0 @@ -noinst_LTLIBRARIES = libframework.la -libframework_la_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir) $(CPPUNIT_CFLAGS) -libframework_la_CXXFLAGS = $(CPPUNIT_LIBS) -libframework_la_LIBADD = $(top_srcdir)/src/libsex.la -libframework_la_SOURCES = \ - CountingException.cxx \ - MockException.cxx \ - UncloneableException.cxx diff --git a/tests/framework/MockException.hxx b/tests/framework/MockException.hxx index 2d04ee1..2d08fb4 100644 --- a/tests/framework/MockException.hxx +++ b/tests/framework/MockException.hxx @@ -1,7 +1,7 @@ #ifndef MOCKEXCEPTION_HXX #define MOCKEXCEPTION_HXX -#include +#include class MockException : public libsex::Exception { diff --git a/tests/framework/UncloneableException.hxx b/tests/framework/UncloneableException.hxx index 375de12..e90bdac 100644 --- a/tests/framework/UncloneableException.hxx +++ b/tests/framework/UncloneableException.hxx @@ -1,7 +1,7 @@ #ifndef UNCLONEABLEEXCEPTION_HXX #define UNCLONEABLEEXCEPTION_HXX -#include +#include class UncloneableException : public libsex::Exception { diff --git a/tests/main.cxx b/tests/main.cxx dissimilarity index 68% index b5f0d80..446cd8e 100644 --- a/tests/main.cxx +++ b/tests/main.cxx @@ -1,34 +1,27 @@ -// INCLUDE/*{{{*/ - -#include - -#include -#include -#include -#include -#include -#include - -/*}}}*/ - -int main(int argc, char *argv[]) -{ - CppUnit::TestResult test; - CppUnit::TestResultCollector result; - CppUnit::BriefTestProgressListener progress; - test.addListener(&result); - test.addListener(&progress); - - CppUnit::TextOutputter outputter(&result, std::clog); - - CppUnit::TestRunner runner; - runner.addTest(CppUnit::TestFactoryRegistry::getRegistry().makeTest()); - runner.run(test); - - outputter.write(); - - return result.wasSuccessful() ? 0 : 1; -} - -// Use no tabs at all; two spaces indentation; max. eighty chars per line. -// vim: et ts=2 sw=2 sts=2 tw=80 fdm=marker +#include + +#include +#include +#include +#include +#include +#include + +int main() +{ + CppUnit::TestResult test; + CppUnit::TestResultCollector result; + CppUnit::BriefTestProgressListener progress; + test.addListener(&result); + test.addListener(&progress); + + CppUnit::TextOutputter outputter(&result, std::clog); + + CppUnit::TestRunner runner; + runner.addTest(CppUnit::TestFactoryRegistry::getRegistry().makeTest()); + runner.run(test); + + outputter.write(); + + return result.wasSuccessful() ? 0 : 1; +} diff --git a/tests/testRegistry.cxx b/tests/registry.cxx similarity index 100% rename from tests/testRegistry.cxx rename to tests/registry.cxx diff --git a/tests/src/Makefile.am b/tests/src/Makefile.am deleted file mode 100644 index fc72f0b..0000000 --- a/tests/src/Makefile.am +++ /dev/null @@ -1,10 +0,0 @@ -noinst_LTLIBRARIES = libtest.la -libtest_la_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir) $(CPPUNIT_CFLAGS) -libtest_la_CXXFLAGS = $(CPPUNIT_LIBS) -libtest_la_LIBADD = \ - $(top_srcdir)/src/libsex.la \ - $(top_srcdir)/tests/framework/libframework.la -libtest_la_SOURCES = \ - TestException.cxx \ - TestUtility.cxx \ - UsageExamples.cxx diff --git a/tests/src/TestException.cxx b/tests/src/TestException.cxx index fbcde1a..73296e2 100644 --- a/tests/src/TestException.cxx +++ b/tests/src/TestException.cxx @@ -22,7 +22,7 @@ void TestException::testWhetherLongMessageDoesNotOverflow() size_t length = libsex::Exception::LENGTH; std::string str; - for (int i = 0; i < length; ++i) { + for (size_t i = 0; i < length; ++i) { str += '.'; } str += '!'; @@ -31,7 +31,7 @@ void TestException::testWhetherLongMessageDoesNotOverflow() CPPUNIT_ASSERT_EQUAL(length, strlen(e.what())); - for (int i = 0; i < length; ++i) { + for (size_t i = 0; i < length; ++i) { CPPUNIT_ASSERT_EQUAL('.', e.what()[i]); } } @@ -82,7 +82,7 @@ void TestException::testWhetherNoticeDoesNotOverflowIfBufferTooSmall() size_t length = libsex::Exception::LENGTH; std::string str; - for (int i = 0; i < length; ++i) { + for (size_t i = 0; i < length; ++i) { str += '.'; } diff --git a/tests/src/TestUtility.cxx b/tests/src/TestUtility.cxx index 716e658..f0c37c9 100644 --- a/tests/src/TestUtility.cxx +++ b/tests/src/TestUtility.cxx @@ -1,7 +1,7 @@ #include #include -#include +#include #include diff --git a/tests/src/UsageExamples.cxx b/tests/src/UsageExamples.cxx index 5ac6b5c..52388ab 100644 --- a/tests/src/UsageExamples.cxx +++ b/tests/src/UsageExamples.cxx @@ -14,11 +14,11 @@ #ifndef MYEXCEPTION_HXX #define MYEXCEPTION_HXX -#include -#include +#include +#include // MyException inherits from libsex::Exception. -LIBSEX_DECLARE(libsex::Exception, MyException); +LIBSEX_DECLARE(libsex::Exception, MyException) #endif @@ -29,26 +29,26 @@ LIBSEX_DECLARE(libsex::Exception, MyException); // This is the way to define an exception class. // --- Start MyException.cxx --- -#include -#include +#include +#include // You need to include its header file (MyException.hxx)! // Define MyException and provide a message template (see // printf for a list of placeholders). // This is the file to localize. -LIBSEX_DEFINE(libsex::Exception, MyException, "%s is %d"); +LIBSEX_DEFINE(libsex::Exception, MyException, "%s is %d") // --- End MyException.cxx --- // Lets create an exception with a fixed message: -LIBSEX_DECLARE(libsex::Exception, Error); -LIBSEX_DEFINE(libsex::Exception, Error, "Error!"); +LIBSEX_DECLARE(libsex::Exception, Error) +LIBSEX_DEFINE(libsex::Exception, Error, "Error!") -#include // THROW and CHAIN +#include // THROW and CHAIN /** * How to simply create an exception. @@ -84,9 +84,9 @@ void UsageExamples::testSimpleThrowing() // Note that THROW uses the message // template, so we can not pass an // arbitrary string. - THROW(Error); + THROW(Error, NULL); } catch (Error& e) { - std::string exp("UsageExamples.cxx:87: Error!"); + std::string exp(__FILE__); exp += ":87: Error!"; std::string act(e.what()); CPPUNIT_ASSERT_EQUAL(exp, act); @@ -109,7 +109,7 @@ void UsageExamples::testThrowing() // containing the resulting string. THROW(MyException, "foobar", 42); } catch (MyException& e) { - std::string exp("UsageExamples.cxx:110: foobar is 42"); + std::string exp(__FILE__); exp += ":110: foobar is 42"; std::string act(e.what()); CPPUNIT_ASSERT_EQUAL(exp, act); @@ -136,14 +136,16 @@ void UsageExamples::testChaining() CHAIN(MyException, "bar", 42); } } catch (MyException& e) { - const char* exp = "UsageExamples.cxx:136: bar is 42\n" - "UsageExamples.cxx:131: foo is 21"; + std::string exp(__FILE__); + exp += ":136: bar is 42\n"; + exp += __FILE__; + exp += ":131: foo is 21"; std::stringstream act; e.backtrace(act); CPPUNIT_ASSERT_EQUAL( - std::string(exp), + exp, act.str()); success = true; -- 2.11.4.GIT