Blame m4/ltoptions.m4

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