aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/cmdline.c
diff options
context:
space:
mode:
authorRobin Haberkorn <robin.haberkorn@googlemail.com>2021-06-02 19:18:10 +0200
committerRobin Haberkorn <robin.haberkorn@googlemail.com>2021-06-02 19:18:10 +0200
commitffbc962c0a241f7d70b48162f92f2023fe6c043f (patch)
treed97dd89b680162b935cb8aae223405ffd0d9e16a /src/cmdline.c
parent3939a60c73694d5b76d60f61354e0aeb60b270c6 (diff)
downloadsciteco-ffbc962c0a241f7d70b48162f92f2023fe6c043f.tar.gz
renamed scintilla.[ch] to symbols.[ch]: fixes builds on case-insensitive file systems
* There is a "Scintilla.h" as well. * should fix macOS and builds on native Windows hosts * It wasn't practical to refer to the Scintilla includes using paths since the Scintilla location is configurable (--with-scintilla). So we'd have to write something like #include <include/Scintilla.h>. For Scinterm we cannot avoid collisions neither as its path is also configurable (--with-scinterm). Effectively, we must prevent name clashes across SciTECO and all of Scintilla and Scinterm.
Diffstat (limited to 'src/cmdline.c')
-rw-r--r--src/cmdline.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmdline.c b/src/cmdline.c
index 85cbbdd..9e73e4e 100644
--- a/src/cmdline.c
+++ b/src/cmdline.c
@@ -47,7 +47,7 @@
#include "goto.h"
#include "help.h"
#include "undo.h"
-#include "scintilla.h"
+#include "symbols.h"
#include "spawn.h"
#include "eol.h"
#include "error.h"