mirror of
https://github.com/wesnoth/wesnoth
synced 2025-05-04 07:45:19 +00:00
define the ingame version *only* in src/wesconfig.h...
...for this forcing an undef is needed to get around autotools... the config.h.dummy seems to not be used at all by autotools, so removing it now
This commit is contained in:
parent
54ad9e9a72
commit
c73718c234
@ -1,21 +0,0 @@
|
||||
|
||||
/* Name of package */
|
||||
#define PACKAGE "wesnoth"
|
||||
|
||||
/* Define to the address where bug reports for this package should be sent. */
|
||||
#define PACKAGE_BUGREPORT "http://bugs.wesnoth.org"
|
||||
|
||||
/* Define to the full name of this package. */
|
||||
#define PACKAGE_NAME "Battle for Wesnoth"
|
||||
|
||||
/* Define to the full name and version of this package. */
|
||||
#define PACKAGE_STRING "Battle for Wesnoth 1.5.9+svn"
|
||||
|
||||
/* Define to the one symbol short name of this package. */
|
||||
#define PACKAGE_TARNAME "wesnoth"
|
||||
|
||||
/* Define to the version of this package. */
|
||||
#define PACKAGE_VERSION "1.5.9+svn"
|
||||
|
||||
/* Version number of package */
|
||||
#define VERSION "1.5.9+svn"
|
@ -24,9 +24,14 @@
|
||||
# define LOCALEDIR "translations"
|
||||
# endif
|
||||
#endif
|
||||
#ifndef VERSION
|
||||
#define VERSION "1.5.9+svn"
|
||||
|
||||
//always use the version string in here, otherwise autotools can override in
|
||||
//a bad way...
|
||||
#ifdef VERSION
|
||||
#undef VERSION
|
||||
#endif
|
||||
#define VERSION "1.5.9+svn"
|
||||
|
||||
#ifndef PACKAGE
|
||||
#define PACKAGE "wesnoth"
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user