diff options
author | jkoshy <jkoshy@FreeBSD.org> | 2001-11-28 18:15:16 +0800 |
---|---|---|
committer | jkoshy <jkoshy@FreeBSD.org> | 2001-11-28 18:15:16 +0800 |
commit | b1e1ff19086a7bb833fb9ecceb3560177107c622 (patch) | |
tree | f8b84de0934ac355e62ab84b60030fc30965f248 /graphics/xaos | |
parent | d67e7cadaf8cd2a5d749d8af12625e47105faae1 (diff) | |
download | freebsd-ports-gnome-b1e1ff19086a7bb833fb9ecceb3560177107c622.tar.gz freebsd-ports-gnome-b1e1ff19086a7bb833fb9ecceb3560177107c622.tar.zst freebsd-ports-gnome-b1e1ff19086a7bb833fb9ecceb3560177107c622.zip |
Make this port compile under -CURRENT.
Submitted by: Matthew Thyer <thyerm@picknowl.com.au>
Diffstat (limited to 'graphics/xaos')
-rw-r--r-- | graphics/xaos/files/patch-aj | 17 | ||||
-rw-r--r-- | graphics/xaos/files/patch-ak | 20 |
2 files changed, 37 insertions, 0 deletions
diff --git a/graphics/xaos/files/patch-aj b/graphics/xaos/files/patch-aj new file mode 100644 index 000000000000..8458d7f889bb --- /dev/null +++ b/graphics/xaos/files/patch-aj @@ -0,0 +1,17 @@ +--- src/ui/ui-drv/aa/ui_aa.c-- Wed Nov 28 15:41:11 2001 ++++ src/ui/ui-drv/aa/ui_aa.c Wed Nov 28 15:43:31 2001 +@@ -1,7 +1,14 @@ ++#if defined(HAVE_SYS_PARAM_H) ++#include <sys/param.h> ++#endif + #include "aconfig.h" + #ifdef AA_DRIVER + #include <string.h> ++#if (!defined(BSD) || (BSD < 199506)) + #include <malloc.h> ++#else ++#include <stdlib.h> ++#endif + #include <aalib.h> + #include <ui.h> + #include <unistd.h> diff --git a/graphics/xaos/files/patch-ak b/graphics/xaos/files/patch-ak new file mode 100644 index 000000000000..d17ced5bddf9 --- /dev/null +++ b/graphics/xaos/files/patch-ak @@ -0,0 +1,20 @@ +--- src/ui/ui-drv/svga/ui_svga.c-- Thu Mar 5 03:19:12 1998 ++++ src/ui/ui-drv/svga/ui_svga.c Wed Nov 28 15:48:12 2001 +@@ -19,10 +19,17 @@ + * along with this program; if not, write to the Free Software + * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + */ ++#if defined(HAVE_SYS_PARAM_H) ++#include <sys/param.h> ++#endif + #include "aconfig.h" + #ifdef SVGA_DRIVER + #include <stdio.h> ++#if (!defined(BSD) || (BSD < 199506)) + #include <malloc.h> ++#else ++#include <stdlib.h> ++#endif + #include <vga.h> + #include <vgagl.h> + #include <vgamouse.h> |