diff options
| author | Gaetan Nadon <memsize@videotron.ca> | 2010-08-29 19:56:59 -0400 |
|---|---|---|
| committer | Gaetan Nadon <memsize@videotron.ca> | 2010-09-19 16:15:15 -0400 |
| commit | 50c96170ad42321310c346cf412f9ae7e80ec2a7 (patch) | |
| tree | 508ef9ced6769fa252c875ed0b6267af717cf25c | |
| parent | 5d79c0fad950ee6b83011a6c0242c9dc00c711a7 (diff) | |
config: AC_LIBTOOL_DLOPEN is required for dynamic linking
It adds the following tests in the configuration :
checking for shl_load... no
checking for shl_load in -ldld... no
checking for dlopen... no
checking for dlopen in -ldl... yes
checking whether a program can dlopen itself... yes
checking whether a statically linked program can dlopen itself... no
This has not resulted in any compiler/linker flags change on
a GNU/Linux platform.
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
| -rw-r--r-- | configure.ac | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 04053ac..129e2fb 100644 --- a/configure.ac +++ b/configure.ac @@ -37,7 +37,8 @@ XORG_DEFAULT_OPTIONS AM_CONFIG_HEADER(config.h) AM_PROG_CC_C_O -AM_PROG_LIBTOOL +AC_LIBTOOL_DLOPEN +AC_PROG_LIBTOOL XORG_PROG_RAWCPP XORG_WITH_LINT |
