Codebase list cairo-dock-plug-ins / 26f6088
Fix FTBFS on kFreeBSD Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> Nobuhiro Iwamatsu 10 years ago
3 changed file(s) with 37 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 cairo-dock-plug-ins (3.2.1-3) unstable; urgency=low
1
2 * Fix FTBFS on kFreeBSD.
3 Add patches/0001-Fix-MATCH-as-FreeBSD.patch.
4
5 -- Nobuhiro Iwamatsu <iwamatsu@debian.org> Fri, 05 Jul 2013 12:25:43 +0900
6
07 cairo-dock-plug-ins (3.2.1-2) unstable; urgency=low
18
29 * Only CLI supporting architectures performs dh_clifixperms and dh_clideps.
0 From f72b680550fa3806f81233a4afff83211dc553cd Mon Sep 17 00:00:00 2001
1 From: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
2 Date: Fri, 5 Jul 2013 12:15:26 +0900
3 Subject: [PATCH] Fix MATCH as FreeBSD
4
5 When only MATCH is used, FreeBSD matches kFreeBSD.
6 We need ^ in front of "FreeBSD".
7
8 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
9 ---
10 Dbus/src/CMakeLists.txt | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13 diff --git a/Dbus/src/CMakeLists.txt b/Dbus/src/CMakeLists.txt
14 index 516c9f5..c9d466d 100644
15 --- a/Dbus/src/CMakeLists.txt
16 +++ b/Dbus/src/CMakeLists.txt
17 @@ -28,7 +28,7 @@ add_definitions (-DMY_APPLET_DOCK_VERSION="${dock_version}")
18 add_definitions (-DMY_APPLET_ICON_FILE="icon.svg")
19 add_definitions (-DCD_PLUGINS_DIR="${pluginsdir}")
20
21 -IF (${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD")
22 +IF (${CMAKE_SYSTEM_NAME} MATCHES ^"FreeBSD")
23 set(kvm "kvm")
24 endif()
25
26 --
27 1.7.10.4
28
00 0001-Fix-typo-about-SystemMonitor-Mail-dnd2share-Stack-GV.patch
1 0001-Fix-MATCH-as-FreeBSD.patch