Blame m4/ltoptions.m4

Packit 5e354d
# Helper functions for option handling.                    -*- Autoconf -*-
Packit 5e354d
#
Packit 5e354d
#   Copyright (C) 2004, 2005, 2007, 2008, 2009 Free Software Foundation,
Packit 5e354d
#   Inc.
Packit 5e354d
#   Written by Gary V. Vaughan, 2004
Packit 5e354d
#
Packit 5e354d
# This file is free software; the Free Software Foundation gives
Packit 5e354d
# unlimited permission to copy and/or distribute it, with or without
Packit 5e354d
# modifications, as long as this notice is preserved.
Packit 5e354d
Packit 5e354d
# serial 7 ltoptions.m4
Packit 5e354d
Packit 5e354d
# This is to help aclocal find these macros, as it can't see m4_define.
Packit 5e354d
AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])])
Packit 5e354d
Packit 5e354d
Packit 5e354d
# _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME)
Packit 5e354d
# ------------------------------------------
Packit 5e354d
m4_define([_LT_MANGLE_OPTION],
Packit 5e354d
[[_LT_OPTION_]m4_bpatsubst($1__$2, [[^a-zA-Z0-9_]], [_])])
Packit 5e354d
Packit 5e354d
Packit 5e354d
# _LT_SET_OPTION(MACRO-NAME, OPTION-NAME)
Packit 5e354d
# ---------------------------------------
Packit 5e354d
# Set option OPTION-NAME for macro MACRO-NAME, and if there is a
Packit 5e354d
# matching handler defined, dispatch to it.  Other OPTION-NAMEs are
Packit 5e354d
# saved as a flag.
Packit 5e354d
m4_define([_LT_SET_OPTION],
Packit 5e354d
[m4_define(_LT_MANGLE_OPTION([$1], [$2]))dnl
Packit 5e354d
m4_ifdef(_LT_MANGLE_DEFUN([$1], [$2]),
Packit 5e354d
        _LT_MANGLE_DEFUN([$1], [$2]),
Packit 5e354d
    [m4_warning([Unknown $1 option `$2'])])[]dnl
Packit 5e354d
])
Packit 5e354d
Packit 5e354d
Packit 5e354d
# _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET])
Packit 5e354d
# ------------------------------------------------------------
Packit 5e354d
# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.
Packit 5e354d
m4_define([_LT_IF_OPTION],
Packit 5e354d
[m4_ifdef(_LT_MANGLE_OPTION([$1], [$2]), [$3], [$4])])
Packit 5e354d
Packit 5e354d
Packit 5e354d
# _LT_UNLESS_OPTIONS(MACRO-NAME, OPTION-LIST, IF-NOT-SET)
Packit 5e354d
# -------------------------------------------------------
Packit 5e354d
# Execute IF-NOT-SET unless all options in OPTION-LIST for MACRO-NAME
Packit 5e354d
# are set.
Packit 5e354d
m4_define([_LT_UNLESS_OPTIONS],
Packit 5e354d
[m4_foreach([_LT_Option], m4_split(m4_normalize([$2])),
Packit 5e354d
	    [m4_ifdef(_LT_MANGLE_OPTION([$1], _LT_Option),
Packit 5e354d
		      [m4_define([$0_found])])])[]dnl
Packit 5e354d
m4_ifdef([$0_found], [m4_undefine([$0_found])], [$3
Packit 5e354d
])[]dnl
Packit 5e354d
])
Packit 5e354d
Packit 5e354d
Packit 5e354d
# _LT_SET_OPTIONS(MACRO-NAME, OPTION-LIST)
Packit 5e354d
# ----------------------------------------
Packit 5e354d
# OPTION-LIST is a space-separated list of Libtool options associated
Packit 5e354d
# with MACRO-NAME.  If any OPTION has a matching handler declared with
Packit 5e354d
# LT_OPTION_DEFINE, dispatch to that macro; otherwise complain about
Packit 5e354d
# the unknown option and exit.
Packit 5e354d
m4_defun([_LT_SET_OPTIONS],
Packit 5e354d
[# Set options
Packit 5e354d
m4_foreach([_LT_Option], m4_split(m4_normalize([$2])),
Packit 5e354d
    [_LT_SET_OPTION([$1], _LT_Option)])
Packit 5e354d
Packit 5e354d
m4_if([$1],[LT_INIT],[
Packit 5e354d
  dnl
Packit 5e354d
  dnl Simply set some default values (i.e off) if boolean options were not
Packit 5e354d
  dnl specified:
Packit 5e354d
  _LT_UNLESS_OPTIONS([LT_INIT], [dlopen], [enable_dlopen=no
Packit 5e354d
  ])
Packit 5e354d
  _LT_UNLESS_OPTIONS([LT_INIT], [win32-dll], [enable_win32_dll=no
Packit 5e354d
  ])
Packit 5e354d
  dnl
Packit 5e354d
  dnl If no reference was made to various pairs of opposing options, then
Packit 5e354d
  dnl we run the default mode handler for the pair.  For example, if neither
Packit 5e354d
  dnl `shared' nor `disable-shared' was passed, we enable building of shared
Packit 5e354d
  dnl archives by default:
Packit 5e354d
  _LT_UNLESS_OPTIONS([LT_INIT], [shared disable-shared], [_LT_ENABLE_SHARED])
Packit 5e354d
  _LT_UNLESS_OPTIONS([LT_INIT], [static disable-static], [_LT_ENABLE_STATIC])
Packit 5e354d
  _LT_UNLESS_OPTIONS([LT_INIT], [pic-only no-pic], [_LT_WITH_PIC])
Packit 5e354d
  _LT_UNLESS_OPTIONS([LT_INIT], [fast-install disable-fast-install],
Packit 5e354d
  		   [_LT_ENABLE_FAST_INSTALL])
Packit 5e354d
  ])
Packit 5e354d
])# _LT_SET_OPTIONS
Packit 5e354d
Packit 5e354d
Packit 5e354d
## --------------------------------- ##
Packit 5e354d
## Macros to handle LT_INIT options. ##
Packit 5e354d
## --------------------------------- ##
Packit 5e354d
Packit 5e354d
# _LT_MANGLE_DEFUN(MACRO-NAME, OPTION-NAME)
Packit 5e354d
# -----------------------------------------
Packit 5e354d
m4_define([_LT_MANGLE_DEFUN],
Packit 5e354d
[[_LT_OPTION_DEFUN_]m4_bpatsubst(m4_toupper([$1__$2]), [[^A-Z0-9_]], [_])])
Packit 5e354d
Packit 5e354d
Packit 5e354d
# LT_OPTION_DEFINE(MACRO-NAME, OPTION-NAME, CODE)
Packit 5e354d
# -----------------------------------------------
Packit 5e354d
m4_define([LT_OPTION_DEFINE],
Packit 5e354d
[m4_define(_LT_MANGLE_DEFUN([$1], [$2]), [$3])[]dnl
Packit 5e354d
])# LT_OPTION_DEFINE
Packit 5e354d
Packit 5e354d
Packit 5e354d
# dlopen
Packit 5e354d
# ------
Packit 5e354d
LT_OPTION_DEFINE([LT_INIT], [dlopen], [enable_dlopen=yes
Packit 5e354d
])
Packit 5e354d
Packit 5e354d
AU_DEFUN([AC_LIBTOOL_DLOPEN],
Packit 5e354d
[_LT_SET_OPTION([LT_INIT], [dlopen])
Packit 5e354d
AC_DIAGNOSE([obsolete],
Packit 5e354d
[$0: Remove this warning and the call to _LT_SET_OPTION when you
Packit 5e354d
put the `dlopen' option into LT_INIT's first parameter.])
Packit 5e354d
])
Packit 5e354d
Packit 5e354d
dnl aclocal-1.4 backwards compatibility:
Packit 5e354d
dnl AC_DEFUN([AC_LIBTOOL_DLOPEN], [])
Packit 5e354d
Packit 5e354d
Packit 5e354d
# win32-dll
Packit 5e354d
# ---------
Packit 5e354d
# Declare package support for building win32 dll's.
Packit 5e354d
LT_OPTION_DEFINE([LT_INIT], [win32-dll],
Packit 5e354d
[enable_win32_dll=yes
Packit 5e354d
Packit 5e354d
case $host in
Packit 5e354d
*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-cegcc*)
Packit 5e354d
  AC_CHECK_TOOL(AS, as, false)
Packit 5e354d
  AC_CHECK_TOOL(DLLTOOL, dlltool, false)
Packit 5e354d
  AC_CHECK_TOOL(OBJDUMP, objdump, false)
Packit 5e354d
  ;;
Packit 5e354d
esac
Packit 5e354d
Packit 5e354d
test -z "$AS" && AS=as
Packit 5e354d
_LT_DECL([], [AS],      [1], [Assembler program])dnl
Packit 5e354d
Packit 5e354d
test -z "$DLLTOOL" && DLLTOOL=dlltool
Packit 5e354d
_LT_DECL([], [DLLTOOL], [1], [DLL creation program])dnl
Packit 5e354d
Packit 5e354d
test -z "$OBJDUMP" && OBJDUMP=objdump
Packit 5e354d
_LT_DECL([], [OBJDUMP], [1], [Object dumper program])dnl
Packit 5e354d
])# win32-dll
Packit 5e354d
Packit 5e354d
AU_DEFUN([AC_LIBTOOL_WIN32_DLL],
Packit 5e354d
[AC_REQUIRE([AC_CANONICAL_HOST])dnl
Packit 5e354d
_LT_SET_OPTION([LT_INIT], [win32-dll])
Packit 5e354d
AC_DIAGNOSE([obsolete],
Packit 5e354d
[$0: Remove this warning and the call to _LT_SET_OPTION when you
Packit 5e354d
put the `win32-dll' option into LT_INIT's first parameter.])
Packit 5e354d
])
Packit 5e354d
Packit 5e354d
dnl aclocal-1.4 backwards compatibility:
Packit 5e354d
dnl AC_DEFUN([AC_LIBTOOL_WIN32_DLL], [])
Packit 5e354d
Packit 5e354d
Packit 5e354d
# _LT_ENABLE_SHARED([DEFAULT])
Packit 5e354d
# ----------------------------
Packit 5e354d
# implement the --enable-shared flag, and supports the `shared' and
Packit 5e354d
# `disable-shared' LT_INIT options.
Packit 5e354d
# DEFAULT is either `yes' or `no'.  If omitted, it defaults to `yes'.
Packit 5e354d
m4_define([_LT_ENABLE_SHARED],
Packit 5e354d
[m4_define([_LT_ENABLE_SHARED_DEFAULT], [m4_if($1, no, no, yes)])dnl
Packit 5e354d
AC_ARG_ENABLE([shared],
Packit 5e354d
    [AS_HELP_STRING([--enable-shared@<:@=PKGS@:>@],
Packit 5e354d
	[build shared libraries @<:@default=]_LT_ENABLE_SHARED_DEFAULT[@:>@])],
Packit 5e354d
    [p=${PACKAGE-default}
Packit 5e354d
    case $enableval in
Packit 5e354d
    yes) enable_shared=yes ;;
Packit 5e354d
    no) enable_shared=no ;;
Packit 5e354d
    *)
Packit 5e354d
      enable_shared=no
Packit 5e354d
      # Look at the argument we got.  We use all the common list separators.
Packit 5e354d
      lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
Packit 5e354d
      for pkg in $enableval; do
Packit 5e354d
	IFS="$lt_save_ifs"
Packit 5e354d
	if test "X$pkg" = "X$p"; then
Packit 5e354d
	  enable_shared=yes
Packit 5e354d
	fi
Packit 5e354d
      done
Packit 5e354d
      IFS="$lt_save_ifs"
Packit 5e354d
      ;;
Packit 5e354d
    esac],
Packit 5e354d
    [enable_shared=]_LT_ENABLE_SHARED_DEFAULT)
Packit 5e354d
Packit 5e354d
    _LT_DECL([build_libtool_libs], [enable_shared], [0],
Packit 5e354d
	[Whether or not to build shared libraries])
Packit 5e354d
])# _LT_ENABLE_SHARED
Packit 5e354d
Packit 5e354d
LT_OPTION_DEFINE([LT_INIT], [shared], [_LT_ENABLE_SHARED([yes])])
Packit 5e354d
LT_OPTION_DEFINE([LT_INIT], [disable-shared], [_LT_ENABLE_SHARED([no])])
Packit 5e354d
Packit 5e354d
# Old names:
Packit 5e354d
AC_DEFUN([AC_ENABLE_SHARED],
Packit 5e354d
[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[shared])
Packit 5e354d
])
Packit 5e354d
Packit 5e354d
AC_DEFUN([AC_DISABLE_SHARED],
Packit 5e354d
[_LT_SET_OPTION([LT_INIT], [disable-shared])
Packit 5e354d
])
Packit 5e354d
Packit 5e354d
AU_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)])
Packit 5e354d
AU_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)])
Packit 5e354d
Packit 5e354d
dnl aclocal-1.4 backwards compatibility:
Packit 5e354d
dnl AC_DEFUN([AM_ENABLE_SHARED], [])
Packit 5e354d
dnl AC_DEFUN([AM_DISABLE_SHARED], [])
Packit 5e354d
Packit 5e354d
Packit 5e354d
Packit 5e354d
# _LT_ENABLE_STATIC([DEFAULT])
Packit 5e354d
# ----------------------------
Packit 5e354d
# implement the --enable-static flag, and support the `static' and
Packit 5e354d
# `disable-static' LT_INIT options.
Packit 5e354d
# DEFAULT is either `yes' or `no'.  If omitted, it defaults to `yes'.
Packit 5e354d
m4_define([_LT_ENABLE_STATIC],
Packit 5e354d
[m4_define([_LT_ENABLE_STATIC_DEFAULT], [m4_if($1, no, no, yes)])dnl
Packit 5e354d
AC_ARG_ENABLE([static],
Packit 5e354d
    [AS_HELP_STRING([--enable-static@<:@=PKGS@:>@],
Packit 5e354d
	[build static libraries @<:@default=]_LT_ENABLE_STATIC_DEFAULT[@:>@])],
Packit 5e354d
    [p=${PACKAGE-default}
Packit 5e354d
    case $enableval in
Packit 5e354d
    yes) enable_static=yes ;;
Packit 5e354d
    no) enable_static=no ;;
Packit 5e354d
    *)
Packit 5e354d
     enable_static=no
Packit 5e354d
      # Look at the argument we got.  We use all the common list separators.
Packit 5e354d
      lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
Packit 5e354d
      for pkg in $enableval; do
Packit 5e354d
	IFS="$lt_save_ifs"
Packit 5e354d
	if test "X$pkg" = "X$p"; then
Packit 5e354d
	  enable_static=yes
Packit 5e354d
	fi
Packit 5e354d
      done
Packit 5e354d
      IFS="$lt_save_ifs"
Packit 5e354d
      ;;
Packit 5e354d
    esac],
