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
c0894228
Commit
c0894228
authored
18 years ago
by
Daniel Koester
Browse files
Options
Downloads
Patches
Plain Diff
Advances on the interface ALBERTA-Open DX (see file dxtools.c)
parent
3079eeed
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
MAINTENANCE
+3
-0
3 additions, 0 deletions
MAINTENANCE
Makefile.am.template
+4
-0
4 additions, 0 deletions
Makefile.am.template
README
+25
-2
25 additions, 2 deletions
README
configure.ac
+13
-3
13 additions, 3 deletions
configure.ac
with
45 additions
and
5 deletions
MAINTENANCE
+
3
−
0
View file @
c0894228
...
@@ -107,6 +107,9 @@ installation, the file alberta/src/Common/gltools.c is included in the ALBERTA
...
@@ -107,6 +107,9 @@ installation, the file alberta/src/Common/gltools.c is included in the ALBERTA
libraries. The user can specify the path of an already installed
libraries. The user can specify the path of an already installed
gltools-package as a "configure" option, see INSTALL.
gltools-package as a "configure" option, see INSTALL.
Same thing applies for Open DX which is used for online visualization
via the alberta/src/Common/dxtools.c interface.
IV) Checking into Subversion directory tree
IV) Checking into Subversion directory tree
====================================
====================================
...
...
This diff is collapsed.
Click to expand it.
Makefile.am.template
+
4
−
0
View file @
c0894228
...
@@ -17,3 +17,7 @@ nodist_libalberta2%LIBCODE%_la_SOURCES = $(sources)
...
@@ -17,3 +17,7 @@ nodist_libalberta2%LIBCODE%_la_SOURCES = $(sources)
if
HAVE_GLTOOLS
if
HAVE_GLTOOLS
nodist_libalberta2%LIBCODE%
_la_SOURCES
+=
../Common/gltools.c
nodist_libalberta2%LIBCODE%
_la_SOURCES
+=
../Common/gltools.c
endif
endif
if
HAVE_DX
nodist_libalberta2%LIBCODE%
_la_SOURCES
+=
../Common/dxtools.c
endif
This diff is collapsed.
Click to expand it.
README
+
25
−
2
View file @
c0894228
...
@@ -17,6 +17,7 @@ II. External Packages (both required and optional packages)
...
@@ -17,6 +17,7 @@ II. External Packages (both required and optional packages)
gltools
gltools
GRAPE
GRAPE
Silo
Silo
Open DX
alternate compilers
alternate compilers
III. Configure Options
III. Configure Options
...
@@ -170,6 +171,17 @@ gltools -- OpenGL toolkit
...
@@ -170,6 +171,17 @@ gltools -- OpenGL toolkit
NOTE: you need at least gltools-2-4. Version 2-3 will _not_
NOTE: you need at least gltools-2-4. Version 2-3 will _not_
work. "configure" does not check for right version, it's up to
work. "configure" does not check for right version, it's up to
yourself.
yourself.
dxtools -- Open DX toolkit
The dxtools are an interface to the Open DX visualization software.
It may be downloaded from
http://www.opendx.org/
The visualization features are far more advanced than gltools,
however Open DX is a huge project that takes time getting used to.
The dxtools interface was designed to keep things simple and
intuitive.
GRAPE -- Graphics Programming Environment
GRAPE -- Graphics Programming Environment
If GRAPE is present, the four programs alberta_grape22,
If GRAPE is present, the four programs alberta_grape22,
...
@@ -290,8 +302,7 @@ following options:
...
@@ -290,8 +302,7 @@ following options:
--without-PKG
--without-PKG
Prohibit the use of this package, even if it is installed on
Prohibit the use of this package, even if it is installed on
your system. Obviously, this affects only the two optional
your system.
packages "gltools" and "GRAPE" .
--with-PKG-name=NAME
--with-PKG-name=NAME
Alter the default name of the package,
Alter the default name of the package,
...
@@ -350,6 +361,18 @@ notation (e.g. PREFIX, EPREFIX etc.).
...
@@ -350,6 +361,18 @@ notation (e.g. PREFIX, EPREFIX etc.).
--with-gltools-headers=DIR
--with-gltools-headers=DIR
use gltools include files below directory DIR
use gltools include files below directory DIR
(default: PREFIX/include/)
(default: PREFIX/include/)
--without-dx disable use of package dx (default: autodetect)
--with-dx-name=NAME
use NAME as the name of the dx library (without
leading "lib" prefix and trailing suffix). Default:
"dx"
--with-dx-dir=DIR use dx library (and headers) below directory
DIR (no default)
--with-dx-lib=DIR use dx library below directory DIR (default:
EPREFIX/lib/)
--with-dx-headers=DIR
use dx include files below directory DIR
(default: PREFIX/include/)
--without-grape disable use of package grape (default: autodetect)
--without-grape disable use of package grape (default: autodetect)
--with-grape-name=NAME use NAME as the name of the grape library (without
--with-grape-name=NAME use NAME as the name of the grape library (without
leading "lib" prefix and trailing suffix). Default:
leading "lib" prefix and trailing suffix). Default:
...
...
This diff is collapsed.
Click to expand it.
configure.ac
+
13
−
3
View file @
c0894228
# Process this file with autoconf to produce a configure script.
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.59)
AC_PREREQ(2.59)
AC_INIT([alberta2], [2.0], [claus@mathematik.uni-freiburg.de,ko
e
ster
@math.uni-augsburg.de
])
AC_INIT([alberta2], [2.0], [claus@mathematik.uni-freiburg.de,koster
dtp@ewi.uwente.nl
])
AC_CONFIG_SRCDIR([alberta/src/Common/alberta.h])
AC_CONFIG_SRCDIR([alberta/src/Common/alberta.h])
AM_MAINTAINER_MODE
AM_MAINTAINER_MODE
...
@@ -254,6 +254,16 @@ dnl check for optional package gltools
...
@@ -254,6 +254,16 @@ dnl check for optional package gltools
dnl
dnl
ALBERTA_CHECK_PACKAGE(gltools, gltools, ,${OPENGL_ALL_LIB} ${X_ALL_LIBS}, glmesh.h,,,optional)
ALBERTA_CHECK_PACKAGE(gltools, gltools, ,${OPENGL_ALL_LIB} ${X_ALL_LIBS}, glmesh.h,,,optional)
dnl
dnl check for optional package dx
dnl
ALBERTA_CHECK_PACKAGE(dx, DXL, ,-lrt -lDXcallm,dx/dx.h,,,optional)
if test -n "${HAVE_DX_FALSE}"; then
AC_CHECK_HEADERS([unistd.h errno.h Xm/Xm.h Xm/Form.h Xm/DrawingA.h pthread.h],,
[AC_MSG_ERROR([Sorry, needed for dxtools, exiting...])])
fi
dnl
dnl
dnl GRAPE interface stuff
dnl GRAPE interface stuff
dnl
dnl
...
@@ -268,7 +278,7 @@ dnl
...
@@ -268,7 +278,7 @@ dnl
dnl Geomview interface, should not depend on any other installed
dnl Geomview interface, should not depend on any other installed
dnl library, just a conversion tool.
dnl library, just a conversion tool.
dnl
dnl
AM_CONDITIONAL(GEOMVIEW,
tru
e)
AM_CONDITIONAL(GEOMVIEW,
fals
e)
dnl
dnl
dnl Debugging
dnl Debugging
...
@@ -299,4 +309,4 @@ ALBERTA_DIMENSION_DISABLE(3)
...
@@ -299,4 +309,4 @@ ALBERTA_DIMENSION_DISABLE(3)
#
#
# flush everything to disk
# flush everything to disk
#
#
AC_OUTPUT
AC_OUTPUT
\ No newline at end of file
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