Re: [AD] djgpp compilation problems |
[ Thread Index |
Date Index
| More lists.liballeg.org/allegro-developers Archives
]
- To: Allegro Developer <conductors@xxxxxxxxxx>
- Subject: Re: [AD] djgpp compilation problems
- From: Sven Sandberg <svsa1977@xxxxxxxxxx>
- Date: Sat, 24 Nov 2001 16:07:07 +0100
- Organization: Uppsala University
Bogdan wrote:
> I'm using DJGPP 2.04 on Win ME,and when I start the compilation from
> the msdos prompt it miserably fails at make cleantest.
I sent a patch for this a while ago, but it seems it never got applied.
I send it again (it's against the latest CVS).
--
Sven Sandberg svsa1977@xxxxxxxxxx home.student.uu.se/svsa1977
--- allegro/makefile.tst Sun Nov 18 11:52:44 2001
+++ allegro/makefile.tst Sun Nov 18 11:47:38 2001
@@ -9,7 +9,7 @@
ifdef UNIX_TOOLS
echo "/* Generated by makefile.tst */" > $(ASMCAPA_DIR_U)/asmcapa.h
else
- echo /* Generated by makefile.tst */ > $(ASMCAPA_DIR_D)\asmcapa.h
+ cp src/misc/_asmcapa.h $(ASMCAPA_DIR_U)/asmcapa.h
endif
mmxtest:
@@ -17,7 +17,7 @@
ifdef UNIX_TOOLS
echo "#define ALLEGRO_MMX" >> $(ASMCAPA_DIR_U)/asmcapa.h
else
- echo #define ALLEGRO_MMX >> $(ASMCAPA_DIR_D)\asmcapa.h
+ copy src\misc\_asmcapa.h $(ASMCAPA_DIR_D)\asmcapa.h
endif
ssetest:
--- zzz Thu Jan 1 00:00:00 1970
+++ allegro/src/misc/_asmcapa.h Sun Nov 18 11:55:50 2001
@@ -0,0 +1 @@
+/* Generated by makefile.tst */