Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISC Open Source Projects
BIND
Commits
3b77946b
Commit
3b77946b
authored
Jan 17, 2001
by
Bob Halley
Browse files
check for Exuberant Ctags etags
parent
5c7d67e3
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
3b77946b
688. [func] "make tags" now works on systems with the
"Exuberant Ctags" etags.
687. [bug] Only say we have IPv6, with sufficent functionality,
687. [bug] Only say we have IPv6, with sufficent functionality,
if it has actually been tested. [RT #586]
if it has actually been tested. [RT #586]
...
...
configure
View file @
3b77946b
This diff is collapsed.
Click to expand it.
configure.in
View file @
3b77946b
...
@@ -18,7 +18,7 @@ AC_DIVERT_PUSH(AC_DIVERSION_NOTICE)dnl
...
@@ -18,7 +18,7 @@ AC_DIVERT_PUSH(AC_DIVERSION_NOTICE)dnl
esyscmd([sed "s/^/# /" COPYRIGHT])dnl
esyscmd([sed "s/^/# /" COPYRIGHT])dnl
AC_DIVERT_POP()dnl
AC_DIVERT_POP()dnl
AC_REVISION($Revision: 1.21
3
$)
AC_REVISION($Revision: 1.21
4
$)
AC_INIT(lib/dns/name.c)
AC_INIT(lib/dns/name.c)
AC_PREREQ(2.13)
AC_PREREQ(2.13)
...
@@ -56,7 +56,23 @@ which ar resides, or set AR in the environment with the full path to ar.
...
@@ -56,7 +56,23 @@ which ar resides, or set AR in the environment with the full path to ar.
;;
;;
esac
esac
#
# Etags.
#
AC_PATH_PROGS(ETAGS, etags emacs-etags)
AC_PATH_PROGS(ETAGS, etags emacs-etags)
#
# Some systems, e.g. RH7, have the Exuberant Ctags etags instead of
# GNU emacs etags, and it requires the -L flag.
#
if test "X$ETAGS" != "X"; then
AC_MSG_CHECKING(for Exuberant Ctags etags)
if $ETAGS --version 2>&1 | grep 'Exuberant Ctags' >/dev/null 2>&1; then
AC_MSG_RESULT(yes)
ETAGS="$ETAGS -L"
else
AC_MSG_RESULT(no)
fi
fi
AC_SUBST(ETAGS)
AC_SUBST(ETAGS)
#
#
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment