2010-08-12 04:58:14 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Libkml < Formula
|
2010-08-12 04:58:14 +00:00
|
|
|
homepage 'http://code.google.com/p/libkml/'
|
2013-01-29 05:26:32 +00:00
|
|
|
url 'http://libkml.googlecode.com/files/libkml-1.2.0.tar.gz'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 '3fa5acdc2b2185d7f0316d205002b7162f079894'
|
2010-08-12 04:58:14 +00:00
|
|
|
|
2013-09-22 01:47:11 +00:00
|
|
|
head do
|
|
|
|
url 'http://libkml.googlecode.com/svn/trunk/'
|
2012-10-29 01:43:57 +00:00
|
|
|
|
|
|
|
depends_on :automake
|
|
|
|
depends_on :libtool
|
|
|
|
end
|
|
|
|
|
2013-11-09 04:45:03 +00:00
|
|
|
# Fix compilation with clang and gcc 4.7+
|
|
|
|
# https://code.google.com/p/libkml/issues/detail?id=179
|
|
|
|
def patches; DATA; end
|
|
|
|
|
2010-08-12 04:58:14 +00:00
|
|
|
def install
|
2012-10-29 01:43:57 +00:00
|
|
|
if build.head?
|
|
|
|
# The inreplace line below is only required until the patch in #issue 186
|
|
|
|
# is applied. http://code.google.com/p/libkml/issues/detail?id=186
|
|
|
|
# If the patch is applied, this find and replace will be unnecessary, but also
|
|
|
|
# harmless
|
|
|
|
inreplace 'configure.ac', '-Werror', ''
|
2013-02-09 02:11:22 +00:00
|
|
|
|
|
|
|
# Compatibility with Automake 1.13 and newer.
|
|
|
|
inreplace 'configure.ac', 'AM_CONFIG_HEADER', 'AC_CONFIG_HEADER'
|
|
|
|
|
2012-10-29 01:43:57 +00:00
|
|
|
system "./autogen.sh"
|
|
|
|
end
|
|
|
|
|
2010-08-12 04:58:14 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|
2013-11-09 04:45:03 +00:00
|
|
|
|
|
|
|
__END__
|
|
|
|
diff --git a/src/kml/base/file_posix.cc b/src/kml/base/file_posix.cc
|
|
|
|
index 764ae55..8ee9892 100644
|
|
|
|
--- a/src/kml/base/file_posix.cc
|
|
|
|
+++ b/src/kml/base/file_posix.cc
|
|
|
|
@@ -29,6 +29,7 @@
|
|
|
|
#include "kml/base/file.h"
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
+#include <unistd.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|