wingo pushed a commit to branch lightning
in repository guile.

commit 32b3d7a7a4bc2ac156454b5e275ed2ecf5657646
Author: pcpa <[email protected]>
Date:   Mon Aug 26 12:40:20 2013 -0300

    Correct build on FreeBSD/amd64
---
 THANKS       | 1 +
 configure.ac | 3 ++-
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/THANKS b/THANKS
index 94c191b..80e9e8a 100644
--- a/THANKS
+++ b/THANKS
@@ -13,3 +13,4 @@ Sam Steingold                 <[email protected]>
 Jens Troeger                    <[email protected]>
 Tom Tromey                      <[email protected]>
 Trent Nelson                    <[email protected]>
+Vitaly Magerya                  <[email protected]>
diff --git a/configure.ac b/configure.ac
index 02012b6..4a10b6b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -87,6 +87,7 @@ else
 fi
 
 case "$host_os" in
+    *freebsd*)         SHLIB=""        ;;
     *hpux*)            SHLIB="-ldld"   ;;
     *)                 SHLIB="-ldl"    ;;
 esac
@@ -94,7 +95,7 @@ AC_SUBST(SHLIB)
 
 cpu=
 case "$target_cpu" in
-    i?86|x86_64)       cpu=x86         ;;
+    i?86|x86_64|amd64) cpu=x86         ;;
     *arm*)             cpu=arm         ;;
     *mips*)            cpu=mips        ;;
     *powerpc*)         cpu=ppc         ;;

Reply via email to