Gentoo Archives: gentoo-commits

From: "Andreas HAttel (dilfridge)" <dilfridge@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-office/calligra/files: calligra-2.5.0-kexi-automagic.patch
Date: Thu, 30 Aug 2012 11:20:14
Message-Id: 20120830112005.0A57E20C53@flycatcher.gentoo.org
1 dilfridge 12/08/30 11:20:04
2
3 Added: calligra-2.5.0-kexi-automagic.patch
4 Log:
5 Version bump, fixes also bug 431680
6
7 (Portage version: 2.2.0_alpha123/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 app-office/calligra/files/calligra-2.5.0-kexi-automagic.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/calligra/files/calligra-2.5.0-kexi-automagic.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/calligra/files/calligra-2.5.0-kexi-automagic.patch?rev=1.1&content-type=text/plain
14
15 Index: calligra-2.5.0-kexi-automagic.patch
16 ===================================================================
17 diff --git a/kexi/kexidb/drivers/CMakeLists.txt b/kexi/kexidb/drivers/CMakeLists.txt
18 index 917509d..64a600d 100644
19 --- a/kexi/kexidb/drivers/CMakeLists.txt
20 +++ b/kexi/kexidb/drivers/CMakeLists.txt
21 @@ -4,17 +4,17 @@
22 #add_definitions(-DKDE_DEFAULT_DEBUG_AREA=44001)
23
24 IF (MYSQL_FOUND)
25 - add_subdirectory( mySQL )
26 + macro_optional_add_subdirectory( mySQL )
27 ENDIF (MYSQL_FOUND)
28
29 IF (POSTGRESQL_FOUND AND PQXX_FOUND AND PQXX_VERSION VERSION_GREATER PQXX_MIN_VERSION AND PQXX_VERSION VERSION_LESS PQXX_MAX_VERSION)
30 - add_subdirectory(pqxx)
31 + macro_optional_add_subdirectory(pqxx)
32 ENDIF (POSTGRESQL_FOUND AND PQXX_FOUND AND PQXX_VERSION VERSION_GREATER PQXX_MIN_VERSION AND PQXX_VERSION VERSION_LESS PQXX_MAX_VERSION)
33
34 IF (FREETDS_FOUND)
35 - add_subdirectory(sybase)
36 + macro_optional_add_subdirectory(sybase)
37 ENDIF (FREETDS_FOUND)
38
39 IF(XBASE_FOUND)
40 - add_subdirectory(xbase)
41 + macro_optional_add_subdirectory(xbase)
42 ENDIF(XBASE_FOUND)