From 06852fb43569eac608b95dea838858cd75e37327 Mon Sep 17 00:00:00 2001 From: Bogdan Drozdowski <> Date: Thu, 22 Feb 2024 22:03:29 +0100 Subject: [PATCH] Try to fix Objective-c++ on OpenBSD --- t/objcxx-deps.sh | 4 ++++ t/objcxx-minidemo.sh | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/t/objcxx-deps.sh b/t/objcxx-deps.sh index 1f39507fd..519c33244 100644 --- a/t/objcxx-deps.sh +++ b/t/objcxx-deps.sh @@ -21,6 +21,10 @@ cat >> configure.ac << 'END' AC_PROG_OBJCXX +AC_CHECK_LIB([objc],[__objc_exec_class]) +AC_CHECK_LIB([objc],[objc_getProperty]) +AC_CHECK_LIB([objc],[objc_msg_lookup_sender]) +AC_CHECK_LIB([objc],[objc_msg_lookup]) AC_OUTPUT END diff --git a/t/objcxx-minidemo.sh b/t/objcxx-minidemo.sh index ec0e8e129..f6f53c151 100644 --- a/t/objcxx-minidemo.sh +++ b/t/objcxx-minidemo.sh @@ -23,6 +23,10 @@ required=native cat >> configure.ac << 'END' AC_PROG_OBJCXX AC_CONFIG_HEADERS([config.h]) +AC_CHECK_LIB([objc],[__objc_exec_class]) +AC_CHECK_LIB([objc],[objc_getProperty]) +AC_CHECK_LIB([objc],[objc_msg_lookup_sender]) +AC_CHECK_LIB([objc],[objc_msg_lookup]) AC_OUTPUT END -- 2.35.1