freebsd-ports/x11/3ddesktop/files/patch-event.hpp
Nuno Teixeira 429bc46aa1 x11/3ddesktop: Fix build with graphics/imlib2 1.12.1
- Add license
- Put manpages in ${PREFIX}/share
- Pet portlint, portclippy, portfmt and Q/A check

Add minimal support to `pkg-config imlib2`; imlib2-config has been
dropped since imlib2-1.7.5.

PR:		276427
2024-01-18 22:23:38 +00:00

11 lines
395 B
C++

--- event.hpp.orig 2004-12-06 02:57:32 UTC
+++ event.hpp
@@ -74,7 +74,7 @@ class EventManager { (public)
list<Event *>::iterator k;
for (k = events.begin(); k != events.end(); ++k) {
Event *e = *k;
- printf(":: Event %d 0x%x\n", e->type, (unsigned int)(e->function));
+ printf(":: Event %d %p\n", e->type, e->function);
}
}