mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-06 06:58:57 +02:00
46 lines
1.4 KiB
Diff
46 lines
1.4 KiB
Diff
From d36ee28712eae2f94998845926c6880d6e5a990c Mon Sep 17 00:00:00 2001
|
|
From: Maciej Mrozowski <reavertm@gmail.com>
|
|
Date: Wed, 5 Aug 2020 02:03:52 +0200
|
|
Subject: [PATCH] Slightly fix coin.cfg.cmake.in
|
|
|
|
---
|
|
coin.cfg.cmake.in | 20 ++++++++++----------
|
|
1 file changed, 10 insertions(+), 10 deletions(-)
|
|
|
|
diff --git a/coin.cfg.cmake.in b/coin.cfg.cmake.in
|
|
index 6f41c61c7..6ed041ef4 100644
|
|
--- a/coin.cfg.cmake.in
|
|
+++ b/coin.cfg.cmake.in
|
|
@@ -7,18 +7,18 @@ cflags="@COIN_EXTRA_CFLAGS@"
|
|
cppflags="@COIN_EXTRA_CPPFLAGS@"
|
|
cxxflags="@COIN_EXTRA_CXXFLAGS@"
|
|
ldflags="@COIN_EXTRA_LDFLAGS@"
|
|
-libs="@COIN_EXTRA_LIBS@"
|
|
+libs="@CMAKE_INSTALL_FULL_LIBDIR@"
|
|
msvcrt="@COIN_MSVC_LIBC@"
|
|
-datadir="@datarootdir@"
|
|
-includedir="@includedir@"
|
|
+datadir="@CMAKE_INSTALL_FULL_DATADIR@"
|
|
+includedir="@CMAKE_INSTALL_FULL_INCLUDEDIR@"
|
|
frameworkdir="@frameworkdir@"
|
|
-htmldir="@htmldir@"
|
|
+htmldir="@CMAKE_INSTALL_FULL_DOCDIR@"
|
|
compiler="@COIN_COMPILER@"
|
|
objext="@OBJEXT@"
|
|
-have_3ds_import=@HAVE_3DS_IMPORT_CAPABILITIES@
|
|
-have_vrml97=@HAVE_VRML97@
|
|
-have_sound=@HAVE_SOUND@
|
|
-have_superglu=@HAVE_SUPERGLU@
|
|
-have_threads=@HAVE_THREADS@
|
|
-have_threadsafe=@HAVE_THREADSAFE@
|
|
+have_3ds_import=@FEAT_HAVE_3DS@
|
|
+have_vrml97=@FEAT_HAVE_VRML97@
|
|
+have_sound=@FEAT_HAVE_SOUND@
|
|
+have_superglu=@FEAT_HAVE_SUPERGLU@
|
|
+have_threads=@FEAT_HAVE_THREADS@
|
|
+have_threadsafe=@FEAT_HAVE_SAFETHREAD@
|
|
compiler_is_gcc=@ac_compiler_gnu@
|
|
--
|
|
2.26.2
|
|
|