mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
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:
@@ -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
|
||||
}
|
||||
|
||||
|
||||
25
net-misc/dibbler/files/dibbler-1.0.1-fno-common.patch
Normal file
25
net-misc/dibbler/files/dibbler-1.0.1-fno-common.patch
Normal 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;
|
||||
|
||||
Reference in New Issue
Block a user