diff options
author | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2014-04-25 09:53:58 +0000 |
---|---|---|
committer | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2014-04-25 09:53:58 +0000 |
commit | 457ef10f60c3079df2e7eb5896f940a57b78ac83 (patch) | |
tree | 59b8ad4963e7427d12690fad02629523514a0c17 | |
parent | 9fbbe97c41650969de04375fb400a81dcc024415 (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-- | ChangeLog | 5 | ||||
-rwxr-xr-x | makewin32.sh | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -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) \ |