the changes to wesconfig.h didn't survive a configure, now they do

This commit is contained in:
Mark de Wever 2007-03-11 17:51:17 +00:00
parent d369bfa867
commit be2b213a46
2 changed files with 7 additions and 3 deletions

View File

@ -32,7 +32,13 @@ AC_CONFIG_COMMANDS([src/wesconfig.h],
# define LOCALEDIR "translations" # define LOCALEDIR "translations"
# endif # endif
#endif #endif
/**
* WML errors can be shown in 2 ways, as dialog or as chat message
* if WML_ERROR_DIALOG == 1 it's shown as dialog else as chat message
* for development versions the dialog should be used for the stable
* releases the chat messages
*/
#define WML_ERROR_DIALOG 1
#endif #endif
EOF EOF
]) ])

View File

@ -11,7 +11,6 @@
# define LOCALEDIR "translations" # define LOCALEDIR "translations"
# endif # endif
#endif #endif
/** /**
* WML errors can be shown in 2 ways, as dialog or as chat message * WML errors can be shown in 2 ways, as dialog or as chat message
* if WML_ERROR_DIALOG == 1 it's shown as dialog else as chat message * if WML_ERROR_DIALOG == 1 it's shown as dialog else as chat message
@ -19,5 +18,4 @@
* releases the chat messages * releases the chat messages
*/ */
#define WML_ERROR_DIALOG 1 #define WML_ERROR_DIALOG 1
#endif #endif