aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2014-04-25 09:53:58 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2014-04-25 09:53:58 +0000
commit457ef10f60c3079df2e7eb5896f940a57b78ac83 (patch)
tree59b8ad4963e7427d12690fad02629523514a0c17
parent9fbbe97c41650969de04375fb400a81dcc024415 (diff)
makewin32.sh: added -static-libgcc option to prevent the dependency to libgcc_s_dw2-1.dll.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@3403 ee746299-78ed-0310-b773-934348b2243d
-rw-r--r--ChangeLog5
-rwxr-xr-xmakewin32.sh2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index afa092e6..116cdfba 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
2014-04-25
+ * makewin32.sh: added -static-libgcc option to prevent the dependency
+ to libgcc_s_dw2-1.dll.
+
+2014-04-25
+
* src/notificationwindow.c: set opacity on mouse over.
2014-04-24
diff --git a/makewin32.sh b/makewin32.sh
index d18f0bfc..e65e7dda 100755
--- a/makewin32.sh
+++ b/makewin32.sh
@@ -10,7 +10,7 @@ export C_INCLUDE_PATH=$C_INCLUDE_PATH:/target/include:/usr/local/include
--with-localedir=share/locale \
--with-themedir=share/icons \
--enable-oniguruma --enable-threads \
- 'CC=gcc -mthreads -mtune=core2' CFLAGS=-O3 \
+ 'CC=gcc -mthreads -mtune=core2 -static-libgcc' CFLAGS=-O3 \
&& make \
&& make install-strip \
&& (cd plugin/attachment_tool; make install-plugin) \