Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
preprocessor
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
Normann Rion
preprocessor
Commits
f4b95d3a
Verified
Commit
f4b95d3a
authored
Mar 25, 2019
by
Sébastien Villemot
Browse files
Options
Downloads
Patches
Plain Diff
POSIX shell stylistic improvements
parent
fd6e700e
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.ac
+9
-9
9 additions, 9 deletions
configure.ac
with
9 additions
and
9 deletions
configure.ac
+
9
−
9
View file @
f4b95d3a
...
@@ -56,10 +56,10 @@ AM_PROG_AR
...
@@ -56,10 +56,10 @@ AM_PROG_AR
AM_PROG_LEX
AM_PROG_LEX
# Hack to get lex include dir, ticket #575
# Hack to get lex include dir, ticket #575
AC_PATH_PROG([LEXPATH], [$LEX])
AC_PATH_PROG([LEXPATH], [$LEX])
AC_SUBST([LEXINC], [
`
eval "echo $LEXPATH | sed 's|\(.*\)$LEX$|\1../include|'"
`
])
AC_SUBST([LEXINC], [
$(
eval "echo $LEXPATH | sed 's|\(.*\)$LEX$|\1../include|'"
)
])
AC_CHECK_PROG([YACC], [bison], [bison])
AC_CHECK_PROG([YACC], [bison], [bison])
if test "
x
$YACC"
= "x"
; then
if test
-z
"$YACC"; then
unset YACC # AM_MISSING_PROG needs an unset variable: an empty variable won't do
unset YACC # AM_MISSING_PROG needs an unset variable: an empty variable won't do
AM_MISSING_PROG([YACC], [bison])
AM_MISSING_PROG([YACC], [bison])
fi
fi
...
@@ -80,18 +80,18 @@ CPPFLAGS="$CPPFLAGS_SAVED"
...
@@ -80,18 +80,18 @@ CPPFLAGS="$CPPFLAGS_SAVED"
AC_DEFINE([BOOST_NO_HASH], [], [Don't use deprecated STL hash structures])
AC_DEFINE([BOOST_NO_HASH], [], [Don't use deprecated STL hash structures])
AC_CHECK_PROG([DOXYGEN], [doxygen], [doxygen])
AC_CHECK_PROG([DOXYGEN], [doxygen], [doxygen])
AM_CONDITIONAL([HAVE_DOXYGEN], [test "
x
$DOXYGEN"
!= "x"
])
AM_CONDITIONAL([HAVE_DOXYGEN], [test
-n
"$DOXYGEN"])
AC_CHECK_PROG([PDFLATEX], [pdflatex], [pdflatex])
AC_CHECK_PROG([PDFLATEX], [pdflatex], [pdflatex])
AM_CONDITIONAL([HAVE_PDFLATEX], [test "
x
$PDFLATEX"
!= "x"
])
AM_CONDITIONAL([HAVE_PDFLATEX], [test
-n
"$PDFLATEX"])
AC_CHECK_PROG([BIBTEX], [bibtex], [bibtex])
AC_CHECK_PROG([BIBTEX], [bibtex], [bibtex])
AM_CONDITIONAL([HAVE_BIBTEX], [test "
x
$BIBTEX"
!= "x"
])
AM_CONDITIONAL([HAVE_BIBTEX], [test
-n
"$BIBTEX"])
if test "
x
$PDFLATEX"
!= "x"
-a "
x
$BIBTEX"
!= "x"
; then
if test
-n
"$PDFLATEX" -a
-n
"$BIBTEX"; then
AX_LATEX_CLASS([beamer], [ax_latex_have_beamer])
AX_LATEX_CLASS([beamer], [ax_latex_have_beamer])
fi
fi
AM_CONDITIONAL([HAVE_BEAMER], [test "
x
$ax_latex_have_beamer" =
"x
yes
"
])
AM_CONDITIONAL([HAVE_BEAMER], [test "$ax_latex_have_beamer" = yes])
AC_CONFIG_FILES([Makefile
AC_CONFIG_FILES([Makefile
src/Makefile
src/Makefile
...
@@ -101,14 +101,14 @@ AC_CONFIG_FILES([Makefile
...
@@ -101,14 +101,14 @@ AC_CONFIG_FILES([Makefile
doc/macroprocessor/Makefile
doc/macroprocessor/Makefile
])
])
if test "
x
$DOXYGEN"
!= "x"
; then
if test
-n
"$DOXYGEN"; then
BUILD_DYNARE_PREPROC_DOC="yes"
BUILD_DYNARE_PREPROC_DOC="yes"
else
else
BUILD_DYNARE_PREPROC_DOC="no (missing doxygen)"
BUILD_DYNARE_PREPROC_DOC="no (missing doxygen)"
fi
fi
if test "
x
$PDFLATEX"
!= "x"
-a "
x
$ax_latex_have_beamer" =
"x
yes
"
; then
if test
-n
"$PDFLATEX" -a "$ax_latex_have_beamer" = yes; then
BUILD_BEAMER_DOC="yes"
BUILD_BEAMER_DOC="yes"
else
else
BUILD_BEAMER_DOC="no (missing one of: pdflatex, beamer)"
BUILD_BEAMER_DOC="no (missing one of: pdflatex, beamer)"
...
...
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