Packit 5e354d
    [enable_static=]_LT_ENABLE_STATIC_DEFAULT)
Packit 5e354d
Packit 5e354d
    _LT_DECL([build_old_libs], [enable_static], [0],
Packit 5e354d
	[Whether or not to build static libraries])
Packit 5e354d
])# _LT_ENABLE_STATIC
Packit 5e354d
Packit 5e354d
LT_OPTION_DEFINE([LT_INIT], [static], [_LT_ENABLE_STATIC([yes])])
Packit 5e354d
LT_OPTION_DEFINE([LT_INIT], [disable-static], [_LT_ENABLE_STATIC([no])])
Packit 5e354d
Packit 5e354d
# Old names:
Packit 5e354d
AC_DEFUN([AC_ENABLE_STATIC],
Packit 5e354d
[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static])
Packit 5e354d
])
Packit 5e354d
Packit 5e354d
AC_DEFUN([AC_DISABLE_STATIC],
Packit 5e354d
[_LT_SET_OPTION([LT_INIT], [disable-static])
Packit 5e354d
])
Packit 5e354d
Packit 5e354d
AU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)])
Packit 5e354d
AU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)])
Packit 5e354d
Packit 5e354d
dnl aclocal-1.4 backwards compatibility:
Packit 5e354d
dnl AC_DEFUN([AM_ENABLE_STATIC], [])
Packit 5e354d
dnl AC_DEFUN([AM_DISABLE_STATIC], [])
Packit 5e354d
Packit 5e354d
Packit 5e354d
Packit 5e354d
# _LT_ENABLE_FAST_INSTALL([DEFAULT])
Packit 5e354d
# ----------------------------------
Packit 5e354d
# implement the --enable-fast-install flag, and support the `fast-install'
Packit 5e354d
# and `disable-fast-install' LT_INIT options.
Packit 5e354d
# DEFAULT is either `yes' or `no'.  If omitted, it defaults to `yes'.
Packit 5e354d
m4_define([_LT_ENABLE_FAST_INSTALL],
Packit 5e354d
[m4_define([_LT_ENABLE_FAST_INSTALL_DEFAULT], [m4_if($1, no, no, yes)])dnl
Packit 5e354d
AC_ARG_ENABLE([fast-install],
Packit 5e354d
    [AS_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@],
Packit 5e354d
    [optimize for fast installation @<:@default=]_LT_ENABLE_FAST_INSTALL_DEFAULT[@:>@])],
Packit 5e354d
    [p=${PACKAGE-default}
Packit 5e354d
    case $enableval in
Packit 5e354d
    yes) enable_fast_install=yes ;;
Packit 5e354d
    no) enable_fast_install=no ;;
