Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
alberta3
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor 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
ians-nmh-siebert
alberta
alberta3
Commits
dfbd1846
Commit
dfbd1846
authored
21 years ago
by
Claus-Justus Heine
Browse files
Options
Downloads
Patches
Plain Diff
Check for tar and gzip and copy DEMO/-directory in case of a VPATH build.
parent
b5009af7
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
configure.ac
+11
-2
11 additions, 2 deletions
configure.ac
with
11 additions
and
2 deletions
configure.ac
+
11
−
2
View file @
dfbd1846
...
...
@@ -36,6 +36,8 @@ AC_PREFIX_DEFAULT([`pwd`])
# Checks for programs.
AC_PROG_INSTALL
AC_PROG_LN_S
AC_CHECK_PROGS([GZIP],[gzip])
AC_CHECK_PROGS([TAR],[gtar tar])
# Compiler characteristics
dnl
...
...
@@ -85,7 +87,7 @@ dnl set default debugging flags, but allow for user-override
dnl
if test -z "${ALBERTA_DEBUG_CFLAGS}"; then
if test "$GCC" = yes; then
ALBERTA_DEBUG_CFLAGS="-ggdb -fno-inline -fno-builtin"
ALBERTA_DEBUG_CFLAGS="
-O0
-ggdb -fno-inline -fno-builtin"
else
ALBERTA_DEBUG_CFLAGS="-g"
fi
...
...
@@ -247,7 +249,7 @@ dnl NOTA BENE: using NEIGH_IN_EL=1 is probably buggy.], 0)
# Debugging
#
SIMPLE_ENABLE_FLAG([debug], [disable building of ALBERTA libraries with debugging information.], 1)
-
# building of parametric versions is disabled by default, but can be
# enabled using --enable-DIMDIMOFWORLD-dimension switches (the macros
# below do _not_ enable the builds, but simply implement
...
...
@@ -263,6 +265,13 @@ ALBERTA_DIMENSION_ENABLE(1,2)
ALBERTA_DIMENSION_ENABLE(1,3)
ALBERTA_DIMENSION_ENABLE(2,3)
AC_CONFIG_COMMANDS_POST([
if ! test "$srcdir" = \. ; then
AC_MSG_RESULT([Copying $srcdir/DEMO to current directory])
( cd $srcdir && tar cf - DEMO ) | tar xf -
rm -rf `find DEMO -name CVS`
fi])
#
# flush everything to disk
#
...
...
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