diff options
author | Alejandro Pulver <alepulver@FreeBSD.org> | 2006-08-13 23:20:09 +0000 |
---|---|---|
committer | Alejandro Pulver <alepulver@FreeBSD.org> | 2006-08-13 23:20:09 +0000 |
commit | 61f87e66a1ac6ff07fe0728143a429ecf1580cec (patch) | |
tree | 3c2279943df4e511cef3db6cec2e63a26e181809 /devel/allegro-devel/files | |
parent | The goal of this project is to add Cell Shading capabilities to the Quake III (diff) |
Allegro is a cross-platform library intended for use in computer games and
other types of multimedia programming.
A wide range of extension packages and add-on modules are also available, which
can be found in the "Library Extensions" section of the Allegro website.
WWW: http://www.talula.demon.co.uk/allegro/
PR: ports/101741
Diffstat (limited to 'devel/allegro-devel/files')
-rw-r--r-- | devel/allegro-devel/files/patch-makefile.in | 19 | ||||
-rw-r--r-- | devel/allegro-devel/files/patch-src__i386__icsprite.c | 12 | ||||
-rw-r--r-- | devel/allegro-devel/files/patch-src__i386__istretch.c | 13 |
3 files changed, 30 insertions, 14 deletions
diff --git a/devel/allegro-devel/files/patch-makefile.in b/devel/allegro-devel/files/patch-makefile.in index 21091761d476..24c083cf3cc6 100644 --- a/devel/allegro-devel/files/patch-makefile.in +++ b/devel/allegro-devel/files/patch-makefile.in @@ -1,14 +1,5 @@ ---- makefile.in.orig Sat Sep 10 17:17:51 2005 -+++ makefile.in Sat Nov 12 19:41:57 2005 -@@ -20,7 +20,7 @@ - mandir = @mandir@ - libdir = @libdir@ - modulebasedir = $(libdir)/allegro --moduledir = $(modulebasedir)/$(shared_major_minor) -+moduledir = $(modulebasedir)/$(shared_version) - - EXE = - OBJ = .o +--- makefile.in.orig Mon Jul 24 09:10:58 2006 ++++ makefile.in Wed Aug 9 19:15:49 2006 @@ -29,12 +29,13 @@ INFO_DIR = $(infodir)/dir DESTDIR = @@ -26,7 +17,7 @@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_INFO = @INSTALL_INFO@ -@@ -354,6 +355,11 @@ +@@ -355,6 +356,11 @@ endif lib: $(ALLEGRO_LIB_TARGETS) @@ -38,7 +29,7 @@ modules: $(ALLEGRO_MODULE_TARGETS) -@@ -465,9 +471,9 @@ +@@ -466,9 +472,9 @@ fi; \ done @for l in alleg alld allp; do \ @@ -51,7 +42,7 @@ $(INSTALL_DATA) $(LIBDIR)/lib$${l}_unsharable.a $(DESTDIR)$(libdir)/; \ fi; \ done -@@ -481,20 +487,10 @@ +@@ -482,20 +488,10 @@ fi $(mkinstalldirs) $(DESTDIR)$(bindir) @echo Installing allegro-config to $(DESTDIR)$(bindir) diff --git a/devel/allegro-devel/files/patch-src__i386__icsprite.c b/devel/allegro-devel/files/patch-src__i386__icsprite.c new file mode 100644 index 000000000000..96eecd70b519 --- /dev/null +++ b/devel/allegro-devel/files/patch-src__i386__icsprite.c @@ -0,0 +1,12 @@ +--- src/i386/icsprite.c.orig Mon Jul 24 09:10:50 2006 ++++ src/i386/icsprite.c Wed Aug 9 19:11:00 2006 +@@ -15,7 +15,8 @@ + * See readme.txt for copyright information. + */ + +- ++#include <machine/param.h> ++#include <sys/mman.h> + #include <string.h> + + #include "allegro.h" diff --git a/devel/allegro-devel/files/patch-src__i386__istretch.c b/devel/allegro-devel/files/patch-src__i386__istretch.c new file mode 100644 index 000000000000..61b631411f34 --- /dev/null +++ b/devel/allegro-devel/files/patch-src__i386__istretch.c @@ -0,0 +1,13 @@ +--- src/i386/istretch.c.orig Mon Jul 24 09:10:50 2006 ++++ src/i386/istretch.c Wed Aug 9 19:03:27 2006 +@@ -33,9 +33,8 @@ + + + #ifdef HAVE_MPROTECT +- #include <sys/types.h> ++ #include <sys/param.h> + #include <sys/mman.h> +- #include <sys/user.h> + #endif /* ifdef HAVE_MPROTECT */ + + |