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 | |
---|
1 | dnl lib-depends.m4 -- Provides option to change library probes. |
---|
2 | dnl |
---|
3 | dnl This file provides RRA_ENABLE_REDUCED_DEPENDS, which adds the configure |
---|
4 | dnl option --enable-reduced-depends to request that library probes assume |
---|
5 | dnl shared libraries are in use and dependencies of libraries should not be |
---|
6 | dnl probed. If this option is given, the shell variable rra_reduced_depends |
---|
7 | dnl is set to true; otherwise, it is set to false. |
---|
8 | dnl |
---|
9 | dnl This macro doesn't do much but is defined separately so that other macros |
---|
10 | dnl can require it with AC_REQUIRE. |
---|
11 | dnl |
---|
12 | dnl Written by Russ Allbery <rra@stanford.edu> |
---|
13 | dnl Copyright 2005, 2006, 2007 |
---|
14 | dnl Board of Trustees, Leland Stanford Jr. University |
---|
15 | dnl |
---|
16 | dnl See LICENSE for licensing terms. |
---|
17 | |
---|
18 | AC_DEFUN([RRA_ENABLE_REDUCED_DEPENDS], |
---|
19 | [rra_reduced_depends=false |
---|
20 | AC_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.