diff options
author | bstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-07-01 14:31:21 +0000 |
---|---|---|
committer | bstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-07-01 14:31:21 +0000 |
commit | 79d0a01c07cd8fd06cc16cc05aebdf42d9c842c7 (patch) | |
tree | ce81cfebc7f8c16883e7f839e571ad6a8445b1a6 /gcc/Makefile.in | |
parent | 95c0df8ca7a24154699012ca277c99eccf398e49 (diff) | |
download | gcc-79d0a01c07cd8fd06cc16cc05aebdf42d9c842c7.tar.gz |
2008-07-01 Basile Starynkevitch <basile@starynkevitch.net>
[added GDBM support in configure & configure.ac,
BASILYS_HAS_OBJ_TAB_FIELDS is now prohibited]
* basilys.h: prohibit BASILYS_HAS_OBJ_TAB_FIELDS because of gengtype.
* basilys.c: idem.
* configure.ac: added GDBM support.
* configure: regenerated.
* Makefile.in: added GDBM.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/melt-branch@137320 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/Makefile.in')
-rw-r--r-- | gcc/Makefile.in | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 96cd982fb64..6a58f08d77f 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -284,10 +284,15 @@ GMPINC = @GMPINC@ PPLLIBS = @ppllibs@ PPLINC = @pplinc@ -# How to file LTDL (LibTool DynLoader) +# How to find LTDL (LibTool DynLoader) LTDLLIBS = @ltdllibs@ LTDLINC = @ltdlinc@ LTDL_LDFLAGS= @ltdl_ldflags@ + +# How to file GDBM +GDBMLIBS = @gdbmlibs@ +GDBMINC = @gdbminc@ +GDBM_LDFLAGS= @gdbm_ldflags@ #### end of Basilys stuff CPPLIB = ../libcpp/libcpp.a @@ -891,7 +896,7 @@ BUILD_LIBDEPS= $(BUILD_LIBIBERTY) # How to link with both our special library facilities # and the system's installed libraries. LIBS = @LIBS@ $(CPPLIB) $(LIBINTL) $(LIBICONV) $(LIBIBERTY) $(LIBDECNUMBER) \ - $(PPLLIBS) $(GMPLIBS) $(LTDLLIBS) $(GMPLIBS) + $(PPLLIBS) $(GMPLIBS) $(LTDLLIBS) $(GDBMLIBS) $(GMPLIBS) # Any system libraries needed just for GNAT. SYSLIBS = @GNAT_LIBEXC@ |