summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>2022-03-04 16:29:18 +0100
committerAlbrecht Schlosser <albrechts.fltk@online.de>2022-03-04 16:58:20 +0100
commit6216165dece472e16f14f8d07f7bdd86a63caad5 (patch)
tree6d48ac97c90a15474ecd54186bb6d1daa5599e22
parentd4e21963b543fb0ef232f61265225b78ed5b8c45 (diff)
Add the Wayland platform to FLTK 1.4 - continued.
-rw-r--r--configure.ac4
-rw-r--r--fluid/Makefile1
2 files changed, 4 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index e4c4eb2a4..3b9462518 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1077,7 +1077,7 @@ AS_CASE([$host_os_gui], [cygwin* | mingw*], [
AS_IF([test "x$x_includes" != x], [
ac_cpp="$ac_cpp -I$x_includes"
])
-])
+
dnl Check for OpenGL unless disabled...
GLLIBS=
@@ -1254,6 +1254,8 @@ AS_CASE([$host_os_gui], [cygwin* | mingw*], [
AC_CHECK_HEADER([X11/Xregion.h], [
AC_DEFINE([HAVE_X11_XREGION_H])
], [], [#include <X11/Xlib.h>])
+
+ ])
# Make symlinks since UNIX/Linux is case sensitive,
# but Cygwin in general not.
diff --git a/fluid/Makefile b/fluid/Makefile
index 32ad525d4..3252abc66 100644
--- a/fluid/Makefile
+++ b/fluid/Makefile
@@ -48,6 +48,7 @@ CPPFILES_WIN = ExternalCodeEditor_WIN32.cxx
CPPFILES_OSX = ExternalCodeEditor_UNIX.cxx
CPPFILES_X11 = ExternalCodeEditor_UNIX.cxx
CPPFILES_XFT = ExternalCodeEditor_UNIX.cxx
+CPPFILES_WAYLAND = ExternalCodeEditor_UNIX.cxx
CPPFILES += $(CPPFILES_$(BUILD))