Skip to content
Snippets Groups Projects
Commit a56287a0 authored by Daniel Koester's avatar Daniel Koester
Browse files

*** empty log message ***

parent 92df9fd4
No related branches found
No related tags found
No related merge requests found
...@@ -68,6 +68,15 @@ enters "configure" followed by "gmake", "gmake install" to install everything. ...@@ -68,6 +68,15 @@ enters "configure" followed by "gmake", "gmake install" to install everything.
c) "configure" AND "configure.in" are included, so that possible installation problems can (hopefully) be corrected without too much trouble. c) "configure" AND "configure.in" are included, so that possible installation problems can (hopefully) be corrected without too much trouble.
V) Platform-dependent problems so far V) Problems so far
Some things are already explained in configure.in, in which I invested most of the work. The order of macros that check for libraries in configure.in is significant. Some combinations simply don't work!
Choosing not to use libtool would require many changes, the first would be to change all "LTLIBRARIES" to "LIBRARIES" in all "Makefile.am"s.
1) mips-sgi-irix6.5:
a) The -lgl and -lGL libraries are required.
b) The -n32 link flag seemed to be necessary for g77 (and thus for all object files!!). This was done using @object_type@ set by configure.
2) i686-suse-linux
a) We used MesaGL and a BLAS lib from the SuSE distribution... The BLAS lib needed -lg2c to function properly.
1)
\ No newline at end of file
...@@ -4,6 +4,7 @@ EXTRA_DIST = DEMO ...@@ -4,6 +4,7 @@ EXTRA_DIST = DEMO
cvs_list=DEMO/CVS DEMO/src/CVS DEMO/src/*/CVS DEMO/src/*/INIT/CVS DEMO/src/*/Macro/CVS ALBERT/src/Common/CVS cvs_list=DEMO/CVS DEMO/src/CVS DEMO/src/*/CVS DEMO/src/*/INIT/CVS DEMO/src/*/Macro/CVS ALBERT/src/Common/CVS
# This target only makes sense for maintainers!!
cvs-clean: cvs-clean:
@echo Fixing package for cvs commit... @echo Fixing package for cvs commit...
find . -name \*~ -exec rm -rf {} \; find . -name \*~ -exec rm -rf {} \;
......
...@@ -117,7 +117,6 @@ else ...@@ -117,7 +117,6 @@ else
AC_MSG_RESULT([No libgltools.a found in ./gltools-2-3]) AC_MSG_RESULT([No libgltools.a found in ./gltools-2-3])
fi) fi)
AC_SUBST(static_libraries)
AC_SUBST(object_type) AC_SUBST(object_type)
AC_SUBST(plotansi_variable_source) AC_SUBST(plotansi_variable_source)
AC_SUBST(plotansi_variable_object) AC_SUBST(plotansi_variable_object)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment