Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Olena
olena
Commits
013ef3d7
Commit
013ef3d7
authored
Aug 11, 2010
by
Guillaume Lazzara
Browse files
configure.ac: Require Qt 4.x minimum to enable the use of Qt.
parent
6793cca4
Changes
2
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
013ef3d7
2010-08-11 Guillaume Lazzara <z@lrde.epita.fr>
* configure.ac: Require Qt 4.x minimum to enable the use of Qt.
2010-08-11 Guillaume Lazzara <z@lrde.epita.fr>
* m4/autotroll.m4: Fix an invalid generation of configure with
...
...
configure.ac
View file @
013ef3d7
...
...
@@ -203,7 +203,10 @@ AC_MSG_RESULT([------------------------------------------------------------])
### Support for FreeImagePlus has been disabled for Olena 1.0.
## OLN_WITH_LIB([FreeImagePlus], [FreeImagePlus.h], [freeimageplus])
# CFITSIO library.
## ---------------- ##
## CFITSIO library. ##
## ---------------- ##
AC_MSG_RESULT([])
AC_MSG_RESULT([* libcfitsio])
AC_MSG_RESULT([------------])
...
...
@@ -211,7 +214,10 @@ OLN_WITH_LIB([CFITSIO], [fitsio.h], [cfitsio])
#------------------------------------------------------------
# Magick++.
## --------- ##
## Magick++. ##
## --------- ##
# FIXME: We should handle Magick++ both with Magick++-config and
# pkg-config? instead of OLN_WITH_LIB. See how other projects handle
...
...
@@ -253,8 +259,10 @@ AM_CONDITIONAL(HAVE_MAGICKXX, test "x$have_magickxx" = 'xyes')
#------------------------------------------------------------
## ------------- ##
## TIFF library. ##
## ------------- ##
# TIFF library.
AC_MSG_RESULT([])
AC_MSG_RESULT([* libtiff])
AC_MSG_RESULT([---------])
...
...
@@ -267,21 +275,32 @@ AC_MSG_RESULT([---------])
OLN_WITH_LIB([GDCM], [gdcm-2.0/gdcmReader.h], [gdcmCommon], [gdcm], [GDCM],
[-lgdcmzlib])
# Tesseract.
## ---------- ##
## Tesseract. ##
## ---------- ##
AC_MSG_RESULT([])
AC_MSG_RESULT([* Tesseract])
AC_MSG_RESULT([-----------])
OLN_WITH_LIB([TESSERACT], [tesseract/baseapi.h], [tesseract_full],
[tesseract], [TESSERACT])
OLN_WITH_LIB([TESSERACT], [tesseract/baseapi.h], [tesseract_full], [tesseract],
[TESSERACT])
## --- ##
## Qt. ##
## --- ##
# Qt.
AC_MSG_RESULT([])
AC_MSG_RESULT([* Qt])
AC_MSG_RESULT([----])
AT_WITH_QT([+xml], [], [],
AC_DEFINE([HAVE_QT], 0, [Define to 1 if we can use Qt]),
AC_DEFINE([HAVE_QT], 1))
AM_CONDITIONAL([HAVE_QT], [test x$QT_PATH != x])
AC_MSG_WARN([Qt dependent programs will be disabled.]))
if test "x$QT_VERSION_MAJOR" != "x"; then
AT_REQUIRE_QT_VERSION([4], AC_MSG_WARN([Your Qt version is too old! Qt dependent programs will be disabled.]),
AC_DEFINE([HAVE_QT], 1,
[Define to 1 if we can use Qt]))
fi
AM_CONDITIONAL([HAVE_QT], [test "x$QT_VERSION_MAJOR" == "x4"])
AC_MSG_RESULT([])
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment