summaryrefslogtreecommitdiff
path: root/iup/src/iup.c
diff options
context:
space:
mode:
Diffstat (limited to 'iup/src/iup.c')
-rwxr-xr-xiup/src/iup.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/iup/src/iup.c b/iup/src/iup.c
index d103af5..0cb25f5 100755
--- a/iup/src/iup.c
+++ b/iup/src/iup.c
@@ -62,6 +62,7 @@
/* This appears only here to avoid changing the iup.h header fo bug fixes */
#define IUP_VERSION_FIX ""
#define IUP_VERSION_FIX_NUMBER 0
+/*#define IUP_VERSION_FIX_DATE "2010/XX/XX" */
const char iup_ident[] =
"$IUP: " IUP_VERSION IUP_VERSION_FIX " " IUP_COPYRIGHT " $\n"
@@ -79,7 +80,11 @@ char* IupVersion(void)
char* IupVersionDate(void)
{
+#ifdef IUP_VERSION_FIX_DATE
+ return IUP_VERSION_FIX_DATE;
+#else
return IUP_VERSION_DATE;
+#endif
}
int IupVersionNumber(void)