58 lines
1.5 KiB
Ruby
58 lines
1.5 KiB
Ruby
require "formula"
|
|
|
|
class Pcrexx < Formula
|
|
homepage "http://www.daemon.de/PCRE"
|
|
url "http://www.daemon.de/idisk/Apps/pcre++/pcre++-0.9.5.tar.gz"
|
|
sha1 "7cb640555c6adf34bf366139b22f6d1a66bd1fb0"
|
|
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
depends_on "libtool" => :build
|
|
depends_on "pcre"
|
|
|
|
# Fix building with libc++. Patch sent to maintainer.
|
|
patch :DATA
|
|
|
|
def install
|
|
pcre = Formula["pcre"]
|
|
system "autoreconf", "-fvi"
|
|
system "./configure", "--disable-debug",
|
|
"--disable-dependency-tracking",
|
|
"--disable-silent-rules",
|
|
"--prefix=#{prefix}",
|
|
"--with-pcre-lib=#{pcre.opt_lib}",
|
|
"--with-pcre-include=#{pcre.opt_include}"
|
|
system "make", "install"
|
|
|
|
# Pcre++ ships Pcre.3, which causes a conflict with pcre.3 from pcre
|
|
# in case-insensitive file system. Rename it to pcre++.3 to avoid
|
|
# this problem.
|
|
mv man3/'Pcre.3', man3/'pcre++.3'
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
The man page has been renamed to pcre++.3 to avoid conflicts with
|
|
pcre in case-insensitive file system. Please use "man pcre++"
|
|
instead.
|
|
EOS
|
|
end
|
|
end
|
|
|
|
__END__
|
|
diff --git a/libpcre++/pcre++.h b/libpcre++/pcre++.h
|
|
index d80b387..21869fc 100644
|
|
--- a/libpcre++/pcre++.h
|
|
+++ b/libpcre++/pcre++.h
|
|
@@ -47,11 +47,11 @@
|
|
#include <map>
|
|
#include <stdexcept>
|
|
#include <iostream>
|
|
+#include <clocale>
|
|
|
|
|
|
extern "C" {
|
|
#include <pcre.h>
|
|
- #include <locale.h>
|
|
}
|
|
|
|
namespace pcrepp {
|