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
210501f1
...
210501f175a362e3debcbe42502092b4f598397b
authored
2002-11-22 14:47:20 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Added check for installed libltdl. Bumped version number to 0.1.3.
1 parent
6be2b1cd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
2 deletions
configure.ac
configure.ac
View file @
210501f
...
...
@@ -17,7 +17,7 @@
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#
AC_INIT([GNU Mailutils],[0.1.
2
],[bug-mailutils@gnu.org])
AC_INIT([GNU Mailutils],[0.1.
3
],[bug-mailutils@gnu.org])
AC_CONFIG_SRCDIR([mailbox/mailbox.c])
AC_CANONICAL_TARGET([])
AM_INIT_AUTOMAKE
...
...
@@ -29,13 +29,21 @@ dnl Check for programs
AC_PROG_CC
AC_PROG_INSTALL
AC_PROG_LN_S
AC_LIBTOOL_DLOPEN
AM_PROG_LIBTOOL
AC_PROG_YACC
AM_PROG_LEX
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=""])
MU_DEBUG_MODE
# Initialize authlibs
...
...
Please
register
or
sign in
to post a comment