diff options
author | John Harper <jsh@eazel.com> | 2001-01-22 02:08:53 +0000 |
---|---|---|
committer | John Harper <jsh@src.gnome.org> | 2001-01-22 02:08:53 +0000 |
commit | 8c9eb8b6a04917a6018ecd01bf5a707c8e3a88ce (patch) | |
tree | 4a1bf60c12c263af47d6bf2ac2acd8a5561ffafc /gdk-pixbuf/Makefile.am | |
parent | 5c9801759e2f3a6269f0ceab31fbedaf22023896 (diff) | |
download | gtk+-8c9eb8b6a04917a6018ecd01bf5a707c8e3a88ce.tar.gz |
new pixbuf loader, for X bitmap files. Basically a collision between
2001-01-20 John Harper <jsh@eazel.com>
* io-xbm.c: new pixbuf loader, for X bitmap files. Basically a
collision between Xlib's RdBitF.c and io-tiff.c
* gdk-pixbuf-io.c, Makefile.am, pixbufloader_xbm.def: added
io-xbm.c support
[ merged from stable gdk-pixbuf module. Untested, but it
compiles, and works fine in the stable module ]
Diffstat (limited to 'gdk-pixbuf/Makefile.am')
-rw-r--r-- | gdk-pixbuf/Makefile.am | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/gdk-pixbuf/Makefile.am b/gdk-pixbuf/Makefile.am index 6ae79ca9f2..0d14cb15e3 100644 --- a/gdk-pixbuf/Makefile.am +++ b/gdk-pixbuf/Makefile.am @@ -84,6 +84,13 @@ libpixbufloader_static_wbmp_la_SOURCES = io-wbmp.c libpixbufloader_wbmp_la_SOURCES = io-wbmp.c libpixbufloader_wbmp_la_LDFLAGS = -avoid-version -module +# +# The XBM loader +# +libpixbufloader_xbm_la_SOURCES = io-xbm.c +libpixbufloader_xbm_la_LDFLAGS = -version-info 1:0:0 -module +libpixbufloader_xbm_la_LIBADD = + if HAVE_PNG PNG_LIB = libpixbufloader-png.la endif @@ -110,6 +117,8 @@ BMP_LIB = libpixbufloader-bmp.la WBMP_LIB = libpixbufloader-wbmp.la +XBM_LIB = libpixbufloader-xbm.la + if BUILD_DYNAMIC_MODULES loader_LTLIBRARIES = \ @@ -122,7 +131,8 @@ loader_LTLIBRARIES = \ $(TIFF_LIB) \ $(PNM_LIB) \ $(BMP_LIB) \ - $(WBMP_LIB) + $(WBMP_LIB) \ + $(XBM_LIB) extra_sources = @@ -214,4 +224,6 @@ EXTRA_DIST = \ pixbufloader_gif.def \ pixbufloader_png.def \ pixbufloader_tiff.def \ - pixbufloader_wbmp.def + pixbufloader_wbmp.def \ + pixbufloader_xbm.def + |