Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-istl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
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
Core Modules
dune-istl
Commits
4f58599a
Commit
4f58599a
authored
21 years ago
by
Thimo Neubauer
Browse files
Options
Downloads
Patches
Plain Diff
removed most of the functionality because the applications should do
the tests [[Imported from SVN: r8]]
parent
01ebd69e
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
autogen.sh
+8
-2
8 additions, 2 deletions
autogen.sh
configure.ac
+4
-44
4 additions, 44 deletions
configure.ac
with
12 additions
and
46 deletions
autogen.sh
+
8
−
2
View file @
4f58599a
...
...
@@ -7,9 +7,15 @@ set -e
# prepare everything
echo
"--> aclocal..."
aclocal
echo
"--> autoheader..."
autoheader
# applications should provide a config.h for now
#echo "--> autoheader..."
#autoheader
echo
"--> automake..."
automake
--add-missing
echo
"--> autoconf..."
autoconf
echo
"files successfully created, please run ./configure now"
\ No newline at end of file
This diff is collapsed.
Click to expand it.
configure.ac
+
4
−
44
View file @
4f58599a
# $Id$
# Process this file with autoconf to produce a configure script.
AC_INIT(
D
une, 0.0, dune@hal.iwr.uni-heidelberg.de)
AM_INIT_AUTOMAKE(
D
une, 0.0, dune@hal.iwr.uni-heidelberg.de)
AC_INIT(
d
une, 0.0, dune@hal.iwr.uni-heidelberg.de)
AM_INIT_AUTOMAKE(
d
une, 0.0, dune@hal.iwr.uni-heidelberg.de)
AC_CONFIG_SRCDIR([grid/common/grid.hh])
AM_CONFIG_HEADER(common/config.hh)
## extra options
AC_ARG_WITH(dim,
AC_HELP_STRING([--with-dim=[2|3]],[which dimension to use in Albert/UG-libs]),,
with_dim=2)
AC_SUBST(LIBDIM, $with_dim)
# Checks for programs.
AC_PROG_CXX
AC_PROG_CC
# Checks for the right compiler
if test x$GCC = xyes ; then
if "$CC" --version | grep '^2\.' 1>/dev/null 2>&1; then
AC_MSG_ERROR([you are using g++ 2.x, please upgrade to g++ 3.x
if you have installed different compilers you can specify one
by setting the environment variables CXX und CC.
])
fi
fi
# stuff we need for the dune-headers
# !!! add warnings if something can't be found
# Checks for libraries.
AC_CHECK_LIB([m], [pow])
# Checks for header files.
AC_HEADER_STDC
AC_CHECK_HEADERS([malloc.h stdlib.h string.h])
# Checks for typedefs, structures, and compiler characteristics.
AC_HEADER_STDBOOL
AC_C_CONST
AC_C_INLINE
AC_TYPE_SIZE_T
# Checks for library functions.
AC_FUNC_MALLOC
AC_FUNC_REALLOC
AC_CHECK_FUNCS([pow sqrt])
# do almost nothing, an application using Dune should provide the
# checks (use the macro provided in m4/dune.m4 to do this)
# write output
AC_CONFIG_FILES([Makefile
...
...
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