moved pango_fc_* to the latter where they live on *nix too.
authorHans Breuer <hans@breuer.org>
Sat, 13 Dec 2003 14:31:50 +0000 (14:31 +0000)
committerHans Breuer <hans@src.gnome.org>
Sat, 13 Dec 2003 14:31:50 +0000 (14:31 +0000)
2003-12-13  Hans Breuer  <hans@breuer.org>

* pango/pango.def pangoft2.def : moved pango_fc_*
to the latter where they live on *nix too.

* pango/makefile.msc : make it build again (including
the Ft2 backend)

* pango/module-defs-fc.c.win32 : if PANGO_MODULE_PREFIX is defined
include the basic backend shaper

* pango/pangowin32.c (pango_win32_render_layout) :
initialize iter before first usage to avoid immediate crashing

* pango/opentype/makefile.msc
            pango/modules/makefile.msc : finally build with mscv, too.
[completely untested cause I'm not able to type, write or read
any of these languages]

* modules/modules.def : follow module function renaming/changes

* modules/basic/basic-win32.c : register the right engine, i.e.
make it compile

src/makefile.msc [new file with mode: 0644]

diff --git a/src/makefile.msc b/src/makefile.msc
new file mode 100644 (file)
index 0000000..f30a0fa
--- /dev/null
@@ -0,0 +1,21 @@
+TOP = ..\..\..
+!INCLUDE $(TOP)\glib\build\win32\make.msc
+
+INCLUDES = -I ..\.. $(FREETYPE2_CFLAGS) $(GLIB_CFLAGS)
+DEFINES = -DPANGO_ENABLE_ENGINE
+
+OBJECTS = \
+       ftxgdef.obj \
+       disasm.obj \
+       ftxgpos.obj \
+       ftxgsub.obj \
+       ftxopen.obj \
+       ottest.obj \
+       pango-ot-info.obj \
+       pango-ot-ruleset.obj \
+
+all : \
+       pango-ot.lib
+
+pango-ot.lib : $(OBJECTS)
+       lib /out:$@ $(OBJECTS)  
\ No newline at end of file