diff options
author | Chun-wei Fan <fanchunwei@src.gnome.org> | 2015-03-06 10:49:25 +0800 |
---|---|---|
committer | Chun-wei Fan <fanchunwei@src.gnome.org> | 2015-03-06 10:49:25 +0800 |
commit | 064f4db0129b3fd845eb221b099e8638fd32e873 (patch) | |
tree | b9c1900e15f04b758231a70bc5f19bb9b3842b73 /config.h.win32.in | |
parent | 45da8bf045f6cb24973b3778d0c8abd0d7b01294 (diff) | |
download | gtk+-064f4db0129b3fd845eb221b099e8638fd32e873.tar.gz |
Update config.h.win32.in for sincos()
There was an added check in configure.ac for sincos() for gtkgears.c, where
that function is actually a GCC- and glibc-specific extension, which is
not available on Windows. Reflect on this in config.h.win32.in for the
Visual Studio/Windows builds.
Diffstat (limited to 'config.h.win32.in')
-rw-r--r-- | config.h.win32.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/config.h.win32.in b/config.h.win32.in index 1cfb8e93e7..34f05c25db 100644 --- a/config.h.win32.in +++ b/config.h.win32.in @@ -141,6 +141,9 @@ #define HAVE_ROUND 1 #endif +/* Define to 1 if sincos() is available */ +/* #undef HAVE_SINCOS */ + /* Have the sockaddr_un.sun_len member */ /* #undef HAVE_SOCKADDR_UN_SUN_LEN */ |