Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 395104 Details for
Bug 536400
kde-base/kdelibs-4.14.3-r1 fail to build
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
strigiconfig.h
strigiconfig.h (text/x-chdr), 5.77 KB, created by
Szef
on 2015-01-29 10:54:31 UTC
(
hide
)
Description:
strigiconfig.h
Filename:
MIME Type:
Creator:
Szef
Created:
2015-01-29 10:54:31 UTC
Size:
5.77 KB
patch
obsolete
>/* This file is part of Strigi Desktop Search > * > * Copyright (C) 2006 Jos van den Oever <jos@vandenoever.info> > * Copyright (C) 2007 Christian Ehrlicher <ch.ehrlicher@gmx.de> > * > * This library is free software; you can redistribute it and/or > * modify it under the terms of the GNU Library General Public > * License as published by the Free Software Foundation; either > * version 2 of the License, or (at your option) any later version. > * > * This library is distributed in the hope that it will be useful, > * but WITHOUT ANY WARRANTY; without even the implied warranty of > * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU > * Library General Public License for more details. > * > * You should have received a copy of the GNU Library General Public License > * along with this library; see the file COPYING.LIB. If not, write to > * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, > * Boston, MA 02110-1301, USA. > */ > >#ifndef STRIGICONFIG_H >#define STRIGICONFIG_H > >#define STRIGI_VERSION_STRING "0.7.8" > >/// @brief The major Strigi version number at compile time >#define STRIGI_VERSION_MAJOR 0 > >/// @brief The minor Strigi version number at compile time >#define STRIGI_VERSION_MINOR 7 > >/// @brief The Strigi release version number at compile time >#define STRIGI_VERSION_RELEASE 8 > >/** > * \brief Create a unique number from the major, minor and release number of a %Strigi version > * > * This function can be used for preprocessing. > */ >#define STRIGI_MAKE_VERSION( a,b,c ) (((a) << 16) | ((b) << 8) | (c)) > >/** > * \brief %Strigi Version as a unique number at compile time > * > * This macro calculates the %Strigi version into a number. It is mainly used > * through STRIGI_IS_VERSION in preprocessing. > */ >#define STRIGI_VERSION \ > STRIGI_MAKE_VERSION(STRIGI_VERSION_MAJOR,STRIGI_VERSION_MINOR,STRIGI_VERSION_RELEASE) > >/** > * \brief Check if the %Strigi version matches a certain version or is higher > * > * This macro is typically used to compile conditionally a part of code: > * \code > * #if STRIGI_IS_VERSION(2,1) > * // Code for Strigi 2.1 > * #else > * // Code for Strigi 2.0 > * #endif > * \endcode > */ >#define STRIGI_IS_VERSION(a,b,c) ( STRIGI_VERSION >= STRIGI_MAKE_VERSION(a,b,c) ) > >/* use the same includes for types finding as in ConfigureChecks.cmake */ >#if 0 ># include <socket.h> >#endif >#if 1 ># include <sys/socket.h> >#endif >#if 1 ># include <sys/types.h> >#endif >#if 1 ># include <unistd.h> >#endif >#if 1 ># include <stdint.h> >#endif >#if 1 ># include <stddef.h> >#endif > >// our needed types >#if !1 > #define HAVE_INT8_T 1 > #if 1==1 //is char one byte? > typedef signed char int8_t; > #else > #error Could not determine type for int8_t! > #endif >#endif > >#if !1 > #define HAVE_UINT8_T 1 > #if 1==1 //is char one byte? > typedef unsigned char uint8_t; > #else > #error Could not determine type for uint8_t! > #endif >#endif > >#if !1 > #define HAVE_INT16_T 1 > #if 2==2 //is short two bytes? > typedef short int16_t; > #else > #error Could not determine type for int16_t! > #endif >#endif > >#if !1 > #define HAVE_UINT16_T 1 > #if 2==2 //is short two bytes? > typedef unsigned short uint16_t; > #else > #error Could not determine type for uint16_t! > #endif >#endif > >#if !1 > #define HAVE_INT32_T 1 > #if 4==4 //is int four bytes? > typedef int int32_t; > #elif 8==4 //is long four bytes? > typedef long int32_t; > #else > #error Could not determine type for int32_t! > #endif >#endif > >#if !1 > #define HAVE_UINT32_T 1 > #if 4==4 //is int four bytes? > typedef unsigned int uint32_t; > #elif 8==4 //is long four bytes? > typedef unsigned long uint32_t; > #else > #error Could not determine type for uint32_t! > #endif >#endif > >#if !1 > #define HAVE_INT64_T 1 > #if 8==8 > typedef long int64_t; > #elif 8==8 > typedef long long int64_t; > #else > #error Could not determine type for int64_t! > #endif >#endif > >#if !1 > #define HAVE_UINT64_T 1 > #if 8==8 > typedef unsigned long uint64_t; > #elif 8==8 > typedef unsigned long long uint64_t; > #elif defined(HAVE___INT64) > typedef unsigned __int64 uint64_t; > #else > #error Could not determine type for uint64_t! > #endif >#endif > >#if !1 > typedef unsigned int uint; > #define HAVE_UINT 1 >#endif > >#if !1 > #ifndef _SIZE_T_DEFINED > #ifndef HAVE_SIZE_T > typedef unsigned int size_t; > #define HAVE_SIZE_T 1 > #endif > #define _SIZE_T_DEFINED 1 // kdewin32 define > #endif >#endif > >#define __STRIGI_HAVE_GCC_VISIBILITY > >/** > * @def STRIGI_EXPORT > * > * The STRIGI_EXPORT macro marks the symbol of the given variable > * to be visible, so it can be used from outside the resulting library. > * > */ >#ifdef __STRIGI_HAVE_GCC_VISIBILITY >#define STRIGI_EXPORT __attribute__ ((visibility("default"))) >#define STRIGI_IMPORT >#elif defined(_WIN32) || defined(_WIN64) >#define STRIGI_EXPORT __declspec(dllexport) >#define STRIGI_IMPORT __declspec(dllimport) >#else >#define STRIGI_EXPORT >#define STRIGI_IMPORT >#endif > >#ifndef STREAMS_EXPORT ># ifdef MAKE_STREAMS_LIB ># define STREAMS_EXPORT STRIGI_EXPORT ># else ># define STREAMS_EXPORT STRIGI_IMPORT ># endif >#endif > >#ifndef STREAMANALYZER_EXPORT ># ifdef MAKE_STREAMANALYZER_LIB ># define STREAMANALYZER_EXPORT STRIGI_EXPORT ># else ># define STREAMANALYZER_EXPORT STRIGI_IMPORT ># endif >#endif > >#ifndef STRIGI_QTDBUSCLIENT_EXPORT ># ifdef MAKE_STRIGI_QTDBUSCLIENT_LIB ># define STRIGI_QTDBUSCLIENT_EXPORT STRIGI_EXPORT ># else ># define STRIGI_QTDBUSCLIENT_EXPORT STRIGI_IMPORT ># endif >#endif > >#ifndef SEARCHCLIENT_EXPORT ># ifdef MAKE_SEARCHCLIENT_LIB ># define SEARCHCLIENT_EXPORT STRIGI_EXPORT ># else ># define SEARCHCLIENT_EXPORT STRIGI_IMPORT ># endif >#endif > >#ifndef STRIGIHTMLGUI_EXPORT ># ifdef MAKE_STRIGIHTMLGUI_LIB ># define STRIGIHTMLGUI_EXPORT STRIGI_EXPORT ># else ># define STRIGIHTMLGUI_EXPORT STRIGI_IMPORT ># endif >#endif > >#endif //STRIGICONFIG_H > >namespace Strigi { > STRIGI_EXPORT unsigned int versionMajor(); > > STRIGI_EXPORT unsigned int versionMinor(); > > STRIGI_EXPORT const char* versionString(); >}
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 536400
:
393770
|
393782
| 395104 |
395106