diff options
author | tron <tron@pkgsrc.org> | 2013-06-14 14:46:37 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2013-06-14 14:46:37 +0000 |
commit | bf1ce1eb6f2a17e727828850e40889d11f69503c (patch) | |
tree | 0f33fef74ac2b51f58999aefc0d3df7b9bec796f /lang/nawk/files | |
parent | 75d8b0ebce09469788bff0e67a829761f5aafb35 (diff) | |
download | pkgsrc-bf1ce1eb6f2a17e727828850e40889d11f69503c.tar.gz |
Fix build under Mac OS X (Mountain Lion).
Diffstat (limited to 'lang/nawk/files')
-rw-r--r-- | lang/nawk/files/b.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/nawk/files/b.c b/lang/nawk/files/b.c index 425bc2f96b9..1c65b16a497 100644 --- a/lang/nawk/files/b.c +++ b/lang/nawk/files/b.c @@ -1,4 +1,4 @@ -/* $NetBSD: b.c,v 1.1 2006/07/14 14:23:06 jlam Exp $ */ +/* $NetBSD: b.c,v 1.2 2013/06/14 14:46:37 tron Exp $ */ /**************************************************************** Copyright (C) Lucent Technologies 1997 @@ -720,7 +720,7 @@ Node *unary(Node *np) * to nelson beebe for the suggestion; let's see if it works everywhere. */ -#ifndef HAS_ISBLANK +#if !defined(HAS_ISBLANK) && !defined(__APPLE__) int (isblank)(int c) { |