[cairo-commit] cairomm ChangeLog,1.91,1.92 configure.in,1.25,1.26
Jonathon Jongsma
commit at pdx.freedesktop.org
Thu Feb 1 06:20:00 PST 2007
Committed by: jjongsma
Update of /cvs/cairo/cairomm
In directory kemper:/tmp/cvs-serv13328
Modified Files:
ChangeLog configure.in
Log Message:
2007-02-01 Jonathon Jongsma <jonathon.jongsma at gmail.com>
* configure.in: Fixes for building on Cygwin from
yselkowitz at users.sourceforge.net. Closes bug #9726
Index: ChangeLog
===================================================================
RCS file: /cvs/cairo/cairomm/ChangeLog,v
retrieving revision 1.91
retrieving revision 1.92
diff -u -d -r1.91 -r1.92
--- ChangeLog 28 Jan 2007 18:33:28 -0000 1.91
+++ ChangeLog 1 Feb 2007 14:19:54 -0000 1.92
@@ -1,3 +1,8 @@
+2007-02-01 Jonathon Jongsma <jonathon.jongsma at gmail.com>
+
+ * configure.in: Fixes for building on Cygwin from
+ yselkowitz at users.sourceforge.net. Closes bug #9726
+
2007-01-28 Jonathon Jongsma <jonathon.jongsma at gmail.com>
* configure.in: bump rev to 1.2.5
Index: configure.in
===================================================================
RCS file: /cvs/cairo/cairomm/configure.in,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -d -r1.25 -r1.26
--- configure.in 28 Jan 2007 18:33:28 -0000 1.25
+++ configure.in 1 Feb 2007 14:19:54 -0000 1.26
@@ -52,11 +52,23 @@
AC_MSG_RESULT([$platform_win32])
AM_CONDITIONAL(PLATFORM_WIN32, test "$platform_win32" = "yes")
+AC_MSG_CHECKING([for native Win32])
+case "$host" in
+ *-*-mingw*)
+ os_win32=yes
+ ;;
+ *)
+ os_win32=no
+ ;;
+esac
+AC_MSG_RESULT([$os_win32])
+AM_CONDITIONAL(OS_WIN32, test "$os_win32" = "yes")
+
# Ensure MSVC-compatible struct packing convention is used when
# compiling for Win32 with gcc.
# What flag to depends on gcc version: gcc3 uses "-mms-bitfields", while
# gcc2 uses "-fnative-struct".
-if test x"$platform_win32" = xyes; then
+if test x"$os_win32" = xyes; then
if test x"$GCC" = xyes; then
msnative_struct=''
AC_MSG_CHECKING([how to get MSVC-compatible struct packing])
More information about the cairo-commit
mailing list