Gentoo Archives: gentoo-commits

From: "Carsten Lohrke (carlo)" <carlo@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in kde-base/kscd/files: kscd-3.5-strict-fix.diff
Date: Sat, 13 Sep 2008 23:59:45
Message-Id: E1Kef1i-0001MZ-DT@stork.gentoo.org
1 carlo 08/09/13 23:59:42
2
3 Added: kscd-3.5-strict-fix.diff
4 Log:
5 Version bump.
6
7 Revision Changes Path
8 1.1 kde-base/kscd/files/kscd-3.5-strict-fix.diff
9
10 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kscd/files/kscd-3.5-strict-fix.diff?rev=1.1&view=markup
11 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/kscd/files/kscd-3.5-strict-fix.diff?rev=1.1&content-type=text/plain
12
13 Index: kscd-3.5-strict-fix.diff
14 ===================================================================
15 Fixes compiler warning:
16 plat_linux_cdda.c:142: warning: implicit declaration of function 'free'
17 which prevents kdemultimedia to be built with FEATURES="strict stricter"
18
19 Added missing header file.
20
21 Signed-off-by: Peter Huewe <peterhuewe@×××.de>
22 ---
23
24 --- kdemultimedia-3.5.9/kscd/libwm/plat_linux_cdda.c
25 +++ kdemultimedia-3.5.9/kscd/libwm/plat_linux_cdda.c
26 @@ -44,6 +44,7 @@
27 #undef inline
28
29 #include <stdio.h>
30 +#include <stdlib.h>
31 #include <math.h>
32 #include <sys/ioctl.h>
33 #include <sys/types.h>