Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
lsh
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LSH
lsh
Commits
f43a620e
Commit
f43a620e
authored
25 years ago
by
Niels Möller
Browse files
Options
Downloads
Patches
Plain Diff
* configure.in (M4): Check for m4, and m4 handling eight-bit quote
characters. Rev: configure.in:1.39
parent
2cbe258c
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
configure.in
+19
-3
19 additions, 3 deletions
configure.in
with
19 additions
and
3 deletions
configure.in
+
19
−
3
View file @
f43a620e
...
@@ -121,6 +121,10 @@ AC_PROG_MAKE_SET
...
@@ -121,6 +121,10 @@ AC_PROG_MAKE_SET
AC_PROG_RANLIB
AC_PROG_RANLIB
AM_PROG_CC_STDC
AM_PROG_CC_STDC
if test x$am_cv_prog_cc_stdc = xno ; then
AC_ERROR([the C compiler doesn't handle ANSI-C])
fi
# Use a particular scheme implementation?
# Use a particular scheme implementation?
if test x$with_scheme != x ; then
if test x$with_scheme != x ; then
AC_PATH_PROG(SCHEME_PROGRAM, $with_scheme,, $PATH)
AC_PATH_PROG(SCHEME_PROGRAM, $with_scheme,, $PATH)
...
@@ -138,9 +142,21 @@ AC_SUBST(SCHEME_NAME)
...
@@ -138,9 +142,21 @@ AC_SUBST(SCHEME_NAME)
AC_PATH_PROG(BASH, bash,, $PATH)
AC_PATH_PROG(BASH, bash,, $PATH)
AC_PATH_PROG(GROFF, groff,, $PATH)
AC_PATH_PROG(GROFF, groff,, $PATH)
AC_PATH_PROG(M4, m4, m4)
if test x$am_cv_prog_cc_stdc = xno ; then
AC_CACHE_CHECK([if m4 can handle eight-bit quote characters],
AC_ERROR([the C compiler doesn't handle ANSI-C])
lsh_cv_prog_m4_quote_8bit,
[ if test xfoo = x`echo 'change''quote(,)foo' | $M4`; then
lsh_cv_prog_m4_quote_8bit=yes
else
lsh_cv_prog_m4_quote_8bit=no
fi])
if test x$lsh_cv_prog_m4_quote_8bit = xno; then
AC_MSG_WARN(
[Upgrade to a better version than GNU m4 1.4,
or recompile it with CFLAGS=-funsigned-char.])
M4=false --
fi
fi
dnl Checks for libraries.
dnl Checks for libraries.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment