diff options
author | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2005-08-04 11:01:38 +0000 |
---|---|---|
committer | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2005-08-04 11:01:38 +0000 |
commit | 4f46088c4704534c10487323e0bc0b9d73491b81 (patch) | |
tree | ee2c77673044eabce60393a54413d3e5769779dc /configure.in | |
parent | 08638d7460a3d5180ba1825cca37ff4ec04b7191 (diff) |
configure.in: add -mms-bitfields to CFLAGS if the target is MinGW.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@466 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 162eb1e2..4f322d6a 100644 --- a/configure.in +++ b/configure.in @@ -57,6 +57,9 @@ case "$target" in *-darwin*) CFLAGS="$CFLAGS -no-cpp-precomp -fno-common" ;; +*-*-mingw*) + CFLAGS="$CFLAGS -mms-bitfields" + ;; esac dnl Checks for libraries. |