merge from guile master
authorAndy Wingo <wingo@pobox.com>
Tue, 26 Aug 2008 19:51:19 +0000 (12:51 -0700)
committerAndy Wingo <wingo@pobox.com>
Tue, 26 Aug 2008 19:51:19 +0000 (12:51 -0700)
Had to fix up .gitignore for some conflicts.

1  2 
.gitignore
Makefile.am
configure.in
doc/Makefile.am
libguile/Makefile.am

diff --cc .gitignore
@@@ -68,4 -68,5 +68,6 @@@ guile-procedures.tx
  guile-config/guile-config
  guile-readline/guile-readline-config.h
  guile-readline/guile-readline-config.h.in
 +*.go
+ TAGS
+ guile-1.8.pc
diff --cc Makefile.am
Simple merge
diff --cc configure.in
@@@ -1469,18 -1553,9 +1555,19 @@@ AC_CONFIG_FILES(
    srfi/Makefile
    test-suite/Makefile
    test-suite/standalone/Makefile
 +  src/Makefile
 +  module/Makefile
 +  module/system/Makefile
 +  module/system/base/Makefile
 +  module/system/vm/Makefile
 +  module/system/il/Makefile
 +  module/system/repl/Makefile
 +  module/language/Makefile
 +  module/language/scheme/Makefile
 +  testsuite/Makefile
  ])
  
+ AC_CONFIG_FILES([guile-1.8.pc])
  AC_CONFIG_FILES([check-guile], [chmod +x check-guile])
  AC_CONFIG_FILES([benchmark-guile], [chmod +x benchmark-guile])
  AC_CONFIG_FILES([guile-tools], [chmod +x guile-tools])
diff --cc doc/Makefile.am
Simple merge
@@@ -75,9 -83,9 +83,9 @@@ guile_filter_doc_snarfage_SOURCES = c-t
  ## For some reason, OBJEXT does not include the dot
  c-tokenize.$(OBJEXT): c-tokenize.c
        if [ "$(cross_compiling)" = "yes" ]; then \
-               $(CC_FOR_BUILD) $(DEFS) $(INCLUDES) -c -o $@ $<; \
+               $(CC_FOR_BUILD) $(DEFS) $(AM_CPPFLAGS) -c -o $@ $<; \
        else \
 -              $(COMPILE) -c -o $@ $<; \
 +              $(filter-out -Werror,$(COMPILE)) -c -o $@ $<; \
        fi
  
  ## Override default rule; this should run on BUILD host.