net-misc/socat: Fix building with USE=-ssl (bug #576270 by Jan Chren (rindeal)).
authorJeroen Roovers <jer@gentoo.org>
Sat, 5 Mar 2016 08:26:40 +0000 (09:26 +0100)
committerJeroen Roovers <jer@gentoo.org>
Sat, 5 Mar 2016 08:26:57 +0000 (09:26 +0100)
Package-Manager: portage-2.2.27

net-misc/socat/files/socat-1.7.3.1-stddef_h.patch [new file with mode: 0644]
net-misc/socat/socat-1.7.3.1.ebuild
net-misc/socat/socat-2.0.0_beta9.ebuild
net-misc/socat/socat-9999.ebuild

diff --git a/net-misc/socat/files/socat-1.7.3.1-stddef_h.patch b/net-misc/socat/files/socat-1.7.3.1-stddef_h.patch
new file mode 100644 (file)
index 0000000..c914a81
--- /dev/null
@@ -0,0 +1,38 @@
+When disabling OpenSSL support, nestlex.c still needs stddef.h which is
+magically included through the OpenSSL headers otherwise.
+
+--- a/configure.in
++++ b/configure.in
+@@ -61,7 +61,7 @@
+ AC_CHECK_HEADERS(inttypes.h)
+ AC_HEADER_SYS_WAIT
+ AC_CHECK_HEADERS(fcntl.h limits.h strings.h sys/param.h sys/ioctl.h sys/time.h syslog.h unistd.h)
+-AC_CHECK_HEADERS(pwd.h grp.h stdint.h sys/types.h poll.h sys/poll.h sys/socket.h sys/uio.h sys/stat.h netdb.h sys/un.h)
++AC_CHECK_HEADERS(pwd.h grp.h stddef.h stdint.h sys/types.h poll.h sys/poll.h sys/socket.h sys/uio.h sys/stat.h netdb.h sys/un.h)
+ AC_CHECK_HEADERS(pty.h)
+ AC_CHECK_HEADERS(netinet/in.h netinet/in_systm.h)
+ AC_CHECK_HEADERS(netinet/ip.h, [], [], [AC_INCLUDES_DEFAULT
+--- a/config.h.in
++++ b/config.h.in
+@@ -189,6 +189,9 @@
+ /* Define if you have the <grp.h> header file.  */
+ #undef HAVE_GRP_H
+ 
++/* Define if you have the <stddef.h> header file.  */
++#undef HAVE_STDDEF_H
++
+ /* Define if you have the <stdint.h> header file.  */
+ #undef HAVE_STDINT_H
+ 
+--- a/sysincludes.h
++++ b/sysincludes.h
+@@ -51,6 +51,9 @@
+ #if HAVE_SYS_TIME_H
+ #include <sys/time.h> /* select(); OpenBSD: struct timespec */
+ #endif
++#if HAVE_STDDEF_H
++#include <stddef.h>
++#endif
+ #if HAVE_STDINT_H
+ #include <stdint.h>   /* uint8_t */
+ #endif
index 998dc35f192994db3482ac54d16fb6841ea9c5e6..e46c58a434385f16af080e6beb6f777365494f6d 100644 (file)
@@ -3,7 +3,7 @@
 # $Id$
 
 EAPI=5
-inherit eutils flag-o-matic toolchain-funcs
+inherit autotools eutils flag-o-matic toolchain-funcs
 
 DESCRIPTION="Multipurpose relay (SOcket CAT)"
 HOMEPAGE="http://www.dest-unreach.org/socat/"
@@ -31,6 +31,9 @@ DOCS=(
 
 src_prepare() {
        epatch "${FILESDIR}"/${PN}-1.7.3.0-filan-build.patch
+       epatch "${FILESDIR}"/${PN}-1.7.3.1-stddef_h.patch
+
+       eautoreconf
 }
 
 src_configure() {
index 1a833198cc0c4db223b1fbcfa23c9f88295f71ae..07429defa38343ce85999b7ec368ef40ce6c6f1a 100644 (file)
@@ -4,7 +4,7 @@
 
 EAPI=5
 
-inherit eutils flag-o-matic toolchain-funcs
+inherit autotools eutils flag-o-matic toolchain-funcs
 
 DESCRIPTION="Multipurpose relay (SOcket CAT)"
 HOMEPAGE="http://www.dest-unreach.org/socat/"
@@ -32,7 +32,11 @@ DOCS=(
 
 src_prepare() {
        epatch "${FILESDIR}"/${PN}-1.7.3.0-filan-build.patch
+       epatch "${FILESDIR}"/${PN}-1.7.3.1-stddef_h.patch
+
        touch doc/${PN}.1 || die
+
+       eautoreconf
 }
 
 src_configure() {
index 9ebf68b4de9d908474bd6a15e89740e821f7e6f1..076b3a140a367a087ec4968909c19f2aa2525aef 100644 (file)
@@ -33,6 +33,9 @@ DOCS=(
 )
 
 src_prepare() {
+       epatch "${FILESDIR}"/${PN}-1.7.3.0-filan-build.patch
+       epatch "${FILESDIR}"/${PN}-1.7.3.1-stddef_h.patch
+
        eautoreconf
 }