Blame m4/ltoptions.m4

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