summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2014-08-21 06:21:14 +0000
committerwiz <wiz@pkgsrc.org>2014-08-21 06:21:14 +0000
commit4001966915e4478d024d6d7a33e47235750aee29 (patch)
treee768adb3903465ac9ac45daf210b43cdcf67ae6c
parent2822004b354bc9de8a9eadc7e0c70296a6544b77 (diff)
downloadpkgsrc-4001966915e4478d024d6d7a33e47235750aee29.tar.gz
Remove unused patches.
-rw-r--r--devel/astyle/patches/patch-aa28
-rw-r--r--devel/astyle/patches/patch-ac22
2 files changed, 0 insertions, 50 deletions
diff --git a/devel/astyle/patches/patch-aa b/devel/astyle/patches/patch-aa
deleted file mode 100644
index 19bfe799637..00000000000
--- a/devel/astyle/patches/patch-aa
+++ /dev/null
@@ -1,28 +0,0 @@
-$NetBSD: patch-aa,v 1.5 2009/08/25 11:56:34 wiz Exp $
-
---- Makefile.orig 2000-02-11 12:02:10.000000000 +0000
-+++ Makefile
-@@ -1,14 +1,19 @@
- # "Artistic Style" Makefile
-
--CPPFLAGS = -Wall -Wno-sign-compare -O2
-+#CPPFLAGS = -Wall -Wno-sign-compare -O2
- OBJS = ASResource.o ASBeautifier.o ASFormatter.o astyle_main.o
-
-+all: astyle
-+
-+install:
-+ install -s -c astyle ${DESTDIR}${PREFIX}/bin
-+
- astyle: $(OBJS)
-- g++ $(CPPFLAGS) -o astyle $(OBJS)
-+ $(CXX) $(CPPFLAGS) $(LDFLAGS) -o astyle $(OBJS)
-
- .cpp.o:
-- g++ $(CPPFLAGS) -c $<
-+ $(CXX) $(CPPFLAGS) $(CFLAGS) -c $<
- .SUFFIXES: .cpp .c .o
-
- clean:
-- rm *.o
-+ rm *.o astyle
diff --git a/devel/astyle/patches/patch-ac b/devel/astyle/patches/patch-ac
deleted file mode 100644
index 6c004e0aa39..00000000000
--- a/devel/astyle/patches/patch-ac
+++ /dev/null
@@ -1,22 +0,0 @@
-$NetBSD: patch-ac,v 1.4 2013/05/25 16:39:39 shattered Exp $
-
---- astyle_main.cpp.orig 2001-01-20 17:02:14.000000000 +0000
-+++ astyle_main.cpp
-@@ -29,6 +29,8 @@
- #include <fstream>
- #include <string>
- #include <stdio.h>
-+#include <stdlib.h>
-+#include <string.h>
-
-
- #define IS_OPTION(arg,op) ((arg).compare(op)==0)
-@@ -149,7 +151,7 @@ void error(const char *why, const char*
- exit(1);
- }
-
--
-+bool parseOption(ASFormatter &, const string &, const string &);
-
- template<class ITER>
- bool parseOptions(ASFormatter &formatter,