diff options
author | Tor Lillqvist <tml@novell.com> | 2005-07-25 10:19:15 +0000 |
---|---|---|
committer | Tor Lillqvist <tml@src.gnome.org> | 2005-07-25 10:19:15 +0000 |
commit | 030411be6b45c80fe136c0a1d069ff2e2599b7fe (patch) | |
tree | 16e18a90c8617e424df4f2e7c4ad20733b1915ee /configure.in | |
parent | d5142f02455703ea61bd11f308ef844e9b20ebbd (diff) | |
download | pango-030411be6b45c80fe136c0a1d069ff2e2599b7fe.tar.gz |
configure.in Fix a few typos that prevented build on Win32.
2005-07-25 Tor Lillqvist <tml@novell.com>
* configure.in
* pango/pangocairo-win32font.c (_pango_cairo_win32_font_new): Fix
a few typos that prevented build on Win32.
* pango/pango.def: Add pango_is_zero_width.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index ab8ae4e5..520b8f9d 100644 --- a/configure.in +++ b/configure.in @@ -509,13 +509,13 @@ dnl ******************************************************** # Note that -module isn't included here since automake needs to see it to know # that something like pango-arabic-fc.la is a valid libtool archive # -if test "$os_win32" != yes; then +if test "$pango_os_win32" != yes; then # libtool option to control which symbols are exported # right now, symbols starting with _ are not exported LIBRARY_LIBTOOL_OPTIONS="-version-info $LT_VERSION_INFO "'-export-symbols-regex "^pango_.*"' MODULE_LIBTOOL_OPTIONS="-export-dynamic -avoid-version "'-export-symbols-regex "^script_engine_.*"' else - # We currently use .def files on Windows (for gdk-pixbuf, gdk and gtk) + # We currently use .def files on Windows LIBRARY_LIBTOOL_OPTIONS="-version-info $LT_VERSION_INFO -no-undefined" MODULE_LIBTOOL_OPTIONS="-export-dynamic -avoid-version -no-undefined" fi |