Sophie

Sophie

distrib > Mageia > 7 > i586 > by-pkgid > ddd234c07f2e48a68ee0e8fa4350c697 > files > 1

beecrypt-4.2.1-29.mga7.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