Re: [AD] DJGPP compilation broken in current CVS? |
[ Thread Index |
Date Index
| More lists.liballeg.org/allegro-developers Archives
]
> I don't think I've done anything wrong, but the DJGPP build process
> fails with:
>
> make.exe: *** No rule to make target `allegro/platform/alunixac.h',
> needed by `obj/djgpp/alleg/modexgfx.o'. Stop.
>
> This seems to be due to the #include "allegro/platform/alunixac.h"
> line in src/misc/modexgfx.s. Is anybody else getting this? I guess that
> either (a) that line shouldn't be there, or (b) the include file should
> exist.
I added this line for the support of the VGA module under Linux/Unix,
because I needed some preprocessor constants.
Replace the two include lines by:
#include "../i386/asmdefs.inc"
#ifdef ALLEGRO_UNIX
#include "allegro/platform/alunixac.h"
#endif
--
Eric Botcazou
ebotcazou@xxxxxxxxxx