* configure.in: Invoke AC_FUNC_OBSTACK and AC_FUNC_ERROR_AT_LINE.

* lib/Makefile.am (libbison_a_SOURCES): Adjust.
This commit is contained in:
Akim Demaille
2001-11-26 09:19:56 +00:00
parent 1b9a8440cd
commit cd7f95831e
7 changed files with 125 additions and 15 deletions

View File

@@ -211,9 +211,9 @@ skeleton_find (const char *envvar, const char *skeleton_name)
if (!res)
{
/* Skeleton file name without path */
const char *skel_name = strrchr(skeleton_name, '/');
const char *skel_name = strrchr (skeleton_name, '/');
if (!skel_name)
skel_name = strrchr(skeleton_name, '\\');
skel_name = strrchr (skeleton_name, '\\');
if (!skel_name)
skel_name = skeleton_name;
else