mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-01-12 06:35:36 +00:00
fe4a530155
* configure.in: Add pango pkg-config check. * pango/Layout.custom: Updated custom code to new opaque LayoutLine. * pango/LayoutLine.custom: Properties for LayoutLine struct fields. * pango/Makefile.am: * pango/Pango.metadata: Make LayoutLine opaque [Fixes #59666]. * pango/glue/.cvsignore: * pango/glue/Makefile.am: * pango/glue/layoutline.c: glue for the LayoutLine struct fields. * pango/glue/makefile.win32: * pango/glue/win32dll.c: svn path=/trunk/gtk-sharp/; revision=28982
21 lines
512 B
Makefile
21 lines
512 B
Makefile
lib_LTLIBRARIES = libpangosharpglue.la
|
|
|
|
libpangosharpglue_la_SOURCES = \
|
|
layoutline.c
|
|
|
|
# Adding a new glue file?
|
|
# Please remember to update makefile.win32
|
|
|
|
libpangosharpglue_la_LDFLAGS = -module -avoid-version
|
|
|
|
libpangosharpglue_la_LIBADD = $(PANGO_LIBS)
|
|
|
|
INCLUDES = $(PANGO_CFLAGS) -I$(top_srcdir)
|
|
|
|
libpangosharpglue.dll: $(libpangosharpglue_la_OBJECTS) libpangosharpglue.rc libpangosharpglue.def
|
|
./build-dll libpangosharpglue $(VERSION)
|
|
|
|
CLEANFILES = lib*.a lib*.dll
|
|
|
|
EXTRA_DIST = makefile.win32 win32dll.c
|