configure.in: Fixed GIF check. Actually works now! src/gdk-pixbuf.c: More

configure.in: Fixed GIF check.  Actually works now!
src/gdk-pixbuf.c: More scaling work.
This commit is contained in:
Mark Crichton 1999-07-13 07:01:08 +00:00
parent 1d146b0d58
commit 9b462c6024
2 changed files with 18 additions and 0 deletions

View File

@ -1,4 +1,10 @@
1999-07-13 <crichton@gimp.org>
* configure.in: Fixed GIF check. Replaced " with '
* src/gdk-pixbuf.c: More (minor) work on gdk_pixbuf_scale
1999-07-13 <crichton@gimp.org>
* configure.in: I am a bonehead. Added gif-lib check.

View File

@ -38,4 +38,16 @@ gdk_pixbuf_unref (GdkPixBuf *pixbuf)
GdkPixBuf *
gdk_pixbuf_scale (GdkPixBuf *pixbuf, gint w, gint h)
{
GdkPixBuf *spb;
double affine[6];
}
/*
* Local variables:
* c-basic-offset: 4
* c-file-offsets: ((substatement-open . 0))
* End:
*/