43 lines
1.2 KiB
Diff
43 lines
1.2 KiB
Diff
From 22e69d77d745b42ca85fefdf8c9f7625b852b964 Mon Sep 17 00:00:00 2001
|
|
From: Pierre-Jean Texier <pjtexier@koncepto.io>
|
|
Date: Wed, 26 Feb 2020 22:08:28 +0100
|
|
Subject: [PATCH] gptcurses: partially revert "Tweaks for building on the
|
|
latest XCode for macOS"
|
|
|
|
This partially reverts commit bbd6b4cc67ffcdf7b2a6bd5008d28006cb147393.
|
|
|
|
Fixes:
|
|
|
|
| gptcurses.cc:29:10: fatal error: ncursesw/ncurses.h: No such file or directory
|
|
| 29 | #include <ncursesw/ncurses.h>
|
|
| | ^~~~~~~~~~~~~~~~~~~~
|
|
|
|
Signed-off-by: Pierre-Jean Texier <pjtexier@koncepto.io>
|
|
[Retrieved from:
|
|
https://sourceforge.net/u/texierp/gptfdisk/ci/22e69d77d745b42ca85fefdf8c9f7625b852b964
|
|
Upstream status (with meson build system):
|
|
https://sourceforge.net/p/gptfdisk/code/merge-requests/21]
|
|
---
|
|
gptcurses.cc | 4 ----
|
|
1 file changed, 4 deletions(-)
|
|
|
|
diff --git a/gptcurses.cc b/gptcurses.cc
|
|
index 1b18cf2..4ebfde1 100644
|
|
--- a/gptcurses.cc
|
|
+++ b/gptcurses.cc
|
|
@@ -23,11 +23,7 @@
|
|
#include <iostream>
|
|
#include <string>
|
|
#include <sstream>
|
|
-#if defined (__APPLE__) || (__FreeBSD__)
|
|
#include <ncurses.h>
|
|
-#else
|
|
-#include <ncursesw/ncurses.h>
|
|
-#endif
|
|
#include "gptcurses.h"
|
|
#include "support.h"
|
|
|
|
--
|
|
2.26.2
|
|
|