1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
Description: adding missing include statements which cause build failure
Author: Pierre Gruet <pgt@debian.org>
Forwarded: sgothel@jausoft.com
Last-Update: 2025-10-11
--- a/src/newt/native/bcm_egl.c
+++ b/src/newt/native/bcm_egl.c
@@ -42,6 +42,7 @@
#include "MouseEvent.h"
#include "KeyEvent.h"
+#include "NewtCommon.h"
#include <EGL/egl.h>
--- a/src/newt/native/bcm_vc_iv.c
+++ b/src/newt/native/bcm_vc_iv.c
@@ -34,6 +34,7 @@
* See references in header file.
*/
#include "bcm_vc_iv.h"
+#include "NewtCommon.h"
#include "jogamp_newt_driver_bcm_vc_iv_DisplayDriver.h"
#include "jogamp_newt_driver_bcm_vc_iv_ScreenDriver.h"
|