Package: librpcsecgss Version: 0.19-5 Severity: important Tags: patch User: debian-h...@lists.debian.org User-tags: hurd
Hello, librpcsecgss currently FTBFS on hurd-i386, attached is a patch to fix it. Samuel -- System Information: Debian Release: jessie/sid APT prefers testing APT policy: (990, 'testing'), (500, 'unstable'), (500, 'stable'), (1, 'experimental') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 3.12.0 (SMP w/8 CPU cores) Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash -- Samuel <studdud> what the fuck is wtf
--- src/svc_tcp.c 2013-11-09 21:22:12.000000000 +0000 +++ src/svc_tcp.c 2013-11-09 21:21:45.000000000 +0000 @@ -52,7 +52,7 @@ #include <netinet/in_systm.h> #include <netinet/in.h> #include <netinet/ip.h> -#ifndef __linux__ +#if !defined(__linux__) && !defined(__GNU__) #include <netinet/ip_var.h> #endif @@ -262,7 +262,7 @@ #ifdef IP_OPTIONS { -#ifdef __linux__ +#if defined(__linux__) || defined(__GNU__) #define ipopt_list ip_opts struct ip_opts opts; #else