1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-27 00:57:50 +00:00

Fix package on 9.1-RELEASE

This commit is contained in:
Chris Rees 2013-02-02 13:32:45 +00:00
parent 2fa807b192
commit 7b720b845f
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=311428

View File

@ -0,0 +1,16 @@
--- Modules/_decimal/libmpdec/io.c.orig 2013-02-02 13:00:09.687048586 +0000
+++ Modules/_decimal/libmpdec/io.c 2013-02-02 13:29:21.722048769 +0000
@@ -25,6 +25,13 @@
* SUCH DAMAGE.
*/
+/* Work around bug in FreeBSD 9.1-RELEASE; fixed in r243331 */
+
+#ifndef __GNUC_STDC_INLINE__
+#define __GNUC_STDC_INLINE__ 0
+#endif
+
+
#include "mpdecimal.h"
#include <stdio.h>
#include <stdlib.h>