2000-01-05 21:33:58 +00:00
|
|
|
noinst_LTLIBRARIES = libpixops.la
|
|
|
|
|
2001-07-05 14:19:43 +00:00
|
|
|
INCLUDES = @STRIP_BEGIN@ \
|
|
|
|
-I$(top_srcdir) -I$(top_builddir) \
|
|
|
|
@GTK_DEBUG_FLAGS@ \
|
|
|
|
@GDK_PIXBUF_DEP_CFLAGS@ \
|
Remove assorted G_OBJECT casts where unnecessary.
2001-12-13 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* gdk-pixbuf-animation.c, gdk-pixbuf-loader.c, gdk-pixpuf.c,
io-gif-animation.c, io-gif.c, io-tiff.c, test-loaders.c: Remove
assorted G_OBJECT casts where unnecessary.
* gdk-pixbuf-loader.c: Call g_object_ref and g_object_unref
instead of gdk_pixbuf_animation_ref and gdk_pixbuf_animation_unref
resp.
* gdk-pixbuf-csource.c, io-bmp.c, io-gif-animation.c, io-ico.c,
io-jpeg.c, io-png.c, io-pnm.c, io-ras.c, io-tga.c, io-wbmp.c,
io-xbm.c, io-xpm.c, test-gdk-pixbuf.c: Dito for gdk_pixbuf_ref and
gdk_pixbuf_unref.
* Makefile.am, pixops/Makefile.am: Compile everything with
-DG_DISABLE_DEPRECATED -DGDK_PIXBUF_DISABLE_DEPRECATED
* gdk-pixdata.c: Use g_ascii_strup() instead of g_strup().
* io-xpm.c: Use g_ascii_strcasecmp() instead of g_strcasecmp().
* demos/testpixbuf-drawable.c, demos/testpixbuf-save.c,
demos/testpixbuf-scale.c, demos/testpixbuf.c: Call g_object_ref
and g_object_unref instead of gdk_pixbuf_ref and gdk_pixbuf_unref
resp.
2001-12-13 21:22:12 +00:00
|
|
|
-DG_DISABLE_DEPRECATED \
|
|
|
|
-DGDK_PIXBUF_DISABLE_DEPRECATED \
|
2001-07-05 14:19:43 +00:00
|
|
|
@STRIP_END@
|
2000-01-05 21:33:58 +00:00
|
|
|
|
2000-02-22 00:29:00 +00:00
|
|
|
noinst_PROGRAMS = timescale
|
2000-01-05 21:33:58 +00:00
|
|
|
|
|
|
|
timescale_SOURCES = timescale.c
|
2000-01-06 02:53:13 +00:00
|
|
|
timescale_LDADD = libpixops.la $(GLIB_LIBS) -lm
|
2000-01-05 21:33:58 +00:00
|
|
|
|
|
|
|
if USE_MMX
|
|
|
|
mmx_sources = \
|
|
|
|
have_mmx.S \
|
|
|
|
scale_line_22_33_mmx.S \
|
|
|
|
composite_line_22_4a4_mmx.S \
|
|
|
|
composite_line_color_22_4a4_mmx.S
|
|
|
|
endif
|
|
|
|
|
|
|
|
libpixops_la_SOURCES = \
|
|
|
|
pixops.c \
|
|
|
|
pixops.h \
|
|
|
|
pixops-internal.h \
|
|
|
|
$(mmx_sources)
|
2000-05-22 19:09:27 +00:00
|
|
|
|
|
|
|
EXTRA_DIST = \
|
2000-07-22 23:50:19 +00:00
|
|
|
DETAILS \
|
|
|
|
makefile.mingw \
|
|
|
|
makefile.mingw.in
|