summaryrefslogtreecommitdiff
path: root/guile-readline/Makefile.am
Commit message (Expand)AuthorAgeFilesLines
* Put the readline extension in the extensionsdir...* GUILE-VERSION: * acinclude.m4: * guile-readline/LIBGUILEREADLINE-VERSION: * guile-readline/Makefile.am: Rename libguile-readline-v-18.so to guile-readline.so, and install it to the extensions dir instead of the libdir. * guile-readline/ice-9/readline.scm: Load guile-readline instead of libguile-readline-v-18. Andy Wingo2013-10-141-11/+9
* guile-readline: Clean `.go' files....* guile-readline/Makefile.am (CLEANFILES): Add *.go. Ludovic Courtès2012-01-231-2/+3
* guile-readline slight modernization...* guile-readline/Makefile.am: Update to use am/guilec. * guile-readline/ice-9/readline.scm (activate-readline): Update to use a lambda*. Andy Wingo2010-10-051-9/+9
* Use AM_SILENT_RULES to pare down build output, ignore auto-generated files...* .gitignore: Ignore extra gnulib headers. * am/snarf: Silent SNARF command * am/guilec: Silent GUILEC command * configure.ac: Use AM_SILENT_RULES when available * guile-readline/Makefile.am: * libguile/Makefile.am: * srfi/Makefile.am: * test-suite/standalone/Makefile.am: Silence snarf output No Itisnt2010-06-181-3/+3
* 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. Andy Wingo2010-03-161-1/+2
* rename libguile to libguile-@EFFECTIVE_VERSION@, currently libguile-2.0...* libguile/Makefile.am (lib_LTLIBRARIES): Instead of just "libguile.la", make "libguile-@EFFECTIVE_VERSION@.la". This allows multiple versions of Guile to be installed at once. See http://www106.pair.com/rhp/parallel.html for a rationale. (libguile_@GUILE_EFFECTIVE_VERSION@_la_CFLAGS): (libguile_@GUILE_EFFECTIVE_VERSION@_la_SOURCES): (EXTRA_libguile_@GUILE_EFFECTIVE_VERSION@_la_SOURCES): (libguile_@GUILE_EFFECTIVE_VERSION@_la_DEPENDENCIES): (libguile_@GUILE_EFFECTIVE_VERSION@_la_LIBADD): (libguile_@GUILE_EFFECTIVE_VERSION@_la_LDFLAGS): Fixup automake vars to include the effective version. (guile_LDADD): Fix up the spelling of libguile. * libguile/bytevectors.c (scm_bootstrap_bytevectors): * libguile/foreign.c (scm_register_foreign): * libguile/i18n.c (scm_bootstrap_i18n): * libguile/instructions.c (scm_bootstrap_instructions): * libguile/objcodes.c (scm_bootstrap_objcodes): * libguile/programs.c (scm_bootstrap_programs): * libguile/vm.c (scm_bootstrap_vm): Register extensions using e.g. "libguile-2.0" as the libname -- i.e., including the effective version in the libname. * module/ice-9/i18n.scm: * module/rnrs/bytevector.scm: * module/rnrs/io/ports.scm: * module/system/foreign.scm: * module/system/vm/instruction.scm: * module/system/vm/objcode.scm: * module/system/vm/program.scm: * module/system/vm/vm.scm: When doing a load-extension for something in Guile, use the effective version also. * meta/guile-2.0-uninstalled.pc.in (Libs): * meta/guile-2.0.pc.in (Libs): Use -lguile-@EFFECTIVE_VERSION@. This change should mean that code built against Guile should not be affected by the libguile rename. * guile-readline/Makefile.am (libguilereadline_v_@LIBGUILEREADLINE_MAJOR@_la_LIBADD): * srfi/Makefile.am (libguile_srfi_srfi_1_v_@LIBGUILE_SRFI_SRFI_1_MAJOR@_la_LIBADD): (libguile_srfi_srfi_4_v_@LIBGUILE_SRFI_SRFI_4_MAJOR@_la_LIBADD): (libguile_srfi_srfi_13_14_v_@LIBGUILE_SRFI_SRFI_13_14_MAJOR@_la_LIBADD): (libguile_srfi_srfi_60_v_@LIBGUILE_SRFI_SRFI_60_MAJOR@_la_LIBADD): * test-suite/standalone/Makefile.am (test_num2integral_LDADD): (test_round_LDADD): (libtest_asmobs_la_LIBADD): (libtest_ffi_la_LIBADD): (test_list_LDADD): (test_unwind_LDADD): (test_conversion_LDADD): (test_loose_ends_LDADD): (test_scm_c_read_LDADD): (test_scm_take_locale_symbol_LDADD): (test_scm_take_u8vector_LDADD): (libtest_extensions_la_LIBADD): (test_with_guile_module_LDADD): (test_scm_with_guile_LDADD): Fix up the spelling of libguile.la. Andy Wingo2010-03-161-2/+2
* Aggregate `guile-readline' makefiles....* configure.ac: Don't produce `guile-readline/ice-9/Makefile'. * guile-readline/Makefile.am (SUBDIRS): Remove. (ice9dir, nobase_ice9_DATA): New, formerly under `ice-9'. (ETAGS_ARGS, EXTRA_DIST): Augment. (DEFS): Move outside of `if'. (MKDEP): Remove. * guile-readline/ice-9/Makefile.am: Remove. Ludovic Courtès2009-08-211-5/+12
* Don't use a sub-`configure' for `guile-readline'....* acinclude.m4 (GUILE_READLINE): New macro, based on the former `guile-readline/configure.ac'. * configure.ac: Remove `AC_CONFIG_SUBDIRS' invocation. Add `GUILE_READLINE' invocation. Produce files under `guile-readline'. * guile-readline/Makefile.am: Conditionalize the meat under `HAVE_READLINE'. (INCLUDES): Rename to... (AM_CPPFLAGS): this. Users updates. (AM_CFLAGS): New variable. (libguilereadline_v_@LIBGUILEREADLINE_MAJOR@_la_LIBADD): Add $(READLINE_LIBS). * guile-readline/readline.c: Include <config.h>. * guile-readline/configure.ac, guile-readline/autogen.sh: Remove. Ludovic Courtès2009-08-211-7/+17
* Change guile-readline license to GPLv3+Neil Jerram2009-06-171-10/+10
* Add `ChangeLog-2008' files to the distribution.Ludovic Courtès2008-09-121-2/+2
* Changes from arch/CVS synchronizationLudovic Courtès2007-07-291-4/+6
* merge from 1.8 branchKevin Ryde2006-06-171-1/+1
* merge from 1.8 branchKevin Ryde2006-04-161-1/+1
* The FSF has a new address.Marius Vollmer2005-05-231-2/+2
* * LIBGUILEREADLINE-VERSION: Bumped versions for the 1.7.1 release....Added LIBGUILEREADLINE_MAJOR variable for inclusion in the name of the shared library. * configure.in: AC_SUBST it. * Makefile.am: Substitute it into name of library. Marius Vollmer2004-08-261-5/+4
* * Makefile.am: move support for readline.scm to ice-9/ subdir.Rob Browning2004-06-161-18/+3
* * Makefile.am (TAGS_FILES): Use this variable instead of...ETAGS_ARGS so that TAGS can be built using separate build directory. * Makefile.am (TAGS_FILES): Use this variable instead of ETAGS_ARGS so that TAGS can be built using separate build directory. * debugger/breakpoints/Makefile.am (TAGS_FILES), debugger/Makefile.am (TAGS_FILES), Makefile.am (TAGS_FILES): Use this variable instead of ETAGS_ARGS so that TAGS can be built using separate build directory. * primitives/Makefile.am (TAGS_FILES), internals/Makefile.am (TAGS_FILES), Makefile.am (TAGS_FILES): Use this variable instead of ETAGS_ARGS so that TAGS can be built using separate build directory. * Makefile.am, goops/Makefile.am (TAGS_FILES): Use this variable instead of ETAGS_ARGS so that TAGS can be built using separate build directory. * Makefile.am (TAGS_FILES): Use this variable instead of ETAGS_ARGS so that TAGS can be built using separate build directory. Mikael Djurfeldt2004-02-091-2/+2
* * Makefile.am (ice-9/readline.scm): new target -- so readline will...work from the source tree when guile-readline is added to GUILE_LOAD_PATH. (all-local): add ice-9/readline.scm. (clean-local): remove ice-9/readline at clean time. Rob Browning2003-03-191-0/+12
* * Makefile.am (ice9dir): VERSION -> GUILE_EFFECTIVE_VERSION.Rob Browning2002-12-091-1/+1
* (dist-hook): Make sure $(distdir)/Makefile.in is writable before...modifying it. Marius Vollmer2002-04-171-1/+1
* (.c.x): Pass "-o $@" to guile-snarf.Marius Vollmer2002-03-241-1/+1
* (snarfcppopts): New var....(.c.x): Use $(snarfcppopts). Rework guile-snarf usage. Thien-Thi Nguyen2002-03-141-2/+2
* 2002-02-27 Stefan Jahn <stefan@lkcc.org>... * Makefile.am (SUBDIRS): Added the `am' directory. 2002-02-27 Stefan Jahn <stefan@lkcc.org> * gh.texi (scm transition summary): Documented some more gh equivalents and removed appropriate FIXME's. 2002-02-27 Stefan Jahn <stefan@lkcc.org> * Makefile.am (EXTRA_DIST): Added the `LIBGUILEREADLINE-VERSION' file. 2002-02-27 Stefan Jahn <stefan@lkcc.org> * convert.i.c, convert.c: Better range checking. * inet_aton.c, fports.c: Commented the inclusion of <winsock2.h>. * deprecation.c (vsnprintf): Define to `_vsnprintf' for Windows (MinGW). Stefan Jahn2002-02-271-1/+1
* * Makefile.am (libguilereadline_la_LDFLAGS): use...@LIBGUILEREADLINE_INTERFACE@ for version information. Rob Browning2002-02-251-1/+3
* (AUTOMAKE_OPTIONS): Replace "gnu" with "foreign"....This undoes 1.14, reverting to 1.13. Thien-Thi Nguyen2002-02-131-1/+1
* (AUTOMAKE_OPTIONS): Replace "foreign" with "gnu".Thien-Thi Nguyen2002-02-091-4/+4
* * Add ETAGS_ARGS decls so that more stuff gets tagged.Neil Jerram2001-12-011-1/+2
* Put `-export-dynamic -no-undefined' into LDFLAGS...and add the library `libguile.la' to support linkers which do not allow unresolved symbols inside shared libraries. Marius Vollmer2001-11-021-1/+3
* * Makefile.am, readline.scm: Updated copyright notice.Martin Grabmüller2001-07-191-1/+1
* * Makefile.am (libguilereadline_la_SOURCES): removed readline.x...from here (not needed). (CLEANFILES): added *.x (and removed from DISTCLEANFILES). (MKDEP): copied from libguile/Makefile.am. not that it matters now, but it will if we stop using BUILT_SOURCES for some reason. Michael Livshin2001-05-311-2/+4
* * Makefile.am (dist-hook): Added kludge to fix automake generated...dependencies in the distribution archive Makefile. Mikael Djurfeldt2000-06-121-1/+9
* * Makefile.am (DEFS): Added. automake adds -I options to DEFS,...and we don't want that. (INCLUDES): Removed all -I options except for the root source directory and the root build directory. * *.*: Change includes so that they always use the "prefixes" libguile/, qt/, guile-readline/, or libltdl/. (Thanks to Tim Mooney.) Mikael Djurfeldt2000-04-211-1/+3
* * Makefile.am (.c.x): Use same rule as in libguile.Mikael Djurfeldt1999-09-161-1/+2
* * Makefile.am (DISTCLEANFILES): Get rid of .x files....* Makefile.in: Regenerated. (Thanks to Keisuke Nishida.) Jim Blandy1999-09-111-1/+3
* * Makefile.am: Do not install and distribute...readline-activator.scm. Install and distribute readline.scm instead. Marius Vollmer1999-09-111-3/+3
* * Makefile.am: Install guile-readline/readline.h.Mikael Djurfeldt1999-08-291-0/+2
* * Makefile.am (INCLUDES): Added -I$(srcdir)/../libguile....(Thanks to Greg Badros.) Mikael Djurfeldt1999-08-041-1/+1
* * Makefile.am (BUILT_SOURCES): Added.Mikael Djurfeldt1999-07-241-0/+2
* * Checked everything into CVS.Marius Vollmer1999-07-231-0/+42