1 /*
2  * SDmm - a C++ wrapper for SDL and related libraries
3  * Copyright � 2001 David Hedbor <david@hedbor.org>
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License as
7  * published by the Free Software Foundation; either version 2 of the
8  * License, or (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18  *
19  */
20 
21 
22 #ifndef SDLMM_SDLMM_CONFIG_H
23 #define SDLMM_SDLMM_CONFIG_H
24 
25 #ifdef HAVE_CONFIG_H
26 # include "sdlmm_autoconfig.h"
27 #elif defined(WIN32)
28 # define RCSID(x)
29 # define VERSION "0.1.8"
30 # define ASSERTIONS 1
31 #endif
32 
33 #ifdef ASSERTIONS
34 #include <cassert>
35 #define ASSERT(x) assert(x)
36 #else
37 #define ASSERT(x)
38 #endif
39 
40 #endif // SDLMM_BASESURFACE_H
41