From e421fc29f044d88b4036b3004714ec353b1527aa Mon Sep 17 00:00:00 2001
From: "David C. Manuelda" <StormByte@gmail.com>
Date: Fri, 1 Nov 2024 05:58:16 +0100
Subject: [PATCH] Do not include template on Unix to fix clang compile issue

Signed-off-by: David C. Manuelda <StormByte@gmail.com>
--- a/src/ListNavigationPanel.h
+++ b/src/ListNavigationPanel.h
@@ -13,7 +13,7 @@
 #include <wx/window.h>
 #include <wx/containr.h>
 
-#if !defined(__FreeBSD__) && !defined(__OpenBSD__)
+#if !defined(__FreeBSD__) && !defined(__OpenBSD__) && !defined(__UNIX__)
 extern template class WXDLLIMPEXP_CORE wxNavigationEnabled<wxWindow>;
 #endif
 
-- 
2.47.0

