summaryrefslogtreecommitdiff
path: root/meta/guile.m4
Commit message (Collapse)AuthorAgeFilesLines
* Update guile.m4 to check for 2.2 by defaultAndy Wingo2017-05-311-3/+3
| | | | * meta/guile.m4 (GUILE_PKG): Update default Guile versions to 2.2.
* guile.m4 fix for 3.0 prereleasesAndy Wingo2017-05-311-0/+3
| | | | | * meta/guile.m4 (GUILE_PROGS): Allow prereleases of Guile with a new major version.
* GUILE_SITE_DIR: Update to find compiled site directoriesFreja Nordsiek2017-03-151-6/+38
| | | | | | * meta/guile.m4 (GUILE_SITE_DIR): Update to find compiled site directories. * meta/guile-2.2.pc.in: Add entry for site-ccache directory.
* Fixed reversed version order bug in GUILE_PROGS Autoconf macro.Freja Nordsiek2017-03-141-2/+2
| | | | * meta/guile.m4 (GUILE_PROGS): Build version in correct order.
* Fixed specific version of guile search in autoconf macro GUILE_PROGS.Freja Nordsiek2017-02-231-8/+22
| | | | | | * meta/guile.m4 (GUILE_PROGS): Search for guile with suffixes first ('-X.Y' and 'X.Y' where X.Y denotes the version) before searching for guile with no suffix. Patch co-authored by Andy Wingo.
* Fixing GUILE_PROGS wrong versioning checksDavid Pirotte2016-06-271-4/+8
| | | | | | | | | | | * meta/guile.m4: Fixing GUILE_PROGS versioning checks were wrong and incomplete, leading to false errors like: "... checking for Guile version >= 2.0.11... configure: error: Guile 2.0.11 required, but 2.1.3 found". thanks to Colomban Wendling, aka b4n, who also suggested this fix during a chat on #autotools while helping me wrt another autotool related problem I was nvestigating.
* Avoid bash-specific '==' comparison operator in guile.m4.Thomas Klausner2014-11-111-1/+1
| | | | | | | Fixes <http://bugs.gnu.org/18898>. * meta/guile.m4 (GUILE_PROGS): Use '=' instead of the bash-specific '==' comparison operator in 'test' call.
* guile.m4 tweaksAndy Wingo2014-02-111-5/+11
| | | | | | | | | * meta/guile.m4 (GUILE_PKG): Don't print "checking for guile 2.0" if we've already found 2.2. Print the correct effective version at the end. (GUILE_PROGS): Allow prereleases, whose micro version does not yet match the effective version. Default to the already-chosen effective version.
* allow specifying a required version in GUILE_PROGSAleix Conchillo Flaque2013-12-211-8/+37
| | | | | | | | * meta/guile.m4: GUILE_PROGS now takes an optional argument to specify a required Guile version. By default, it requires Guile >= 2.0. A micro version can also be specified (e.g. GUILE_PROGS([2.0.10])). Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* guile.m4 allows selection of guile 2.0, 1.8, etc.Andy Wingo2013-03-101-47/+124
| | | | | | | | * meta/guile.m4 (GUILE_PKG): New macro, chooses a version of Guile against which to compile. (GUILE_FLAGS, GUILE_PROGS): Rewrite to call GUILE_PKG as necessary, to respect any previous call to GUILE_PKG, and to not require guile-tools.
* guile.m4: Add support for linking against guile with rpath.Bruno Haible2011-02-201-8/+35
| | | | | * guile.m4 (GUILE_FLAGS): Also set GUILE_LIBS and GUILE_LTLIBS. Fix documentation.
* Add v1.8.x backward compatiblity to GUILE_SITE_DIRMichael Gran2010-10-031-2/+5
| | | | * meta/guile.m4 (GUILE_SITE_DIR): use pkgdatadir if no sitedir
* Change Guile license to LGPLv3+Neil Jerram2009-06-171-4/+5
| | | | | | | | | | (Not quite finished, the following will be done tomorrow. module/srfi/*.scm module/rnrs/*.scm module/scripts/*.scm testsuite/*.scm guile-readline/* )
* fix guile.m4 for sitedir changeAndy Wingo2009-04-201-1/+1
| | | | * meta/guile.m4
* some more build fixes for bugs that I introducedAndy Wingo2009-04-201-1/+1
| | | | | | | | | | * meta/guile-1.8.pc.in: Include a pkgdatadir, which will map down to `guile-config info pkgdatadir', used in existing guile.m4 files. * meta/guile-config: Fix guile-config info varname. Facepalm. * meta/guile.m4: Make GUILE_SITE_DIR use the sitedir variable instead. Really it should use pkg-config directly, though.
* allow building against uninstalled guile; move some things to meta/Andy Wingo2009-03-271-0/+198
* README: Add more info about building against an uninstalled Guile. * meta/: New directory. The proximate cause of its creation is that I want to be able to build external packages against uninstalled Guile, and to do that I need guile-tools in the PATH, but I don't want $top_builddir/libtool in the path. But it seems like a good reorganization, for things that are /about/ Guile: pkg-config files, m4 files, guile-config... then we also include uninstalled info: the environment, the pre-inst-guile script, etc. * meta/guile-1.8-uninstalled.pc.in: New pkg-config template. pkg-config prefers -uninstalled pkg-config files, if they are in its path. * meta/Makefile.am: * meta/ChangeLog-2008: * meta/gdb-uninstalled-guile.in: * meta/guile-1.8.pc.in: * meta/guile-config.in: * meta/guile.m4: * meta/guile-tools.in: Moved to meta/. * meta/guile.in: This is the new name of pre-inst-guile.in. * meta/uninstalled-env.in: And this, pre-inst-guile-env.in. * Makefile.am: * am/guilec: * am/pre-inst-guile: * check-guile.in: * configure.in: * doc/ref/Makefile.am: * gc-benchmarks/run-benchmark.scm: * test-suite/standalone/Makefile.am: * test-suite/standalone/README: * testsuite/Makefile.am: Adapt to meta/ change.