89d57436da
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
28 lines
665 B
Plaintext
28 lines
665 B
Plaintext
AC_INIT
|
|
AC_CANONICAL_HOST
|
|
AC_CANONICAL_TARGET
|
|
|
|
AC_PROG_CC
|
|
AC_PROG_CXX
|
|
|
|
dnl------------ libtool configuration
|
|
dnl Enable building of the convenience library
|
|
dnl and set LIBLTDL accordingly
|
|
AC_LIBLTDL_CONVENIENCE
|
|
dnl Substitute INCLTDL and LIBLTDL in the Makefiles
|
|
AC_SUBST(INCLTDL)
|
|
AC_SUBST(LIBLTDL)
|
|
dnl Prepare to make DLLs
|
|
AC_LIBTOOL_WIN32_DLL
|
|
dnl Check for dlopen support
|
|
AC_LIBTOOL_DLOPEN
|
|
dnl Configure libtool
|
|
AC_PROG_LIBTOOL
|
|
dnl Configure libltdl
|
|
AC_CONFIG_SUBDIRS(libltdl)
|
|
|
|
LT_LDFLAGS=
|
|
AC_SUBST(LT_LDFLAGS)
|
|
|
|
AC_OUTPUT(config.h Makefile test1-static/Makefile test2-dynamic/Makefile test3-twomodules/Makefile test4-interdep/Makefile test5-execsymbols/Makefile)
|