Blame m4macros/ltoptions.m4

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