Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
9aeadd10
...
9aeadd1004b439a5d51979e895b18a004186c624
authored
2002-12-05 12:47:47 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Check for libltdl only if enable_shared is set.
1 parent
6a2d5225
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
6 deletions
configure.ac
configure.ac
View file @
9aeadd1
...
...
@@ -38,12 +38,14 @@ dnl Check for libraries
AC_CHECK_LIB(resolv, res_query)
LTDL_LIB=
AC_SUBST(LTDL_LIB)
AC_CHECK_LIB(ltdl, lt_dlinit,[
AC_DEFINE(HAVE_LIBLTDL,
1,
[Define to 1 if you have the `ltdl' library (-lltdl).])
LTDL_LIB=-lltdl],
[LTDL_LIB=""])
if test "$enable_shared" = yes; then
AC_CHECK_LIB(ltdl, lt_dlinit,[
AC_DEFINE(HAVE_LIBLTDL,
1,
[Define to 1 if you have the `ltdl' library (-lltdl).])
LTDL_LIB=-lltdl],
[LTDL_LIB=""])
fi
MU_DEBUG_MODE
# Initialize authlibs
...
...
@@ -307,6 +309,7 @@ AC_CHECK_FUNCS(argp_parse, :,
MU_LIBOBJ(argp-pv)
MU_LIBOBJ(argp-pvh)
MU_LIBOBJ(argp-xinl)
MU_LIBOBJ(pin)
])
AC_MSG_CHECKING(whether extern program_invocation_name is present)
...
...
Please
register
or
sign in
to post a comment