diff options
author | Tor Lillqvist <tml@iki.fi> | 2001-10-28 22:54:14 +0000 |
---|---|---|
committer | Tor Lillqvist <tml@src.gnome.org> | 2001-10-28 22:54:14 +0000 |
commit | 53570e37a04c11518dc99c1b6357cff8182c1980 (patch) | |
tree | 6f8a9b437da29b7f2c951e812fba5fc9b4707b51 /tests | |
parent | f5527477d469cf50063bad41de22138806748520 (diff) | |
download | pango-53570e37a04c11518dc99c1b6357cff8182c1980.tar.gz |
New file, used to build distribution package for Windows.
2001-10-29 Tor Lillqvist <tml@iki.fi>
* pango-zip.sh.in: New file, used to build distribution package
for Windows.
* Makefile.am (EXTRA_DIST): Add pango-zip.sh.
* configure.in: Check for lib.exe, set MS_LIB_AVAILABLE. Generate
pango-zip.sh.
* README.win32: Mention the ways to build Pango on Windows.
* modules/Makefile.am
* examples/Makefile.am: Se SOSUFFIX to so on Unix, dll on Windows.
* pango/Makefile.am: Add rules to create MSVC import library if
MS_LIB_AVAILABLE. Add rules to install and uninstall mingw and
MSVC import libraries.
* tests/Makefile.am: Link with libpangox.la only on Unix.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Makefile.am | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index a5fdeb3b..3f6651bc 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -12,10 +12,14 @@ testboundaries_SOURCES = testboundaries.c dump_boundaries_SOURCES = dump-boundaries.c +if OS_WIN32 +else ## pangox should not actually be required, this is broken -testboundaries_LDADD = ../pango/libpango.la ../pango/libpangox.la $(X_LIBS) +pangox_la = ../pango/libpangox.la +endif +testboundaries_LDADD = ../pango/libpango.la $(pangox_la) $(X_LIBS) -dump_boundaries_LDADD = ../pango/libpango.la ../pango/libpangox.la $(X_LIBS) +dump_boundaries_LDADD = ../pango/libpango.la $(pangox_la) $(X_LIBS) EXTRA_DIST = \ all-unicode.txt \ |