[Pkg-kde-extras] Bug#638174: strigi: New upstream release available (0.7.5)
Daniel Schaal
farbing at web.de
Wed Aug 17 10:50:01 UTC 2011
Source: strigi
Severity: wishlist
Tags: patch
There is a new upstream version available at
http://sourceforge.net/projects/strigi/
Attached are the following patches to update the package to the new version:
0001-debian-patches-remove-01_remove_FindQt4.cmake_local_.patch:
- FindQt4.cmake was removed upstream
0002-debian-control-add-dbus-x11-and-libgamin-dev-build-d.patch
- add dbus-x11 and libgamin-dev build-dep to enable dbus and fam support
0003-debian-libstreams0.docs-docs-removed-upstream.patch
- docs for libstreams have been removed upstream
0004-debian-.install-add-new-headers-and-cmake-files.patch
- add new headers and cmake files to .install files
0005-debian-control-remove-deskbar-plugins-strigi-not-com.patch
- remove deskbar-plugin-strigi package because it is no longer
compatible with the deskbar-applet version in debian
0006-debian-.symbols-update-amd64-symbols-files.patch
- update the amd64 symbol files.
0007-debian-copyright-don-t-refer-to-symlinked-license.patch
- copyright file refered to symlinked license (GPL -> GPL-2)
0008-update-changelog-for-0.7.5-0r1.patch
- add changelog entry
Thanks,
Daniel Schaal
-- System Information:
Debian Release: wheezy/sid
APT prefers unstable
APT policy: (990, 'unstable'), (102, 'experimental')
Architecture: amd64 (x86_64)
Kernel: Linux 3.0.1-fglrx (SMP w/2 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
-------------- next part --------------
>From 69557c201471a4078f34ce153d7bd78a7cf6840b Mon Sep 17 00:00:00 2001
From: Daniel Schaal <farbing at web.de>
Date: Thu, 11 Aug 2011 21:03:24 +0200
Subject: [PATCH 1/8] debian/patches: remove
01_remove_FindQt4.cmake_local_copy.diff, fixed upstream
---
.../01_remove_FindQt4.cmake_local_copy.diff | 1228 --------------------
debian/patches/series | 1 -
2 files changed, 0 insertions(+), 1229 deletions(-)
delete mode 100644 debian/patches/01_remove_FindQt4.cmake_local_copy.diff
delete mode 100644 debian/patches/series
diff --git a/debian/patches/01_remove_FindQt4.cmake_local_copy.diff b/debian/patches/01_remove_FindQt4.cmake_local_copy.diff
deleted file mode 100644
index d44ae08..0000000
--- a/debian/patches/01_remove_FindQt4.cmake_local_copy.diff
+++ /dev/null
@@ -1,1228 +0,0 @@
-Description: Remove FindQt4.cmake local copy
-Forwarded: not-needed
-Author: Fathi Boudra <fabo at debian.org>
-
---- a/cmake/FindQt4.cmake
-+++ /dev/null
-@@ -1,1221 +0,0 @@
--# - Find QT 4
--# This module can be used to find Qt4.
--# The most important issue is that the Qt4 qmake is available via the system path.
--# This qmake is then used to detect basically everything else.
--# This module defines a number of key variables and macros. First is
--# QT_USE_FILE which is the path to a CMake file that can be included to compile
--# Qt 4 applications and libraries. By default, the QtCore and QtGui
--# libraries are loaded. This behavior can be changed by setting one or more
--# of the following variables to true:
--# QT_DONT_USE_QTCORE
--# QT_DONT_USE_QTGUI
--# QT_USE_QT3SUPPORT
--# QT_USE_QTASSISTANT
--# QT_USE_QTDESIGNER
--# QT_USE_QTMOTIF
--# QT_USE_QTMAIN
--# QT_USE_QTNETWORK
--# QT_USE_QTNSPLUGIN
--# QT_USE_QTOPENGL
--# QT_USE_QTSQL
--# QT_USE_QTXML
--# QT_USE_QTSVG
--# QT_USE_QTTEST
--# QT_USE_QTUITOOLS
--# QT_USE_QTDBUS
--#
--# All the libraries required are stored in a variable called QT_LIBRARIES.
--# Add this variable to your TARGET_LINK_LIBRARIES.
--#
--# macro QT4_WRAP_CPP(outfiles inputfile ... )
--# macro QT4_WRAP_UI(outfiles inputfile ... )
--# macro QT4_ADD_RESOURCES(outfiles inputfile ... )
--# macro QT4_AUTOMOC(inputfile ... )
--# macro QT4_GENERATE_MOC(inputfile outputfile )
--#
--# macro QT4_ADD_DBUS_INTERFACE(outfiles interface basename)
--# create a the interface header and implementation files with the
--# given basename from the given interface xml file and add it to
--# the list of sources
--#
--# macro QT4_ADD_DBUS_INTERFACES(outfiles inputfile ... )
--# create the interface header and implementation files
--# for all listed interface xml files
--# the name will be automatically determined from the name of the xml file
--#
--# macro QT4_ADD_DBUS_INTERFACE_NO_NAMESPACE(outfiles interface basename)
--# create a the interface without namespace header and implementation files with the
--# given basename from the given interface xml file and add it to
--# the list of sources
--#
--# macro QT4_ADD_DBUS_INTERFACES_NO_NAMESPACE(outfiles inputfile ... )
--# create the interface header without namespace and implementation files
--# for all listed interface xml files
--# the name will be automatically determined from the name of the xml file
--#
--# macro QT4_ADD_DBUS_ADAPTOR(outfiles xmlfile parentheader parentclassname [basename] )
--# create a dbus adaptor (header and implementation file) from the xml file
--# describing the interface, and add it to the list of sources. The adaptor
--# forwards the calls to a parent class, defined in parentheader and named
--# parentclassname. The name of the generated files will be
--# <basename>adaptor.{cpp,h} where basename is the basename of the xml file.
--#
--# macro QT4_GENERATE_DBUS_INTERFACE( header [interfacename] )
--# generate the xml interface file from the given header.
--# If the optional argument interfacename is omitted, the name of the
--# interface file is constructed from the basename of the header with
--# the suffix .xml appended.
--#
--# QT_FOUND If false, don't try to use Qt.
--# QT4_FOUND If false, don't try to use Qt 4.
--#
--# QT_QTCORE_FOUND True if QtCore was found.
--# QT_QTGUI_FOUND True if QtGui was found.
--# QT_QT3SUPPORT_FOUND True if Qt3Support was found.
--# QT_QTASSISTANT_FOUND True if QtAssistant was found.
--# QT_QTDBUS_FOUND True if QtDBus was found.
--# QT_QTDESIGNER_FOUND True if QtDesigner was found.
--# QT_QTDESIGNERCOMPONENTS True if QtDesignerComponents was found.
--# QT_QTMOTIF_FOUND True if QtMotif was found.
--# QT_QTNETWORK_FOUND True if QtNetwork was found.
--# QT_QTNSPLUGIN_FOUND True if QtNsPlugin was found.
--# QT_QTOPENGL_FOUND True if QtOpenGL was found.
--# QT_QTSQL_FOUND True if QtSql was found.
--# QT_QTXML_FOUND True if QtXml was found.
--# QT_QTSVG_FOUND True if QtSvg was found.
--# QT_QTSCRIPT_FOUND True if QtScript was found.
--# QT_QTTEST_FOUND True if QtTest was found.
--# QT_QTUITOOLS_FOUND True if QtUiTools was found.
--#
--# QT_DEFINITIONS Definitions to use when compiling code that uses Qt.
--#
--# QT_INCLUDES List of paths to all include directories of
--# Qt4 QT_INCLUDE_DIR and QT_QTCORE_INCLUDE_DIR are
--# always in this variable even if NOTFOUND,
--# all other INCLUDE_DIRS are
--# only added if they are found.
--#
--# QT_INCLUDE_DIR Path to "include" of Qt4
--# QT_QT_INCLUDE_DIR Path to "include/Qt"
--# QT_QT3SUPPORT_INCLUDE_DIR Path to "include/Qt3Support"
--# QT_QTASSISTANT_INCLUDE_DIR Path to "include/QtAssistant"
--# QT_QTCORE_INCLUDE_DIR Path to "include/QtCore"
--# QT_QTDESIGNER_INCLUDE_DIR Path to "include/QtDesigner"
--# QT_QTDESIGNERCOMPONENTS_INCLUDE_DIR Path to "include/QtDesigner"
--# QT_QTDBUS_INCLUDE_DIR Path to "include/QtDBus"
--# QT_QTGUI_INCLUDE_DIR Path to "include/QtGui"
--# QT_QTMOTIF_INCLUDE_DIR Path to "include/QtMotif"
--# QT_QTNETWORK_INCLUDE_DIR Path to "include/QtNetwork"
--# QT_QTNSPLUGIN_INCLUDE_DIR Path to "include/QtNsPlugin"
--# QT_QTOPENGL_INCLUDE_DIR Path to "include/QtOpenGL"
--# QT_QTSQL_INCLUDE_DIR Path to "include/QtSql"
--# QT_QTXML_INCLUDE_DIR Path to "include/QtXml"
--# QT_QTSVG_INCLUDE_DIR Path to "include/QtSvg"
--# QT_QTSCRIPT_INCLUDE_DIR Path to "include/QtScript"
--# QT_QTTEST_INCLUDE_DIR Path to "include/QtTest"
--#
--# QT_LIBRARY_DIR Path to "lib" of Qt4
--#
--# QT_PLUGINS_DIR Path to "plugins" for Qt4
--#
--# For every library of Qt, a QT_QTFOO_LIBRARY variable is defined, with the full path to the library.
--#
--# So there are the following variables:
--# The Qt3Support library: QT_QT3SUPPORT_LIBRARY
--#
--# The QtAssistant library: QT_QTASSISTANT_LIBRARY
--#
--# The QtCore library: QT_QTCORE_LIBRARY
--#
--# The QtDBus library: QT_QTDBUS_LIBRARY
--#
--# The QtDesigner library: QT_QTDESIGNER_LIBRARY
--#
--# The QtDesignerComponents library: QT_QTDESIGNERCOMPONENTS_LIBRARY
--#
--# The QtGui library: QT_QTGUI_LIBRARY
--#
--# The QtMotif library: QT_QTMOTIF_LIBRARY
--#
--# The QtNetwork library: QT_QTNETWORK_LIBRARY
--#
--# The QtNsPLugin library: QT_QTNSPLUGIN_LIBRARY
--#
--# The QtOpenGL library: QT_QTOPENGL_LIBRARY
--#
--# The QtSql library: QT_QTSQL_LIBRARY
--#
--# The QtXml library: QT_QTXML_LIBRARY
--#
--# The QtSvg library: QT_QTSVG_LIBRARY
--#
--# The QtScript library: QT_QTSCRIPT_LIBRARY
--#
--# The QtTest library: QT_QTTEST_LIBRARY
--#
--# The qtmain library for Windows QT_QTMAIN_LIBRARY
--#
--# The QtUiTools library: QT_QTUITOOLS_LIBRARY
--#
--# also defined, but NOT for general use are
--# QT_MOC_EXECUTABLE Where to find the moc tool.
--# QT_UIC_EXECUTABLE Where to find the uic tool.
--# QT_UIC3_EXECUTABLE Where to find the uic3 tool.
--# QT_RCC_EXECUTABLE Where to find the rcc tool
--# QT_DBUSCPP2XML_EXECUTABLE Where to find the qdbuscpp2xml tool.
--# QT_DBUSXML2CPP_EXECUTABLE Where to find the qdbusxml2cpp tool.
--#
--# QT_DOC_DIR Path to "doc" of Qt4
--# QT_MKSPECS_DIR Path to "mkspecs" of Qt4
--#
--#
--# These are around for backwards compatibility
--# they will be set
--# QT_WRAP_CPP Set true if QT_MOC_EXECUTABLE is found
--# QT_WRAP_UI Set true if QT_UIC_EXECUTABLE is found
--#
--# These variables do _NOT_ have any effect anymore (compared to FindQt.cmake)
--# QT_MT_REQUIRED Qt4 is now always multithreaded
--#
--# These variables are set to "" Because Qt structure changed
--# (They make no sense in Qt4)
--# QT_QT_LIBRARY Qt-Library is now split
--
--# Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
--# See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
--
--
--INCLUDE(CheckSymbolExists)
--INCLUDE(MacroAddFileDependencies)
--INCLUDE(MacroPushRequiredVars)
--
--SET(QT_USE_FILE ${CMAKE_ROOT}/Modules/UseQt4.cmake)
--
--SET( QT_DEFINITIONS "")
--
--IF (WIN32)
-- SET(QT_DEFINITIONS -DQT_DLL)
--ENDIF(WIN32)
--
--SET(QT4_INSTALLED_VERSION_TOO_OLD FALSE)
--
--# macro for asking qmake to process pro files
--MACRO(QT_QUERY_QMAKE outvar invar)
-- FILE(WRITE ${CMAKE_CURRENT_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmpQmake/tmp.pro
-- "message(CMAKE_MESSAGE<$$${invar}>)")
--
-- EXECUTE_PROCESS(COMMAND ${QT_QMAKE_EXECUTABLE}
-- WORKING_DIRECTORY
-- ${CMAKE_CURRENT_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmpQmake
-- OUTPUT_VARIABLE _qmake_query_output
-- ERROR_VARIABLE _qmake_query_output )
--
-- FILE(REMOVE_RECURSE
-- "${CMAKE_CURRENT_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmpQmake")
--
-- STRING(REGEX REPLACE ".*CMAKE_MESSAGE<([^>]*).*" "\\1" ${outvar} "${_qmake_query_output}")
--ENDMACRO(QT_QUERY_QMAKE)
--
--# check for qmake
--FIND_PROGRAM(QT_QMAKE_EXECUTABLE NAMES qmake qmake4 qmake-qt4 PATHS
-- "[HKEY_CURRENT_USER\\Software\\Trolltech\\Qt3Versions\\4.0.0;InstallDir]/bin"
-- "[HKEY_CURRENT_USER\\Software\\Trolltech\\Versions\\4.0.0;InstallDir]/bin"
-- $ENV{QTDIR}/bin
--)
--
--IF (QT_QMAKE_EXECUTABLE)
--
-- SET(QT4_QMAKE_FOUND FALSE)
--
-- EXEC_PROGRAM(${QT_QMAKE_EXECUTABLE} ARGS "-query QT_VERSION" OUTPUT_VARIABLE QTVERSION)
--
-- # check for qt3 qmake and then try and find qmake4 or qmake-qt4 in the path
-- IF("${QTVERSION}" MATCHES "Unknown")
-- SET(QT_QMAKE_EXECUTABLE NOTFOUND CACHE FILEPATH "" FORCE)
-- FIND_PROGRAM(QT_QMAKE_EXECUTABLE NAMES qmake4 qmake-qt4 PATHS
-- "[HKEY_CURRENT_USER\\Software\\Trolltech\\Qt3Versions\\4.0.0;InstallDir]/bin"
-- "[HKEY_CURRENT_USER\\Software\\Trolltech\\Versions\\4.0.0;InstallDir]/bin"
-- $ENV{QTDIR}/bin
-- )
-- IF(QT_QMAKE_EXECUTABLE)
-- EXEC_PROGRAM(${QT_QMAKE_EXECUTABLE}
-- ARGS "-query QT_VERSION" OUTPUT_VARIABLE QTVERSION)
-- ENDIF(QT_QMAKE_EXECUTABLE)
-- ENDIF("${QTVERSION}" MATCHES "Unknown")
--
-- # check that we found the Qt4 qmake, Qt3 qmake output won't match here
-- STRING(REGEX MATCH "^[0-9]+\\.[0-9]+\\.[0-9]+" qt_version_tmp "${QTVERSION}")
-- IF (qt_version_tmp)
--
-- # we need at least version 4.0.0
-- IF (NOT QT_MIN_VERSION)
-- SET(QT_MIN_VERSION "4.0.0")
-- ENDIF (NOT QT_MIN_VERSION)
--
-- #now parse the parts of the user given version string into variables
-- STRING(REGEX MATCH "^[0-9]+\\.[0-9]+\\.[0-9]+" req_qt_major_vers "${QT_MIN_VERSION}")
-- IF (NOT req_qt_major_vers)
-- MESSAGE( FATAL_ERROR "Invalid Qt version string given: \"${QT_MIN_VERSION}\", expected e.g. \"4.0.1\"")
-- ENDIF (NOT req_qt_major_vers)
--
-- # now parse the parts of the user given version string into variables
-- STRING(REGEX REPLACE "^([0-9]+)\\.[0-9]+\\.[0-9]+" "\\1" req_qt_major_vers "${QT_MIN_VERSION}")
-- STRING(REGEX REPLACE "^[0-9]+\\.([0-9])+\\.[0-9]+" "\\1" req_qt_minor_vers "${QT_MIN_VERSION}")
-- STRING(REGEX REPLACE "^[0-9]+\\.[0-9]+\\.([0-9]+)" "\\1" req_qt_patch_vers "${QT_MIN_VERSION}")
--
-- IF (NOT req_qt_major_vers EQUAL 4)
-- MESSAGE( FATAL_ERROR "Invalid Qt version string given: \"${QT_MIN_VERSION}\", major version 4 is required, e.g. \"4.0.1\"")
-- ENDIF (NOT req_qt_major_vers EQUAL 4)
--
-- # and now the version string given by qmake
-- STRING(REGEX REPLACE "^([0-9]+)\\.[0-9]+\\.[0-9]+.*" "\\1" found_qt_major_vers "${QTVERSION}")
-- STRING(REGEX REPLACE "^[0-9]+\\.([0-9])+\\.[0-9]+.*" "\\1" found_qt_minor_vers "${QTVERSION}")
-- STRING(REGEX REPLACE "^[0-9]+\\.[0-9]+\\.([0-9]+).*" "\\1" found_qt_patch_vers "${QTVERSION}")
--
-- # compute an overall version number which can be compared at once
-- MATH(EXPR req_vers "${req_qt_major_vers}*10000 + ${req_qt_minor_vers}*100 + ${req_qt_patch_vers}")
-- MATH(EXPR found_vers "${found_qt_major_vers}*10000 + ${found_qt_minor_vers}*100 + ${found_qt_patch_vers}")
--
-- IF (found_vers LESS req_vers)
-- SET(QT4_QMAKE_FOUND FALSE)
-- SET(QT4_INSTALLED_VERSION_TOO_OLD TRUE)
-- ELSE (found_vers LESS req_vers)
-- SET(QT4_QMAKE_FOUND TRUE)
-- ENDIF (found_vers LESS req_vers)
-- ENDIF (qt_version_tmp)
--
--ENDIF (QT_QMAKE_EXECUTABLE)
--
--IF (QT4_QMAKE_FOUND)
--
-- # ask qmake for the library dir
-- # Set QT_LIBRARY_DIR
-- IF (NOT QT_LIBRARY_DIR)
-- EXEC_PROGRAM( ${QT_QMAKE_EXECUTABLE}
-- ARGS "-query QT_INSTALL_LIBS"
-- OUTPUT_VARIABLE QT_LIBRARY_DIR_TMP )
-- IF(EXISTS "${QT_LIBRARY_DIR_TMP}")
-- SET(QT_LIBRARY_DIR ${QT_LIBRARY_DIR_TMP} CACHE PATH "Qt library dir")
-- ELSE(EXISTS "${QT_LIBRARY_DIR_TMP}")
-- MESSAGE("Warning: QT_QMAKE_EXECUTABLE reported QT_INSTALL_LIBS as ${QT_LIBRARY_DIR_TMP}")
-- MESSAGE("Warning: ${QT_LIBRARY_DIR_TMP} does NOT exist, Qt must NOT be installed correctly.")
-- ENDIF(EXISTS "${QT_LIBRARY_DIR_TMP}")
-- ENDIF(NOT QT_LIBRARY_DIR)
--
-- IF (APPLE)
-- IF (EXISTS ${QT_LIBRARY_DIR}/QtCore.framework)
-- SET(QT_USE_FRAMEWORKS ON
-- CACHE BOOL "Set to ON if Qt build uses frameworks.")
-- ELSE (EXISTS ${QT_LIBRARY_DIR}/QtCore.framework)
-- SET(QT_USE_FRAMEWORKS OFF
-- CACHE BOOL "Set to ON if Qt build uses frameworks.")
-- ENDIF (EXISTS ${QT_LIBRARY_DIR}/QtCore.framework)
--
-- MARK_AS_ADVANCED(QT_USE_FRAMEWORKS)
-- ENDIF (APPLE)
--
-- # ask qmake for the binary dir
-- IF (NOT QT_BINARY_DIR)
-- EXEC_PROGRAM(${QT_QMAKE_EXECUTABLE}
-- ARGS "-query QT_INSTALL_BINS"
-- OUTPUT_VARIABLE qt_bins )
-- SET(QT_BINARY_DIR ${qt_bins} CACHE INTERNAL "")
-- ENDIF (NOT QT_BINARY_DIR)
--
-- # ask qmake for the include dir
-- IF (NOT QT_HEADERS_DIR)
-- EXEC_PROGRAM( ${QT_QMAKE_EXECUTABLE}
-- ARGS "-query QT_INSTALL_HEADERS"
-- OUTPUT_VARIABLE qt_headers )
-- SET(QT_HEADERS_DIR ${qt_headers} CACHE INTERNAL "")
-- ENDIF(NOT QT_HEADERS_DIR)
--
--
-- # ask qmake for the documentation directory
-- IF (NOT QT_DOC_DIR)
-- EXEC_PROGRAM( ${QT_QMAKE_EXECUTABLE}
-- ARGS "-query QT_INSTALL_DOCS"
-- OUTPUT_VARIABLE qt_doc_dir )
-- SET(QT_DOC_DIR ${qt_doc_dir} CACHE PATH "The location of the Qt docs")
-- ENDIF (NOT QT_DOC_DIR)
--
-- # ask qmake for the mkspecs directory
-- IF (NOT QT_MKSPECS_DIR)
-- EXEC_PROGRAM( ${QT_QMAKE_EXECUTABLE}
-- ARGS "-query QMAKE_MKSPECS"
-- OUTPUT_VARIABLE qt_mkspecs_dir )
-- SET(QT_MKSPECS_DIR ${qt_mkspecs_dir} CACHE PATH "The location of the Qt mkspecs")
-- ENDIF (NOT QT_MKSPECS_DIR)
--
-- # ask qmake for the plugins directory
-- IF (NOT QT_PLUGINS_DIR)
-- EXEC_PROGRAM( ${QT_QMAKE_EXECUTABLE}
-- ARGS "-query QT_INSTALL_PLUGINS"
-- OUTPUT_VARIABLE qt_plugins_dir )
-- SET(QT_PLUGINS_DIR ${qt_plugins_dir} CACHE PATH "The location of the Qt plugins")
-- ENDIF (NOT QT_PLUGINS_DIR)
-- ########################################
-- #
-- # Setting the INCLUDE-Variables
-- #
-- ########################################
--
-- FIND_PATH(QT_QTCORE_INCLUDE_DIR QtGlobal
-- ${QT_HEADERS_DIR}/QtCore
-- ${QT_LIBRARY_DIR}/QtCore.framework/Headers
-- NO_DEFAULT_PATH
-- )
--
-- # Set QT_INCLUDE_DIR by removine "/QtCore" in the string ${QT_QTCORE_INCLUDE_DIR}
-- IF( QT_QTCORE_INCLUDE_DIR AND NOT QT_INCLUDE_DIR)
-- IF (QT_USE_FRAMEWORKS)
-- SET(QT_INCLUDE_DIR ${QT_HEADERS_DIR})
-- ELSE (QT_USE_FRAMEWORKS)
-- STRING( REGEX REPLACE "/QtCore$" "" qt4_include_dir ${QT_QTCORE_INCLUDE_DIR})
-- SET( QT_INCLUDE_DIR ${qt4_include_dir} CACHE PATH "")
-- ENDIF (QT_USE_FRAMEWORKS)
-- ENDIF( QT_QTCORE_INCLUDE_DIR AND NOT QT_INCLUDE_DIR)
--
-- IF( NOT QT_INCLUDE_DIR)
-- IF( NOT Qt4_FIND_QUIETLY AND Qt4_FIND_REQUIRED)
-- MESSAGE( FATAL_ERROR "Could NOT find QtGlobal header")
-- ENDIF( NOT Qt4_FIND_QUIETLY AND Qt4_FIND_REQUIRED)
-- ENDIF( NOT QT_INCLUDE_DIR)
--
-- #############################################
-- #
-- # Find out what window system we're using
-- #
-- #############################################
-- # Save required includes and required_flags variables
-- macro_push_required_vars()
-- # Add QT_INCLUDE_DIR to CMAKE_REQUIRED_INCLUDES
-- SET(CMAKE_REQUIRED_INCLUDES "${CMAKE_REQUIRED_INCLUDES};${QT_INCLUDE_DIR}")
-- # On Mac OS X when Qt has framework support, also add the framework path
-- IF( QT_USE_FRAMEWORKS )
-- SET(CMAKE_REQUIRED_FLAGS "-F${QT_LIBRARY_DIR} ")
-- ENDIF( QT_USE_FRAMEWORKS )
-- # Check for Window system symbols (note: only one should end up being set)
-- CHECK_SYMBOL_EXISTS(Q_WS_X11 "QtCore/qglobal.h" Q_WS_X11)
-- CHECK_SYMBOL_EXISTS(Q_WS_WIN "QtCore/qglobal.h" Q_WS_WIN)
-- CHECK_SYMBOL_EXISTS(Q_WS_QWS "QtCore/qglobal.h" Q_WS_QWS)
-- CHECK_SYMBOL_EXISTS(Q_WS_MAC "QtCore/qglobal.h" Q_WS_MAC)
--
-- IF (QT_QTCOPY_REQUIRED)
-- CHECK_SYMBOL_EXISTS(QT_IS_QTCOPY "QtCore/qglobal.h" QT_KDE_QT_COPY)
-- IF (NOT QT_IS_QTCOPY)
-- MESSAGE(FATAL_ERROR "qt-copy is required, but hasn't been found")
-- ENDIF (NOT QT_IS_QTCOPY)
-- ENDIF (QT_QTCOPY_REQUIRED)
--
-- # Restore CMAKE_REQUIRED_INCLUDES+CMAKE_REQUIRED_FLAGS variables
-- macro_pop_required_vars()
-- #
-- #############################################
--
-- IF (QT_USE_FRAMEWORKS)
-- SET(QT_DEFINITIONS ${QT_DEFINITIONS} -F${QT_LIBRARY_DIR} -L${QT_LIBRARY_DIR} )
-- ENDIF (QT_USE_FRAMEWORKS)
--
-- # Set QT_QT3SUPPORT_INCLUDE_DIR
-- FIND_PATH(QT_QT3SUPPORT_INCLUDE_DIR Qt3Support
-- PATHS
-- ${QT_INCLUDE_DIR}/Qt3Support
-- ${QT_LIBRARY_DIR}/Qt3Support.framework/Headers
-- NO_DEFAULT_PATH
-- )
--
-- # Set QT_QT_INCLUDE_DIR
-- FIND_PATH(QT_QT_INCLUDE_DIR qglobal.h
-- PATHS
-- ${QT_INCLUDE_DIR}/Qt
-- ${QT_LIBRARY_DIR}/QtCore.framework/Headers
-- NO_DEFAULT_PATH
-- )
--
-- # Set QT_QTGUI_INCLUDE_DIR
-- FIND_PATH(QT_QTGUI_INCLUDE_DIR QtGui
-- PATHS
-- ${QT_INCLUDE_DIR}/QtGui
-- ${QT_LIBRARY_DIR}/QtGui.framework/Headers
-- NO_DEFAULT_PATH
-- )
--
-- # Set QT_QTSVG_INCLUDE_DIR
-- FIND_PATH(QT_QTSVG_INCLUDE_DIR QtSvg
-- PATHS
-- ${QT_INCLUDE_DIR}/QtSvg
-- ${QT_LIBRARY_DIR}/QtSvg.framework/Headers
-- NO_DEFAULT_PATH
-- )
--
-- # Set QT_QTSVG_INCLUDE_DIR
-- FIND_PATH(QT_QTSCRIPT_INCLUDE_DIR QtScript
-- PATHS
-- ${QT_INCLUDE_DIR}/QtScript
-- ${QT_LIBRARY_DIR}/QtScript.framework/Headers
-- NO_DEFAULT_PATH
-- )
--
-- # Set QT_QTTEST_INCLUDE_DIR
-- FIND_PATH(QT_QTTEST_INCLUDE_DIR QtTest
-- PATHS
-- ${QT_INCLUDE_DIR}/QtTest
-- ${QT_LIBRARY_DIR}/QtTest.framework/Headers
-- NO_DEFAULT_PATH
-- )
--
-- # Set QT_QTUITOOLS_INCLUDE_DIR
-- FIND_PATH(QT_QTUITOOLS_INCLUDE_DIR QtUiTools
-- PATHS
-- ${QT_INCLUDE_DIR}/QtUiTools
-- ${QT_LIBRARY_DIR}/QtUiTools.framework/Headers
-- NO_DEFAULT_PATH
-- )
--
--
--
-- # Set QT_QTMOTIF_INCLUDE_DIR
-- IF(Q_WS_X11)
-- FIND_PATH(QT_QTMOTIF_INCLUDE_DIR QtMotif PATHS ${QT_INCLUDE_DIR}/QtMotif NO_DEFAULT_PATH )
-- ENDIF(Q_WS_X11)
--
-- # Set QT_QTNETWORK_INCLUDE_DIR
-- FIND_PATH(QT_QTNETWORK_INCLUDE_DIR QtNetwork
-- PATHS
-- ${QT_INCLUDE_DIR}/QtNetwork
-- ${QT_LIBRARY_DIR}/QtNetwork.framework/Headers
-- NO_DEFAULT_PATH
-- )
--
-- # Set QT_QTNSPLUGIN_INCLUDE_DIR
-- FIND_PATH(QT_QTNSPLUGIN_INCLUDE_DIR QtNsPlugin
-- PATHS
-- ${QT_INCLUDE_DIR}/QtNsPlugin
-- ${QT_LIBRARY_DIR}/QtNsPlugin.framework/Headers
-- NO_DEFAULT_PATH
-- )
--
-- # Set QT_QTOPENGL_INCLUDE_DIR
-- FIND_PATH(QT_QTOPENGL_INCLUDE_DIR QtOpenGL
-- PATHS
-- ${QT_INCLUDE_DIR}/QtOpenGL
-- ${QT_LIBRARY_DIR}/QtOpenGL.framework/Headers
-- NO_DEFAULT_PATH
-- )
--
-- # Set QT_QTSQL_INCLUDE_DIR
-- FIND_PATH(QT_QTSQL_INCLUDE_DIR QtSql
-- PATHS
-- ${QT_INCLUDE_DIR}/QtSql
-- ${QT_LIBRARY_DIR}/QtSql.framework/Headers
-- NO_DEFAULT_PATH
-- )
--
-- # Set QT_QTXML_INCLUDE_DIR
-- FIND_PATH(QT_QTXML_INCLUDE_DIR QtXml
-- PATHS
-- ${QT_INCLUDE_DIR}/QtXml
-- ${QT_LIBRARY_DIR}/QtXml.framework/Headers
-- NO_DEFAULT_PATH
-- )
--
-- # Set QT_QTASSISTANT_INCLUDE_DIR
-- FIND_PATH(QT_QTASSISTANT_INCLUDE_DIR QtAssistant
-- PATHS
-- ${QT_INCLUDE_DIR}/QtAssistant
-- ${QT_HEADERS_DIR}/QtAssistant
-- NO_DEFAULT_PATH
-- )
--
-- # Set QT_QTDESIGNER_INCLUDE_DIR
-- FIND_PATH(QT_QTDESIGNER_INCLUDE_DIR QDesignerComponents
-- PATHS
-- ${QT_INCLUDE_DIR}/QtDesigner
-- ${QT_HEADERS_DIR}/QtDesigner
-- NO_DEFAULT_PATH
-- )
--
-- # Set QT_QTDESIGNERCOMPONENTS_INCLUDE_DIR
-- FIND_PATH(QT_QTDESIGNERCOMPONENTS_INCLUDE_DIR QDesignerComponents
-- PATHS
-- ${QT_INCLUDE_DIR}/QtDesigner
-- ${QT_HEADERS_DIR}/QtDesigner
-- NO_DEFAULT_PATH
-- )
--
--
-- # Set QT_QTDBUS_INCLUDE_DIR
-- FIND_PATH(QT_QTDBUS_INCLUDE_DIR QtDBus
-- PATHS
-- ${QT_INCLUDE_DIR}/QtDBus
-- ${QT_HEADERS_DIR}/QtDBus
-- NO_DEFAULT_PATH
-- )
--
-- # Make variables changeble to the advanced user
-- MARK_AS_ADVANCED( QT_LIBRARY_DIR QT_INCLUDE_DIR QT_QT_INCLUDE_DIR QT_DOC_DIR QT_MKSPECS_DIR QT_PLUGINS_DIR)
--
-- # Set QT_INCLUDES
-- SET( QT_INCLUDES ${QT_INCLUDE_DIR} ${QT_QT_INCLUDE_DIR} ${QT_MKSPECS_DIR}/default )
--
--
-- ########################################
-- #
-- # Setting the LIBRARY-Variables
-- #
-- ########################################
--
-- IF (QT_USE_FRAMEWORKS)
-- # If FIND_LIBRARY found libraries in Apple frameworks, we would NOT have
-- # to jump through these hoops.
-- IF(EXISTS ${QT_LIBRARY_DIR}/QtCore.framework)
-- SET(QT_QTCORE_FOUND TRUE)
-- SET(QT_QTCORE_LIBRARY "-F${QT_LIBRARY_DIR} -framework QtCore" CACHE STRING "The QtCore library.")
-- ELSE(EXISTS ${QT_LIBRARY_DIR}/QtCore.framework)
-- SET(QT_QTCORE_FOUND FALSE)
-- ENDIF(EXISTS ${QT_LIBRARY_DIR}/QtCore.framework)
--
-- IF(EXISTS ${QT_LIBRARY_DIR}/QtGui.framework)
-- SET(QT_QTGUI_FOUND TRUE)
-- SET(QT_QTGUI_LIBRARY "-F${QT_LIBRARY_DIR} -framework QtGui" CACHE STRING "The QtGui library.")
-- ELSE(EXISTS ${QT_LIBRARY_DIR}/QtGui.framework)
-- SET(QT_QTGUI_FOUND FALSE)
-- ENDIF(EXISTS ${QT_LIBRARY_DIR}/QtGui.framework)
--
-- IF(EXISTS ${QT_LIBRARY_DIR}/Qt3Support.framework)
-- SET(QT_QT3SUPPORT_FOUND TRUE)
-- SET(QT_QT3SUPPORT_LIBRARY "-F${QT_LIBRARY_DIR} -framework Qt3Support" CACHE STRING "The Qt3Support library.")
-- ELSE(EXISTS ${QT_LIBRARY_DIR}/Qt3Support.framework)
-- SET(QT_QT3SUPPORT_FOUND FALSE)
-- ENDIF(EXISTS ${QT_LIBRARY_DIR}/Qt3Support.framework)
--
-- IF(EXISTS ${QT_LIBRARY_DIR}/QtNetwork.framework)
-- SET(QT_QTNETWORK_FOUND TRUE)
-- SET(QT_QTNETWORK_LIBRARY "-F${QT_LIBRARY_DIR} -framework QtNetwork" CACHE STRING "The QtNetwork library.")
-- ELSE(EXISTS ${QT_LIBRARY_DIR}/QtNetwork.framework)
-- SET(QT_QTNETWORK_FOUND FALSE)
-- ENDIF(EXISTS ${QT_LIBRARY_DIR}/QtNetwork.framework)
--
-- IF(EXISTS ${QT_LIBRARY_DIR}/QtOpenGL.framework)
-- SET(QT_QTOPENGL_FOUND TRUE)
-- SET(QT_QTOPENGL_LIBRARY "-F${QT_LIBRARY_DIR} -framework QtOpenGL" CACHE STRING "The QtOpenGL library.")
-- ELSE(EXISTS ${QT_LIBRARY_DIR}/QtOpenGL.framework)
-- SET(QT_QTOPENGL_FOUND FALSE)
-- ENDIF(EXISTS ${QT_LIBRARY_DIR}/QtOpenGL.framework)
--
-- IF(EXISTS ${QT_LIBRARY_DIR}/QtSql.framework)
-- SET(QT_QTSQL_FOUND TRUE)
-- SET(QT_QTSQL_LIBRARY "-F${QT_LIBRARY_DIR} -framework QtSql" CACHE STRING "The QtSql library.")
-- ELSE(EXISTS ${QT_LIBRARY_DIR}/QtSql.framework)
-- SET(QT_QTSQL_FOUND FALSE)
-- ENDIF(EXISTS ${QT_LIBRARY_DIR}/QtSql.framework)
--
-- IF(EXISTS ${QT_LIBRARY_DIR}/QtXml.framework)
-- SET(QT_QTXML_FOUND TRUE)
-- SET(QT_QTXML_LIBRARY "-F${QT_LIBRARY_DIR} -framework QtXml" CACHE STRING "The QtXml library.")
-- ELSE(EXISTS ${QT_LIBRARY_DIR}/QtXml.framework)
-- SET(QT_QTXML_FOUND FALSE)
-- ENDIF(EXISTS ${QT_LIBRARY_DIR}/QtXml.framework)
--
-- IF(EXISTS ${QT_LIBRARY_DIR}/QtSvg.framework)
-- SET(QT_QTSVG_FOUND TRUE)
-- SET(QT_QTSVG_LIBRARY "-F${QT_LIBRARY_DIR} -framework QtSvg" CACHE STRING "The QtSvg library.")
-- ELSE(EXISTS ${QT_LIBRARY_DIR}/QtSvg.framework)
-- SET(QT_QTSVG_FOUND FALSE)
-- ENDIF(EXISTS ${QT_LIBRARY_DIR}/QtSvg.framework)
--
-- IF(EXISTS ${QT_LIBRARY_DIR}/QtDBus.framework)
-- SET(QT_QTDBUS_FOUND TRUE)
-- SET(QT_QTDBUS_LIBRARY "-F${QT_LIBRARY_DIR} -framework QtDBus" CACHE STRING "The QtDBus library.")
-- ELSE(EXISTS ${QT_LIBRARY_DIR}/QtDBus.framework)
-- SET(QT_QTDBUS_FOUND FALSE)
-- ENDIF(EXISTS ${QT_LIBRARY_DIR}/QtDBus.framework)
--
-- IF(EXISTS ${QT_LIBRARY_DIR}/QtTest.framework)
-- SET(QT_QTTEST_FOUND TRUE)
-- SET(QT_QTTEST_LIBRARY "-F${QT_LIBRARY_DIR} -framework QtTest" CACHE STRING "The QtTest library.")
-- ELSE(EXISTS ${QT_LIBRARY_DIR}/QtTest.framework)
-- SET(QT_QTTEST_FOUND FALSE)
-- ENDIF(EXISTS ${QT_LIBRARY_DIR}/QtTest.framework)
--
-- # WTF? why don't we have frameworks? :P
-- # Set QT_QTUITOOLS_LIBRARY
-- FIND_LIBRARY(QT_QTUITOOLS_LIBRARY NAMES QtUiTools QtUiTools4 PATHS ${QT_LIBRARY_DIR} )
-- # Set QT_QTSCRIPT_LIBRARY
-- FIND_LIBRARY(QT_QTSCRIPT_LIBRARY NAMES QtScript QtScript4 PATHS ${QT_LIBRARY_DIR} )
--
-- ELSE (QT_USE_FRAMEWORKS)
--
-- # Set QT_QTCORE_LIBRARY by searching for a lib with "QtCore." as part of the filename
-- FIND_LIBRARY(QT_QTCORE_LIBRARY NAMES QtCore QtCore4 QtCored4 PATHS ${QT_LIBRARY_DIR} NO_DEFAULT_PATH )
--
-- # Set QT_QT3SUPPORT_LIBRARY
-- FIND_LIBRARY(QT_QT3SUPPORT_LIBRARY NAMES Qt3Support Qt3Support4 Qt3Supportd4 PATHS ${QT_LIBRARY_DIR} NO_DEFAULT_PATH)
--
-- # Set QT_QTGUI_LIBRARY
-- FIND_LIBRARY(QT_QTGUI_LIBRARY NAMES QtGui QtGui4 QtGuid4 PATHS ${QT_LIBRARY_DIR} NO_DEFAULT_PATH)
--
-- # Set QT_QTMOTIF_LIBRARY
-- IF(Q_WS_X11)
-- FIND_LIBRARY(QT_QTMOTIF_LIBRARY NAMES QtMotif PATHS ${QT_LIBRARY_DIR} NO_DEFAULT_PATH)
-- ENDIF(Q_WS_X11)
--
-- # Set QT_QTNETWORK_LIBRARY
-- FIND_LIBRARY(QT_QTNETWORK_LIBRARY NAMES QtNetwork QtNetwork4 QtNetworkd4 PATHS ${QT_LIBRARY_DIR} NO_DEFAULT_PATH)
--
-- # Set QT_QTNSPLUGIN_LIBRARY
-- FIND_LIBRARY(QT_QTNSPLUGIN_LIBRARY NAMES QtNsPlugin PATHS ${QT_LIBRARY_DIR} NO_DEFAULT_PATH)
--
-- # Set QT_QTOPENGL_LIBRARY
-- FIND_LIBRARY(QT_QTOPENGL_LIBRARY NAMES QtOpenGL QtOpenGL4 QtOpenGLd4 PATHS ${QT_LIBRARY_DIR} NO_DEFAULT_PATH)
--
-- # Set QT_QTSQL_LIBRARY
-- FIND_LIBRARY(QT_QTSQL_LIBRARY NAMES QtSql QtSql4 QtSqld4 PATHS ${QT_LIBRARY_DIR} NO_DEFAULT_PATH)
--
-- # Set QT_QTXML_LIBRARY
-- FIND_LIBRARY(QT_QTXML_LIBRARY NAMES QtXml QtXml4 QtXmld4 PATHS ${QT_LIBRARY_DIR} NO_DEFAULT_PATH)
--
-- # Set QT_QTSVG_LIBRARY
-- FIND_LIBRARY(QT_QTSVG_LIBRARY NAMES QtSvg QtSvg4 QtSvgd4 PATHS ${QT_LIBRARY_DIR} NO_DEFAULT_PATH)
--
-- # Set QT_QTSCRIPT_LIBRARY
-- FIND_LIBRARY(QT_QTSCRIPT_LIBRARY NAMES QtScript QtScript4 QtScriptd4 PATHS ${QT_LIBRARY_DIR} NO_DEFAULT_PATH)
--
-- # Set QT_QTUITOOLS_LIBRARY
-- FIND_LIBRARY(QT_QTUITOOLS_LIBRARY NAMES QtUiTools QtUiTools4 QtUiToolsd4 PATHS ${QT_LIBRARY_DIR} NO_DEFAULT_PATH)
--
-- # Set QT_QTTEST_LIBRARY
-- FIND_LIBRARY(QT_QTTEST_LIBRARY NAMES QtTest QtTest4 QtTestd4 PATHS ${QT_LIBRARY_DIR} NO_DEFAULT_PATH)
--
-- FIND_LIBRARY(QT_QTDBUS_LIBRARY NAMES QtDBus QtDBus4 QtDBusd4 PATHS ${QT_LIBRARY_DIR} NO_DEFAULT_PATH)
--
-- IF(MSVC)
-- FIND_LIBRARY(QT_QTCORE_LIBRARY_RELEASE NAMES QtCore4 PATHS ${QT_LIBRARY_DIR} NO_DEFAULT_PATH)
-- FIND_LIBRARY(QT_QTCORE_LIBRARY_DEBUG NAMES QtCored4 PATHS ${QT_LIBRARY_DIR} NO_DEFAULT_PATH)
-- FIND_LIBRARY(QT_QT3SUPPORT_LIBRARY_RELEASE NAMES Qt3Support4 PATHS ${QT_LIBRARY_DIR} NO_DEFAULT_PATH)
-- FIND_LIBRARY(QT_QT3SUPPORT_LIBRARY_DEBUG NAMES Qt3Supportd4 PATHS ${QT_LIBRARY_DIR} NO_DEFAULT_PATH)
-- FIND_LIBRARY(QT_QTGUI_LIBRARY_RELEASE NAMES QtGui4 PATHS ${QT_LIBRARY_DIR} NO_DEFAULT_PATH)
-- FIND_LIBRARY(QT_QTGUI_LIBRARY_DEBUG NAMES QtGuid4 PATHS ${QT_LIBRARY_DIR} NO_DEFAULT_PATH)
-- FIND_LIBRARY(QT_QTNETWORK_LIBRARY_RELEASE NAMES QtNetwork4 PATHS ${QT_LIBRARY_DIR} NO_DEFAULT_PATH)
-- FIND_LIBRARY(QT_QTNETWORK_LIBRARY_DEBUG NAMES QtNetworkd4 PATHS ${QT_LIBRARY_DIR} NO_DEFAULT_PATH)
-- FIND_LIBRARY(QT_QTOPENGL_LIBRARY_RELEASE NAMES QtOpenGL4 PATHS ${QT_LIBRARY_DIR} NO_DEFAULT_PATH)
-- FIND_LIBRARY(QT_QTOPENGL_LIBRARY_DEBUG NAMES QtOpenGLd4 PATHS ${QT_LIBRARY_DIR} NO_DEFAULT_PATH)
-- FIND_LIBRARY(QT_QTSQL_LIBRARY_RELEASE NAMES QtSql4 PATHS ${QT_LIBRARY_DIR} NO_DEFAULT_PATH)
-- FIND_LIBRARY(QT_QTSQL_LIBRARY_DEBUG NAMES QtSqld4 PATHS ${QT_LIBRARY_DIR} NO_DEFAULT_PATH)
-- FIND_LIBRARY(QT_QTXML_LIBRARY_RELEASE NAMES QtXml4 PATHS ${QT_LIBRARY_DIR} NO_DEFAULT_PATH)
-- FIND_LIBRARY(QT_QTXML_LIBRARY_DEBUG NAMES QtXmld4 PATHS ${QT_LIBRARY_DIR} NO_DEFAULT_PATH)
-- FIND_LIBRARY(QT_QTSVG_LIBRARY_RELEASE NAMES QtSvg4 PATHS ${QT_LIBRARY_DIR} NO_DEFAULT_PATH)
-- FIND_LIBRARY(QT_QTSVG_LIBRARY_DEBUG NAMES QtSvgd4 PATHS ${QT_LIBRARY_DIR} NO_DEFAULT_PATH)
-- FIND_LIBRARY(QT_QTSCRIPT_LIBRARY_RELEASE NAMES QtScript4 PATHS ${QT_LIBRARY_DIR} NO_DEFAULT_PATH)
-- FIND_LIBRARY(QT_QTSCRIPT_LIBRARY_DEBUG NAMES QtScriptd4 PATHS ${QT_LIBRARY_DIR} NO_DEFAULT_PATH)
-- FIND_LIBRARY(QT_QTUITOOLS_LIBRARY_RELEASE NAMES QtUiTools QtUiTools4 PATHS ${QT_LIBRARY_DIR} NO_DEFAULT_PATH)
-- FIND_LIBRARY(QT_QTUITOOLS_LIBRARY_DEBUG NAMES QtUiToolsd QtUiToolsd4 PATHS ${QT_LIBRARY_DIR} NO_DEFAULT_PATH)
-- FIND_LIBRARY(QT_QTTEST_LIBRARY_RELEASE NAMES QtTest4 PATHS ${QT_LIBRARY_DIR} NO_DEFAULT_PATH)
-- FIND_LIBRARY(QT_QTTEST_LIBRARY_DEBUG NAMES QtTestd4 PATHS ${QT_LIBRARY_DIR} NO_DEFAULT_PATH)
-- FIND_LIBRARY(QT_QTDBUS_LIBRARY_RELEASE NAMES QtDBus4 PATHS ${QT_LIBRARY_DIR} NO_DEFAULT_PATH)
-- FIND_LIBRARY(QT_QTDBUS_LIBRARY_DEBUG NAMES QtDBusd4 PATHS ${QT_LIBRARY_DIR} NO_DEFAULT_PATH)
-- FIND_LIBRARY(QT_QTASSISTANT_LIBRARY_RELEASE NAMES QtAssistantClient4 PATHS ${QT_LIBRARY_DIR} NO_DEFAULT_PATH)
-- FIND_LIBRARY(QT_QTASSISTANT_LIBRARY_DEBUG NAMES QtAssistantClientd4 PATHS ${QT_LIBRARY_DIR} NO_DEFAULT_PATH)
-- FIND_LIBRARY(QT_QTDESIGNER_LIBRARY_RELEASE NAMES QtDesigner4 PATHS ${QT_LIBRARY_DIR} NO_DEFAULT_PATH)
-- FIND_LIBRARY(QT_QTDESIGNER_LIBRARY_DEBUG NAMES QtDesignerd4 PATHS ${QT_LIBRARY_DIR} NO_DEFAULT_PATH)
-- FIND_LIBRARY(QT_QTDESIGNERCOMPONENTS_LIBRARY_RELEASE NAMES QtDesignerComponents4 PATHS ${QT_LIBRARY_DIR} NO_DEFAULT_PATH)
-- FIND_LIBRARY(QT_QTDESIGNERCOMPONENTS_LIBRARY_DEBUG NAMES QtDesignerComponentsd4 PATHS ${QT_LIBRARY_DIR} NO_DEFAULT_PATH)
-- FIND_LIBRARY(QT_QTMAIN_LIBRARY_RELEASE NAMES qtmain PATHS ${QT_LIBRARY_DIR} NO_DEFAULT_PATH)
-- FIND_LIBRARY(QT_QTMAIN_LIBRARY_DEBUG NAMES qtmaind PATHS ${QT_LIBRARY_DIR} NO_DEFAULT_PATH)
-- ENDIF(MSVC)
-- ENDIF (QT_USE_FRAMEWORKS)
--
-- IF( NOT QT_QTCORE_LIBRARY )
-- IF( NOT Qt4_FIND_QUIETLY AND Qt4_FIND_REQUIRED)
-- MESSAGE( FATAL_ERROR "Could NOT find QtCore. Check CMakeFiles/CMakeError.log for more details.")
-- ENDIF( NOT Qt4_FIND_QUIETLY AND Qt4_FIND_REQUIRED)
-- ENDIF( NOT QT_QTCORE_LIBRARY )
--
-- # Set QT_QTASSISTANT_LIBRARY
-- FIND_LIBRARY(QT_QTASSISTANT_LIBRARY NAMES QtAssistantClient QtAssistantClient4 QtAssistant QtAssistant4 QtAssistantd4 PATHS ${QT_LIBRARY_DIR} NO_DEFAULT_PATH)
--
-- # Set QT_QTDESIGNER_LIBRARY
-- FIND_LIBRARY(QT_QTDESIGNER_LIBRARY NAMES QtDesigner QtDesigner4 QtDesignerd4 PATHS ${QT_LIBRARY_DIR} NO_DEFAULT_PATH)
--
-- # Set QT_QTDESIGNERCOMPONENTS_LIBRARY
-- FIND_LIBRARY(QT_QTDESIGNERCOMPONENTS_LIBRARY NAMES QtDesignerComponents QtDesignerComponents4 QtDesignerComponentsd4 PATHS ${QT_LIBRARY_DIR} NO_DEFAULT_PATH)
--
-- # Set QT_QTMAIN_LIBRARY
-- IF(WIN32)
-- FIND_LIBRARY(QT_QTMAIN_LIBRARY NAMES qtmain qtmaind PATHS ${QT_LIBRARY_DIR} NO_DEFAULT_PATH)
-- ENDIF(WIN32)
--
-- ############################################
-- #
-- # Check the existence of the libraries.
-- #
-- ############################################
--
-- MACRO (_QT4_ADJUST_LIB_VARS basename)
-- IF (QT_${basename}_LIBRARY OR QT_${basename}_LIBRARY_DEBUG)
--
-- IF(MSVC)
-- # Both set
-- IF (QT_${basename}_LIBRARY_RELEASE AND QT_${basename}_LIBRARY_DEBUG)
-- SET(QT_${basename}_LIBRARY optimized ${QT_${basename}_LIBRARY_RELEASE} debug ${QT_${basename}_LIBRARY_DEBUG})
-- ENDIF (QT_${basename}_LIBRARY_RELEASE AND QT_${basename}_LIBRARY_DEBUG)
--
-- # Only debug was found
-- IF (NOT QT_${basename}_LIBRARY_RELEASE AND QT_${basename}_LIBRARY_DEBUG)
-- SET(QT_${basename}_LIBRARY ${QT_${basename}_LIBRARY_DEBUG})
-- ENDIF (NOT QT_${basename}_LIBRARY_RELEASE AND QT_${basename}_LIBRARY_DEBUG)
--
-- # Only release was found
-- IF (QT_${basename}_LIBRARY_RELEASE AND NOT QT_${basename}_LIBRARY_DEBUG)
-- SET(QT_${basename}_LIBRARY ${QT_${basename}_LIBRARY_RELEASE})
-- ENDIF (QT_${basename}_LIBRARY_RELEASE AND NOT QT_${basename}_LIBRARY_DEBUG)
--
-- # Hmm, is this used anywhere ? Yes, in UseQt4.cmake. We are currently incompatible :-(
-- SET(QT_${basename}_LIBRARIES optimized ${QT_${basename}_LIBRARY} debug ${QT_${basename}_LIBRARY_DEBUG})
--
-- ENDIF(MSVC)
--
-- SET(QT_${basename}_LIBRARY ${QT_${basename}_LIBRARY} CACHE FILEPATH "The Qt ${basename} library")
--
-- IF (QT_${basename}_LIBRARY)
-- SET(QT_${basename}_FOUND 1)
-- ENDIF (QT_${basename}_LIBRARY)
--
-- ENDIF (QT_${basename}_LIBRARY OR QT_${basename}_LIBRARY_DEBUG)
--
-- IF (QT_${basename}_INCLUDE_DIR)
-- #add the include directory to QT_INCLUDES
-- SET(QT_INCLUDES ${QT_INCLUDES} "${QT_${basename}_INCLUDE_DIR}")
-- ENDIF (QT_${basename}_INCLUDE_DIR)
--
-- # Make variables changeble to the advanced user
-- MARK_AS_ADVANCED(QT_${basename}_LIBRARY QT_${basename}_INCLUDE_DIR)
-- ENDMACRO (_QT4_ADJUST_LIB_VARS)
--
--
-- # Set QT_xyz_LIBRARY variable and add
-- # library include path to QT_INCLUDES
-- _QT4_ADJUST_LIB_VARS(QTCORE)
-- _QT4_ADJUST_LIB_VARS(QTGUI)
-- _QT4_ADJUST_LIB_VARS(QT3SUPPORT)
-- _QT4_ADJUST_LIB_VARS(QTASSISTANT)
-- _QT4_ADJUST_LIB_VARS(QTDESIGNER)
-- _QT4_ADJUST_LIB_VARS(QTDESIGNERCOMPONENTS)
-- _QT4_ADJUST_LIB_VARS(QTNETWORK)
-- _QT4_ADJUST_LIB_VARS(QTNSPLUGIN)
-- _QT4_ADJUST_LIB_VARS(QTOPENGL)
-- _QT4_ADJUST_LIB_VARS(QTSQL)
-- _QT4_ADJUST_LIB_VARS(QTXML)
-- _QT4_ADJUST_LIB_VARS(QTSVG)
-- _QT4_ADJUST_LIB_VARS(QTSCRIPT)
-- _QT4_ADJUST_LIB_VARS(QTUITOOLS)
-- _QT4_ADJUST_LIB_VARS(QTTEST)
-- _QT4_ADJUST_LIB_VARS(QTDBUS)
--
--
-- # platform dependent libraries
-- IF(Q_WS_X11)
-- _QT4_ADJUST_LIB_VARS(QTMOTIF)
-- ENDIF(Q_WS_X11)
-- IF(WIN32)
-- _QT4_ADJUST_LIB_VARS(QTMAIN)
-- ENDIF(WIN32)
--
-- #######################################
-- #
-- # Check the executables of Qt
-- # ( moc, uic, rcc )
-- #
-- #######################################
--
--
-- # find moc and uic using qmake
-- QT_QUERY_QMAKE(QT_MOC_EXECUTABLE_INTERNAL "QMAKE_MOC")
-- QT_QUERY_QMAKE(QT_UIC_EXECUTABLE_INTERNAL "QMAKE_UIC")
--
-- FILE(TO_CMAKE_PATH
-- "${QT_MOC_EXECUTABLE_INTERNAL}" QT_MOC_EXECUTABLE_INTERNAL)
-- FILE(TO_CMAKE_PATH
-- "${QT_UIC_EXECUTABLE_INTERNAL}" QT_UIC_EXECUTABLE_INTERNAL)
--
-- SET(QT_MOC_EXECUTABLE
-- ${QT_MOC_EXECUTABLE_INTERNAL} CACHE FILEPATH "The moc executable")
-- SET(QT_UIC_EXECUTABLE
-- ${QT_UIC_EXECUTABLE_INTERNAL} CACHE FILEPATH "The uic executable")
--
-- FIND_PROGRAM(QT_UIC3_EXECUTABLE
-- NAMES uic3
-- PATHS ${QT_BINARY_DIR}
-- NO_DEFAULT_PATH
-- )
--
-- FIND_PROGRAM(QT_RCC_EXECUTABLE
-- NAMES rcc
-- PATHS ${QT_BINARY_DIR}
-- NO_DEFAULT_PATH
-- )
--
-- FIND_PROGRAM(QT_DBUSCPP2XML_EXECUTABLE
-- NAMES qdbuscpp2xml
-- PATHS ${QT_BINARY_DIR}
-- NO_DEFAULT_PATH
-- )
--
-- FIND_PROGRAM(QT_DBUSXML2CPP_EXECUTABLE
-- NAMES qdbusxml2cpp
-- PATHS ${QT_BINARY_DIR}
-- NO_DEFAULT_PATH
-- )
--
-- IF (QT_MOC_EXECUTABLE)
-- SET(QT_WRAP_CPP "YES")
-- ENDIF (QT_MOC_EXECUTABLE)
--
-- IF (QT_UIC_EXECUTABLE)
-- SET(QT_WRAP_UI "YES")
-- ENDIF (QT_UIC_EXECUTABLE)
--
--
--
-- MARK_AS_ADVANCED( QT_UIC_EXECUTABLE QT_UIC3_EXECUTABLE QT_MOC_EXECUTABLE QT_RCC_EXECUTABLE QT_DBUSXML2CPP_EXECUTABLE QT_DBUSCPP2XML_EXECUTABLE)
--
-- ######################################
-- #
-- # Macros for building Qt files
-- #
-- ######################################
--
-- MACRO (QT4_GET_MOC_INC_DIRS _moc_INC_DIRS)
-- SET(${_moc_INC_DIRS})
-- GET_DIRECTORY_PROPERTY(_inc_DIRS INCLUDE_DIRECTORIES)
--
-- FOREACH(_current ${_inc_DIRS})
-- SET(${_moc_INC_DIRS} ${${_moc_INC_DIRS}} "-I" ${_current})
-- ENDFOREACH(_current ${_inc_DIRS})
-- ENDMACRO(QT4_GET_MOC_INC_DIRS)
--
--
-- MACRO (QT4_GENERATE_MOC infile outfile )
-- # get include dirs
-- QT4_GET_MOC_INC_DIRS(moc_includes)
--
-- GET_FILENAME_COMPONENT(abs_infile ${infile} ABSOLUTE)
--
-- ADD_CUSTOM_COMMAND(OUTPUT ${outfile}
-- COMMAND ${QT_MOC_EXECUTABLE}
-- ARGS ${moc_includes} -o ${outfile} ${abs_infile}
-- DEPENDS ${abs_infile})
--
-- SET_SOURCE_FILES_PROPERTIES(${outfile} PROPERTIES SKIP_AUTOMOC TRUE) # dont run automoc on this file
--
-- MACRO_ADD_FILE_DEPENDENCIES(${abs_infile} ${outfile})
-- ENDMACRO (QT4_GENERATE_MOC)
--
--
-- # QT4_WRAP_CPP(outfiles inputfile ... )
-- # TODO perhaps add support for -D, -U and other minor options
--
-- MACRO (QT4_WRAP_CPP outfiles )
-- # get include dirs
-- QT4_GET_MOC_INC_DIRS(moc_includes)
--
-- FOREACH (it ${ARGN})
-- GET_FILENAME_COMPONENT(it ${it} ABSOLUTE)
-- GET_FILENAME_COMPONENT(outfile ${it} NAME_WE)
--
-- SET(outfile ${CMAKE_CURRENT_BINARY_DIR}/moc_${outfile}.cxx)
-- ADD_CUSTOM_COMMAND(OUTPUT ${outfile}
-- COMMAND ${QT_MOC_EXECUTABLE}
-- ARGS ${moc_includes} -o ${outfile} ${it}
-- DEPENDS ${it})
-- SET(${outfiles} ${${outfiles}} ${outfile})
-- ENDFOREACH(it)
--
-- ENDMACRO (QT4_WRAP_CPP)
--
--
-- # QT4_WRAP_UI(outfiles inputfile ... )
--
-- MACRO (QT4_WRAP_UI outfiles )
--
-- FOREACH (it ${ARGN})
-- GET_FILENAME_COMPONENT(outfile ${it} NAME_WE)
-- GET_FILENAME_COMPONENT(infile ${it} ABSOLUTE)
-- SET(outfile ${CMAKE_CURRENT_BINARY_DIR}/ui_${outfile}.h)
-- ADD_CUSTOM_COMMAND(OUTPUT ${outfile}
-- COMMAND ${QT_UIC_EXECUTABLE}
-- ARGS -o ${outfile} ${infile}
-- MAIN_DEPENDENCY ${infile})
-- SET(${outfiles} ${${outfiles}} ${outfile})
-- ENDFOREACH (it)
--
-- ENDMACRO (QT4_WRAP_UI)
--
--
-- # QT4_ADD_RESOURCES(outfiles inputfile ... )
-- # TODO perhaps consider adding support for compression and root options to rcc
--
-- MACRO (QT4_ADD_RESOURCES outfiles )
--
-- FOREACH (it ${ARGN})
-- GET_FILENAME_COMPONENT(outfilename ${it} NAME_WE)
-- GET_FILENAME_COMPONENT(infile ${it} ABSOLUTE)
-- GET_FILENAME_COMPONENT(rc_path ${infile} PATH)
-- SET(outfile ${CMAKE_CURRENT_BINARY_DIR}/qrc_${outfilename}.cxx)
-- # parse file for dependencies
-- FILE(READ "${infile}" _RC_FILE_CONTENTS)
-- STRING(REGEX MATCHALL "<file[^<]+" _RC_FILES "${_RC_FILE_CONTENTS}")
--
-- SET(_RC_DEPENDS)
-- FOREACH(_RC_FILE ${_RC_FILES})
-- STRING(REGEX REPLACE "^<file[^>]*>" "" _RC_FILE "${_RC_FILE}")
-- SET(_RC_DEPENDS ${_RC_DEPENDS} "${rc_path}/${_RC_FILE}")
-- ENDFOREACH(_RC_FILE)
-- ADD_CUSTOM_COMMAND(OUTPUT ${outfile}
-- COMMAND ${QT_RCC_EXECUTABLE}
-- ARGS -name ${outfilename} -o ${outfile} ${infile}
-- MAIN_DEPENDENCY ${infile}
-- DEPENDS ${_RC_DEPENDS})
-- SET(${outfiles} ${${outfiles}} ${outfile})
-- ENDFOREACH (it)
--
-- ENDMACRO (QT4_ADD_RESOURCES)
--
-- MACRO(QT4_ADD_DBUS_INTERFACE _sources _interface _basename)
-- GET_FILENAME_COMPONENT(_infile ${_interface} ABSOLUTE)
-- SET(_header ${CMAKE_CURRENT_BINARY_DIR}/${_basename}.h)
-- SET(_impl ${CMAKE_CURRENT_BINARY_DIR}/${_basename}.cpp)
-- SET(_moc ${CMAKE_CURRENT_BINARY_DIR}/${_basename}.moc)
--
-- GET_SOURCE_FILE_PROPERTY(_nonamespace ${_infile} NO_NAMESPACE)
-- IF ( _nonamespace )
-- SET(_params -N -m -p)
-- ELSE ( _nonamespace )
-- SET(_params -m -p)
-- ENDIF ( _nonamespace )
--
-- ADD_CUSTOM_COMMAND(OUTPUT ${_impl} ${_header}
-- COMMAND ${QT_DBUSXML2CPP_EXECUTABLE} ${_params} ${_basename} ${_infile}
-- DEPENDS ${_infile})
--
-- SET_SOURCE_FILES_PROPERTIES(${_impl} PROPERTIES SKIP_AUTOMOC TRUE)
--
-- QT4_GENERATE_MOC(${_header} ${_moc})
--
-- SET(${_sources} ${${_sources}} ${_impl} ${_header} ${_moc})
-- MACRO_ADD_FILE_DEPENDENCIES(${_impl} ${_moc})
--
-- ENDMACRO(QT4_ADD_DBUS_INTERFACE)
--
-- MACRO(QT4_ADD_DBUS_INTERFACE_NO_NAMESPACE _sources _interface _basename)
-- SET_SOURCE_FILES_PROPERTIES(${_interface} PROPERTIES NO_NAMESPACE TRUE)
-- QT4_ADD_DBUS_INTERFACE(${_sources} ${_interface} ${_basename})
-- ENDMACRO(QT4_ADD_DBUS_INTERFACE_NO_NAMESPACE)
--
-- # Internal (avoid to duplicate code between QT4_ADD_DBUS_INTERFACES_NO_NAMESPACE and QT4_ADD_DBUS_INTERFACES
-- MACRO(_QT4_ADD_DBUS_INTERFACES _sources _filename)
-- GET_FILENAME_COMPONENT(_infile ${_filename} ABSOLUTE)
-- # get the part before the ".xml" suffix
-- STRING(REGEX REPLACE "(.*[/\\.])?([^\\.]+)\\.xml" "\\2" _basename ${_current_FILE})
-- STRING(TOLOWER ${_basename} _basename)
-- QT4_ADD_DBUS_INTERFACE(${_sources} ${_infile} ${_basename}interface)
-- ENDMACRO(_QT4_ADD_DBUS_INTERFACES)
--
-- MACRO(QT4_ADD_DBUS_INTERFACES _sources)
-- FOREACH (_current_FILE ${ARGN})
-- _QT4_ADD_DBUS_INTERFACES(${_sources} ${_current_FILE})
-- ENDFOREACH (_current_FILE)
-- ENDMACRO(QT4_ADD_DBUS_INTERFACES)
--
-- MACRO(QT4_ADD_DBUS_INTERFACES_NO_NAMESPACE _sources)
-- FOREACH (_current_FILE ${ARGN})
-- SET_SOURCE_FILES_PROPERTIES(${_current_FILE} PROPERTIES NO_NAMESPACE TRUE)
-- _QT4_ADD_DBUS_INTERFACES(${_sources} ${_current_FILE})
-- ENDFOREACH (_current_FILE)
-- ENDMACRO(QT4_ADD_DBUS_INTERFACES_NO_NAMESPACE)
--
-- MACRO(QT4_GENERATE_DBUS_INTERFACE _header) # _customName )
-- SET(_customName "${ARGV1}")
-- GET_FILENAME_COMPONENT(_in_file ${_header} ABSOLUTE)
-- GET_FILENAME_COMPONENT(_basename ${_header} NAME_WE)
--
-- IF (_customName)
-- SET(_target ${CMAKE_CURRENT_BINARY_DIR}/${_customName})
-- ELSE (_customName)
-- SET(_target ${CMAKE_CURRENT_BINARY_DIR}/${_basename}.xml)
-- ENDIF (_customName)
--
-- ADD_CUSTOM_COMMAND(OUTPUT ${_target}
-- COMMAND ${QT_DBUSCPP2XML_EXECUTABLE} ${_in_file} > ${_target}
-- DEPENDS ${_in_file}
-- )
-- ENDMACRO(QT4_GENERATE_DBUS_INTERFACE)
--
--
-- MACRO(QT4_ADD_DBUS_ADAPTOR _sources _xml_file _include _parentClass) # _optionalBasename )
-- GET_FILENAME_COMPONENT(_infile ${_xml_file} ABSOLUTE)
--
-- SET(_optionalBasename "${ARGV4}")
-- IF (_optionalBasename)
-- SET(_basename ${_optionalBasename} )
-- ELSE (_optionalBasename)
-- STRING(REGEX REPLACE "(.*[/\\.])?([^\\.]+)\\.xml" "\\2adaptor" _basename ${_infile})
-- STRING(TOLOWER ${_basename} _basename)
-- ENDIF (_optionalBasename)
--
-- SET(_optionalClassName "${ARGV5}")
-- SET(_header ${CMAKE_CURRENT_BINARY_DIR}/${_basename}.h)
-- SET(_impl ${CMAKE_CURRENT_BINARY_DIR}/${_basename}.cpp)
-- SET(_moc ${CMAKE_CURRENT_BINARY_DIR}/${_basename}.moc)
--
-- IF(_optionalClassName)
-- ADD_CUSTOM_COMMAND(OUTPUT ${_impl} ${_header}
-- COMMAND ${QT_DBUSXML2CPP_EXECUTABLE} -m -a ${_basename} -c ${_optionalClassName} -i ${_include} -l ${_parentClass} ${_infile}
-- DEPENDS ${_infile}
-- )
-- ELSE(_optionalClassName)
-- ADD_CUSTOM_COMMAND(OUTPUT ${_impl} ${_header}
-- COMMAND ${QT_DBUSXML2CPP_EXECUTABLE} -m -a ${_basename} -i ${_include} -l ${_parentClass} ${_infile}
-- DEPENDS ${_infile}
-- )
-- ENDIF(_optionalClassName)
--
-- QT4_GENERATE_MOC(${_header} ${_moc})
-- SET_SOURCE_FILES_PROPERTIES(${_impl} PROPERTIES SKIP_AUTOMOC TRUE)
-- MACRO_ADD_FILE_DEPENDENCIES(${_impl} ${_moc})
--
-- SET(${_sources} ${${_sources}} ${_impl} ${_header} ${_moc})
-- ENDMACRO(QT4_ADD_DBUS_ADAPTOR)
--
-- MACRO(QT4_AUTOMOC)
-- QT4_GET_MOC_INC_DIRS(_moc_INCS)
--
-- SET(_matching_FILES )
-- FOREACH (_current_FILE ${ARGN})
--
-- GET_FILENAME_COMPONENT(_abs_FILE ${_current_FILE} ABSOLUTE)
-- # if "SKIP_AUTOMOC" is set to true, we will not handle this file here.
-- # here. this is required to make bouic work correctly:
-- # we need to add generated .cpp files to the sources (to compile them),
-- # but we cannot let automoc handle them, as the .cpp files don't exist yet when
-- # cmake is run for the very first time on them -> however the .cpp files might
-- # exist at a later run. at that time we need to skip them, so that we don't add two
-- # different rules for the same moc file
-- GET_SOURCE_FILE_PROPERTY(_skip ${_abs_FILE} SKIP_AUTOMOC)
--
-- IF ( NOT _skip AND EXISTS ${_abs_FILE} )
--
-- FILE(READ ${_abs_FILE} _contents)
--
-- GET_FILENAME_COMPONENT(_abs_PATH ${_abs_FILE} PATH)
--
-- STRING(REGEX MATCHALL "#include +[^ ]+\\.moc[\">]" _match "${_contents}")
-- IF(_match)
-- FOREACH (_current_MOC_INC ${_match})
-- STRING(REGEX MATCH "[^ <\"]+\\.moc" _current_MOC "${_current_MOC_INC}")
--
-- GET_filename_component(_basename ${_current_MOC} NAME_WE)
-- # SET(_header ${CMAKE_CURRENT_SOURCE_DIR}/${_basename}.h)
-- SET(_header ${_abs_PATH}/${_basename}.h)
-- SET(_moc ${CMAKE_CURRENT_BINARY_DIR}/${_current_MOC})
-- ADD_CUSTOM_COMMAND(OUTPUT ${_moc}
-- COMMAND ${QT_MOC_EXECUTABLE}
-- ARGS ${_moc_INCS} ${_header} -o ${_moc}
-- DEPENDS ${_header}
-- )
--
-- MACRO_ADD_FILE_DEPENDENCIES(${_abs_FILE} ${_moc})
-- ENDFOREACH (_current_MOC_INC)
-- ENDIF(_match)
-- ENDIF ( NOT _skip AND EXISTS ${_abs_FILE} )
-- ENDFOREACH (_current_FILE)
-- ENDMACRO(QT4_AUTOMOC)
--
--
--
-- ######################################
-- #
-- # decide if Qt got found
-- #
-- ######################################
--
-- # if the includes,libraries,moc,uic and rcc are found then we have it
-- IF( QT_LIBRARY_DIR AND QT_INCLUDE_DIR AND QT_MOC_EXECUTABLE AND QT_UIC_EXECUTABLE AND QT_RCC_EXECUTABLE)
-- SET( QT4_FOUND "YES" )
-- IF( NOT Qt4_FIND_QUIETLY)
-- IF (WIN32)
-- MESSAGE(STATUS "Found Qt-Version ${QTVERSION} with qmake at ${QT_QMAKE_EXECUTABLE}")
-- ELSE (WIN32)
-- MESSAGE(STATUS "Found Qt-Version ${QTVERSION}")
-- ENDIF (WIN32)
-- ENDIF( NOT Qt4_FIND_QUIETLY)
-- ELSE( QT_LIBRARY_DIR AND QT_INCLUDE_DIR AND QT_MOC_EXECUTABLE AND QT_UIC_EXECUTABLE AND QT_RCC_EXECUTABLE)
-- SET( QT4_FOUND "NO")
-- SET(QT_QMAKE_EXECUTABLE "${QT_QMAKE_EXECUTABLE}-NOTFOUND" CACHE FILEPATH "Invalid qmake found" FORCE)
-- IF( Qt4_FIND_REQUIRED)
-- IF ( NOT QT_LIBRARY_DIR )
-- MESSAGE(STATUS "Qt libraries NOT found!")
-- ENDIF(NOT QT_LIBRARY_DIR )
-- IF ( NOT QT_INCLUDE_DIR )
-- MESSAGE(STATUS "Qt includes NOT found!")
-- ENDIF( NOT QT_INCLUDE_DIR )
-- IF ( NOT QT_MOC_EXECUTABLE )
-- MESSAGE(STATUS "Qt's moc NOT found!")
-- ENDIF( NOT QT_MOC_EXECUTABLE )
-- IF ( NOT QT_UIC_EXECUTABLE )
-- MESSAGE(STATUS "Qt's uic NOT found!")
-- ENDIF( NOT QT_UIC_EXECUTABLE )
-- IF ( NOT QT_RCC_EXECUTABLE )
-- MESSAGE(STATUS "Qt's rcc NOT found!")
-- ENDIF( NOT QT_RCC_EXECUTABLE )
-- MESSAGE( FATAL_ERROR "Qt libraries, includes, moc, uic or/and rcc NOT found!")
-- ENDIF( Qt4_FIND_REQUIRED)
-- ENDIF( QT_LIBRARY_DIR AND QT_INCLUDE_DIR AND QT_MOC_EXECUTABLE AND QT_UIC_EXECUTABLE AND QT_RCC_EXECUTABLE)
-- SET(QT_FOUND ${QT4_FOUND})
--
--
-- #######################################
-- #
-- # System dependent settings
-- #
-- #######################################
-- # for unix add X11 stuff
-- IF(UNIX)
-- # on OS X X11 may not be required
-- IF (Q_WS_X11)
-- FIND_PACKAGE(X11 REQUIRED)
-- ENDIF (Q_WS_X11)
-- FIND_PACKAGE(Threads)
-- SET(QT_QTCORE_LIBRARY ${QT_QTCORE_LIBRARY} ${CMAKE_THREAD_LIBS_INIT})
-- ENDIF(UNIX)
--
--
-- #######################################
-- #
-- # compatibility settings
-- #
-- #######################################
-- # Backwards compatibility for CMake1.4 and 1.2
-- SET (QT_MOC_EXE ${QT_MOC_EXECUTABLE} )
-- SET (QT_UIC_EXE ${QT_UIC_EXECUTABLE} )
--
-- SET( QT_QT_LIBRARY "")
--
--ELSE(QT4_QMAKE_FOUND)
--
-- SET(QT_QMAKE_EXECUTABLE "${QT_QMAKE_EXECUTABLE}-NOTFOUND" CACHE FILEPATH "Invalid qmake found" FORCE)
-- IF(Qt4_FIND_REQUIRED)
-- IF(QT4_INSTALLED_VERSION_TOO_OLD)
-- MESSAGE(FATAL_ERROR "The installed Qt version ${QTVERSION} is too old, at least version ${QT_MIN_VERSION} is required")
-- ELSE(QT4_INSTALLED_VERSION_TOO_OLD)
-- MESSAGE( FATAL_ERROR "Qt qmake not found!")
-- ENDIF(QT4_INSTALLED_VERSION_TOO_OLD)
-- ELSE(Qt4_FIND_REQUIRED)
-- IF(QT4_INSTALLED_VERSION_TOO_OLD AND NOT Qt4_FIND_QUIETLY)
-- MESSAGE(STATUS "The installed Qt version ${QTVERSION} is too old, at least version ${QT_MIN_VERSION} is required")
-- ENDIF(QT4_INSTALLED_VERSION_TOO_OLD AND NOT Qt4_FIND_QUIETLY)
-- ENDIF(Qt4_FIND_REQUIRED)
--
--ENDIF (QT4_QMAKE_FOUND)
--
diff --git a/debian/patches/series b/debian/patches/series
deleted file mode 100644
index 85aa81d..0000000
--- a/debian/patches/series
+++ /dev/null
@@ -1 +0,0 @@
-01_remove_FindQt4.cmake_local_copy.diff
--
1.7.5.4
-------------- next part --------------
>From e33044ea74b6ef0e3ab54854fad46f7dfc6792a2 Mon Sep 17 00:00:00 2001
From: Daniel Schaal <farbing at web.de>
Date: Thu, 11 Aug 2011 21:20:00 +0200
Subject: [PATCH 2/8] debian/control: add dbus-x11 and libgamin-dev build
dependencies
---
debian/control | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/debian/control b/debian/control
index 14b4e6e..481c18c 100644
--- a/debian/control
+++ b/debian/control
@@ -5,7 +5,7 @@ Maintainer: Debian KDE Extras Team <pkg-kde-extras at lists.alioth.debian.org>
Uploaders: Fathi Boudra <fabo at debian.org>, Mark Purcell <msp at debian.org>
Build-Depends: debhelper (>= 7.4.15), cmake (>= 2.8.0), pkg-kde-tools (>= 0.6.4), libbz2-dev,
libclucene-dev (>= 0.9.21b), libdbus-1-dev, libexiv2-dev, libqt4-dev (>= 4.4.3), libxml2-dev,
- zlib1g-dev, libxml2-utils, python-support, python
+ zlib1g-dev, libxml2-utils, python-support, python, dbus-x11, libgamin-dev
Standards-Version: 3.8.4
Homepage: http://strigi.sourceforge.net
Vcs-Browser: http://svn.debian.org/wsvn/pkg-kde/kde-extras/strigi/trunk
--
1.7.5.4
-------------- next part --------------
>From e596004d26c16ab73772ef57d3dde7c65ec4bdd9 Mon Sep 17 00:00:00 2001
From: Daniel Schaal <farbing at web.de>
Date: Thu, 11 Aug 2011 21:33:10 +0200
Subject: [PATCH 3/8] debian/libstreams0.docs: docs removed upstream
---
debian/libstreams0.docs | 2 --
1 files changed, 0 insertions(+), 2 deletions(-)
delete mode 100644 debian/libstreams0.docs
diff --git a/debian/libstreams0.docs b/debian/libstreams0.docs
deleted file mode 100644
index 724e084..0000000
--- a/debian/libstreams0.docs
+++ /dev/null
@@ -1,2 +0,0 @@
-README
-TODO
--
1.7.5.4
-------------- next part --------------
>From de50252e3eadeaea72dea5a2f9cb1cd1337309b8 Mon Sep 17 00:00:00 2001
From: Daniel Schaal <farbing at web.de>
Date: Tue, 16 Aug 2011 11:22:56 +0200
Subject: [PATCH 4/8] debian/*.install: add new headers and cmake files
---
debian/libsearchclient-dev.install | 4 +++-
debian/libstreamanalyzer-dev.install | 4 +++-
debian/libstreams-dev.install | 18 ++++++++++++++++--
3 files changed, 22 insertions(+), 4 deletions(-)
diff --git a/debian/libsearchclient-dev.install b/debian/libsearchclient-dev.install
index 5516473..0801d61 100644
--- a/debian/libsearchclient-dev.install
+++ b/debian/libsearchclient-dev.install
@@ -1,4 +1,6 @@
-usr/include/strigi/asyncsocketclient.h
usr/include/strigi/asyncsocket.h
+usr/include/strigi/asyncsocketclient.h
usr/include/strigi/clientinterface.h
+usr/include/strigi/socketclient.h
usr/lib/libsearchclient.so
+usr/lib/libsearchclient/LibSearchClientConfig.cmake
\ No newline at end of file
diff --git a/debian/libstreamanalyzer-dev.install b/debian/libstreamanalyzer-dev.install
index f51abc4..1feb2b0 100644
--- a/debian/libstreamanalyzer-dev.install
+++ b/debian/libstreamanalyzer-dev.install
@@ -6,6 +6,7 @@ usr/include/strigi/diranalyzer.h
usr/include/strigi/fieldproperties.h
usr/include/strigi/fieldpropertiesdb.h
usr/include/strigi/fieldtypes.h
+usr/include/strigi/filelister.h
usr/include/strigi/indexeddocument.h
usr/include/strigi/indexmanager.h
usr/include/strigi/indexplugin.h
@@ -21,7 +22,8 @@ usr/include/strigi/streameventanalyzer.h
usr/include/strigi/streamlineanalyzer.h
usr/include/strigi/streamsaxanalyzer.h
usr/include/strigi/streamthroughanalyzer.h
+usr/include/strigi/strigi_thread.h
usr/include/strigi/variant.h
usr/lib/libstreamanalyzer.so
+usr/lib/libstreamanalyzer/LibStreamAnalyzerConfig.cmake
usr/lib/pkgconfig/libstreamanalyzer.pc
-
diff --git a/debian/libstreams-dev.install b/debian/libstreams-dev.install
index 166c9f9..bde28d1 100644
--- a/debian/libstreams-dev.install
+++ b/debian/libstreams-dev.install
@@ -1,19 +1,33 @@
usr/include/strigi/archivereader.h
+usr/include/strigi/arinputstream.h
usr/include/strigi/bufferedstream.h
+usr/include/strigi/bz2inputstream.h
+usr/include/strigi/cpioinputstream.h
+usr/include/strigi/dataeventinputstream.h
usr/include/strigi/encodinginputstream.h
usr/include/strigi/fileinputstream.h
+usr/include/strigi/gzipinputstream.h
usr/include/strigi/inputstream.h
usr/include/strigi/inputstreamreader.h
+usr/include/strigi/kmpsearcher.h
+usr/include/strigi/lzmainputstream.h
+usr/include/strigi/mailinputstream.h
+usr/include/strigi/oleinputstream.h
+usr/include/strigi/processinputstream.h
+usr/include/strigi/rpminputstream.h
usr/include/strigi/sdfinputstream.h
-usr/include/strigi/stringterminatedsubstream.h
usr/include/strigi/streambase.h
usr/include/strigi/streambuffer.h
+usr/include/strigi/strigiconfig.h
usr/include/strigi/stringstream.h
+usr/include/strigi/stringterminatedsubstream.h
usr/include/strigi/subinputstream.h
usr/include/strigi/substreamprovider.h
usr/include/strigi/substreamproviderprovider.h
-usr/include/strigi/strigiconfig.h
+usr/include/strigi/tarinputstream.h
usr/include/strigi/textutils.h
+usr/include/strigi/zipinputstream.h
usr/lib/libstreams.so
+usr/lib/libstreams/LibStreamsConfig.cmake
usr/lib/pkgconfig/libstreams.pc
usr/lib/strigi/StrigiConfig.cmake
--
1.7.5.4
-------------- next part --------------
>From 18258d2fd1b3a95d1f5b90064e5a1002353c2bc1 Mon Sep 17 00:00:00 2001
From: Daniel Schaal <farbing at web.de>
Date: Wed, 17 Aug 2011 12:10:48 +0200
Subject: [PATCH 5/8] debian/control: remove deskbar-plugins-strigi, not
compatible with deskbar >= 2.20
---
debian/control | 12 +-----------
debian/deskbar-plugins-strigi.install | 1 -
debian/rules | 3 ---
3 files changed, 1 insertions(+), 15 deletions(-)
delete mode 100644 debian/deskbar-plugins-strigi.install
diff --git a/debian/control b/debian/control
index 481c18c..02667c7 100644
--- a/debian/control
+++ b/debian/control
@@ -5,7 +5,7 @@ Maintainer: Debian KDE Extras Team <pkg-kde-extras at lists.alioth.debian.org>
Uploaders: Fathi Boudra <fabo at debian.org>, Mark Purcell <msp at debian.org>
Build-Depends: debhelper (>= 7.4.15), cmake (>= 2.8.0), pkg-kde-tools (>= 0.6.4), libbz2-dev,
libclucene-dev (>= 0.9.21b), libdbus-1-dev, libexiv2-dev, libqt4-dev (>= 4.4.3), libxml2-dev,
- zlib1g-dev, libxml2-utils, python-support, python, dbus-x11, libgamin-dev
+ zlib1g-dev, libxml2-utils, dbus-x11, libgamin-dev
Standards-Version: 3.8.4
Homepage: http://strigi.sourceforge.net
Vcs-Browser: http://svn.debian.org/wsvn/pkg-kde/kde-extras/strigi/trunk
@@ -179,16 +179,6 @@ Description: development files for libstrigiqtdbusclient
.
See the 'strigi-daemon' package for more information.
-Package: deskbar-plugins-strigi
-Architecture: any
-Section: gnome
-Depends: ${misc:Depends}, ${python:Depends}, strigi-daemon, deskbar-applet
-Description: Deskbar plugin to search files with strigi
- This package is part of Strigi Desktop Search, it contains a plugin
- for the GNOME Deskbar applet to search for files using Strigi.
- .
- See the 'strigi-daemon' package for more information.
-
Package: strigi-dbg
Priority: extra
Architecture: any
diff --git a/debian/deskbar-plugins-strigi.install b/debian/deskbar-plugins-strigi.install
deleted file mode 100644
index da5a141..0000000
--- a/debian/deskbar-plugins-strigi.install
+++ /dev/null
@@ -1 +0,0 @@
-src/searchclient/strigi.py usr/lib/deskbar-applet/handlers/
diff --git a/debian/rules b/debian/rules
index 36d67a6..5a16f8a 100755
--- a/debian/rules
+++ b/debian/rules
@@ -21,9 +21,6 @@ override_dh_auto_configure:
-DCMAKE_MODULE_LINKER_FLAGS="-Wl,--no-undefined -Wl,--as-needed" \
-DCMAKE_EXE_LINKER_FLAGS="-Wl,--no-undefined -Wl,--as-needed"
-override_dh_pysupport:
- dh_pysupport /usr/lib/deskbar-applet/handlers
-
override_dh_clean:
dh_clean
rm -f debian/shlibs.local
--
1.7.5.4
-------------- next part --------------
>From 53aae952d5281b244a57c349b85004e09864a86b Mon Sep 17 00:00:00 2001
From: Daniel Schaal <farbing at web.de>
Date: Thu, 11 Aug 2011 21:47:01 +0200
Subject: [PATCH 6/8] debian/*.symbols: update amd64 symbols files
---
debian/libsearchclient0.symbols.amd64 | 70 +++++-----
debian/libstrigihtmlgui0.symbols.amd64 | 86 +++++++-----
debian/libstrigiqtdbusclient0.symbols.amd64 | 197 ++++++++++++++++-----------
3 files changed, 204 insertions(+), 149 deletions(-)
diff --git a/debian/libsearchclient0.symbols.amd64 b/debian/libsearchclient0.symbols.amd64
index 1191389..04ea835 100644
--- a/debian/libsearchclient0.symbols.amd64
+++ b/debian/libsearchclient0.symbols.amd64
@@ -31,27 +31,29 @@ libsearchclient.so.0 libsearchclient0 #MINVER#
_ZN12SocketClient9countHitsERKSs at Base 0.5.5
_ZN12SocketClient9getStatusEv at Base 0.5.5
_ZN12SocketClient9indexFileERKSsmRKSt6vectorIcSaIcEE at Base 0.5.5
-#MISSING: 0.5.8# _ZN12SocketClientD0Ev at Base 0.5.7
-#MISSING: 0.5.8# _ZN12SocketClientD1Ev at Base 0.5.7
-#MISSING: 0.5.8# _ZN15ClientInterface10getFiltersEv at Base 0.5.7
-#MISSING: 0.5.8# _ZN15ClientInterface10setFiltersERKSt6vectorISt4pairIbSsESaIS2_EE at Base 0.5.7
-#MISSING: 0.5.8# _ZN15ClientInterface10stopDaemonEv at Base 0.5.7
-#MISSING: 0.5.8# _ZN15ClientInterface11getBackEndsEv at Base 0.5.7
-#MISSING: 0.5.8# _ZN15ClientInterface11getKeywordsERKSsRKSt6vectorISsSaISsEEjj at Base 0.5.7
-#MISSING: 0.5.8# _ZN15ClientInterface12getHistogramERKSsS1_S1_ at Base 0.5.7
-#MISSING: 0.5.8# _ZN15ClientInterface12stopIndexingEv at Base 0.5.7
-#MISSING: 0.5.8# _ZN15ClientInterface13countKeywordsERKSsRKSt6vectorISsSaISsEE at Base 0.5.7
-#MISSING: 0.5.8# _ZN15ClientInterface13getFieldNamesEv at Base 0.5.7
-#MISSING: 0.5.8# _ZN15ClientInterface13startIndexingEv at Base 0.5.7
-#MISSING: 0.5.8# _ZN15ClientInterface15getIndexedFilesEv at Base 0.5.7
-#MISSING: 0.5.8# _ZN15ClientInterface21getIndexedDirectoriesEv at Base 0.5.7
-#MISSING: 0.5.8# _ZN15ClientInterface21setIndexedDirectoriesESt3setISsSt4lessISsESaISsEE at Base 0.5.7
-#MISSING: 0.5.8# _ZN15ClientInterface7getHitsERKSsjj at Base 0.5.7
-#MISSING: 0.5.8# _ZN15ClientInterface9countHitsERKSs at Base 0.5.7
-#MISSING: 0.5.8# _ZN15ClientInterface9getStatusEv at Base 0.5.7
-#MISSING: 0.5.8# _ZN15ClientInterface9indexFileERKSsmRKSt6vectorIcSaIcEE at Base 0.5.7
-#MISSING: 0.5.8# _ZN15ClientInterfaceD0Ev at Base 0.5.7
-#MISSING: 0.5.8# _ZN15ClientInterfaceD1Ev at Base 0.5.7
+ _ZN12SocketClientD0Ev at Base 0.7.5
+ _ZN12SocketClientD1Ev at Base 0.7.5
+ _ZN12SocketClientD2Ev at Base 0.7.5
+ _ZN15ClientInterface10getFiltersEv at Base 0.7.5
+ _ZN15ClientInterface10setFiltersERKSt6vectorISt4pairIbSsESaIS2_EE at Base 0.7.5
+ _ZN15ClientInterface10stopDaemonEv at Base 0.7.5
+ _ZN15ClientInterface11getBackEndsEv at Base 0.7.5
+ _ZN15ClientInterface11getKeywordsERKSsRKSt6vectorISsSaISsEEjj at Base 0.7.5
+ _ZN15ClientInterface12getHistogramERKSsS1_S1_ at Base 0.7.5
+ _ZN15ClientInterface12stopIndexingEv at Base 0.7.5
+ _ZN15ClientInterface13countKeywordsERKSsRKSt6vectorISsSaISsEE at Base 0.7.5
+ _ZN15ClientInterface13getFieldNamesEv at Base 0.7.5
+ _ZN15ClientInterface13startIndexingEv at Base 0.7.5
+ _ZN15ClientInterface15getIndexedFilesEv at Base 0.7.5
+ _ZN15ClientInterface21getIndexedDirectoriesEv at Base 0.7.5
+ _ZN15ClientInterface21setIndexedDirectoriesESt3setISsSt4lessISsESaISsEE at Base 0.7.5
+ _ZN15ClientInterface7getHitsERKSsjj at Base 0.7.5
+ _ZN15ClientInterface9countHitsERKSs at Base 0.7.5
+ _ZN15ClientInterface9getStatusEv at Base 0.7.5
+ _ZN15ClientInterface9indexFileERKSsmRKSt6vectorIcSaIcEE at Base 0.7.5
+ _ZN15ClientInterfaceD0Ev at Base 0.7.5
+ _ZN15ClientInterfaceD1Ev at Base 0.7.5
+ _ZN15ClientInterfaceD2Ev at Base 0.7.5
_ZN17AsyncSocketClient13statusChangedEv at Base 0.5.5
_ZN17AsyncSocketClient15getDaemonStatusEv at Base 0.5.5
_ZN17AsyncSocketClient19handleQueryResponseEv at Base 0.5.5
@@ -61,17 +63,21 @@ libsearchclient.so.0 libsearchclient0 #MINVER#
_ZN17AsyncSocketClient35handleGetIndexedDirectoriesResponseEv at Base 0.5.5
_ZN17AsyncSocketClient5queryERKSsii at Base 0.5.5
_ZN17AsyncSocketClient9countHitsERKSs at Base 0.5.5
+ _ZN6Strigi15IndexedDocumentD1Ev at Base 0.7.5
+ _ZN6Strigi15IndexedDocumentD2Ev at Base 0.7.5
_ZNK17AsyncSocketClient13splitResponseEv at Base 0.5.5
- _ZNSs12_S_constructIPcEES0_T_S1_RKSaIcESt20forward_iterator_tag at Base 0.5.6
-#MISSING: 0.5.11# _ZNSsC1IPcEET_S1_RKSaIcE at Base 0.5.6
- _ZNSt3mapISsSsSt4lessISsESaISt4pairIKSsSsEEEixERS3_ at Base 0.5.11
+#MISSING: 0.7.5# _ZNSs12_S_constructIPcEES0_T_S1_RKSaIcESt20forward_iterator_tag at Base 0.5.6
+ _ZNSsC1IPcEET_S1_RKSaIcE at Base 0.7.5
+ _ZNSsC2IPcEET_S1_RKSaIcE at Base 0.7.5
+#MISSING: 0.7.5# _ZNSt3mapISsSsSt4lessISsESaISt4pairIKSsSsEEEixERS3_ at Base 0.5.11
_ZNSt6vectorIN6Strigi15IndexedDocumentESaIS1_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS1_S3_EERKS1_ at Base 0.5.6
- _ZNSt6vectorIN6Strigi15IndexedDocumentESaIS1_EED1Ev at Base 0.5.11
+#MISSING: 0.7.5# _ZNSt6vectorIN6Strigi15IndexedDocumentESaIS1_EED1Ev at Base 0.5.11
_ZNSt6vectorISsSaISsEE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPSsS1_EERKSs at Base 0.5.6
_ZNSt6vectorISsSaISsEED1Ev at Base 0.5.11
+ _ZNSt6vectorISsSaISsEED2Ev at Base 0.7.5
_ZNSt6vectorISsSaISsEEaSERKS1_ at Base 0.5.6
_ZNSt8_Rb_treeISsSsSt9_IdentityISsESt4lessISsESaISsEE10_M_insert_EPKSt18_Rb_tree_node_baseS8_RKSs at Base 0.5.11
-#MISSING: 0.5.11# _ZNSt8_Rb_treeISsSsSt9_IdentityISsESt4lessISsESaISsEE16_M_insert_uniqueERKSs at Base 0.5.6
+ _ZNSt8_Rb_treeISsSsSt9_IdentityISsESt4lessISsESaISsEE16_M_insert_uniqueERKSs at Base 0.7.5
_ZNSt8_Rb_treeISsSsSt9_IdentityISsESt4lessISsESaISsEE7_M_copyEPKSt13_Rb_tree_nodeISsEPS7_ at Base 0.5.6
_ZNSt8_Rb_treeISsSsSt9_IdentityISsESt4lessISsESaISsEE8_M_eraseEPSt13_Rb_tree_nodeISsE at Base 0.5.6
#MISSING: 0.5.11# _ZNSt8_Rb_treeISsSsSt9_IdentityISsESt4lessISsESaISsEE9_M_insertEPSt18_Rb_tree_node_baseS7_RKSs at Base 0.5.6
@@ -84,13 +90,13 @@ libsearchclient.so.0 libsearchclient0 #MINVER#
_ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EE7_M_copyEPKSt13_Rb_tree_nodeIS2_EPSA_ at Base 0.5.6
_ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EE8_M_eraseEPSt13_Rb_tree_nodeIS2_E at Base 0.5.6
#MISSING: 0.5.11# _ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EE9_M_insertEPSt18_Rb_tree_node_baseSA_RKS2_ at Base 0.5.6
-#MISSING: 0.5.11# _ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EEaSERKS8_ at Base 0.5.6
- _ZSt22__uninitialized_move_aIPN6Strigi15IndexedDocumentES2_SaIS1_EET0_T_S5_S4_RT1_ at Base 0.5.11
- _ZSt22__uninitialized_move_aIPSsS0_SaISsEET0_T_S3_S2_RT1_ at Base 0.5.11
+ _ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EEaSERKS8_ at Base 0.7.5
+#MISSING: 0.7.5# _ZSt22__uninitialized_move_aIPN6Strigi15IndexedDocumentES2_SaIS1_EET0_T_S5_S4_RT1_ at Base 0.5.11
+#MISSING: 0.7.5# _ZSt22__uninitialized_move_aIPSsS0_SaISsEET0_T_S3_S2_RT1_ at Base 0.5.11
#MISSING: 0.5.11# _ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_ERKS6_S8_ at Base 0.5.6
_ZTI12SocketClient at Base 0.5.5
-#MISSING: 0.5.8# _ZTI15ClientInterface at Base 0.5.7
+ _ZTI15ClientInterface at Base 0.7.5
_ZTS12SocketClient at Base 0.5.5
-#MISSING: 0.5.8# _ZTS15ClientInterface at Base 0.5.7
+ _ZTS15ClientInterface at Base 0.7.5
_ZTV12SocketClient at Base 0.5.5
-#MISSING: 0.5.8# _ZTV15ClientInterface at Base 0.5.7
+ _ZTV15ClientInterface at Base 0.7.5
diff --git a/debian/libstrigihtmlgui0.symbols.amd64 b/debian/libstrigihtmlgui0.symbols.amd64
index 038ca80..e2e7555 100644
--- a/debian/libstrigihtmlgui0.symbols.amd64
+++ b/debian/libstrigihtmlgui0.symbols.amd64
@@ -1,11 +1,13 @@
libstrigihtmlgui.so.0 libstrigihtmlgui0 #MINVER#
* Build-Depends-Package: libstrigihtmlgui-dev
-#MISSING: 0.5.8# _Z11startDaemonv at Base 0.5.6
-#MISSING: 0.5.8# _Z12toSizeStringi at Base 0.5.6
-#MISSING: 0.5.8# _Z6existsPKc at Base 0.5.6
-#MISSING: 0.5.8# _Z8getTermsRSt3setISsSt4lessISsESaISsEERKN6Strigi5QueryE at Base 0.5.6
-#MISSING: 0.5.8# _Z9getFieldsRSt3setISsSt4lessISsESaISsEERKN6Strigi5QueryE at Base 0.5.6
-#MISSING: 0.5.7# _ZN12SocketClientD1Ev at Base 0.3.9
+ _Z11startDaemonv at Base 0.7.5
+ _Z12toSizeStringi at Base 0.7.5
+ _Z6existsPKc at Base 0.7.5
+ _Z8getTermsRSt3setISsSt4lessISsESaISsEERKN6Strigi5QueryE at Base 0.7.5
+ _Z9getFieldsRSt3setISsSt4lessISsESaISsEERKN6Strigi5QueryE at Base 0.7.5
+ _ZN12SocketClientD0Ev at Base 0.7.5
+ _ZN12SocketClientD1Ev at Base 0.7.5
+ _ZN12SocketClientD2Ev at Base 0.7.5
_ZN13StrigiHtmlGui10printAboutERSoRKSsRKSt3mapISsSsSt4lessISsESaISt4pairIS1_SsEEE at Base 0.3.9
_ZN13StrigiHtmlGui11printConfigERSoRKSsRKSt3mapISsSsSt4lessISsESaISt4pairIS1_SsEEE at Base 0.3.9
_ZN13StrigiHtmlGui11printFooterERSoRKSsRKSt3mapISsSsSt4lessISsESaISt4pairIS1_SsEEE at Base 0.3.9
@@ -24,25 +26,28 @@ libstrigihtmlgui.so.0 libstrigihtmlgui0 #MINVER#
_ZN13StrigiHtmlGuiC2EP10HtmlHelper at Base 0.3.9
_ZN13StrigiHtmlGuiD1Ev at Base 0.3.9
_ZN13StrigiHtmlGuiD2Ev at Base 0.3.9
-#MISSING: 0.5.8# _ZN15ClientInterface10getFiltersEv at Base 0.5.7
-#MISSING: 0.5.8# _ZN15ClientInterface10setFiltersERKSt6vectorISt4pairIbSsESaIS2_EE at Base 0.5.7
-#MISSING: 0.5.8# _ZN15ClientInterface10stopDaemonEv at Base 0.5.7
-#MISSING: 0.5.8# _ZN15ClientInterface11getBackEndsEv at Base 0.5.7
-#MISSING: 0.5.8# _ZN15ClientInterface11getKeywordsERKSsRKSt6vectorISsSaISsEEjj at Base 0.5.7
-#MISSING: 0.5.8# _ZN15ClientInterface12getHistogramERKSsS1_S1_ at Base 0.5.7
-#MISSING: 0.5.8# _ZN15ClientInterface12stopIndexingEv at Base 0.5.7
-#MISSING: 0.5.8# _ZN15ClientInterface13countKeywordsERKSsRKSt6vectorISsSaISsEE at Base 0.5.7
-#MISSING: 0.5.8# _ZN15ClientInterface13getFieldNamesEv at Base 0.5.7
-#MISSING: 0.5.8# _ZN15ClientInterface13startIndexingEv at Base 0.5.7
-#MISSING: 0.5.8# _ZN15ClientInterface15getIndexedFilesEv at Base 0.5.7
-#MISSING: 0.5.8# _ZN15ClientInterface21getIndexedDirectoriesEv at Base 0.5.7
-#MISSING: 0.5.8# _ZN15ClientInterface21setIndexedDirectoriesESt3setISsSt4lessISsESaISsEE at Base 0.5.7
-#MISSING: 0.5.8# _ZN15ClientInterface7getHitsERKSsjj at Base 0.5.7
-#MISSING: 0.5.8# _ZN15ClientInterface9countHitsERKSs at Base 0.5.7
-#MISSING: 0.5.8# _ZN15ClientInterface9getStatusEv at Base 0.5.7
-#MISSING: 0.5.8# _ZN15ClientInterface9indexFileERKSsmRKSt6vectorIcSaIcEE at Base 0.5.7
-#MISSING: 0.5.8# _ZN15ClientInterfaceD0Ev at Base 0.5.7
-#MISSING: 0.5.8# _ZN15ClientInterfaceD1Ev at Base 0.5.7
+ _ZN15ClientInterface10getFiltersEv at Base 0.7.5
+ _ZN15ClientInterface10setFiltersERKSt6vectorISt4pairIbSsESaIS2_EE at Base 0.7.5
+ _ZN15ClientInterface10stopDaemonEv at Base 0.7.5
+ _ZN15ClientInterface11getBackEndsEv at Base 0.7.5
+ _ZN15ClientInterface11getKeywordsERKSsRKSt6vectorISsSaISsEEjj at Base 0.7.5
+ _ZN15ClientInterface12getHistogramERKSsS1_S1_ at Base 0.7.5
+ _ZN15ClientInterface12stopIndexingEv at Base 0.7.5
+ _ZN15ClientInterface13countKeywordsERKSsRKSt6vectorISsSaISsEE at Base 0.7.5
+ _ZN15ClientInterface13getFieldNamesEv at Base 0.7.5
+ _ZN15ClientInterface13startIndexingEv at Base 0.7.5
+ _ZN15ClientInterface15getIndexedFilesEv at Base 0.7.5
+ _ZN15ClientInterface21getIndexedDirectoriesEv at Base 0.7.5
+ _ZN15ClientInterface21setIndexedDirectoriesESt3setISsSt4lessISsESaISsEE at Base 0.7.5
+ _ZN15ClientInterface4HitsD1Ev at Base 0.7.5
+ _ZN15ClientInterface4HitsD2Ev at Base 0.7.5
+ _ZN15ClientInterface7getHitsERKSsjj at Base 0.7.5
+ _ZN15ClientInterface9countHitsERKSs at Base 0.7.5
+ _ZN15ClientInterface9getStatusEv at Base 0.7.5
+ _ZN15ClientInterface9indexFileERKSsmRKSt6vectorIcSaIcEE at Base 0.7.5
+ _ZN15ClientInterfaceD0Ev at Base 0.7.5
+ _ZN15ClientInterfaceD1Ev at Base 0.7.5
+ _ZN15ClientInterfaceD2Ev at Base 0.7.5
_ZNK13StrigiHtmlGui14readTabQueriesEv at Base 0.3.9
_ZNK13StrigiHtmlGui7Private14highlightTermsERKSsRKN6Strigi5QueryE at Base 0.5.6
#MISSING: 0.5.7# _ZNK13StrigiHtmlGui7Private14highlightTermsERKSsRKN8jstreams5QueryERKSt6vectorISsSaISsEE at Base 0.3.9
@@ -51,23 +56,28 @@ libstrigihtmlgui.so.0 libstrigihtmlgui0 #MINVER#
_ZNK13StrigiHtmlGui7Private18printSearchResultsERSoRKN15ClientInterface4HitsERKSs at Base 0.5.6
_ZNKSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EE4findERS1_ at Base 0.5.6
#MISSING: 0.5.7# _ZNKSt8_Rb_treeISsSt4pairIKSsSt3setISsSt4lessISsESaISsEEESt10_Select1stIS7_ES4_SaIS7_EE4findERS1_ at Base 0.3.9
- _ZNSs12_S_constructIPcEES0_T_S1_RKSaIcESt20forward_iterator_tag at Base 0.5.6
-#MISSING: 0.5.11# _ZNSsC1IPcEET_S1_RKSaIcE at Base 0.5.6
- _ZNSt3mapISsSsSt4lessISsESaISt4pairIKSsSsEEEaSERKS6_ at Base 0.5.11
- _ZNSt3mapISsSsSt4lessISsESaISt4pairIKSsSsEEEixERS3_ at Base 0.5.11
- _ZNSt3mapISsiSt4lessISsESaISt4pairIKSsiEEEixERS3_ at Base 0.5.11
- _ZNSt6vectorIN6Strigi15IndexedDocumentESaIS1_EED1Ev at Base 0.5.11
+#MISSING: 0.7.5# _ZNSs12_S_constructIPcEES0_T_S1_RKSaIcESt20forward_iterator_tag at Base 0.5.6
+ _ZNSsC1IPcEET_S1_RKSaIcE at Base 0.7.5
+ _ZNSsC2IPcEET_S1_RKSaIcE at Base 0.7.5
+ _ZNSt3mapISsSsSt4lessISsESaISt4pairIKSsSsEEED1Ev at Base 0.7.5
+ _ZNSt3mapISsSsSt4lessISsESaISt4pairIKSsSsEEED2Ev at Base 0.7.5
+#MISSING: 0.7.5# _ZNSt3mapISsSsSt4lessISsESaISt4pairIKSsSsEEEaSERKS6_ at Base 0.5.11
+#MISSING: 0.7.5# _ZNSt3mapISsSsSt4lessISsESaISt4pairIKSsSsEEEixERS3_ at Base 0.5.11
+#MISSING: 0.7.5# _ZNSt3mapISsiSt4lessISsESaISt4pairIKSsiEEEixERS3_ at Base 0.5.11
+#MISSING: 0.7.5# _ZNSt6vectorIN6Strigi15IndexedDocumentESaIS1_EED1Ev at Base 0.5.11
_ZNSt6vectorISsSaISsEE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPSsS1_EERKSs at Base 0.5.6
- _ZNSt6vectorISsSaISsEED1Ev at Base 0.5.11
+#MISSING: 0.7.5# _ZNSt6vectorISsSaISsEED1Ev at Base 0.5.11
#MISSING: 0.5.7# _ZNSt8_Rb_treeIN8jstreams5QueryES1_St9_IdentityIS1_ENS1_10queryltstrESaIS1_EE8_M_eraseEPSt13_Rb_tree_nodeIS1_E at Base 0.3.9
_ZNSt8_Rb_treeISsSsSt9_IdentityISsESt4lessISsESaISsEE10_M_insert_EPKSt18_Rb_tree_node_baseS8_RKSs at Base 0.5.11
+ _ZNSt8_Rb_treeISsSsSt9_IdentityISsESt4lessISsESaISsEE11equal_rangeERKSs at Base 0.7.5
#MISSING: 0.5.11# _ZNSt8_Rb_treeISsSsSt9_IdentityISsESt4lessISsESaISsEE11lower_boundERKSs at Base 0.5.6
#MISSING: 0.5.11# _ZNSt8_Rb_treeISsSsSt9_IdentityISsESt4lessISsESaISsEE11upper_boundERKSs at Base 0.5.6
+ _ZNSt8_Rb_treeISsSsSt9_IdentityISsESt4lessISsESaISsEE12_M_erase_auxESt23_Rb_tree_const_iteratorISsES7_ at Base 0.7.5
#MISSING: 0.5.7# _ZNSt8_Rb_treeISsSsSt9_IdentityISsESt4lessISsESaISsEE13insert_uniqueERKSs at Base 0.3.9
_ZNSt8_Rb_treeISsSsSt9_IdentityISsESt4lessISsESaISsEE16_M_insert_uniqueERKSs at Base 0.5.6
#MISSING: 0.5.11# _ZNSt8_Rb_treeISsSsSt9_IdentityISsESt4lessISsESaISsEE16_M_insert_uniqueESt23_Rb_tree_const_iteratorISsERKSs at Base 0.5.6
_ZNSt8_Rb_treeISsSsSt9_IdentityISsESt4lessISsESaISsEE17_M_insert_unique_ESt23_Rb_tree_const_iteratorISsERKSs at Base 0.5.11
- _ZNSt8_Rb_treeISsSsSt9_IdentityISsESt4lessISsESaISsEE5eraseERKSs at Base 0.5.6
+#MISSING: 0.7.5# _ZNSt8_Rb_treeISsSsSt9_IdentityISsESt4lessISsESaISsEE5eraseERKSs at Base 0.5.6
#MISSING: 0.5.11# _ZNSt8_Rb_treeISsSsSt9_IdentityISsESt4lessISsESaISsEE5eraseESt17_Rb_tree_iteratorISsES7_ at Base 0.5.6
_ZNSt8_Rb_treeISsSsSt9_IdentityISsESt4lessISsESaISsEE7_M_copyEPKSt13_Rb_tree_nodeISsEPS7_ at Base 0.5.6
_ZNSt8_Rb_treeISsSsSt9_IdentityISsESt4lessISsESaISsEE8_M_eraseEPSt13_Rb_tree_nodeISsE at Base 0.5.6
@@ -83,7 +93,7 @@ libstrigihtmlgui.so.0 libstrigihtmlgui0 #MINVER#
_ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EE7_M_copyEPKSt13_Rb_tree_nodeIS2_EPSA_ at Base 0.5.6
_ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EE8_M_eraseEPSt13_Rb_tree_nodeIS2_E at Base 0.5.6
#MISSING: 0.5.11# _ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EE9_M_insertEPSt18_Rb_tree_node_baseSA_RKS2_ at Base 0.5.6
-#MISSING: 0.5.11# _ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EEaSERKS8_ at Base 0.5.6
+ _ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EEaSERKS8_ at Base 0.7.5
#MISSING: 0.5.7# _ZNSt8_Rb_treeISsSt4pairIKSsSt3setISsSt4lessISsESaISsEEESt10_Select1stIS7_ES4_SaIS7_EE8_M_eraseEPSt13_Rb_tree_nodeIS7_E at Base 0.3.9
_ZNSt8_Rb_treeISsSt4pairIKSsiESt10_Select1stIS2_ESt4lessISsESaIS2_EE10_M_insert_EPKSt18_Rb_tree_node_baseSB_RKS2_ at Base 0.5.11
#MISSING: 0.5.11# _ZNSt8_Rb_treeISsSt4pairIKSsiESt10_Select1stIS2_ESt4lessISsESaIS2_EE11lower_boundERS1_ at Base 0.5.6
@@ -94,10 +104,10 @@ libstrigihtmlgui.so.0 libstrigihtmlgui0 #MINVER#
_ZNSt8_Rb_treeISsSt4pairIKSsiESt10_Select1stIS2_ESt4lessISsESaIS2_EE17_M_insert_unique_ESt23_Rb_tree_const_iteratorIS2_ERKS2_ at Base 0.5.11
_ZNSt8_Rb_treeISsSt4pairIKSsiESt10_Select1stIS2_ESt4lessISsESaIS2_EE8_M_eraseEPSt13_Rb_tree_nodeIS2_E at Base 0.5.6
#MISSING: 0.5.11# _ZNSt8_Rb_treeISsSt4pairIKSsiESt10_Select1stIS2_ESt4lessISsESaIS2_EE9_M_insertEPSt18_Rb_tree_node_baseSA_RKS2_ at Base 0.5.6
- _ZSt22__uninitialized_move_aIPSsS0_SaISsEET0_T_S3_S2_RT1_ at Base 0.5.11
+#MISSING: 0.7.5# _ZSt22__uninitialized_move_aIPSsS0_SaISsEET0_T_S3_S2_RT1_ at Base 0.5.11
_ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_EPKS3_RKS6_ at Base 0.5.6
#MISSING: 0.5.7# _ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_ERKS6_S8_ at Base 0.3.9
#MISSING: 0.5.11# _ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_ES3_RKS6_ at Base 0.5.6
-#MISSING: 0.5.8# _ZTI15ClientInterface at Base 0.5.7
-#MISSING: 0.5.8# _ZTS15ClientInterface at Base 0.5.7
-#MISSING: 0.5.8# _ZTV15ClientInterface at Base 0.5.7
+ _ZTI15ClientInterface at Base 0.7.5
+ _ZTS15ClientInterface at Base 0.7.5
+ _ZTV15ClientInterface at Base 0.7.5
diff --git a/debian/libstrigiqtdbusclient0.symbols.amd64 b/debian/libstrigiqtdbusclient0.symbols.amd64
index ecbfee5..296b01e 100644
--- a/debian/libstrigiqtdbusclient0.symbols.amd64
+++ b/debian/libstrigiqtdbusclient0.symbols.amd64
@@ -1,6 +1,6 @@
libstrigiqtdbusclient.so.0 libstrigiqtdbusclient0 #MINVER#
* Build-Depends-Package: libstrigiqtdbusclient-dev
-#MISSING: 0.5.8# _Z10RequestCmpRKN17StrigiAsyncClient7RequestES2_ at Base 0.5.6
+ _Z10RequestCmpRKN17StrigiAsyncClient7RequestES2_ at Base 0.7.5
#MISSING: 0.5.8# _Z13qvariant_castI11QStringListET_RK8QVariant at Base 0.5.6
#MISSING: 0.5.8# _Z13qvariant_castI4QMapI7QStringS1_EET_RK8QVariant at Base 0.5.6
#MISSING: 0.5.8# _Z13qvariant_castI5QListI5QPairI7QStringjEEET_RK8QVariant at Base 0.5.6
@@ -20,22 +20,22 @@ libstrigiqtdbusclient.so.0 libstrigiqtdbusclient0 #MINVER#
#MISSING: 0.5.8# _Z17qVariantFromValueI5QListI5QPairIb7QStringEEE8QVariantRKT_ at Base 0.5.6
#MISSING: 0.5.8# _Z17qVariantFromValueI7QStringE8QVariantRKT_ at Base 0.5.6
#MISSING: 0.5.8# _Z17qVariantFromValueIjE8QVariantRKT_ at Base 0.5.6
-#MISSING: 0.5.8# _Z19qDBusMarshallHelperI4QMapI7QStringS1_EEvR13QDBusArgumentPKT_ at Base 0.5.6
-#MISSING: 0.5.8# _Z19qDBusMarshallHelperI5QListI5QPairI7QStringjEEEvR13QDBusArgumentPKT_ at Base 0.5.6
-#MISSING: 0.5.8# _Z19qDBusMarshallHelperI5QListI5QPairIb7QStringEEEvR13QDBusArgumentPKT_ at Base 0.5.6
-#MISSING: 0.5.8# _Z19qDBusMarshallHelperI5QListI9StrigiHitEEvR13QDBusArgumentPKT_ at Base 0.5.6
-#MISSING: 0.5.8# _Z19qDBusMarshallHelperI5QPairI7QStringjEEvR13QDBusArgumentPKT_ at Base 0.5.6
-#MISSING: 0.5.8# _Z19qDBusMarshallHelperI5QPairIb7QStringEEvR13QDBusArgumentPKT_ at Base 0.5.6
-#MISSING: 0.5.8# _Z19qDBusMarshallHelperI9QMultiMapIi7QStringEEvR13QDBusArgumentPKT_ at Base 0.5.6
-#MISSING: 0.5.8# _Z19qDBusMarshallHelperI9StrigiHitEvR13QDBusArgumentPKT_ at Base 0.5.6
-#MISSING: 0.5.8# _Z21qDBusDemarshallHelperI4QMapI7QStringS1_EEvRK13QDBusArgumentPT_ at Base 0.5.6
-#MISSING: 0.5.8# _Z21qDBusDemarshallHelperI5QListI5QPairI7QStringjEEEvRK13QDBusArgumentPT_ at Base 0.5.6
-#MISSING: 0.5.8# _Z21qDBusDemarshallHelperI5QListI5QPairIb7QStringEEEvRK13QDBusArgumentPT_ at Base 0.5.6
-#MISSING: 0.5.8# _Z21qDBusDemarshallHelperI5QListI9StrigiHitEEvRK13QDBusArgumentPT_ at Base 0.5.6
-#MISSING: 0.5.8# _Z21qDBusDemarshallHelperI5QPairI7QStringjEEvRK13QDBusArgumentPT_ at Base 0.5.6
-#MISSING: 0.5.8# _Z21qDBusDemarshallHelperI5QPairIb7QStringEEvRK13QDBusArgumentPT_ at Base 0.5.6
-#MISSING: 0.5.8# _Z21qDBusDemarshallHelperI9QMultiMapIi7QStringEEvRK13QDBusArgumentPT_ at Base 0.5.6
-#MISSING: 0.5.8# _Z21qDBusDemarshallHelperI9StrigiHitEvRK13QDBusArgumentPT_ at Base 0.5.6
+ _Z19qDBusMarshallHelperI4QMapI7QStringS1_EEvR13QDBusArgumentPKT_ at Base 0.7.5
+ _Z19qDBusMarshallHelperI5QListI5QPairI7QStringjEEEvR13QDBusArgumentPKT_ at Base 0.7.5
+ _Z19qDBusMarshallHelperI5QListI5QPairIb7QStringEEEvR13QDBusArgumentPKT_ at Base 0.7.5
+ _Z19qDBusMarshallHelperI5QListI9StrigiHitEEvR13QDBusArgumentPKT_ at Base 0.7.5
+ _Z19qDBusMarshallHelperI5QPairI7QStringjEEvR13QDBusArgumentPKT_ at Base 0.7.5
+ _Z19qDBusMarshallHelperI5QPairIb7QStringEEvR13QDBusArgumentPKT_ at Base 0.7.5
+ _Z19qDBusMarshallHelperI9QMultiMapIi7QStringEEvR13QDBusArgumentPKT_ at Base 0.7.5
+ _Z19qDBusMarshallHelperI9StrigiHitEvR13QDBusArgumentPKT_ at Base 0.7.5
+ _Z21qDBusDemarshallHelperI4QMapI7QStringS1_EEvRK13QDBusArgumentPT_ at Base 0.7.5
+ _Z21qDBusDemarshallHelperI5QListI5QPairI7QStringjEEEvRK13QDBusArgumentPT_ at Base 0.7.5
+ _Z21qDBusDemarshallHelperI5QListI5QPairIb7QStringEEEvRK13QDBusArgumentPT_ at Base 0.7.5
+ _Z21qDBusDemarshallHelperI5QListI9StrigiHitEEvRK13QDBusArgumentPT_ at Base 0.7.5
+ _Z21qDBusDemarshallHelperI5QPairI7QStringjEEvRK13QDBusArgumentPT_ at Base 0.7.5
+ _Z21qDBusDemarshallHelperI5QPairIb7QStringEEvRK13QDBusArgumentPT_ at Base 0.7.5
+ _Z21qDBusDemarshallHelperI9QMultiMapIi7QStringEEvRK13QDBusArgumentPT_ at Base 0.7.5
+ _Z21qDBusDemarshallHelperI9StrigiHitEvRK13QDBusArgumentPT_ at Base 0.7.5
#MISSING: 0.5.8# _Z21qDBusRegisterMetaTypeI4QMapI7QStringS1_EEiPT_ at Base 0.5.6
#MISSING: 0.5.8# _Z21qDBusRegisterMetaTypeI5QListI5QPairI7QStringjEEEiPT_ at Base 0.5.6
#MISSING: 0.5.8# _Z21qDBusRegisterMetaTypeI5QListI5QPairIb7QStringEEEiPT_ at Base 0.5.6
@@ -44,36 +44,45 @@ libstrigiqtdbusclient.so.0 libstrigiqtdbusclient0 #MINVER#
#MISSING: 0.5.8# _Z21qDBusRegisterMetaTypeI5QPairIb7QStringEEiPT_ at Base 0.5.6
#MISSING: 0.5.8# _Z21qDBusRegisterMetaTypeI9QMultiMapIi7QStringEEiPT_ at Base 0.5.6
#MISSING: 0.5.8# _Z21qDBusRegisterMetaTypeI9StrigiHitEiPT_ at Base 0.5.6
-#MISSING: 0.5.8# _Z21qMetaTypeDeleteHelperI4QMapI7QStringS1_EEvPT_ at Base 0.5.6
-#MISSING: 0.5.8# _Z21qMetaTypeDeleteHelperI5QListI5QPairI7QStringjEEEvPT_ at Base 0.5.6
-#MISSING: 0.5.8# _Z21qMetaTypeDeleteHelperI5QListI5QPairIb7QStringEEEvPT_ at Base 0.5.6
-#MISSING: 0.5.8# _Z21qMetaTypeDeleteHelperI5QListI9StrigiHitEEvPT_ at Base 0.5.6
-#MISSING: 0.5.8# _Z21qMetaTypeDeleteHelperI5QPairI7QStringjEEvPT_ at Base 0.5.6
-#MISSING: 0.5.8# _Z21qMetaTypeDeleteHelperI5QPairIb7QStringEEvPT_ at Base 0.5.6
-#MISSING: 0.5.8# _Z21qMetaTypeDeleteHelperI9QMultiMapIi7QStringEEvPT_ at Base 0.5.6
-#MISSING: 0.5.8# _Z21qMetaTypeDeleteHelperI9StrigiHitEvPT_ at Base 0.5.6
-#MISSING: 0.5.8# _Z24qMetaTypeConstructHelperI4QMapI7QStringS1_EEPvPKT_ at Base 0.5.6
-#MISSING: 0.5.8# _Z24qMetaTypeConstructHelperI5QListI5QPairI7QStringjEEEPvPKT_ at Base 0.5.6
-#MISSING: 0.5.8# _Z24qMetaTypeConstructHelperI5QListI5QPairIb7QStringEEEPvPKT_ at Base 0.5.6
-#MISSING: 0.5.8# _Z24qMetaTypeConstructHelperI5QListI9StrigiHitEEPvPKT_ at Base 0.5.6
-#MISSING: 0.5.8# _Z24qMetaTypeConstructHelperI5QPairI7QStringjEEPvPKT_ at Base 0.5.6
-#MISSING: 0.5.8# _Z24qMetaTypeConstructHelperI5QPairIb7QStringEEPvPKT_ at Base 0.5.6
-#MISSING: 0.5.8# _Z24qMetaTypeConstructHelperI9QMultiMapIi7QStringEEPvPKT_ at Base 0.5.6
-#MISSING: 0.5.8# _Z24qMetaTypeConstructHelperI9StrigiHitEPvPKT_ at Base 0.5.6
-#MISSING: 0.5.8# _ZN10QDBusErrorD1Ev at Base 0.5.7
-#MISSING: 0.5.8# _ZN10QDBusReplyI11QStringListEC1ERK12QDBusMessage at Base 0.5.6
-#MISSING: 0.5.8# _ZN10QDBusReplyI11QStringListED1Ev at Base 0.5.7
+ _Z21qMetaTypeDeleteHelperI4QMapI7QStringS1_EEvPT_ at Base 0.7.5
+ _Z21qMetaTypeDeleteHelperI5QListI5QPairI7QStringjEEEvPT_ at Base 0.7.5
+ _Z21qMetaTypeDeleteHelperI5QListI5QPairIb7QStringEEEvPT_ at Base 0.7.5
+ _Z21qMetaTypeDeleteHelperI5QListI9StrigiHitEEvPT_ at Base 0.7.5
+ _Z21qMetaTypeDeleteHelperI5QPairI7QStringjEEvPT_ at Base 0.7.5
+ _Z21qMetaTypeDeleteHelperI5QPairIb7QStringEEvPT_ at Base 0.7.5
+ _Z21qMetaTypeDeleteHelperI9QMultiMapIi7QStringEEvPT_ at Base 0.7.5
+ _Z21qMetaTypeDeleteHelperI9StrigiHitEvPT_ at Base 0.7.5
+ _Z24qMetaTypeConstructHelperI4QMapI7QStringS1_EEPvPKT_ at Base 0.7.5
+ _Z24qMetaTypeConstructHelperI5QListI5QPairI7QStringjEEEPvPKT_ at Base 0.7.5
+ _Z24qMetaTypeConstructHelperI5QListI5QPairIb7QStringEEEPvPKT_ at Base 0.7.5
+ _Z24qMetaTypeConstructHelperI5QListI9StrigiHitEEPvPKT_ at Base 0.7.5
+ _Z24qMetaTypeConstructHelperI5QPairI7QStringjEEPvPKT_ at Base 0.7.5
+ _Z24qMetaTypeConstructHelperI5QPairIb7QStringEEPvPKT_ at Base 0.7.5
+ _Z24qMetaTypeConstructHelperI9QMultiMapIi7QStringEEPvPKT_ at Base 0.7.5
+ _Z24qMetaTypeConstructHelperI9StrigiHitEPvPKT_ at Base 0.7.5
+ _ZN10QDBusErrorD1Ev at Base 0.7.5
+ _ZN10QDBusErrorD2Ev at Base 0.7.5
+ _ZN10QDBusReplyI11QStringListEC1ERK12QDBusMessage at Base 0.7.5
+ _ZN10QDBusReplyI11QStringListEC2ERK12QDBusMessage at Base 0.7.5
+ _ZN10QDBusReplyI11QStringListED1Ev at Base 0.7.5
+ _ZN10QDBusReplyI11QStringListED2Ev at Base 0.7.5
#MISSING: 0.5.8# _ZN10QDBusReplyI11QStringListEaSERKS1_ at Base 0.5.6
-#MISSING: 0.5.8# _ZN10QDBusReplyI4QMapI7QStringS1_EED1Ev at Base 0.5.7
+ _ZN10QDBusReplyI4QMapI7QStringS1_EEC1ERK12QDBusMessage at Base 0.7.5
+ _ZN10QDBusReplyI4QMapI7QStringS1_EEC2ERK12QDBusMessage at Base 0.7.5
+ _ZN10QDBusReplyI4QMapI7QStringS1_EED1Ev at Base 0.7.5
+ _ZN10QDBusReplyI4QMapI7QStringS1_EED2Ev at Base 0.7.5
#MISSING: 0.5.8# _ZN10QDBusReplyI4QMapI7QStringS1_EEaSERKS3_ at Base 0.5.6
#MISSING: 0.5.8# _ZN10QDBusReplyI5QListI5QPairI7QStringjEEED1Ev at Base 0.5.7
#MISSING: 0.5.8# _ZN10QDBusReplyI5QListI5QPairI7QStringjEEEaSERK12QDBusMessage at Base 0.5.6
#MISSING: 0.5.8# _ZN10QDBusReplyI5QListI5QPairI7QStringjEEEaSERKS5_ at Base 0.5.6
+ _ZN10QDBusReplyI5QListI5QPairIb7QStringEEEC1ERK12QDBusMessage at Base 0.7.5
+ _ZN10QDBusReplyI5QListI5QPairIb7QStringEEEC2ERK12QDBusMessage at Base 0.7.5
#MISSING: 0.5.8# _ZN10QDBusReplyI5QListI5QPairIb7QStringEEED1Ev at Base 0.5.7
#MISSING: 0.5.8# _ZN10QDBusReplyI5QListI9StrigiHitEEC1ERK12QDBusMessage at Base 0.5.6
#MISSING: 0.5.8# _ZN10QDBusReplyI5QListI9StrigiHitEED1Ev at Base 0.5.7
#MISSING: 0.5.8# _ZN10QDBusReplyI5QListI9StrigiHitEEaSERKS3_ at Base 0.5.6
-#MISSING: 0.5.8# _ZN10QDBusReplyI7QStringED1Ev at Base 0.5.7
+ _ZN10QDBusReplyI7QStringED1Ev at Base 0.7.5
+ _ZN10QDBusReplyI7QStringED2Ev at Base 0.7.5
#MISSING: 0.5.8# _ZN10QDBusReplyI7QStringEaSERKS1_ at Base 0.5.6
#MISSING: 0.5.8# _ZN10QDBusReplyIiEC1ERK12QDBusMessage at Base 0.5.6
#MISSING: 0.5.8# _ZN11QMetaTypeIdI4QMapI7QStringS1_EE14qt_metatype_idEv at Base 0.5.7
@@ -84,6 +93,8 @@ libstrigiqtdbusclient.so.0 libstrigiqtdbusclient0 #MINVER#
#MISSING: 0.5.8# _ZN11QMetaTypeIdI5QPairIb7QStringEE14qt_metatype_idEv at Base 0.5.7
#MISSING: 0.5.8# _ZN11QMetaTypeIdI9QMultiMapIi7QStringEE14qt_metatype_idEv at Base 0.5.7
#MISSING: 0.5.8# _ZN11QMetaTypeIdI9StrigiHitE14qt_metatype_idEv at Base 0.5.7
+ _ZN11QStringListD1Ev at Base 0.7.5
+ _ZN11QStringListD2Ev at Base 0.7.5
_ZN12StrigiClient10setFiltersERK5QListI5QPairIb7QStringEE at Base 0.5.5
_ZN12StrigiClient10stopDaemonEv at Base 0.5.5
_ZN12StrigiClient12getHistogramERK7QStringS2_S2_ at Base 0.5.5
@@ -115,6 +126,8 @@ libstrigiqtdbusclient.so.0 libstrigiqtdbusclient0 #MINVER#
_ZN17StrigiAsyncClient15sendNextRequestEv at Base 0.5.5
_ZN17StrigiAsyncClient16staticMetaObjectE at Base 0.5.5
_ZN17StrigiAsyncClient22addGetHistogramRequestERK7QStringS2_S2_ at Base 0.5.5
+ _ZN17StrigiAsyncClient7RequestD1Ev at Base 0.7.5
+ _ZN17StrigiAsyncClient7RequestD2Ev at Base 0.7.5
_ZN17StrigiAsyncClient7gotHitsERK7QStringiRK5QListI9StrigiHitE at Base 0.5.5
_ZN17StrigiAsyncClient9handleGetERK12QDBusMessage at Base 0.5.5
_ZN17StrigiAsyncClientC1Ev at Base 0.5.5
@@ -125,85 +138,111 @@ libstrigiqtdbusclient.so.0 libstrigiqtdbusclient0 #MINVER#
#MISSING: 0.5.8# _ZN26VandenoeverStrigiInterface10getFiltersEv at Base 0.5.7
#MISSING: 0.5.8# _ZN26VandenoeverStrigiInterface10stopDaemonEv at Base 0.5.7
#MISSING: 0.5.8# _ZN26VandenoeverStrigiInterface11getBackEndsEv at Base 0.5.7
-#MISSING: 0.5.8# _ZN26VandenoeverStrigiInterface11qt_metacallEN11QMetaObject4CallEiPPv at Base 0.5.6
-#MISSING: 0.5.8# _ZN26VandenoeverStrigiInterface11qt_metacastEPKc at Base 0.5.6
+ _ZN26VandenoeverStrigiInterface11getKeywordsERK7QStringS2_RK11QStringListjj at Base 0.7.5
+ _ZN26VandenoeverStrigiInterface11qt_metacallEN11QMetaObject4CallEiPPv at Base 0.7.5
+ _ZN26VandenoeverStrigiInterface11qt_metacastEPKc at Base 0.7.5
+ _ZN26VandenoeverStrigiInterface12getHistogramERK7QStringS2_S2_ at Base 0.7.5
#MISSING: 0.5.8# _ZN26VandenoeverStrigiInterface12stopIndexingEv at Base 0.5.7
+ _ZN26VandenoeverStrigiInterface13countKeywordsERK7QStringS2_RK11QStringList at Base 0.7.5
#MISSING: 0.5.8# _ZN26VandenoeverStrigiInterface13getFieldNamesEv at Base 0.5.7
#MISSING: 0.5.8# _ZN26VandenoeverStrigiInterface13startIndexingEv at Base 0.5.7
#MISSING: 0.5.8# _ZN26VandenoeverStrigiInterface15getIndexedFilesEv at Base 0.5.7
-#MISSING: 0.5.8# _ZN26VandenoeverStrigiInterface16staticMetaObjectE at Base 0.5.6
+ _ZN26VandenoeverStrigiInterface16staticMetaObjectE at Base 0.7.5
#MISSING: 0.5.8# _ZN26VandenoeverStrigiInterface21getIndexedDirectoriesEv at Base 0.5.7
#MISSING: 0.5.8# _ZN26VandenoeverStrigiInterface21setIndexedDirectoriesERK11QStringList at Base 0.5.7
+ _ZN26VandenoeverStrigiInterface7getHitsERK7QStringjj at Base 0.7.5
#MISSING: 0.5.8# _ZN26VandenoeverStrigiInterface8isActiveEv at Base 0.5.7
#MISSING: 0.5.8# _ZN26VandenoeverStrigiInterface9countHitsERK7QString at Base 0.5.7
#MISSING: 0.5.8# _ZN26VandenoeverStrigiInterface9getStatusEv at Base 0.5.7
-#MISSING: 0.5.8# _ZN26VandenoeverStrigiInterfaceC1ERK7QStringS2_RK15QDBusConnectionP7QObject at Base 0.5.6
-#MISSING: 0.5.8# _ZN26VandenoeverStrigiInterfaceC2ERK7QStringS2_RK15QDBusConnectionP7QObject at Base 0.5.6
-#MISSING: 0.5.8# _ZN26VandenoeverStrigiInterfaceD0Ev at Base 0.5.6
-#MISSING: 0.5.8# _ZN26VandenoeverStrigiInterfaceD1Ev at Base 0.5.6
-#MISSING: 0.5.8# _ZN26VandenoeverStrigiInterfaceD2Ev at Base 0.5.6
-#MISSING: 0.5.8# _ZN4QMapI7QString11QStringListE13detach_helperEv at Base 0.5.6
+ _ZN26VandenoeverStrigiInterfaceC1ERK7QStringS2_RK15QDBusConnectionP7QObject at Base 0.7.5
+ _ZN26VandenoeverStrigiInterfaceC2ERK7QStringS2_RK15QDBusConnectionP7QObject at Base 0.7.5
+ _ZN26VandenoeverStrigiInterfaceD0Ev at Base 0.7.5
+ _ZN26VandenoeverStrigiInterfaceD1Ev at Base 0.7.5
+ _ZN26VandenoeverStrigiInterfaceD2Ev at Base 0.7.5
+ _ZN4QMapI7QString11QStringListE13detach_helperEv at Base 0.7.5
#MISSING: 0.5.8# _ZN4QMapI7QString11QStringListE8freeDataEP8QMapData at Base 0.5.6
-#MISSING: 0.5.8# _ZN4QMapI7QStringS0_E13detach_helperEv at Base 0.5.6
+ _ZN4QMapI7QStringS0_E13detach_helperEv at Base 0.7.5
#MISSING: 0.5.8# _ZN4QMapI7QStringS0_E8freeDataEP8QMapData at Base 0.5.6
-#MISSING: 0.5.8# _ZN4QMapIi7QStringE13detach_helperEv at Base 0.5.6
+ _ZN4QMapI7QStringS0_ED1Ev at Base 0.7.5
+ _ZN4QMapI7QStringS0_ED2Ev at Base 0.7.5
+ _ZN4QMapIi7QStringE13detach_helperEv at Base 0.7.5
#MISSING: 0.5.8# _ZN4QMapIi7QStringE8freeDataEP8QMapData at Base 0.5.6
+ _ZN5QListI5QPairI7QStringjEE13detach_helperEi at Base 0.7.5
#MISSING: 0.5.8# _ZN5QListI5QPairI7QStringjEE13detach_helperEv at Base 0.5.7
+ _ZN5QListI5QPairI7QStringjEE18detach_helper_growEii at Base 0.7.5
#MISSING: 0.5.8# _ZN5QListI5QPairI7QStringjEE4freeEPN9QListData4DataE at Base 0.5.7
#MISSING: 0.5.8# _ZN5QListI5QPairI7QStringjEE5clearEv at Base 0.5.6
-#MISSING: 0.5.8# _ZN5QListI5QPairI7QStringjEE6appendERKS2_ at Base 0.5.6
-#MISSING: 0.5.8# _ZN5QListI5QPairI7QStringjEED1Ev at Base 0.5.7
+ _ZN5QListI5QPairI7QStringjEE6appendERKS2_ at Base 0.7.5
+ _ZN5QListI5QPairI7QStringjEED1Ev at Base 0.7.5
+ _ZN5QListI5QPairI7QStringjEED2Ev at Base 0.7.5
+ _ZN5QListI5QPairIb7QStringEE13detach_helperEi at Base 0.7.5
#MISSING: 0.5.8# _ZN5QListI5QPairIb7QStringEE13detach_helperEv at Base 0.5.7
+ _ZN5QListI5QPairIb7QStringEE18detach_helper_growEii at Base 0.7.5
#MISSING: 0.5.8# _ZN5QListI5QPairIb7QStringEE4freeEPN9QListData4DataE at Base 0.5.7
#MISSING: 0.5.8# _ZN5QListI5QPairIb7QStringEE5clearEv at Base 0.5.6
-#MISSING: 0.5.8# _ZN5QListI5QPairIb7QStringEE6appendERKS2_ at Base 0.5.6
-#MISSING: 0.5.8# _ZN5QListI5QPairIb7QStringEED1Ev at Base 0.5.7
+ _ZN5QListI5QPairIb7QStringEE6appendERKS2_ at Base 0.7.5
+ _ZN5QListI5QPairIb7QStringEED1Ev at Base 0.7.5
+ _ZN5QListI5QPairIb7QStringEED2Ev at Base 0.7.5
#MISSING: 0.5.8# _ZN5QListI5QPairIb7QStringEEaSERKS3_ at Base 0.5.7
+ _ZN5QListI7QStringE13detach_helperEi at Base 0.7.5
#MISSING: 0.5.8# _ZN5QListI7QStringE13detach_helperEv at Base 0.5.7
#MISSING: 0.5.8# _ZN5QListI7QStringE4freeEPN9QListData4DataE at Base 0.5.7
#MISSING: 0.5.8# _ZN5QListI7QStringED2Ev at Base 0.5.7
#MISSING: 0.5.8# _ZN5QListI8QVariantE13detach_helperEv at Base 0.5.7
+ _ZN5QListI8QVariantE18detach_helper_growEii at Base 0.7.5
#MISSING: 0.5.8# _ZN5QListI8QVariantE4freeEPN9QListData4DataE at Base 0.5.7
-#MISSING: 0.5.8# _ZN5QListI8QVariantE6appendERKS0_ at Base 0.5.7
-#MISSING: 0.5.8# _ZN5QListI8QVariantED1Ev at Base 0.5.7
+ _ZN5QListI8QVariantE6appendERKS0_ at Base 0.7.5
+ _ZN5QListI8QVariantED1Ev at Base 0.7.5
+ _ZN5QListI8QVariantED2Ev at Base 0.7.5
+ _ZN5QListI9StrigiHitE13detach_helperEi at Base 0.7.5
#MISSING: 0.5.8# _ZN5QListI9StrigiHitE13detach_helperEv at Base 0.5.7
+ _ZN5QListI9StrigiHitE18detach_helper_growEii at Base 0.7.5
#MISSING: 0.5.8# _ZN5QListI9StrigiHitE4freeEPN9QListData4DataE at Base 0.5.7
#MISSING: 0.5.8# _ZN5QListI9StrigiHitE5clearEv at Base 0.5.6
-#MISSING: 0.5.8# _ZN5QListI9StrigiHitE6appendERKS0_ at Base 0.5.6
-#MISSING: 0.5.8# _ZN5QListI9StrigiHitED1Ev at Base 0.5.7
+ _ZN5QListI9StrigiHitE6appendERKS0_ at Base 0.7.5
+ _ZN5QListI9StrigiHitED1Ev at Base 0.7.5
+ _ZN5QListI9StrigiHitED2Ev at Base 0.7.5
+ _ZN5QListIN17StrigiAsyncClient7RequestEE13detach_helperEi at Base 0.7.5
#MISSING: 0.5.8# _ZN5QListIN17StrigiAsyncClient7RequestEE13detach_helperEv at Base 0.5.6
+ _ZN5QListIN17StrigiAsyncClient7RequestEE18detach_helper_growEii at Base 0.7.5
#MISSING: 0.5.8# _ZN5QListIN17StrigiAsyncClient7RequestEE4freeEPN9QListData4DataE at Base 0.5.6
-#MISSING: 0.5.8# _ZN5QListIN17StrigiAsyncClient7RequestEE6appendERKS1_ at Base 0.5.6
-#MISSING: 0.5.8# _ZN5QListIN17StrigiAsyncClient7RequestEED1Ev at Base 0.5.6
+ _ZN5QListIN17StrigiAsyncClient7RequestEE6appendERKS1_ at Base 0.7.5
+ _ZN5QListIN17StrigiAsyncClient7RequestEED1Ev at Base 0.7.5
+ _ZN5QListIN17StrigiAsyncClient7RequestEED2Ev at Base 0.7.5
+ _ZN6QDebugD1Ev at Base 0.7.5
+ _ZN6QDebugD2Ev at Base 0.7.5
#MISSING: 0.5.8# _ZN7QStringC1ERK13QLatin1String at Base 0.5.7
-#MISSING: 0.5.8# _ZN7QStringD1Ev at Base 0.5.7
+ _ZN7QStringD1Ev at Base 0.7.5
+ _ZN7QStringD2Ev at Base 0.7.5
+ _ZN9StrigiHitD1Ev at Base 0.7.5
+ _ZN9StrigiHitD2Ev at Base 0.7.5
_ZNK12StrigiClient10getFiltersEv at Base 0.5.5
_ZNK12StrigiClient21getIndexedDirectoriesEv at Base 0.5.5
_ZNK12StrigiClient7getHitsERK7QStringii at Base 0.5.5
_ZNK12StrigiClient9countHitsERK7QString at Base 0.5.5
_ZNK12StrigiClient9getStatusEv at Base 0.5.5
_ZNK17StrigiAsyncClient10metaObjectEv at Base 0.5.5
-#MISSING: 0.5.8# _ZNK26VandenoeverStrigiInterface10metaObjectEv at Base 0.5.6
+ _ZNK26VandenoeverStrigiInterface10metaObjectEv at Base 0.7.5
#MISSING: 0.5.8# _ZNK4QMapI7QString11QStringListE15mutableFindNodeEPPN8QMapData4NodeERKS0_ at Base 0.5.6
-#MISSING: 0.5.8# _ZNK4QMapI7QStringS0_E15mutableFindNodeEPPN8QMapData4NodeERKS0_ at Base 0.5.6
+ _ZNK4QMapI7QStringS0_E15mutableFindNodeEPPN8QMapData4NodeERKS0_ at Base 0.7.5
#MISSING: 0.5.8# _ZNK4QMapIi7QStringE15mutableFindNodeEPPN8QMapData4NodeERKi at Base 0.5.6
_ZTI17StrigiAsyncClient at Base 0.5.5
-#MISSING: 0.5.8# _ZTI26VandenoeverStrigiInterface at Base 0.5.6
+ _ZTI26VandenoeverStrigiInterface at Base 0.7.5
_ZTS17StrigiAsyncClient at Base 0.5.5
-#MISSING: 0.5.8# _ZTS26VandenoeverStrigiInterface at Base 0.5.6
+ _ZTS26VandenoeverStrigiInterface at Base 0.7.5
_ZTV17StrigiAsyncClient at Base 0.5.5
-#MISSING: 0.5.8# _ZTV26VandenoeverStrigiInterface at Base 0.5.6
-#MISSING: 0.5.8# _ZZN11QMetaTypeIdI4QMapI7QStringS1_EE14qt_metatype_idEvE11metatype_id at Base 0.5.6
-#MISSING: 0.5.8# _ZZN11QMetaTypeIdI5QListI5QPairI7QStringjEEE14qt_metatype_idEvE11metatype_id at Base 0.5.6
-#MISSING: 0.5.8# _ZZN11QMetaTypeIdI5QListI5QPairIb7QStringEEE14qt_metatype_idEvE11metatype_id at Base 0.5.6
-#MISSING: 0.5.8# _ZZN11QMetaTypeIdI5QListI9StrigiHitEE14qt_metatype_idEvE11metatype_id at Base 0.5.6
-#MISSING: 0.5.8# _ZZN11QMetaTypeIdI5QPairI7QStringjEE14qt_metatype_idEvE11metatype_id at Base 0.5.6
-#MISSING: 0.5.8# _ZZN11QMetaTypeIdI5QPairIb7QStringEE14qt_metatype_idEvE11metatype_id at Base 0.5.6
-#MISSING: 0.5.8# _ZZN11QMetaTypeIdI9QMultiMapIi7QStringEE14qt_metatype_idEvE11metatype_id at Base 0.5.6
-#MISSING: 0.5.8# _ZZN11QMetaTypeIdI9StrigiHitE14qt_metatype_idEvE11metatype_id at Base 0.5.6
-#MISSING: 0.5.8# _ZlsR13QDBusArgumentRK5QPairI7QStringjE at Base 0.5.6
-#MISSING: 0.5.8# _ZlsR13QDBusArgumentRK5QPairIb7QStringE at Base 0.5.6
-#MISSING: 0.5.8# _ZlsR13QDBusArgumentRK9StrigiHit at Base 0.5.6
-#MISSING: 0.5.8# _ZrsRK13QDBusArgumentR5QPairI7QStringjE at Base 0.5.6
-#MISSING: 0.5.8# _ZrsRK13QDBusArgumentR5QPairIb7QStringE at Base 0.5.6
-#MISSING: 0.5.8# _ZrsRK13QDBusArgumentR9StrigiHit at Base 0.5.6
+ _ZTV26VandenoeverStrigiInterface at Base 0.7.5
+ _ZZN11QMetaTypeIdI4QMapI7QStringS1_EE14qt_metatype_idEvE11metatype_id at Base 0.7.5
+ _ZZN11QMetaTypeIdI5QListI5QPairI7QStringjEEE14qt_metatype_idEvE11metatype_id at Base 0.7.5
+ _ZZN11QMetaTypeIdI5QListI5QPairIb7QStringEEE14qt_metatype_idEvE11metatype_id at Base 0.7.5
+ _ZZN11QMetaTypeIdI5QListI9StrigiHitEE14qt_metatype_idEvE11metatype_id at Base 0.7.5
+ _ZZN11QMetaTypeIdI5QPairI7QStringjEE14qt_metatype_idEvE11metatype_id at Base 0.7.5
+ _ZZN11QMetaTypeIdI5QPairIb7QStringEE14qt_metatype_idEvE11metatype_id at Base 0.7.5
+ _ZZN11QMetaTypeIdI9QMultiMapIi7QStringEE14qt_metatype_idEvE11metatype_id at Base 0.7.5
+ _ZZN11QMetaTypeIdI9StrigiHitE14qt_metatype_idEvE11metatype_id at Base 0.7.5
+ _ZlsR13QDBusArgumentRK5QPairI7QStringjE at Base 0.7.5
+ _ZlsR13QDBusArgumentRK5QPairIb7QStringE at Base 0.7.5
+ _ZlsR13QDBusArgumentRK9StrigiHit at Base 0.7.5
+ _ZrsRK13QDBusArgumentR5QPairI7QStringjE at Base 0.7.5
+ _ZrsRK13QDBusArgumentR5QPairIb7QStringE at Base 0.7.5
+ _ZrsRK13QDBusArgumentR9StrigiHit at Base 0.7.5
--
1.7.5.4
-------------- next part --------------
>From 03747961b6b9b809db7eb446765c04c50fe4850b Mon Sep 17 00:00:00 2001
From: Daniel Schaal <farbing at web.de>
Date: Wed, 17 Aug 2011 12:26:41 +0200
Subject: [PATCH 7/8] debian/copyright: don't refer to symlinked license
---
debian/copyright | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/debian/copyright b/debian/copyright
index b67898d..018eab6 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -74,7 +74,7 @@ dostime license:
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
On Debian systems, the complete text of the GNU General
-Public License can be found in `/usr/share/common-licenses/GPL'.
+Public License can be found in `/usr/share/common-licenses/GPL-2'.
strigi license:
--
1.7.5.4
-------------- next part --------------
>From ab9adfd3308f86b64d66ee088005fd5f40e90cc3 Mon Sep 17 00:00:00 2001
From: Daniel Schaal <farbing at web.de>
Date: Wed, 17 Aug 2011 12:30:43 +0200
Subject: [PATCH 8/8] update changelog for 0.7.5-0r1
---
debian/changelog | 16 ++++++++++++++++
1 files changed, 16 insertions(+), 0 deletions(-)
diff --git a/debian/changelog b/debian/changelog
index 67f527c..3faba76 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,19 @@
+strigi (0.7.5-0r1) UNRELEASED; urgency=low
+
+ * debian/patches:
+ - remove 01_remove_FindQt4.cmake_local_copy.diff,
+ fixed upstream
+ * debian/control:
+ - add dbus-x11 and libgamin-dev build dependencies
+ * debian/libstreams0.docs: docs removed upstream
+ * debian/*.install: add new headers and cmake files
+ * remove deskbar-plugins-strigi,
+ not compatible with deskbar >= 2.20
+ * debian/*.symbols: update amd64 symbols files
+ * debian/copyright: don't refer to symlinked license
+
+ -- Daniel Schaal <farbing at web.de> Wed, 17 Aug 2011 12:16:48 +0200
+
strigi (0.7.2-1) unstable; urgency=low
* New upstream release.
--
1.7.5.4
More information about the pkg-kde-extras
mailing list