X-Git-Url: https://cgit.sxemacs.org/?p=gnus;a=blobdiff_plain;f=configure.in;h=d697ea0d8ae779ed87e84ab2513071d35df02846;hp=53689629e4c650aaaa9c69ea6e52df621dbab0cf;hb=bb493e50d32285416d42e3a52d79a34fbfe67df6;hpb=3165f4bf5dd3b08f0b9c24f04a84fa580d432c7f diff --git a/configure.in b/configure.in index 53689629e..d697ea0d8 100644 --- a/configure.in +++ b/configure.in @@ -10,9 +10,13 @@ if test "${EMACS}" = "t"; then EMACS="" fi -AC_ARG_WITH(xemacs,[ --with-xemacs Use XEmacs to build], +AC_ARG_WITH(xemacs, + [AS_HELP_STRING([[--with-xemacs[=PROG]]], + [use XEmacs to build (default: PROG=xemacs)])], [ if test "${withval}" = "yes"; then EMACS=xemacs; else EMACS=${withval}; fi ]) -AC_ARG_WITH(emacs,[ --with-emacs Use Emacs to build], +AC_ARG_WITH(emacs, + [AS_HELP_STRING([[--with-emacs[=PROG]]], + [use Emacs to build (default: PROG=emacs)])], [ if test "${withval}" = "yes"; then EMACS=emacs; else EMACS=${withval}; fi ]) AC_CHECK_PROG(MAKEINFO, makeinfo, makeinfo, no) @@ -20,8 +24,10 @@ AC_CHECK_PROG(EMACS, emacs, emacs, xemacs) AC_PATH_LISPDIR AC_PATH_ETCDIR +AC_PATH_INFO_DIR AC_CHECK_URL AC_CHECK_W3 +AC_SET_BUILD_FLAGS GNUS_CHECK_FONTS AC_OUTPUT(Makefile etc/Makefile lisp/Makefile texi/Makefile texi/gnusconfig.tex texi/ps/Makefile)