aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-08-04 11:01:38 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-08-04 11:01:38 +0000
commit4f46088c4704534c10487323e0bc0b9d73491b81 (patch)
treeee2c77673044eabce60393a54413d3e5769779dc
parent08638d7460a3d5180ba1825cca37ff4ec04b7191 (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
-rw-r--r--ChangeLog4
-rw-r--r--ChangeLog.ja5
-rw-r--r--configure.in3
3 files changed, 12 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 855543db..a3079658 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
2005-08-04
+ * configure.in: add -mms-bitfields to CFLAGS if the target is MinGW.
+
+2005-08-04
+
* src/utils.c: replaced tolower() with g_ascii_tolower().
2005-08-04
diff --git a/ChangeLog.ja b/ChangeLog.ja
index d1149eed..62ee4afa 100644
--- a/ChangeLog.ja
+++ b/ChangeLog.ja
@@ -1,5 +1,10 @@
2005-08-04
+ * configure.in: ターゲットが MinGW の場合は -mms-bitfields を CFLAGS
+ に追加。
+
+2005-08-04
+
* src/utils.c: tolower() を g_ascii_tolower() で置き換えた。
2005-08-04
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.