diff options
author | sbruno <sbruno@FreeBSD.org> | 2014-07-06 07:21:46 +0800 |
---|---|---|
committer | sbruno <sbruno@FreeBSD.org> | 2014-07-06 07:21:46 +0800 |
commit | b24935537c4b1535fae82d84d6b24069799e2160 (patch) | |
tree | aad9b249ea5f3f984cd904405ca6eb52daa149db /x11 | |
parent | 7ebde1ccd19b4dcb46877015731a0eac471ae772 (diff) | |
download | freebsd-ports-gnome-b24935537c4b1535fae82d84d6b24069799e2160.tar.gz freebsd-ports-gnome-b24935537c4b1535fae82d84d6b24069799e2160.tar.zst freebsd-ports-gnome-b24935537c4b1535fae82d84d6b24069799e2160.zip |
Move include of float.h to enable build on armv6
PR: 190983
Submitted by: andrew@freebsd.org
Reviewed by: mat@freebsd.org
Diffstat (limited to 'x11')
-rw-r--r-- | x11/pixman/Makefile | 2 | ||||
-rw-r--r-- | x11/pixman/files/patch-pixman-private.h | 16 |
2 files changed, 17 insertions, 1 deletions
diff --git a/x11/pixman/Makefile b/x11/pixman/Makefile index 14d07ef98643..3de4e320c7b5 100644 --- a/x11/pixman/Makefile +++ b/x11/pixman/Makefile @@ -2,7 +2,7 @@ PORTNAME= pixman PORTVERSION= 0.32.4 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org diff --git a/x11/pixman/files/patch-pixman-private.h b/x11/pixman/files/patch-pixman-private.h new file mode 100644 index 000000000000..4a7ae70e5d91 --- /dev/null +++ b/x11/pixman/files/patch-pixman-private.h @@ -0,0 +1,16 @@ +--- pixman/pixman-private.h.orig 2014-06-12 21:43:22.000000000 +0000 ++++ pixman/pixman-private.h 2014-06-12 21:43:38.000000000 +0000 +@@ -1,5 +1,3 @@ +-#include <float.h> +- + #ifndef PIXMAN_PRIVATE_H + #define PIXMAN_PRIVATE_H + +@@ -30,6 +28,7 @@ + #include <stdio.h> + #include <string.h> + #include <stddef.h> ++#include <float.h> + + #include "pixman-compiler.h" + |