diff options
author | Thorsten Kukuk <kukuk@thkukuk.de> | 2006-06-28 14:41:18 +0000 |
---|---|---|
committer | Thorsten Kukuk <kukuk@thkukuk.de> | 2006-06-28 14:41:18 +0000 |
commit | 95e6b22ccd72741a4b651deae208b184086f2e52 (patch) | |
tree | 0bc38582d9ebe760b8ddc8645cd581d9fa552ed6 /configure.in | |
parent | 504eedccf7e1d222092c6005fdc13705ab5d26b8 (diff) | |
download | pam-95e6b22ccd72741a4b651deae208b184086f2e52.tar.gz pam-95e6b22ccd72741a4b651deae208b184086f2e52.tar.bz2 pam-95e6b22ccd72741a4b651deae208b184086f2e52.zip |
Relevant BUGIDs:
Purpose of commit: cleanup
Commit summary:
---------------
* doc/CREDITS: Removed.
* doc/NOTES: Removed.
* doc/pam_appl.sgml: Removed.
* doc/pam_modules.sgml: Removed.
* doc/pam_source.sgml: Removed.
* doc/figs/pam_orient.txt: Removed.
* doc/figs: Removed.
* configure.in: Remove checks for sgml2* progrs, add sag, adg
and mwg Makefiles.
* doc/Makefile.am: Remove references to sgml, add sag, adg and mwg
directories.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 29 |
1 files changed, 5 insertions, 24 deletions
diff --git a/configure.in b/configure.in index 1ed71f66..4e4e2ec3 100644 --- a/configure.in +++ b/configure.in @@ -402,29 +402,6 @@ AC_CHECK_FUNCS(inet_ntop inet_pton ruserok_af) AC_CHECK_FUNCS(unshare, [UNSHARE=yes], [UNSHARE=no]) AM_CONDITIONAL([HAVE_UNSHARE], [test "$UNSHARE" = yes]) -dnl Checks for programs/utilities -AC_CHECK_PROG(SGML2PS, sgml2ps, yes, no) -AC_CHECK_PROG(SGML2TXT, sgml2txt, yes, no) -AC_CHECK_PROG(SGML2HTML, sgml2html, yes, no) -AC_CHECK_PROG(SGML2LATEX, sgml2latex, yes, no) -AC_CHECK_PROG(PS2PDF, ps2pdf, yes, no) -AM_CONDITIONAL([HAVE_SGML2PS], [test "$SGML2PS" = yes || test "$SGML2LATEX" = yes]) -AM_CONDITIONAL([HAVE_SGML2TXT], [test "$SGML2TXT" = yes]) -AM_CONDITIONAL([HAVE_SGML2HTML], [test "$SGML2HTML" = yes]) -AM_CONDITIONAL([HAVE_PS2PDF], [test "$PS2PDF" = yes]) -if test $SGML2LATEX = "yes" ; then - if sgml2latex -h | grep -e --paper | grep ' -p ' > /dev/null ; then - PSER="sgml2latex -o ps" - else - PSER="sgml2latex -p" - fi -else - if test $SGML2PS = yes ; then - PSER="sgml2ps" - fi -fi -AC_SUBST(PSER) - dnl dnl Check for xsltproc dnl @@ -447,7 +424,10 @@ else enable_man=no fi +AC_PATH_PROG([FO2PDF], [fop]) + AM_CONDITIONAL(ENABLE_REGENERATE_MAN, test x$enable_man != xno) +AM_CONDITIONAL(ENABLE_GENERATE_PDF, test ! -z "$FO2PDF") AM_GNU_GETTEXT_VERSION @@ -513,4 +493,5 @@ AC_OUTPUT(Makefile libpam/Makefile libpamc/Makefile libpamc/test/Makefile \ modules/pam_unix/Makefile modules/pam_userdb/Makefile \ modules/pam_warn/Makefile modules/pam_wheel/Makefile \ modules/pam_xauth/Makefile doc/Makefile doc/specs/Makefile \ - doc/man/Makefile examples/Makefile tests/Makefile) + doc/man/Makefile doc/sag/Makefile doc/adg/Makefile \ + doc/mwg/Makefile examples/Makefile tests/Makefile) |