From 99eacb4416b9a0adfed0a1e46ba2740581535fae Mon Sep 17 00:00:00 2001 From: Colomban Wendling Date: Fri, 27 Sep 2019 13:16:46 +0200 Subject: [PATCH] Fix static build When using the uncommon `--enable-static` flag, we need to explicitly use the C++ linker as we do for libgeany. --- src/Makefile.am | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Makefile.am b/src/Makefile.am index 86c3b7ffe..a4c78c5db 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -128,6 +128,7 @@ libgeany_la_LIBADD = \ # tell automake we have a C++ file so it uses the C++ linker we need for Scintilla nodist_EXTRA_libgeany_la_SOURCES = dummy1.cxx +nodist_EXTRA_geany_SOURCES = dummy2.cxx CLEANFILES = -- 2.11.4.GIT