source: web/old/remctl-2.14/m4/lib-depends.m4 @ f6f3e91

web
Last change on this file since f6f3e91 was f6f3e91, checked in by Jessica B. Hamrick <jhamrick@…>, 15 years ago

Preserve directory hierarchy (not sure what happened to it)

  • Property mode set to 100644
File size: 998 bytes
Line 
1dnl lib-depends.m4 -- Provides option to change library probes.
2dnl
3dnl This file provides RRA_ENABLE_REDUCED_DEPENDS, which adds the configure
4dnl option --enable-reduced-depends to request that library probes assume
5dnl shared libraries are in use and dependencies of libraries should not be
6dnl probed.  If this option is given, the shell variable rra_reduced_depends
7dnl is set to true; otherwise, it is set to false.
8dnl
9dnl This macro doesn't do much but is defined separately so that other macros
10dnl can require it with AC_REQUIRE.
11dnl
12dnl Written by Russ Allbery <rra@stanford.edu>
13dnl Copyright 2005, 2006, 2007
14dnl     Board of Trustees, Leland Stanford Jr. University
15dnl
16dnl See LICENSE for licensing terms.
17
18AC_DEFUN([RRA_ENABLE_REDUCED_DEPENDS],
19[rra_reduced_depends=false
20AC_ARG_ENABLE([reduced-depends],
21    [AC_HELP_STRING([--enable-reduced-depends],
22        [Try to minimize shared library dependencies])],
23    [AS_IF([test x"$enableval" = xyes], [rra_reduced_depends=true])])])
Note: See TracBrowser for help on using the repository browser.