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
8206377e
...
8206377e1bf56a5a86ec18e16e226d808d6123b8
authored
2005-02-28 21:09:33 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Check for FriBidi
1 parent
a27f1f5f
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
configure.ac
configure.ac
View file @
8206377
...
...
@@ -419,6 +419,17 @@ if test "$ac_use_included_regex" = yes; then
fi
## FriBidi support
AC_SUBST(FRIBIDI_LIBS)
AH_TEMPLATE(HAVE_LIBFRIBIDI,
[Define to 1 if you have the `fribidi' library (-lfribidi).])
AC_CHECK_HEADERS(fribidi/fribidi.h)
if test $ac_cv_header_fribidi_fribidi_h = yes; then
AC_CHECK_LIB(fribidi, fribidi_log2vis,
[AC_DEFINE(HAVE_LIBFRIBIDI,1)
FRIBIDI_LIBS=-lfribidi])
fi
...
...
Please
register
or
sign in
to post a comment