/usr/include/kpeople/kpeople_export.h is in libkpeople-dev 0.2.2-2.
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 | #ifndef KPEOPLE_EXPORT_H
#define KPEOPLE_EXPORT_H
// needed for KDE_EXPORT and KDE_IMPORT macros
#include <kdemacros.h>
#ifndef KPEOPLE_EXPORT
# if defined(MAKE_KPEOPLE_LIB)
// We are building this library
# define KPEOPLE_EXPORT KDE_EXPORT
# else
// We are using this library
# define KPEOPLE_EXPORT KDE_IMPORT
# endif
#endif
# ifndef KPEOPLE_EXPORT_DEPRECATED
# define KPEOPLE_EXPORT_DEPRECATED KDE_DEPRECATED KPEOPLE_EXPORT
# endif
#endif
|