net-misc/dibbler: fix build with -fno-common

Thanks jer for patch

Closes: https://bugs.gentoo.org/706806
Package-Manager: Portage-2.3.86, Repoman-2.3.20
Signed-off-by: Bernard Cafarelli <voyageur@gentoo.org>
This commit is contained in:
Bernard Cafarelli
2020-01-29 19:26:47 +01:00
parent f5291a8c09
commit bc9b86c732
2 changed files with 27 additions and 1 deletions

View File

@@ -1,4 +1,4 @@
# Copyright 1999-2017 Gentoo Foundation
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="5"
@@ -23,6 +23,7 @@ DOC_CONTENTS="Make sure that you modify client.conf, server.conf and/or relay.co
to suit your needs. They are stored in /etc/dibbler"
src_prepare() {
epatch "${FILESDIR}"/${P}-fno-common.patch
epatch_user
}

View File

@@ -0,0 +1,25 @@
--- a/Port-linux/interface.c
+++ b/Port-linux/interface.c
@@ -43,6 +43,9 @@
#include <linux/sockios.h>
#include <linux/if_ether.h>
+int interface_auto_up;
+int interface_do_message;
+
void daemon_log(int loglevel, const char *fmt,...)
{
char buf[255];
--- a/Port-linux/interface.h
+++ b/Port-linux/interface.h
@@ -23,8 +23,8 @@
extern "C" {
#endif
-int interface_auto_up;
-int interface_do_message;
+extern int interface_auto_up;
+extern int interface_do_message;
typedef enum { IFSTATUS_UP, IFSTATUS_DOWN, IFSTATUS_ERR } interface_status_t;