Branch: refs/heads/master
Author: Enrico Tröger <enrico.troeger(a)uvena.de>
Committer: Enrico Tröger <enrico.troeger(a)uvena.de>
Date: Fri, 21 Nov 2014 09:50:03 UTC
Commit: 9718f15ea59235dced018938be31bcf83e6412e2
https://github.com/geany/geany-plugins/commit/9718f15ea59235dced018938be31b…
Log Message:
-----------
Fix bug tracker URL
Modified Paths:
--------------
spellcheck/README
Modified: spellcheck/README
2 lines changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -93,4 +93,4 @@ Requirements
Ideas, questions, patches and bug reports
-----------------------------------------
Send it to me at enrico(dot)troeger(at)uvena(dot)de
-or report them at http://sourceforge.net/tracker/?group_id=222729.
+or report them at http://sourceforge.net/p/geany-plugins/bugs/.
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: Enrico Tröger <enrico.troeger(a)uvena.de>
Committer: Enrico Tröger <enrico.troeger(a)uvena.de>
Date: Sun, 09 Nov 2014 13:13:43 UTC
Commit: ec93784c7f8c5e95d58c1f28b7c61d88ac7dbd37
https://github.com/geany/geany-plugins/commit/ec93784c7f8c5e95d58c1f28b7c61…
Log Message:
-----------
Set -O2 compiler flag by default for gcc
But only if no other optimization flags could be found.
Modified Paths:
--------------
wscript
Modified: wscript
2 lines changed, 2 insertions(+), 0 deletions(-)
===================================================================
@@ -114,6 +114,8 @@ def configure(conf):
setup_makefile(conf)
conf.write_config_header('config.h')
+ if conf.env['CC_NAME'] == 'gcc' and '-O' not in ''.join(conf.env['CFLAGS']):
+ conf.env.append_value('CFLAGS', ['-O2'])
# enable debug when compiling from VCS
if revision is not None:
conf.env.append_value('CFLAGS', '-g -DDEBUG'.split()) # -DGEANY_DISABLE_DEPRECATED
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).