Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-common
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Timo Koch
dune-common
Commits
a49dfa9d
Commit
a49dfa9d
authored
16 years ago
by
Christian Engwer
Browse files
Options
Downloads
Patches
Plain Diff
better status output
[[Imported from SVN: r5168]]
parent
0cbf45a6
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
m4/dune.m4
+4
-4
4 additions, 4 deletions
m4/dune.m4
m4/dune_all.m4
+10
-1
10 additions, 1 deletion
m4/dune_all.m4
with
14 additions
and
5 deletions
m4/dune.m4
+
4
−
4
View file @
a49dfa9d
#! /bin/sh
#! /bin/sh
# $Id$
# $Id
: dune.m4 5163 2008-04-21 13:50:27Z christi
$
# checks for dune-headers and everything they need
# checks for dune-headers and everything they need
# TODO
# TODO
...
@@ -29,7 +29,7 @@ AC_DEFUN([DUNE_PKG_CONFIG_REQUIRES],[
...
@@ -29,7 +29,7 @@ AC_DEFUN([DUNE_PKG_CONFIG_REQUIRES],[
AC_SUBST
(
REQUIRES,
[
$REQUIRES
])
AC_SUBST
(
REQUIRES,
[
$REQUIRES
])
])
])
AC_DEFUN
([
DUNE_
ADD_
MODULE_SUMMARY_ENTRY],[
AC_DEFUN
([
DUNE_MODULE_
ADD_
SUMMARY_ENTRY],[
m4_pushdef
([
_dune_name],
[
$1
])
m4_pushdef
([
_dune_name],
[
$1
])
m4_pushdef
([
_dune_module],
[
m4_translit
(
_dune_name,
[
-],
[
_]
)])
m4_pushdef
([
_dune_module],
[
m4_translit
(
_dune_name,
[
-],
[
_]
)])
m4_pushdef
([
_DUNE_MODULE],
[
m4_toupper
(
_dune_module
)])
m4_pushdef
([
_DUNE_MODULE],
[
m4_toupper
(
_dune_module
)])
...
@@ -40,7 +40,7 @@ AC_DEFUN([DUNE_ADD_MODULE_SUMMARY_ENTRY],[
...
@@ -40,7 +40,7 @@ AC_DEFUN([DUNE_ADD_MODULE_SUMMARY_ENTRY],[
if
test
"x
$_DUNE_MODULE
[]_VERSION"
!=
"x"
;
then
if
test
"x
$_DUNE_MODULE
[]_VERSION"
!=
"x"
;
then
result
=
"
$result
version
$_DUNE_MODULE
[]_VERSION"
result
=
"
$result
version
$_DUNE_MODULE
[]_VERSION"
fi
fi
DUNE_ADD_SUMMARY_ENTRY
(
_dune_name,[
$result
])
DUNE_ADD_SUMMARY_
MOD_
ENTRY
(
_dune_name,[
$result
])
])
])
AC_DEFUN
([
DUNE_CHECK_MODULES],[
AC_DEFUN
([
DUNE_CHECK_MODULES],[
...
@@ -232,7 +232,7 @@ AC_DEFUN([DUNE_CHECK_MODULES],[
...
@@ -232,7 +232,7 @@ AC_DEFUN([DUNE_CHECK_MODULES],[
LIBS
=
"
$ac_save_LIBS
"
LIBS
=
"
$ac_save_LIBS
"
# add this module to DUNE_SUMMARY
# add this module to DUNE_SUMMARY
DUNE_
ADD_
MODULE_SUMMARY_ENTRY
(
_dune_name
)
DUNE_MODULE_
ADD_
SUMMARY_ENTRY
(
_dune_name
)
# remove local variables
# remove local variables
m4_popdef
([
_dune_name]
)
m4_popdef
([
_dune_name]
)
...
...
This diff is collapsed.
Click to expand it.
m4/dune_all.m4
+
10
−
1
View file @
a49dfa9d
...
@@ -93,6 +93,14 @@ AC_DEFUN([DUNE_ADD_SUMMARY_ENTRY],[
...
@@ -93,6 +93,14 @@ AC_DEFUN([DUNE_ADD_SUMMARY_ENTRY],[
[DUNE_SUMMARY="$DUNE_SUMMARY echo '$txt';"]
[DUNE_SUMMARY="$DUNE_SUMMARY echo '$txt';"]
])
])
AC_DEFUN([DUNE_ADD_SUMMARY_MOD_ENTRY],[
indentlen=17
txt=$1
while test `echo $txt | tr -d '\n' | wc -c` -lt $indentlen; do txt=$txt.; done
txt="$txt: $2"
[DUNE_MODULES_SUMMARY="$DUNE_MODULES_SUMMARY echo '$txt';"]
])
AC_DEFUN([DUNE_SUMMARY_ALL],[
AC_DEFUN([DUNE_SUMMARY_ALL],[
# show search results
# show search results
...
@@ -101,7 +109,8 @@ AC_DEFUN([DUNE_SUMMARY_ALL],[
...
@@ -101,7 +109,8 @@ AC_DEFUN([DUNE_SUMMARY_ALL],[
echo
echo
echo "-----------------------------"
echo "-----------------------------"
echo
echo
[eval $DUNE_SUMMARY]
[(eval $DUNE_MODULES_SUMMARY) | sort]
[(eval $DUNE_SUMMARY) | sort]
echo
echo
echo "-----------------------------"
echo "-----------------------------"
echo
echo
...
...
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