]> www.fi.muni.cz Git - evince.git/blobdiff - configure.ac
[windows] Make comics backend also compile on Windows
[evince.git] / configure.ac
index 84432ff1768193e836ca4efffa49741ed12290fa..750f9a5f65827647c7538618e1193714f9c7d0c2 100644 (file)
@@ -666,16 +666,8 @@ AC_ARG_ENABLE(comics,
        [enable_comics=yes])
        
 if test "x$enable_comics" = "xyes"; then
-       if test "x$os_win32" = "xyes"; then
-               # The comics backend is disabled on windows because:
-               # 1) it uses unix functions from sys/wait.h.
-               # 2) it uses external decompression tools not generally available on windows.
-               enable_comics=no
-               AC_MSG_WARN(The comics backend is not supported on windows.)
-       else
-               AC_DEFINE([ENABLE_COMICS], [1], [Enable support for comics.])
-       fi
-fi 
+       AC_DEFINE([ENABLE_COMICS], [1], [Enable support for comics.])
+fi
 AM_CONDITIONAL(ENABLE_COMICS, test x$enable_comics = xyes)
 
 dnl ================== End of comic book checks ============================================