FTB on latest CVS with -DUSE_GMP
Brought to you by:
gbvalor
yeafft.c:
/* This is a variant of GNU longlong.h */
#ifdef FFT_CHECK
# include "longlong.h"
#endif
There is no "longlong.h" file. Commenting out that line
appears to make it compile correctly, but of course
doesn't let it build as yeafft.c depends on functions
that it expects within longlong.h.
Phil
Logged In: YES
user_id=975397
yeafft.c requires bigA and bigB, but doesn't include round.h
If you add a #include "round.h", then it still won't build
because bigA and bigB are defined in glucas.c, and an no
application apart from glucas will actually want to build
with glucas.c.
bigA and bigB should be pulled out to a round.c file.