Fix build with portsmf system library
authorDennis Braun <d_braun@kabelmail.de>
Sat, 10 Sep 2022 20:14:36 +0000 (22:14 +0200)
committerDennis Braun <snd@debian.org>
Wed, 1 Feb 2023 20:56:51 +0000 (21:56 +0100)
Forwarded: not-yet

Gbp-Pq: Name 0009-fix_build_with_portsmf_sys_library.patch

lib-src/header-substitutes/allegro.h

index 44c508b4768267676d693e34e6973d57ac9d7d66..1e909a991fe3be9e2de079b6904daea6d95a5754 100644 (file)
@@ -7,16 +7,16 @@
 
 #pragma warning( push )
 #pragma warning( disable : 4100)
-#include "../portsmf/allegro.h"
+#include <portSMF/allegro.h>
 #pragma warning( pop )
 
 #elif defined(__linux__)
 
 #include <cstring> // Allegro include fails if this header isn't included due to no memcpy
-#include "../portsmf/allegro.h"
+#include <portSMF/allegro.h>
 
 #else //_MSC_VER
 
-#include "../portsmf/allegro.h"
+#include <portSMF/allegro.h>
 
 #endif //_MSC_VER