diff options
author | Vanilla I. Shu <vanilla@FreeBSD.org> | 2004-08-15 15:02:05 +0000 |
---|---|---|
committer | Vanilla I. Shu <vanilla@FreeBSD.org> | 2004-08-15 15:02:05 +0000 |
commit | 0c41a9360bd0172efb972fa09527cf2e5068e3d5 (patch) | |
tree | acaaafb9b939d5e079cff6b073434ebeebf93898 | |
parent | 7556a622bb7f913fd2227b56a7aa84d84643ed04 (diff) | |
download | ports-0c41a9360bd0172efb972fa09527cf2e5068e3d5.tar.gz ports-0c41a9360bd0172efb972fa09527cf2e5068e3d5.zip |
Fix build on 4-stable.
Obtained from: kris
Notes
Notes:
svn path=/head/; revision=116266
-rw-r--r-- | lang/embryo/Makefile | 1 | ||||
-rw-r--r-- | lang/embryo/files/patch-embyro_cc_amx.h | 14 |
2 files changed, 15 insertions, 0 deletions
diff --git a/lang/embryo/Makefile b/lang/embryo/Makefile index 31a562db7813..2fa0d70fd3d3 100644 --- a/lang/embryo/Makefile +++ b/lang/embryo/Makefile @@ -7,6 +7,7 @@ PORTNAME= embryo PORTVERSION= 0.9.0 +PORTREVISION= 1 CATEGORIES= lang MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= enlightenment diff --git a/lang/embryo/files/patch-embyro_cc_amx.h b/lang/embryo/files/patch-embyro_cc_amx.h new file mode 100644 index 000000000000..223a8b7c517f --- /dev/null +++ b/lang/embryo/files/patch-embyro_cc_amx.h @@ -0,0 +1,14 @@ +--- src/bin/embryo_cc_amx.h.orig Sun Aug 15 22:58:59 2004 ++++ src/bin/embryo_cc_amx.h Sun Aug 15 22:59:15 2004 +@@ -32,10 +32,7 @@ + * here, these types are probably undefined. + */ + # ifndef HAVE_STDINT_H +-typedef short int int16_t; +-typedef unsigned short int uint16_t; +-typedef int int32_t; +-typedef unsigned int uint32_t; ++#include <sys/types.h> + # endif + #endif + |