37 lines
1,021 B
Ruby
37 lines
1,021 B
Ruby
require 'formula'
|
|
|
|
class Echoping < Formula
|
|
homepage 'http://echoping.sourceforge.net/'
|
|
url 'https://downloads.sourceforge.net/project/echoping/echoping/6.0.2/echoping-6.0.2.tar.gz'
|
|
sha1 '8b414d1dbc5a0f21a7f2cccb0138aec13117a1a4'
|
|
|
|
depends_on 'popt'
|
|
depends_on 'libidn'
|
|
|
|
# Fixes a DNS issue with header files, taken from Macports
|
|
# https://trac.macports.org/browser/trunk/dports/net/echoping/files/patch-plugins-dns-dns.c.diff
|
|
patch :DATA
|
|
|
|
def install
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
"--config-cache",
|
|
"--prefix=#{prefix}",
|
|
"--mandir=#{man}"
|
|
system "make install"
|
|
end
|
|
end
|
|
|
|
|
|
__END__
|
|
diff --git a/plugins/dns/dns.c b/plugins/dns/dns.c
|
|
index 9730913..966f51a 100644
|
|
--- a/plugins/dns/dns.c
|
|
+++ b/plugins/dns/dns.c
|
|
@@ -9,6 +9,7 @@
|
|
#endif
|
|
#include <netinet/in.h>
|
|
#include <arpa/nameser.h>
|
|
+#include <arpa/nameser_compat.h>
|
|
#include <resolv.h>
|
|
|
|
struct addrinfo name_server;
|