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