aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDane Springmeyer2010-07-05 09:55:31 -0700
committerAdam Vandenberg2010-07-05 16:44:58 -0700
commit1787ca960d478f82d3cb654ddbe119f1e63dfe18 (patch)
tree2dd22076e489ab5e13735edb58a92aee0d583748
parentf88d34e4805c69978c709a908b022e940afcc249 (diff)
downloadhomebrew-1787ca960d478f82d3cb654ddbe119f1e63dfe18.tar.bz2
osm2pgsql no longer needs patch as svn breakage was fixed
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
-rw-r--r--Library/Formula/osm2pgsql.rb20
1 files changed, 0 insertions, 20 deletions
diff --git a/Library/Formula/osm2pgsql.rb b/Library/Formula/osm2pgsql.rb
index bdbad1fd0..c85d988a4 100644
--- a/Library/Formula/osm2pgsql.rb
+++ b/Library/Formula/osm2pgsql.rb
@@ -4,10 +4,6 @@ class Osm2pgsql <Formula
head 'http://svn.openstreetmap.org/applications/utils/export/osm2pgsql/', :using => :svn
homepage 'http://wiki.openstreetmap.org/wiki/Osm2pgsql'
- def patches
- { :p0 => DATA }
- end
-
def install
system "./autogen.sh"
system "./configure"
@@ -15,19 +11,3 @@ class Osm2pgsql <Formula
bin.install "osm2pgsql"
end
end
-
-# simple patch needed on osx to find the malloc include
-__END__
-Index: middle-pgsql.c
-===================================================================
---- middle-pgsql.c (revision 21558)
-+++ middle-pgsql.c (working copy)
-@@ -11,7 +11,7 @@
- #include <stdlib.h>
- #include <string.h>
- #include <assert.h>
--#include <malloc.h>
-+#include <malloc/malloc.h>
-
- #ifdef HAVE_PTHREAD
- #include <pthread.h>