1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-21 20:38:45 +00:00
freebsd-ports/devel/glib12/files/patch-af
Jeremy Lea be6e15d519 Enable the use of poll() on -current.
Fix bad C++ define of NULL.

Approved by:	maintainer
2000-02-12 18:59:51 +00:00

15 lines
274 B
Plaintext

--- glib.h.orig Sun Sep 5 23:34:07 1999
+++ glib.h Thu Sep 16 01:32:54 1999
@@ -108,7 +108,11 @@
* defined then the current definition is correct.
*/
#ifndef NULL
+#ifdef __cplusplus
+#define NULL (0)
+#else
#define NULL ((void*) 0)
+#endif
#endif
#ifndef FALSE