X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=aclocal.m4;h=fd529501f725fdafbf33973af2d67772867fe880;hb=036ea616a75b935c09be4586d78ff6fdffec71ec;hp=c3a99530325bf6b5636f74cbde76312deeac814e;hpb=901efa07db3ebe8deb9b565ba7aafede01023d25;p=elisp%2Fgnus.git- diff --git a/aclocal.m4 b/aclocal.m4 index c3a9953..fd52950 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -125,9 +125,9 @@ AC_DEFUN(AC_PATH_ETCDIR, [ AC_ARG_WITH(etcdir,[ --with-etcdir=DIR Where to install etc files], etcdir=${withval}) AC_MSG_CHECKING([where etc files should go]) if test -z "$etcdir"; then - dnl Set default value + dnl Set default value. if test "$EMACS_FLAVOR" = "xemacs"; then - etcdir="\$(lispdir)/../etc/gnus" + etcdir="\$(lispdir)/../../etc" else etcdir="\$(lispdir)/../etc" fi @@ -136,6 +136,27 @@ AC_DEFUN(AC_PATH_ETCDIR, [ AC_SUBST(etcdir) ]) +dnl +dnl This is a bit on the "evil hack" side of things. It is so we can +dnl have a different default infodir for XEmacs. A user can still specify +dnl someplace else with '--infodir=DIR'. +dnl +AC_DEFUN(AC_PATH_INFO_DIR, [ + AC_MSG_CHECKING([where the TeXinfo docs should go]) + dnl Set default value. This must be an absolute path. + if test "$infodir" = "\${prefix}/info"; then + if test "$EMACS_FLAVOR" = "xemacs"; then + info_dir="\$(prefix)/${thedir}/${EMACS_FLAVOR}/site-packages/info" + else + info_dir="\$(prefix)/info" + fi + else + info_dir=$infodir + fi + AC_MSG_RESULT($info_dir) + AC_SUBST(info_dir) +]) + dnl dnl Check whether a function exists in a library dnl All '_' characters in the first argument are converted to '-'