Index: ChangeLog
2005-01-07 Andrew Cagney <cagney@gnu.org>
* configure.ac: Rename configure.in, require autoconf 2.59.
* configure: Re-generate.
Index: doc/ChangeLog
2005-01-07 Andrew Cagney <cagney@gnu.org>
* configure.ac: Rename configure.in, require autoconf 2.59.
* configure: Re-generate.
Index: gdbserver/ChangeLog
2005-01-07 Andrew Cagney <cagney@gnu.org>
* configure.ac: Rename configure.in, require autoconf 2.59.
* configure: Re-generate.
Index: testsuite/ChangeLog
2005-01-07 Andrew Cagney <cagney@gnu.org>
* configure.ac: Rename configure.in, require autoconf 2.59.
* configure: Re-generate.
* gdb.stabs/configure.ac: Rename configure.in, require autoconf 2.59.
* gdb.stabs/configure: Re-generate.
* gdb.hp/configure.ac: Rename configure.in, require autoconf 2.59.
* gdb.hp/configure: Re-generate.
* gdb.hp/gdb.objdbg/configure.ac: Rename configure.in, require
autoconf 2.59.
* gdb.hp/gdb.objdbg/configure: Re-generate.
* gdb.hp/gdb.defects/configure.ac: Rename configure.in, require
autoconf 2.59.
* gdb.hp/gdb.defects/configure: Re-generate.
* gdb.hp/gdb.compat/configure.ac: Rename configure.in, require
autoconf 2.59.
* gdb.hp/gdb.compat/configure: Re-generate.
* gdb.hp/gdb.base-hp/configure.ac: Rename configure.in, require
autoconf 2.59.
* gdb.hp/gdb.base-hp/configure: Re-generate.
* gdb.hp/gdb.aCC/configure.ac: Rename configure.in, require
autoconf 2.59.
* gdb.hp/gdb.aCC/configure: Re-generate.
2005-01-07 22:53:26 +01:00
|
|
|
AC_PREREQ(2.59)
|
1999-04-16 03:35:26 +02:00
|
|
|
AC_INIT(refcard.tex)
|
2008-06-06 00:36:57 +02:00
|
|
|
sinclude(../../config/acx.m4)
|
1999-04-16 03:35:26 +02:00
|
|
|
AC_PROG_INSTALL
|
2000-04-16 10:47:41 +02:00
|
|
|
AC_PROG_LN_S
|
gdb:
* configure.ac (--with-datarootdir, --with-docdir, --with-pdfdir,
--with-htmldir): New.
* configure: Regenerate.
gdb/doc:
* configure.ac (--with-datarootdir, --with-docdir, --with-pdfdir,
--with-htmldir): New.
* configure: Regenerate.
* Makefile.in (datarootdir, docdir): Define.
(gdb.dvi, gdb.pdf): Use same -I options as for building gdb.info
instead of $(SET_TEXINPUTS).
(gdbint.dvi, gdbint.pdf): Use same -I options as for building
gdbint.info instead of $(SET_TEXINPUTS).
(gdbint/index.html): Use same -I options as for building
gdbint.info.
(stabs.dvi, stabs.pdf): Use same -I options as for building
stabs.info instead of $(SET_TEXINPUTS).
(stabs/index.html): Use same -I options as for building
stabs.info.
(annotate.dvi, annotate.pdf): Use same -I options as for building
annotate.info instead of $(SET_TEXINPUTS).
(annotate/index.html): Use same -I options as for building
annotate.info.
2009-04-21 22:13:08 +02:00
|
|
|
|
|
|
|
# Flags needed to enable html installing and building
|
|
|
|
AC_ARG_WITH(datarootdir,
|
|
|
|
AC_HELP_STRING([--with-datarootdir], [use datarootdir as the data root directory.]),
|
|
|
|
[datarootdir="\${prefix}/${withval}"],
|
|
|
|
[datarootdir="\${prefix}/share"])
|
|
|
|
|
|
|
|
AC_ARG_WITH(docdir,
|
|
|
|
AC_HELP_STRING([--with-docdir], [install documentation in this directory.]),
|
|
|
|
[docdir="\${prefix}/${withval}"],
|
|
|
|
[docdir="\${datarootdir}/doc"])
|
|
|
|
|
|
|
|
AC_ARG_WITH(pdfdir,
|
|
|
|
AC_HELP_STRING([--with-pdfdir], [install pdf in this directory.]),
|
|
|
|
[pdfdir="\${prefix}/${withval}"],
|
|
|
|
[pdfdir="\${docdir}"])
|
|
|
|
|
|
|
|
AC_ARG_WITH(htmldir,
|
|
|
|
AC_HELP_STRING([--with-htmldir], [install html in this directory.]),
|
|
|
|
[htmldir="\${prefix}/${withval}"],
|
|
|
|
[htmldir="\${docdir}"])
|
|
|
|
|
gdb:
2009-04-17 Carlos O'Donell <carlos@codesourcery.com>
* configure.ac: AC_SUBST datarootdir, docdir, htmldir, pdfdir.
* configure: Regenerate.
* Makefile.in: Set datarootdir, docdir, htmldir, and pdfdir from
configure substitutions.
(FLAGS_TO_PASS): Add datarootdir, docdir, and htmldir.
gdb/doc:
2009-04-17 Carlos O'Donell <carlos@codesourcery.com>
* Makefile.in: Set pdfdir and htmldir from configure
substitutions.
* configure.ac: AC_SUBST datarootdir, docdir, htmldir, pdfdir.
* configure: Regenerate.
readline:
2009-04-17 Carlos O'Donell <carlos@codesourcery.com>
* Makefile.in: Add html target. Add dummy install-html and
install-pdf targets.
sim:
2009-04-17 Carlos O'Donell <carlos@codesourcery.com>
* Makefile.in: Add dummy install-pdf, html, and
install-html targets.
2009-04-17 19:44:05 +02:00
|
|
|
AC_SUBST(datarootdir)
|
|
|
|
AC_SUBST(docdir)
|
|
|
|
AC_SUBST(htmldir)
|
|
|
|
AC_SUBST(pdfdir)
|
gdb:
* configure.ac (--with-datarootdir, --with-docdir, --with-pdfdir,
--with-htmldir): New.
* configure: Regenerate.
gdb/doc:
* configure.ac (--with-datarootdir, --with-docdir, --with-pdfdir,
--with-htmldir): New.
* configure: Regenerate.
* Makefile.in (datarootdir, docdir): Define.
(gdb.dvi, gdb.pdf): Use same -I options as for building gdb.info
instead of $(SET_TEXINPUTS).
(gdbint.dvi, gdbint.pdf): Use same -I options as for building
gdbint.info instead of $(SET_TEXINPUTS).
(gdbint/index.html): Use same -I options as for building
gdbint.info.
(stabs.dvi, stabs.pdf): Use same -I options as for building
stabs.info instead of $(SET_TEXINPUTS).
(stabs/index.html): Use same -I options as for building
stabs.info.
(annotate.dvi, annotate.pdf): Use same -I options as for building
annotate.info instead of $(SET_TEXINPUTS).
(annotate/index.html): Use same -I options as for building
annotate.info.
2009-04-21 22:13:08 +02:00
|
|
|
|
2008-06-06 00:36:57 +02:00
|
|
|
ACX_PKGVERSION([GDB])
|
|
|
|
ACX_BUGURL([http://www.gnu.org/software/gdb/bugs/])
|
1999-04-16 03:35:26 +02:00
|
|
|
AC_OUTPUT(Makefile)
|