mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-29 11:38:52 +02:00
23 lines
553 B
Plaintext
23 lines
553 B
Plaintext
From 4af5c46c89ff46eebcdf265ca65522bc63a8ee66 Mon Sep 17 00:00:00 2001
|
|
From: Luc Schrijvers <begasus@gmail.com>
|
|
Date: Tue, 24 Mar 2026 16:11:54 +0100
|
|
Subject: set CMAKE_POSITION_INDEPENDENT_CODE to OFF
|
|
|
|
|
|
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
|
index 7266bdf..25e901d 100644
|
|
--- a/CMakeLists.txt
|
|
+++ b/CMakeLists.txt
|
|
@@ -82,7 +82,7 @@ if (POLICY CMP0167)
|
|
cmake_policy(SET CMP0167 OLD)
|
|
endif()
|
|
|
|
-set(CMAKE_POSITION_INDEPENDENT_CODE ON)
|
|
+set(CMAKE_POSITION_INDEPENDENT_CODE OFF)
|
|
|
|
if (APPLE)
|
|
add_subdirectory(packaging/macos)
|
|
--
|
|
2.52.0
|
|
|