|
From: Alex M. S. <arc...@us...> - 2010-04-11 21:39:11
|
Update of /cvsroot/nettle/nettle/c In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv13883/c Modified Files: choices Log Message: Update release scripts for beta release. Update various dates from 2003/2004 to 2010. Update ZapRedraw to 0.48 for BeagleBoard compatibility - this also requires a 'fake' ZapFontsMessages path to be configured in the event that the user doesn't have a ZapFonts installation, so have added these messages too, and configuration of them into the !Run file. Change the build options to add -c90 (this seems to fix the __assert2 issue that Castle's C compiler causes with stubsg), -Wp to suppress the non-ANSI include warnings that TCPIPLibs generates, and -memaccess -L22-S22-L41 to build the binary in a way that the BeagleBoard should be happy with. (These changes are partly based on the ones that James Peacock sent me). And do a nasty change to c/choices to allow the errno.h that I have to build with -c90 - it appears to fail to build for me, so temporarily disable the #include and locally declare errno. Tested/built on RPCEmu and it seems to run/display OK. Index: choices =================================================================== RCS file: /cvsroot/nettle/nettle/c/choices,v retrieving revision 1.41 retrieving revision 1.42 diff -C2 -d -r1.41 -r1.42 *** choices 2 Apr 2004 06:31:59 -0000 1.41 --- choices 11 Apr 2010 21:39:02 -0000 1.42 *************** *** 19,23 **** #include "zapredraw.h" ! #include <errno.h> #include <time.h> --- 19,29 ---- #include "zapredraw.h" ! /* FIXME archifishal 11/04/2010: The version of errno.h I have doesn't build ! * with -c90 defined, for now just define 'errno' locally */ ! /*#include <errno.h>*/ ! ! #define errno __errno ! extern int errno; ! #include <time.h> |