blob: ef7337114500610aa7b8f274fc2a67bf04953d5d (
plain)
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
|
/*
For general Scribus (>=1.3.2) copyright and licensing information please refer
to the COPYING file provided with the program. Following this notice may exist
a copyright and/or license notice that predates the release of Scribus 1.3.2
for which a new license (GPL+exception) is in place.
*/
#ifndef _SCCONFIG_H
#define _SCCONFIG_H
/*
* IMPORTANT
*
* This file is included by files compiled with a pure C compiler.
* Protect C++ code with appropriate preprocessor directives, or you
* might break the build. That means only C-style comments, too.
*
*/
/* Include win32 specific config instead of portable one if appropriate */
#ifdef _MSC_VER
#if (_MSC_VER >= 1200)
#include "win-config.h"
#endif
#else
#include "config.h"
#endif
#endif
|