Hi
I looked a little bit into the "help wanted" list... so
I tried
libZTL on freebsd and MacOS X
freebsd (5.3) --> configure and compile is fine
MacOS X (10.2 from compile farm) --> -shared is unknown
Well... probably the use of libtool would solve your
problem
here (at least my own project 'dgc' compiles on MacOS X
with libtool). But as far as I know, this also
requires the use of
automake. So you have to write a Makefile.am (which has
a different syntax than the existing Makefile.in)
After this, configure.am will need
AM_INIT_AUTOMAKE([projectname], [version])
and also
AC_PROG_LIBTOOL
regards, Oli