summaryrefslogtreecommitdiff
path: root/guile
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2009-09-23 10:44:29 +0200
committerLudovic Courtès <ludo@gnu.org>2009-09-23 11:08:15 +0200
commita75e936f4c4f4ca276c7792dc978844aaa719c29 (patch)
treee613b62c101cc9a430dd174ed0ff0865cc266519 /guile
parent8b8df86fe589bff5b1f0fc93be53cad9a9c17596 (diff)
downloadgnutls-a75e936f4c4f4ca276c7792dc978844aaa719c29.tar.gz
Turn off auto-compilation when using Guile 1.9+.
* guile/src/Makefile.am (GUILE_FOR_BUILD): Turn off auto-compilation with Guile 1.9+. * guile/tests/Makefile.am (TESTS_ENVIRONMENT): Likewise. * doc/Makefile.am (GUILE_FOR_BUILD): Likewise.
Diffstat (limited to 'guile')
-rw-r--r--guile/src/Makefile.am5
-rw-r--r--guile/tests/Makefile.am6
2 files changed, 7 insertions, 4 deletions
diff --git a/guile/src/Makefile.am b/guile/src/Makefile.am
index 7c9dbe0b1d..2721edf837 100644
--- a/guile/src/Makefile.am
+++ b/guile/src/Makefile.am
@@ -1,5 +1,5 @@
# GNUTLS -- Guile bindings for GnuTLS.
-# Copyright (C) 2007, 2008 Free Software Foundation
+# Copyright (C) 2007, 2008, 2009 Free Software Foundation, Inc.
#
# GNUTLS is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
@@ -15,7 +15,8 @@
# License along with GNUTLS; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
-GUILE_FOR_BUILD = $(GUILE) -L $(top_srcdir)/guile/modules
+GUILE_FOR_BUILD = \
+ GUILE_AUTO_COMPILE=0 $(GUILE) -L $(top_srcdir)/guile/modules
noinst_HEADERS = errors.h utils.h
diff --git a/guile/tests/Makefile.am b/guile/tests/Makefile.am
index ce597290c2..ac932735ec 100644
--- a/guile/tests/Makefile.am
+++ b/guile/tests/Makefile.am
@@ -1,5 +1,5 @@
# GNUTLS -- Guile bindings for GnuTLS.
-# Copyright (C) 2007, 2008 Free Software Foundation
+# Copyright (C) 2007, 2008, 2009 Free Software Foundation, Inc.
#
# GNUTLS is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
@@ -28,7 +28,9 @@ if ENABLE_SRP
TESTS += srp-base64.scm
endif
-TESTS_ENVIRONMENT = $(top_builddir)/guile/pre-inst-guile -L $(srcdir)
+TESTS_ENVIRONMENT = \
+ GUILE_AUTO_COMPILE=0 \
+ $(top_builddir)/guile/pre-inst-guile -L $(srcdir)
EXTRA_DIST = $(TESTS) openpgp-pub.asc openpgp-sec.asc \