Closed GoogleCodeExporter closed 8 years ago
On my Gentoo box it compiles fine.
Original comment by PVinc...@googlemail.com
on 22 Aug 2008 at 1:08
According to the man page, these functions are provided by string.h, not
stdlib.h, so
it's just a stroke of luck that string.h happened to be included, somehow, and
this
doesn't happen everywhere, apparently. Better add the proper include so that it
works
everywhere!
Could you run the following command on your Opensuse box?
make -k 2>&1 grep '***'
This should give us the list of files that are affected.
I fixed this particular instance.
Original comment by pphaneuf
on 22 Aug 2008 at 5:39
I guess you meant: make -k 2>&1 | grep -e '\*\*\*'
Here is the output:
make: *** [source/fonts.o] Erreur 1
make: *** [source/highscores.o] Erreur 1
make: *** [skelton/common/http_request.o] Erreur 1
make: *** [skelton/common/packet.o] Erreur 1
make: *** [skelton/common/res_compress.o] Erreur 1
make: *** [skelton/common/reswriter.o] Erreur 1
make: *** [skelton/common/stringtable.o] Erreur 1
make: *** [skelton/svgalib/res.o] Erreur 1
make: *** [skelton/tools/wadder/wadder.o] Erreur 1
This only lists the object files, not the sources/includes, so I ran the
following
command and attached the output:
make -k > compilation_errors.txt 2>&1
Original comment by PVinc...@googlemail.com
on 23 Aug 2008 at 2:39
Attachments:
Should be fixed by r624 and r626. Can you verify? Thanks!
Original comment by pphaneuf
on 25 Aug 2008 at 1:13
Compilation now works in both trunk and quadra-sdl branch.
Original comment by PVinc...@googlemail.com
on 26 Aug 2008 at 1:06
Original comment by pphaneuf
on 26 Aug 2008 at 8:45
Original issue reported on code.google.com by
PVinc...@googlemail.com
on 22 Aug 2008 at 12:47