From a6da1f5bbc8a5f9b1e378fc32430edb6654be00c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20G=C3=BCnther=20=28aka=2E=20Gunther=2C=20Guenther?= =?UTF-8?q?=29?= <siebenkopf@users.noreply.github.com> Date: Mon, 30 May 2016 14:57:26 -0600 Subject: [PATCH] Fixed #12 --- bob/io/image/include/bob.io.image/config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bob/io/image/include/bob.io.image/config.h b/bob/io/image/include/bob.io.image/config.h index 9ba23c4..0f43583 100644 --- a/bob/io/image/include/bob.io.image/config.h +++ b/bob/io/image/include/bob.io.image/config.h @@ -90,7 +90,7 @@ #ifdef HAVE_GIFLIB static PyObject* giflib_version() { #ifdef GIFLIB_VERSION - return Py_BuildValue("s", GIF_LIB_VERSION); + return Py_BuildValue("s", GIFLIB_VERSION); #else boost::format f("%s.%s.%s"); f % BOOST_PP_STRINGIZE(GIFLIB_MAJOR) % BOOST_PP_STRINGIZE(GIFLIB_MINOR) % BOOST_PP_STRINGIZE(GIFLIB_RELEASE); -- GitLab