1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-23 04:23:08 +00:00

Unbreak on amd64

Feature safe:	yes
This commit is contained in:
Tilman Keskinoz 2011-01-20 12:20:07 +00:00
parent eff400078b
commit 715c27998b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=268033
2 changed files with 1 additions and 5 deletions

View File

@ -23,10 +23,6 @@ DEFINES+= -DAMIGA4D
.include <bsd.port.pre.mk>
.if ${ARCH} != "i386" && ${ARCH} != "alpha"
BROKEN= Does not compile on !i386 and !alpha
.endif
do-install:
${MKDIR} ${PREFIX}/etc/gtic
.for i in areagroups areas config domains help users

View File

@ -4,7 +4,7 @@
#ifndef __XMALLOC_H
#define __XMALLOC_H
+#if !defined(__FreeBSD__) || !defined(__alpha__)
+#if !defined(__FreeBSD__)
void *xmalloc(size_t size);
+#endif
void xfree(void *ptr);