--- trunk/configure.ac 2012/04/13 23:52:32 1841 +++ trunk/configure.ac 2012/04/14 00:39:22 1842 @@ -32,6 +32,14 @@ AC_PROG_INSTALL AC_PROG_MAKE_SET +dnl FIXME: this works for now, but we should probably switch to libtool +dnl +AC_PATH_PROG(LD, [ld], [none]) +if test x$LD = xnone ; then + AC_MSG_ERROR([cannot find ld command]) +fi +AC_SUBST(LD) + dnl check for c99 support dnl AC_PROG_CC_C99