/usr/include/strigi/strigiconfig.h is in libstreams-dev 0.7.8-1.2+b2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 | /* 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();
}
|