diff --git a/.gitignore b/.gitignore index 561880216b128849f33f5f2576de83b36423cf1f..d67fd18d49c0b4556cb53a4f3ccc8872d22ce833 100644 --- a/.gitignore +++ b/.gitignore @@ -3,46 +3,7 @@ # SPDX-License-Identifier: CC0-1.0 # -# Autoreconf stage files (Autotools): -/aclocal.m4 -/autom4te.cache/ -/config/compile -/config/config.guess -/config/config.h.in -/config/config.h.in~ -/config/config.sub -/config/depcomp -/config/install-sh -/config/ltmain.sh -/config/missing -/config/py-compile -/config/test-driver -/configure -/configure~ -/m4/libtool.m4 -/m4/ltoptions.m4 -/m4/ltsugar.m4 -/m4/ltversion.m4 -/m4/lt~obsolete.m4 -Makefile.in - -# Configure stage files (Autotools): -**/config/config.h -**/config/stamp-h1 -**/doc/Doxyfile -**/python/mtime/_mtime.py -**/test/test_python.sh -*/examples/iconatm.nml -*/examples/iconoce.nml -*/python/mtime/__init__.py -.deps/ -Makefile -config.log -config.lt -config.status -libtool - -# Configure stage files (CMake): +# Configure stage files: **/doc/Doxyfile.doc **/python/mtime/_mtime.py **/test/test_python.sh @@ -62,17 +23,7 @@ mtime-config-version.cmake mtime-config.cmake mtime-targets.cmake -# Build stage files (Autotools): -**/python/mtime/.dirstamp -**/python/mtime/.symlinkstamp -**/python/mtime/__mtime.so -*.la -*.lo -*.mod -*.o -.libs/ - -# Build stage files (CMake): +# Build stage files: **/doc/html **/doc/latex **/doc/man @@ -88,6 +39,7 @@ mtime-targets.cmake **/examples/output_control **/examples/recurrence **/examples/repetitor +**/examples/simulate_iau **/examples/tas **/examples/test_cf_timeaxis **/examples/test_dace @@ -105,46 +57,13 @@ mtime-targets.cmake .ninja_deps .ninja_log -# Documentation stage files (Autotools): -**/doc/doxygen-doc/ - -# Test stage files (Autotools): -**/examples/*.dat -**/examples/*.log -**/examples/*.trs -**/examples/callback_test -**/examples/comp_weights -**/examples/duration -**/examples/example -**/examples/iconatm -**/examples/iconoce -**/examples/model_integration -**/examples/modulo -**/examples/output_control -**/examples/recurrence -**/examples/repetitor -**/examples/simulate_iau -**/examples/tas -**/examples/test_cf_timeaxis -**/examples/test_dace -**/examples/test_jd_logic -**/examples/uniq -**/test/*.log -**/test/*.trs -**/test/test_runner -*.py[cod] -__pycache__/ - -# Test stage files (CMake): +# Test stage files: **/examples/*.dat *.py[cod] Testing/ __pycache__/ -# Dist stage files (Autotools): -mtime-*.tar.gz - -# Install stage files (CMake): +# Install stage files: install_manifest.txt # Compiler-specific by-products: diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 29fdc03d8687093dd939f6fe127b6b37776096de..9c655a0433455e20814c052fccf187a683886517 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -134,7 +134,7 @@ include: CC: gcc CFLAGS: -g -O2 FC: gfortran - FCFLAGS: -g -O2 + FFLAGS: -g -O2 LIBCHECK_ROOT: ${CI_GITIGNORE_DIR}/libcheck LIBCHECK_URL: https://github.com/libcheck/check/releases/download/0.15.2/check-0.15.2.tar.gz LIBCHECK_SHA256: a8de4e0bacfb4d76dd1c618ded263523b53b85d92a146d8835eb1a52932fa20a @@ -169,6 +169,19 @@ include: sed -i "s|^libdir=.*|libdir='${LIBCHECK_ROOT}/lib'|" $(find "${LIBCHECK_ROOT}" -name '*.la') fi script: + - mkdir build && cd build + - > + cmake .. + -DBUILD_TESTING:BOOL=ON + -DCheck_ROOT="${LIBCHECK_ROOT}" + -DMTIME_ENABLE_PYTHON:BOOL=ON + -DCMAKE_INSTALL_PREFIX:PATH="${INSTALL_PREFIX}" + -G"${CMAKE_GENERATOR}" + - ${MAKE_CMD} 2>&1 | tee "${BUILD_LOG}" + - ${MAKE_CMD} test + - ${MAKE_CMD} install + - py_lib_prefix=$(dirname $(find "${INSTALL_PREFIX}" -path '*/mtime/__init__.py' -exec dirname {} + -quit)) + - PYTHONPATH="${py_lib_prefix}${PYTHONPATH+":${PYTHONPATH}"}" python3 test/test_python.sh - | # Check if there are compiler warnings compiler_warnings="${CI_PROJECT_DIR}/compiler_warnings.txt" @@ -198,88 +211,36 @@ include: when: manual - when: always interruptible: true + artifacts: + when: on_failure + paths: + - "**/CMakeCache.txt" + - "**/LastTest.log" cache: policy: pull key: ${LIBCHECK_SHA256} paths: - ${LIBCHECK_ROOT} -.common_autotools: +.common_makefiles: extends: .common - variables: - CONFIG_EXTRA_ARGS: - MAKEFLAGS: --jobs=${JOB_COUNT} V=1 - AM_COLOR_TESTS: always - script: - - > - test -f ./configure || ./autogen.sh - - mkdir build && cd build - - > - ../configure - --enable-check - --with-check-root="${LIBCHECK_ROOT}" - --enable-python - --disable-maintainer-mode - --prefix="${INSTALL_PREFIX}" - ${CONFIG_EXTRA_ARGS} - - make --output-sync=target check AM_COLOR_TESTS=no TESTS= 2>&1 | tee "${BUILD_LOG}" - - make --silent --keep-going check - - make install - - make installcheck - - !reference [.common, script] - artifacts: - when: on_failure - paths: - - "**/config.log" - - "**/test-suite.log" - -.common_cmake: - extends: .common - variables: - CMAKE_EXTRA_ARGS: - # Cmake initializes Fortran compiler flags from FFLAGS: - FFLAGS: ${FCFLAGS} - script: - - mkdir build && cd build - - > - cmake .. - -DBUILD_TESTING:BOOL=ON - -DCheck_ROOT="${LIBCHECK_ROOT}" - -DMTIME_ENABLE_PYTHON:BOOL=ON - -DCMAKE_INSTALL_PREFIX:PATH="${INSTALL_PREFIX}" - -G"${CMAKE_GENERATOR}" - ${CMAKE_EXTRA_ARGS} - - ${MAKE_CMD} 2>&1 | tee "${BUILD_LOG}" - - ${MAKE_CMD} test - - ${MAKE_CMD} install - - py_lib_prefix=$(dirname $(find "${INSTALL_PREFIX}" -path '*/mtime/__init__.py' -exec dirname {} + -quit)) - - PYTHONPATH="${py_lib_prefix}${PYTHONPATH+":${PYTHONPATH}"}" python3 test/test_python.sh - - !reference [.common, script] - artifacts: - when: on_failure - paths: - - "**/CMakeCache.txt" - - "**/LastTest.log" - -.common_cmake_makefiles: - extends: .common_cmake variables: CMAKE_GENERATOR: Unix Makefiles MAKE_CMD: make --jobs=${JOB_COUNT} VERBOSE=1 -.common_cmake_ninja: - extends: .common_cmake +.common_ninja: + extends: .common variables: CMAKE_GENERATOR: Ninja MAKE_CMD: ninja -j ${JOB_COUNT} --verbose before_script: - - !reference [.common_cmake, before_script] + - !reference [.common, before_script] - export PATH="/sw/spack-levante/ninja-1.11.1-ahbo5l/bin:${PATH}" .check_gcc: variables: CFLAGS: -g -O2 -Wall -Wextra -pedantic - FCFLAGS: -g -O2 -Wall -Wextra -pedantic -fbounds-check + FFLAGS: -g -O2 -Wall -Wextra -pedantic -fbounds-check before_script: [] .check_intel: @@ -299,83 +260,44 @@ include: .check_nag: variables: FC: nagfor - FCFLAGS: -g -O2 -C=all + FFLAGS: -g -O2 -C=all # Ignore Questionable warnings: WARNINGS_AWK_SCRIPT: '!/^\[NAG Fortran Compiler normal termination/ && (/warning/ || /WARNING/ || /Warning/)' before_script: - module load nag/7.1-gcc-11.2.0 -Check with GCC 11.2.0 (Autotools): +Check with GCC 11.2.0 (Ninja): extends: - - .common_autotools + - .common_ninja - .check_gcc before_script: - - !reference [.common_autotools, before_script] + - !reference [.common_ninja, before_script] - !reference [.check_gcc, before_script] cache: policy: pull-push -Check with GCC 11.2.0 (CMake, Ninja): - extends: - - .common_cmake_ninja - - .check_gcc - before_script: - - !reference [.common_cmake_ninja, before_script] - - !reference [.check_gcc, before_script] - -Check with Intel 2021.5.0 (Autotools): +Check with Intel 2021.5.0 (Unix Makefiles): extends: - - .common_autotools + - .common_makefiles - .check_intel - variables: - # Ignore the warning on a deprecated flag injected by libtool: - WARNINGS_AWK_SCRIPT: '!/-nofor_main/ && (/warning/ || /WARNING/ || /Warning/)' before_script: - - !reference [.common_autotools, before_script] + - !reference [.common_makefiles, before_script] - !reference [.check_intel, before_script] -Check with Intel 2021.5.0 (CMake, Unix Makefiles): - extends: - - .common_cmake_makefiles - - .check_intel - before_script: - - !reference [.common_cmake_makefiles, before_script] - - !reference [.check_intel, before_script] - -Check with NVHPC 24.7 (Autotools): - extends: - - .common_autotools - - .check_nvhpc - before_script: - - !reference [.common_autotools, before_script] - - !reference [.check_nvhpc, before_script] - # Libtool does not know about NVHPC and its PIC flag: - - export FCFLAGS="$FCFLAGS -fpic" - -Check with NVHPC 24.7 (CMake, Ninja): +Check with NVHPC 24.7 (Ninja): extends: - - .common_cmake_ninja + - .common_ninja - .check_nvhpc before_script: - - !reference [.common_cmake_ninja, before_script] + - !reference [.common_ninja, before_script] - !reference [.check_nvhpc, before_script] -Check with NAG 7.1.7114 (Autotools): - extends: - - .common_autotools - - .check_nag - before_script: - - !reference [.common_autotools, before_script] - - !reference [.check_nag, before_script] - # nagfor is supposed to use non-default gcc: - - export FCFLAGS="-Wc=`which gcc` $FCFLAGS" - -Check with NAG 7.1.7114 (CMake, Unix Makefiles): +Check with NAG 7.1.7114 (Unix Makefiles): extends: - - .common_cmake_makefiles + - .common_makefiles - .check_nag before_script: - - !reference [.common_cmake_makefiles, before_script] + - !reference [.common_makefiles, before_script] - !reference [.check_nag, before_script] # nagfor is supposed to use non-default gcc: - export FFLAGS="-Wc=`which gcc` $FFLAGS" diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index ada91f36b4afe671200b9df7cd9594735a1ca3d9..91dba126f4e499672c93a6877238adafb5cf2387 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -8,9 +8,8 @@ repos: rev: v5.0.0 hooks: - id: end-of-file-fixer - exclude: '^(contrib/.*|configure$)' - id: trailing-whitespace - exclude: '^((LICENSES|contrib)/.*|src/mtime_iso8601\.c$)' + exclude: ^(LICENSES/.*|src/mtime_iso8601\.c)$ - repo: https://github.com/pre-commit/mirrors-clang-format rev: v19.1.7 hooks: diff --git a/CMakeLists.txt b/CMakeLists.txt index d0bdfbdbe0b102978cb1d68ffcc6c50ebd1b6c6b..2952b26846bd8198f0bb662072e8fe1623571f67 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,7 +12,7 @@ project( ) option(BUILD_SHARED_LIBS "Build shared libraries" ON) -option(BUILD_TESTING "Build tests" ON) +option(BUILD_TESTING "Build tests" OFF) option(MTIME_ENABLE_PYTHON "Enable the Python interface" OFF) option(MTIME_BUILD_DOCS "Build documentation" OFF) diff --git a/LICENSES/FSFAP.txt b/LICENSES/FSFAP.txt deleted file mode 100644 index 32bc8a88986de1bf15e8acd96a2cfbafb1e52848..0000000000000000000000000000000000000000 --- a/LICENSES/FSFAP.txt +++ /dev/null @@ -1 +0,0 @@ -Copying and distribution of this file, with or without modification, are permitted in any medium without royalty provided the copyright notice and this notice are preserved. This file is offered as-is, without any warranty. diff --git a/LICENSES/FSFULLR.txt b/LICENSES/FSFULLR.txt deleted file mode 100644 index 2acb219e0a34351da52cedc60d510ce32c61d884..0000000000000000000000000000000000000000 --- a/LICENSES/FSFULLR.txt +++ /dev/null @@ -1,3 +0,0 @@ -Copyright 1996-2006 Free Software Foundation, Inc. - -This file is free software; the Free Software Foundation gives unlimited permission to copy and/or distribute it, with or without modifications, as long as this notice is preserved. diff --git a/LICENSES/GPL-2.0-or-later.txt b/LICENSES/GPL-2.0-or-later.txt deleted file mode 100644 index 17cb286430a4d8094e473d06bd7f50f40438ddba..0000000000000000000000000000000000000000 --- a/LICENSES/GPL-2.0-or-later.txt +++ /dev/null @@ -1,117 +0,0 @@ -GNU GENERAL PUBLIC LICENSE -Version 2, June 1991 - -Copyright (C) 1989, 1991 Free Software Foundation, Inc. -51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA - -Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. - -Preamble - -The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public License instead.) You can apply it to your programs, too. - -When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. - -To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. - -For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. - -We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. - -Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. - -Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. - -The precise terms and conditions for copying, distribution and modification follow. - -TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - -0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". - -Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. - -1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. - -You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. - -2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: - - a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. - - b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. - - c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) - -These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. - -Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. - -In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. - -3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: - - a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, - - b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, - - c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) - -The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. - -If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. - -4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. - -5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. - -6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. - -7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. - -If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. - -It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. - -This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. - -8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. - -9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. - -Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. - -10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. - -NO WARRANTY - -11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - -12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -END OF TERMS AND CONDITIONS - -How to Apply These Terms to Your New Programs - -If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. - -To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. - - one line to give the program's name and an idea of what it does. Copyright (C) yyyy name of author - - 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. Also add information on how to contact you by electronic and paper mail. - -If the program is interactive, make it output a short notice like this when it starts in an interactive mode: - - Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. - -The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. - -You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: - - Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. - -signature of Ty Coon, 1 April 1989 Ty Coon, President of Vice diff --git a/LICENSES/Libtool-exception.txt b/LICENSES/Libtool-exception.txt deleted file mode 100644 index 729b1e9530d6b6b4e2121c2b3e360ee824597d2e..0000000000000000000000000000000000000000 --- a/LICENSES/Libtool-exception.txt +++ /dev/null @@ -1 +0,0 @@ -As a special exception to the GNU General Public License, if you distribute this file as part of a program or library that is built using GNU Libtool, you may include this file under the same distribution terms that you use for the rest of that program. diff --git a/Makefile.am b/Makefile.am deleted file mode 100644 index afd1f63afaa1ebde0fcdf6e30125d83abf649c1c..0000000000000000000000000000000000000000 --- a/Makefile.am +++ /dev/null @@ -1,12 +0,0 @@ -# Copyright (c) 2013-2024 MPI-M, Luis Kornblueh, Rahul Sinha and DWD, Florian Prill. All rights reserved. -# -# SPDX-License-Identifier: BSD-3-Clause -# -SUBDIRS = include src - -if ENABLE_PYTHON -SUBDIRS += python -endif ENABLE_PYTHON - -SUBDIRS += doc examples test -ACLOCAL_AMFLAGS = -I m4 diff --git a/REUSE.toml b/REUSE.toml index e04188e6e06371883645e1dde2713729d4c194e2..b0862be1e8b224302aaca0276e3c77977e30deda 100644 --- a/REUSE.toml +++ b/REUSE.toml @@ -8,69 +8,3 @@ version = 1 path = ["AUTHORS.md", "CONTRIBUTING.md", "README.md"] SPDX-FileCopyrightText = "2013-2024 MPI-M, Luis Kornblueh, Rahul Sinha and DWD, Florian Prill. All rights reserved." SPDX-License-Identifier = "CC-BY-4.0" - -[[annotations]] -path = ["m4/acx_lt_problems.m4", "m4/acx_use_libtool_configuration.m4", "scripts/reconfigure"] -SPDX-License-Identifier = "BSD-3-Clause" - -[[annotations]] -path = "m4/kpse_libtool.m4" -SPDX-License-Identifier = "FSFULLR" - -[[annotations]] -path = ["contrib/**/README", "contrib/**/README.txt"] -SPDX-FileCopyrightText = "2024 Thomas Jahns <jahns@dkrz.de>" -SPDX-License-Identifier = "CC-BY-4.0" - -[[annotations]] -path = "contrib/**.patch" -SPDX-FileCopyrightText = "2024 Thomas Jahns <jahns@dkrz.de>" -SPDX-License-Identifier = "GPL-2.0-or-later WITH Libtool-exception" - -# Automatically generated Autotools files to be found in the release branches: - -[[annotations]] -path = ["**/Makefile.in"] -SPDX-License-Identifier = "FSFULLRWD" - -[[annotations]] -path = [ - "aclocal.m4", - "m4/libtool.m4", - "m4/ltoptions.m4", - "m4/ltsugar.m4", - "m4/ltversion.m4", - "m4/lt~obsolete.m4", -] -SPDX-License-Identifier = "FSFULLR" - -[[annotations]] -path = [ - "config/compile", - "config/depcomp", - "config/missing", - "config/py-compile", - "config/test-driver", -] -SPDX-License-Identifier = "GPL-2.0-or-later WITH Autoconf-exception-generic" - -[[annotations]] -path = ["config/config.guess", "config/config.sub"] -SPDX-License-Identifier = "GPL-3.0-or-later WITH Autoconf-exception-generic-3.0" - -[[annotations]] -path = ["config/install-sh"] -SPDX-License-Identifier = "X11-distribute-modifications-variant" - -[[annotations]] -path = ["config/ltmain.sh"] -SPDX-License-Identifier = "GPL-2.0-or-later WITH Libtool-exception" - -[[annotations]] -path = ["configure"] -SPDX-License-Identifier = "FSFUL" - -[[annotations]] -path = ["config/config.h.in"] -SPDX-FileCopyrightText = "2013-2024 MPI-M, Luis Kornblueh, Rahul Sinha and DWD, Florian Prill. All rights reserved." -SPDX-License-Identifier = "CC0-1.0" diff --git a/autogen.sh b/autogen.sh deleted file mode 100755 index 1c0cbe23b813169550475b9bee6f1771e0955040..0000000000000000000000000000000000000000 --- a/autogen.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh - -# Copyright (c) 2013-2024 MPI-M, Luis Kornblueh, Rahul Sinha and DWD, Florian Prill. All rights reserved. -# -# SPDX-License-Identifier: BSD-3-Clause - -set -e - -script_dir=`echo "$0" | sed 's@[^/]*$@@'` -(unset CDPATH) >/dev/null 2>&1 && unset CDPATH -cd "$script_dir" - -exec ./scripts/reconfigure diff --git a/configure.ac b/configure.ac deleted file mode 100644 index 175995d56ddfa6e94e01a9cb43d7311936ee3d42..0000000000000000000000000000000000000000 --- a/configure.ac +++ /dev/null @@ -1,153 +0,0 @@ -# Copyright (c) 2013-2024 MPI-M, Luis Kornblueh, Rahul Sinha and DWD, Florian Prill. All rights reserved. -# -# SPDX-License-Identifier: BSD-3-Clause -# - -AC_PREREQ([2.69]) -LT_PREREQ([2.4.6])dnl - -m4_pushdef([mtime_version], [1, 3, 0])dnl -AC_INIT([mtime], - m4_join([], - m4_argn(1, mtime_version).m4_argn(2, mtime_version).m4_argn(3, mtime_version), - m4_argn([4], mtime_version)), - [luis.kornblueh@mpimet.mpg.de]) -AC_SUBST([MTIME_VERSION_MAJOR], ['m4_argn([1], mtime_version)'])dnl -AC_SUBST([MTIME_VERSION_MINOR], ['m4_argn([2], mtime_version)'])dnl -AC_SUBST([MTIME_VERSION_PATCH], ['m4_argn([3], mtime_version)'])dnl -m4_popdef([mtime_version])dnl - -AC_CONFIG_MACRO_DIR([m4]) -dnl Make sure all required m4 files are in place: -m4_pattern_forbid([^((A[SC]|D)X|_KPSE)_])dnl -m4_pattern_allow([^DX_(CLEAN(_|FILES)|(PDF|PS)_GOAL|SNIPPET_|V_)])dnl -AC_CONFIG_AUX_DIR([config]) -AC_CONFIG_SRCDIR([include/mtime_calendar.h]) -AC_CONFIG_HEADERS([config/config.h]) - -AM_INIT_AUTOMAKE([1.16.1 foreign]) -AM_MAINTAINER_MODE([enable]) -AM_EXTRA_RECURSIVE_TARGETS([doc install-doc man install-man]) -m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) - -dnl Fix a bug in Autoconf 2.70 (see https://savannah.gnu.org/support/?110396): -m4_if(m4_version_compare(m4_defn([AC_AUTOCONF_VERSION]), [2.70]), [0], - [m4_pushdef([_AC_PROG_CC_C99], - m4_bpatsubst(m4_dquote(m4_defn([_AC_PROG_CC_C99])), - [\[ac_c_conftest_c89_program\]], [[ac_c_conftest_c99_program]]))dnl - AC_PROG_CC - m4_popdef([_AC_PROG_CC_C99])], - [AC_PROG_CC]) -dnl Expand the legacy macro for older version of Autoconf (2.69 and older): -m4_if(m4_version_compare(m4_defn([AC_AUTOCONF_VERSION]), [2.70]), [-1], - [AC_PROG_CC_C99]) -AS_VAR_IF([ac_cv_prog_cc_c99], [no], - [AC_MSG_FAILURE([C compiler does not support ISO C99])]) -AC_PROG_FC - -ACX_USE_LIBTOOL_CONFIGURATION([pic-only]) -dnl Get extension of a dynamically loaded module file from Libtool: -{ module=yes; eval acx_modext=\"$shrext_cmds\"; unset module;} -AC_SUBST([acx_modext])dnl -dnl Get the object directory from Libtool: -AC_SUBST([acx_objdir], [$objdir])dnl - -AC_LANG_PUSH([Fortran]) -dnl Automake does not trace AC_FC_PP_SRCEXT/ACX_FC_PP_SRCEXT and therefore -dnl does not add their results to the compilation rules. But AC_FC_SRCEXT is -dnl traced, therefore, we temporarily redefine AC_FC_SRCEXT so it would -dnl expand to ACX_FC_PP_SRCEXT: -m4_pushdef([AC_FC_SRCEXT], [ACX_FC_PP_SRCEXT($@)]) -AC_FC_SRCEXT([f90]) -m4_popdef([AC_FC_SRCEXT]) -ACX_FC_MODULE_NAMING([AC_SUBST([FCMODEXT], ["$acx_cv_fc_module_naming_ext"])]) -AM_CONDITIONAL([FCMODUC], [test x"$acx_cv_fc_module_naming_upper" = xyes]) -ACX_FC_MODULE_IN_FLAG([AC_SUBST([FCMODINC], ["$acx_cv_fc_module_in_flag"])]) -AC_LANG_POP([Fortran]) - -AC_SEARCH_LIBS([roundf], [m]) - -AC_ARG_ENABLE([python], - [AS_HELP_STRING([--enable-python], - [enable the Python interface @<:@default=no@:>@])], [], - [enable_python=no]) -AS_VAR_IF([enable_python], [yes], - [AS_IF([test "x$enable_shared" = xno || test "x$with_pic" = xno], - [AC_MSG_ERROR([cannot provide the Python interface when the shared libraries or dnl -PIC objects are disabled])])]) - -AC_ARG_ENABLE([check], - [AS_HELP_STRING([--enable-check], - [enable unit testing with check library @<:@default=auto@:>@])], [], - [enable_check=auto]) - -ACX_LANG_PACKAGE_INIT([CHECK], [-I], [-L]) - -AS_IF([test x"$enable_check" != xno], - [mtime_save_CFLAGS=$CFLAGS - CHECK_CFLAGS=${CHECK_CFLAGS-$acx_c_CHECK_inc_search_args} - CFLAGS="$CHECK_CFLAGS $CFLAGS" - AC_CHECK_HEADER([check.h], - [ACX_LANG_LIB_SEARCH([CHECK_CLIBS], [tcase_create], - ["$acx_c_CHECK_lib_search_args -lcheck"], - [CHECK_CLIBS=$acx_cv_c_lib_func_tcase_create - enable_check=yes], - [AS_VAR_IF([enable_check], [auto], - [enable_check=no], - [AC_MSG_FAILURE([cannot link to CHECK library])])])], - [AS_VAR_IF([enable_check], [auto], - [enable_check=no], - [AC_MSG_FAILURE([check.h not found])])], - [//]) - CFLAGS=$mtime_save_CFLAGS]) - -AS_VAR_IF([enable_check], [yes], - [AC_DEFINE([ENABLE_CHECK], [1], - [Define to 1 if the unit testing is enabled])], - [CHECK_CLIBS=;CHECK_CFLAGS=]) -AM_CONDITIONAL([ENABLE_CHECK], [test x"$enable_check" = xyes]) - -AS_VAR_IF([enable_python], [yes], [AM_PATH_PYTHON([2.7])]) -AM_CONDITIONAL([ENABLE_PYTHON], [test x"$enable_python" = xyes]) - -AM_MISSING_PROG([RAGEL], [ragel]) - -DX_DOXYGEN_FEATURE([ON]) -DX_MAN_FEATURE([ON]) -DX_INIT_DOXYGEN([$PACKAGE_NAME], [$(builddir)/Doxyfile]) -AM_CONDITIONAL([DX_FLAG_man], [test $DX_FLAG_man -eq 1]) -AM_CONDITIONAL([DX_FLAG_pdf], [test $DX_FLAG_pdf -eq 1]) -AM_CONDITIONAL([DX_FLAG_html], [test $DX_FLAG_html -eq 1]) -AM_CONDITIONAL([DX_FLAG_ps], [test $DX_FLAG_ps -eq 1]) - -AC_CONFIG_FILES([ - Makefile - doc/Doxyfile - doc/Makefile - examples/Makefile - include/Makefile - python/Makefile - src/Makefile - test/Makefile -]) - -AS_VAR_IF([enable_python], [yes], - [AC_CONFIG_FILES([ - python/mtime/_mtime.py -])]) - -AC_CONFIG_FILES([ - test/test_python.sh -], [chmod a+x "$ac_file"]) - -AC_CONFIG_LINKS([ - examples/iconatm.nml:examples/iconatm.nml - examples/iconoce.nml:examples/iconoce.nml -]) - -AS_VAR_IF([enable_python], [yes], - [AC_CONFIG_LINKS([ - python/mtime/__init__.py:python/mtime/__init__.py -])]) - -AC_OUTPUT diff --git a/contrib/00nagfor-libtool-patch/README.txt b/contrib/00nagfor-libtool-patch/README.txt deleted file mode 100644 index 660461961f5f238f040cd17c0c62a1586bbb32cd..0000000000000000000000000000000000000000 --- a/contrib/00nagfor-libtool-patch/README.txt +++ /dev/null @@ -1,9 +0,0 @@ -This patch is needed so that -Wl,-rpath option arguments make it into -the dependent libraries of a library and also ensures that -Wl,-Wl,, -options are passed to the compiler unaltered. - -It is intended for libtool 2.4.2 and can be applied after -e.g. autoreconf by - -$ patch -p1 <contrib/nagfor-libtool-patch/nagfor-libtool.patch - diff --git a/contrib/00nagfor-libtool-patch/nagfor-libtool-2.4.6.patch b/contrib/00nagfor-libtool-patch/nagfor-libtool-2.4.6.patch deleted file mode 100644 index 32d0f1e6d772536a57f25ce3699d915889171606..0000000000000000000000000000000000000000 --- a/contrib/00nagfor-libtool-patch/nagfor-libtool-2.4.6.patch +++ /dev/null @@ -1,122 +0,0 @@ ---- a/config/ltmain.sh 2012-06-12 00:20:43.000000000 +0200 -+++ b/config/ltmain.sh 2014-08-19 16:34:48.161235251 +0200 -@@ -3217,6 +3217,25 @@ - } - # end func_convert_path_msys_to_cygwin - -+func_add2xrpath () -+{ -+ dir="$1" -+ # We need an absolute path. -+ case $dir in -+ [\\/]* | [A-Za-z]:[\\/]*) ;; -+ =*) -+ func_stripname '=' '' "$dir" -+ dir=$lt_sysroot$func_stripname_result -+ ;; -+ *) -+ func_fatal_error "only absolute run-paths are allowed" -+ ;; -+ esac -+ case "$xrpath " in -+ *" $dir "*) ;; -+ *) func_append xrpath " $dir" ;; -+ esac -+} - - # func_convert_path_nix_to_cygwin ARG - # Convert path ARG from *nix to Cygwin format. Requires Cygwin installed in a -@@ -7147,20 +7166,7 @@ - func_stripname '-R' '' "$arg" - dir=$func_stripname_result - # We need an absolute path. -- case $dir in -- [\\/]* | [A-Za-z]:[\\/]*) ;; -- =*) -- func_stripname '=' '' "$dir" -- dir=$lt_sysroot$func_stripname_result -- ;; -- *) -- func_fatal_error "only absolute run-paths are allowed" -- ;; -- esac -- case "$xrpath " in -- *" $dir "*) ;; -- *) func_append xrpath " $dir" ;; -- esac -+ func_add2xrpath "$dir" - continue - ;; - -@@ -7221,6 +7227,49 @@ - ;; - - -Wl,*) -+ wlprefix=`expr x"$wl" : '.*' - 1` -+ wlprefix=`expr x"$arg" : 'x\(.\{'"$wlprefix"'\}\)'` -+ if test x"$wlprefix" = x"$wl" -a x"$wl" != x"-Wl,"; then -+ func_append compiler_flags " $arg" -+ func_append compile_command " $arg" -+ func_append finalize_command " $arg" -+ if expr "x$arg" : '^x'"$wl"'-rpath,,' >/dev/null ; then -+ func_stripname "$wl"'-rpath,,' '' "$arg" -+ dir=$func_stripname_result -+ func_add2xrpath "$dir" -+ elif expr "x$arg" : '^x'"$wl"'-rpath$' >/dev/null ; then -+ func_stripname "$wl" '' "$1" -+ dir=$func_stripname_result -+ if ! expr "x$1" : '^x'"$wl" >/dev/null \ -+ || ! test -d "$dir" ; then -+ func_fatal_error "$wl"'-rpath must be followed by '"$wl"'-escaped directory' -+ fi -+ shift -+ func_add2xrpath "$dir" -+ continue -+ else -+ func_stripname "$wl" '' "$arg" -+ func_append new_inherited_linker_flags " -Wl,$func_stripname_result" -+ fi -+ continue -+ elif expr "x$arg" : '^x-Wl,-rpath,' >/dev/null ; then -+ func_stripname '-Wl,-rpath,' '' "$arg" -+ dir=$func_stripname_result -+ func_add2xrpath "$dir" -+ continue -+ elif expr "x$arg" : '^x-Wl,-rpath$' >/dev/null ; then -+ func_stripname '-Wl,' '' "$1" -+ dir=$func_stripname_result -+ if ! expr "x$1" : '^x-Wl,' >/dev/null \ -+ || ! test -d "$dir" ; then -+ func_fatal_error '-Wl,-rpath must be followed by -Wl-escaped directory' -+ fi -+ func_quote_for_eval "$1" -+ func_append libtool_args " $func_quote_for_eval_result" -+ shift -+ func_add2xrpath "$dir" -+ continue -+ fi - func_stripname '-Wl,' '' "$arg" - args=$func_stripname_result - arg= -@@ -9515,6 +9562,10 @@ - *) func_append new_libs " $deplib" ;; - esac - ;; -+ -Wl,*) -+ func_stripname -Wl, '' "$deplib" -+ func_append new_libs " $wl$func_stripname_result" -+ ;; - *) func_append new_libs " $deplib" ;; - esac - done -@@ -10247,6 +10298,10 @@ - *) func_append new_libs " $deplib" ;; - esac - ;; -+ -Wl,*) -+ func_stripname -Wl, '' "$deplib" -+ func_append new_libs " $wl$func_stripname_result" -+ ;; - *) func_append new_libs " $deplib" ;; - esac - done diff --git a/contrib/00nagfor-libtool-patch/nagfor-libtool-2.4.7.patch b/contrib/00nagfor-libtool-patch/nagfor-libtool-2.4.7.patch deleted file mode 100644 index 9af416d050b9e93eb261679c5bf4085283e18939..0000000000000000000000000000000000000000 --- a/contrib/00nagfor-libtool-patch/nagfor-libtool-2.4.7.patch +++ /dev/null @@ -1,122 +0,0 @@ ---- a/config/ltmain.sh 2012-06-12 00:20:43.000000000 +0200 -+++ b/config/ltmain.sh 2014-08-19 16:34:48.161235251 +0200 -@@ -3217,6 +3217,25 @@ - } - # end func_convert_path_msys_to_cygwin - -+func_add2xrpath () -+{ -+ dir="$1" -+ # We need an absolute path. -+ case $dir in -+ [\\/]* | [A-Za-z]:[\\/]*) ;; -+ =*) -+ func_stripname '=' '' "$dir" -+ dir=$lt_sysroot$func_stripname_result -+ ;; -+ *) -+ func_fatal_error "only absolute run-paths are allowed" -+ ;; -+ esac -+ case "$xrpath " in -+ *" $dir "*) ;; -+ *) func_append xrpath " $dir" ;; -+ esac -+} - - # func_convert_path_nix_to_cygwin ARG - # Convert path ARG from *nix to Cygwin format. Requires Cygwin installed in a -@@ -7147,20 +7166,7 @@ - func_stripname '-R' '' "$arg" - dir=$func_stripname_result - # We need an absolute path. -- case $dir in -- [\\/]* | [A-Za-z]:[\\/]*) ;; -- =*) -- func_stripname '=' '' "$dir" -- dir=$lt_sysroot$func_stripname_result -- ;; -- *) -- func_fatal_error "only absolute run-paths are allowed" -- ;; -- esac -- case "$xrpath " in -- *" $dir "*) ;; -- *) func_append xrpath " $dir" ;; -- esac -+ func_add2xrpath "$dir" - continue - ;; - -@@ -7221,6 +7227,49 @@ - ;; - - -Wl,*) -+ wlprefix=`expr x"$wl" : '.*' - 1` -+ wlprefix=`expr x"$arg" : 'x\(.\{'"$wlprefix"'\}\)'` -+ if test x"$wlprefix" = x"$wl" -a x"$wl" != x"-Wl,"; then -+ func_append compiler_flags " $arg" -+ func_append compile_command " $arg" -+ func_append finalize_command " $arg" -+ if expr "x$arg" : '^x'"$wl"'-rpath,,' >/dev/null ; then -+ func_stripname "$wl"'-rpath,,' '' "$arg" -+ dir=$func_stripname_result -+ func_add2xrpath "$dir" -+ elif expr "x$arg" : '^x'"$wl"'-rpath$' >/dev/null ; then -+ func_stripname "$wl" '' "$1" -+ dir=$func_stripname_result -+ if ! expr "x$1" : '^x'"$wl" >/dev/null \ -+ || ! test -d "$dir" ; then -+ func_fatal_error "$wl"'-rpath must be followed by '"$wl"'-escaped directory' -+ fi -+ shift -+ func_add2xrpath "$dir" -+ continue -+ else -+ func_stripname "$wl" '' "$arg" -+ func_append new_inherited_linker_flags " -Wl,$func_stripname_result" -+ fi -+ continue -+ elif expr "x$arg" : '^x-Wl,-rpath,' >/dev/null ; then -+ func_stripname '-Wl,-rpath,' '' "$arg" -+ dir=$func_stripname_result -+ func_add2xrpath "$dir" -+ continue -+ elif expr "x$arg" : '^x-Wl,-rpath$' >/dev/null ; then -+ func_stripname '-Wl,' '' "$1" -+ dir=$func_stripname_result -+ if ! expr "x$1" : '^x-Wl,' >/dev/null \ -+ || ! test -d "$dir" ; then -+ func_fatal_error '-Wl,-rpath must be followed by -Wl-escaped directory' -+ fi -+ func_quote eval "$1" -+ func_append libtool_args " $func_quote_result" -+ shift -+ func_add2xrpath "$dir" -+ continue -+ fi - func_stripname '-Wl,' '' "$arg" - args=$func_stripname_result - arg= -@@ -9515,6 +9562,10 @@ - *) func_append new_libs " $deplib" ;; - esac - ;; -+ -Wl,*) -+ func_stripname -Wl, '' "$deplib" -+ func_append new_libs " $wl$func_stripname_result" -+ ;; - *) func_append new_libs " $deplib" ;; - esac - done -@@ -10247,6 +10298,10 @@ - *) func_append new_libs " $deplib" ;; - esac - ;; -+ -Wl,*) -+ func_stripname -Wl, '' "$deplib" -+ func_append new_libs " $wl$func_stripname_result" -+ ;; - *) func_append new_libs " $deplib" ;; - esac - done diff --git a/contrib/01aix-deplib-rpath-patch/README b/contrib/01aix-deplib-rpath-patch/README deleted file mode 100644 index 02a80684038b4c5dd1a9645e0af14dc9dbdb3062..0000000000000000000000000000000000000000 --- a/contrib/01aix-deplib-rpath-patch/README +++ /dev/null @@ -1,4 +0,0 @@ -This patch changes ltmain.sh to add directories found in -R options of -dependent libraries to the final link command, such that non-libtool -dynamic libraries (which are a shared object inside the .a file on AIX) are -handled appropriately. diff --git a/contrib/01aix-deplib-rpath-patch/aix-deplib-libtool.patch b/contrib/01aix-deplib-rpath-patch/aix-deplib-libtool.patch deleted file mode 100644 index ce07d8d99a037b71fd09ea170db2979bff3e0f60..0000000000000000000000000000000000000000 --- a/contrib/01aix-deplib-rpath-patch/aix-deplib-libtool.patch +++ /dev/null @@ -1,15 +0,0 @@ -patching file /tmp/tmp.fUvdRDtWV1 ---- /tmp/tmp.fUvdRDtWV1 2012-11-16 13:56:40.799501409 +0100 -+++ b/config/ltmain.sh 2012-11-16 13:27:39.657253614 +0100 -@@ -7171,7 +7171,10 @@ - # practice: - case $deplib in - -L*) new_libs="$deplib $new_libs" ;; -- -R*) ;; -+ -R*) -+ func_stripname '-R' '' "$deplib" -+ func_add2xrpath "$func_stripname_result" -+ ;; - *) - # And here is the reason: when a library appears more - # than once as an explicit dependence of a library, or diff --git a/contrib/03ltmain-ld-groups-patch/README b/contrib/03ltmain-ld-groups-patch/README deleted file mode 100644 index 5d8cb262f2efc4d2818deb523036a9ceca278b8e..0000000000000000000000000000000000000000 --- a/contrib/03ltmain-ld-groups-patch/README +++ /dev/null @@ -1,4 +0,0 @@ -This patch changes ltmain.sh to keep the GNU ld library grouping options --- -(, --start-group, -), and --end-group -- in the list of dependency -libraries so that the desired behaviour is retained (i.e. libraries with -cyclic dependencies can be linked). diff --git a/contrib/03ltmain-ld-groups-patch/ltmain-ld-groups-libtool-2.4.6.patch b/contrib/03ltmain-ld-groups-patch/ltmain-ld-groups-libtool-2.4.6.patch deleted file mode 100644 index 3546e2c2d5dd960e445bd62ceaa5738634ccc0bf..0000000000000000000000000000000000000000 --- a/contrib/03ltmain-ld-groups-patch/ltmain-ld-groups-libtool-2.4.6.patch +++ /dev/null @@ -1,30 +0,0 @@ ---- a/config/ltmain.sh 2016-10-27 18:24:46.464521224 +0200 -+++ b/config/ltmain.sh 2016-10-27 18:25:41.837607694 +0200 -@@ -7226,6 +7226,11 @@ - arg=$func_stripname_result - ;; - -+ -Wl,--start-group|-Wl,--end-group|-Wl,-\(|-Wl,-\)) -+ func_append deplibs " $arg" -+ continue -+ ;; -+ - -Wl,*) - wlprefix=`expr x"$wl" : '.*' - 1` - wlprefix=`expr x"$arg" : 'x\(.\{'"$wlprefix"'\}\)'` -@@ -7879,6 +7884,15 @@ - alldeplibs=: - continue - ;; -+ -Wl,--start-group|-Wl,--end-group|-Wl,-\(|-Wl,-\)) -+ if test "$linkmode,$pass" = "prog,link"; then -+ compile_deplibs="$deplib $compile_deplibs" -+ finalize_deplibs="$deplib $finalize_deplibs" -+ else -+ deplibs="$deplib $deplibs" -+ fi -+ continue -+ ;; - esac # case $deplib - - $found || test -f "$lib" \ diff --git a/contrib/04ltmain-xlinker-patch/README b/contrib/04ltmain-xlinker-patch/README deleted file mode 100644 index 3324a82c67e1230482211eaedb127c9cdeb0f926..0000000000000000000000000000000000000000 --- a/contrib/04ltmain-xlinker-patch/README +++ /dev/null @@ -1,4 +0,0 @@ -This patch allows having -Xlinker and -XCClinker command line options in -libtool --mode=compile invocations. - -This is crucial because linker flags are different for nagfor and gcc. diff --git a/contrib/04ltmain-xlinker-patch/ltmain-xlinker-patch.patch b/contrib/04ltmain-xlinker-patch/ltmain-xlinker-patch.patch deleted file mode 100644 index 989b6ae5d2bdc5050eb899255fd56cd2add4b906..0000000000000000000000000000000000000000 --- a/contrib/04ltmain-xlinker-patch/ltmain-xlinker-patch.patch +++ /dev/null @@ -1,27 +0,0 @@ ---- a/config/ltmain.sh 2019-06-13 14:57:30.333358936 +0200 -+++ b/config/ltmain.sh.new 2019-06-13 14:56:02.639520965 +0200 -@@ -3310,6 +3310,12 @@ - continue - ;; - -+ skip ) -+ lastarg= -+ arg_mode=normal -+ continue -+ ;; -+ - normal ) - # Accept any command-line options. - case $arg in -@@ -3335,6 +3341,11 @@ - continue - ;; - -+ -Xlinker | -XCClinker) -+ arg_mode=skip # the next one is ignored for compile mode -+ continue -+ ;; -+ - -Xcompiler) - arg_mode=arg # the next one goes into the "base_compile" arg list - continue # The current "srcfile" will either be retained or diff --git a/contrib/05macos-nagfor-patch/macos-nagfor.patch b/contrib/05macos-nagfor-patch/macos-nagfor.patch deleted file mode 100644 index befdb41228fa2551824267b237573afcb10579f6..0000000000000000000000000000000000000000 --- a/contrib/05macos-nagfor-patch/macos-nagfor.patch +++ /dev/null @@ -1,13 +0,0 @@ ---- a/config/ltmain.sh 2019-10-18 09:59:55.967567005 +0200 -+++ b/config/ltmain.sh 2019-10-18 10:00:11.403887362 +0200 -@@ -8958,8 +8958,8 @@ - xlcverstring="$wl-compatibility_version $wl$minor_current $wl-current_version $wl$minor_current.$revision" - verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" - # On Darwin other compilers -- case $CC in -- nagfor*) -+ case $with_nagfor in -+ yes) - verstring="$wl-compatibility_version $wl$minor_current $wl-current_version $wl$minor_current.$revision" - ;; - *) diff --git a/contrib/06ltmain_nag_pthread-patch/ltmain_nag_pthread.patch b/contrib/06ltmain_nag_pthread-patch/ltmain_nag_pthread.patch deleted file mode 100644 index 6e6355b98f104ed7bf4a144bfe8e38d2e4cd7e24..0000000000000000000000000000000000000000 --- a/contrib/06ltmain_nag_pthread-patch/ltmain_nag_pthread.patch +++ /dev/null @@ -1,45 +0,0 @@ ---- a/config/ltmain.sh -+++ b/config/ltmain.sh -@@ -7936,6 +7936,12 @@ func_mode_link () - # Convert "-framework foo" to "foo.ltframework" - if test -n "$inherited_linker_flags"; then - tmp_inherited_linker_flags=`$ECHO "$inherited_linker_flags" | $SED 's/-framework \([^ $]*\)/\1.ltframework/g'` -+ -+ # Additionally convert " -pthread" to " -Wl,-pthread" for nagfor -+ if test yes = $with_nagfor ; then -+ tmp_inherited_linker_flags=`$ECHO " $tmp_inherited_linker_flags " | $SED 's/ -pthread[[:blank:]]/ -Wl,-pthread /g'` -+ fi -+ - for tmp_inherited_linker_flag in $tmp_inherited_linker_flags; do - case " $new_inherited_linker_flags " in - *" $tmp_inherited_linker_flag "*) ;; -@@ -9570,6 +9577,20 @@ EOF - ;; - esac - -+ # Time to revert the changes made for nagfor. This might be required if -+ # we need to make the output '*.la' file to be correctly interpreted for -+ # gcc (e.g. the output library that we are linking now with nagfor needs -+ # to be linked by gcc later). In this case, the libtool script of a -+ # package that will try to link our library will have to make similar -+ # non-standard nagfor-specific modifications of the '-pthread' flag. -+ # Thus, if we are creating a Fortran library for nagfor only, it is -+ # better not to revert the changes, otherwise, uncomment the following -+ # lines. -+ -+ if test yes = $with_nagfor ; then -+ new_inherited_linker_flags=`$ECHO " $new_inherited_linker_flags " | $SED 's/ -Wl,-pthread / -pthread /g;s/^ *//;s/ *$//'` -+ fi -+ - # move library search paths that coincide with paths to not yet - # installed libraries to the beginning of the library search list - new_libs= -@@ -10328,6 +10348,8 @@ - *) func_append new_libs " $deplib" ;; - esac - ;; -+ -Wl,-pthread) -+ func_append new_libs " $deplib" ;; - -Wl,*) - func_stripname -Wl, '' "$deplib" - func_append new_libs " $wl$func_stripname_result" diff --git a/contrib/07ltmain-early-xcompile-patch/README b/contrib/07ltmain-early-xcompile-patch/README deleted file mode 100644 index 510e36ee9df7468b602a98d6014b179cebbe89f6..0000000000000000000000000000000000000000 --- a/contrib/07ltmain-early-xcompile-patch/README +++ /dev/null @@ -1,3 +0,0 @@ -This patch fixes a bug in libtool that leads to a fault when --Xcompiler is used as first option of compiler flag variables like -CFLAGS and FCLAGS. diff --git a/contrib/07ltmain-early-xcompile-patch/ltmain-early-xcompile-libtool-2.4.6.patch b/contrib/07ltmain-early-xcompile-patch/ltmain-early-xcompile-libtool-2.4.6.patch deleted file mode 100644 index dab413481b044c73b24b6c54f3963fb9ff7f7f47..0000000000000000000000000000000000000000 --- a/contrib/07ltmain-early-xcompile-patch/ltmain-early-xcompile-libtool-2.4.6.patch +++ /dev/null @@ -1,12 +0,0 @@ ---- a/config/ltmain.sh -+++ b/config/ltmain.sh -@@ -3300,7 +3300,8 @@ func_mode_compile () - case $arg_mode in - arg ) - # do not "continue". Instead, add this to base_compile -- lastarg=$arg -+ lastarg=$srcfile -+ srcfile=$arg - arg_mode=normal - ;; - diff --git a/contrib/08ltmain-parallel-printf-patch/ltmain-parallel-printf-libtool-2.4.6.patch b/contrib/08ltmain-parallel-printf-patch/ltmain-parallel-printf-libtool-2.4.6.patch deleted file mode 100644 index dbb1602804a4d324d9b71950ece9ec45b0c8e4c3..0000000000000000000000000000000000000000 --- a/contrib/08ltmain-parallel-printf-patch/ltmain-parallel-printf-libtool-2.4.6.patch +++ /dev/null @@ -1,32 +0,0 @@ -From 7fade4eb31d7d8bc930e1fe2486fa9dd19366fb4 Mon Sep 17 00:00:00 2001 -From: Thomas Jahns <jahns@dkrz.de> -Date: Wed, 21 Aug 2019 19:29:26 +0200 -Subject: [PATCH] Re-apply libtool patches. - ---- - config/ltmain.sh | 12 ++++++++++++ - 1 file changed, 12 insertions(+) - -diff --git a/config/ltmain.sh b/config/ltmain.sh -index 0f0a2da3..e8a25b75 100644 ---- a/config/ltmain.sh -+++ b/config/ltmain.sh -@@ -310,6 +310,18 @@ test -z "$GREP" && { - # in the command search PATH. - - : ${CP="cp -f"} -+# work around bug in libtool which raises an error when running in a -+# parallel make that should have been handled in printf internally -+printf() -+{ -+ while ! builtin printf "$@" ; do -+ errcode=$? -+ # errcode might be EAGAIN=11 which means to simply try again -+ if [ $errcode != 11 ]; then -+ return $errcode -+ fi -+ done -+} - : ${ECHO="printf %s\n"} - : ${EGREP="$GREP -E"} - : ${FGREP="$GREP -F"} diff --git a/contrib/09debian-no-overlink-patch/README.txt b/contrib/09debian-no-overlink-patch/README.txt deleted file mode 100644 index 660af137ce728846088368fcf77c073cc1add705..0000000000000000000000000000000000000000 --- a/contrib/09debian-no-overlink-patch/README.txt +++ /dev/null @@ -1,11 +0,0 @@ -The patches are taken the Debian project: -https://sources.debian.org/patches/libtool/2.4.7-7/deplib_binary.patch -https://sources.debian.org/patches/libtool/2.4.7-7/link_all_deplibs.patch - -The patches prevent overlinking. - -The comment in link_all_deplibs.patch says: -## Do not link against deplibs. This is not needed for shared libs -## on atleast ELF systems since those already know which libs they -## need themself. This seems to break a few things and will be fixed -## in a better way in a future upstream version. diff --git a/contrib/09debian-no-overlink-patch/deplib_binary.patch b/contrib/09debian-no-overlink-patch/deplib_binary.patch deleted file mode 100644 index 568c603ca24b87790625bdaa7465a8896129d150..0000000000000000000000000000000000000000 --- a/contrib/09debian-no-overlink-patch/deplib_binary.patch +++ /dev/null @@ -1,32 +0,0 @@ ---- a/config/ltmain.sh -+++ b/config/ltmain.sh -@@ -6028,19 +6028,19 @@ - # It is a libtool convenience library, so add in its objects. - func_append convenience " $ladir/$objdir/$old_library" - func_append old_convenience " $ladir/$objdir/$old_library" -+ tmp_libs= -+ for deplib in $dependency_libs; do -+ deplibs="$deplib $deplibs" -+ if $opt_preserve_dup_deps; then -+ case "$tmp_libs " in -+ *" $deplib "*) func_append specialdeplibs " $deplib" ;; -+ esac -+ fi -+ func_append tmp_libs " $deplib" -+ done - elif test prog != "$linkmode" && test lib != "$linkmode"; then - func_fatal_error "'$lib' is not a convenience library" - fi -- tmp_libs= -- for deplib in $dependency_libs; do -- deplibs="$deplib $deplibs" -- if $opt_preserve_dup_deps; then -- case "$tmp_libs " in -- *" $deplib "*) func_append specialdeplibs " $deplib" ;; -- esac -- fi -- func_append tmp_libs " $deplib" -- done - continue - fi # $pass = conv - diff --git a/contrib/09debian-no-overlink-patch/link_all_deplibs.patch b/contrib/09debian-no-overlink-patch/link_all_deplibs.patch deleted file mode 100644 index 8e8988352f70f6ebf9168b7df7398834c48539dd..0000000000000000000000000000000000000000 --- a/contrib/09debian-no-overlink-patch/link_all_deplibs.patch +++ /dev/null @@ -1,49 +0,0 @@ -## Do not link against deplibs. This is not needed for shared libs -## on atleast ELF systems since those already know which libs they -## need themself. This seems to break a few things and will be fixed -## in a better way in a future upstream version. - ---- a/config/ltmain.sh -+++ b/config/ltmain.sh -@@ -5706,7 +5706,10 @@ - case $pass in - dlopen) libs=$dlfiles ;; - dlpreopen) libs=$dlprefiles ;; -- link) libs="$deplibs %DEPLIBS% $dependency_libs" ;; -+ link) -+ libs="$deplibs %DEPLIBS%" -+ test "X$link_all_deplibs" != Xno && libs="$libs $dependency_libs" -+ ;; - esac - fi - if test lib,dlpreopen = "$linkmode,$pass"; then ---- a/m4/libtool.m4 -+++ b/m4/libtool.m4 -@@ -4956,6 +4956,9 @@ - ;; - esac - ;; -+ linux* | k*bsd*-gnu | gnu*) -+ _LT_TAGVAR(link_all_deplibs, $1)=no -+ ;; - *) - _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' - ;; -@@ -5018,6 +5021,9 @@ - openbsd* | bitrig*) - with_gnu_ld=no - ;; -+ linux* | k*bsd*-gnu | gnu*) -+ _LT_TAGVAR(link_all_deplibs, $1)=no -+ ;; - esac - - _LT_TAGVAR(ld_shlibs, $1)=yes -@@ -5794,6 +5800,7 @@ - if test yes = "$lt_cv_irix_exported_symbol"; then - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations $wl-exports_file $wl$export_symbols -o $lib' - fi -+ _LT_TAGVAR(link_all_deplibs, $1)=no - else - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -exports_file $export_symbols -o $lib' diff --git a/contrib/10ltmain-ld-positional-wl-patch/README b/contrib/10ltmain-ld-positional-wl-patch/README deleted file mode 100644 index da11ad928d7dc2a02ce9100231916b8f7fcace32..0000000000000000000000000000000000000000 --- a/contrib/10ltmain-ld-positional-wl-patch/README +++ /dev/null @@ -1,11 +0,0 @@ -This patch changes ltmain.sh to keep the relative order of the GNU ld library -options --as-needed/--no-as-needed and --whole-archive/--no-whole-archive on the -command line. - -The patch was originally taken from the Debian dh-autoreconf project -(https://salsa.debian.org/debian/dh-autoreconf) and then combined with the -existing 03ltmain-ld-groups-patch. - -To allow for multiple appearances of the options on the command line, the patch -was further extended following (some of) the recommendations in -https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=347650#65 diff --git a/contrib/10ltmain-ld-positional-wl-patch/ltmain-ld-positional-wl-libtool-2.4.6.patch b/contrib/10ltmain-ld-positional-wl-patch/ltmain-ld-positional-wl-libtool-2.4.6.patch deleted file mode 100644 index a691f91e9e31a16e0cbea48d7a0252da32290c60..0000000000000000000000000000000000000000 --- a/contrib/10ltmain-ld-positional-wl-patch/ltmain-ld-positional-wl-libtool-2.4.6.patch +++ /dev/null @@ -1,35 +0,0 @@ ---- a/config/ltmain.sh -+++ b/config/ltmain.sh -@@ -7250,7 +7250,9 @@ func_mode_link () - arg=$func_stripname_result - ;; - -- -Wl,--start-group|-Wl,--end-group|-Wl,-\(|-Wl,-\)) -+ -Wl,--start-group|-Wl,--end-group|-Wl,-\(|-Wl,-\)| \ -+ -Wl,--as-needed|-Wl,-as-needed|-Wl,--no-as-needed|-Wl,-no-as-needed| \ -+ -Wl,--whole-archive|-Wl,-whole-archive|-Wl,--no-whole-archive|-Wl,-no-whole-archive) - func_append deplibs " $arg" - continue - ;; -@@ -7911,7 +7913,9 @@ func_mode_link () - alldeplibs=: - continue - ;; -- -Wl,--start-group|-Wl,--end-group|-Wl,-\(|-Wl,-\)) -+ -Wl,--start-group|-Wl,--end-group|-Wl,-\(|-Wl,-\)| \ -+ -Wl,--as-needed|-Wl,-as-needed|-Wl,--no-as-needed|-Wl,-no-as-needed| \ -+ -Wl,--whole-archive|-Wl,-whole-archive|-Wl,--no-whole-archive|-Wl,-no-whole-archive) - if test "$linkmode,$pass" = "prog,link"; then - compile_deplibs="$deplib $compile_deplibs" - finalize_deplibs="$deplib $finalize_deplibs" -@@ -8684,6 +8688,10 @@ func_mode_link () - func_stripname '-R' '' "$deplib" - func_add2xrpath "$func_stripname_result" - ;; -+ -Wl,--as-needed|-Wl,-as-needed|-Wl,--no-as-needed|-Wl,-no-as-needed| \ -+ -Wl,--whole-archive|-Wl,-whole-archive|-Wl,--no-whole-archive|-Wl,-no-whole-archive) -+ new_libs="$deplib $new_libs" -+ ;; - *) - # And here is the reason: when a library appears more - # than once as an explicit dependence of a library, or diff --git a/doc/Doxyfile.in b/doc/Doxyfile.in deleted file mode 100644 index 1540614ed0640935120056f698b16ce7be8a1d16..0000000000000000000000000000000000000000 --- a/doc/Doxyfile.in +++ /dev/null @@ -1,1846 +0,0 @@ -# Copyright (c) 2013-2024 MPI-M, Luis Kornblueh, Rahul Sinha and DWD, Florian Prill. All rights reserved. -# -# SPDX-License-Identifier: CC0-1.0 -# - -# Doxyfile 1.8.3.1 - -# This file describes the settings to be used by the documentation system -# doxygen (www.doxygen.org) for a project. -# -# All text after a hash (#) is considered a comment and will be ignored. -# The format is: -# TAG = value [value, ...] -# For lists items can also be appended using: -# TAG += value [value, ...] -# Values that contain spaces should be placed between quotes (" "). - -#--------------------------------------------------------------------------- -# Project related configuration options -#--------------------------------------------------------------------------- - -# This tag specifies the encoding used for all characters in the config file -# that follow. The default is UTF-8 which is also the encoding used for all -# text before the first occurrence of this tag. Doxygen uses libiconv (or the -# iconv built into libc) for the transcoding. See -# http://www.gnu.org/software/libiconv for the list of possible encodings. - -DOXYFILE_ENCODING = UTF-8 - -# The PROJECT_NAME tag is a single word (or sequence of words) that should -# identify the project. Note that if you do not use Doxywizard you need -# to put quotes around the project name if it contains spaces. - -PROJECT_NAME = @PACKAGE_NAME@ - -# 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 = @PACKAGE_VERSION@ - -# Using the PROJECT_BRIEF tag one can provide an optional one line description -# for a project that appears at the top of each page and should give viewer -# a quick idea about the purpose of the project. Keep the description short. - -PROJECT_BRIEF = - -# With the PROJECT_LOGO tag one can specify an logo or icon that is -# included in the documentation. The maximum height of the logo should not -# exceed 55 pixels and the maximum width should not exceed 200 pixels. -# Doxygen will copy the logo to the output directory. - -PROJECT_LOGO = - -# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) -# base path where the generated documentation will be put. -# If a relative path is entered, it will be relative to the location -# where doxygen was started. If left blank the current directory will be used. - -OUTPUT_DIRECTORY = @DX_DOCDIR@ - -# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create -# 4096 sub-directories (in 2 levels) under the output directory of each output -# format and will distribute the generated files over these directories. -# Enabling this option can be useful when feeding doxygen a huge amount of -# source files, where putting all generated files in the same directory would -# otherwise cause performance problems for the file system. - -CREATE_SUBDIRS = NO - -# The OUTPUT_LANGUAGE tag is used to specify the language in which all -# documentation generated by doxygen is written. Doxygen will use this -# information to generate all constant output in the proper language. -# The default language is English, other supported languages are: -# Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, -# Croatian, Czech, Danish, Dutch, Esperanto, Farsi, Finnish, French, German, -# Greek, Hungarian, Italian, Japanese, Japanese-en (Japanese with English -# messages), Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, -# Polish, Portuguese, Romanian, Russian, Serbian, Serbian-Cyrillic, Slovak, -# Slovene, Spanish, Swedish, Ukrainian, and Vietnamese. - -OUTPUT_LANGUAGE = English - -# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will -# include brief member descriptions after the members that are listed in -# the file and class documentation (similar to JavaDoc). -# Set to NO to disable this. - -BRIEF_MEMBER_DESC = YES - -# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend -# the brief description of a member or function before the detailed description. -# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the -# brief descriptions will be completely suppressed. - -REPEAT_BRIEF = YES - -# This tag implements a quasi-intelligent brief description abbreviator -# that is used to form the text in various listings. Each string -# in this list, if found as the leading text of the brief description, will be -# stripped from the text and the result after processing the whole list, is -# used as the annotated text. Otherwise, the brief description is used as-is. -# If left blank, the following values are used ("$name" is automatically -# replaced with the name of the entity): "The $name class" "The $name widget" -# "The $name file" "is" "provides" "specifies" "contains" -# "represents" "a" "an" "the" - -ABBREVIATE_BRIEF = - -# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then -# Doxygen will generate a detailed section even if there is only a brief -# description. - -ALWAYS_DETAILED_SEC = NO - -# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all -# inherited members of a class in the documentation of that class as if those -# members were ordinary class members. Constructors, destructors and assignment -# operators of the base classes will not be shown. - -INLINE_INHERITED_MEMB = NO - -# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full -# path before files name in the file list and in the header files. If set -# to NO the shortest path that makes the file name unique will be used. - -FULL_PATH_NAMES = YES - -# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag -# can be used to strip a user-defined part of the path. Stripping is -# only done if one of the specified strings matches the left-hand part of -# the path. The tag can be used to show relative paths in the file list. -# If left blank the directory from which doxygen is run is used as the -# path to strip. Note that you specify absolute paths here, but also -# relative paths, which will be relative from the directory where doxygen is -# started. - -STRIP_FROM_PATH = - -# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of -# the path mentioned in the documentation of a class, which tells -# the reader which header file to include in order to use a class. -# If left blank only the name of the header file containing the class -# definition is used. Otherwise one should specify the include paths that -# are normally passed to the compiler using the -I flag. - -STRIP_FROM_INC_PATH = - -# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter -# (but less readable) file names. This can be useful if your file system -# doesn't support long names like on DOS, Mac, or CD-ROM. - -SHORT_NAMES = NO - -# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen -# will interpret the first line (until the first dot) of a JavaDoc-style -# comment as the brief description. If set to NO, the JavaDoc -# comments will behave just like regular Qt-style comments -# (thus requiring an explicit @brief command for a brief description.) - -JAVADOC_AUTOBRIEF = NO - -# If the QT_AUTOBRIEF tag is set to YES then Doxygen will -# interpret the first line (until the first dot) of a Qt-style -# comment as the brief description. If set to NO, the comments -# will behave just like regular Qt-style comments (thus requiring -# an explicit \brief command for a brief description.) - -QT_AUTOBRIEF = NO - -# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen -# treat a multi-line C++ special comment block (i.e. a block of //! or /// -# comments) as a brief description. This used to be the default behaviour. -# The new default is to treat a multi-line C++ comment block as a detailed -# description. Set this tag to YES if you prefer the old behaviour instead. - -MULTILINE_CPP_IS_BRIEF = NO - -# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented -# member inherits the documentation from any documented member that it -# re-implements. - -INHERIT_DOCS = YES - -# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce -# a new page for each member. If set to NO, the documentation of a member will -# be part of the file/class/namespace that contains it. - -SEPARATE_MEMBER_PAGES = NO - -# The TAB_SIZE tag can be used to set the number of spaces in a tab. -# Doxygen uses this value to replace tabs by spaces in code fragments. - -TAB_SIZE = 4 - -# This tag can be used to specify a number of aliases that acts -# as commands in the documentation. An alias has the form "name=value". -# For example adding "sideeffect=\par Side Effects:\n" will allow you to -# put the command \sideeffect (or @sideeffect) in the documentation, which -# will result in a user-defined paragraph with heading "Side Effects:". -# You can put \n's in the value part of an alias to insert newlines. - -ALIASES = - -# This tag can be used to specify a number of word-keyword mappings (TCL only). -# A mapping has the form "name=value". For example adding -# "class=itcl::class" will allow you to use the command class in the -# itcl::class meaning. - -TCL_SUBST = - -# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C -# sources only. Doxygen will then generate output that is more tailored for C. -# For instance, some of the names that are used will be different. The list -# of all members will be omitted, etc. - -OPTIMIZE_OUTPUT_FOR_C = YES - -# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java -# sources only. Doxygen will then generate output that is more tailored for -# Java. For instance, namespaces will be presented as packages, qualified -# scopes will look different, etc. - -OPTIMIZE_OUTPUT_JAVA = NO - -# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran -# sources only. Doxygen will then generate output that is more tailored for -# Fortran. - -OPTIMIZE_FOR_FORTRAN = NO - -# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL -# sources. Doxygen will then generate output that is tailored for -# VHDL. - -OPTIMIZE_OUTPUT_VHDL = NO - -# Doxygen selects the parser to use depending on the extension of the files it -# parses. With this tag you can assign which parser to use for a given -# extension. Doxygen has a built-in mapping, but you can override or extend it -# using this tag. The format is ext=language, where ext is a file extension, -# and language is one of the parsers supported by doxygen: IDL, Java, -# Javascript, CSharp, C, C++, D, PHP, Objective-C, Python, Fortran, VHDL, C, -# C++. For instance to make doxygen treat .inc files as Fortran files (default -# is PHP), and .f files as C (default is Fortran), use: inc=Fortran f=C. Note -# that for custom extensions you also need to set FILE_PATTERNS otherwise the -# files are not read by doxygen. - -EXTENSION_MAPPING = - -# If MARKDOWN_SUPPORT is enabled (the default) then doxygen pre-processes all -# comments according to the Markdown format, which allows for more readable -# documentation. See http://daringfireball.net/projects/markdown/ for details. -# The output of markdown processing is further processed by doxygen, so you -# can mix doxygen, HTML, and XML commands with Markdown formatting. -# Disable only in case of backward compatibilities issues. - -MARKDOWN_SUPPORT = YES - -# When enabled doxygen tries to link words that correspond to documented classes, -# or namespaces to their corresponding documentation. Such a link can be -# prevented in individual cases by by putting a % sign in front of the word or -# globally by setting AUTOLINK_SUPPORT to NO. - -AUTOLINK_SUPPORT = YES - -# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want -# to include (a tag file for) the STL sources as input, then you should -# set this tag to YES in order to let doxygen match functions declarations and -# definitions whose arguments contain STL classes (e.g. func(std::string); v.s. -# func(std::string) {}). This also makes the inheritance and collaboration -# diagrams that involve STL classes more complete and accurate. - -BUILTIN_STL_SUPPORT = NO - -# If you use Microsoft's C++/CLI language, you should set this option to YES to -# enable parsing support. - -CPP_CLI_SUPPORT = NO - -# Set the SIP_SUPPORT tag to YES if your project consists of sip sources only. -# Doxygen will parse them like normal C++ but will assume all classes use public -# instead of private inheritance when no explicit protection keyword is present. - -SIP_SUPPORT = NO - -# For Microsoft's IDL there are propget and propput attributes to indicate -# getter and setter methods for a property. Setting this option to YES (the -# default) will make doxygen replace the get and set methods by a property in -# the documentation. This will only work if the methods are indeed getting or -# setting a simple type. If this is not the case, or you want to show the -# methods anyway, you should set this option to NO. - -IDL_PROPERTY_SUPPORT = YES - -# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC -# tag is set to YES, then doxygen will reuse the documentation of the first -# member in the group (if any) for the other members of the group. By default -# all members of a group must be documented explicitly. - -DISTRIBUTE_GROUP_DOC = NO - -# Set the SUBGROUPING tag to YES (the default) to allow class member groups of -# the same type (for instance a group of public functions) to be put as a -# subgroup of that type (e.g. under the Public Functions section). Set it to -# NO to prevent subgrouping. Alternatively, this can be done per class using -# the \nosubgrouping command. - -SUBGROUPING = YES - -# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and -# unions are shown inside the group in which they are included (e.g. using -# @ingroup) instead of on a separate page (for HTML and Man pages) or -# section (for LaTeX and RTF). - -INLINE_GROUPED_CLASSES = YES - -# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and -# unions with only public data fields will be shown inline in the documentation -# of the scope in which they are defined (i.e. file, namespace, or group -# documentation), provided this scope is documented. If set to NO (the default), -# structs, classes, and unions are shown on a separate page (for HTML and Man -# pages) or section (for LaTeX and RTF). - -INLINE_SIMPLE_STRUCTS =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 - -# Similar to the SYMBOL_CACHE_SIZE the size of the symbol lookup cache can be -# set using LOOKUP_CACHE_SIZE. This cache is used to resolve symbols given -# their name and scope. Since this can be an expensive process and often the -# same symbol appear multiple times in the code, doxygen keeps a cache of -# pre-resolved symbols. If the cache is too small doxygen will become slower. -# If the cache is too large, memory is wasted. The cache size is given by this -# formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range is 0..9, the default is 0, -# corresponding to a cache size of 2^16 = 65536 symbols. - -LOOKUP_CACHE_SIZE = 0 - -#--------------------------------------------------------------------------- -# Build related configuration options -#--------------------------------------------------------------------------- - -# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in -# documentation are documented, even if no documentation was available. -# Private class members and static file members will be hidden unless -# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES - -EXTRACT_ALL = NO - -# If the EXTRACT_PRIVATE tag is set to YES all private members of a class -# will be included in the documentation. - -EXTRACT_PRIVATE = NO - -# If the EXTRACT_PACKAGE tag is set to YES all members with package or internal -# scope will be included in the documentation. - -EXTRACT_PACKAGE = NO - -# If the EXTRACT_STATIC tag is set to YES all static members of a file -# will be included in the documentation. - -EXTRACT_STATIC = NO - -# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) -# defined locally in source files will be included in the documentation. -# If set to NO only classes defined in header files are included. - -EXTRACT_LOCAL_CLASSES = NO - -# This flag is only useful for Objective-C code. When set to YES local -# methods, which are defined in the implementation section but not in -# the interface are included in the documentation. -# If set to NO (the default) only methods in the interface are included. - -EXTRACT_LOCAL_METHODS = NO - -# If this flag is set to YES, the members of anonymous namespaces will be -# extracted and appear in the documentation as a namespace called -# 'anonymous_namespace{file}', where file will be replaced with the base -# name of the file that contains the anonymous namespace. By default -# anonymous namespaces are hidden. - -EXTRACT_ANON_NSPACES = NO - -# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all -# undocumented members of documented classes, files or namespaces. -# If set to NO (the default) these members will be included in the -# various overviews, but no documentation section is generated. -# This option has no effect if EXTRACT_ALL is enabled. - -HIDE_UNDOC_MEMBERS = NO - -# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all -# undocumented classes that are normally visible in the class hierarchy. -# If set to NO (the default) these classes will be included in the various -# overviews. This option has no effect if EXTRACT_ALL is enabled. - -HIDE_UNDOC_CLASSES = NO - -# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all -# friend (class|struct|union) declarations. -# If set to NO (the default) these declarations will be included in the -# documentation. - -HIDE_FRIEND_COMPOUNDS = NO - -# If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any -# documentation blocks found inside the body of a function. -# If set to NO (the default) these blocks will be appended to the -# function's detailed documentation block. - -HIDE_IN_BODY_DOCS = NO - -# The INTERNAL_DOCS tag determines if documentation -# that is typed after a \internal command is included. If the tag is set -# to NO (the default) then the documentation will be excluded. -# Set it to YES to include the internal documentation. - -INTERNAL_DOCS = NO - -# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate -# file names in lower-case letters. If set to YES upper-case letters are also -# allowed. This is useful if you have classes or files whose names only differ -# in case and if your file system supports case sensitive file names. Windows -# and Mac users are advised to set this option to NO. - -CASE_SENSE_NAMES = NO - -# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen -# will show members with their full class and namespace scopes in the -# documentation. If set to YES the scope will be hidden. - -HIDE_SCOPE_NAMES = NO - -# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen -# will put a list of the files that are included by a file in the documentation -# of that file. - -SHOW_INCLUDE_FILES = YES - -# If the FORCE_LOCAL_INCLUDES tag is set to YES then Doxygen -# will list include files with double quotes in the documentation -# rather than with sharp brackets. - -FORCE_LOCAL_INCLUDES = NO - -# If the INLINE_INFO tag is set to YES (the default) then a tag [inline] -# is inserted in the documentation for inline members. - -INLINE_INFO = YES - -# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen -# will sort the (detailed) documentation of file and class members -# alphabetically by member name. If set to NO the members will appear in -# declaration order. - -SORT_MEMBER_DOCS = YES - -# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the -# brief documentation of file, namespace and class members alphabetically -# by member name. If set to NO (the default) the members will appear in -# declaration order. - -SORT_BRIEF_DOCS = NO - -# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen -# will sort the (brief and detailed) documentation of class members so that -# constructors and destructors are listed first. If set to NO (the default) -# the constructors will appear in the respective orders defined by -# SORT_MEMBER_DOCS and SORT_BRIEF_DOCS. -# This tag will be ignored for brief docs if SORT_BRIEF_DOCS is set to NO -# and ignored for detailed docs if SORT_MEMBER_DOCS is set to NO. - -SORT_MEMBERS_CTORS_1ST = NO - -# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the -# hierarchy of group names into alphabetical order. If set to NO (the default) -# the group names will appear in their defined order. - -SORT_GROUP_NAMES = NO - -# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be -# sorted by fully-qualified names, including namespaces. If set to -# NO (the default), the class list will be sorted only by class name, -# not including the namespace part. -# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. -# Note: This option applies only to the class list, not to the -# alphabetical list. - -SORT_BY_SCOPE_NAME = NO - -# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to -# do proper type resolution of all parameters of a function it will reject a -# match between the prototype and the implementation of a member function even -# if there is only one candidate or it is obvious which candidate to choose -# by doing a simple string match. By disabling STRICT_PROTO_MATCHING doxygen -# will still accept a match between prototype and implementation in such cases. - -STRICT_PROTO_MATCHING = NO - -# The GENERATE_TODOLIST tag can be used to enable (YES) or -# disable (NO) the todo list. This list is created by putting \todo -# commands in the documentation. - -GENERATE_TODOLIST = YES - -# The GENERATE_TESTLIST tag can be used to enable (YES) or -# disable (NO) the test list. This list is created by putting \test -# commands in the documentation. - -GENERATE_TESTLIST = YES - -# The GENERATE_BUGLIST tag can be used to enable (YES) or -# disable (NO) the bug list. This list is created by putting \bug -# commands in the documentation. - -GENERATE_BUGLIST = YES - -# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or -# disable (NO) the deprecated list. This list is created by putting -# \deprecated commands in the documentation. - -GENERATE_DEPRECATEDLIST= YES - -# The ENABLED_SECTIONS tag can be used to enable conditional -# documentation sections, marked by \if section-label ... \endif -# and \cond section-label ... \endcond blocks. - -ENABLED_SECTIONS = - -# The MAX_INITIALIZER_LINES tag determines the maximum number of lines -# the initial value of a variable or macro consists of for it to appear in -# the documentation. If the initializer consists of more lines than specified -# here it will be hidden. Use a value of 0 to hide initializers completely. -# The appearance of the initializer of individual variables and macros in the -# documentation can be controlled using \showinitializer or \hideinitializer -# command in the documentation regardless of this setting. - -MAX_INITIALIZER_LINES = 30 - -# Set the SHOW_USED_FILES tag to NO to disable the list of files generated -# at the bottom of the documentation of classes and structs. If set to YES the -# list will mention the files that were used to generate the documentation. - -SHOW_USED_FILES = NO - -# 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 = NO - -# 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 <command> <input-file>, where <command> is the value of -# the FILE_VERSION_FILTER tag, and <input-file> is the name of an input file -# provided by doxygen. Whatever the program writes to standard output -# is used as the file version. See the manual for examples. - -FILE_VERSION_FILTER = - -# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed -# by doxygen. The layout file controls the global structure of the generated -# output files in an output format independent way. To create the layout file -# that represents doxygen's defaults, run doxygen with the -l option. -# You can optionally specify a file name after the option, if omitted -# DoxygenLayout.xml will be used as the name of the layout file. - -LAYOUT_FILE = - -# The CITE_BIB_FILES tag can be used to specify one or more bib files -# containing the references data. This must be a list of .bib files. The -# .bib extension is automatically appended if omitted. Using this command -# requires the bibtex tool to be installed. See also -# http://en.wikipedia.org/wiki/BibTeX for more info. For LaTeX the style -# of the bibliography can be controlled using LATEX_BIB_STYLE. To use this -# feature you need bibtex and perl available in the search path. Do not use -# file names with spaces, bibtex cannot handle them. - -CITE_BIB_FILES = - -#--------------------------------------------------------------------------- -# configuration options related to warning and progress messages -#--------------------------------------------------------------------------- - -# The QUIET tag can be used to turn on/off the messages that are generated -# by doxygen. Possible values are YES and NO. If left blank NO is used. - -QUIET = NO - -# The WARNINGS tag can be used to turn on/off the warning messages that are -# generated by doxygen. Possible values are YES and NO. If left blank -# NO is used. - -WARNINGS = YES - -# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings -# for undocumented members. If EXTRACT_ALL is set to YES then this flag will -# automatically be disabled. - -WARN_IF_UNDOCUMENTED = YES - -# If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for -# potential errors in the documentation, such as not documenting some -# parameters in a documented function, or documenting parameters that -# don't exist or using markup commands wrongly. - -WARN_IF_DOC_ERROR = YES - -# The WARN_NO_PARAMDOC option can be enabled to get warnings for -# functions that are documented, but have no documentation for their parameters -# or return value. If set to NO (the default) doxygen will only warn about -# wrong or incomplete parameter documentation, but not about the absence of -# documentation. - -WARN_NO_PARAMDOC = NO - -# The WARN_FORMAT tag determines the format of the warning messages that -# doxygen can produce. The string should contain the $file, $line, and $text -# tags, which will be replaced by the file and line number from which the -# warning originated and the warning text. Optionally the format may contain -# $version, which will be replaced by the version of the file (if it could -# be obtained via FILE_VERSION_FILTER) - -WARN_FORMAT = "$file:$line: $text" - -# The WARN_LOGFILE tag can be used to specify a file to which warning -# and error messages should be written. If left blank the output is written -# to stderr. - -WARN_LOGFILE = - -#--------------------------------------------------------------------------- -# configuration options related to the input files -#--------------------------------------------------------------------------- - -# The INPUT tag can be used to specify the files and/or directories that contain -# documented source files. You may enter file names like "myfile.cpp" or -# directories like "/usr/src/myproject". Separate the files or directories -# with spaces. - -INPUT = @top_srcdir@/include @top_srcdir@/src @top_srcdir@/doc - -# This tag can be used to specify the character encoding of the source files -# that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is -# also the default input encoding. Doxygen uses libiconv (or the iconv built -# into libc) for the transcoding. See http://www.gnu.org/software/libiconv for -# the list of possible encodings. - -INPUT_ENCODING = UTF-8 - -# If the value of the INPUT tag contains directories, you can use the -# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp -# and *.h) to filter out the source-files in the directories. If left -# blank the following patterns are tested: -# *.c *.cc *.cxx *.cpp *.c++ *.d *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh -# *.hxx *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.dox *.py -# *.f90 *.f *.for *.vhd *.vhdl - -FILE_PATTERNS = - -# The RECURSIVE tag can be used to turn specify whether or not subdirectories -# should be searched for input files as well. Possible values are YES and NO. -# If left blank NO is used. - -RECURSIVE = NO - -# The EXCLUDE tag can be used to specify files and/or directories that should be -# excluded from the INPUT source files. This way you can easily exclude a -# subdirectory from a directory tree whose root is specified with the INPUT tag. -# Note that relative paths are relative to the directory from which doxygen is -# run. - -EXCLUDE = - -# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or -# directories that are symbolic links (a Unix file system feature) are excluded -# from the input. - -EXCLUDE_SYMLINKS = NO - -# If the value of the INPUT tag contains directories, you can use the -# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude -# certain files from those directories. Note that the wildcards are matched -# against the file with absolute path, so to exclude all test directories -# for example use the pattern */test/* - -EXCLUDE_PATTERNS = - -# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names -# (namespaces, classes, functions, etc.) that should be excluded from the -# output. The symbol name can be a fully qualified name, a word, or if the -# wildcard * is used, a substring. Examples: ANamespace, AClass, -# AClass::ANamespace, ANamespace::*Test - -EXCLUDE_SYMBOLS = - -# The EXAMPLE_PATH tag can be used to specify one or more files or -# directories that contain example code fragments that are included (see -# the \include command). - -EXAMPLE_PATH = @top_srcdir@/examples - -# 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 <filter> <input-file>, where <filter> -# is the value of the INPUT_FILTER tag, and <input-file> is the name of an -# input file. Doxygen will then use the output that the filter program writes -# to standard output. -# If FILTER_PATTERNS is specified, this tag will be -# ignored. - -INPUT_FILTER = - -# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern -# basis. -# Doxygen will compare the file name with each pattern and apply the -# filter if there is a match. -# The filters are a list of the form: -# pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further -# info on how filters are used. If FILTER_PATTERNS is empty or if -# non of the patterns match the file name, INPUT_FILTER is applied. - -FILTER_PATTERNS = - -# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using -# INPUT_FILTER) will be used to filter the input files when producing source -# files to browse (i.e. when SOURCE_BROWSER is set to YES). - -FILTER_SOURCE_FILES = NO - -# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file -# pattern. A pattern will override the setting for FILTER_PATTERN (if any) -# and it is also possible to disable source filtering for a specific pattern -# using *.ext= (so without naming a filter). This option only has effect when -# FILTER_SOURCE_FILES is enabled. - -FILTER_SOURCE_PATTERNS = - -# If the USE_MD_FILE_AS_MAINPAGE tag refers to the name of a markdown file that -# is part of the input, its contents will be placed on the main page (index.html). -# This can be useful if you have a project on for instance GitHub and want reuse -# the introduction page also for the doxygen output. - -USE_MDFILE_AS_MAINPAGE = - -#--------------------------------------------------------------------------- -# configuration options related to source browsing -#--------------------------------------------------------------------------- - -# If the SOURCE_BROWSER tag is set to YES then a list of source files will -# be generated. Documented entities will be cross-referenced with these sources. -# Note: To get rid of all source code in the generated output, make sure also -# VERBATIM_HEADERS is set to NO. - -SOURCE_BROWSER = NO - -# Setting the INLINE_SOURCES tag to YES will include the body -# of functions and classes directly in the documentation. - -INLINE_SOURCES = NO - -# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct -# doxygen to hide any special comment blocks from generated source code -# fragments. Normal C, C++ and Fortran comments will always remain visible. - -STRIP_CODE_COMMENTS = YES - -# If the REFERENCED_BY_RELATION tag is set to YES -# then for each documented function all documented -# functions referencing it will be listed. - -REFERENCED_BY_RELATION = NO - -# If the REFERENCES_RELATION tag is set to YES -# then for each documented function all documented entities -# called/used by that function will be listed. - -REFERENCES_RELATION = NO - -# If the REFERENCES_LINK_SOURCE tag is set to YES (the default) -# and SOURCE_BROWSER tag is set to YES, then the hyperlinks from -# functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will -# link to the source code. -# Otherwise they will link to the documentation. - -REFERENCES_LINK_SOURCE = YES - -# If the USE_HTAGS tag is set to YES then the references to source code -# will point to the HTML generated by the htags(1) tool instead of doxygen -# built-in source browser. The htags tool is part of GNU's global source -# tagging system (see http://www.gnu.org/software/global/global.html). You -# will need version 4.8.6 or higher. - -USE_HTAGS = NO - -# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen -# will generate a verbatim copy of the header file for each class for -# which an include is specified. Set to NO to disable this. - -VERBATIM_HEADERS = YES - -#--------------------------------------------------------------------------- -# configuration options related to the alphabetical class index -#--------------------------------------------------------------------------- - -# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index -# of all compounds will be generated. Enable this if the project -# contains a lot of classes, structs, unions or interfaces. - -ALPHABETICAL_INDEX = YES - -# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then -# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns -# in which this list will be split (can be a number in the range [1..20]) - -COLS_IN_ALPHA_INDEX = 5 - -# In case all classes in a project start with a common prefix, all -# classes will be put under the same header in the alphabetical index. -# The IGNORE_PREFIX tag can be used to specify one or more prefixes that -# should be ignored while generating the index headers. - -IGNORE_PREFIX = - -#--------------------------------------------------------------------------- -# configuration options related to the HTML output -#--------------------------------------------------------------------------- - -# If the GENERATE_HTML tag is set to YES (the default) Doxygen will -# generate HTML output. - -GENERATE_HTML = YES - -# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. -# If a relative path is entered the value of OUTPUT_DIRECTORY will be -# put in front of it. If left blank `html' will be used as the default path. - -HTML_OUTPUT = html - -# The HTML_FILE_EXTENSION tag can be used to specify the file extension for -# each generated HTML page (for example: .htm,.php,.asp). If it is left blank -# doxygen will generate files with .html extension. - -HTML_FILE_EXTENSION = .html - -# The HTML_HEADER tag can be used to specify a personal HTML header for -# each generated HTML page. If it is left blank doxygen will generate a -# standard header. Note that when using a custom header you are responsible -# for the proper inclusion of any scripts and style sheets that doxygen -# needs, which is dependent on the configuration options used. -# It is advised to generate a default header using "doxygen -w html -# header.html footer.html stylesheet.css YourConfigFile" and then modify -# that header. Note that the header is subject to change so you typically -# have to redo this when upgrading to a newer version of doxygen or when -# changing the value of configuration settings such as GENERATE_TREEVIEW! - -HTML_HEADER = - -# The HTML_FOOTER tag can be used to specify a personal HTML footer for -# each generated HTML page. If it is left blank doxygen will generate a -# standard footer. - -HTML_FOOTER = - -# The HTML_STYLESHEET tag can be used to specify a user-defined cascading -# style sheet that is used by each HTML page. It can be used to -# fine-tune the look of the HTML output. If left blank doxygen will -# generate a default style sheet. Note that it is recommended to use -# HTML_EXTRA_STYLESHEET instead of this one, as it is more robust and this -# tag will in the future become obsolete. - -HTML_STYLESHEET = - -# The HTML_EXTRA_STYLESHEET tag can be used to specify an additional -# user-defined cascading style sheet that is included after the standard -# style sheets created by doxygen. Using this option one can overrule -# certain style aspects. This is preferred over using HTML_STYLESHEET -# since it does not replace the standard style sheet and is therefor more -# robust against future updates. Doxygen will copy the style sheet file to -# the output directory. - -HTML_EXTRA_STYLESHEET = @srcdir@/libmtime.css - -# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or -# other source files which should be copied to the HTML output directory. Note -# that these files will be copied to the base HTML output directory. Use the -# $relpath$ marker in the HTML_HEADER and/or HTML_FOOTER files to load these -# files. In the HTML_STYLESHEET file, use the file name only. Also note that -# the files will be copied as-is; there are no commands or markers available. - -HTML_EXTRA_FILES = - -# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. -# Doxygen will adjust the colors in the style sheet and background images -# according to this color. Hue is specified as an angle on a colorwheel, -# see http://en.wikipedia.org/wiki/Hue for more information. -# For instance the value 0 represents red, 60 is yellow, 120 is green, -# 180 is cyan, 240 is blue, 300 purple, and 360 is red again. -# The allowed range is 0 to 359. - -HTML_COLORSTYLE_HUE = 220 - -# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of -# the colors in the HTML output. For a value of 0 the output will use -# grayscales only. A value of 255 will produce the most vivid colors. - -HTML_COLORSTYLE_SAT = 100 - -# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to -# the luminance component of the colors in the HTML output. Values below -# 100 gradually make the output lighter, whereas values above 100 make -# the output darker. The value divided by 100 is the actual gamma applied, -# so 80 represents a gamma of 0.8, The value 220 represents a gamma of 2.2, -# and 100 does not change the gamma. - -HTML_COLORSTYLE_GAMMA = 80 - -# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML -# page will contain the date and time when the page was generated. Setting -# this to NO can help when comparing the output of multiple runs. - -HTML_TIMESTAMP = YES - -# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML -# documentation will contain sections that can be hidden and shown after the -# page has loaded. - -HTML_DYNAMIC_SECTIONS = NO - -# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of -# entries shown in the various tree structured indices initially; the user -# can expand and collapse entries dynamically later on. Doxygen will expand -# the tree to such a level that at most the specified number of entries are -# visible (unless a fully collapsed tree already exceeds this amount). -# So setting the number of entries 1 will produce a full collapsed tree by -# default. 0 is a special value representing an infinite number of entries -# and will result in a full expanded tree by default. - -HTML_INDEX_NUM_ENTRIES = 100 - -# If the GENERATE_DOCSET tag is set to YES, additional index files -# will be generated that can be used as input for Apple's Xcode 3 -# integrated development environment, introduced with OSX 10.5 (Leopard). -# To create a documentation set, doxygen will generate a Makefile in the -# HTML output directory. Running make will produce the docset in that -# directory and running "make install" will install the docset in -# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find -# it at startup. -# See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html -# for more information. - -GENERATE_DOCSET = NO - -# When GENERATE_DOCSET tag is set to YES, this tag determines the name of the -# feed. A documentation feed provides an umbrella under which multiple -# documentation sets from a single provider (such as a company or product suite) -# can be grouped. - -DOCSET_FEEDNAME = "Doxygen generated docs" - -# When GENERATE_DOCSET tag is set to YES, this tag specifies a string that -# should uniquely identify the documentation set bundle. This should be a -# reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen -# will append .docset to the name. - -DOCSET_BUNDLE_ID = org.doxygen.Project - -# When GENERATE_PUBLISHER_ID tag specifies a string that should uniquely -# identify the documentation publisher. This should be a reverse domain-name -# style string, e.g. com.mycompany.MyDocSet.documentation. - -DOCSET_PUBLISHER_ID = org.doxygen.Publisher - -# The GENERATE_PUBLISHER_NAME tag identifies the documentation publisher. - -DOCSET_PUBLISHER_NAME = Publisher - -# If the GENERATE_HTMLHELP tag is set to YES, additional index files -# will be generated that can be used as input for tools like the -# Microsoft HTML help workshop to generate a compiled HTML help file (.chm) -# of the generated HTML documentation. - -GENERATE_HTMLHELP = NO - -# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can -# be used to specify the file name of the resulting .chm file. You -# can add a path in front of the file if the result should not be -# written to the html output directory. - -CHM_FILE = - -# If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can -# be used to specify the location (absolute path including file name) of -# the HTML help compiler (hhc.exe). If non-empty doxygen will try to run -# the HTML help compiler on the generated index.hhp. - -HHC_LOCATION = - -# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag -# controls if a separate .chi index file is generated (YES) or that -# it should be included in the master .chm file (NO). - -GENERATE_CHI = NO - -# If the GENERATE_HTMLHELP tag is set to YES, the CHM_INDEX_ENCODING -# is used to encode HtmlHelp index (hhk), content (hhc) and project file -# content. - -CHM_INDEX_ENCODING = - -# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag -# controls whether a binary table of contents is generated (YES) or a -# normal table of contents (NO) in the .chm file. - -BINARY_TOC = NO - -# The TOC_EXPAND flag can be set to YES to add extra items for group members -# to the contents of the HTML help documentation and to the tree view. - -TOC_EXPAND = NO - -# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and -# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated -# that can be used as input for Qt's qhelpgenerator to generate a -# Qt Compressed Help (.qch) of the generated HTML documentation. - -GENERATE_QHP = NO - -# If the QHG_LOCATION tag is specified, the QCH_FILE tag can -# be used to specify the file name of the resulting .qch file. -# The path specified is relative to the HTML output folder. - -QCH_FILE = - -# The QHP_NAMESPACE tag specifies the namespace to use when generating -# Qt Help Project output. For more information please see -# http://doc.trolltech.com/qthelpproject.html#namespace - -QHP_NAMESPACE = org.doxygen.Project - -# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating -# Qt Help Project output. For more information please see -# http://doc.trolltech.com/qthelpproject.html#virtual-folders - -QHP_VIRTUAL_FOLDER = doc - -# If QHP_CUST_FILTER_NAME is set, it specifies the name of a custom filter to -# add. For more information please see -# http://doc.trolltech.com/qthelpproject.html#custom-filters - -QHP_CUST_FILTER_NAME = - -# The QHP_CUST_FILT_ATTRS tag specifies the list of the attributes of the -# custom filter to add. For more information please see -# <a href="http://doc.trolltech.com/qthelpproject.html#custom-filters"> -# Qt Help Project / Custom Filters</a>. - -QHP_CUST_FILTER_ATTRS = - -# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this -# project's -# filter section matches. -# <a href="http://doc.trolltech.com/qthelpproject.html#filter-attributes"> -# Qt Help Project / Filter Attributes</a>. - -QHP_SECT_FILTER_ATTRS = - -# If the GENERATE_QHP tag is set to YES, the QHG_LOCATION tag can -# be used to specify the location of Qt's qhelpgenerator. -# If non-empty doxygen will try to run qhelpgenerator on the generated -# .qhp file. - -QHG_LOCATION = - -# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files -# will be generated, which together with the HTML files, form an Eclipse help -# plugin. To install this plugin and make it available under the help contents -# menu in Eclipse, the contents of the directory containing the HTML and XML -# files needs to be copied into the plugins directory of eclipse. The name of -# the directory within the plugins directory should be the same as -# the ECLIPSE_DOC_ID value. After copying Eclipse needs to be restarted before -# the help appears. - -GENERATE_ECLIPSEHELP = NO - -# A unique identifier for the eclipse help plugin. When installing the plugin -# the directory name containing the HTML and XML files should also have -# this name. - -ECLIPSE_DOC_ID = org.doxygen.Project - -# The DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) -# at top of each HTML page. The value NO (the default) enables the index and -# the value YES disables it. Since the tabs have the same information as the -# navigation tree you can set this option to NO if you already set -# GENERATE_TREEVIEW to YES. - -DISABLE_INDEX = NO - -# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index -# structure should be generated to display hierarchical information. -# If the tag value is set to YES, a side panel will be generated -# containing a tree-like index structure (just like the one that -# is generated for HTML Help). For this to work a browser that supports -# JavaScript, DHTML, CSS and frames is required (i.e. any modern browser). -# Windows users are probably better off using the HTML help feature. -# Since the tree basically has the same information as the tab index you -# could consider to set DISABLE_INDEX to NO when enabling this option. - -GENERATE_TREEVIEW = NO - -# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values -# (range [0,1..20]) that doxygen will group on one line in the generated HTML -# documentation. Note that a value of 0 will completely suppress the enum -# values from appearing in the overview section. - -ENUM_VALUES_PER_LINE = 4 - -# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be -# used to set the initial width (in pixels) of the frame in which the tree -# is shown. - -TREEVIEW_WIDTH = 250 - -# When the EXT_LINKS_IN_WINDOW option is set to YES doxygen will open -# links to external symbols imported via tag files in a separate window. - -EXT_LINKS_IN_WINDOW = NO - -# Use this tag to change the font size of Latex formulas included -# as images in the HTML documentation. The default is 10. Note that -# when you change the font size after a successful doxygen run you need -# to manually remove any form_*.png images from the HTML output directory -# to force them to be regenerated. - -FORMULA_FONTSIZE = 10 - -# Use the FORMULA_TRANPARENT tag to determine whether or not the images -# generated for formulas are transparent PNGs. Transparent PNGs are -# not supported properly for IE 6.0, but are supported on all modern browsers. -# Note that when changing this option you need to delete any form_*.png files -# in the HTML output before the changes have effect. - -FORMULA_TRANSPARENT = YES - -# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax -# (see http://www.mathjax.org) which uses client side Javascript for the -# rendering instead of using prerendered bitmaps. Use this if you do not -# have LaTeX installed or if you want to formulas look prettier in the HTML -# output. When enabled you may also need to install MathJax separately and -# configure the path to it using the MATHJAX_RELPATH option. - -USE_MATHJAX = NO - -# When MathJax is enabled you can set the default output format to be used for -# thA MathJax output. Supported types are HTML-CSS, NativeMML (i.e. MathML) and -# SVG. The default value is HTML-CSS, which is slower, but has the best -# compatibility. - -MATHJAX_FORMAT = HTML-CSS - -# When MathJax is enabled you need to specify the location relative to the -# HTML output directory using the MATHJAX_RELPATH option. The destination -# directory should contain the MathJax.js script. For instance, if the mathjax -# directory is located at the same level as the HTML output directory, then -# MATHJAX_RELPATH should be ../mathjax. The default value points to -# the MathJax Content Delivery Network so you can quickly see the result without -# installing MathJax. -# However, it is strongly recommended to install a local -# copy of MathJax from http://www.mathjax.org before deployment. - -MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest - -# The MATHJAX_EXTENSIONS tag can be used to specify one or MathJax extension -# names that should be enabled during MathJax rendering. - -MATHJAX_EXTENSIONS = - -# When the SEARCHENGINE tag is enabled doxygen will generate a search box -# for the HTML output. The underlying search engine uses javascript -# and DHTML and should work on any modern browser. Note that when using -# HTML help (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets -# (GENERATE_DOCSET) there is already a search function so this one should -# typically be disabled. For large projects the javascript based search engine -# can be slow, then enabling SERVER_BASED_SEARCH may provide a better solution. - -SEARCHENGINE = YES - -# When the SERVER_BASED_SEARCH tag is enabled the search engine will be -# implemented using a web server instead of a web client using Javascript. -# There are two flavours of web server based search depending on the -# EXTERNAL_SEARCH setting. When disabled, doxygen will generate a PHP script for -# searching and an index file used by the script. When EXTERNAL_SEARCH is -# enabled the indexing and searching needs to be provided by external tools. -# See the manual for details. - -SERVER_BASED_SEARCH = NO - -# When EXTERNAL_SEARCH is enabled doxygen will no longer generate the PHP -# script for searching. Instead the search results are written to an XML file -# which needs to be processed by an external indexer. Doxygen will invoke an -# external search engine pointed to by the SEARCHENGINE_URL option to obtain -# the search results. Doxygen ships with an example indexer (doxyindexer) and -# search engine (doxysearch.cgi) which are based on the open source search engine -# library Xapian. See the manual for configuration details. - -EXTERNAL_SEARCH = NO - -# The SEARCHENGINE_URL should point to a search engine hosted by a web server -# which will returned the search results when EXTERNAL_SEARCH is enabled. -# Doxygen ships with an example search engine (doxysearch) which is based on -# the open source search engine library Xapian. See the manual for configuration -# details. - -SEARCHENGINE_URL = - -# When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the unindexed -# search data is written to a file for indexing by an external tool. With the -# SEARCHDATA_FILE tag the name of this file can be specified. - -SEARCHDATA_FILE = searchdata.xml - -# When SERVER_BASED_SEARCH AND EXTERNAL_SEARCH are both enabled the -# EXTERNAL_SEARCH_ID tag can be used as an identifier for the project. This is -# useful in combination with EXTRA_SEARCH_MAPPINGS to search through multiple -# projects and redirect the results back to the right project. - -EXTERNAL_SEARCH_ID = - -# The EXTRA_SEARCH_MAPPINGS tag can be used to enable searching through doxygen -# projects other than the one defined by this configuration file, but that are -# all added to the same external search index. Each project needs to have a -# unique id set via EXTERNAL_SEARCH_ID. The search mapping then maps the id -# of to a relative location where the documentation can be found. -# The format is: EXTRA_SEARCH_MAPPINGS = id1=loc1 id2=loc2 ... - -EXTRA_SEARCH_MAPPINGS = - -#--------------------------------------------------------------------------- -# configuration options related to the LaTeX output -#--------------------------------------------------------------------------- - -# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will -# generate Latex output. - -GENERATE_LATEX = YES - -# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. -# If a relative path is entered the value of OUTPUT_DIRECTORY will be -# put in front of it. If left blank `latex' will be used as the default path. - -LATEX_OUTPUT = latex - -# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be -# invoked. If left blank `latex' will be used as the default command name. -# Note that when enabling USE_PDFLATEX this option is only used for -# generating bitmaps for formulas in the HTML output, but not in the -# Makefile that is written to the output directory. - -LATEX_CMD_NAME = latex - -# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to -# generate index for LaTeX. If left blank `makeindex' will be used as the -# default command name. - -MAKEINDEX_CMD_NAME = makeindex - -# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact -# LaTeX documents. This may be useful for small projects and may help to -# save some trees in general. - -COMPACT_LATEX = YES - -# The PAPER_TYPE tag can be used to set the paper type that is used -# by the printer. Possible values are: a4, letter, legal and -# executive. If left blank a4wide will be used. - -PAPER_TYPE = a4 - -# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX -# packages that should be included in the LaTeX output. - -EXTRA_PACKAGES = - -# The LATEX_HEADER tag can be used to specify a personal LaTeX header for -# the generated latex document. The header should contain everything until -# the first chapter. If it is left blank doxygen will generate a -# standard header. Notice: only use this tag if you know what you are doing! - -LATEX_HEADER = @srcdir@/libmtime.tex - -# The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for -# the generated latex document. The footer should contain everything after -# the last chapter. If it is left blank doxygen will generate a -# standard footer. Notice: only use this tag if you know what you are doing! - -LATEX_FOOTER = - -# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated -# is prepared for conversion to pdf (using ps2pdf). The pdf file will -# contain links (just like the HTML output) instead of page references -# This makes the output suitable for online browsing using a pdf viewer. - -PDF_HYPERLINKS = YES - -# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of -# plain latex in the generated Makefile. Set this option to YES to get a -# higher quality PDF documentation. - -USE_PDFLATEX = YES - -# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. -# command to the generated LaTeX files. This will instruct LaTeX to keep -# running if errors occur, instead of asking the user for help. -# This option is also used when generating formulas in HTML. - -LATEX_BATCHMODE = NO - -# If LATEX_HIDE_INDICES is set to YES then doxygen will not -# include the index chapters (such as File Index, Compound Index, etc.) -# in the output. - -LATEX_HIDE_INDICES = YES - -# If LATEX_SOURCE_CODE is set to YES then doxygen will include -# source code with syntax highlighting in the LaTeX output. -# Note that which sources are shown also depends on other settings -# such as SOURCE_BROWSER. - -LATEX_SOURCE_CODE = NO - -# The LATEX_BIB_STYLE tag can be used to specify the style to use for the -# bibliography, e.g. plainnat, or ieeetr. The default style is "plain". See -# http://en.wikipedia.org/wiki/BibTeX for more info. - -LATEX_BIB_STYLE = plain - -#--------------------------------------------------------------------------- -# configuration options related to the RTF output -#--------------------------------------------------------------------------- - -# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output -# The RTF output is optimized for Word 97 and may not look very pretty with -# other RTF readers or editors. - -GENERATE_RTF = NO - -# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. -# If a relative path is entered the value of OUTPUT_DIRECTORY will be -# put in front of it. If left blank `rtf' will be used as the default path. - -RTF_OUTPUT = rtf - -# If the COMPACT_RTF tag is set to YES Doxygen generates more compact -# RTF documents. This may be useful for small projects and may help to -# save some trees in general. - -COMPACT_RTF = NO - -# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated -# will contain hyperlink fields. The RTF file will -# contain links (just like the HTML output) instead of page references. -# This makes the output suitable for online browsing using WORD or other -# programs which support those fields. -# Note: wordpad (write) and others do not support links. - -RTF_HYPERLINKS = NO - -# Load style sheet definitions from file. Syntax is similar to doxygen's -# config file, i.e. a series of assignments. You only have to provide -# replacements, missing definitions are set to their default value. - -RTF_STYLESHEET_FILE = - -# Set optional variables used in the generation of an rtf document. -# Syntax is similar to doxygen's config file. - -RTF_EXTENSIONS_FILE = - -#--------------------------------------------------------------------------- -# configuration options related to the man page output -#--------------------------------------------------------------------------- - -# If the GENERATE_MAN tag is set to YES (the default) Doxygen will -# generate man pages - -GENERATE_MAN = YES - -# 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 - -# 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 = YES - -# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files -# pointed to by INCLUDE_PATH will be searched when a #include is found. - -SEARCH_INCLUDES = YES - -# The INCLUDE_PATH tag can be used to specify one or more directories that -# contain include files that are not input files but should be processed by -# the preprocessor. - -INCLUDE_PATH = - -# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard -# patterns (like *.h and *.hpp) to filter out the header-files in the -# directories. If left blank, the patterns specified with FILE_PATTERNS will -# be used. - -INCLUDE_FILE_PATTERNS = - -# The PREDEFINED tag can be used to specify one or more macro names that -# are defined before the preprocessor is started (similar to the -D option of -# gcc). The argument of the tag is a list of macros of the form: name -# or name=definition (no spaces). If the definition and the = are -# omitted =1 is assumed. To prevent a macro definition from being -# undefined via #undef or recursively expanded use the := operator -# instead of the = operator. - -PREDEFINED = DOXYGEN_DOCUMENTATION_ONLY - -# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then -# this tag can be used to specify a list of macro names that should be expanded. -# The macro definition that is found in the sources will be used. -# Use the PREDEFINED tag if you want to use a different macro definition that -# overrules the definition found in the source code. - -EXPAND_AS_DEFINED = - -# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then -# doxygen's preprocessor will remove all references to function-like macros -# that are alone on a line, have an all uppercase name, and do not end with a -# semicolon, because these will confuse the parser if not removed. - -SKIP_FUNCTION_MACROS = YES - -#--------------------------------------------------------------------------- -# Configuration::additions related to external references -#--------------------------------------------------------------------------- - -# The TAGFILES option can be used to specify one or more tagfiles. For each -# tag file the location of the external documentation should be added. The -# format of a tag file without this location is as follows: -# -# TAGFILES = file1 file2 ... -# Adding location for the tag files is done as follows: -# -# TAGFILES = file1=loc1 "file2 = loc2" ... -# where "loc1" and "loc2" can be relative or absolute paths -# or URLs. Note that each tag file must have a unique name (where the name does -# NOT include the path). If a tag file is not located in the directory in which -# doxygen is run, you must also specify the path to the tagfile here. - -TAGFILES = - -# When a file name is specified after GENERATE_TAGFILE, doxygen will create -# a tag file that is based on the input files it reads. - -GENERATE_TAGFILE = - -# If the ALLEXTERNALS tag is set to YES all external classes will be listed -# in the class index. If set to NO only the inherited external classes -# will be listed. - -ALLEXTERNALS = NO - -# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed -# in the modules index. If set to NO, only the current project's groups will -# be listed. - -EXTERNAL_GROUPS = YES - -# The PERL_PATH should be the absolute path and name of the perl script -# interpreter (i.e. the result of `which perl'). - -PERL_PATH = /usr/bin/perl - -#--------------------------------------------------------------------------- -# Configuration options related to the dot tool -#--------------------------------------------------------------------------- - -# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will -# generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base -# or super classes. Setting the tag to NO turns the diagrams off. Note that -# this option also works with HAVE_DOT disabled, but it is recommended to -# install and use dot, since it yields more powerful graphs. - -CLASS_DIAGRAMS = YES - -# You can define message sequence charts within doxygen comments using the \msc -# command. Doxygen will then run the mscgen tool (see -# http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the -# documentation. The MSCGEN_PATH tag allows you to specify the directory where -# the mscgen tool resides. If left empty the tool is assumed to be found in the -# default search path. - -MSCGEN_PATH = - -# If set to YES, the inheritance and collaboration graphs will hide -# inheritance and usage relations if the target is undocumented -# or is not a class. - -HIDE_UNDOC_RELATIONS = YES - -# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is -# available from the path. This tool is part of Graphviz, a graph visualization -# toolkit from AT&T and Lucent Bell Labs. The other options in this section -# have no effect if this option is set to NO (the default) - -HAVE_DOT = NO - -# The DOT_NUM_THREADS specifies the number of dot invocations doxygen is -# allowed to run in parallel. When set to 0 (the default) doxygen will -# base this on the number of processors available in the system. You can set it -# explicitly to a value larger than 0 to get control over the balance -# between CPU load and processing speed. - -DOT_NUM_THREADS = 0 - -# By default doxygen will use the Helvetica font for all dot files that -# doxygen generates. When you want a differently looking font you can specify -# the font name using DOT_FONTNAME. You need to make sure dot is able to find -# the font, which can be done by putting it in a standard location or by setting -# the DOTFONTPATH environment variable or by setting DOT_FONTPATH to the -# directory containing the font. - -DOT_FONTNAME = Helvetica - -# The DOT_FONTSIZE tag can be used to set the size of the font of dot graphs. -# The default size is 10pt. - -DOT_FONTSIZE = 10 - -# By default doxygen will tell dot to use the Helvetica font. -# If you specify a different font using DOT_FONTNAME you can use DOT_FONTPATH to -# set the path where dot can find it. - -DOT_FONTPATH = - -# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen -# will generate a graph for each documented class showing the direct and -# indirect inheritance relations. Setting this tag to YES will force the -# CLASS_DIAGRAMS tag to NO. - -CLASS_GRAPH = YES - -# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen -# will generate a graph for each documented class showing the direct and -# indirect implementation dependencies (inheritance, containment, and -# class references variables) of the class with other documented classes. - -COLLABORATION_GRAPH = YES - -# If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen -# will generate a graph for groups, showing the direct groups dependencies - -GROUP_GRAPHS = YES - -# If the UML_LOOK tag is set to YES doxygen will generate inheritance and -# collaboration diagrams in a style similar to the OMG's Unified Modeling -# Language. - -UML_LOOK = NO - -# If the UML_LOOK tag is enabled, the fields and methods are shown inside -# the class node. If there are many fields or methods and many nodes the -# graph may become too big to be useful. The UML_LIMIT_NUM_FIELDS -# threshold limits the number of items for each type to make the size more -# managable. Set this to 0 for no limit. Note that the threshold may be -# exceeded by 50% before the limit is enforced. - -UML_LIMIT_NUM_FIELDS = 10 - -# If set to YES, the inheritance and collaboration graphs will show the -# relations between templates and their instances. - -TEMPLATE_RELATIONS = NO - -# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT -# tags are set to YES then doxygen will generate a graph for each documented -# file showing the direct and indirect include dependencies of the file with -# other documented files. - -INCLUDE_GRAPH = YES - -# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and -# HAVE_DOT tags are set to YES then doxygen will generate a graph for each -# documented header file showing the documented files that directly or -# indirectly include this file. - -INCLUDED_BY_GRAPH = YES - -# If the CALL_GRAPH and HAVE_DOT options are set to YES then -# doxygen will generate a call dependency graph for every global function -# or class method. Note that enabling this option will significantly increase -# the time of a run. So in most cases it will be better to enable call graphs -# for selected functions only using the \callgraph command. - -CALL_GRAPH = NO - -# If the CALLER_GRAPH and HAVE_DOT tags are set to YES then -# doxygen will generate a caller dependency graph for every global function -# or class method. Note that enabling this option will significantly increase -# the time of a run. So in most cases it will be better to enable caller -# graphs for selected functions only using the \callergraph command. - -CALLER_GRAPH = NO - -# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen -# will generate a graphical hierarchy of all classes instead of a textual one. - -GRAPHICAL_HIERARCHY = YES - -# If the DIRECTORY_GRAPH and HAVE_DOT tags are set to YES -# then doxygen will show the dependencies a directory has on other directories -# in a graphical way. The dependency relations are determined by the #include -# relations between the files in the directories. - -DIRECTORY_GRAPH = YES - -# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images -# generated by dot. Possible values are svg, png, jpg, or gif. -# If left blank png will be used. If you choose svg you need to set -# HTML_FILE_EXTENSION to xhtml in order to make the SVG files -# visible in IE 9+ (other browsers do not have this requirement). - -DOT_IMAGE_FORMAT = png - -# If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to -# enable generation of interactive SVG images that allow zooming and panning. -# Note that this requires a modern browser other than Internet Explorer. -# Tested and working are Firefox, Chrome, Safari, and Opera. For IE 9+ you -# need to set HTML_FILE_EXTENSION to xhtml in order to make the SVG files -# visible. Older versions of IE do not have SVG support. - -INTERACTIVE_SVG = NO - -# The tag DOT_PATH can be used to specify the path where the dot tool can be -# found. If left blank, it is assumed the dot tool can be found in the path. - -DOT_PATH = - -# The DOTFILE_DIRS tag can be used to specify one or more directories that -# contain dot files that are included in the documentation (see the -# \dotfile command). - -DOTFILE_DIRS = - -# The MSCFILE_DIRS tag can be used to specify one or more directories that -# contain msc files that are included in the documentation (see the -# \mscfile command). - -MSCFILE_DIRS = - -# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of -# nodes that will be shown in the graph. If the number of nodes in a graph -# becomes larger than this value, doxygen will truncate the graph, which is -# visualized by representing a node as a red box. Note that doxygen if the -# number of direct children of the root node in a graph is already larger than -# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note -# that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. - -DOT_GRAPH_MAX_NODES = 50 - -# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the -# graphs generated by dot. A depth value of 3 means that only nodes reachable -# from the root by following a path via at most 3 edges will be shown. Nodes -# that lay further from the root node will be omitted. Note that setting this -# option to 1 or 2 may greatly reduce the computation time needed for large -# code bases. Also note that the size of a graph can be further restricted by -# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. - -MAX_DOT_GRAPH_DEPTH = 0 - -# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent -# background. This is disabled by default, because dot on Windows does not -# seem to support this out of the box. Warning: Depending on the platform used, -# enabling this option may lead to badly anti-aliased labels on the edges of -# a graph (i.e. they become hard to read). - -DOT_TRANSPARENT = NO - -# Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output -# files in one run (i.e. multiple -o and -T options on the command line). This -# makes dot run faster, but since only newer versions of dot (>1.8.10) -# support this, this feature is disabled by default. - -DOT_MULTI_TARGETS = NO - -# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will -# generate a legend page explaining the meaning of the various boxes and -# arrows in the dot generated graphs. - -GENERATE_LEGEND = YES - -# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will -# remove the intermediate dot files that are used to generate -# the various graphs. - -DOT_CLEANUP = YES diff --git a/doc/Makefile.am b/doc/Makefile.am deleted file mode 100644 index 11a9d54856120c203e83fd1b6370236a7d35a152..0000000000000000000000000000000000000000 --- a/doc/Makefile.am +++ /dev/null @@ -1,87 +0,0 @@ -# Copyright (c) 2013-2024 MPI-M, Luis Kornblueh, Rahul Sinha and DWD, Florian Prill. All rights reserved. -# -# SPDX-License-Identifier: BSD-3-Clause -# -@DX_RULES@ - -.NOTPARALLEL: - -.PHONY: man install-man do-install-man \ - html install-html do-install-html \ - pdf install-pdf do-install-pdf \ - ps install-ps do-install-ps - -if DX_FLAG_man -STAMP_MAN = $(DX_DOCDIR)/$(PACKAGE).tag -STAMP_INSTALL_MAN = do-install-man -else !DX_FLAG_man -STAMP_MAN = -STAMP_INSTALL_MAN = -endif !DX_FLAG_man - -if DX_FLAG_html -STAMP_HTML = $(DX_DOCDIR)/$(PACKAGE).tag -STAMP_INSTALL_HTML = do-install-html -else !DX_FLAG_html -STAMP_HTML = -STAMP_INSTALL_HTML = -endif !DX_FLAG_html - -if DX_FLAG_pdf -STAMP_PDF = $(DX_DOCDIR)/$(PACKAGE).pdf -STAMP_INSTALL_PDF = do-install-pdf -else !DX_FLAG_pdf -STAMP_PDF = -STAMP_INSTALL_PDF = -endif !DX_FLAG_pdf - -if DX_FLAG_ps -STAMP_PS = $(DX_DOCDIR)/$(PACKAGE).ps -STAMP_INSTALL_PS = do-install-ps -else !DX_FLAG_ps -STAMP_PS = -STAMP_INSTALL_PS = -endif !DX_FLAG_ps - -man: $(STAMP_MAN) -install-man: $(STAMP_INSTALL_MAN) -do-install-man: man - @$(NORMAL_INSTALL) - @echo " $(MKDIR_P) '$(DESTDIR)$(mandir)/man3'"; \ - $(MKDIR_P) "$(DESTDIR)$(mandir)/man3" || exit 1; \ - echo " $(INSTALL_DATA) '$(DX_DOCDIR)/man/man3'/* '$(DESTDIR)$(mandir)/man3'"; \ - $(INSTALL_DATA) "$(DX_DOCDIR)/man/man3"/* "$(DESTDIR)$(mandir)/man3" - -html: $(STAMP_HTML) -install-html: $(STAMP_INSTALL_HTML) -do-install-html: html - @$(NORMAL_INSTALL) - @echo " $(MKDIR_P) '$(DESTDIR)$(htmldir)'"; \ - $(MKDIR_P) "$(DESTDIR)$(htmldir)" || exit 1; \ - echo " cp -R '$(DX_DOCDIR)/html'/* '$(DESTDIR)$(htmldir)'"; \ - cp -R "$(DX_DOCDIR)/html"/* "$(DESTDIR)$(htmldir)" - -pdf: $(STAMP_PDF) -install-pdf: $(STAMP_INSTALL_PDF) -do-install-pdf: pdf - @$(NORMAL_INSTALL) - @echo " $(MKDIR_P) '$(DESTDIR)$(pdfdir)'"; \ - $(MKDIR_P) "$(DESTDIR)$(pdfdir)" || exit 1; \ - echo " $(INSTALL_DATA) '$(DX_DOCDIR)/$(PACKAGE).pdf' '$(DESTDIR)$(pdfdir)'"; \ - $(INSTALL_DATA) "$(DX_DOCDIR)/$(PACKAGE).pdf" "$(DESTDIR)$(pdfdir)" - -ps: $(STAMP_PS) -install-ps: $(STAMP_INSTALL_PS) -do-install-ps: ps - @$(NORMAL_INSTALL) - @echo " $(MKDIR_P) '$(DESTDIR)$(psdir)'"; \ - $(MKDIR_P) "$(DESTDIR)$(psdir)" || exit 1; \ - echo " $(INSTALL_DATA) '$(DX_DOCDIR)/$(PACKAGE).ps' '$(DESTDIR)$(psdir)'"; \ - $(INSTALL_DATA) "$(DX_DOCDIR)/$(PACKAGE).ps" "$(DESTDIR)$(psdir)" - -doc: man html pdf ps -install-doc: install-man install-html install-pdf install-ps - -EXTRA_DIST = libmtime.css libmtime.dox libmtime.tex - -MOSTLYCLEANFILES = $(DX_CLEANFILES) -r $(DX_DOCDIR) diff --git a/doc/libmtime.dox b/doc/libmtime.dox index 0c6d8ca65c5965d5172fbdb3a771c640662322e4..494e91a41748b4e5a6297860c881394629c178bb 100644 --- a/doc/libmtime.dox +++ b/doc/libmtime.dox @@ -26,11 +26,13 @@ SPDX-License-Identifier: CC0-1.0 * * You can obtain the source code tarball on site * - * This software uses the GNU Autotools build system: in order to + * This software uses the CMake build system: in order to * compile and install the application the standard installation * method must be used: @verbatim - ./configure + mkdir build + cd build + cmake .. make make install @endverbatim diff --git a/examples/Makefile.am b/examples/Makefile.am deleted file mode 100644 index 08b7b199678bd3001fdeec85c9e4134a8dba5258..0000000000000000000000000000000000000000 --- a/examples/Makefile.am +++ /dev/null @@ -1,96 +0,0 @@ -# Copyright (c) 2013-2024 MPI-M, Luis Kornblueh, Rahul Sinha and DWD, Florian Prill. All rights reserved. -# -# SPDX-License-Identifier: BSD-3-Clause -# - -check_PROGRAMS = \ - callback_test \ - comp_weights \ - duration \ - example \ - iconatm \ - iconoce \ - model_integration \ - modulo \ - output_control \ - recurrence \ - repetitor \ - simulate_iau \ - tas \ - test_cf_timeaxis \ - test_dace \ - test_jd_logic \ - uniq - -TESTS = $(check_PROGRAMS) - -AM_CPPFLAGS = -I$(top_srcdir)/include -AM_FCFLAGS = $(FCMODINC)$(top_builddir)/src -LDADD = $(top_builddir)/src/libmtime.la - -AM_DEFAULT_SOURCE_EXT = .f90 -duration_SOURCES = duration.f90 mo_kind.f90 -iconatm_SOURCES = iconatm.f90 mo_event_manager.f90 -iconoce_SOURCES = iconoce.f90 mo_event_manager.f90 -model_integration_SOURCES = model_integration.c -modulo_SOURCES = modulo.c -recurrence_SOURCES = recurrence.c -test_dace_SOURCES = test_dace.f90 mo_event_manager.f90 - -if FCMODUC -mo_event_manager_mod = MO_EVENT_MANAGER.$(FCMODEXT) -mo_exception_mod = MO_EXCEPTION.$(FCMODEXT) -mo_kind_mod = MO_KIND.$(FCMODEXT) -mtime_error_handling_mod = MTIME_ERROR_HANDLING.$(FCMODEXT) -mtime_mod = MTIME.$(FCMODEXT) -else !FCMODUC -mo_event_manager_mod = mo_event_manager.$(FCMODEXT) -mo_exception_mod = mo_exception.$(FCMODEXT) -mo_kind_mod = mo_kind.$(FCMODEXT) -mtime_error_handling_mod = mtime_error_handling.$(FCMODEXT) -mtime_mod = mtime.$(FCMODEXT) -endif !FCMODUC - -$(mo_event_manager_mod): mo_event_manager.$(OBJEXT) -$(mo_kind_mod): mo_kind.$(OBJEXT) - -$(mo_event_manager_mod) $(mo_kind_mod): - @if test -z $<; then \ - echo "Cannot find Fortran source file providing module '$(basename $(@F))'." >&2; \ - elif test ! -f $@; then \ - rm -f $<; $(MAKE) $(AM_MAKEFLAGS) $<; \ - fi - -callback_test.$(OBJEXT) \ -comp_weights.$(OBJEXT) \ -duration.$(OBJEXT) \ -example.$(OBJEXT) \ -iconatm.$(OBJEXT) \ -iconoce.$(OBJEXT) \ -mo_event_manager.$(OBJEXT) \ -output_control.$(OBJEXT) \ -repetitor.$(OBJEXT) \ -tas.$(OBJEXT) \ -test_cf_timeaxis.$(OBJEXT) \ -test_dace.$(OBJEXT) \ -test_jd_logic.$(OBJEXT) \ -uniq.$(OBJEXT): $(top_builddir)/src/$(mtime_mod) - -duration.$(OBJEXT): $(mo_kind_mod) - -iconatm.$(OBJEXT) \ -iconoce.$(OBJEXT) \ -test_dace.$(OBJEXT): $(mo_event_manager_mod) - -clean-local: - rm -f *.dat - -MOSTLYCLEANFILES = $(mo_event_manager_mod) $(mo_exception_mod) $(mo_kind_mod) - -# overrides to make regular compilations also use libtool -COMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=compile $(CC) -static $(DEFS) \ - $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ - $(AM_CFLAGS) $(CFLAGS) -FCCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=FC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=compile $(FC) -static $(AM_FCFLAGS) $(FCFLAGS) diff --git a/examples/mo_kind.f90 b/examples/mo_kind.f90 index aec2f58fd3b0a1bc07f39d1fa65f7b0bb74b1e7c..77fd7d365cbe885fa76f03f623027ce0a47a26c7 100644 --- a/examples/mo_kind.f90 +++ b/examples/mo_kind.f90 @@ -95,11 +95,6 @@ MODULE mo_kind INTEGER, PARAMETER :: i4 = SELECTED_INT_KIND(pi4) !< at least 4 byte integer INTEGER, PARAMETER :: i8 = SELECTED_INT_KIND(pi8) !< at least 8 byte integer ! - ! - ! The following variable is made available internally only. configure needs to detect - ! the addressing mode and according to this mo_kind has to be updated by an preprocessor - ! directive and #include <config.h>. This needs some changes. - ! INTEGER, PARAMETER :: wi = i4 !< selected working precission ! PUBLIC :: sp, dp, wp, vp, i4, i8, i2 diff --git a/include/Makefile.am b/include/Makefile.am deleted file mode 100644 index 5c66e07c01999a8db91eef5aabab29136ebe9589..0000000000000000000000000000000000000000 --- a/include/Makefile.am +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright (c) 2013-2024 MPI-M, Luis Kornblueh, Rahul Sinha and DWD, Florian Prill. All rights reserved. -# -# SPDX-License-Identifier: BSD-3-Clause -# -include_HEADERS = \ - mtime_calendar.h \ - mtime_calendar360day.h \ - mtime_calendar365day.h \ - mtime_calendarGregorian.h \ - mtime_date.h \ - mtime_datetime.h \ - mtime_eventHandling.h \ - mtime_eventList.h \ - mtime_iso8601.h \ - mtime_julianDay.h \ - mtime_time.h \ - mtime_timedelta.h \ - mtime_utilities.h \ - orbit.h diff --git a/m4/acx_fc_module.m4 b/m4/acx_fc_module.m4 deleted file mode 100644 index c5fc11a17ddbcfb22318a171d1eacf9be2cb6a00..0000000000000000000000000000000000000000 --- a/m4/acx_fc_module.m4 +++ /dev/null @@ -1,440 +0,0 @@ -# Copyright (c) 2018-2024, MPI-M -# -# Author: Sergey Kosukhin <sergey.kosukhin@mpimet.mpg.de> -# -# SPDX-License-Identifier: BSD-3-Clause -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are met: -# -# 1. Redistributions of source code must retain the above copyright notice, -# this list of conditions and the following disclaimer. -# 2. Redistributions in binary form must reproduce the above copyright -# notice, this list of conditions and the following disclaimer in the -# documentation and/or other materials provided with the distribution. -# 3. Neither the name of the copyright holder nor the names of its -# contributors may be used to endorse or promote products derived from -# this software without specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -# POSSIBILITY OF SUCH DAMAGE. - -# ACX_FC_MODULE_IN_FLAG([ACTION-IF-SUCCESS], -# [ACTION-IF-FAILURE = FAILURE]) -# ----------------------------------------------------------------------------- -# Finds the Fortran compiler flag needed to specify module search paths. -# -# If successful, runs ACTION-IF-SUCCESS, otherwise runs ACTION-IF-FAILURE -# (defaults to failing with an error message). -# -# The flag is cached in the acx_cv_fc_module_in_flag variable, which may -# contain a significant trailing whitespace. -# -# The implementation patches the standard Autoconf macro AC_FC_MODULE_FLAG to -# reduce the number of LANG switches and to avoid false negative results with -# the GFortran '-fmodule-private' flag. -# -AC_DEFUN([ACX_FC_MODULE_IN_FLAG], - [AC_LANG_ASSERT([Fortran])dnl - m4_pushdef([ac_cv_fc_module_flag], [acx_cv_fc_module_in_flag])dnl - m4_pushdef([AC_CACHE_CHECK], - m4_bpatsubst(m4_dquote(m4_defn([AC_CACHE_CHECK])), - [\$][1], - [for Fortran compiler flag needed to specify search paths for module dnl -files]))dnl - m4_pushdef([AC_SUBST], [dn][l ])dnl - m4_pushdef([AC_CONFIG_COMMANDS_PRE], [dn][l ])dnl - m4_pushdef([acx_orig_macro], - m4_bpatsubsts(m4_dquote(m4_defn([AC_FC_MODULE_FLAG])), - [^ module conftest_module], [\& - implicit none - public], - [^ use conftest_module], [\&, only : conftest_routine - implicit none], - [AC_LANG_P\(OP\|USH\)(\[?Fortran\]?)], [dn][l ], - [FC_MODINC=.*], [dn][l ], - [^ *#], [dn][l ]))dnl - acx_orig_macro([:], [:])dnl - m4_popdef([acx_orig_macro])dnl - m4_popdef([AC_SUBST])dnl - m4_popdef([AC_CONFIG_COMMANDS_PRE])dnl - m4_popdef([AC_CACHE_CHECK])dnl - m4_popdef([ac_cv_fc_module_flag])dnl - AS_VAR_IF([acx_cv_fc_module_in_flag], [unknown], [m4_default([$2], - [AC_MSG_FAILURE([unable to detect Fortran compiler flag needed to dnl -specify search paths for module files])])], [$1])]) - -# ACX_FC_MODULE_OUT_FLAG([ACTION-IF-SUCCESS], -# [ACTION-IF-FAILURE = FAILURE]) -# ----------------------------------------------------------------------------- -# Finds the Fortran compiler flag needed to specify module output path. -# -# If successful, runs ACTION-IF-SUCCESS, otherwise runs ACTION-IF-FAILURE -# (defaults to failing with an error message). -# -# The flag is cached in the acx_cv_fc_module_out_flag variable, which may -# contain a significant trailing whitespace. -# -# The implementation patches the standard Autoconf macro -# AC_FC_MODULE_OUTPUT_FLAG to reduce the number of LANG switches and to avoid -# false negative results with the GFortran '-fmodule-private' flag. -# -AC_DEFUN([ACX_FC_MODULE_OUT_FLAG], - [AC_LANG_ASSERT([Fortran])dnl - m4_pushdef([ac_cv_fc_module_output_flag], [acx_cv_fc_module_out_flag])dnl - m4_pushdef([AC_CACHE_CHECK], - m4_bpatsubst(m4_dquote(m4_defn([AC_CACHE_CHECK])), - [\$][1], - [for Fortran compiler flag needed to specify output path for module dnl -files]))dnl - m4_pushdef([AC_SUBST], [dn][l ])dnl - m4_pushdef([AC_CONFIG_COMMANDS_PRE], [dn][l ])dnl - m4_pushdef([acx_orig_macro], - m4_bpatsubsts(m4_dquote(m4_defn([AC_FC_MODULE_OUTPUT_FLAG])), - [^ module conftest_module], [\& - implicit none - public], - [^ use conftest_module], [\&, only : conftest_routine - implicit none], - [AC_LANG_P\(OP\|USH\)(\[?Fortran\]?)], [dn][l ], - [FC_MODOUT=.*], [dn][l ], - [^ *#], [dn][l ]))dnl - m4_version_prereq([2.70], [], - [m4_define([acx_orig_macro], - m4_bpatsubsts(m4_dquote(m4_defn([acx_orig_macro])), - ['-mod '], ['-mdir ' \&],))])dnl - acx_orig_macro([:], [:])dnl - m4_popdef([acx_orig_macro])dnl - m4_popdef([AC_SUBST])dnl - m4_popdef([AC_CONFIG_COMMANDS_PRE])dnl - m4_popdef([AC_CACHE_CHECK])dnl - m4_popdef([ac_cv_fc_module_output_flag])dnl - AS_VAR_IF([acx_cv_fc_module_out_flag], [unknown], [m4_default([$2], - [AC_MSG_FAILURE([unable to detect Fortran compiler flag needed to dnl -specify output path for module files])])], [$1])]) - -# ACX_FC_MODULE_NAMING([ACTION-IF-SUCCESS], -# [ACTION-IF-FAILURE = FAILURE]) -# ----------------------------------------------------------------------------- -# Finds the Fortran compiler module file naming template. -# -# If successful, runs ACTION-IF-SUCCESS, otherwise runs ACTION-IF-FAILURE -# (defaults to failing with an error message). -# -# The result is cached in the acx_cv_fc_module_naming_upper and -# acx_cv_fc_module_naming_ext variables. If output module files have uppercase -# names, acx_cv_fc_module_naming_upper is "yes", and "no" otherwise. The -# acx_cv_fc_module_naming_ext variable stores the file extension without the -# leading dot. Either of the variables can have value "unknown". The result is -# successful only if both variables are detected. -# -AC_DEFUN([ACX_FC_MODULE_NAMING], - [AC_LANG_ASSERT([Fortran])dnl - AC_MSG_CHECKING([for Fortran compiler module file naming template]) - AS_IF([AS_VAR_TEST_SET([acx_cv_fc_module_naming_upper]) && dnl -AS_VAR_TEST_SET([acx_cv_fc_module_naming_ext])], - [AS_ECHO_N(["(cached) "]) >&AS_MESSAGE_FD], - [acx_cv_fc_module_naming_upper=${acx_cv_fc_module_naming_upper-unknown} - acx_cv_fc_module_naming_ext=${acx_cv_fc_module_naming_ext-unknown} - AS_MKDIR_P([conftest.dir]) - cd conftest.dir - AC_COMPILE_IFELSE([AC_LANG_SOURCE( -[[ module conftest_module - implicit none - public - contains - subroutine conftest_routine - end subroutine - end module]])], - [AS_CASE([$acx_cv_fc_module_naming_upper], - [yes], [acx_tmp='CONFTEST_MODULE.*'], - [no], [acx_tmp='conftest_module.*'], - [AS_VAR_IF([acx_cv_fc_module_naming_ext], [unknown], - [acx_tmp='CONFTEST_MODULE.* conftest_module.*'], - [acx_tmp="CONFTEST_MODULE.$acx_cv_fc_module_naming_ext dnl -conftest_module.$acx_cv_fc_module_naming_ext"])]) - acx_tmp=`ls $acx_tmp 2>/dev/null` - AS_IF([test 1 -eq `AS_ECHO(["$acx_tmp"]) | wc -l` 2>/dev/null], - [AS_CASE(["$acx_tmp"], - [CONFTEST_MODULE.*], - [acx_cv_fc_module_naming_upper=yes - acx_cv_fc_module_naming_ext=`echo $acx_tmp | dnl -sed 's,CONFTEST_MODULE\.,,'`], - [conftest_module.*], - [acx_cv_fc_module_naming_upper=no - acx_cv_fc_module_naming_ext=`echo $acx_tmp | dnl -sed 's,conftest_module\.,,'`])])]) - cd .. - rm -rf conftest.dir]) - AS_IF([test "x$acx_cv_fc_module_naming_upper" = xunknown || dnl -test "x$acx_cv_fc_module_naming_ext" = xunknown], - [AC_MSG_RESULT([unknown]) - m4_default([$2], [AC_MSG_FAILURE([unable to detect Fortran compiler dnl -module file naming template])])], - [AS_VAR_IF([acx_cv_fc_module_naming_upper], [yes], - [AC_MSG_RESULT([{NAME}.$acx_cv_fc_module_naming_ext])], - [AC_MSG_RESULT([{name}.$acx_cv_fc_module_naming_ext])]) - $1])]) - -# ACX_FC_MODULE_SNAMING([ACTION-IF-SUCCESS], -# [ACTION-IF-FAILURE = FAILURE]) -# ----------------------------------------------------------------------------- -# Finds the Fortran compiler submodule file naming template. -# -# If successful, runs ACTION-IF-SUCCESS, otherwise runs ACTION-IF-FAILURE -# (defaults to failing with an error message). -# -# The result is cached in the acx_cv_fc_module_snaming_infix and -# acx_cv_fc_module_snaming_ext variables. If output submodule files are -# prefixed with the names of the modules they extend (root ancestors), -# acx_cv_fc_module_snaming_infix is set to a non-empty string that the compiler -# injects between the name of the root ancestor and the submodule name in the -# submodule filename. Otherwise, acx_cv_fc_module_snaming_infix is set to an -# empty string. The acx_cv_fc_module_snaming_ext variable stores the file -# extension without the leading dot. Either of the variables can have value -# "unknown". The result is successful only if both variables are detected. -# -AC_DEFUN([ACX_FC_MODULE_SNAMING], - [AC_LANG_ASSERT([Fortran])dnl - AC_REQUIRE([ACX_FC_MODULE_NAMING])dnl - AC_MSG_CHECKING([for Fortran compiler submodule file naming template]) - AS_IF([AS_VAR_TEST_SET([acx_cv_fc_module_snaming_infix]) && dnl -AS_VAR_TEST_SET([acx_cv_fc_module_snaming_ext])], - [AS_ECHO_N(["(cached) "]) >&AS_MESSAGE_FD], - [acx_cv_fc_module_snaming_infix=dnl -${acx_cv_fc_module_snaming_infix-unknown} - acx_cv_fc_module_snaming_ext=${acx_cv_fc_module_snaming_ext-unknown} - AS_MKDIR_P([conftest.dir]) - cd conftest.dir - AC_COMPILE_IFELSE([AC_LANG_SOURCE( -[[ module conftest_module - implicit none - public - interface - module subroutine conftest_routine - end subroutine - end interface - end module - submodule (conftest_module) conftest_submodule - implicit none - contains - module subroutine conftest_routine - end subroutine - end submodule]])], - [AS_VAR_IF([acx_cv_fc_module_naming_upper], [yes], - [acx_fc_module_name='CONFTEST_MODULE' - acx_fc_module_sname='CONFTEST_SUBMODULE'], - [acx_fc_module_name='conftest_module' - acx_fc_module_sname='conftest_submodule']) - AS_VAR_IF([acx_cv_fc_module_snaming_infix], [unknown], - [acx_tmp='*'], - [acx_tmp="${acx_fc_module_name}$acx_cv_fc_module_snaming_infix"]) - AS_VAR_APPEND([acx_tmp], ["$acx_fc_module_sname."]) - AS_VAR_IF([acx_cv_fc_module_snaming_ext], [unknown], - [AS_VAR_APPEND([acx_tmp], '*')], - [AS_VAR_APPEND([acx_tmp], ["$acx_cv_fc_module_snaming_ext"])]) - acx_tmp=`ls $acx_tmp 2>/dev/null` - AS_IF([test 1 -eq `AS_ECHO(["$acx_tmp"]) | wc -l` 2>/dev/null], - [AS_VAR_IF([acx_cv_fc_module_snaming_ext], [unknown], - [AS_CASE([$acx_tmp], - [*"$acx_fc_module_sname."*], - [acx_cv_fc_module_snaming_ext=`echo $acx_tmp | dnl -sed "s,.*$acx_fc_module_sname\.,,"`])]) - AS_VAR_IF([acx_cv_fc_module_snaming_infix], [unknown], - [AS_CASE([$acx_tmp], - ["$acx_fc_module_sname."*], - [acx_cv_fc_module_snaming_infix=], - ["$acx_fc_module_name"*"$acx_fc_module_sname"*], - [acx_cv_fc_module_snaming_infix=`echo $acx_tmp | dnl -sed "s,$acx_fc_module_sname\..*,," | sed "s,^$acx_fc_module_name,,"`])])])])]) - cd .. - rm -rf conftest.dir - AS_IF([test "x$acx_cv_fc_module_snaming_infix" = xunknown || dnl -test "x$acx_cv_fc_module_snaming_ext" = xunknown], - [AC_MSG_RESULT([unknown]) - m4_default([$2], [AC_MSG_FAILURE([unable to detect Fortran compiler dnl -submodule file naming template])])], - [AS_VAR_IF([acx_cv_fc_module_naming_upper], [yes], - [acx_fc_module_name='{NAME}' - acx_fc_module_sname='{SNAME}'], - [acx_fc_module_name='{name}' - acx_fc_module_sname='{sname}']) - AS_VAR_IF([acx_cv_fc_module_snaming_infix], [], - [acx_tmp=], - [acx_tmp="$acx_fc_module_name$acx_cv_fc_module_snaming_infix"]) - AC_MSG_RESULT( - [$acx_tmp$acx_fc_module_sname.$acx_cv_fc_module_snaming_ext]) - $1])]) - -# ACX_FC_MODULE_ROOT_SMOD([ACTION-IF-SUCCESS], -# [ACTION-IF-FAILURE = FAILURE]) -# ----------------------------------------------------------------------------- -# Checks whether the Fortran compiler generates separate submodule files for -# the root ancestor modules. -# -# If successful, runs ACTION-IF-SUCCESS, otherwise runs ACTION-IF-FAILURE -# (defaults to failing with an error message). -# -# The result is cached in the acx_cv_fc_module_root_smod variable. If the -# compiler generates separate submodule files for the root ancestor modules, -# acx_cv_fc_module_root_smod is "yes", and "no" otherwise. If the detection -# fails, acx_cv_fc_module_root_smod is set to "unknown". -# -AC_DEFUN([ACX_FC_MODULE_ROOT_SMOD], - [AC_LANG_ASSERT([Fortran])dnl - AC_REQUIRE([ACX_FC_MODULE_NAMING])dnl - AC_REQUIRE([ACX_FC_MODULE_SNAMING])dnl - AC_CACHE_CHECK( - [whether Fortran compiler generates submodule files for root ancestors], - [acx_cv_fc_module_root_smod], - [acx_cv_fc_module_root_smod=unknown - AS_VAR_IF([acx_cv_fc_module_snaming_ext], - ["$acx_cv_fc_module_naming_ext"], - [acx_cv_fc_module_root_smod=no], - [AS_MKDIR_P([conftest.dir]) - cd conftest.dir - AC_COMPILE_IFELSE([AC_LANG_SOURCE( -[[ module conftest_module - implicit none - public - interface - module subroutine conftest_routine - end subroutine - end interface - end module]])], - [AS_VAR_IF([acx_cv_fc_module_naming_upper], [yes], - [acx_fc_module_name='CONFTEST_MODULE'], - [acx_fc_module_name='conftest_module']) - AS_IF( - [test -f "$acx_fc_module_name.$acx_cv_fc_module_snaming_ext"], - [acx_cv_fc_module_root_smod=yes], - [acx_cv_fc_module_root_smod=no])]) - cd .. - rm -rf conftest.dir])]) - AS_VAR_IF([acx_cv_fc_module_root_smod], [unknown], [m4_default([$2], - [AC_MSG_FAILURE([unable to detect whether Fortran compiler generates dnl -submodule files for modules])])], [$1])]) - -# ACX_FC_MODULE_CHECK(MODULE-NAME, -# [ACTION-IF-SUCCESS], -# [ACTION-IF-FAILURE = FAILURE]) -# ----------------------------------------------------------------------------- -# Checks whether the Fortran module MODULE-NAME is available. The result is -# either "yes" or "no". -# -# If successful, runs ACTION-IF-SUCCESS, otherwise runs ACTION-IF-FAILURE -# (defaults to failing with an error message). -# -# The result is cached in the acx_cv_fc_module_[]AS_TR_CPP(MODULE-NAME) -# variable. -# -AC_DEFUN([ACX_FC_MODULE_CHECK], - [AC_LANG_ASSERT([Fortran])dnl - m4_pushdef([acx_cache_var], [acx_cv_fc_module_[]AS_TR_CPP([$1])])dnl - AC_CACHE_CHECK([for Fortran module AS_TR_CPP([$1])], [acx_cache_var], - [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [[ use $1]])], - [AS_VAR_SET([acx_cache_var], [yes])], - [AS_VAR_SET([acx_cache_var], [no])])]) - AS_VAR_IF([acx_cache_var], [yes], [$2], [m4_default([$3], - [AC_MSG_FAILURE([Fortran module 'AS_TR_CPP([$1])' is not available])])]) - m4_popdef([acx_cache_var])]) - -# ACX_FC_MODULE_PROC_CHECK(MODULE-NAME, -# PROCEDURE-NAME, -# [CALL-CODE = " CALL PROCEDURE-NAME()"], -# [ACTION-IF-SUCCESS], -# [ACTION-IF-FAILURE = FAILURE]) -# ----------------------------------------------------------------------------- -# Checks whether the Fortran module procedure PROCEDURE-NAME from the module -# MODULE-NAME is available. The check is performed by linking a program that -# uses the module MODULE-NAME as "USE MODULE-NAME, ONLY : PROCEDURE-NAME" -# followed by the "IMPLICIT NONE" statement and the CALL-CODE (defaults to -# calling the PROCEDURE-NAME without parameters, which means that if -# PROCEDURE-NAME is a function or a subroutine with parameters, the CALL-CODE -# must be provided). The result is either "yes" or "no". -# -# If successful, runs ACTION-IF-SUCCESS (defaults to nothing), otherwise runs -# ACTION-IF-FAILURE (defaults to failing with an error message). -# -# The result is cached in the -# acx_cv_fc_module_proc_[]AS_TR_CPP(MODULE-NAME)_[]AS_TR_CPP(PROCEDURE-NAME) -# variable. -# -AC_DEFUN([ACX_FC_MODULE_PROC_CHECK], - [AC_LANG_ASSERT([Fortran])dnl - m4_pushdef([acx_cache_var], - [acx_cv_fc_module_proc_[]AS_TR_CPP([$1])_[]AS_TR_CPP([$2])])dnl - AC_CACHE_CHECK([for Fortran procedure AS_TR_CPP([$2]) from module dnl -AS_TR_CPP([$1])], - [acx_cache_var], - [AC_LINK_IFELSE([AC_LANG_PROGRAM([],[[ use $1, only : $2 - implicit none] -m4_default([$3], [[ call $2 ()]])])], - [AS_VAR_SET([acx_cache_var], [yes])], - [AS_VAR_SET([acx_cache_var], [no])])]) - AS_VAR_IF([acx_cache_var], [yes], [$4], [m4_default([$5], - [AC_MSG_FAILURE([Fortran module procedure 'AS_TR_CPP([$2])' from dnl -module 'AS_TR_CPP([$1])' is not available])])]) - m4_popdef([acx_cache_var])]) - -# ACX_FC_MODULE_ONLY_FLAG([ACTION-IF-SUCCESS], -# [ACTION-IF-FAILURE = FAILURE]) -# ----------------------------------------------------------------------------- -# Finds the Fortran compiler flag needed to generate module files but no object -# files. The result is either "unknown" or the actual compiler flag (might be a -# space-separated combination of several flags). -# -# If successful, runs ACTION-IF-SUCCESS, otherwise runs ACTION-IF-FAILURE -# (defaults to failing with an error message). -# -# The flag is cached in the acx_cv_fc_module_only_flag variable. -# -# Known flags: -# Intel: -syntax-only (or -fsyntax-only) -# GNU: -fsyntax-only -# NEC: -fsyntax-only -# PGI/NVIDIA: -Msyntax-only -# NAG: -M or -otype=mod -# Cray: '-dB -M2179' (the second flag suppresses an excessive warning) -# or -otype=mod (undocumented and slow) -# -AC_DEFUN([ACX_FC_MODULE_ONLY_FLAG], - [AC_LANG_ASSERT([Fortran])dnl - AC_REQUIRE([ACX_FC_MODULE_NAMING])dnl - AC_CACHE_CHECK( - [for Fortran compiler flag needed to generate module files but no dnl -object files], - [acx_cv_fc_module_only_flag], - [acx_cv_fc_module_only_flag=unknown - AS_MKDIR_P([conftest.dir]) - cd conftest.dir - AC_LANG_CONFTEST([AC_LANG_SOURCE( -[[ module conftest_module - end module]])]) - AS_VAR_IF([acx_cv_fc_module_naming_upper], [yes], - [acx_tmp="CONFTEST_MODULE.$acx_cv_fc_module_naming_ext"], - [acx_tmp="conftest_module.$acx_cv_fc_module_naming_ext"]) - acx_save_FCFLAGS=$FCFLAGS - for acx_flag in '-syntax-only' '-fsyntax-only' '-Msyntax-only' dnl -'-dB -M2179' '-M' '-otype=mod'; do - FCFLAGS="$acx_save_FCFLAGS $acx_flag" - AS_IF([_AC_DO_VAR([ac_compile]) && dnl -test -f $acx_tmp && test ! -f conftest.$ac_objext], - [acx_cv_fc_module_only_flag=$acx_flag; break], - [rm -f $acx_tmp conftest.$ac_objext]) - done - FCFLAGS=$acx_save_FCFLAGS - cd .. - rm -rf conftest.dir]) - AS_VAR_IF([acx_cv_fc_module_only_flag], [unknown], [m4_default([$2], - [AC_MSG_FAILURE([unable to detect Fortran compiler flag needed to dnl -generate module files but no object files])])], [$1])]) diff --git a/m4/acx_fc_pp.m4 b/m4/acx_fc_pp.m4 deleted file mode 100644 index 3915ef40a461247d5bc968718e38da0decfe239e..0000000000000000000000000000000000000000 --- a/m4/acx_fc_pp.m4 +++ /dev/null @@ -1,82 +0,0 @@ -# Copyright (c) 2018-2024, MPI-M -# -# Author: Sergey Kosukhin <sergey.kosukhin@mpimet.mpg.de> -# -# SPDX-License-Identifier: BSD-3-Clause -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are met: -# -# 1. Redistributions of source code must retain the above copyright notice, -# this list of conditions and the following disclaimer. -# 2. Redistributions in binary form must reproduce the above copyright -# notice, this list of conditions and the following disclaimer in the -# documentation and/or other materials provided with the distribution. -# 3. Neither the name of the copyright holder nor the names of its -# contributors may be used to endorse or promote products derived from -# this software without specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -# POSSIBILITY OF SUCH DAMAGE. - -# ACX_FC_PP_SRCEXT(EXTENSION, -# [ACTION-IF-SUCCESS], -# [ACTION-IF-FAILURE = FAILURE]) -# ----------------------------------------------------------------------------- -# Finds the Fortran compiler flag needed to enable Fortran preprocessing for -# source files with extension EXTENSION. The result is either "unknown", -# or the actual compiler flag required to enable Fortran preprocessing, which -# may be an empty string. -# -# If successful, sets the output variable FCFLAGS_[]EXTENSION and the shell -# variable ac_fcflags_srcext to the result, sets the shell variables -# ac_fc_srcext and ac_ext to the EXTENSION, and runs ACTION-IF-SUCCESS; -# otherwise sets the output variable FCFLAGS_[]EXTENSION and the shell variable -# ac_fcflags_srcext to empty strings, keeps the shell variables ac_fc_srcext -# and ac_ext unchanged, and runs ACTION-IF-FAILURE (defaults to failing with an -# error message). -# -# The flag is cached in the acx_cv_fc_pp_srcext_[]EXTENSION, which may contain -# whitespaces. -# -# The implementation patches the standard Autoconf macro AC_FC_PP_SRCEXT to -# reduce the number of LANG switches and to support additional known compiler -# flags: -# Cray: -e T (must precede -e Z, which triggers generation of unwanted *.i -# flags and crashes old versions of the compiler at the linking -# stage) -# -AC_DEFUN([ACX_FC_PP_SRCEXT], - [AC_LANG_ASSERT([Fortran])dnl - acx_ext_save=$ac_ext - m4_pushdef([acx_cache_var], [acx_cv_fc_pp_srcext_$1])dnl - m4_pushdef([ac_cv_fc_pp_srcext_$1], [acx_cache_var])dnl - m4_pushdef([AC_CACHE_CHECK], - m4_bpatsubst(m4_dquote(m4_defn([AC_CACHE_CHECK])), - [\$][1], - [for Fortran compiler flag needed to compile preprocessed .$1 files]))dnl - m4_pushdef([AC_FC_PP_SRCEXT], - m4_bpatsubsts(m4_dquote(m4_defn([AC_FC_PP_SRCEXT])), - ["-e Z"], ["-e T" \&], - [AC_LANG_P\(OP\|USH\)(\[?Fortran\]?)], [dn][l ]))dnl - AC_FC_PP_SRCEXT([$1], [], [:]) - m4_popdef([AC_FC_PP_SRCEXT])dnl - m4_popdef([AC_CACHE_CHECK])dnl - m4_popdef([ac_cv_fc_pp_srcext_$1])dnl - AS_VAR_IF([acx_cache_var], [unknown], - [ac_ext=$acx_ext_save - m4_default([$3], - [AC_MSG_FAILURE([unable to detect Fortran compiler flag needed to dnl -compile preprocessed .$1 files])])], - [ac_ext=$ac_fc_srcext - $2]) - m4_popdef([acx_cache_var])]) diff --git a/m4/acx_lang_lib.m4 b/m4/acx_lang_lib.m4 deleted file mode 100644 index 1111131bd7171a1bc02013992d24e8224d7e1a51..0000000000000000000000000000000000000000 --- a/m4/acx_lang_lib.m4 +++ /dev/null @@ -1,181 +0,0 @@ -# Copyright (c) 2010-2024, DKRZ, MPI-M -# -# Authors: -# Thomas Jahns <jahns@dkrz.de> -# Sergey Kosukhin <sergey.kosukhin@mpimet.mpg.de> -# -# SPDX-License-Identifier: BSD-3-Clause -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are met: -# -# 1. Redistributions of source code must retain the above copyright notice, -# this list of conditions and the following disclaimer. -# 2. Redistributions in binary form must reproduce the above copyright -# notice, this list of conditions and the following disclaimer in the -# documentation and/or other materials provided with the distribution. -# 3. Neither the name of the copyright holder nor the names of its -# contributors may be used to endorse or promote products derived from -# this software without specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -# POSSIBILITY OF SUCH DAMAGE. - -# ACX_LANG_LIB_CHECK(FUNC-NAME, -# [ACTION-IF-SUCCESS], -# [ACTION-IF-FAILURE = FAILURE], -# [CHECK-PROGRAM = AC_LANG_CALL([],FUNC-NAME)]) -# ----------------------------------------------------------------------------- -# Checks whether the function FUNC-NAME is available for the current language. -# The check is performed by linking a program CHECK-PROGRAM (defaults to -# AC_LANG_CALL([], FUNC-NAME)). The result is either "yes" or "no". -# -# If successful, runs ACTION-IF-SUCCESS, otherwise runs ACTION-IF-FAILURE -# (defaults to failing with an error message). -# -# The result is cached in the -# acx_cv_[]_AC_LANG_ABBREV[]_func_[]AS_TR_SH(FUNC-NAME) variable if the current -# language is case-sensitive (e.g. C), or in the -# acx_cv_[]_AC_LANG_ABBREV[]_func_[]AS_TR_CPP(FUNC-NAME) variable if the -# current language is case-insensitive (e.g. Fortran). -# -AC_DEFUN([ACX_LANG_LIB_CHECK], - [m4_ifdef([$0(]_AC_LANG[)], - [m4_indir([$0(]_AC_LANG[)], $@)], - [m4_indir([$0()], $@)])]) - -# ACX_LANG_LIB_SEARCH(VARIABLE, -# FUNC-NAME, -# [CANDIDATES], -# [ACTION-IF-SUCCESS], -# [ACTION-IF-FAILURE = FAILURE], -# [CHECK-PROGRAM = AC_LANG_CALL([],FUNC-NAME)]) -# ----------------------------------------------------------------------------- -# Searches for a set of linker flags enabling the function FUNC-NAME for the -# current language. If the shell variable VARIABLE is set, checks whether the -# linker flags it stores enable FUNC-NAME. If VARIABLE is not set, checks -# whether additional flags are needed at all to enable FUNC-NAME. If the latter -# is the case, iterates over the values of the blank-separated list CANDIDATES -# and stops when the first value corresponding to the valid set of flags -# enabling FUNC-NAME is found. The checks are performed by trying to compile -# and link the program CHECK-PROGRAM (defaults to AC_LANG_CALL for FUNC-NAME). -# The result of the macro is either an empty string (i.e. no additional flags -# are needed), or the first successful element of the list CANDIDATES. The -# value of VARIABLE is never set or changed. -# -# If successful, runs ACTION-IF-SUCCESS, otherwise runs ACTION-IF-FAILURE -# (defaults to failing with an error message). -# -# A positive result of this test is cached in the -# acx_cv_[]_AC_LANG_ABBREV[]_lib_func_[]AS_TR_SH(FUNC-NAME) variable if the -# current language is case-sensitive (e.g. C), or in the -# acx_cv_[]_AC_LANG_ABBREV[]_lib_func_[]AS_TR_CPP(FUNC-NAME) variable if the -# current language is case-insensitive (e.g. Fortran). -# -AC_DEFUN([ACX_LANG_LIB_SEARCH], - [m4_ifdef([$0(]_AC_LANG[)], - [m4_indir([$0(]_AC_LANG[)], $@)], - [m4_indir([$0()], $@)])]) - -# ACX_LANG_LIB_CHECK()(FUNC-NAME, -# [ACTION-IF-SUCCESS], -# [ACTION-IF-FAILURE = FAILURE], -# [CHECK-PROGRAM = AC_LANG_CALL([],FUNC-NAME)]) -# ----------------------------------------------------------------------------- -# Default implementation of ACX_LANG_LIB_CHECK for case-sensitive languages. -# -# The result is cached in the -# acx_cv_[]_AC_LANG_ABBREV[]_func_[]AS_TR_SH(FUNC-NAME) variable. -# -m4_define([ACX_LANG_LIB_CHECK()], - [m4_pushdef([acx_cache_var], - [acx_cv_[]_AC_LANG_ABBREV[]_func_[]AS_TR_SH([$1])])dnl - AC_CACHE_CHECK([for _AC_LANG function $1], - [acx_cache_var], - [AC_LINK_IFELSE([m4_default([$4], [AC_LANG_CALL([], [$1])])], - [AS_VAR_SET([acx_cache_var], [yes])], - [AS_VAR_SET([acx_cache_var], [no])])]) - AS_IF([test x"AS_VAR_GET(acx_cache_var)" = xyes], [$2], - [m4_default([$3], - [AC_MSG_FAILURE([_AC_LANG function $1 is not available])])]) - m4_popdef([acx_cache_var])]) - -# ACX_LANG_LIB_CHECK(Fortran)(FUNC-NAME, -# [ACTION-IF-SUCCESS], -# [ACTION-IF-FAILURE = FAILURE], -# [CHECK-PROGRAM = AC_LANG_CALL([],FUNC-NAME)]) -# ----------------------------------------------------------------------------- -# Implementation of ACX_LANG_LIB_CHECK for Fortran language. Accounts for the -# case-insensitivity of the language. -# -# The result is cached in the -# acx_cv_[]_AC_LANG_ABBREV[]_func_[]AS_TR_CPP(FUNC-NAME) variable. -# -m4_define([ACX_LANG_LIB_CHECK(Fortran)], - [AS_VAR_SET([acx_tmp], [AS_TR_CPP([$1])]) - m4_indir([ACX_LANG_LIB_CHECK()], [$acx_tmp], m4_shift($@))]) - -# ACX_LANG_LIB_SEARCH()(VARIABLE, -# FUNC-NAME, -# [CANDIDATES], -# [ACTION-IF-SUCCESS], -# [ACTION-IF-FAILURE = FAILURE], -# [CHECK-PROGRAM = AC_LANG_CALL([],FUNC-NAME)]) -# ----------------------------------------------------------------------------- -# Default implementation of ACX_LANG_LIB_SEARCH for case-sensitive languages. -# -# The result is cached in the -# acx_cv_[]_AC_LANG_ABBREV[]_lib_func_[]AS_TR_SH(FUNC-NAME) variable. -# -m4_define([ACX_LANG_LIB_SEARCH()], - [m4_pushdef([acx_cache_var], - [acx_cv_[]_AC_LANG_ABBREV[]_lib_func_[]AS_TR_SH([$2])])dnl - AC_MSG_CHECKING([for linker flags enabling _AC_LANG function $2]) - AC_CACHE_VAL([acx_cache_var], - [AC_LANG_CONFTEST([m4_default([$6], [AC_LANG_CALL([], [$2])])]) - acx_save_LIBS=$LIBS - AS_VAR_SET_IF([$1], [set dummy "AS_VAR_GET([$1])"], [set dummy '' $3]) - shift - for acx_libs in "$[@]"; do - LIBS="$acx_libs $acx_save_LIBS" - AC_LINK_IFELSE([], [AS_VAR_COPY([acx_cache_var], [acx_libs])]) - AS_VAR_SET_IF([acx_cache_var], [break]) - done - rm -f conftest.$ac_ext - LIBS=$acx_save_LIBS]) - AS_VAR_SET_IF([acx_cache_var], - [AS_IF([test -n "AS_VAR_GET(acx_cache_var)"], - [AC_MSG_RESULT([AS_VAR_GET(acx_cache_var)])], - [AC_MSG_RESULT([none needed])]) - $4], - [AC_MSG_RESULT([unknown]) - m4_default([$5], [AC_MSG_FAILURE( - [unable to find linker flags enabling _AC_LANG function $2])])]) - m4_popdef([acx_cache_var])]) - -# ACX_LANG_LIB_SEARCH(Fortran)(VARIABLE, -# FUNC-NAME, -# [CANDIDATES], -# [ACTION-IF-SUCCESS], -# [ACTION-IF-FAILURE = FAILURE], -# [CHECK-PROGRAM = AC_LANG_CALL([],FUNC-NAME)]) -# ----------------------------------------------------------------------------- -# Implementation of ACX_LANG_LIB_SEARCH for Fortran language. Accounts for the -# case-insensitivity of the language. -# -# The result is cached in the -# acx_cv_[]_AC_LANG_ABBREV[]_lib_func_[]AS_TR_CPP(FUNC-NAME) variable. -# -m4_define([ACX_LANG_LIB_SEARCH(Fortran)], - [AS_VAR_SET([acx_fc_lib_search], [AS_TR_CPP([$2])]) - m4_indir([ACX_LANG_LIB_SEARCH()], - [$1], [$acx_fc_lib_search], m4_shift2($@))]) diff --git a/m4/acx_lang_package.m4 b/m4/acx_lang_package.m4 deleted file mode 100644 index 9e0def76d94181f19d8aab80dd23dc29075b5a02..0000000000000000000000000000000000000000 --- a/m4/acx_lang_package.m4 +++ /dev/null @@ -1,113 +0,0 @@ -# Copyright (c) 2010-2024, DKRZ, MPI-M -# -# Authors: -# Thomas Jahns <jahns@dkrz.de> -# Sergey Kosukhin <sergey.kosukhin@mpimet.mpg.de> -# -# SPDX-License-Identifier: BSD-3-Clause -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are met: -# -# 1. Redistributions of source code must retain the above copyright notice, -# this list of conditions and the following disclaimer. -# 2. Redistributions in binary form must reproduce the above copyright -# notice, this list of conditions and the following disclaimer in the -# documentation and/or other materials provided with the distribution. -# 3. Neither the name of the copyright holder nor the names of its -# contributors may be used to endorse or promote products derived from -# this software without specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -# POSSIBILITY OF SUCH DAMAGE. - -# ACX_LANG_PACKAGE_INIT(PACKAGE-NAME, -# [INC-SEARCH-FLAGS], -# [LIB-SEARCH-FLAGS], -# [INC-SEARCH-SUFFIX = /include], -# [LIB-SEARCH-SUFFIX = /lib]) -# ----------------------------------------------------------------------------- -# Sets command-line arguments of the configure script that allows for setting -# search paths for the PACKAGE-NAME. By default, sets only the -# "--with-package-name-root" argument. -# -# If the argument INC-SEARCH-FLAGS is not blank, adds a command-line argument -# "--with-package-name-include", declares a precious variable -# AS_TR_CPP(PACKAGE-NAME)_AC_LANG_PREFIX[]FLAGS (e.g. PACKAGE_NAME_FCFLAGS), -# and sets a shell variable -# acx_[]_AC_LANG_ABBREV[]_[]AS_TR_SH(PACKAGE-NAME)_inc_search_args -# (e.g. acx_fc_Package_Name_inc_search_args). The latter variable is set to -# a string containing each flag from the space-separated list INC-SEARCH-FLAGS -# appended either with the value of the command-line argument -# "--with-package-name-include" (if given) or with the concatenation of the -# value of the command-line argument "--with-package-name-root" (if given) and -# INC-SEARCH-SUFFIX (defaults to /include). If neither of the two mentioned -# command-line arguments is given the variable -# acx_[]_AC_LANG_ABBREV[]_[]AS_TR_SH(PACKAGE-NAME)_inc_search_args is empty. -# -# If the argument LIB-SEARCH-FLAGS is given, adds a command-line argument -# "--with-package-name-lib", declares a precious variable -# AS_TR_CPP(PACKAGE-NAME)_AC_LANG_PREFIX[]LIBS (e.g. PACKAGE_NAME_FCLIBS), and -# sets a shell variable -# acx_[]_AC_LANG_ABBREV[]_[]AS_TR_SH(PACKAGE-NAME)_lib_search_args (e.g. -# acx_fc_Package_Name_lib_search_args). The value for the latter variable is -# set according to the same rules as for the variable related to the include -# search path (LIB-SEARCH-SUFFIX defaults to /lib). -# -AC_DEFUN([ACX_LANG_PACKAGE_INIT], - [m4_pushdef([acx_package_ROOT], [AS_TR_CPP([$1]_ROOT)])dnl - m4_pushdef([acx_package_with_root], - [with_[]AS_TR_SH([ASX_TR_ARG([$1])])_root])dnl - AC_ARG_WITH(ASX_TR_ARG([$1])[-root], - [AS_HELP_STRING([--with-ASX_TR_ARG([$1])-root=[]acx_package_ROOT], - [root search path for $1 headers and libraries])]) - m4_ifnblank([$2], - [m4_pushdef([acx_package_with_include], - [with_[]AS_TR_SH([ASX_TR_ARG([$1])])_include])dnl - AC_ARG_WITH(ASX_TR_ARG([$1])[-include], - [AS_HELP_STRING([--with-ASX_TR_ARG([$1])-include=DIR], - [search path for $1 headers @<:@]acx_package_ROOT[]dnl -m4_default([$4], [/include])[@:>@])], [], - [AS_VAR_SET_IF([acx_package_with_root], - [acx_package_with_include="${acx_package_with_root}dnl -m4_default([$4], [/include])"])]) - AC_ARG_VAR(AS_TR_CPP([$1])_[]_AC_LANG_PREFIX[FLAGS], - [exact ]_AC_LANG[ compiler flags enabling $1]) - AS_VAR_SET_IF([acx_package_with_include], - [for acx_flag in $2; do - ASX_VAR_APPEND_UNIQ( - [acx_[]_AC_LANG_ABBREV[]_[]AS_TR_SH([$1])_inc_search_args], - ["${acx_flag}${acx_package_with_include}"], [" "]) - done]) - m4_popdef([acx_package_with_include])]) - m4_ifnblank([$3], - [m4_pushdef([acx_package_with_lib], - [with_[]AS_TR_SH([ASX_TR_ARG([$1])])_lib])dnl - AC_ARG_WITH(ASX_TR_ARG([$1])[-lib], - [AS_HELP_STRING([--with-ASX_TR_ARG([$1])-lib=DIR], - [search path for $1 libraries @<:@]acx_package_ROOT[]dnl -m4_default([$5], [/lib])[@:>@])], - [], - [AS_VAR_SET_IF([acx_package_with_root], - [acx_package_with_lib="${acx_package_with_root}dnl -m4_default([$5], [/lib])"])]) - AC_ARG_VAR(AS_TR_CPP([$1])_[]_AC_LANG_PREFIX[LIBS], - [exact linker flags enabling $1 when linking with ]_AC_LANG[ compiler]) - AS_VAR_SET_IF([acx_package_with_lib], - [for acx_flag in $3; do - ASX_VAR_APPEND_UNIQ( - [acx_[]_AC_LANG_ABBREV[]_[]AS_TR_SH([$1])_lib_search_args], - ["${acx_flag}${acx_package_with_lib}"], [" "]) - done]) - m4_popdef([acx_package_with_lib])]) - m4_popdef([acx_package_ROOT])dnl - m4_popdef([acx_package_with_root])]) diff --git a/m4/acx_lt_problems.m4 b/m4/acx_lt_problems.m4 deleted file mode 100644 index fa7be119f5bbcd28f2e2267b6356123d806c97c0..0000000000000000000000000000000000000000 --- a/m4/acx_lt_problems.m4 +++ /dev/null @@ -1,99 +0,0 @@ -dnl acx_lt_problems.m4 --- prevent problematic libtool build configurations -dnl -dnl Copyright (C) 2011 Thomas Jahns <jahns@dkrz.de> -dnl -dnl Version: 1.0 -dnl Keywords: -dnl Author: Thomas Jahns <jahns@dkrz.de> -dnl Maintainer: Thomas Jahns <jahns@dkrz.de> -dnl URL: https://swprojects.dkrz.de/redmine/projects/scales-ppm -dnl -dnl Redistribution and use in source and binary forms, with or without -dnl modification, are permitted provided that the following conditions are -dnl met: -dnl -dnl Redistributions of source code must retain the above copyright notice, -dnl this list of conditions and the following disclaimer. -dnl -dnl Redistributions in binary form must reproduce the above copyright -dnl notice, this list of conditions and the following disclaimer in the -dnl documentation and/or other materials provided with the distribution. -dnl -dnl Neither the name of the DKRZ GmbH nor the names of its contributors -dnl may be used to endorse or promote products derived from this software -dnl without specific prior written permission. -dnl -dnl THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS -dnl IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED -dnl TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A -dnl PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER -dnl OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, -dnl EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -dnl PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -dnl PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -dnl LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -dnl NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -dnl SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -dnl -dnl ACX_LT_PROBLEMS -dnl Test if compiler is able to produce working shared objects -dnl and prevent builds of shared libraries that would not work anyway. -dnl -dnl The following problems are known so far: -dnl -dnl - Intel ifort versions 15.0.1, 15.0.2 or 15.0.3 compile the Fortran -dnl runtime into any shared object, thus producing various -dnl interpositioning problems with little likelyness that -dnl executables linking the shared objects can actually work. -dnl -dnl - IBM mp-compilers (mpcc, mpcc_r, mpCC, mpCC_r, mpxlf, mpxlf_r, -dnl mpxlf2003_r, mpxlf90, mpxlf90_r, mpxlf95, mpxlf95_r) link -dnl shared objects with linker option -binitfini:poe_remote_main -dnl even though this option should only be set for executables, it -dnl causes a duplicate exit handler that fails and clobbers the -dnl programs exit status (set to 128). -dnl -AC_DEFUN([_ACX_LT_PROBLEMS], - [AC_REQUIRE([AC_CANONICAL_HOST])dnl - AC_LANG_CASE([Fortran],[m4_pushdef([acx_Comp],[FC])m4_pushdef([acx_flags_var],[FCFLAGS])], - [Fortran 77],[m4_pushdef([acx_Comp],[F77])m4_pushdef([acx_flags_var],[FFLAGS])], - [C],[m4_pushdef([acx_Comp],[CC])m4_pushdef([acx_flags_var],[CFLAGS])])dnl - _AS_ECHO_LOG([testing if $acx_Comp cannot build working shared objects]) - AS_CASE([$host], - [*-ibm-aix*], - [AS_IF([$acx_Comp -G -v 2>&1 | grep ' -binitfini:poe_remote_main ' >/dev/null], - [acx_cv_disable_shared=yes])], - [x86_64-*-linux-*|i*86-*-linux-*|*-apple-darwin*|ia64-*-linux-*|x86_64-*-freebsd*|i*86-*-freebsd*], - [AS_IF([$acx_Comp -V 2>&1 | grep '^Intel(R).*Fortran.*Compiler.*Version 15.0.@<:@123@:>@' >/dev/null], - [AS_CASE([" $acx_flags_var $LDFLAGS "], - [*\ -Qlocation,ld,*\ *], - [acx_cv_disable_shared=yes], - [acx_flags_var="$acx_flags_var -Qlocation,ld,$ac_abs_confdir/util/icomp15"])])]) - _AS_ECHO_LOG([result: $acx_cv_disable_shared])m4_popdef([acx_Comp])m4_popdef([acx_flags_var])]) -dnl -dnl run test for C and Fortran compilers -AC_DEFUN([ACX_LT_PROBLEMS], - [AS_IF([test x"$enable_shared" != xno], - [AC_CACHE_CHECK([any compiler has problems building shared objects], - [acx_cv_disable_shared], - [acx_cv_disable_shared=no - AC_PROVIDE_IFELSE([AC_PROG_FC], - [AC_LANG_PUSH([Fortran]) - _ACX_LT_PROBLEMS - AC_LANG_POP([Fortran])]) - AC_PROVIDE_IFELSE([AC_PROG_F77], - [AC_LANG_PUSH([Fortran 77]) - _ACX_LT_PROBLEMS - AC_LANG_POP([Fortran 77])]) - AC_PROVIDE_IFELSE([AC_PROG_CC], - [AC_LANG_PUSH([C]) - _ACX_LT_PROBLEMS - AC_LANG_POP([C])])]) - AS_IF([test x"$acx_cv_disable_shared" = xyes], - [enable_shared=no])])]) -dnl -dnl Local Variables: -dnl mode: autoconf -dnl license-project-url: "https://swprojects.dkrz.de/redmine/projects/scales-ppm" -dnl license-default: "bsd" -dnl End: diff --git a/m4/acx_use_libtool_configuration.m4 b/m4/acx_use_libtool_configuration.m4 deleted file mode 100644 index 3f21726393fc2855655dddc9cb5966d4c6c313a0..0000000000000000000000000000000000000000 --- a/m4/acx_use_libtool_configuration.m4 +++ /dev/null @@ -1,194 +0,0 @@ -dnl acx_use_libtool_configuration.m4 --- prevent problematic libtool build configurations -dnl -dnl Copyright (C) 2016 Thomas Jahns <jahns@dkrz.de> -dnl -dnl Version: 1.0 -dnl Keywords: -dnl Author: Thomas Jahns <jahns@dkrz.de> -dnl Maintainer: Thomas Jahns <jahns@dkrz.de> -dnl URL: https://swprojects.dkrz.de/redmine/projects/scales-ppm -dnl -dnl Redistribution and use in source and binary forms, with or without -dnl modification, are permitted provided that the following conditions are -dnl met: -dnl -dnl Redistributions of source code must retain the above copyright notice, -dnl this list of conditions and the following disclaimer. -dnl -dnl Redistributions in binary form must reproduce the above copyright -dnl notice, this list of conditions and the following disclaimer in the -dnl documentation and/or other materials provided with the distribution. -dnl -dnl Neither the name of the DKRZ GmbH nor the names of its contributors -dnl may be used to endorse or promote products derived from this software -dnl without specific prior written permission. -dnl -dnl THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS -dnl IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED -dnl TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A -dnl PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER -dnl OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, -dnl EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -dnl PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -dnl PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -dnl LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -dnl NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -dnl SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -dnl _ACX_LT_FLAGS_MANGLE -m4_define([nag_filter_flag_var], - [AS_IF([test x${$1+set} = xset], - [$1=`echo "$][$1" | tr ' ' '\n' | sed -e '/^-W@<:@lc@:>@/{' \ --e 's/^\(-Wl\)/-XCClinker \1/;s/^\(-Wc,\)/-Xcompiler \1/' \ --e 's/^\(-Wc=.*\)/-Xcompiler \1 -XCClinker \1/' -e '}' \ - | tr '\n' ' ' | sed -e 's/ $//'`])]) -AC_DEFUN([_ACX_LT_FORT_FLAGS_MANGLE], - [_AC_FORTRAN_ASSERT - AC_LANG_CASE([Fortran], - [AS_VAR_PUSHDEF([acx_FC],[FC])dnl - AS_VAR_PUSHDEF([acx_FCFLAGS],[FCFLAGS])dnl - AS_VAR_PUSHDEF([acx_LDFLAGS],[FCLDFLAGS])], - [Fortran 77], - [AS_VAR_PUSHDEF([acx_FC],[F77])dnl - AS_VAR_PUSHDEF([acx_FCFLAGS],[FFLAGS])dnl - AS_VAR_PUSHDEF([acx_LDFLAGS],[F77LDFLAGS])]) - acx_temp=`$acx_FC -V 2>&1 | sed -n 1,15p` -dnl fix problems from NAG compiler - AS_CASE(["$acx_temp"], - [*NAG\ Fortran\ Compiler\ Release*], - [nag_filter_flag_var([acx_FCFLAGS]) - nag_filter_flag_var([acx_LDFLAGS])]) -dnl fix conflicting use of -module by libtool and ifort - AC_LANG_CASE([Fortran], - [AS_CASE(["x${FC_MODOUT}x"], - [x'-module 'x|x'-mod 'x], - [FC_MODOUT="-Xcompiler ${FC_MODOUT}-Xcompiler "])])dnl - AS_VAR_POPDEF([acx_FC])dnl - AS_VAR_POPDEF([acx_FCFLAGS])dnl - AS_VAR_POPDEF([acx_LDFLAGS])]) -dnl -dnl ACX_USE_LIBTOOL_CONFIGURATION([ARGS-TO-LT_INIT]) -dnl Switch compiler to libtool wrapper and prevent occurrence of -dnl problematic setups -AC_DEFUN([ACX_USE_LIBTOOL_CONFIGURATION], - [dnl before switching on libtool, identify compilers that prevent us from - dnl certain build configurations - ACX_LT_PROBLEMS - m4_if(m4_cmp(m4_version_compare(LT_PACKAGE_VERSION,[2.4.6]),1),-1, - [m4_pushdef([acx_lt_sed],[sed])], - [m4_pushdef([acx_lt_sed],[SED])]) -dnl add some monkey patching for older libtool versions that don't handle -dnl newer PGI or NAG configurations particularly well - m4_if(m4_cmp(m4_version_compare(LT_PACKAGE_VERSION,[2.4.7]),1),-1, - [m4_pushdef([_LT_COMPILER_PIC], - m4_bpatsubst(m4_dquote( - m4_bpatsubst(m4_dquote( - m4_bpatsubst(m4_dquote(m4_defn([_LT_COMPILER_PIC])),[;; - \*Portland\\ ],[;; @%:@( - *NAG\\ Fortran\\ Compiler*) - _LT_TAGVAR(lt_prog_compiler_wl, $][1)='-Wl,-Wl,,' - _LT_TAGVAR(lt_prog_compiler_pic, $][1)='-PIC' - _LT_TAGVAR(lt_prog_compiler_static, $][1)='-Bstatic' - ;; - *PGI\\ Compilers\\ and\\ Tools*|*NVIDIA\\ Compilers\\ and\\ Tools*|*Port][land\\ ])),acx_lt_sed[ 5q`],acx_lt_sed[ -n 1,15p`])),[pgcpp\*],[pgcpp* | pgc++* ]))dnl - m4_pushdef([_LT_LANG_CXX_CONFIG], - m4_bpatsubst(m4_dquote( - m4_bpatsubst(m4_dquote( - m4_bpatsubst(m4_dquote(m4_defn([_LT_LANG_CXX_CONFIG])), - acx_lt_sed[ 5q`],acx_lt_sed[ -n 1,15p`])), - [\$CC\( \$pic_flag\)? -shared -nostdlib \$predep_objects \$libobjs \$deplibs \$postdep_objects ], - [$CC\1 -shared $libobjs $deplibs ])), - [pgcpp\*],[pgcpp* | pgc++* ]))dnl - m4_pushdef([_LT_LINKER_SHLIBS],m4_bpatsubst(m4_dquote( - m4_bpatsubst(m4_dquote(m4_bpatsubst(m4_dquote( - m4_bpatsubst(m4_dquote(m4_bpatsubst(m4_dquote(m4_defn( - [_LT_LINKER_SHLIBS])),[tmp_sharedflag='-shared'], - [tmp_sharedflag='-shared' - tmp_compiler_flags='$compiler_flags'])), - [\$CC '"\$tmp_sharedflag""\$tmp_addflag"' \$libobjs \$deplibs \$compiler_flags \$wl-soname], - [$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs '"$tmp_compiler_flags"' $wl-soname])), - [ tmp_sharedflag='-Wl,-shared'], - [ tmp_sharedflag='-Wl,-shared' - tmp_compiler_flags='`echo " \$compiler_flags " | sed -E -e '"'"': start'"'"' -e '"'"'s/ -W@<:@cl@:>@,-no-pie@<:@@<:@:blank:@:>@@:>@/ /g;t start'"'"' -e '"'"'s/^ //;s/ $//'"'"'`'])), - [\*Sun\\ F\*\(.\)[ ]*# Sun Fortran 8\.3 -[ ]*tmp_sharedflag='-G' ;; -],[\& *NAG\\ Fortran\\ Compiler*\1 - tmp_sharedflag='-Wl,-shared' - tmp_compiler_flags='`echo " \$compiler_flags " | sed -E -e '"'"': start'"'"' -e '"'"'s/ -W@<:@cl@:>@,-no-pie@<:@@<:@:blank:@:>@@:>@/ /g;t start'"'"' -e '"'"'s/^ //;s/ $//'"'"'`' ;; -])),acx_lt_sed[ 5q`],acx_lt_sed[ -n 1,15p`]))dnl - m4_pushdef([_LT_SYS_HIDDEN_LIBDEPS],[AS_UNSET([output_verbose_link_cmd])] - m4_bpatsubst(m4_dquote(m4_bpatsubst(m4_dquote( - m4_defn([_LT_SYS_HIDDEN_LIBDEPS])),[test x-\([LR]\) = "\$p"], - [test x-\1 = x"$p"])), - [test x-R = x"\$p"],[\& || - test x-l = x"$p"]))])dnl - m4_foreach([acx_ltconfig],[[[_LT_LANG_C_CONFIG]],[[_LT_LANG_F77_CONFIG]],[[_LT_LANG_FC_CONFIG]]], - [m4_pushdef(acx_ltconfig,m4_bpatsubst(m4_dquote( - m4_bpatsubst(m4_dquote(m4_defn(acx_ltconfig)),[_LT_TAG_COMPILER -], - [\& _LT_TAGDECL([with_nagfor], [acx_is_nagfor], [0], [Is the compiler the NAG Fortran compiler?])])), - [_LT_CONFIG], - [AC_MSG_CHECKING([whether this is the NAG Fortran compiler]) - $CC -V 2>&1 | grep '^NAG Fortran Compiler Release' >/dev/null 2>&1 - _lt_result=$? - AS_IF([test $_lt_result -eq 0],[_lt_result=yes],[_lt_result=no]) - AC_MSG_RESULT([$_lt_result]) - _LT_TAGVAR([acx_is_nagfor], $][1)=$_lt_result - \&]))])dnl - LT_INIT([$1]) - m4_popdef([_LT_LANG_F77_CONFIG])dnl - m4_popdef([_LT_LANG_FC_CONFIG])dnl - m4_popdef([_LT_LANG_C_CONFIG])dnl - m4_if(m4_cmp(m4_version_compare(LT_PACKAGE_VERSION,[2.4.6]),1),-1, - [m4_popdef([_LT_COMPILER_PIC])m4_popdef([_LT_LINKER_SHLIBS])dnl - m4_popdef([_LT_SYS_HIDDEN_LIBDEPS])])dnl - dnl _KPSE_USE_LIBTOOL ensures libtool is also used for configure-time tests, - dnl which deduces dependent libraries automatically - _KPSE_USE_LIBTOOL -dnl substitute -shared-intel if present - AS_FOR([acx_flag_var],[acx_flag_var_],[CFLAGS CXXFLAGS FCFLAGS F77FLAGS LDFLAGS FCLDFLAGS], - [AS_IF([eval test x\$\{acx_flag_var+set\} = xset], - [eval acx_temp="\" \$$acx_flag_var_ \"" - AS_CASE([$acx_temp],[*\ -shared-intel\ *|*\ -static-intel\ *], - [acx_temp=`echo "$acx_temp" | sed -E -e 's/ (-shared-intel|-static-intel) / -Xcompiler \1 -XCClinker \1 /g'`]) - AS_CASE([$acx_temp],[*\ -Qlocation,*\ *], - [acx_temp=`echo "$acx_temp" | sed -E -e 's/ (-Qlocation,@<:@^, @:>@*,@<:@^@<:@:blank:@:>@@:>@*)/ -Xcompiler \1 -XCClinker \1/g'`]) -dnl take care of ifort/icc/icpc two-part options - eval acx_flag_var=\"`echo "$acx_temp" | sed -E -e 's/ -(align|allow|assume|ccdefault|check|convert|debug|debug-parameters|diag-type|diag-enable|diag-disable|double-size|dynamic-linker|dyncom|export-dir|extend-source|fp-model|fpscomp|gen-interfaces|heap-arrays|imacros|integer-size|iprefix|iquote|iwithprefixbefore|module|names|opt-report|opt-streaming-stores|pch-dir|pch-use|prof-dir|prof-file|real-size|reentrancy|stand|tcollect-filter|tune|warn|watch) (@<:@^-@:>@@<:@^@<:@:blank:@:>@@:>@*)/ -Xcompiler -\1 -Xcompiler \2/g' -e 's/^ //;s/ $//'`\"])]) -dnl NAG Fortran injects several object files into shared objects which -dnl are only needed and helpful when calling the Fortran code from -dnl C/C++ without explicit initialization of the NAG Fortran -dnl RTL. Since these libraries are meant to be linked into Fortran -dnl programs compiled with the same compiler or a newer version, that -dnl only causes overhead and potential problems. - m4_pushdef([fix_nag_shared_link], - [AC_LANG_CASE([Fortran],[m4_pushdef([acx_flags_var],[FCFLAGS])m4_pushdef([acx_lt_tag],[FC])], - [Fortran 77],[m4_pushdef([acx_flags_var],[FFLAGS])m4_pushdef([acx_lt_tag],[F77])], - [C],[m4_pushdef([acx_flags_var],[CFLAGS])m4_pushdef([acx_lt_tag],[])])dnl - AS_IF([test x"$_LT_TAGVAR([acx_is_nagfor],m4_defn([acx_lt_tag]))" = xyes], - [AS_CASE([" $acx_flags_var $LDFLAGS "], - [*\ -B*\ *], - [extrasub="${extrasub+$extrasub$as_nl}/^\# skip internal symbols for stubs created by xlf/i \\\\${as_nl}\# ignore symbols nagfor injects into our shared objects\\\\${as_nl}/"'^${exp_sym_prefix}'"${acx_symprfx}"'(__NAGf90_|f90_)/b' -], - [acx_flags_var="$acx_flags_var -XCClinker -Wl,-B${ac_abs_confdir}/util/nagdynlib"])])])dnl -dnl - m4_foreach([lng],[[C],[Fortran],[Fortran 77],[C++]], - [m4_define([lCC],[_AC_LANG_DISPATCH([_AC_CC],m4_defn([lng]))])dnl - AC_PROVIDE_IFELSE([AC_PROG_]_AC_LANG_DISPATCH([_AC_CC],m4_defn([lng])), - [AS_IF([test -n "$]m4_defn([lCC])[" -a X"$lCC" != Xno], - [AC_LANG_PUSH(m4_defn([lng])) - m4_if(m4_if(m4_defn([lng]),[Fortran],[1],m4_defn([lng]),[Fortran 77],[1],[2]),[1], - [_ACX_LT_FORT_FLAGS_MANGLE]) - _KPSE_CHECK_LIBTOOL - fix_nag_shared_link - AC_LANG_POP(m4_defn([lng]))]) -])]) - dnl adjust libobjs handling to deal with $ac_objext being .lo - m4_pushdef([_AC_LIBOBJS_NORMALIZE],m4_bpatsubst(m4_dquote(m4_defn([_AC_LIBOBJS_NORMALIZE])), - [s/\\\.obj],[s/.lo\$//;\&]))dnl - m4_popdef([fix_nag_shared_link])])dnl -dnl -dnl Local Variables: -dnl mode: autoconf -dnl license-project-url: "https://swprojects.dkrz.de/redmine/projects/scales-ppm" -dnl license-default: "bsd" -dnl End: diff --git a/m4/asx_common.m4 b/m4/asx_common.m4 deleted file mode 100644 index b721c13d48b7bce913c05d539a4321b861bd7cef..0000000000000000000000000000000000000000 --- a/m4/asx_common.m4 +++ /dev/null @@ -1,137 +0,0 @@ -# Copyright (c) 2018-2024, MPI-M -# -# Author: Sergey Kosukhin <sergey.kosukhin@mpimet.mpg.de> -# -# SPDX-License-Identifier: BSD-3-Clause -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are met: -# -# 1. Redistributions of source code must retain the above copyright notice, -# this list of conditions and the following disclaimer. -# 2. Redistributions in binary form must reproduce the above copyright -# notice, this list of conditions and the following disclaimer in the -# documentation and/or other materials provided with the distribution. -# 3. Neither the name of the copyright holder nor the names of its -# contributors may be used to endorse or promote products derived from -# this software without specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -# POSSIBILITY OF SUCH DAMAGE. - -# ASX_TR_ARG(EXPRESSION) -# ----------------------------------------------------------------------------- -# Transforms EXPRESSION into shell code that generates a name for a command -# line argument. The result is literal when possible at M4 time, but must be -# used with eval if EXPRESSION causes shell indirections. -# -AC_DEFUN([ASX_TR_ARG], - [AS_LITERAL_IF([$1], - [m4_translit(AS_TR_SH([$1]), [_A-Z], [-a-z])], - [m4_bpatsubst(AS_TR_SH([$1]), [`$], - [ | tr '_[]m4_cr_LETTERS[]' '-[]m4_cr_letters[]'`])])]) - -# ASX_VAR_APPEND_UNIQ(VARIABLE, -# [TEXT], -# [SEPARATOR]) -# ----------------------------------------------------------------------------- -# Emits shell code to append the shell expansion of TEXT to the end of the -# current contents of the polymorphic shell variable VARIABLE without -# duplicating substrings. The TEXT can optionally be prepended with the shell -# expansion of SEPARATOR. The SEPARATOR is not appended if VARIABLE is empty or -# unset. Both TEXT and SEPARATOR need to be quoted properly to avoid field -# splitting and file name expansion. -# -AC_DEFUN([ASX_VAR_APPEND_UNIQ], - [AS_CASE([$3[]AS_VAR_GET([$1])$3], - [*m4_ifnblank([$3], [$3$2$3], [$2])*], [], - [m4_ifnblank([$3],[$3$3],[''])], [AS_VAR_APPEND([$1], [$2])], - [AS_VAR_APPEND([$1], [$3]); AS_VAR_APPEND([$1], [$2])])]) - -# ASX_PREPEND_LDFLAGS([LDFLAGS], -# [LIBS], -# ...) -# ----------------------------------------------------------------------------- -# Prepends the first argument LDFLAGS to each of the rest of the arguments -# LIBS and expands into a space separated list of the resulting strings. Each -# element of the resulting list is shell-quoted with double quotation marks. -# -AC_DEFUN([ASX_PREPEND_LDFLAGS], [m4_foreach([arg], m4_cdr($@), [ "$1 arg"])]) - -# ASX_EXTRACT_ARGS(VARIABLE, -# ARGUMENTS, -# FLAG-PATTERN) -# ----------------------------------------------------------------------------- -# Emits shell code to extract values of arguments that match sed-like pattern -# FLAG-PATTERN from the string ARGUMENTS and set the result to the shell -# variable VARIABLE. Both ARGUMENTS and FLAG-PATTERN must be shell-quoted. -# -# For example, the following extract library paths from the linking command: -# ASX_EXTRACT_ARGS([FC_LIB_PATHS], -# ["$FCFLAGS $LDFLAGS $LIBS"], -# ['-L@<:@ @:>@*']) -# -AC_DEFUN([ASX_EXTRACT_ARGS], - [AS_VAR_SET([$1]) - asx_extract_args_args=$2 - asx_extract_args_args=`AS_ECHO(["$asx_extract_args_args"]) | dnl -sed 's%'$3'%_ASX_EXTRACT_ARGS_MARKER_%g'` - for asx_extract_args_arg in $asx_extract_args_args; do - AS_CASE([$asx_extract_args_arg], - [_ASX_EXTRACT_ARGS_MARKER_*], - [asx_extract_args_value=`AS_ECHO(["$asx_extract_args_arg"]) | dnl -sed 's%^_ASX_EXTRACT_ARGS_MARKER_%%'` - AS_VAR_APPEND([$1], [" $asx_extract_args_value"])]) - done]) - -# ASX_ESCAPE_SINGLE_QUOTE(VARIABLE) -# ----------------------------------------------------------------------------- -# Emits shell code that replaces any occurrence of the single-quote (') in the -# shell variable VARIABLE with the following string: '\'', which is required -# when contents of the VARIABLE must be passed literally to a subprocess, e.g. -# eval \$SHELL -c "'$VARIABLE'". -# -AC_DEFUN([ASX_ESCAPE_SINGLE_QUOTE], - [AS_CASE([AS_VAR_GET([$1])], [*\'*], - [AS_VAR_SET([$1], [`AS_ECHO(["AS_VAR_GET([$1])"]) | dnl -sed "s/'/'\\\\\\\\''/g"`])])]) - -# ASX_SRCDIRS(BUILD-DIR-NAME) -# ----------------------------------------------------------------------------- -# Receives a normalized (i.e. does not contain '/./', '..', etc.) path -# BUILD-DIR-NAME to a directory relative to the top build directory and emits -# shell code that sets the following variables: -# 1) ac_builddir - path to BUILD-DIR-NAME relative to BUILD-DIR-NAME -# (i.e. always equals to '.'); -# 2) ac_abs_builddir - absolute path to BUILD-DIR-NAME; -# 3) ac_top_builddir_sub - path to the top build directory relative to -# BUILD-DIR-NAME (i.e. equals to '.' if -# BUILD-DIR-NAME is the top build directory); -# 4) ac_top_build_prefix - empty if ac_top_builddir_sub equals to '.' and -# path to the top build directory relative to -# BUILD-DIR-NAME with a trailing slash, otherwise; -# 5) ac_abs_top_builddir - absolute path to the top build directory; -# 6) ac_srcdir - path to <top-srcdir>/BUILD-DIR-NAME relative to -# BUILD-DIR-NAME where <top-srcdir> is the top source -# directory (i.e. equals to the path from BUILD-DIR-NAME to -# its respective source directory); -# 7) ac_abs_srcdir - absolute path to <top-srcdir>/BUILD-DIR-NAME where -# <top-srcdir> is the top source directory (i.e. equals -# to the absolute path to the source directory that -# corresponds to BUILD-DIR-NAME); -# 8) ac_top_srcdir - path to the top source directory relative to -# BUILD-DIR-NAME; -# 9) ac_abs_top_srcdir - absolute path to the top source directory. -# -AC_DEFUN([ASX_SRCDIRS], - [AC_REQUIRE_SHELL_FN([acx_subdir_srcdirs_fn], [], [_AC_SRCDIRS(["$[]1"])])dnl - acx_subdir_srcdirs_fn $1]) diff --git a/m4/ax_prog_doxygen.m4 b/m4/ax_prog_doxygen.m4 deleted file mode 100644 index da6d2822a07cedab2420d10fd4d59034a0626c0c..0000000000000000000000000000000000000000 --- a/m4/ax_prog_doxygen.m4 +++ /dev/null @@ -1,587 +0,0 @@ -# =========================================================================== -# https://www.gnu.org/software/autoconf-archive/ax_prog_doxygen.html -# =========================================================================== -# -# SYNOPSIS -# -# DX_INIT_DOXYGEN(PROJECT-NAME, [DOXYFILE-PATH], [OUTPUT-DIR], ...) -# DX_DOXYGEN_FEATURE(ON|OFF) -# DX_DOT_FEATURE(ON|OFF) -# DX_HTML_FEATURE(ON|OFF) -# DX_CHM_FEATURE(ON|OFF) -# DX_CHI_FEATURE(ON|OFF) -# DX_MAN_FEATURE(ON|OFF) -# DX_RTF_FEATURE(ON|OFF) -# DX_XML_FEATURE(ON|OFF) -# DX_PDF_FEATURE(ON|OFF) -# DX_PS_FEATURE(ON|OFF) -# -# DESCRIPTION -# -# The DX_*_FEATURE macros control the default setting for the given -# Doxygen feature. Supported features are 'DOXYGEN' itself, 'DOT' for -# generating graphics, 'HTML' for plain HTML, 'CHM' for compressed HTML -# help (for MS users), 'CHI' for generating a separate .chi file by the -# .chm file, and 'MAN', 'RTF', 'XML', 'PDF' and 'PS' for the appropriate -# output formats. The environment variable DOXYGEN_PAPER_SIZE may be -# specified to override the default 'a4wide' paper size. -# -# By default, HTML, PDF and PS documentation is generated as this seems to -# be the most popular and portable combination. MAN pages created by -# Doxygen are usually problematic, though by picking an appropriate subset -# and doing some massaging they might be better than nothing. CHM and RTF -# are specific for MS (note that you can't generate both HTML and CHM at -# the same time). The XML is rather useless unless you apply specialized -# post-processing to it. -# -# The macros mainly control the default state of the feature. The use can -# override the default by specifying --enable or --disable. The macros -# ensure that contradictory flags are not given (e.g., -# --enable-doxygen-html and --enable-doxygen-chm, -# --enable-doxygen-anything with --disable-doxygen, etc.) Finally, each -# feature will be automatically disabled (with a warning) if the required -# programs are missing. -# -# Once all the feature defaults have been specified, call DX_INIT_DOXYGEN -# with the following parameters: a one-word name for the project for use -# as a filename base etc., an optional configuration file name (the -# default is '$(srcdir)/Doxyfile', the same as Doxygen's default), and an -# optional output directory name (the default is 'doxygen-doc'). To run -# doxygen multiple times for different configuration files and output -# directories provide more parameters: the second, forth, sixth, etc -# parameter are configuration file names and the third, fifth, seventh, -# etc parameter are output directories. No checking is done to catch -# duplicates. -# -# Automake Support -# -# The DX_RULES substitution can be used to add all needed rules to the -# Makefile. Note that this is a substitution without being a variable: -# only the @DX_RULES@ syntax will work. -# -# The provided targets are: -# -# doxygen-doc: Generate all doxygen documentation. -# -# doxygen-run: Run doxygen, which will generate some of the -# documentation (HTML, CHM, CHI, MAN, RTF, XML) -# but will not do the post processing required -# for the rest of it (PS, PDF). -# -# doxygen-ps: Generate doxygen PostScript documentation. -# -# doxygen-pdf: Generate doxygen PDF documentation. -# -# Note that by default these are not integrated into the automake targets. -# If doxygen is used to generate man pages, you can achieve this -# integration by setting man3_MANS to the list of man pages generated and -# then adding the dependency: -# -# $(man3_MANS): doxygen-doc -# -# This will cause make to run doxygen and generate all the documentation. -# -# The following variable is intended for use in Makefile.am: -# -# DX_CLEANFILES = everything to clean. -# -# Then add this variable to MOSTLYCLEANFILES. -# -# LICENSE -# SPDX-License-Identifier: FSFAP -# -# Copyright (c) 2009 Oren Ben-Kiki <oren@ben-kiki.org> -# Copyright (c) 2015 Olaf Mandel <olaf@mandel.name> -# -# Copying and distribution of this file, with or without modification, are -# permitted in any medium without royalty provided the copyright notice -# and this notice are preserved. This file is offered as-is, without any -# warranty. - -#serial 24 - -## ----------## -## Defaults. ## -## ----------## - -DX_ENV="" -AC_DEFUN([DX_FEATURE_doc], ON) -AC_DEFUN([DX_FEATURE_dot], OFF) -AC_DEFUN([DX_FEATURE_man], OFF) -AC_DEFUN([DX_FEATURE_html], ON) -AC_DEFUN([DX_FEATURE_chm], OFF) -AC_DEFUN([DX_FEATURE_chi], OFF) -AC_DEFUN([DX_FEATURE_rtf], OFF) -AC_DEFUN([DX_FEATURE_xml], OFF) -AC_DEFUN([DX_FEATURE_pdf], ON) -AC_DEFUN([DX_FEATURE_ps], ON) - -## --------------- ## -## Private macros. ## -## --------------- ## - -# DX_ENV_APPEND(VARIABLE, VALUE) -# ------------------------------ -# Append VARIABLE="VALUE" to DX_ENV for invoking doxygen and add it -# as a substitution (but not a Makefile variable). The substitution -# is skipped if the variable name is VERSION. -AC_DEFUN([DX_ENV_APPEND], -[AC_SUBST([DX_ENV], ["$DX_ENV $1='$2'"])dnl -m4_if([$1], [VERSION], [], [AC_SUBST([$1], [$2])dnl -AM_SUBST_NOTMAKE([$1])])dnl -]) - -# DX_DIRNAME_EXPR -# --------------- -# Expand into a shell expression prints the directory part of a path. -AC_DEFUN([DX_DIRNAME_EXPR], - [[expr ".$1" : '\(\.\)[^/]*$' \| "x$1" : 'x\(.*\)/[^/]*$']]) - -# DX_IF_FEATURE(FEATURE, IF-ON, IF-OFF) -# ------------------------------------- -# Expands according to the M4 (static) status of the feature. -AC_DEFUN([DX_IF_FEATURE], [ifelse(DX_FEATURE_$1, ON, [$2], [$3])]) - -# DX_REQUIRE_PROG(VARIABLE, PROGRAM) -# ---------------------------------- -# Require the specified program to be found for the DX_CURRENT_FEATURE to work. -AC_DEFUN([DX_REQUIRE_PROG], [ -AC_PATH_TOOL([$1], [$2]) -if test "$DX_FLAG_[]DX_CURRENT_FEATURE$$1" = 1; then - AC_MSG_WARN([$2 not found - will not DX_CURRENT_DESCRIPTION]) - AC_SUBST(DX_FLAG_[]DX_CURRENT_FEATURE, 0) -fi -]) - -# DX_TEST_FEATURE(FEATURE) -# ------------------------ -# Expand to a shell expression testing whether the feature is active. -AC_DEFUN([DX_TEST_FEATURE], [test "$DX_FLAG_$1" = 1]) - -# DX_CHECK_DEPEND(REQUIRED_FEATURE, REQUIRED_STATE) -# ------------------------------------------------- -# Verify that a required features has the right state before trying to turn on -# the DX_CURRENT_FEATURE. -AC_DEFUN([DX_CHECK_DEPEND], [ -test "$DX_FLAG_$1" = "$2" \ -|| AC_MSG_ERROR([doxygen-DX_CURRENT_FEATURE ifelse([$2], 1, - requires, contradicts) doxygen-$1]) -]) - -# DX_CLEAR_DEPEND(FEATURE, REQUIRED_FEATURE, REQUIRED_STATE) -# ---------------------------------------------------------- -# Turn off the DX_CURRENT_FEATURE if the required feature is off. -AC_DEFUN([DX_CLEAR_DEPEND], [ -test "$DX_FLAG_$1" = "$2" || AC_SUBST(DX_FLAG_[]DX_CURRENT_FEATURE, 0) -]) - -# DX_FEATURE_ARG(FEATURE, DESCRIPTION, -# CHECK_DEPEND, CLEAR_DEPEND, -# REQUIRE, DO-IF-ON, DO-IF-OFF) -# -------------------------------------------- -# Parse the command-line option controlling a feature. CHECK_DEPEND is called -# if the user explicitly turns the feature on (and invokes DX_CHECK_DEPEND), -# otherwise CLEAR_DEPEND is called to turn off the default state if a required -# feature is disabled (using DX_CLEAR_DEPEND). REQUIRE performs additional -# requirement tests (DX_REQUIRE_PROG). Finally, an automake flag is set and -# DO-IF-ON or DO-IF-OFF are called according to the final state of the feature. -AC_DEFUN([DX_ARG_ABLE], [ - AC_DEFUN([DX_CURRENT_FEATURE], [$1]) - AC_DEFUN([DX_CURRENT_DESCRIPTION], [$2]) - AC_ARG_ENABLE(doxygen-$1, - [AS_HELP_STRING(DX_IF_FEATURE([$1], [--disable-doxygen-$1], - [--enable-doxygen-$1]), - DX_IF_FEATURE([$1], [don't $2], [$2]))], - [ -case "$enableval" in -#( -y|Y|yes|Yes|YES) - AC_SUBST([DX_FLAG_$1], 1) - $3 -;; #( -n|N|no|No|NO) - AC_SUBST([DX_FLAG_$1], 0) -;; #( -*) - AC_MSG_ERROR([invalid value '$enableval' given to doxygen-$1]) -;; -esac -], [ -AC_SUBST([DX_FLAG_$1], [DX_IF_FEATURE([$1], 1, 0)]) -$4 -]) -if DX_TEST_FEATURE([$1]); then - $5 - : -fi -if DX_TEST_FEATURE([$1]); then - $6 - : -else - $7 - : -fi -]) - -## -------------- ## -## Public macros. ## -## -------------- ## - -# DX_XXX_FEATURE(DEFAULT_STATE) -# ----------------------------- -AC_DEFUN([DX_DOXYGEN_FEATURE], [AC_DEFUN([DX_FEATURE_doc], [$1])]) -AC_DEFUN([DX_DOT_FEATURE], [AC_DEFUN([DX_FEATURE_dot], [$1])]) -AC_DEFUN([DX_MAN_FEATURE], [AC_DEFUN([DX_FEATURE_man], [$1])]) -AC_DEFUN([DX_HTML_FEATURE], [AC_DEFUN([DX_FEATURE_html], [$1])]) -AC_DEFUN([DX_CHM_FEATURE], [AC_DEFUN([DX_FEATURE_chm], [$1])]) -AC_DEFUN([DX_CHI_FEATURE], [AC_DEFUN([DX_FEATURE_chi], [$1])]) -AC_DEFUN([DX_RTF_FEATURE], [AC_DEFUN([DX_FEATURE_rtf], [$1])]) -AC_DEFUN([DX_XML_FEATURE], [AC_DEFUN([DX_FEATURE_xml], [$1])]) -AC_DEFUN([DX_XML_FEATURE], [AC_DEFUN([DX_FEATURE_xml], [$1])]) -AC_DEFUN([DX_PDF_FEATURE], [AC_DEFUN([DX_FEATURE_pdf], [$1])]) -AC_DEFUN([DX_PS_FEATURE], [AC_DEFUN([DX_FEATURE_ps], [$1])]) - -# DX_INIT_DOXYGEN(PROJECT, [CONFIG-FILE], [OUTPUT-DOC-DIR], ...) -# -------------------------------------------------------------- -# PROJECT also serves as the base name for the documentation files. -# The default CONFIG-FILE is "$(srcdir)/Doxyfile" and OUTPUT-DOC-DIR is -# "doxygen-doc". -# More arguments are interpreted as interleaved CONFIG-FILE and -# OUTPUT-DOC-DIR values. -AC_DEFUN([DX_INIT_DOXYGEN], [ - -# Files: -AC_SUBST([DX_PROJECT], [$1]) -AC_SUBST([DX_CONFIG], ['ifelse([$2], [], [$(srcdir)/Doxyfile], [$2])']) -AC_SUBST([DX_DOCDIR], ['ifelse([$3], [], [doxygen-doc], [$3])']) -m4_if(m4_eval(3 < m4_count($@)), 1, [m4_for([DX_i], 4, m4_count($@), 2, - [AC_SUBST([DX_CONFIG]m4_eval(DX_i[/2]), - 'm4_default_nblank_quoted(m4_argn(DX_i, $@), - [$(srcdir)/Doxyfile])')])])dnl -m4_if(m4_eval(3 < m4_count($@)), 1, [m4_for([DX_i], 5, m4_count($@,), 2, - [AC_SUBST([DX_DOCDIR]m4_eval([(]DX_i[-1)/2]), - 'm4_default_nblank_quoted(m4_argn(DX_i, $@), - [doxygen-doc])')])])dnl -m4_define([DX_loop], m4_dquote(m4_if(m4_eval(3 < m4_count($@)), 1, - [m4_for([DX_i], 4, m4_count($@), 2, [, m4_eval(DX_i[/2])])], - [])))dnl - -# Environment variables used inside doxygen.cfg: -DX_ENV_APPEND(SRCDIR, $srcdir) -DX_ENV_APPEND(PROJECT, $DX_PROJECT) -DX_ENV_APPEND(VERSION, $PACKAGE_VERSION) - -# Doxygen itself: -DX_ARG_ABLE(doc, [generate any doxygen documentation], - [], - [], - [DX_REQUIRE_PROG([DX_DOXYGEN], doxygen) - DX_REQUIRE_PROG([DX_PERL], perl)], - [DX_ENV_APPEND(PERL_PATH, $DX_PERL)]) - -# Dot for graphics: -DX_ARG_ABLE(dot, [generate graphics for doxygen documentation], - [DX_CHECK_DEPEND(doc, 1)], - [DX_CLEAR_DEPEND(doc, 1)], - [DX_REQUIRE_PROG([DX_DOT], dot)], - [DX_ENV_APPEND(HAVE_DOT, YES) - DX_ENV_APPEND(DOT_PATH, [`DX_DIRNAME_EXPR($DX_DOT)`])], - [DX_ENV_APPEND(HAVE_DOT, NO)]) - -# Man pages generation: -DX_ARG_ABLE(man, [generate doxygen manual pages], - [DX_CHECK_DEPEND(doc, 1)], - [DX_CLEAR_DEPEND(doc, 1)], - [], - [DX_ENV_APPEND(GENERATE_MAN, YES)], - [DX_ENV_APPEND(GENERATE_MAN, NO)]) - -# RTF file generation: -DX_ARG_ABLE(rtf, [generate doxygen RTF documentation], - [DX_CHECK_DEPEND(doc, 1)], - [DX_CLEAR_DEPEND(doc, 1)], - [], - [DX_ENV_APPEND(GENERATE_RTF, YES)], - [DX_ENV_APPEND(GENERATE_RTF, NO)]) - -# XML file generation: -DX_ARG_ABLE(xml, [generate doxygen XML documentation], - [DX_CHECK_DEPEND(doc, 1)], - [DX_CLEAR_DEPEND(doc, 1)], - [], - [DX_ENV_APPEND(GENERATE_XML, YES)], - [DX_ENV_APPEND(GENERATE_XML, NO)]) - -# (Compressed) HTML help generation: -DX_ARG_ABLE(chm, [generate doxygen compressed HTML help documentation], - [DX_CHECK_DEPEND(doc, 1)], - [DX_CLEAR_DEPEND(doc, 1)], - [DX_REQUIRE_PROG([DX_HHC], hhc)], - [DX_ENV_APPEND(HHC_PATH, $DX_HHC) - DX_ENV_APPEND(GENERATE_HTML, YES) - DX_ENV_APPEND(GENERATE_HTMLHELP, YES)], - [DX_ENV_APPEND(GENERATE_HTMLHELP, NO)]) - -# Separate CHI file generation. -DX_ARG_ABLE(chi, [generate doxygen separate compressed HTML help index file], - [DX_CHECK_DEPEND(chm, 1)], - [DX_CLEAR_DEPEND(chm, 1)], - [], - [DX_ENV_APPEND(GENERATE_CHI, YES)], - [DX_ENV_APPEND(GENERATE_CHI, NO)]) - -# Plain HTML pages generation: -DX_ARG_ABLE(html, [generate doxygen plain HTML documentation], - [DX_CHECK_DEPEND(doc, 1) DX_CHECK_DEPEND(chm, 0)], - [DX_CLEAR_DEPEND(doc, 1) DX_CLEAR_DEPEND(chm, 0)], - [], - [DX_ENV_APPEND(GENERATE_HTML, YES)], - [DX_TEST_FEATURE(chm) || DX_ENV_APPEND(GENERATE_HTML, NO)]) - -# PostScript file generation: -DX_ARG_ABLE(ps, [generate doxygen PostScript documentation], - [DX_CHECK_DEPEND(doc, 1)], - [DX_CLEAR_DEPEND(doc, 1)], - [DX_REQUIRE_PROG([DX_LATEX], latex) - DX_REQUIRE_PROG([DX_MAKEINDEX], makeindex) - DX_REQUIRE_PROG([DX_DVIPS], dvips) - DX_REQUIRE_PROG([DX_EGREP], egrep)]) - -# PDF file generation: -DX_ARG_ABLE(pdf, [generate doxygen PDF documentation], - [DX_CHECK_DEPEND(doc, 1)], - [DX_CLEAR_DEPEND(doc, 1)], - [DX_REQUIRE_PROG([DX_PDFLATEX], pdflatex) - DX_REQUIRE_PROG([DX_MAKEINDEX], makeindex) - DX_REQUIRE_PROG([DX_EGREP], egrep)]) - -# LaTeX generation for PS and/or PDF: -if DX_TEST_FEATURE(ps) || DX_TEST_FEATURE(pdf); then - DX_ENV_APPEND(GENERATE_LATEX, YES) -else - DX_ENV_APPEND(GENERATE_LATEX, NO) -fi - -# Paper size for PS and/or PDF: -AC_ARG_VAR(DOXYGEN_PAPER_SIZE, - [a4wide (default), a4, letter, legal or executive]) -case "$DOXYGEN_PAPER_SIZE" in -#( -"") - AC_SUBST(DOXYGEN_PAPER_SIZE, "") -;; #( -a4wide|a4|letter|legal|executive) - DX_ENV_APPEND(PAPER_SIZE, $DOXYGEN_PAPER_SIZE) -;; #( -*) - AC_MSG_ERROR([unknown DOXYGEN_PAPER_SIZE='$DOXYGEN_PAPER_SIZE']) -;; -esac - -# Rules: -AS_IF([[test $DX_FLAG_html -eq 1]], -[[DX_SNIPPET_html="## ------------------------------- ## -## Rules specific for HTML output. ## -## ------------------------------- ## - -DX_CLEAN_HTML = \$(DX_DOCDIR)/html]dnl -m4_foreach([DX_i], [m4_shift(DX_loop)], [[\\ - \$(DX_DOCDIR]DX_i[)/html]])[ - -"]], -[[DX_SNIPPET_html=""]]) -AS_IF([[test $DX_FLAG_chi -eq 1]], -[[DX_SNIPPET_chi=" -DX_CLEAN_CHI = \$(DX_DOCDIR)/\$(PACKAGE).chi]dnl -m4_foreach([DX_i], [m4_shift(DX_loop)], [[\\ - \$(DX_DOCDIR]DX_i[)/\$(PACKAGE).chi]])["]], -[[DX_SNIPPET_chi=""]]) -AS_IF([[test $DX_FLAG_chm -eq 1]], -[[DX_SNIPPET_chm="## ------------------------------ ## -## Rules specific for CHM output. ## -## ------------------------------ ## - -DX_CLEAN_CHM = \$(DX_DOCDIR)/chm]dnl -m4_foreach([DX_i], [m4_shift(DX_loop)], [[\\ - \$(DX_DOCDIR]DX_i[)/chm]])[\ -${DX_SNIPPET_chi} - -"]], -[[DX_SNIPPET_chm=""]]) -AS_IF([[test $DX_FLAG_man -eq 1]], -[[DX_SNIPPET_man="## ------------------------------ ## -## Rules specific for MAN output. ## -## ------------------------------ ## - -DX_CLEAN_MAN = \$(DX_DOCDIR)/man]dnl -m4_foreach([DX_i], [m4_shift(DX_loop)], [[\\ - \$(DX_DOCDIR]DX_i[)/man]])[ - -"]], -[[DX_SNIPPET_man=""]]) -AS_IF([[test $DX_FLAG_rtf -eq 1]], -[[DX_SNIPPET_rtf="## ------------------------------ ## -## Rules specific for RTF output. ## -## ------------------------------ ## - -DX_CLEAN_RTF = \$(DX_DOCDIR)/rtf]dnl -m4_foreach([DX_i], [m4_shift(DX_loop)], [[\\ - \$(DX_DOCDIR]DX_i[)/rtf]])[ - -"]], -[[DX_SNIPPET_rtf=""]]) -AS_IF([[test $DX_FLAG_xml -eq 1]], -[[DX_SNIPPET_xml="## ------------------------------ ## -## Rules specific for XML output. ## -## ------------------------------ ## - -DX_CLEAN_XML = \$(DX_DOCDIR)/xml]dnl -m4_foreach([DX_i], [m4_shift(DX_loop)], [[\\ - \$(DX_DOCDIR]DX_i[)/xml]])[ - -"]], -[[DX_SNIPPET_xml=""]]) -AS_IF([[test $DX_FLAG_ps -eq 1]], -[[DX_SNIPPET_ps="## ----------------------------- ## -## Rules specific for PS output. ## -## ----------------------------- ## - -DX_CLEAN_PS = \$(DX_DOCDIR)/\$(PACKAGE).ps]dnl -m4_foreach([DX_i], [m4_shift(DX_loop)], [[\\ - \$(DX_DOCDIR]DX_i[)/\$(PACKAGE).ps]])[ - -DX_PS_GOAL = doxygen-ps - -doxygen-ps: \$(DX_CLEAN_PS) - -]m4_foreach([DX_i], [DX_loop], -[[\$(DX_DOCDIR]DX_i[)/\$(PACKAGE).ps: \$(DX_DOCDIR]DX_i[)/\$(PACKAGE).tag - \$(DX_V_LATEX)cd \$(DX_DOCDIR]DX_i[)/latex; \\ - rm -f *.aux *.toc *.idx *.ind *.ilg *.log *.out; \\ - \$(DX_LATEX) refman.tex; \\ - \$(DX_MAKEINDEX) refman.idx; \\ - \$(DX_LATEX) refman.tex; \\ - countdown=5; \\ - while \$(DX_EGREP) 'Rerun (LaTeX|to get cross-references right)' \\ - refman.log > /dev/null 2>&1 \\ - && test \$\$countdown -gt 0; do \\ - \$(DX_LATEX) refman.tex; \\ - countdown=\`expr \$\$countdown - 1\`; \\ - done; \\ - \$(DX_DVIPS) -o ../\$(PACKAGE).ps refman.dvi - -]])["]], -[[DX_SNIPPET_ps=""]]) -AS_IF([[test $DX_FLAG_pdf -eq 1]], -[[DX_SNIPPET_pdf="## ------------------------------ ## -## Rules specific for PDF output. ## -## ------------------------------ ## - -DX_CLEAN_PDF = \$(DX_DOCDIR)/\$(PACKAGE).pdf]dnl -m4_foreach([DX_i], [m4_shift(DX_loop)], [[\\ - \$(DX_DOCDIR]DX_i[)/\$(PACKAGE).pdf]])[ - -DX_PDF_GOAL = doxygen-pdf - -doxygen-pdf: \$(DX_CLEAN_PDF) - -]m4_foreach([DX_i], [DX_loop], -[[\$(DX_DOCDIR]DX_i[)/\$(PACKAGE).pdf: \$(DX_DOCDIR]DX_i[)/\$(PACKAGE).tag - \$(DX_V_LATEX)cd \$(DX_DOCDIR]DX_i[)/latex; \\ - rm -f *.aux *.toc *.idx *.ind *.ilg *.log *.out; \\ - \$(DX_PDFLATEX) refman.tex; \\ - \$(DX_MAKEINDEX) refman.idx; \\ - \$(DX_PDFLATEX) refman.tex; \\ - countdown=5; \\ - while \$(DX_EGREP) 'Rerun (LaTeX|to get cross-references right)' \\ - refman.log > /dev/null 2>&1 \\ - && test \$\$countdown -gt 0; do \\ - \$(DX_PDFLATEX) refman.tex; \\ - countdown=\`expr \$\$countdown - 1\`; \\ - done; \\ - mv refman.pdf ../\$(PACKAGE).pdf - -]])["]], -[[DX_SNIPPET_pdf=""]]) -AS_IF([[test $DX_FLAG_ps -eq 1 -o $DX_FLAG_pdf -eq 1]], -[[DX_SNIPPET_latex="## ------------------------------------------------- ## -## Rules specific for LaTeX (shared for PS and PDF). ## -## ------------------------------------------------- ## - -DX_V_LATEX = \$(_DX_v_LATEX_\$(V)) -_DX_v_LATEX_ = \$(_DX_v_LATEX_\$(AM_DEFAULT_VERBOSITY)) -_DX_v_LATEX_0 = @echo \" LATEX \" \$][@; - -DX_CLEAN_LATEX = \$(DX_DOCDIR)/latex]dnl -m4_foreach([DX_i], [m4_shift(DX_loop)], [[\\ - \$(DX_DOCDIR]DX_i[)/latex]])[ - -"]], -[[DX_SNIPPET_latex=""]]) - -AS_IF([[test $DX_FLAG_doc -eq 1]], -[[DX_SNIPPET_doc="## --------------------------------- ## -## Format-independent Doxygen rules. ## -## --------------------------------- ## - -${DX_SNIPPET_html}\ -${DX_SNIPPET_chm}\ -${DX_SNIPPET_man}\ -${DX_SNIPPET_rtf}\ -${DX_SNIPPET_xml}\ -${DX_SNIPPET_ps}\ -${DX_SNIPPET_pdf}\ -${DX_SNIPPET_latex}\ -DX_V_DXGEN = \$(_DX_v_DXGEN_\$(V)) -_DX_v_DXGEN_ = \$(_DX_v_DXGEN_\$(AM_DEFAULT_VERBOSITY)) -_DX_v_DXGEN_0 = @echo \" DXGEN \" \$<; - -.PHONY: doxygen-run doxygen-doc \$(DX_PS_GOAL) \$(DX_PDF_GOAL) - -.INTERMEDIATE: doxygen-run \$(DX_PS_GOAL) \$(DX_PDF_GOAL) - -doxygen-run:]m4_foreach([DX_i], [DX_loop], - [[ \$(DX_DOCDIR]DX_i[)/\$(PACKAGE).tag]])[ - -doxygen-doc: doxygen-run \$(DX_PS_GOAL) \$(DX_PDF_GOAL) - -]m4_foreach([DX_i], [DX_loop], -[[\$(DX_DOCDIR]DX_i[)/\$(PACKAGE).tag: \$(DX_CONFIG]DX_i[) \$(pkginclude_HEADERS) - \$(A""M_V_at)rm -rf \$(DX_DOCDIR]DX_i[) - \$(DX_V_DXGEN)\$(DX_ENV) DOCDIR=\$(DX_DOCDIR]DX_i[) \$(DX_DOXYGEN) \$(DX_CONFIG]DX_i[) - \$(A""M_V_at)echo Timestamp >\$][@ - -]])dnl -[DX_CLEANFILES = \\] -m4_foreach([DX_i], [DX_loop], -[[ \$(DX_DOCDIR]DX_i[)/doxygen_sqlite3.db \\ - \$(DX_DOCDIR]DX_i[)/\$(PACKAGE).tag \\ -]])dnl -[ -r \\ - \$(DX_CLEAN_HTML) \\ - \$(DX_CLEAN_CHM) \\ - \$(DX_CLEAN_CHI) \\ - \$(DX_CLEAN_MAN) \\ - \$(DX_CLEAN_RTF) \\ - \$(DX_CLEAN_XML) \\ - \$(DX_CLEAN_PS) \\ - \$(DX_CLEAN_PDF) \\ - \$(DX_CLEAN_LATEX)"]], -[[DX_SNIPPET_doc=""]]) -AC_SUBST([DX_RULES], -["${DX_SNIPPET_doc}"])dnl -AM_SUBST_NOTMAKE([DX_RULES]) - -#For debugging: -#echo DX_FLAG_doc=$DX_FLAG_doc -#echo DX_FLAG_dot=$DX_FLAG_dot -#echo DX_FLAG_man=$DX_FLAG_man -#echo DX_FLAG_html=$DX_FLAG_html -#echo DX_FLAG_chm=$DX_FLAG_chm -#echo DX_FLAG_chi=$DX_FLAG_chi -#echo DX_FLAG_rtf=$DX_FLAG_rtf -#echo DX_FLAG_xml=$DX_FLAG_xml -#echo DX_FLAG_pdf=$DX_FLAG_pdf -#echo DX_FLAG_ps=$DX_FLAG_ps -#echo DX_ENV=$DX_ENV -]) diff --git a/m4/kpse_libtool.m4 b/m4/kpse_libtool.m4 deleted file mode 100644 index 0cc3feaf6a0e874db4150ab94a0eda8440fa5d7d..0000000000000000000000000000000000000000 --- a/m4/kpse_libtool.m4 +++ /dev/null @@ -1,62 +0,0 @@ -# Public macros for the TeX Live (TL) tree. -# Copyright (C) 1995 - 2009 Karl Berry <tex-live@tug.org> -# Copyright (C) 2009, 2010 Peter Breitenlohner <tex-live@tug.org> -# -# This file is free software; the copyright holders -# give unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# serial 1 - -# _KPSE_USE_LIBTOOL() -# Switch link tests over to use libtool so as not to require dependent -# libraries to be listed explicitly. -# Extended for Fortran by Thomas Jahns <jahns@dkrz.de>, 2015 -# ------------------- -AC_DEFUN([_KPSE_USE_LIBTOOL], -[## $0: Generate a libtool script for use in configure tests -AC_PROVIDE_IFELSE([LT_INIT], , - [m4_fatal([$0: requires libtool])])[]dnl -LT_OUTPUT -AC_CONFIG_COMMANDS_PRE([ac_objext=${acx_lt_saved_ac_objext}]) -acx_lt_saved_ac_objext=$ac_objext -ac_objext=lo -m4_append([AC_LANG(C)], -[ac_link="$ac_pwd/libtool --mode=link --tag=CC $ac_link" -ac_compile="$ac_pwd/libtool --mode=compile --tag=CC $ac_compile" -])[]dnl -AC_PROVIDE_IFELSE([AC_PROG_CXX], -[m4_append([AC_LANG(C++)], -[ac_link="$ac_pwd/libtool --mode=link --tag=CXX $ac_link" -ac_compile="$ac_pwd/libtool --mode=compile --tag=CXX $ac_compile" -])])[]dnl -AC_PROVIDE_IFELSE([AC_PROG_FC], -[m4_append([AC_LANG(Fortran)], -[ac_link="$ac_pwd/libtool --mode=link --tag=FC $ac_link" -ac_compile="$ac_pwd/libtool --mode=compile --tag=FC $ac_compile" -])])[]dnl -AC_PROVIDE_IFELSE([AC_PROG_F77], -[m4_append([AC_LANG(Fortran 77)], -[ac_link="$ac_pwd/libtool --mode=link --tag=F77 $ac_link" -ac_compile="$ac_pwd/libtool --mode=compile --tag=F77 $ac_compile" -])])[]dnl -AC_LANG(_AC_LANG)[]dnl -dnl After compiling/linking checks, now also $top_builddir/$objdir -dnl needs to be cleaned. -ac_clean_files_save="$ac_clean_files_save $ac_pwd/$objdir" -ac_clean_files="$ac_clean_files $ac_pwd/$objdir" -]) # _KPSE_USE_LIBTOOL - -# _KPSE_CHECK_LIBTOOL([ACTION-IF-SUCCESS], [ACTION-IF-FAILURE = FAILURE]) -# Check that we can link programs written in the current language with libtool -# ------------------- -AC_DEFUN([_KPSE_CHECK_LIBTOOL], - [m4_pushdef([acx_cache_var], [acx_cv_libtool_[]_AC_LANG_ABBREV[]_works])dnl - AC_CACHE_CHECK([whether libtool can link _AC_LANG programs], - [acx_cache_var], - [acx_cache_var=no - AC_LINK_IFELSE([AC_LANG_PROGRAM], [acx_cache_var=yes])]) - AS_VAR_IF([acx_cache_var], [no], [m4_default([$2], - [AC_MSG_FAILURE([unable to link a _AC_LANG program using libtool])])], - [$1]) - m4_popdef([acx_cache_var])]) diff --git a/python/Makefile.am b/python/Makefile.am deleted file mode 100644 index 7b2cc72aab08fc5636179f7888f221ce2ba0e192..0000000000000000000000000000000000000000 --- a/python/Makefile.am +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright (c) 2013-2024 MPI-M, Luis Kornblueh, Rahul Sinha and DWD, Florian Prill. All rights reserved. -# -# SPDX-License-Identifier: BSD-3-Clause -# - -pkgpyexec_PYTHON = mtime/__init__.py -nodist_pkgpyexec_PYTHON = mtime/_mtime.py -pkgpyexec_LTLIBRARIES = mtime/__mtime.la - -mtime___mtime_la_SOURCES = -mtime___mtime_la_LDFLAGS = -shared -avoid-version -module -mtime___mtime_la_LIBADD = $(top_builddir)/src/libmtime_c.la - -all-local: mtime/.symlinkstamp - -mtime/.symlinkstamp: mtime/__mtime.la - $(AM_V_at)($(am__cd) mtime && rm -f __mtime$(acx_modext) && $(LN_S) $(acx_objdir)/__mtime$(acx_modext) __mtime$(acx_modext)) && touch $@ - -CLEANFILES = mtime/.symlinkstamp mtime/__mtime$(acx_modext) - -# overrides to make regular compilations also use libtool -COMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=compile $(CC) -static $(DEFS) \ - $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ - $(AM_CFLAGS) $(CFLAGS) -FCCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=FC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=compile $(FC) -static $(AM_FCFLAGS) $(FCFLAGS) diff --git a/scripts/git_add_dist b/scripts/git_add_dist deleted file mode 100755 index 29d7c9668983b96432b531bae6c10d81d1de4155..0000000000000000000000000000000000000000 --- a/scripts/git_add_dist +++ /dev/null @@ -1,52 +0,0 @@ -#!/bin/bash - -# Copyright (c) 2013-2024 MPI-M, Luis Kornblueh, Rahul Sinha and DWD, Florian Prill. All rights reserved. -# -# SPDX-License-Identifier: BSD-3-Clause - -set -euo pipefail - -script_dir=$(cd "$(dirname "$0")"; pwd) -top_srcdir=$(cd "${script_dir}/.."; pwd) - -cd "${top_srcdir}" - -git update-index -q --refresh || { - echo "ERROR: failed to update git index in '${top_srcdir}'" >&2 - exit 1 -} - -git diff-files --quiet || { - echo "ERROR: '${top_srcdir}' has unstaged changes" >&2 - exit 1 -} - -git diff-index --cached --quiet HEAD -- || { - echo "ERROR: '${top_srcdir}' has uncommited changes" >&2 - exit 1 -} - -./autogen.sh -./configure --enable-maintainer-mode - -distdir='mtime-dist' -make distdir distdir="${distdir}" -for f in $(find "${distdir}" -type f -o -type l); do - git add -f "${f#"${distdir}/"}"; -done -rm -rf "${distdir}" - -for license in \ - Autoconf-exception-generic \ - Autoconf-exception-generic-3.0 \ - FSFUL \ - FSFULLRWD \ - GPL-3.0-or-later \ - X11-distribute-modifications-variant -do - reuse download "${license}" - git add "LICENSES/${license}.txt" -done - -git status -echo "git commit -m 'Add autogenerated Autotools files'" diff --git a/scripts/reconfigure b/scripts/reconfigure deleted file mode 100755 index 4e9759f2c993d064efc0a2db9bc73411216a5c88..0000000000000000000000000000000000000000 --- a/scripts/reconfigure +++ /dev/null @@ -1,132 +0,0 @@ -#! /usr/bin/env bash -# -# This script contains all the necessary steps to recreate the -# autotools files to build the project. -# -# Copyright (C) 2021 Thomas Jahns <jahns@dkrz.de> -# -# Version: 1.0 -# Author: Thomas Jahns <jahns@dkrz.de> -# Keywords: autotools autogen autoconf libtool automake -# Maintainer: Thomas Jahns <jahns@dkrz.de> -# URL: https://swprojects.dkrz.de/redmine/projects/scales-ppm -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are -# met: -# -# Redistributions of source code must retain the above copyright notice, -# this list of conditions and the following disclaimer. -# -# Redistributions in binary form must reproduce the above copyright -# notice, this list of conditions and the following disclaimer in the -# documentation and/or other materials provided with the distribution. -# -# Neither the name of the DKRZ GmbH nor the names of its contributors -# may be used to endorse or promote products derived from this software -# without specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS -# IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED -# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A -# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER -# OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, -# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -# -set -e - -# this should guarantee reproducible results from automake runs -export PERL_HASH_SEED=0 - -if [[ -z "${LIBTOOLIZE:-}" ]]; then - case $(uname -s) in - Darwin) - LIBTOOLIZE=glibtoolize - if [[ -z "${SED+set}" ]] && command -v gsed >/dev/null; then - SED=gsed - fi - ;; - *) - LIBTOOLIZE=libtoolize - ;; - esac - # make sure autoreconf calls the same libtoolize: - export LIBTOOLIZE -fi - -SED=${SED-sed} -if sed_version=$($SED --version 2>/dev/null) && [[ $sed_version = *GNU\ sed* ]]; then - sed_inplace_options=('-i') -elif $SED -E </dev/null 2>/dev/null >/dev/null ; then - # assume modern FreeBSD sed - sed_inplace_options=('-i' '') -else - printf '%s\n' 'Cannot find sed able to operate in place.' \ - 'Please provide full path to GNU or FreeBSD sed in SED environment variable.' \ - >&2 - exit 1 -fi - -$LIBTOOLIZE --force --copy -autoreconf -i --force -libtoolversion=$($LIBTOOLIZE --version \ - | ${SED} -e 's/^'"${LIBTOOLIZE##*/}"' \(([^)]*) \)\{0,1\}\([0-9.]*\)/\2/;q') -declare -a patches -case "$libtoolversion" in - (2.4.6|2.4.7) - patches=(contrib/00nagfor-libtool-patch/nagfor-libtool-${libtoolversion}.patch \ - contrib/01aix-deplib-rpath-patch/aix-deplib-libtool.patch \ - contrib/03ltmain-ld-groups-patch/ltmain-ld-groups-libtool-2.4.6.patch \ - contrib/04ltmain-xlinker-patch/ltmain-xlinker-patch.patch \ - contrib/05macos-nagfor-patch/macos-nagfor.patch \ - contrib/06ltmain_nag_pthread-patch/ltmain_nag_pthread.patch \ - contrib/07ltmain-early-xcompile-patch/ltmain-early-xcompile-libtool-2.4.6.patch \ - contrib/08ltmain-parallel-printf-patch/ltmain-parallel-printf-libtool-2.4.6.patch \ - contrib/09debian-no-overlink-patch/deplib_binary.patch \ - contrib/09debian-no-overlink-patch/link_all_deplibs.patch \ - contrib/10ltmain-ld-positional-wl-patch/ltmain-ld-positional-wl-libtool-2.4.6.patch) - ;; -esac -for patch in "${patches[@]}"; do - echo "applying $patch" >&2 - patch -p1 <$patch -done -autoreconf -i -# fix timestamps of the header templates -${AUTOHEADER-autoheader} --force -find . -name Makefile.in -exec $SED "${sed_inplace_options[@]}" \ - -e 's/[ ][ ]*$//' \{\} + -\rm -f config/ltmain.sh.orig m4/libtool.m4.orig - -if command -v wget >/dev/null ; then - DL_CMD=(wget -o /dev/null -O) -elif command -v curl >/dev/null ; then - DL_CMD=(curl -s -o) -fi - -"${DL_CMD[@]}" config/config.guess \ - 'http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD' -"${DL_CMD[@]}" config/config.sub \ - 'http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD' - -if [ -x scripts/recreate-testsuite.sh ]; then - scripts/recreate-testsuite.sh -fi - -# -# to test if this succeeded, one can run -# diff -x autom4te.cache -x .git -ur orig/<project> new/<project> 2>&1 | less -# if a known good checkout is at orig/<project> and a newly reconfigured -# tree is at new/<project> -# -# Local Variables: -# mode: sh -# license-project-url: "https://swprojects.dkrz.de/redmine/projects/scales-ppm" -# license-default: "bsd" -# End: -# diff --git a/src/Makefile.am b/src/Makefile.am deleted file mode 100644 index 3dd379891a275f49fe308af96fa2eb35384c6536..0000000000000000000000000000000000000000 --- a/src/Makefile.am +++ /dev/null @@ -1,117 +0,0 @@ -# Copyright (c) 2013-2024 MPI-M, Luis Kornblueh, Rahul Sinha and DWD, Florian Prill. All rights reserved. -# -# SPDX-License-Identifier: BSD-3-Clause -# -noinst_LTLIBRARIES = libmtime_c.la - -lib_LTLIBRARIES = libmtime.la -libmtime_la_LDFLAGS = -version-number $(MTIME_VERSION_MAJOR):$(MTIME_VERSION_MINOR):$(MTIME_VERSION_PATCH) -libmtime_la_LIBADD = libmtime_c.la - -AM_CPPFLAGS = -I$(top_srcdir)/include - -libmtime_c_la_SOURCES = \ - kepler.c \ - mtime_calendar.c \ - mtime_calendar360day.c \ - mtime_calendar365day.c \ - mtime_calendarGregorian.c \ - mtime_date.c \ - mtime_datetime.c \ - mtime_eventHandling.c \ - mtime_eventList.c \ - mtime_iso8601.c \ - mtime_julianDay.c \ - mtime_time.c \ - mtime_timedelta.c \ - mtime_utilities.c \ - orbit.c \ - vsop87.c - -libmtime_la_SOURCES = \ - libmtime.f90 \ - mtime_c_bindings.f90 \ - mtime_constants.f90 \ - mtime_error_handling.f90 - -if FCMODUC -mtime_c_bindings_mod = MTIME_C_BINDINGS.$(FCMODEXT) -mtime_constants_mod = MTIME_CONSTANTS.$(FCMODEXT) -mtime_error_handling_mod = MTIME_ERROR_HANDLING.$(FCMODEXT) -mtime_mod = MTIME.$(FCMODEXT) -mtime_other_mods = \ - MTIME_CALENDAR.$(FCMODEXT) \ - MTIME_DATE.$(FCMODEXT) \ - MTIME_DATETIME.$(FCMODEXT) \ - MTIME_EVENTGROUPS.$(FCMODEXT) \ - MTIME_EVENTS.$(FCMODEXT) \ - MTIME_JULIANDAY.$(FCMODEXT) \ - MTIME_JULIANDELTA.$(FCMODEXT) \ - MTIME_TIME.$(FCMODEXT) \ - MTIME_TIMEDELTA.$(FCMODEXT) \ - MTIME_UTILITIES.$(FCMODEXT) -mtime_print_by_callback_mod = MTIME_PRINT_BY_CALLBACK.$(FCMODEXT) -else !FCMODUC -mtime_c_bindings_mod = mtime_c_bindings.$(FCMODEXT) -mtime_constants_mod = mtime_constants.$(FCMODEXT) -mtime_error_handling_mod = mtime_error_handling.$(FCMODEXT) -mtime_mod = mtime.$(FCMODEXT) -mtime_other_mods = \ - mtime_calendar.$(FCMODEXT) \ - mtime_date.$(FCMODEXT) \ - mtime_datetime.$(FCMODEXT) \ - mtime_eventgroups.$(FCMODEXT) \ - mtime_events.$(FCMODEXT) \ - mtime_julianday.$(FCMODEXT) \ - mtime_juliandelta.$(FCMODEXT) \ - mtime_time.$(FCMODEXT) \ - mtime_timedelta.$(FCMODEXT) \ - mtime_utilities.$(FCMODEXT) -mtime_print_by_callback_mod = mtime_print_by_callback.$(FCMODEXT) -endif !FCMODUC - -all_mods = \ - $(mtime_c_bindings_mod) \ - $(mtime_constants_mod) \ - $(mtime_error_handling_mod) \ - $(mtime_mod) \ - $(mtime_other_mods) \ - $(mtime_print_by_callback_mod) - -nodist_include_HEADERS = $(all_mods) - -$(mtime_c_bindings_mod): mtime_c_bindings.lo -$(mtime_constants_mod): mtime_constants.lo -$(mtime_error_handling_mod) $(mtime_print_by_callback_mod): mtime_error_handling.lo -$(mtime_mod) $(mtime_other_mods): libmtime.lo - -$(all_mods): - @if test -z $<; then \ - echo "Cannot find Fortran source file providing module '$(basename $(@F))'." >&2; \ - elif test ! -f $@; then \ - rm -f $<; $(MAKE) $(AM_MAKEFLAGS) $<; \ - fi - -libmtime.lo: \ - $(mtime_c_bindings_mod) \ - $(mtime_constants_mod) \ - $(mtime_error_handling_mod) - -mtime_c_bindings.lo: \ - $(mtime_constants_mod) \ - $(mtime_error_handling_mod) - -mtime_iso8601.c: @MAINTAINER_MODE_TRUE@ mtime_iso8601.rl - $(AM_V_GEN)$(RAGEL) -o $@ mtime_iso8601.rl - -MOSTLYCLEANFILES = $(all_mods) - -EXTRA_DIST = mtime_iso8601.rl - -# overrides to make regular compilations also use libtool -COMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=compile $(CC) -static $(DEFS) \ - $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ - $(AM_CFLAGS) $(CFLAGS) -FCCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=FC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=compile $(FC) -static $(AM_FCFLAGS) $(FCFLAGS) diff --git a/test/Makefile.am b/test/Makefile.am deleted file mode 100644 index 563f7c9bb1d22e4a6b147f8f3220f61ce7b27d21..0000000000000000000000000000000000000000 --- a/test/Makefile.am +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright (c) 2013-2024 MPI-M, Luis Kornblueh, Rahul Sinha and DWD, Florian Prill. All rights reserved. -# -# SPDX-License-Identifier: BSD-3-Clause -# -check_PROGRAMS = test_runner -TESTS = test_runner test_python.sh -TEST_EXTENSIONS = .sh - -if ENABLE_CHECK -check_LTLIBRARIES = libmtime_check.la - -AM_CPPFLAGS = -I$(top_srcdir)/include -AM_CFLAGS = $(CHECK_CFLAGS) -test_runner_LDADD = libmtime_check.la $(top_builddir)/src/libmtime.la $(CHECK_CLIBS) - -libmtime_check_la_SOURCES = \ - mtime_calendar_test.c \ - mtime_calendar_test.h \ - mtime_date_test.c \ - mtime_date_test.h \ - mtime_datetime_test.c \ - mtime_datetime_test.h \ - mtime_julianDay_test.c \ - mtime_julianDay_test.h \ - mtime_time_test.c \ - mtime_time_test.h \ - mtime_timedelta_test.c \ - mtime_timedelta_test.h -endif ENABLE_CHECK - -if ENABLE_PYTHON -installcheck-local: - PYTHONPATH="$(DESTDIR)$(pyexecdir)$${PYTHONPATH+":$${PYTHONPATH}"}" \ - PYTHONDONTWRITEBYTECODE=1 \ - $(PYTHON) test_python.sh -endif ENABLE_PYTHON - -# overrides to make regular compilations also use libtool -COMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=compile $(CC) -static $(DEFS) \ - $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ - $(AM_CFLAGS) $(CFLAGS) -FCCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=FC $(AM_LIBTOOLFLAGS) \ - $(LIBTOOLFLAGS) --mode=compile $(FC) -static $(AM_FCFLAGS) $(FCFLAGS)