diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2004-08-04 17:32:27 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2004-08-04 17:32:27 +0000 |
commit | d16ac274cf791cc04e6d9ed4a09a0b727feac7b7 (patch) | |
tree | 2dcd3226f690c47ce2e9dfb719552be68ca666ae /w3mimg/fb/fb_imlib2.c | |
parent | [w3m-dev 04095] build fix when configure with --enable-messagel10n (diff) | |
download | w3m-d16ac274cf791cc04e6d9ed4a09a0b727feac7b7.tar.gz w3m-d16ac274cf791cc04e6d9ed4a09a0b727feac7b7.zip |
[w3m-dev 04096] w3m-img gtk2
* acinclude.m4 (AC_W3M_IMAGE): add USE_GTK2
add --with-imagelib=gtk2
* aclocal.m4 config.guess config.sub configure: regen
* config.h.in: add USE_GTK2
* w3mimg/fb/fb_gdkpixbuf.c: support USE_GTK2
* w3mimg/fb/fb_img.h: add fb_image_init()
* w3mimg/fb/fb_imlib2.h: fb_image_init() stub
* w3mimg/fb/fb_w3mimg.c: call fb_image_init()
* w3mimg/x11/x11_w3mimg.c: support USE_GTK2
From: Fumitoshi UKAI <ukai@debian.or.jp>
Diffstat (limited to 'w3mimg/fb/fb_imlib2.c')
-rw-r--r-- | w3mimg/fb/fb_imlib2.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/w3mimg/fb/fb_imlib2.c b/w3mimg/fb/fb_imlib2.c index 972f06e..ea36637 100644 --- a/w3mimg/fb/fb_imlib2.c +++ b/w3mimg/fb/fb_imlib2.c @@ -1,4 +1,4 @@ -/* $Id: fb_imlib2.c,v 1.9 2003/03/24 15:45:59 ukai Exp $ */ +/* $Id: fb_imlib2.c,v 1.10 2004/08/04 17:32:28 ukai Exp $ */ /************************************************************************** fb_imlib2.c 0.3 Copyright (C) 2002, hito **************************************************************************/ @@ -11,6 +11,12 @@ static void draw(FB_IMAGE * img, Imlib_Image image); static Imlib_Image resize_image(Imlib_Image image, int width, int height); +void +fb_image_init() +{ + return; +} + int get_image_size(char *filename, int *w, int *h) { |