|
Server : Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 System : Linux localhost 2.6.18-419.el5 #1 SMP Fri Feb 24 22:47:42 UTC 2017 x86_64 User : nobody ( 99) PHP Version : 5.2.17 Disable Function : NONE Directory : /proc/21573/root/usr/share/aclocal-1.4/ |
Upload File : |
## ------------------------
## Emacs LISP file handling
## From Ulrich Drepper
## ------------------------
# serial 1
AC_DEFUN([AM_PATH_LISPDIR],
[# If set to t, that means we are running in a shell under Emacs.
# If you have an Emacs named "t", then use the full path.
test "$EMACS" = t && EMACS=
AC_PATH_PROGS(EMACS, emacs xemacs, no)
if test $EMACS != "no"; then
AC_MSG_CHECKING([where .elc files should go])
dnl Set default value
lispdir="\$(datadir)/emacs/site-lisp"
emacs_flavor=`echo "$EMACS" | sed -e 's,^.*/,,'`
if test "x$prefix" = "xNONE"; then
if test -d $ac_default_prefix/share/$emacs_flavor/site-lisp; then
lispdir="\$(prefix)/share/$emacs_flavor/site-lisp"
else
if test -d $ac_default_prefix/lib/$emacs_flavor/site-lisp; then
lispdir="\$(prefix)/lib/$emacs_flavor/site-lisp"
fi
fi
else
if test -d $prefix/share/$emacs_flavor/site-lisp; then
lispdir="\$(prefix)/share/$emacs_flavor/site-lisp"
else
if test -d $prefix/lib/$emacs_flavor/site-lisp; then
lispdir="\$(prefix)/lib/$emacs_flavor/site-lisp"
fi
fi
fi
AC_MSG_RESULT($lispdir)
fi
AC_SUBST(lispdir)])