mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-06 15:08:57 +02:00
49 lines
957 B
Plaintext
49 lines
957 B
Plaintext
From 69cb819208cc812917ff46ebd5a0c907f3de4e03 Mon Sep 17 00:00:00 2001
|
|
From: Gerasim Troeglazov <3dEyes@gmail.com>
|
|
Date: Sat, 19 Oct 2019 19:39:57 +1000
|
|
Subject: Disable cimg_display
|
|
|
|
|
|
diff --git a/gmic-qt/gmic_qt.pro b/gmic-qt/gmic_qt.pro
|
|
index cc3a9fd..8a592ad 100644
|
|
--- a/gmic-qt/gmic_qt.pro
|
|
+++ b/gmic-qt/gmic_qt.pro
|
|
@@ -133,7 +133,7 @@ message("CImg version is" $$CIMG_VERSION)
|
|
|
|
!win32 {
|
|
LIBS += -lfftw3_threads
|
|
- DEFINES += cimg_display=1
|
|
+ DEFINES += cimg_display=0
|
|
}
|
|
|
|
win32 {
|
|
--
|
|
2.23.0
|
|
|
|
|
|
From 907eb68a52cbeac91f5173577cd96e131f3ff816 Mon Sep 17 00:00:00 2001
|
|
From: Gerasim Troeglazov <3dEyes@gmail.com>
|
|
Date: Sat, 19 Oct 2019 20:24:06 +1000
|
|
Subject: Add missing includes
|
|
|
|
|
|
diff --git a/src/gmic.h b/src/gmic.h
|
|
index bcf32c0..4d773cc 100644
|
|
--- a/src/gmic.h
|
|
+++ b/src/gmic.h
|
|
@@ -51,6 +51,11 @@
|
|
#
|
|
*/
|
|
|
|
+#ifdef __HAIKU__
|
|
+#include <sys/types.h>
|
|
+#include <sys/stat.h>
|
|
+#endif
|
|
+
|
|
#ifndef gmic_version
|
|
#define gmic_version 274
|
|
|
|
--
|
|
2.23.0
|
|
|