File: 010-fix-ftbfs-with-gcc4.3.patch

package info (click to toggle)
eqonomize 1.5.10-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 17,832 kB
  • sloc: cpp: 50,658; xml: 954; makefile: 10; sh: 6
file content (17 lines) | stat: -rw-r--r-- 477 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Description: Fix FTBFS with GCC 4.3 by including <sys/types.h> explicitly
Author: Frank S. Thomas <fst@debian.org>
Bug-Debian: https://bugs.debian.org/455660
Last-Update: 2018-04-01
Index: eqonomize/src/budget.h
===================================================================
--- eqonomize.orig/src/budget.h
+++ eqonomize/src/budget.h
@@ -21,6 +21,8 @@
 #ifndef BUDGET_H
 #define BUDGET_H
 
+#include <sys/types.h>
+
 #include <QList>
 #include <QHash>
 #include <QString>