mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-05 16:20:10 +00:00
40f2af665d
Don't try to paint onto an error surface. This happens for example when gdk_cairo_set_source_pixbuf() is called with a pixbuf that is too big for Cairo to handle. Spotted by Christian Boxdörfer
52 lines
928 B
Makefile
52 lines
928 B
Makefile
include $(top_srcdir)/Makefile.decl
|
|
|
|
NULL=
|
|
|
|
noinst_PROGRAMS = $(TEST_PROGS)
|
|
|
|
AM_CPPFLAGS = \
|
|
$(GDK_DEP_CFLAGS) \
|
|
-I$(top_srcdir) \
|
|
-I$(top_builddir)/gdk \
|
|
$(NULL)
|
|
|
|
LDADD = \
|
|
$(GDK_DEP_LIBS) \
|
|
$(top_builddir)/gdk/libgdk-3.la \
|
|
$(NULL)
|
|
|
|
#TEST_PROGS += check-gdk-cairo
|
|
|
|
TEST_PROGS += \
|
|
cairo \
|
|
display \
|
|
encoding \
|
|
keysyms \
|
|
rgba \
|
|
$(NULL)
|
|
|
|
CLEANFILES = \
|
|
cairosurface.png \
|
|
gdksurface.png \
|
|
$(NULL)
|
|
|
|
if BUILDOPT_INSTALL_TESTS
|
|
insttestdir=$(libexecdir)/installed-tests/$(PACKAGE)
|
|
insttest_PROGRAMS = $(TEST_PROGS)
|
|
|
|
%.test: %$(EXEEXT) Makefile
|
|
$(AM_V_GEN) (echo '[Test]' > $@.tmp; \
|
|
echo 'Type=session' >> $@.tmp; \
|
|
echo 'Exec=$(insttestdir)/$<' >> $@.tmp; \
|
|
mv $@.tmp $@)
|
|
|
|
test_files = $(TEST_PROGRS:=.test)
|
|
|
|
DISTCLEANFILES = $(test_files)
|
|
|
|
testmetadir = $(datadir)/installed-tests/$(PACKAGE)
|
|
testmeta_DATA = $(test_files)
|
|
endif
|
|
|
|
-include $(top_srcdir)/git.mk
|