Fixed bswap_32, bswap_64 (#defines were a little off)
diff --git a/configure b/configure
index 8ce9585..8990d7e 100755
--- a/configure
+++ b/configure
@@ -5296,8 +5296,10 @@
+echo "host_cpu: $host_cpu"
+
if test $host_cpu = x86; then
- echo "x86 cpu found" # should use inline assembly
+ echo "x86 cpu found"
fi
case $host_cpu in
@@ -5305,7 +5307,11 @@
cat >>confdefs.h <<\_ACEOF
#define CPU_CISC 1
_ACEOF
-;;
+
+ cat >>confdefs.h <<\_ACEOF
+#define HAVE_X86 1
+_ACEOF
+;; # use x86 inline assembly
* )
cat >>confdefs.h <<\_ACEOF
#define CPU_RISC 1