remove patches to unbreak

spotted by espie@, thanks
This commit is contained in:
giovanni 2016-09-05 10:45:01 +00:00
parent abb97cbfca
commit e0f1ea77ff
2 changed files with 0 additions and 26 deletions

View File

@ -1,13 +0,0 @@
$OpenBSD: patch-config_getOsTarget_pl,v 1.1 2014/03/24 21:01:46 landry Exp $
recognize our powerpc target_cpu
--- config/getOsTarget.pl.orig Sun Mar 16 10:06:34 2014
+++ config/getOsTarget.pl Sun Mar 16 10:07:15 2014
@@ -76,7 +76,7 @@ if ($srcCpu =~ /x86[_-]64/i) {
elsif ($srcCpu =~ /i[3456]86/i) {
$targetCpu = "x86";
}
-elsif ($srcCpu =~ /ppc/i) {
+elsif ($srcCpu =~ /powerpc/i) {
$targetCpu = "ppc";
}
elsif ($srcCpu =~ /alpha/i) {

View File

@ -1,13 +0,0 @@
$OpenBSD: patch-ipc_src_Makefile,v 1.1 2014/03/24 21:01:46 landry Exp $
Remove warning not supported by base gcc
--- ipc/src/Makefile.orig Wed Mar 12 22:11:49 2014
+++ ipc/src/Makefile Wed Mar 12 22:11:57 2014
@@ -57,7 +57,7 @@ all: install
$(objfiles): $(source)
- $(CC) $(CFLAGS) -Wno-return-type-c-linkage -c -o $(objfiles) $^
+ $(CC) $(CFLAGS) -c -o $(objfiles) $^
$(libname): $(objfiles)
$(CC) $(LDFLAGS) -o $(libname) $(objfiles)