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
cd389fb8
...
cd389fb8a477405be0a2d8ea2260ffc8d6eccdf7
authored
2002-09-10 11:57:57 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Changed check for guile. Raised patchlevel to 0.1.1
1 parent
6d2a6f6d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
13 deletions
configure.ac
configure.ac
View file @
cd389fb
...
...
@@ -17,7 +17,7 @@
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#
AC_INIT([GNU Mailutils], [0.1], [bug-mailutils@gnu.org])
AC_INIT([GNU Mailutils], [0.1
.1
], [bug-mailutils@gnu.org])
AC_CONFIG_SRCDIR([mailbox/mailbox.c])
AC_CANONICAL_TARGET([])
AM_INIT_AUTOMAKE
...
...
@@ -457,24 +457,29 @@ esac
dnl Check for Guile
AC_SUBST(GUILE_INCLUDES)
AC_SUBST(GUILE_LIBS)
AC_SUBST(GUILE_SNARF_VERSION)
AC_SUBST(GUIMB)
AC_SUBST(MU_SCM)
AC_SUBST(LIBMU_SCM)
AC_SUBST(GUILE_PROCEDURES_TXT)
AC_SUBST(GUILE_BUILT_SOURCES)
if test x"$useguile" = x"yes"; then
AC_PATH_PROG(GUILE_CONFIG, guile-config, no, $PATH)
AC_CHECK_HEADER(libguile.h, :, [GUILE_CONFIG=no])
if test x$GUILE_CONFIG != xno; then
AC_DEFINE(WITH_GUILE,1,[Enable Guile support])
GUILE_INCLUDES=`guile-config compile`
GUILE_LIBS=`guile-config link`
GUIMB=guimb
MU_SCM=libmu_scm.a
LIBMU_SCM=../libmu_scm/libmu_scm.a
GUILE_PROCEDURES_TXT=guile-procedures.txt
GUILE_BUILT_SOURCES='$(DOT_X_FILES) $(DOT_DOC_FILES)'
fi
MU_CHECK_GUILE(,[
AC_DEFINE(WITH_GUILE,1,[Enable Guile support])
GUILE_INCLUDES=`guile-config compile`
GUILE_LIBS=`guile-config link`
GUIMB=guimb
MU_SCM=libmu_scm.a
LIBMU_SCM=../libmu_scm/libmu_scm.a
GUILE_PROCEDURES_TXT=guile-procedures.txt
GUILE_BUILT_SOURCES='$(DOT_X_FILES) $(DOT_DOC_FILES)'
case "$GUILE_VERSION" in
14) GUILE_SNARF_VERSION="1.4";;
16|17) GUILE_SNARF_VERSION="1.6";;
*) GUILE_SNARF_VERSION="1.6";;
esac
],[useguile=no])
fi
dnl Make sysconfdir available to the application
...
...
@@ -519,6 +524,8 @@ AC_CONFIG_FILES([Makefile mailutils.spec
messages/Makefile
messages/testsuite/Makefile
scripts/Makefile
scripts/guile-1.4/Makefile
scripts/guile-1.6/Makefile
libmu_scm/Makefile
guimb/Makefile
guimb/scm/Makefile
...
...
@@ -528,6 +535,7 @@ AC_CONFIG_FILES([Makefile mailutils.spec
mail.local/Makefile
mail.remote/Makefile
dotlock/Makefile
mh/Makefile
])
AC_OUTPUT
...
...
Please
register
or
sign in
to post a comment