[BACK]Return to configure.in CVS log [TXT][DIR] Up to [local] / OpenXM / src / kxx

File: [local] / OpenXM / src / kxx / configure.in (download)

Revision 1.9, Mon Sep 19 07:50:02 2016 UTC (7 years, 7 months ago) by takayama
Branch: MAIN
CVS Tags: HEAD
Changes since 1.8: +9 -2 lines

Static link is used for MacOS X.
(cf. otool -L prog,  install_name_tool --change  or --id  do not work well)

dnl  $OpenXM: OpenXM/src/kxx/configure.in,v 1.9 2016/09/19 07:50:02 takayama Exp $
dnl  If you change this file, do not forget to run autoconf and rm .configure_done


AC_INIT(oxmain.c)
AC_PROG_CC
AC_PROG_RANLIB

AC_CHECK_FUNC(socket)
if test "$ac_cv_func_socket" = no ; then
  AC_CHECK_LIB(socket,socket)
fi
AC_CHECK_FUNC(gethostbyname)
if test "$ac_cv_func_gethostbyname" = no ; then
  AC_CHECK_LIB(nsl,gethostbyname)
fi
AC_CHECK_FUNC(dlopen)
if test "$ac_cv_func_dlopen" = no ; then
  AC_CHECK_LIB(dl,dlopen)
fi

dnl check if it is MacOS X by heuristic. If so, use static link.
AC_PATH_PROG(MDUTIL,mdutil,none)
if test x"$MDUTIL" = x"none"; then
KANLIB='${KANLIB_SHARED}'
else
KANLIB='${KANLIB_STATIC}'
fi
AC_SUBST(KANLIB,[$KANLIB])

AC_OUTPUT(Makefile)