[Fuse-for-macosx-commits] SF.net SVN: fuse-for-macosx:[782] trunk/fuse/fusepb/generate.pl
Brought to you by:
fredm
From: <fr...@us...> - 2014-12-10 09:55:29
|
Revision: 782 http://sourceforge.net/p/fuse-for-macosx/code/782 Author: fredm Date: 2014-12-10 09:55:24 +0000 (Wed, 10 Dec 2014) Log Message: ----------- Restore gcrypt components to generator script. Modified Paths: -------------- trunk/fuse/fusepb/generate.pl Modified: trunk/fuse/fusepb/generate.pl =================================================================== --- trunk/fuse/fusepb/generate.pl 2014-12-09 12:49:35 UTC (rev 781) +++ trunk/fuse/fusepb/generate.pl 2014-12-10 09:55:24 UTC (rev 782) @@ -177,14 +177,18 @@ if( /LIBSPECTRUM_INCLUDE_GCRYPT/ ) { - $_ = ''; + $_ = << "CODE"; +#include <gcrypt.h> +CODE } if( /LIBSPECTRUM_SIGNATURE_PARAMETERS/ ) { - $_ = "/* Signature parameters not stored as libgcrypt is not present */ -"; + $_ = << "CODE"; + /* The DSA signature parameters 'r' and 's' */ + gcry_mpi_t r, s; +CODE } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |