Bryce Denney 89d57436da - add configure support, since I'm starting to need different options
on different platforms

Modified Files:
  Makefile test1-static/Makefile test2-dynamic/Makefile
  test3-twomodules/Makefile test4-interdep/Makefile
  test5-execsymbols/Makefile
Added Files:
  Makefile.in aclocal.m4 config.guess config.h.in config.sub
  configure configure.in install-sh ltmain.sh
  test1-static/Makefile.in test2-dynamic/Makefile.in
  test3-twomodules/Makefile.in test4-interdep/Makefile.in
  test5-execsymbols/Makefile.in
2002-10-11 18:15:27 +00:00
..

test4-interdep

Can one module reference objects in another module? Yes.

module1 exports module_name and operate(int,int).
module2 exports n_operations and operation_occurred().

uselib.cc uses symbols and functions from both modules.
Module1 calls operation_occurred() in module2.

To do this, module2 must be built first.  Then module1 is linked
against module2 so that the missing symbols are available.  Then,
uselib is linked against both.

This shows that we can chain libraries.  I haven't seen any way to
resolve a circular dependency, where mod1 depends on mod2 and vice 
versa, in win32 DLLs.  Probably those are not supported.