From 6216165dece472e16f14f8d07f7bdd86a63caad5 Mon Sep 17 00:00:00 2001 From: ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> Date: Fri, 4 Mar 2022 16:29:18 +0100 Subject: [PATCH] Add the Wayland platform to FLTK 1.4 - continued. --- configure.ac | 4 +++- fluid/Makefile | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) 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 ]) + + ]) # 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))