diff options
author | Andy Wingo <wingo@pobox.com> | 2010-03-16 21:37:12 +0100 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2010-03-16 21:44:34 +0100 |
commit | 718815d7618fe7766f3620538917849ccc93f36f (patch) | |
tree | 4ff3f7f3d0eb7a2390a8909200aab472d2afb67b /srfi | |
parent | 44602b08680ad6422dd88780c23540c0632bcc68 (diff) | |
download | guile-718815d7618fe7766f3620538917849ccc93f36f.tar.gz |
parallel installability for libguile*.h
* Makefile.am:
* libguile/Makefile.am (modincludedir): Install into
$pkgincludedir/$GUILE_EFFECTIVE_VERSION. This allows multiple Guile
development packages to be installed at once.
* guile-readline/Makefile.am (modincludedir):
* srfi/Makefile.am (srfiincludedir): Likewise.
* meta/guile-2.0.pc.in (Cflags): Add the appropriate -I line so that
user code picks up the new location transparently.
Diffstat (limited to 'srfi')
-rw-r--r-- | srfi/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/srfi/Makefile.am b/srfi/Makefile.am index 1ecd94111..bb91268e7 100644 --- a/srfi/Makefile.am +++ b/srfi/Makefile.am @@ -32,7 +32,8 @@ AM_CPPFLAGS = -I.. -I$(srcdir)/.. \ AM_CFLAGS = $(GCC_CFLAGS) AM_LDFLAGS = $(GNU_LD_FLAGS) -srfiincludedir = $(pkgincludedir)/srfi +# FIXME: should be libguile/srfi +srfiincludedir = $(pkgincludedir)/$(GUILE_EFFECTIVE_VERSION)/srfi # These headers are visible as <guile/srfi/mumble.h> srfiinclude_HEADERS = srfi-1.h srfi-4.h srfi-13.h srfi-14.h srfi-60.h |