Sophie

Sophie

distrib > Mageia > 5 > x86_64 > by-pkgid > 7b39f7a613e61f4f93227194441f597b > files > 1

beecrypt-4.2.1-20.mga5.src.rpm

--- beecrypt-4.1.2/gnu.h.in.biarch	2006-05-22 15:53:45.000000000 -0400
+++ beecrypt-4.1.2/gnu.h.in	2006-05-22 15:53:49.000000000 -0400
@@ -61,7 +61,12 @@
  * make assumptions about the size set by the configure script
  */
 #if !defined(MP_WBITS)
-# define MP_WBITS	@MP_WBITS@
+# include <bits/wordsize.h>
+#if __WORDSIZE == 32
+# define MP_WBITS	32U
+#elif __WORDSIZE == 64
+# define MP_WBITS	64U
+#endif
 #endif
 
 #endif