diff options
author | Chun-wei Fan <fanchunwei@src.gnome.org> | 2012-08-29 12:27:45 +0800 |
---|---|---|
committer | Chun-wei Fan <fanchunwei@src.gnome.org> | 2012-08-29 12:27:45 +0800 |
commit | 6692a9766c2fe2bf3f58cb869a70f5a201bc76a8 (patch) | |
tree | 7740dd820a16f94ddd6e4e8959e91ae4a9d92475 /config.h.win32.in | |
parent | 88692e4eb0a971f6d32da9207c9c91c8d8c7c8d9 (diff) | |
download | pango-6692a9766c2fe2bf3f58cb869a70f5a201bc76a8.tar.gz |
Update config.h.win32.in
Make its entries more consistent with the entries given in config.h.in.
Diffstat (limited to 'config.h.win32.in')
-rw-r--r-- | config.h.win32.in | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/config.h.win32.in b/config.h.win32.in index f6e614c9..59fb177b 100644 --- a/config.h.win32.in +++ b/config.h.win32.in @@ -5,9 +5,6 @@ /* Have usable Cairo library and font backend */ #define HAVE_CAIRO 1 -/* Whether Cairo can use ATSUI for fonts */ -/* #undef HAVE_CAIRO_ATSUI */ - /* Whether Cairo can use FreeType for fonts */ #ifndef PANGO_VISUALC_NO_FC #define HAVE_CAIRO_FREETYPE 1 @@ -22,6 +19,9 @@ /* Whether Cairo has PS support */ #define HAVE_CAIRO_PS 1 +/* Whether Cairo can use Quartz for fonts */ +/* #undef HAVE_CAIRO_QUARTZ */ + /* Whether Cairo can use the Win32 GDI for fonts */ #define HAVE_CAIRO_WIN32 1 @@ -55,14 +55,11 @@ /* Define to 1 if you have the <memory.h> header file. */ /* #undef HAVE_MEMORY_H */ -/* Define to 1 if you have the `mprotect' function. */ -/* #undef HAVE_MPROTECT */ - /* Define to 1 if you have the <ndir.h> header file, and it defines `DIR'. */ /* #undef HAVE_NDIR_H */ /* Define to 1 if you have the <stdint.h> header file. */ -#if (_MSC_VER >= 1600) +#if (!defined (_MSC_VER) || (_MSC_VER >= 1600)) #define HAVE_STDINT_H 1 #endif @@ -129,6 +126,9 @@ /* Define to the one symbol short name of this package. */ #define PACKAGE_TARNAME "pango" +/* Define to the home page for this package. */ +#define PACKAGE_URL "" + /* Define to the version of this package. */ #define PACKAGE_VERSION "@PANGO_VERSION@" @@ -155,6 +155,3 @@ /* Version number of package */ #define VERSION "@PANGO_VERSION@" - -/* Define to 1 if the X Window System is missing or not being used. */ -#define X_DISPLAY_MISSING 1 |