Re: [AD] Allegro 4.1.18 WIP RC1 |
[ Thread Index |
Date Index
| More lists.liballeg.org/allegro-developers Archives
]
Hello,
i did testing with more compilers to prevent problems like the one with
4.1.17 and djgpp was.
MinGW 3.3.1 dll+static
VC++ 7.1 (.NET 2003) dll+static
DJGPP 3.4.3
Borland C++ 5.5.1 (free command line tools)
Borland C++ 5.6.4 (CBuilderX)
these five were without problem
Open Watcom 1.2
attached patch, otherwise it compiles OK, it only does not generate
documentation (we can probably ignore it)
VC++ 6.0 dll+static
the new wwnd.c requires w98 so you need to tell vc60 about it, patch
attached
--
Regards,
Michal
--- alwatcom.orig.h Fri Feb 14 14:24:40 2003
+++ alwatcom.h Mon Jan 24 03:34:10 2005
@@ -179,3 +179,4 @@
#define ALLEGRO_EXTRA_HEADER "allegro/platform/aldos.h"
#define ALLEGRO_INTERNAL_HEADER "allegro/platform/aintdos.h"
+#define LONG_LONG long long
--- winalleg.orig.h Fri Sep 13 11:18:56 2002
+++ winalleg.h Mon Jan 24 15:20:42 2005
@@ -36,6 +36,11 @@
/* bodges to avoid conflicts between Allegro and Windows */
#define BITMAP WINDOWS_BITMAP
+/* Windows 98 or Windows NT 4.0 Service Pack 6 required */
+#ifndef WINVER
+ #define WINVER 0x0500
+#endif
+
#if (!defined SCAN_EXPORT) && (!defined SCAN_DEPEND)
#ifdef ALLEGRO_AND_MFC
#ifdef DEBUGMODE