mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-09-09 14:52:22 +08:00
top level:
2007-02-17 Mark Mitchell <mark@codesourcery.com> Nathan Sidwell <nathan@codesourcery.com> Vladimir Prus <vladimir@codesourcery.com Joseph Myers <joseph@codesourcery.com> * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS): Fix quoting. * configure: Regenerate. bfd: 2007-02-17 Mark Mitchell <mark@codesourcery.com> Nathan Sidwell <nathan@codesourcery.com> Vladimir Prus <vladimir@codesourcery.com Joseph Myers <joseph@codesourcery.com> * configure.in (--with-pkgversion): New option. * configure: Regenerate. * Makefile.am (bfdver.h): Substitute for @bfd_version_package@. * Makefile.in: Regenerate. * version.h (BFD_VERSION_STRING): Define using @bfd_version_package@. bfd/doc: 2007-02-17 Mark Mitchell <mark@codesourcery.com> Nathan Sidwell <nathan@codesourcery.com> Vladimir Prus <vladimir@codesourcery.com Joseph Myers <joseph@codesourcery.com> * Makefile.in: Regenerate. binutils: 2007-02-17 Mark Mitchell <mark@codesourcery.com> Nathan Sidwell <nathan@codesourcery.com> Vladimir Prus <vladimir@codesourcery.com Joseph Myers <joseph@codesourcery.com> * configure.in (--with-bugurl): New option. * configure: Regenerate. * Makefile.am (REPORT_BUGS_TO): Define. (INCLUDES): Define REPORT_BUGS_TO. Regenerate dependencies. * Makefile.in: Regenerate. * doc/Makefile.in: Regenerate. * bucomm.h: Remove include of bin-bugs.h. * addr2line.c (usage): Don't print empty REPORT_BUGS_TO. * ar.c (usage): Pass s to list_supported_targets. Don't print empty REPORT_BUGS_TO. * coffdump.c (show_usage): Don't print empty REPORT_BUGS_TO. * cxxfilt.c (usage): Print bug url when giving help. * dlltool.c (usage): Likewise. * dllwrap.c (usage): Likewise. * nlmconv.c (show_usage): Don't print empty REPORT_BUGS_TO. * nm.c (usage): Likewise. * objcopy.c (copy_usage, strip_usage): Likewise. * objdump.c (usage): Likewise. * readelf.c ((usage): Likewise. Add STREAM argument. Adjust callers. * size.c (usage): Don't print empty REPORT_BUGS_TO. * srconv.c (show_usage): Likewise. * strings.c (usage): Likewise. * sysdymp.c (show_usage): Likewise. * windres.c (usage): Likewise. gas: 2007-02-17 Mark Mitchell <mark@codesourcery.com> Nathan Sidwell <nathan@codesourcery.com> Vladimir Prus <vladimir@codesourcery.com Joseph Myers <joseph@codesourcery.com> * configure.in (--with-bugurl): New option. * configure: Regenerate. * dep-in.sed: Remove bin-bugs.h. * Makefile.am (REPORT_BUGS_TO): Define. (INCLUDES): Define REPORT_BUGS_TO. (DEP_INCLUDES): Likewise. ($(OBJS)): No longer depend on bin-bugs.h. * Makefile.in: Regenerate. * doc/Makefile.in: Regenerate. * as.c (show_usage): Don't print empty REPORT_BUGS_TO. * as.h: Remove include of bin-bugs.h. gprof: 2007-02-17 Mark Mitchell <mark@codesourcery.com> Nathan Sidwell <nathan@codesourcery.com> Vladimir Prus <vladimir@codesourcery.com Joseph Myers <joseph@codesourcery.com> * configure.in (--with-pkgversion, --with-bugurl): New options. * configure: Regenerate. * Makefile.am (PKGVERSION, REPORT_BUGS_TO): Define. (INCLUDES): Define PKGVERSION and REPORT_BUGS_TO. Regenerate dependencies. * Makefile.in: Regenerate. * gprof.c (usage): Don't print empty REPORT_BUGS_TO. (main): Include PKGVERSION in version output. * gprof.h: Remove include of bin-bugs.h. include: 2007-02-17 Mark Mitchell <mark@codesourcery.com> Nathan Sidwell <nathan@codesourcery.com> Vladimir Prus <vladimir@codesourcery.com Joseph Myers <joseph@codesourcery.com> * bin-bugs.h: Remove. ld: 2007-02-17 Mark Mitchell <mark@codesourcery.com> Nathan Sidwell <nathan@codesourcery.com> Vladimir Prus <vladimir@codesourcery.com Joseph Myers <joseph@codesourcery.com> * configure.in (--with-bugurl): New option. * configure: Regenerate. * Makefile.am (REPORT_BUGS_TO): Define. (INCLUDES): Define REPORT_BUGS_TO. Regenerate dependencies. * Makefile.in: Regenerate. * ld.h: Remove include of bin-bugs.h. * lexsup.c (help): Don't print empty REPORT_BUGS_TO.
This commit is contained in:
@ -1,3 +1,18 @@
|
||||
2007-02-17 Mark Mitchell <mark@codesourcery.com>
|
||||
Nathan Sidwell <nathan@codesourcery.com>
|
||||
Vladimir Prus <vladimir@codesourcery.com
|
||||
Joseph Myers <joseph@codesourcery.com>
|
||||
|
||||
* configure.in (--with-pkgversion, --with-bugurl): New options.
|
||||
* configure: Regenerate.
|
||||
* Makefile.am (PKGVERSION, REPORT_BUGS_TO): Define.
|
||||
(INCLUDES): Define PKGVERSION and REPORT_BUGS_TO.
|
||||
Regenerate dependencies.
|
||||
* Makefile.in: Regenerate.
|
||||
* gprof.c (usage): Don't print empty REPORT_BUGS_TO.
|
||||
(main): Include PKGVERSION in version output.
|
||||
* gprof.h: Remove include of bin-bugs.h.
|
||||
|
||||
2007-01-16 Ben Elliston <bje@au.ibm.com>
|
||||
|
||||
* corefile.c (parse_error): New function.
|
||||
|
@ -16,7 +16,14 @@ AM_CFLAGS = $(WARN_CFLAGS)
|
||||
|
||||
MKDEP = gcc -MM
|
||||
|
||||
INCLUDES = -D_GNU_SOURCE -DDEBUG -I../bfd -I$(srcdir)/../include -I$(srcdir)/../bfd @INCINTL@ -I. -DLOCALEDIR="\"$(datadir)/locale\""
|
||||
PKGVERSION = "\"@PKGVERSION@\""
|
||||
REPORT_BUGS_TO = "\"@REPORT_BUGS_TO@\""
|
||||
|
||||
INCLUDES = -D_GNU_SOURCE -DDEBUG -I../bfd -I$(srcdir)/../include \
|
||||
-I$(srcdir)/../bfd @INCINTL@ -I. \
|
||||
-DPKGVERSION=$(PKGVERSION) \
|
||||
-DREPORT_BUGS_TO=$(REPORT_BUGS_TO) \
|
||||
-DLOCALEDIR="\"$(datadir)/locale\""
|
||||
|
||||
bin_PROGRAMS = gprof
|
||||
|
||||
@ -188,112 +195,120 @@ endif
|
||||
# DO NOT DELETE THIS LINE -- mkdep uses it.
|
||||
# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
|
||||
basic_blocks.o: basic_blocks.c $(INCDIR)/libiberty.h \
|
||||
$(INCDIR)/ansidecl.h gprof.h $(BFDDIR)/sysdep.h ../bfd/config.h \
|
||||
$(INCDIR)/fopen-same.h $(INCDIR)/filenames.h ../bfd/bfd.h \
|
||||
$(INCDIR)/symcat.h gconfig.h $(INCDIR)/bin-bugs.h basic_blocks.h \
|
||||
corefile.h gmon_io.h gmon_out.h search_list.h source.h \
|
||||
symtab.h sym_ids.h
|
||||
$(INCDIR)/ansidecl.h gprof.h $(BFDDIR)/sysdep.h $(INCDIR)/ansidecl.h \
|
||||
../bfd/config.h $(INCDIR)/fopen-same.h $(INCDIR)/filenames.h \
|
||||
../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
|
||||
./gconfig.h basic_blocks.h corefile.h gmon_io.h gmon_out.h \
|
||||
search_list.h source.h symtab.h sym_ids.h
|
||||
call_graph.o: call_graph.c gprof.h $(BFDDIR)/sysdep.h \
|
||||
$(INCDIR)/ansidecl.h ../bfd/config.h $(INCDIR)/fopen-same.h \
|
||||
$(INCDIR)/filenames.h ../bfd/bfd.h $(INCDIR)/symcat.h \
|
||||
gconfig.h $(INCDIR)/bin-bugs.h search_list.h source.h \
|
||||
$(INCDIR)/filenames.h ../bfd/bfd.h $(INCDIR)/ansidecl.h \
|
||||
$(INCDIR)/symcat.h ./gconfig.h search_list.h source.h \
|
||||
symtab.h cg_arcs.h call_graph.h corefile.h gmon_io.h \
|
||||
gmon_out.h sym_ids.h
|
||||
cg_arcs.o: cg_arcs.c $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
|
||||
gprof.h $(BFDDIR)/sysdep.h ../bfd/config.h $(INCDIR)/fopen-same.h \
|
||||
$(INCDIR)/filenames.h ../bfd/bfd.h $(INCDIR)/symcat.h \
|
||||
gconfig.h $(INCDIR)/bin-bugs.h search_list.h source.h \
|
||||
symtab.h call_graph.h cg_arcs.h cg_dfn.h cg_print.h \
|
||||
utils.h sym_ids.h
|
||||
gprof.h $(BFDDIR)/sysdep.h $(INCDIR)/ansidecl.h ../bfd/config.h \
|
||||
$(INCDIR)/fopen-same.h $(INCDIR)/filenames.h ../bfd/bfd.h \
|
||||
$(INCDIR)/ansidecl.h $(INCDIR)/symcat.h ./gconfig.h \
|
||||
search_list.h source.h symtab.h call_graph.h cg_arcs.h \
|
||||
cg_dfn.h cg_print.h utils.h sym_ids.h
|
||||
cg_dfn.o: cg_dfn.c $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
|
||||
gprof.h $(BFDDIR)/sysdep.h ../bfd/config.h $(INCDIR)/fopen-same.h \
|
||||
$(INCDIR)/filenames.h ../bfd/bfd.h $(INCDIR)/symcat.h \
|
||||
gconfig.h $(INCDIR)/bin-bugs.h search_list.h source.h \
|
||||
symtab.h cg_arcs.h cg_dfn.h utils.h
|
||||
gprof.h $(BFDDIR)/sysdep.h $(INCDIR)/ansidecl.h ../bfd/config.h \
|
||||
$(INCDIR)/fopen-same.h $(INCDIR)/filenames.h ../bfd/bfd.h \
|
||||
$(INCDIR)/ansidecl.h $(INCDIR)/symcat.h ./gconfig.h \
|
||||
search_list.h source.h symtab.h cg_arcs.h cg_dfn.h \
|
||||
utils.h
|
||||
cg_print.o: cg_print.c $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
|
||||
gprof.h $(BFDDIR)/sysdep.h ../bfd/config.h $(INCDIR)/fopen-same.h \
|
||||
$(INCDIR)/filenames.h ../bfd/bfd.h $(INCDIR)/symcat.h \
|
||||
gconfig.h $(INCDIR)/bin-bugs.h search_list.h source.h \
|
||||
symtab.h cg_arcs.h cg_print.h hist.h utils.h corefile.h
|
||||
gprof.h $(BFDDIR)/sysdep.h $(INCDIR)/ansidecl.h ../bfd/config.h \
|
||||
$(INCDIR)/fopen-same.h $(INCDIR)/filenames.h ../bfd/bfd.h \
|
||||
$(INCDIR)/ansidecl.h $(INCDIR)/symcat.h ./gconfig.h \
|
||||
search_list.h source.h symtab.h cg_arcs.h cg_print.h \
|
||||
hist.h utils.h corefile.h
|
||||
corefile.o: corefile.c $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
|
||||
gprof.h $(BFDDIR)/sysdep.h ../bfd/config.h $(INCDIR)/fopen-same.h \
|
||||
$(INCDIR)/filenames.h ../bfd/bfd.h $(INCDIR)/symcat.h \
|
||||
gconfig.h $(INCDIR)/bin-bugs.h search_list.h source.h \
|
||||
symtab.h corefile.h
|
||||
gprof.h $(BFDDIR)/sysdep.h $(INCDIR)/ansidecl.h ../bfd/config.h \
|
||||
$(INCDIR)/fopen-same.h $(INCDIR)/filenames.h ../bfd/bfd.h \
|
||||
$(INCDIR)/ansidecl.h $(INCDIR)/symcat.h ./gconfig.h \
|
||||
search_list.h source.h symtab.h corefile.h
|
||||
gmon_io.o: gmon_io.c gprof.h $(BFDDIR)/sysdep.h $(INCDIR)/ansidecl.h \
|
||||
../bfd/config.h $(INCDIR)/fopen-same.h $(INCDIR)/filenames.h \
|
||||
../bfd/bfd.h $(INCDIR)/symcat.h gconfig.h $(INCDIR)/bin-bugs.h \
|
||||
search_list.h source.h symtab.h cg_arcs.h basic_blocks.h \
|
||||
corefile.h call_graph.h gmon_io.h gmon_out.h gmon.h \
|
||||
hertz.h hist.h $(INCDIR)/libiberty.h
|
||||
../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
|
||||
./gconfig.h search_list.h source.h symtab.h cg_arcs.h \
|
||||
basic_blocks.h corefile.h call_graph.h gmon_io.h gmon_out.h \
|
||||
gmon.h hertz.h hist.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h
|
||||
gprof.o: gprof.c $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
|
||||
gprof.h $(BFDDIR)/sysdep.h ../bfd/config.h $(INCDIR)/fopen-same.h \
|
||||
$(INCDIR)/filenames.h ../bfd/bfd.h $(INCDIR)/symcat.h \
|
||||
gconfig.h $(INCDIR)/bin-bugs.h search_list.h source.h \
|
||||
symtab.h basic_blocks.h call_graph.h cg_arcs.h cg_print.h \
|
||||
corefile.h gmon_io.h hertz.h hist.h sym_ids.h $(INCDIR)/demangle.h
|
||||
gprof.h $(BFDDIR)/sysdep.h $(INCDIR)/ansidecl.h ../bfd/config.h \
|
||||
$(INCDIR)/fopen-same.h $(INCDIR)/filenames.h ../bfd/bfd.h \
|
||||
$(INCDIR)/ansidecl.h $(INCDIR)/symcat.h ./gconfig.h \
|
||||
search_list.h source.h symtab.h basic_blocks.h call_graph.h \
|
||||
cg_arcs.h cg_print.h corefile.h gmon_io.h hertz.h hist.h \
|
||||
sym_ids.h $(INCDIR)/demangle.h $(INCDIR)/libiberty.h
|
||||
hertz.o: hertz.c gprof.h $(BFDDIR)/sysdep.h $(INCDIR)/ansidecl.h \
|
||||
../bfd/config.h $(INCDIR)/fopen-same.h $(INCDIR)/filenames.h \
|
||||
../bfd/bfd.h $(INCDIR)/symcat.h gconfig.h $(INCDIR)/bin-bugs.h \
|
||||
hertz.h
|
||||
../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
|
||||
./gconfig.h hertz.h
|
||||
hist.o: hist.c $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
|
||||
gprof.h $(BFDDIR)/sysdep.h ../bfd/config.h $(INCDIR)/fopen-same.h \
|
||||
$(INCDIR)/filenames.h ../bfd/bfd.h $(INCDIR)/symcat.h \
|
||||
gconfig.h $(INCDIR)/bin-bugs.h search_list.h source.h \
|
||||
symtab.h corefile.h gmon_io.h gmon_out.h hist.h sym_ids.h \
|
||||
utils.h
|
||||
gprof.h $(BFDDIR)/sysdep.h $(INCDIR)/ansidecl.h ../bfd/config.h \
|
||||
$(INCDIR)/fopen-same.h $(INCDIR)/filenames.h ../bfd/bfd.h \
|
||||
$(INCDIR)/ansidecl.h $(INCDIR)/symcat.h ./gconfig.h \
|
||||
search_list.h source.h symtab.h corefile.h gmon_io.h \
|
||||
gmon_out.h hist.h sym_ids.h utils.h
|
||||
source.o: source.c gprof.h $(BFDDIR)/sysdep.h $(INCDIR)/ansidecl.h \
|
||||
../bfd/config.h $(INCDIR)/fopen-same.h $(INCDIR)/filenames.h \
|
||||
../bfd/bfd.h $(INCDIR)/symcat.h gconfig.h $(INCDIR)/bin-bugs.h \
|
||||
$(INCDIR)/libiberty.h search_list.h source.h
|
||||
../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
|
||||
./gconfig.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
|
||||
$(INCDIR)/filenames.h search_list.h source.h
|
||||
search_list.o: search_list.c $(INCDIR)/libiberty.h \
|
||||
$(INCDIR)/ansidecl.h gprof.h $(BFDDIR)/sysdep.h ../bfd/config.h \
|
||||
$(INCDIR)/fopen-same.h $(INCDIR)/filenames.h ../bfd/bfd.h \
|
||||
$(INCDIR)/symcat.h gconfig.h $(INCDIR)/bin-bugs.h search_list.h
|
||||
$(INCDIR)/ansidecl.h gprof.h $(BFDDIR)/sysdep.h $(INCDIR)/ansidecl.h \
|
||||
../bfd/config.h $(INCDIR)/fopen-same.h $(INCDIR)/filenames.h \
|
||||
../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
|
||||
./gconfig.h search_list.h
|
||||
symtab.o: symtab.c gprof.h $(BFDDIR)/sysdep.h $(INCDIR)/ansidecl.h \
|
||||
../bfd/config.h $(INCDIR)/fopen-same.h $(INCDIR)/filenames.h \
|
||||
../bfd/bfd.h $(INCDIR)/symcat.h gconfig.h $(INCDIR)/bin-bugs.h \
|
||||
search_list.h source.h symtab.h cg_arcs.h corefile.h
|
||||
../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
|
||||
./gconfig.h search_list.h source.h symtab.h cg_arcs.h \
|
||||
corefile.h
|
||||
sym_ids.o: sym_ids.c $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
|
||||
$(INCDIR)/safe-ctype.h gprof.h $(BFDDIR)/sysdep.h ../bfd/config.h \
|
||||
$(INCDIR)/fopen-same.h $(INCDIR)/filenames.h ../bfd/bfd.h \
|
||||
$(INCDIR)/symcat.h gconfig.h $(INCDIR)/bin-bugs.h search_list.h \
|
||||
source.h symtab.h cg_arcs.h sym_ids.h
|
||||
$(INCDIR)/safe-ctype.h gprof.h $(BFDDIR)/sysdep.h $(INCDIR)/ansidecl.h \
|
||||
../bfd/config.h $(INCDIR)/fopen-same.h $(INCDIR)/filenames.h \
|
||||
../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
|
||||
./gconfig.h search_list.h source.h symtab.h cg_arcs.h \
|
||||
sym_ids.h
|
||||
utils.o: utils.c $(INCDIR)/demangle.h $(INCDIR)/libiberty.h \
|
||||
$(INCDIR)/ansidecl.h gprof.h $(BFDDIR)/sysdep.h ../bfd/config.h \
|
||||
$(INCDIR)/fopen-same.h $(INCDIR)/filenames.h ../bfd/bfd.h \
|
||||
$(INCDIR)/symcat.h gconfig.h $(INCDIR)/bin-bugs.h search_list.h \
|
||||
source.h symtab.h cg_arcs.h utils.h
|
||||
$(INCDIR)/ansidecl.h gprof.h $(BFDDIR)/sysdep.h $(INCDIR)/ansidecl.h \
|
||||
../bfd/config.h $(INCDIR)/fopen-same.h $(INCDIR)/filenames.h \
|
||||
../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
|
||||
./gconfig.h search_list.h source.h symtab.h cg_arcs.h \
|
||||
utils.h
|
||||
i386.o: i386.c gprof.h $(BFDDIR)/sysdep.h $(INCDIR)/ansidecl.h \
|
||||
../bfd/config.h $(INCDIR)/fopen-same.h $(INCDIR)/filenames.h \
|
||||
../bfd/bfd.h $(INCDIR)/symcat.h gconfig.h $(INCDIR)/bin-bugs.h \
|
||||
search_list.h source.h symtab.h cg_arcs.h corefile.h \
|
||||
hist.h
|
||||
../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
|
||||
./gconfig.h search_list.h source.h symtab.h cg_arcs.h \
|
||||
corefile.h hist.h
|
||||
alpha.o: alpha.c gprof.h $(BFDDIR)/sysdep.h $(INCDIR)/ansidecl.h \
|
||||
../bfd/config.h $(INCDIR)/fopen-same.h $(INCDIR)/filenames.h \
|
||||
../bfd/bfd.h $(INCDIR)/symcat.h gconfig.h $(INCDIR)/bin-bugs.h \
|
||||
search_list.h source.h symtab.h cg_arcs.h corefile.h \
|
||||
hist.h
|
||||
../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
|
||||
./gconfig.h search_list.h source.h symtab.h cg_arcs.h \
|
||||
corefile.h hist.h
|
||||
vax.o: vax.c gprof.h $(BFDDIR)/sysdep.h $(INCDIR)/ansidecl.h \
|
||||
../bfd/config.h $(INCDIR)/fopen-same.h $(INCDIR)/filenames.h \
|
||||
../bfd/bfd.h $(INCDIR)/symcat.h gconfig.h $(INCDIR)/bin-bugs.h \
|
||||
search_list.h source.h symtab.h cg_arcs.h corefile.h \
|
||||
hist.h
|
||||
../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
|
||||
./gconfig.h search_list.h source.h symtab.h cg_arcs.h \
|
||||
corefile.h hist.h
|
||||
tahoe.o: tahoe.c gprof.h $(BFDDIR)/sysdep.h $(INCDIR)/ansidecl.h \
|
||||
../bfd/config.h $(INCDIR)/fopen-same.h $(INCDIR)/filenames.h \
|
||||
../bfd/bfd.h $(INCDIR)/symcat.h gconfig.h $(INCDIR)/bin-bugs.h \
|
||||
search_list.h source.h symtab.h cg_arcs.h corefile.h \
|
||||
hist.h
|
||||
../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
|
||||
./gconfig.h search_list.h source.h symtab.h cg_arcs.h \
|
||||
corefile.h hist.h
|
||||
sparc.o: sparc.c gprof.h $(BFDDIR)/sysdep.h $(INCDIR)/ansidecl.h \
|
||||
../bfd/config.h $(INCDIR)/fopen-same.h $(INCDIR)/filenames.h \
|
||||
../bfd/bfd.h $(INCDIR)/symcat.h gconfig.h $(INCDIR)/bin-bugs.h \
|
||||
search_list.h source.h symtab.h cg_arcs.h corefile.h \
|
||||
hist.h
|
||||
../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
|
||||
./gconfig.h search_list.h source.h symtab.h cg_arcs.h \
|
||||
corefile.h hist.h
|
||||
mips.o: mips.c gprof.h $(BFDDIR)/sysdep.h $(INCDIR)/ansidecl.h \
|
||||
../bfd/config.h $(INCDIR)/fopen-same.h $(INCDIR)/filenames.h \
|
||||
../bfd/bfd.h $(INCDIR)/symcat.h gconfig.h $(INCDIR)/bin-bugs.h \
|
||||
search_list.h source.h symtab.h cg_arcs.h corefile.h \
|
||||
hist.h
|
||||
../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
|
||||
./gconfig.h search_list.h source.h symtab.h cg_arcs.h \
|
||||
corefile.h hist.h
|
||||
flat_bl.o: flat_bl.c $(INCDIR)/ansidecl.h
|
||||
bsd_callg_bl.o: bsd_callg_bl.c $(INCDIR)/ansidecl.h
|
||||
fsf_callg_bl.o: fsf_callg_bl.c $(INCDIR)/ansidecl.h
|
||||
|
@ -145,7 +145,6 @@ GENCAT = @GENCAT@
|
||||
GENINSRC_NEVER_FALSE = @GENINSRC_NEVER_FALSE@
|
||||
GENINSRC_NEVER_TRUE = @GENINSRC_NEVER_TRUE@
|
||||
GMSGFMT = @GMSGFMT@
|
||||
GREP = @GREP@
|
||||
INCINTL = @INCINTL@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
@ -176,8 +175,10 @@ PACKAGE_STRING = @PACKAGE_STRING@
|
||||
PACKAGE_TARNAME = @PACKAGE_TARNAME@
|
||||
PACKAGE_VERSION = @PACKAGE_VERSION@
|
||||
PATH_SEPARATOR = @PATH_SEPARATOR@
|
||||
PKGVERSION = "\"@PKGVERSION@\""
|
||||
POSUB = @POSUB@
|
||||
RANLIB = @RANLIB@
|
||||
REPORT_BUGS_TO = "\"@REPORT_BUGS_TO@\""
|
||||
SET_MAKE = @SET_MAKE@
|
||||
SHELL = @SHELL@
|
||||
STRIP = @STRIP@
|
||||
@ -186,6 +187,8 @@ VERSION = @VERSION@
|
||||
WARN_CFLAGS = @WARN_CFLAGS@
|
||||
XGETTEXT = @XGETTEXT@
|
||||
ac_ct_CC = @ac_ct_CC@
|
||||
ac_ct_RANLIB = @ac_ct_RANLIB@
|
||||
ac_ct_STRIP = @ac_ct_STRIP@
|
||||
am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
|
||||
am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
|
||||
am__include = @am__include@
|
||||
@ -202,7 +205,6 @@ build_vendor = @build_vendor@
|
||||
datadir = @datadir@
|
||||
datarootdir = @datarootdir@
|
||||
docdir = @docdir@
|
||||
dvidir = @dvidir@
|
||||
exec_prefix = @exec_prefix@
|
||||
host = @host@
|
||||
host_alias = @host_alias@
|
||||
@ -215,15 +217,12 @@ infodir = @infodir@
|
||||
install_sh = @install_sh@
|
||||
libdir = @libdir@
|
||||
libexecdir = @libexecdir@
|
||||
localedir = @localedir@
|
||||
localstatedir = @localstatedir@
|
||||
mandir = @mandir@
|
||||
mkdir_p = @mkdir_p@
|
||||
oldincludedir = @oldincludedir@
|
||||
pdfdir = @pdfdir@
|
||||
prefix = @prefix@
|
||||
program_transform_name = @program_transform_name@
|
||||
psdir = @psdir@
|
||||
sbindir = @sbindir@
|
||||
sharedstatedir = @sharedstatedir@
|
||||
sysconfdir = @sysconfdir@
|
||||
@ -240,7 +239,12 @@ BFDDIR = $(BASEDIR)/bfd
|
||||
INCDIR = $(BASEDIR)/include
|
||||
AM_CFLAGS = $(WARN_CFLAGS)
|
||||
MKDEP = gcc -MM
|
||||
INCLUDES = -D_GNU_SOURCE -DDEBUG -I../bfd -I$(srcdir)/../include -I$(srcdir)/../bfd @INCINTL@ -I. -DLOCALEDIR="\"$(datadir)/locale\""
|
||||
INCLUDES = -D_GNU_SOURCE -DDEBUG -I../bfd -I$(srcdir)/../include \
|
||||
-I$(srcdir)/../bfd @INCINTL@ -I. \
|
||||
-DPKGVERSION=$(PKGVERSION) \
|
||||
-DREPORT_BUGS_TO=$(REPORT_BUGS_TO) \
|
||||
-DLOCALEDIR="\"$(datadir)/locale\""
|
||||
|
||||
sources = basic_blocks.c call_graph.c cg_arcs.c cg_dfn.c \
|
||||
cg_print.c corefile.c gmon_io.c gprof.c hertz.c hist.c source.c \
|
||||
search_list.c symtab.c sym_ids.c utils.c \
|
||||
@ -928,112 +932,120 @@ dep-am: DEP
|
||||
# DO NOT DELETE THIS LINE -- mkdep uses it.
|
||||
# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
|
||||
basic_blocks.o: basic_blocks.c $(INCDIR)/libiberty.h \
|
||||
$(INCDIR)/ansidecl.h gprof.h $(BFDDIR)/sysdep.h ../bfd/config.h \
|
||||
$(INCDIR)/fopen-same.h $(INCDIR)/filenames.h ../bfd/bfd.h \
|
||||
$(INCDIR)/symcat.h gconfig.h $(INCDIR)/bin-bugs.h basic_blocks.h \
|
||||
corefile.h gmon_io.h gmon_out.h search_list.h source.h \
|
||||
symtab.h sym_ids.h
|
||||
$(INCDIR)/ansidecl.h gprof.h $(BFDDIR)/sysdep.h $(INCDIR)/ansidecl.h \
|
||||
../bfd/config.h $(INCDIR)/fopen-same.h $(INCDIR)/filenames.h \
|
||||
../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
|
||||
./gconfig.h basic_blocks.h corefile.h gmon_io.h gmon_out.h \
|
||||
search_list.h source.h symtab.h sym_ids.h
|
||||
call_graph.o: call_graph.c gprof.h $(BFDDIR)/sysdep.h \
|
||||
$(INCDIR)/ansidecl.h ../bfd/config.h $(INCDIR)/fopen-same.h \
|
||||
$(INCDIR)/filenames.h ../bfd/bfd.h $(INCDIR)/symcat.h \
|
||||
gconfig.h $(INCDIR)/bin-bugs.h search_list.h source.h \
|
||||
$(INCDIR)/filenames.h ../bfd/bfd.h $(INCDIR)/ansidecl.h \
|
||||
$(INCDIR)/symcat.h ./gconfig.h search_list.h source.h \
|
||||
symtab.h cg_arcs.h call_graph.h corefile.h gmon_io.h \
|
||||
gmon_out.h sym_ids.h
|
||||
cg_arcs.o: cg_arcs.c $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
|
||||
gprof.h $(BFDDIR)/sysdep.h ../bfd/config.h $(INCDIR)/fopen-same.h \
|
||||
$(INCDIR)/filenames.h ../bfd/bfd.h $(INCDIR)/symcat.h \
|
||||
gconfig.h $(INCDIR)/bin-bugs.h search_list.h source.h \
|
||||
symtab.h call_graph.h cg_arcs.h cg_dfn.h cg_print.h \
|
||||
utils.h sym_ids.h
|
||||
gprof.h $(BFDDIR)/sysdep.h $(INCDIR)/ansidecl.h ../bfd/config.h \
|
||||
$(INCDIR)/fopen-same.h $(INCDIR)/filenames.h ../bfd/bfd.h \
|
||||
$(INCDIR)/ansidecl.h $(INCDIR)/symcat.h ./gconfig.h \
|
||||
search_list.h source.h symtab.h call_graph.h cg_arcs.h \
|
||||
cg_dfn.h cg_print.h utils.h sym_ids.h
|
||||
cg_dfn.o: cg_dfn.c $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
|
||||
gprof.h $(BFDDIR)/sysdep.h ../bfd/config.h $(INCDIR)/fopen-same.h \
|
||||
$(INCDIR)/filenames.h ../bfd/bfd.h $(INCDIR)/symcat.h \
|
||||
gconfig.h $(INCDIR)/bin-bugs.h search_list.h source.h \
|
||||
symtab.h cg_arcs.h cg_dfn.h utils.h
|
||||
gprof.h $(BFDDIR)/sysdep.h $(INCDIR)/ansidecl.h ../bfd/config.h \
|
||||
$(INCDIR)/fopen-same.h $(INCDIR)/filenames.h ../bfd/bfd.h \
|
||||
$(INCDIR)/ansidecl.h $(INCDIR)/symcat.h ./gconfig.h \
|
||||
search_list.h source.h symtab.h cg_arcs.h cg_dfn.h \
|
||||
utils.h
|
||||
cg_print.o: cg_print.c $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
|
||||
gprof.h $(BFDDIR)/sysdep.h ../bfd/config.h $(INCDIR)/fopen-same.h \
|
||||
$(INCDIR)/filenames.h ../bfd/bfd.h $(INCDIR)/symcat.h \
|
||||
gconfig.h $(INCDIR)/bin-bugs.h search_list.h source.h \
|
||||
symtab.h cg_arcs.h cg_print.h hist.h utils.h corefile.h
|
||||
gprof.h $(BFDDIR)/sysdep.h $(INCDIR)/ansidecl.h ../bfd/config.h \
|
||||
$(INCDIR)/fopen-same.h $(INCDIR)/filenames.h ../bfd/bfd.h \
|
||||
$(INCDIR)/ansidecl.h $(INCDIR)/symcat.h ./gconfig.h \
|
||||
search_list.h source.h symtab.h cg_arcs.h cg_print.h \
|
||||
hist.h utils.h corefile.h
|
||||
corefile.o: corefile.c $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
|
||||
gprof.h $(BFDDIR)/sysdep.h ../bfd/config.h $(INCDIR)/fopen-same.h \
|
||||
$(INCDIR)/filenames.h ../bfd/bfd.h $(INCDIR)/symcat.h \
|
||||
gconfig.h $(INCDIR)/bin-bugs.h search_list.h source.h \
|
||||
symtab.h corefile.h
|
||||
gprof.h $(BFDDIR)/sysdep.h $(INCDIR)/ansidecl.h ../bfd/config.h \
|
||||
$(INCDIR)/fopen-same.h $(INCDIR)/filenames.h ../bfd/bfd.h \
|
||||
$(INCDIR)/ansidecl.h $(INCDIR)/symcat.h ./gconfig.h \
|
||||
search_list.h source.h symtab.h corefile.h
|
||||
gmon_io.o: gmon_io.c gprof.h $(BFDDIR)/sysdep.h $(INCDIR)/ansidecl.h \
|
||||
../bfd/config.h $(INCDIR)/fopen-same.h $(INCDIR)/filenames.h \
|
||||
../bfd/bfd.h $(INCDIR)/symcat.h gconfig.h $(INCDIR)/bin-bugs.h \
|
||||
search_list.h source.h symtab.h cg_arcs.h basic_blocks.h \
|
||||
corefile.h call_graph.h gmon_io.h gmon_out.h gmon.h \
|
||||
hertz.h hist.h $(INCDIR)/libiberty.h
|
||||
../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
|
||||
./gconfig.h search_list.h source.h symtab.h cg_arcs.h \
|
||||
basic_blocks.h corefile.h call_graph.h gmon_io.h gmon_out.h \
|
||||
gmon.h hertz.h hist.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h
|
||||
gprof.o: gprof.c $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
|
||||
gprof.h $(BFDDIR)/sysdep.h ../bfd/config.h $(INCDIR)/fopen-same.h \
|
||||
$(INCDIR)/filenames.h ../bfd/bfd.h $(INCDIR)/symcat.h \
|
||||
gconfig.h $(INCDIR)/bin-bugs.h search_list.h source.h \
|
||||
symtab.h basic_blocks.h call_graph.h cg_arcs.h cg_print.h \
|
||||
corefile.h gmon_io.h hertz.h hist.h sym_ids.h $(INCDIR)/demangle.h
|
||||
gprof.h $(BFDDIR)/sysdep.h $(INCDIR)/ansidecl.h ../bfd/config.h \
|
||||
$(INCDIR)/fopen-same.h $(INCDIR)/filenames.h ../bfd/bfd.h \
|
||||
$(INCDIR)/ansidecl.h $(INCDIR)/symcat.h ./gconfig.h \
|
||||
search_list.h source.h symtab.h basic_blocks.h call_graph.h \
|
||||
cg_arcs.h cg_print.h corefile.h gmon_io.h hertz.h hist.h \
|
||||
sym_ids.h $(INCDIR)/demangle.h $(INCDIR)/libiberty.h
|
||||
hertz.o: hertz.c gprof.h $(BFDDIR)/sysdep.h $(INCDIR)/ansidecl.h \
|
||||
../bfd/config.h $(INCDIR)/fopen-same.h $(INCDIR)/filenames.h \
|
||||
../bfd/bfd.h $(INCDIR)/symcat.h gconfig.h $(INCDIR)/bin-bugs.h \
|
||||
hertz.h
|
||||
../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
|
||||
./gconfig.h hertz.h
|
||||
hist.o: hist.c $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
|
||||
gprof.h $(BFDDIR)/sysdep.h ../bfd/config.h $(INCDIR)/fopen-same.h \
|
||||
$(INCDIR)/filenames.h ../bfd/bfd.h $(INCDIR)/symcat.h \
|
||||
gconfig.h $(INCDIR)/bin-bugs.h search_list.h source.h \
|
||||
symtab.h corefile.h gmon_io.h gmon_out.h hist.h sym_ids.h \
|
||||
utils.h
|
||||
gprof.h $(BFDDIR)/sysdep.h $(INCDIR)/ansidecl.h ../bfd/config.h \
|
||||
$(INCDIR)/fopen-same.h $(INCDIR)/filenames.h ../bfd/bfd.h \
|
||||
$(INCDIR)/ansidecl.h $(INCDIR)/symcat.h ./gconfig.h \
|
||||
search_list.h source.h symtab.h corefile.h gmon_io.h \
|
||||
gmon_out.h hist.h sym_ids.h utils.h
|
||||
source.o: source.c gprof.h $(BFDDIR)/sysdep.h $(INCDIR)/ansidecl.h \
|
||||
../bfd/config.h $(INCDIR)/fopen-same.h $(INCDIR)/filenames.h \
|
||||
../bfd/bfd.h $(INCDIR)/symcat.h gconfig.h $(INCDIR)/bin-bugs.h \
|
||||
$(INCDIR)/libiberty.h search_list.h source.h
|
||||
../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
|
||||
./gconfig.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
|
||||
$(INCDIR)/filenames.h search_list.h source.h
|
||||
search_list.o: search_list.c $(INCDIR)/libiberty.h \
|
||||
$(INCDIR)/ansidecl.h gprof.h $(BFDDIR)/sysdep.h ../bfd/config.h \
|
||||
$(INCDIR)/fopen-same.h $(INCDIR)/filenames.h ../bfd/bfd.h \
|
||||
$(INCDIR)/symcat.h gconfig.h $(INCDIR)/bin-bugs.h search_list.h
|
||||
$(INCDIR)/ansidecl.h gprof.h $(BFDDIR)/sysdep.h $(INCDIR)/ansidecl.h \
|
||||
../bfd/config.h $(INCDIR)/fopen-same.h $(INCDIR)/filenames.h \
|
||||
../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
|
||||
./gconfig.h search_list.h
|
||||
symtab.o: symtab.c gprof.h $(BFDDIR)/sysdep.h $(INCDIR)/ansidecl.h \
|
||||
../bfd/config.h $(INCDIR)/fopen-same.h $(INCDIR)/filenames.h \
|
||||
../bfd/bfd.h $(INCDIR)/symcat.h gconfig.h $(INCDIR)/bin-bugs.h \
|
||||
search_list.h source.h symtab.h cg_arcs.h corefile.h
|
||||
../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
|
||||
./gconfig.h search_list.h source.h symtab.h cg_arcs.h \
|
||||
corefile.h
|
||||
sym_ids.o: sym_ids.c $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
|
||||
$(INCDIR)/safe-ctype.h gprof.h $(BFDDIR)/sysdep.h ../bfd/config.h \
|
||||
$(INCDIR)/fopen-same.h $(INCDIR)/filenames.h ../bfd/bfd.h \
|
||||
$(INCDIR)/symcat.h gconfig.h $(INCDIR)/bin-bugs.h search_list.h \
|
||||
source.h symtab.h cg_arcs.h sym_ids.h
|
||||
$(INCDIR)/safe-ctype.h gprof.h $(BFDDIR)/sysdep.h $(INCDIR)/ansidecl.h \
|
||||
../bfd/config.h $(INCDIR)/fopen-same.h $(INCDIR)/filenames.h \
|
||||
../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
|
||||
./gconfig.h search_list.h source.h symtab.h cg_arcs.h \
|
||||
sym_ids.h
|
||||
utils.o: utils.c $(INCDIR)/demangle.h $(INCDIR)/libiberty.h \
|
||||
$(INCDIR)/ansidecl.h gprof.h $(BFDDIR)/sysdep.h ../bfd/config.h \
|
||||
$(INCDIR)/fopen-same.h $(INCDIR)/filenames.h ../bfd/bfd.h \
|
||||
$(INCDIR)/symcat.h gconfig.h $(INCDIR)/bin-bugs.h search_list.h \
|
||||
source.h symtab.h cg_arcs.h utils.h
|
||||
$(INCDIR)/ansidecl.h gprof.h $(BFDDIR)/sysdep.h $(INCDIR)/ansidecl.h \
|
||||
../bfd/config.h $(INCDIR)/fopen-same.h $(INCDIR)/filenames.h \
|
||||
../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
|
||||
./gconfig.h search_list.h source.h symtab.h cg_arcs.h \
|
||||
utils.h
|
||||
i386.o: i386.c gprof.h $(BFDDIR)/sysdep.h $(INCDIR)/ansidecl.h \
|
||||
../bfd/config.h $(INCDIR)/fopen-same.h $(INCDIR)/filenames.h \
|
||||
../bfd/bfd.h $(INCDIR)/symcat.h gconfig.h $(INCDIR)/bin-bugs.h \
|
||||
search_list.h source.h symtab.h cg_arcs.h corefile.h \
|
||||
hist.h
|
||||
../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
|
||||
./gconfig.h search_list.h source.h symtab.h cg_arcs.h \
|
||||
corefile.h hist.h
|
||||
alpha.o: alpha.c gprof.h $(BFDDIR)/sysdep.h $(INCDIR)/ansidecl.h \
|
||||
../bfd/config.h $(INCDIR)/fopen-same.h $(INCDIR)/filenames.h \
|
||||
../bfd/bfd.h $(INCDIR)/symcat.h gconfig.h $(INCDIR)/bin-bugs.h \
|
||||
search_list.h source.h symtab.h cg_arcs.h corefile.h \
|
||||
hist.h
|
||||
../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
|
||||
./gconfig.h search_list.h source.h symtab.h cg_arcs.h \
|
||||
corefile.h hist.h
|
||||
vax.o: vax.c gprof.h $(BFDDIR)/sysdep.h $(INCDIR)/ansidecl.h \
|
||||
../bfd/config.h $(INCDIR)/fopen-same.h $(INCDIR)/filenames.h \
|
||||
../bfd/bfd.h $(INCDIR)/symcat.h gconfig.h $(INCDIR)/bin-bugs.h \
|
||||
search_list.h source.h symtab.h cg_arcs.h corefile.h \
|
||||
hist.h
|
||||
../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
|
||||
./gconfig.h search_list.h source.h symtab.h cg_arcs.h \
|
||||
corefile.h hist.h
|
||||
tahoe.o: tahoe.c gprof.h $(BFDDIR)/sysdep.h $(INCDIR)/ansidecl.h \
|
||||
../bfd/config.h $(INCDIR)/fopen-same.h $(INCDIR)/filenames.h \
|
||||
../bfd/bfd.h $(INCDIR)/symcat.h gconfig.h $(INCDIR)/bin-bugs.h \
|
||||
search_list.h source.h symtab.h cg_arcs.h corefile.h \
|
||||
hist.h
|
||||
../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
|
||||
./gconfig.h search_list.h source.h symtab.h cg_arcs.h \
|
||||
corefile.h hist.h
|
||||
sparc.o: sparc.c gprof.h $(BFDDIR)/sysdep.h $(INCDIR)/ansidecl.h \
|
||||
../bfd/config.h $(INCDIR)/fopen-same.h $(INCDIR)/filenames.h \
|
||||
../bfd/bfd.h $(INCDIR)/symcat.h gconfig.h $(INCDIR)/bin-bugs.h \
|
||||
search_list.h source.h symtab.h cg_arcs.h corefile.h \
|
||||
hist.h
|
||||
../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
|
||||
./gconfig.h search_list.h source.h symtab.h cg_arcs.h \
|
||||
corefile.h hist.h
|
||||
mips.o: mips.c gprof.h $(BFDDIR)/sysdep.h $(INCDIR)/ansidecl.h \
|
||||
../bfd/config.h $(INCDIR)/fopen-same.h $(INCDIR)/filenames.h \
|
||||
../bfd/bfd.h $(INCDIR)/symcat.h gconfig.h $(INCDIR)/bin-bugs.h \
|
||||
search_list.h source.h symtab.h cg_arcs.h corefile.h \
|
||||
hist.h
|
||||
../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
|
||||
./gconfig.h search_list.h source.h symtab.h cg_arcs.h \
|
||||
corefile.h hist.h
|
||||
flat_bl.o: flat_bl.c $(INCDIR)/ansidecl.h
|
||||
bsd_callg_bl.o: bsd_callg_bl.c $(INCDIR)/ansidecl.h
|
||||
fsf_callg_bl.o: fsf_callg_bl.c $(INCDIR)/ansidecl.h
|
||||
|
44
gprof/configure
vendored
44
gprof/configure
vendored
@ -309,7 +309,7 @@ ac_includes_default="\
|
||||
# include <unistd.h>
|
||||
#endif"
|
||||
|
||||
ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS build build_cpu build_vendor build_os host host_cpu host_vendor host_os target target_cpu target_vendor target_os CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO install_sh STRIP ac_ct_STRIP INSTALL_STRIP_PROGRAM mkdir_p AWK SET_MAKE am__leading_dot AMTAR am__tar am__untar DEPDIR am__include am__quote AMDEP_TRUE AMDEP_FALSE AMDEPBACKSLASH CCDEPMODE am__fastdepCC_TRUE am__fastdepCC_FALSE LN_S RANLIB ac_ct_RANLIB LIBTOOL USE_NLS LIBINTL LIBINTL_DEP INCINTL XGETTEXT GMSGFMT POSUB CATALOGS DATADIRNAME INSTOBJEXT GENCAT CATOBJEXT MKINSTALLDIRS MSGFMT MSGMERGE MAINTAINER_MODE_TRUE MAINTAINER_MODE_FALSE MAINT GENINSRC_NEVER_TRUE GENINSRC_NEVER_FALSE CPP EGREP WARN_CFLAGS NO_WERROR datarootdir docdir htmldir LIBOBJS LTLIBOBJS'
|
||||
ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS build build_cpu build_vendor build_os host host_cpu host_vendor host_os target target_cpu target_vendor target_os CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO install_sh STRIP ac_ct_STRIP INSTALL_STRIP_PROGRAM mkdir_p AWK SET_MAKE am__leading_dot AMTAR am__tar am__untar DEPDIR am__include am__quote AMDEP_TRUE AMDEP_FALSE AMDEPBACKSLASH CCDEPMODE am__fastdepCC_TRUE am__fastdepCC_FALSE LN_S RANLIB ac_ct_RANLIB LIBTOOL PKGVERSION REPORT_BUGS_TO USE_NLS LIBINTL LIBINTL_DEP INCINTL XGETTEXT GMSGFMT POSUB CATALOGS DATADIRNAME INSTOBJEXT GENCAT CATOBJEXT MKINSTALLDIRS MSGFMT MSGMERGE MAINTAINER_MODE_TRUE MAINTAINER_MODE_FALSE MAINT GENINSRC_NEVER_TRUE GENINSRC_NEVER_FALSE CPP EGREP WARN_CFLAGS NO_WERROR datarootdir docdir htmldir LIBOBJS LTLIBOBJS'
|
||||
ac_subst_files=''
|
||||
|
||||
# Initialize some variables set by options.
|
||||
@ -867,6 +867,8 @@ Optional Packages:
|
||||
--without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no)
|
||||
--with-gnu-ld assume the C compiler uses GNU ld default=no
|
||||
--with-pic try to use only PIC/non-PIC objects default=use both
|
||||
--with-pkgversion=PKG Add PKG to the version string
|
||||
--with-bugurl=URL Direct users to URL to report a bug
|
||||
|
||||
Some influential environment variables:
|
||||
CC C compiler command
|
||||
@ -3865,7 +3867,7 @@ test x"$pic_mode" = xno && libtool_flags="$libtool_flags --prefer-non-pic"
|
||||
case $host in
|
||||
*-*-irix6*)
|
||||
# Find out which ABI we are using.
|
||||
echo '#line 3868 "configure"' > conftest.$ac_ext
|
||||
echo '#line 3870 "configure"' > conftest.$ac_ext
|
||||
if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
|
||||
(eval $ac_compile) 2>&5
|
||||
ac_status=$?
|
||||
@ -4152,6 +4154,42 @@ exec 5>>./config.log
|
||||
|
||||
|
||||
|
||||
# Package version. For an official FSF release, it is empty.
|
||||
|
||||
# Check whether --with-pkgversion or --without-pkgversion was given.
|
||||
if test "${with_pkgversion+set}" = set; then
|
||||
withval="$with_pkgversion"
|
||||
case "$withval" in
|
||||
yes) { { echo "$as_me:$LINENO: error: package version not specified" >&5
|
||||
echo "$as_me: error: package version not specified" >&2;}
|
||||
{ (exit 1); exit 1; }; } ;;
|
||||
no) PKGVERSION= ;;
|
||||
*) PKGVERSION="($withval) " ;;
|
||||
esac
|
||||
else
|
||||
PKGVERSION=
|
||||
|
||||
fi;
|
||||
|
||||
|
||||
# The location to which bugs should be reported.
|
||||
|
||||
# Check whether --with-bugurl or --without-bugurl was given.
|
||||
if test "${with_bugurl+set}" = set; then
|
||||
withval="$with_bugurl"
|
||||
case "$withval" in
|
||||
yes) { { echo "$as_me:$LINENO: error: bug URL not specified" >&5
|
||||
echo "$as_me: error: bug URL not specified" >&2;}
|
||||
{ (exit 1); exit 1; }; } ;;
|
||||
no) REPORT_BUGS_TO="" ;;
|
||||
*) REPORT_BUGS_TO="<URL:$withval>" ;;
|
||||
esac
|
||||
else
|
||||
REPORT_BUGS_TO="<URL:http://www.sourceware.org/bugzilla/>"
|
||||
|
||||
fi;
|
||||
|
||||
|
||||
ac_config_headers="$ac_config_headers gconfig.h:gconfig.in"
|
||||
|
||||
|
||||
@ -6959,6 +6997,8 @@ s,@LN_S@,$LN_S,;t t
|
||||
s,@RANLIB@,$RANLIB,;t t
|
||||
s,@ac_ct_RANLIB@,$ac_ct_RANLIB,;t t
|
||||
s,@LIBTOOL@,$LIBTOOL,;t t
|
||||
s,@PKGVERSION@,$PKGVERSION,;t t
|
||||
s,@REPORT_BUGS_TO@,$REPORT_BUGS_TO,;t t
|
||||
s,@USE_NLS@,$USE_NLS,;t t
|
||||
s,@LIBINTL@,$LIBINTL,;t t
|
||||
s,@LIBINTL_DEP@,$LIBINTL_DEP,;t t
|
||||
|
@ -13,6 +13,32 @@ AM_INIT_AUTOMAKE(gprof, ${BFD_VERSION})
|
||||
|
||||
AM_PROG_LIBTOOL
|
||||
|
||||
# Package version. For an official FSF release, it is empty.
|
||||
AC_ARG_WITH(pkgversion,
|
||||
AS_HELP_STRING([--with-pkgversion=PKG],
|
||||
[Add PKG to the version string]),
|
||||
[case "$withval" in
|
||||
yes) AC_MSG_ERROR([package version not specified]) ;;
|
||||
no) PKGVERSION= ;;
|
||||
*) PKGVERSION="($withval) " ;;
|
||||
esac],
|
||||
PKGVERSION=
|
||||
)
|
||||
AC_SUBST(PKGVERSION)
|
||||
|
||||
# The location to which bugs should be reported.
|
||||
AC_ARG_WITH(bugurl,
|
||||
AS_HELP_STRING([--with-bugurl=URL],
|
||||
[Direct users to URL to report a bug]),
|
||||
[case "$withval" in
|
||||
yes) AC_MSG_ERROR([bug URL not specified]) ;;
|
||||
no) REPORT_BUGS_TO="" ;;
|
||||
*) REPORT_BUGS_TO="<URL:$withval>" ;;
|
||||
esac],
|
||||
REPORT_BUGS_TO="<URL:http://www.sourceware.org/bugzilla/>"
|
||||
)
|
||||
AC_SUBST(REPORT_BUGS_TO)
|
||||
|
||||
dnl For simplicity, we use the BFD configuration file for most
|
||||
dnl things. However, we also need our own configuration file for
|
||||
dnl the automake PACKAGE and VERSION macros. We don't name it
|
||||
|
@ -170,7 +170,7 @@ Usage: %s [-[abcDhilLsTvwxyz]] [-[ACeEfFJnNOpPqQZ][name]] [-I dirs]\n\
|
||||
[--demangle[=STYLE]] [--no-demangle] [@FILE]\n\
|
||||
[image-file] [profile-file...]\n"),
|
||||
whoami);
|
||||
if (status == 0)
|
||||
if (REPORT_BUGS_TO[0] && status == 0)
|
||||
fprintf (stream, _("Report bugs to %s\n"), REPORT_BUGS_TO);
|
||||
done (status);
|
||||
}
|
||||
@ -411,7 +411,7 @@ main (int argc, char **argv)
|
||||
break;
|
||||
case 'v':
|
||||
/* This output is intended to follow the GNU standards document. */
|
||||
printf (_("GNU gprof %s\n"), VERSION);
|
||||
printf (_("GNU gprof %s\n"), PKGVERSION VERSION);
|
||||
printf (_("Based on BSD gprof, copyright 1983 Regents of the University of California.\n"));
|
||||
printf (_("\
|
||||
This program is free software. This program has absolutely no warranty.\n"));
|
||||
|
@ -68,8 +68,6 @@
|
||||
#define _(String) gettext (String)
|
||||
#endif
|
||||
|
||||
#include "bin-bugs.h"
|
||||
|
||||
#define STYLE_FLAT_PROFILE (1<<0)
|
||||
#define STYLE_CALL_GRAPH (1<<1)
|
||||
#define STYLE_SUMMARY_FILE (1<<2)
|
||||
|
Reference in New Issue
Block a user