diff options
author | Tom Tromey <tromey@cygnus.com> | 1999-05-21 13:09:54 +0000 |
---|---|---|
committer | Tom Tromey <tromey@gcc.gnu.org> | 1999-05-21 13:09:54 +0000 |
commit | 41e0e0cdbb616973f569e53c0e82056469afdd64 (patch) | |
tree | 7418e8fa472bc3b067145f52a87e7de620818c8c /libjava/configure.in | |
parent | 7df879395a2f584525c87f8c7097b5cb1da7446c (diff) | |
download | gcc-41e0e0cdbb616973f569e53c0e82056469afdd64.zip gcc-41e0e0cdbb616973f569e53c0e82056469afdd64.tar.gz gcc-41e0e0cdbb616973f569e53c0e82056469afdd64.tar.bz2 |
Makefile.in: Rebuilt.
* Makefile.in: Rebuilt.
* Makefile.am (INCLUDES): Added $(ZINCS).
* configure: Rebuilt.
* configure.in (ZINCS): New subst.
From-SVN: r27083
Diffstat (limited to 'libjava/configure.in')
-rw-r--r-- | libjava/configure.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libjava/configure.in b/libjava/configure.in index 9dccaa2..e7a7b0c 100644 --- a/libjava/configure.in +++ b/libjava/configure.in @@ -426,16 +426,19 @@ fi ZLIBS= ZDEPS= +ZINCS= if test "x$ZLIBSPEC" = "x-lzgcj"; then # We include the path to the zlib build directory. # See Makefile.am to understand why. ZDEPS='$(top_builddir)/../zlib/libzgcj.la' ZLIBS="$ZDEPS -L\$(here)/../zlib/$libsubdir" + ZINCS='-I$(top_srcdir)/../zlib' else ZLIBS="$ZLIBSPEC" fi AC_SUBST(ZLIBS) AC_SUBST(ZDEPS) +AC_SUBST(ZINCS) AM_CONDITIONAL(CANADIAN, test "$CANADIAN" = yes) AM_CONDITIONAL(NULL_TARGET, test "$NULL_TARGET" = yes) |