Packit 5e354d
    *)
Packit 5e354d
      enable_fast_install=no
Packit 5e354d
      # Look at the argument we got.  We use all the common list separators.
Packit 5e354d
      lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
Packit 5e354d
      for pkg in $enableval; do
Packit 5e354d
	IFS="$lt_save_ifs"
Packit 5e354d
	if test "X$pkg" = "X$p"; then
Packit 5e354d
	  enable_fast_install=yes
Packit 5e354d
	fi
Packit 5e354d
      done
Packit 5e354d
      IFS="$lt_save_ifs"
Packit 5e354d
      ;;
Packit 5e354d
    esac],
Packit 5e354d
    [enable_fast_install=]_LT_ENABLE_FAST_INSTALL_DEFAULT)
Packit 5e354d
Packit 5e354d
_LT_DECL([fast_install], [enable_fast_install], [0],
Packit 5e354d
	 [Whether or not to optimize for fast installation])dnl
Packit 5e354d
])# _LT_ENABLE_FAST_INSTALL
Packit 5e354d
Packit 5e354d
LT_OPTION_DEFINE([LT_INIT], [fast-install], [_LT_ENABLE_FAST_INSTALL([yes])])
Packit 5e354d
LT_OPTION_DEFINE([LT_INIT], [disable-fast-install], [_LT_ENABLE_FAST_INSTALL([no])])
Packit 5e354d
Packit 5e354d
# Old names:
Packit 5e354d
AU_DEFUN([AC_ENABLE_FAST_INSTALL],
Packit 5e354d
[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install])
Packit 5e354d
AC_DIAGNOSE([obsolete],
Packit 5e354d
[$0: Remove this warning and the call to _LT_SET_OPTION when you put
Packit 5e354d
the `fast-install' option into LT_INIT's first parameter.])
Packit 5e354d
])
Packit 5e354d
Packit 5e354d
AU_DEFUN([AC_DISABLE_FAST_INSTALL],
Packit 5e354d
[_LT_SET_OPTION([LT_INIT], [disable-fast-install])
Packit 5e354d
AC_DIAGNOSE([obsolete],
Packit 5e354d
[$0: Remove this warning and the call to _LT_SET_OPTION when you put
Packit 5e354d
the `disable-fast-install' option into LT_INIT's first parameter.])
Packit 5e354d
])
Packit 5e354d
Packit 5e354d
dnl aclocal-1.4 backwards compatibility:
Packit 5e354d
dnl AC_DEFUN([AC_ENABLE_FAST_INSTALL], [])
Packit 5e354d
dnl AC_DEFUN([AM_DISABLE_FAST_INSTALL], [])
Packit 5e354d
Packit 5e354d
Packit 5e354d
# _LT_WITH_PIC([MODE])
Packit 5e354d
# --------------------
Packit 5e354d
# implement the --with-pic flag, and support the `pic-only' and `no-pic'
Packit 5e354d
# LT_INIT options.
Packit 5e354d
# MODE is either `yes' or `no'.  If omitted, it defaults to `both'.
Packit 5e354d
m4_define([_LT_WITH_PIC],
Packit 5e354d
[AC_ARG_WITH([pic],
Packit 5e354d
    [AS_HELP_STRING([--with-pic@<:@=PKGS@:>@],
Packit 5e354d
	[try to use only PIC/non-PIC objects @<:@default=use both@:>@])],
Packit 5e354d
    [lt_p=${PACKAGE-default}
Packit 5e354d
    case $withval in
Packit 5e354d
    yes|no) pic_mode=$withval ;;
Packit 5e354d
    *)
Packit 5e354d
      pic_mode=default
Packit 5e354d
      # Look at the argument we got.  We use all the common list separators.
Packit 5e354d
      lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
Packit 5e354d
      for lt_pkg in $withval; do
Packit 5e354d
	IFS="$lt_save_ifs"
Packit 5e354d
	if test "X$lt_pkg" = "X$lt_p"; then
Packit 5e354d
	  pic_mode=yes
Packit 5e354d
	fi
Packit 5e354d
      done
Packit 5e354d
      IFS="$lt_save_ifs"
Packit 5e354d
      ;;
Packit 5e354d
    esac],
Packit 5e354d
    [pic_mode=default])
