Blame m4/ltoptions.m4

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