diff options
author | Andrew G. Morgan <morgan@kernel.org> | 2002-05-29 04:14:10 +0000 |
---|---|---|
committer | Andrew G. Morgan <morgan@kernel.org> | 2002-05-29 04:14:10 +0000 |
commit | b0f834b6a86c54e25d078d762003e9b7bc67e8ba (patch) | |
tree | d72bb1524eb5d229f677f97c2401c4fcd40533ef /configure.in | |
parent | 6b8b2ce0e764075f18e73d214321ba7ff1fc646d (diff) | |
download | pam-b0f834b6a86c54e25d078d762003e9b7bc67e8ba.tar.gz pam-b0f834b6a86c54e25d078d762003e9b7bc67e8ba.tar.bz2 pam-b0f834b6a86c54e25d078d762003e9b7bc67e8ba.zip |
Relevant BUGIDs: 471377
Purpose of commit: new feature
Commit summary:
---------------
build pdf files when you type 'make pdf' in the doc/ directory.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 543d975c..f4048fef 100644 --- a/configure.in +++ b/configure.in @@ -412,6 +412,7 @@ if test $HAVE_SGML2LATEX = "yes" ; then else PSER="sgml2latex -p" fi + AC_CHECK_PROG(HAVE_PS2PDF, ps2pdf, yes, no) else AC_CHECK_PROG(HAVE_SGML2PS, sgml2ps, yes, no) if test $HAVE_SGML2PS = yes ; then @@ -419,6 +420,7 @@ else fi fi AC_SUBST(PSER) +AC_SUBST(PS2PDF) dnl Files to be created from when we run configure AC_OUTPUT(Make.Rules) |