guile-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Guile-commits] GNU Guile branch, branch_release-1-8, updated. release_1


From: Ludovic Courtès
Subject: [Guile-commits] GNU Guile branch, branch_release-1-8, updated. release_1-8-8-11-ga346702
Date: Wed, 23 May 2012 13:20:53 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Guile".

http://git.savannah.gnu.org/cgit/guile.git/commit/?id=a3467025d9195948dd5af2a775767bff619c7778

The branch, branch_release-1-8 has been updated
       via  a3467025d9195948dd5af2a775767bff619c7778 (commit)
       via  2ce4a1ae88dca60bcc7a2b5eb0e75eb5ba021e57 (commit)
      from  e7e267be016f23ed51ec4e68bd627683961553ca (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit a3467025d9195948dd5af2a775767bff619c7778
Author: Ludovic Courtès <address@hidden>
Date:   Wed May 23 15:18:11 2012 +0200

    Remove unnecessary `chmod' in `test-suite/standalone'.
    
    * test-suite/standalone/Makefile.am (all-local): Remove.

commit 2ce4a1ae88dca60bcc7a2b5eb0e75eb5ba021e57
Author: Ludovic Courtès <address@hidden>
Date:   Wed May 23 15:17:18 2012 +0200

    configure: Provide guesses for `AC_RUN_IFELSE' tests when cross-compiling.
    
    * configure.in: Define PTHREAD_ATTR_GETSTACK_WORKS when cross-compiling.

-----------------------------------------------------------------------

Summary of changes:
 configure.in                      |   15 +++++++++++----
 test-suite/standalone/Makefile.am |    3 ---
 2 files changed, 11 insertions(+), 7 deletions(-)

diff --git a/configure.in b/configure.in
index b46f88f..f058841 100644
--- a/configure.in
+++ b/configure.in
@@ -1446,11 +1446,18 @@ int main ()
 #endif
 ]])],
 [works=yes
-AC_DEFINE(PTHREAD_ATTR_GETSTACK_WORKS, [1], [Define when pthread_att_get_stack 
works for the main thread])],
-[works=no],
-[])
+ AC_MSG_RESULT([yes])],
+[works=no
+ AC_MSG_RESULT([no])],
+[works=yes
+ AC_MSG_RESULT([assuming it does])])
+
+if test "x$works" = "xyes"; then
+   AC_DEFINE(PTHREAD_ATTR_GETSTACK_WORKS, [1],
+     [Define when pthread_att_get_stack works for the main thread])
+fi
+
 CFLAGS="$old_CFLAGS"
-AC_MSG_RESULT($works)
 
 fi # with_threads=pthreads
 
diff --git a/test-suite/standalone/Makefile.am 
b/test-suite/standalone/Makefile.am
index 058ce93..d6dc782 100644
--- a/test-suite/standalone/Makefile.am
+++ b/test-suite/standalone/Makefile.am
@@ -153,7 +153,4 @@ EXTRA_DIST += test-with-guile-module.c test-scm-with-guile.c
 
 endif
 
-all-local:
-       cd ${srcdir} && chmod u+x ${check_SCRIPTS}
-
 EXTRA_DIST += ${check_SCRIPTS}


hooks/post-receive
-- 
GNU Guile



reply via email to

[Prev in Thread] Current Thread [Next in Thread]