Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
libopenraw
exempi
Commits
eccc6823
Commit
eccc6823
authored
Nov 29, 2016
by
Hubert Figuiere
Browse files
Travis CI
- Fix shell syntax in autogen.sh - Bump boost requirement to 1.48.
parent
dd6791bb
Changes
4
Hide whitespace changes
Inline
Side-by-side
.travis.yml
0 → 100644
View file @
eccc6823
language
:
cpp
compiler
:
-
clang
-
gcc
addons
:
apt
:
packages
:
-
libboost-test1.48-dev
script
:
-
./autogen.sh
-
./configure
-
make
-
make check
\ No newline at end of file
NEWS
View file @
eccc6823
...
...
@@ -16,6 +16,10 @@
- Now require (partial) C++11 support to compile (gcc 4.4.7 tested)
- New: WebP format handler (contributed: Frankie Dintino, The Atlantic)
Internal:
- Exempi is now automatically build and the test run by Travis CI.
2.3.0 - 2016/03/15
- New: API xmp_datetime_compare().
...
...
autogen.sh
View file @
eccc6823
...
...
@@ -41,7 +41,7 @@ $AUTOCONF
cd
$builddir
if
[
!
$NOCONFIGURE
=
=
"1"
]
;
then
if
[
!
$NOCONFIGURE
=
"1"
]
;
then
if
test
-z
"
$*
"
;
then
echo
"I am going to run ./configure with --enable-maintainer-mode"
echo
"If you wish to pass any to it, please specify them on "
...
...
configure.ac
View file @
eccc6823
...
...
@@ -168,7 +168,7 @@ AC_ARG_ENABLE(unittest,
ENABLE_UNITTEST=$enableval,
ENABLE_UNITTEST=yes)
if test x$ENABLE_UNITTEST = xyes ; then
BOOST_REQUIRE([1.
33
.0])
BOOST_REQUIRE([1.
48
.0])
BOOST_TEST([mt-s])
else
ENABLE_UNITTEST=no
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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