Packit 5e354d
Packit 5e354d
test -z "$pic_mode" && pic_mode=m4_default([$1], [default])
Packit 5e354d
Packit 5e354d
_LT_DECL([], [pic_mode], [0], [What type of objects to build])dnl
Packit 5e354d
])# _LT_WITH_PIC
Packit 5e354d
Packit 5e354d
LT_OPTION_DEFINE([LT_INIT], [pic-only], [_LT_WITH_PIC([yes])])
Packit 5e354d
LT_OPTION_DEFINE([LT_INIT], [no-pic], [_LT_WITH_PIC([no])])
Packit 5e354d
Packit 5e354d
# Old name:
Packit 5e354d
AU_DEFUN([AC_LIBTOOL_PICMODE],
Packit 5e354d
[_LT_SET_OPTION([LT_INIT], [pic-only])
Packit 5e354d
AC_DIAGNOSE([obsolete],
Packit 5e354d
[$0: Remove this warning and the call to _LT_SET_OPTION when you
Packit 5e354d
put the `pic-only' option into LT_INIT's first parameter.])
Packit 5e354d
])
Packit 5e354d
Packit 5e354d
dnl aclocal-1.4 backwards compatibility:
Packit 5e354d
dnl AC_DEFUN([AC_LIBTOOL_PICMODE], [])
Packit 5e354d
Packit 5e354d
## ----------------- ##
Packit 5e354d
## LTDL_INIT Options ##
Packit 5e354d
## ----------------- ##
Packit 5e354d
Packit 5e354d
m4_define([_LTDL_MODE], [])
Packit 5e354d
LT_OPTION_DEFINE([LTDL_INIT], [nonrecursive],
Packit 5e354d
		 [m4_define([_LTDL_MODE], [nonrecursive])])
Packit 5e354d
LT_OPTION_DEFINE([LTDL_INIT], [recursive],
Packit 5e354d
		 [m4_define([_LTDL_MODE], [recursive])])
Packit 5e354d
LT_OPTION_DEFINE([LTDL_INIT], [subproject],
Packit 5e354d
		 [m4_define([_LTDL_MODE], [subproject])])
Packit 5e354d
Packit 5e354d
m4_define([_LTDL_TYPE], [])
Packit 5e354d
LT_OPTION_DEFINE([LTDL_INIT], [installable],
Packit 5e354d
		 [m4_define([_LTDL_TYPE], [installable])])
Packit 5e354d
LT_OPTION_DEFINE([LTDL_INIT], [convenience],
Packit 5e354d
		 [m4_define([_LTDL_TYPE], [convenience])])