1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00
freebsd-ports/graphics/jpeg/files/patch-jmorecfg.h
Dirk Meyer 2353e6967f - add support for some C++ programs
PR:		86304
Submitted by:	Craig Rodrigues
2005-09-22 07:01:29 +00:00

16 lines
475 B
C

--- jmorecfg.h.orig Sun Sep 18 14:53:48 2005
+++ jmorecfg.h Sun Sep 18 14:54:27 2005
@@ -187,8 +187,11 @@
/* a function referenced thru EXTERNs: */
#define GLOBAL(type) type
/* a reference to a GLOBAL function: */
+#ifdef __cplusplus
+#define EXTERN(type) extern "C" type
+#else
#define EXTERN(type) extern type
-
+#endif
/* This macro is used to declare a "method", that is, a function pointer.
* We want to supply prototype parameters if the compiler can cope.