revert 2008-03-24T16:04:02Z!esr@thyrsus.com

the file *is* needed to build eg on windows and maybe other platforms
that don't rely on autotools and scons
This commit is contained in:
Nils Kneuper 2008-03-25 14:13:28 +00:00
parent 0f5bdaf8f3
commit 6190fc70aa

28
src/wesconfig.h Normal file
View file

@ -0,0 +1,28 @@
#ifndef WESCONFIG_H_INCLUDED
#define WESCONFIG_H_INCLUDED
//! @file wesconfig.h
//! Some defines: VERSION, PACKAGE, MIN_SAVEGAME_VERSION
//!
//! DO NOT MODIFY THIS FILE !!!
//! modify SConstruct otherwise the settings will be overwritten.
// We are building with scons, so Python cannot be absent.
#define HAVE_PYTHON
# define VERSION "1.5.0-svn"
# define PACKAGE "wesnoth"
# ifndef LOCALEDIR
# define LOCALEDIR "translations"
# endif
/**
* Some older savegames of Wesnoth cannot be loaded anymore,
* this variable defines the minimum required version.
* It is only to be updated upon changes that break *all* saves/replays
* (break as in crash Wesnoth, not compatibility issues like stat changes)
*/
#define MIN_SAVEGAME_VERSION "1.3.10"
#endif