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
a9c418a0
...
a9c418a0bb36d0a8a7df9c09f4f939ab15d91afc
authored
2003-01-10 14:41:43 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Explicitly load libmailbox before loading libmu_scm. Fixed 1.6 branch of the conditional.
1 parent
1e3c90eb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
libmu_scm/mailutils.scm.in
libmu_scm/mailutils.scm.in
View file @
a9c418a
...
...
@@ -21,16 +21,17 @@ changequote([,])dnl
(
define-module
(
mailutils
))
(
let
((
lib-path
"LIBDIR/"
))
(
dynamic-link
(
string-append
lib-path
"libmailbox"
))
(
cond
((
or
(
string=?
(
version
)
"1.4"
)
(
string=?
(
version
)
"1.4.1"
))
(
dynamic-link
(
string-append
lib-path
"libmailbox"
))
(
dynamic-call
"mu_scm_init"
(
dynamic-link
(
string-append
lib-path
"libguile-mailutils-v-VERSION"
))))
(
else
(
load-extension
"libguile-mailutils-v-VERSION"
"mu_scm_init"
))))
(
load-extension
(
string-append
lib-path
"libguile-mailutils-v-VERSION"
)
"mu_scm_init"
))))
(
export
mu-package
)
(
export
mu-package-string
)
...
...
Please
register
or
sign in
to post a comment