Changes from arch/CVS synchronization
authorLudovic Courtès <ludo@gnu.org>
Tue, 17 Apr 2007 14:12:17 +0000 (14:12 +0000)
committerLudovic Courtès <ludo@gnu.org>
Tue, 17 Apr 2007 14:12:17 +0000 (14:12 +0000)
ChangeLog
configure.in
libguile/ChangeLog
libguile/numbers.c

index 020d576..73601b4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-04-17  Ludovic Courtès  <ludovic.courtes@laas.fr>
+
+       * configure.in (GUILE_FOR_BUILD): Reverted to `$(preinstguile)'
+       instead of `$(top_builddir_absolute)/$(preinstguile)'.
+       
 2007-04-09  Han-Wen Nienhuys  <hanwen@lilypond.org>
 
        * configure.in (HAVE_CRYPT): check for cexp, clog, carg
index b60f0a2..d0bb73b 100644 (file)
@@ -1234,7 +1234,7 @@ if test "$cross_compiling" = "yes"; then
   AC_MSG_CHECKING(guile for build)
   GUILE_FOR_BUILD="${GUILE_FOR_BUILD-guile}"
 else
-  GUILE_FOR_BUILD='$(top_builddir_absolute)/$(preinstguile)'
+  GUILE_FOR_BUILD='$(preinstguile)'
 fi   
 
 ## AC_MSG_CHECKING("if we are cross compiling")
index 6f5984f..9fd4d62 100644 (file)
@@ -1,3 +1,8 @@
+2007-04-17  Ludovic Courtès  <ludovic.courtes@laas.fr>
+
+       * numbers.c: Commented out trailing `HAVE_COMPLEX_DOUBLE' after
+       `#endif'.  Use `#ifndef HAVE_XXX' rather than `#if !HAVE_XXX'.
+
 2007-04-09  Han-Wen Nienhuys  <hanwen@lilypond.org>
 
        * numbers.c (carg): provide carg, cexp, clog in case they are
index 4454a34..522621b 100644 (file)
@@ -5997,8 +5997,8 @@ scm_is_number (SCM z)
   return scm_is_true (scm_number_p (z));
 }
 
-#if HAVE_COMPLEX_DOUBLE
-#if !HAVE_CLOG
+#ifdef HAVE_COMPLEX_DOUBLE
+#ifndef HAVE_CLOG
 complex double clog (complex double z);
 complex double
 clog (complex double z)
@@ -6007,7 +6007,7 @@ clog (complex double z)
 }
 #endif
 
-#if !HAVE_CEXP
+#ifndef HAVE_CEXP
 complex double cexp (complex double z);
 complex double
 cexp (complex double z)
@@ -6016,7 +6016,7 @@ cexp (complex double z)
 }
 #endif
 
-#if !HAVE_CARG
+#ifndef HAVE_CARG
 double carg (complex double z);
 double
 carg (complex double z)
@@ -6024,7 +6024,7 @@ carg (complex double z)
   return atan2 (cimag(z), creal(z));
 }
 #endif
-#endif HAVE_COMPLEX_DOUBLE
+#endif /* HAVE_COMPLEX_DOUBLE */
 
 
 /* In the following functions we dispatch to the real-arg funcs like log()