View | Details | Raw Unified | Return to bug 268187
Collapse All | Expand All

(-)b/graphics/gnash/Makefile (-1 / +1 lines)
Lines 34-40 USES= cpe tar:bzip2 compiler:c++11-lang autoreconf gmake libtool \ Link Here
34
		pkgconfig jpeg gnome gl sdl desktop-file-utils xorg
34
		pkgconfig jpeg gnome gl sdl desktop-file-utils xorg
35
CPE_VENDOR=	gnu
35
CPE_VENDOR=	gnu
36
GNU_CONFIGURE=	yes
36
GNU_CONFIGURE=	yes
37
USE_GNOME=	atk gtk20 libxml2 pango
37
USE_GNOME=	atk gdkpixbuf2 gtk20 libxml2 pango
38
USE_XORG=	x11 xau xdmcp xext xi xinerama ice sm xv
38
USE_XORG=	x11 xau xdmcp xext xi xinerama ice sm xv
39
USE_GL=		egl
39
USE_GL=		egl
40
USE_SDL=	sdl
40
USE_SDL=	sdl
(-)b/graphics/gnash/files/patch-libbase_GnashSleep.h (-1 / +11 lines)
Added Link Here
0
- 
1
--- libbase/GnashSleep.h.orig	2022-12-05 11:34:39 UTC
2
+++ libbase/GnashSleep.h
3
@@ -38,7 +38,7 @@ inline void gnashSleep(time_t useconds)
4
     Sleep(useconds / 1000);
5
 #else
6
     const time_t m = 1000000;
7
-    const struct timespec t = { useconds / m, (useconds % m) * 1000 };
8
+    const struct timespec t = { useconds / m, (long)((useconds % m) * 1000) };
9
     ::nanosleep(&t, nullptr);
10
 #endif
11
 }

Return to bug 268187