aboutsummaryrefslogtreecommitdiff
path: root/gas/Makefile.am
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2015-03-31 03:55:56 -0700
committerH.J. Lu <hjl.tools@gmail.com>2015-03-31 03:56:12 -0700
commit0138187e9fc351c6d4615bbe2ab020a3ac646b50 (patch)
tree5863d905a08e1fca6445b29b1f8aada03c805b86 /gas/Makefile.am
parent0ee42ecde7aadb3e68ae5b944f7b1b6a859ebcfd (diff)
downloadgdb-0138187e9fc351c6d4615bbe2ab020a3ac646b50.zip
gdb-0138187e9fc351c6d4615bbe2ab020a3ac646b50.tar.gz
gdb-0138187e9fc351c6d4615bbe2ab020a3ac646b50.tar.bz2
Add --with-system-zlib in gas
This patch adds --with-system-zlib and remove --with-zlib in gas. gas/ * Makefile.am (ZLIBINC): New. (AM_CFLAGS): Add $(ZLIBINC). * as.c: (show_usage): Don't check HAVE_ZLIB_H. (parse_args): Likewise. * compress-debug.c: Don't check HAVE_ZLIB_H to include <zlib.h>. (compress_init): Don't check HAVE_ZLIB_H. (compress_data): Likewise. (compress_finish): Likewise. * configure.ac (AM_ZLIB): Removed. (zlibinc): New. AC_SUBST. Add --with-system-zlib. * Makefile.in: Regenerated. * config.in: Likewise. * configure: Likewise. * doc/Makefile.in: Likewise. gas/testsuite/ * gas/i386/dw2-compress-1.d: Expect .zdebug_info.
Diffstat (limited to 'gas/Makefile.am')
-rw-r--r--gas/Makefile.am7
1 files changed, 6 insertions, 1 deletions
diff --git a/gas/Makefile.am b/gas/Makefile.am
index a822be7..5161b5e 100644
--- a/gas/Makefile.am
+++ b/gas/Makefile.am
@@ -24,6 +24,11 @@ SUBDIRS = doc po
tooldir = $(exec_prefix)/$(target_alias)
+# This is where we get zlib from. zlibdir is -L../zlib and zlibinc is
+# -I../zlib, unless we were configured with --with-system-zlib, in which
+# case both are empty.
+ZLIBINC = @zlibinc@
+
YACC = `if [ -f ../bison/bison ] ; then echo ../bison/bison -y -L../bison/bison ; else echo @YACC@ ; fi`
LEX = `if [ -f ../flex/flex ] ; then echo ../flex/flex ; else echo @LEX@ ; fi`
@@ -34,7 +39,7 @@ am__skipyacc =
WARN_CFLAGS = @WARN_CFLAGS@
NO_WERROR = @NO_WERROR@
-AM_CFLAGS = $(WARN_CFLAGS)
+AM_CFLAGS = $(WARN_CFLAGS) $(ZLIBINC)
TARG_CPU = @target_cpu_type@
TARG_CPU_C = $(srcdir)/config/tc-@target_cpu_type@.c