Blame m4/ltoptions.m4

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