pkgsrc-wip/gtkada/TODO
Dieter Baron 5b4276e530 mk/autoconf.mk and mk/automake.mk have been removed. Replace their
usage with USE_TOOLS and any of "autoconf", "autoconf213", "automake"
or "automake14".  Also, we don't need to call the auto* tools via
${ACLOCAL}, ${AUTOCONF}, etc., since the tools framework takes care
to symlink the correct tool to the correct name, so we can just
use aclocal, autoconf, etc.  (hi jlam!)
2005-06-08 15:46:59 +00:00

13 lines
845 B
Text

- The software library builds, however, I'm encountering
an error while linking the test driver:
gnatlink -o gate-in.exe -L. -lgtkada -Wl,-R/usr/pkg/lib -Wl,--export-dynamic -L/usr/pkg/lib -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lpangoxft-1.0 -lpangox-1.0 -lpango-1.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl -lm -lgcc gate.ali
/usr/bin/ld: gate-in.exe: hidden symbol `__enable_execute_stack' in /usr/pkg/gcc3/lib/gcc-lib/i386--netbsdelf2.0/3.3.2/libgcc.a(_trampoline.oS) is referenced by DSO
The comments in src/gnu/dist/binutils/bfd/elflink.h indicate that
this error message means that __enable_execute_stack is being called
from a shared library. The library, libgcc.a, is a static
library. The procedure, __enable_execute_stack, is called as part of
its initialialization.
- convert to options framework