Scribus
Open source desktop publishing at your fingertips
scconfig.h
1 /*
2 For general Scribus (>=1.3.2) copyright and licensing information please refer
3 to the COPYING file provided with the program. Following this notice may exist
4 a copyright and/or license notice that predates the release of Scribus 1.3.2
5 for which a new license (GPL+exception) is in place.
6 */
7 #ifndef _SCCONFIG_H
8 #define _SCCONFIG_H
9 
10 /*
11  * IMPORTANT
12  *
13  * This file is included by files compiled with a pure C compiler.
14  * Protect C++ code with appropriate preprocessor directives, or you
15  * might break the build. That means only C-style comments, too.
16  *
17  */
18 
19 /* Include win32 specific config instead of portable one if appropriate */
20 #ifdef _MSC_VER
21  #if (_MSC_VER >= 1200)
22  #include "win-config.h"
23  #endif
24 #else
25  #include "config.h"
26 #endif
27 
28 #endif