Michael Kruse | 54f3713 | 2025-02-16 12:25:31 | [diff] [blame] | 1 | /*===-- cmake/config.cmake.in ---------------------------------------*- C -*-=== |
| 2 | * |
| 3 | * Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | * See https://llvm.org/LICENSE.txt for license information. |
| 5 | * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
| 6 | * |
| 7 | *===----------------------------------------------------------------------===*/ |
| 8 | |
| 9 | #ifndef FORTRAN_RUNTIME_CONFIG_H |
| 10 | #define FORTRAN_RUNTIME_CONFIG_H |
| 11 | |
| 12 | /* Define to 1 if you have the `strerror_r' function. */ |
| 13 | #cmakedefine01 HAVE_STRERROR_R |
| 14 | |
| 15 | /* Define to 1 if you have the declaration of `strerror_s', and to 0 if you |
| 16 | don't. */ |
| 17 | #cmakedefine01 HAVE_DECL_STRERROR_S |
| 18 | |
Michael Kruse | b55f751 | 2025-02-16 14:39:52 | [diff] [blame] | 19 | /* Define to 1 if you have the `backtrace' function. */ |
| 20 | #cmakedefine HAVE_BACKTRACE ${HAVE_BACKTRACE} |
| 21 | |
| 22 | #define BACKTRACE_HEADER <${BACKTRACE_HEADER}> |
| 23 | |
Michael Kruse | 54f3713 | 2025-02-16 12:25:31 | [diff] [blame] | 24 | #endif |