media-radio/gpredict: Fix build with -fno-common

Closes: https://bugs.gentoo.org/710196
Package-Manager: Portage-2.3.87, Repoman-2.3.20
Signed-off-by: Thomas Beierlein <tomjbe@gentoo.org>
This commit is contained in:
Thomas Beierlein
2020-02-20 14:07:35 +01:00
parent 29d09be2fa
commit bbc4141281
2 changed files with 15 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
diff --git a/src/qth-data.h b/src/qth-data.h
index 264f66f..5c6b2de 100644
--- a/src/qth-data.h
+++ b/src/qth-data.h
@@ -30,7 +30,7 @@ typedef struct {
gint alt; /*!< Altitude above sea level in meters. */
} qth_small_t;
-enum {
+typedef enum {
QTH_STATIC_TYPE = 0,
QTH_GPSD_TYPE
} qth_data_type;

View File

@@ -1,4 +1,4 @@
# Copyright 1999-2018 Gentoo Foundation
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -28,4 +28,5 @@ src_prepare() {
eapply_user
# remove wrong doc location
eapply -p0 "${FILESDIR}/${PN}-2.0-doc.patch"
eapply "${FILESDIR}/${P}-fno-common.patch"
}