diff options
author | rootavish <[email protected]> | 2014-09-22 22:40:52 +0530 |
---|---|---|
committer | rootavish <[email protected]> | 2014-09-22 22:40:52 +0530 |
commit | a022a290b92a27975d5d3a526003fcdb9db1212f (patch) | |
tree | 1224440382ffe27fbdcd0a8ae2f17d5bdd84724f /libview/ev-web-view.c | |
parent | 5ac452a8a78841bf88dee6e7b0a9ea421299f669 (diff) | |
download | atril-a022a290b92a27975d5d3a526003fcdb9db1212f.tar.bz2 atril-a022a290b92a27975d5d3a526003fcdb9db1212f.tar.xz |
Can build with epub disabled
Added the required preprocessor directives to make building without epub support possible.
Diffstat (limited to 'libview/ev-web-view.c')
-rw-r--r-- | libview/ev-web-view.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libview/ev-web-view.c b/libview/ev-web-view.c index b42da163..9bd2e512 100644 --- a/libview/ev-web-view.c +++ b/libview/ev-web-view.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ - +#if ENABLE_EPUB #include "config.h" #include <glib/gi18n-lib.h> @@ -870,4 +870,5 @@ ev_web_view_disconnect_handlers(EvWebView *webview) g_signal_handlers_disconnect_by_func(webview->model, ev_web_view_page_changed_cb, webview); -}
\ No newline at end of file +} +#endif
\ No newline at end of file |