Re: [AD] Allegro 4.2.0 RC2 -- DOS oldies |
[ Thread Index |
Date Index
| More lists.liballeg.org/allegro-developers Archives
]
OK, I've tried it with oldies (oldies? djgpp has already gcc 4.01 while
it looks for long for mingw).
DJGPP (gcc 4.01) without problems. WATCOM (OW 1.3) patches attached (has
the splitting of demo sources to multiple files another reason than to
complicate my life? :-) )
BTW one interesting thing about DOS versions (both djgpp and watcom) of
grabber: it is not runnable from explorer directory window or Total
commander, only from command prompt. however it works ok under wxp ?!
probably caused by UFO I think
--
Regards,
Michal
ICQ# 175762750
--- makefile.all.old Sun Aug 28 21:02:04 2005
+++ makefile.all Mon Aug 29 23:35:32 2005
@@ -151,7 +151,7 @@
DOCS = $(addprefix docs/txt/,$(addsuffix .txt,$(filter-out changes thanks readme, $(DOCBASEFILES))))
DOCS += $(addprefix docs/rtf/,$(addsuffix .rtf,$(DOCBASEFILES)))
DOCS += $(addprefix docs/html/,$(addsuffix .$(HTML),index $(DOCBASEFILES)))
-DOCS += $(addprefix docs/html/build/,$(addsuffix .html,$(DOCBUILDFILES)))
+DOCS += $(addprefix docs/html/build/,$(addsuffix .$(HTML),$(DOCBUILDFILES)))
DOCS += CHANGES AUTHORS THANKS readme.txt
DOCS += docs/scite/allegro.api
CHMDOCS = $(addprefix docs/chm/,$(addsuffix .$(HTML),$(DOCBASEFILES)))
--- makefile.wat.old Mon Feb 14 17:36:04 2005
+++ makefile.wat Mon Aug 29 23:30:36 2005
@@ -210,6 +210,9 @@
endif
+demo/demo.exe: $(OBJ_DIR)/demo.obj
+ $(RUNNER) wlink \\ @ $(LFLAGS) 'name $@' $(patsubst %,'file %',$(OBJECTS_DEMO)) 'library $(LIB_NAME)'
+
*/%.exe: $(OBJ_DIR)/%.obj $(LIB_NAME) $(RUNNER)
$(RUNNER) wlink \\ @ $(LFLAGS) 'name $@' 'file $<' 'library $(LIB_NAME)'
--- asmdef.c.old Sun Apr 24 17:57:50 2005
+++ asmdef.c Mon Aug 29 23:15:02 2005
@@ -18,6 +18,7 @@
*/
#define ALLEGRO_NO_CLEAR_BITMAP_ALIAS
#define ALLEGRO_NO_FIX_ALIASES
+#define ALLEGRO_NO_VHLINE_ALIAS
#include <stdio.h>
#include <stdlib.h>