Changes http://wiki.axiom-developer.org/BuildAxiom/diff
--
Dear axiom gurus,
I am updating to Fedora FC5 my FC4 system and tried to compile Axiom from CVS
sources. I had problems with two graphics applications using the static library
libXpm.a.
These are in the catalogs 'src/hyper' and 'src/graph/view2D' where the code was
statically linked against 'libXpm.a' which is no longer provided by FC5. I thus
replaced the static link '${XLIB}/libXpm.a' by '-lXpm' in order to compile.
Since now many codes use dynamic libraries I thing that the modification is
conservative and should work under most systems.
Hope this helps.
Renaud
Here is a diff for view2D:
'
diff -r1.3 Makefile.pamphlet
286c286
< -o ${OUT}/view2D ${XLIB}/libXpm.a $(LDFLAGS)
---
> -o ${OUT}/view2D -lXpm $(LDFLAGS)
'
--
forwarded from http://wiki.axiom-developer.org/[EMAIL PROTECTED]