bump, fix compilation warning

OK landry@, ajacoutot@
This commit is contained in:
sebastia 2011-04-18 12:39:03 +00:00
parent 066ed3b4b3
commit 6df7e60919
4 changed files with 34 additions and 3 deletions

View File

@ -1,8 +1,9 @@
# $OpenBSD: Makefile,v 1.1.1.1 2010/11/10 17:24:44 sebastia Exp $
# $OpenBSD: Makefile,v 1.2 2011/04/18 12:39:03 sebastia Exp $
COMMENT = precision raster image convolution engine
DISTNAME = PRICE-1.0.0
REVISION = 0
PKGNAME = ${DISTNAME:L}
CATEGORIES = graphics

View File

@ -0,0 +1,15 @@
$OpenBSD: patch-PRCustTraceEdges_h,v 1.1 2011/04/18 12:39:03 sebastia Exp $
include missing header file, fixes build with llvm/clang
--- PRCustTraceEdges.h.orig Wed Apr 6 13:34:09 2011
+++ PRCustTraceEdges.h Wed Apr 6 13:34:23 2011
@@ -11,7 +11,7 @@
#import <AppKit/AppKit.h>
#import "PRProgressAction.h"
#import "PRImage.h"
-
+#import "PRMedian.h"
@interface PRCustTraceEdges : PRProgressAction {

View File

@ -1,9 +1,9 @@
# $OpenBSD: Makefile,v 1.2 2010/10/26 12:39:57 sebastia Exp $
# $OpenBSD: Makefile,v 1.3 2011/04/18 12:39:36 sebastia Exp $
COMMENT= a terminal emulator for GNUstep
DISTNAME= Terminal-0.9.7
REVISION= 0
REVISION= 1
PKGNAME= gnustep-${DISTNAME:L}
CATEGORIES= sysutils

View File

@ -0,0 +1,15 @@
$OpenBSD: patch-TerminalView_m,v 1.1 2011/04/18 12:39:36 sebastia Exp $
fix implicit declaration warnings of forkpty and ioctl
--- TerminalView.m.orig Fri Apr 15 13:05:54 2011
+++ TerminalView.m Fri Apr 15 13:06:12 2011
@@ -41,6 +41,8 @@ activated */
# include <pcap.h>
#elif defined(__OpenBSD__)
# include <termios.h>
+# include <util.h>
+# include <sys/ioctl.h>
#else
# include <termio.h>
#endif