use the correct export macros to make a windows patch easier. svn path=/trunk/KDE/kdebase/apps/konsole/; revision=922444wilder-portage
parent
e45c312a7a
commit
98ca94ade7
17 changed files with 90 additions and 36 deletions
@ -0,0 +1,36 @@ |
||||
/*
|
||||
This file is part of the KDE project |
||||
Copyright (C) 2009 Patrick Spendrin <ps_ml@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 version 2 as published by the Free Software Foundation. |
||||
|
||||
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 KONSOLE_EXPORT_H |
||||
#define KONSOLE_EXPORT_H |
||||
|
||||
/* needed for KDE_EXPORT macros */ |
||||
#include <kdemacros.h> |
||||
|
||||
#ifndef KONSOLEPRIVATE_EXPORT |
||||
# if defined(MAKE_KONSOLEPRIVATE_LIB) |
||||
/* We are building this library */ |
||||
# define KONSOLEPRIVATE_EXPORT KDE_EXPORT |
||||
# else |
||||
/* We are using this library */ |
||||
# define KONSOLEPRIVATE_EXPORT KDE_IMPORT |
||||
# endif |
||||
#endif |
||||
|
||||
#endif |
||||
Loading…
Reference in new issue