12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- dnl The funny name of this file is intentional in order to make it
- dnl sort alphabetically after any libtool, autoconf or automake
- dnl provided .m4 macro file that might get copied into this same
- dnl subdirectory. This allows that macro (re)definitions from this
- dnl file may override those provided in other files.
- dnl Override an autoconf provided macro
- dnl -------------------------------------------------
- dnl This macro overrides the one provided by autoconf
- dnl 2.58 or newer, and provides macro definition for
- dnl autoconf 2.57 or older which lack it. This allows
- dnl using libtool 2.2 or newer, which requires that
- dnl this macro is used in configure.ac, with autoconf
- dnl 2.57 or older.
- m4_ifdef([AC_CONFIG_MACRO_DIR],
- [dnl
- m4_undefine([AC_CONFIG_MACRO_DIR])dnl
- ])
- m4_define([AC_CONFIG_MACRO_DIR],[])
- dnl XC_OVR_ZZ60
- dnl -------------------------------------------------
- dnl Placing a call to this macro in configure.ac will
- dnl make macros in this file visible to other macros
- dnl used for same configure script, overriding those
- dnl provided elsewhere.
- AC_DEFUN([XC_OVR_ZZ60],
- [dnl
- AC_BEFORE([$0],[LT_INIT])dnl
- AC_BEFORE([$0],[AM_INIT_AUTOMAKE])dnl
- AC_BEFORE([$0],[AC_LIBTOOL_WIN32_DLL])dnl
- AC_BEFORE([$0],[AC_PROG_LIBTOOL])dnl
- dnl
- AC_BEFORE([$0],[AC_CONFIG_MACRO_DIR])dnl
- AC_BEFORE([$0],[AC_CONFIG_MACRO_DIRS])dnl
- ])
|