1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-13 03:03:15 +00:00
freebsd-ports/biology/p5-AcePerl/files/patch-aa
Yen-Ming Lee fb9e59f589 - Update to 1.89
- refine BROKEN to make portlint happier
- patch to use on Scalar::Util instead of WeakRef
- mark IGNORE under old perl which don't support weak reference

PR:		96656
Submitted by:	leeym
Approved by:	maintainer
2006-05-02 23:16:02 +00:00

24 lines
1.0 KiB
Plaintext

--- acelib/wh/mystdlib.h.orig Mon Jul 16 23:04:45 2001
+++ acelib/wh/mystdlib.h Mon Aug 13 12:42:25 2001
@@ -161,7 +161,8 @@
#endif
#if defined(POSIX) || defined(LINUX) || defined(SOLARIS) || defined(SGI) || \
- defined(HP) || defined(WIN32) || defined(INTEL_SOLARIS)
+ defined(HP) || defined(WIN32) || defined(INTEL_SOLARIS) || \
+ defined(FREEBSD)
#ifdef WIN32
#include <mbctype.h>
--- acelib/wh/mydirent.h.orig Mon Jul 16 23:04:45 2001
+++ acelib/wh/mydirent.h Mon Aug 13 12:41:59 2001
@@ -55,7 +55,7 @@
extern char *getwd(char *pathname) ;
#endif /* HP || SOLARIS || WIN32 */
-#if defined (POSIX) || defined(SUN) || defined(SUNSVR4) || defined(SOLARIS) || defined(DEC) || defined(ALPHA) || defined(SGI) || defined(LINUX) || defined(HP) || defined (INTEL_SOLARIS)
+#if defined (POSIX) || defined(SUN) || defined(SUNSVR4) || defined(SOLARIS) || defined(DEC) || defined(ALPHA) || defined(SGI) || defined(LINUX) || defined(HP) || defined (INTEL_SOLARIS) || defined (FREEBSD)
#include <dirent.h>
typedef struct dirent MYDIRENT ;
#endif