Revision: 4801 http://geany.svn.sourceforge.net/geany/?rev=4801&view=rev Author: eht16 Date: 2010-04-05 21:48:33 +0000 (Mon, 05 Apr 2010)
Log Message: ----------- Adjust Perl Compile command to use the -c command line option to perform a syntax check instead of using the deprecated ByteCompile module.
Modified Paths: -------------- trunk/ChangeLog trunk/data/filetypes.perl
Modified: trunk/ChangeLog =================================================================== --- trunk/ChangeLog 2010-04-05 11:44:56 UTC (rev 4800) +++ trunk/ChangeLog 2010-04-05 21:48:33 UTC (rev 4801) @@ -1,3 +1,11 @@ +2010-04-05 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de> + + * data/filetypes.perl: + Adjust Perl Compile command to use the -c command + line option to perform a syntax check instead of using the + deprecated ByteCompile module. + + 2010-04-05 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
* src/keybindings.c, src/keybindings.h, doc/plugins.dox:
Modified: trunk/data/filetypes.perl =================================================================== --- trunk/data/filetypes.perl 2010-04-05 11:44:56 UTC (rev 4800) +++ trunk/data/filetypes.perl 2010-04-05 21:48:33 UTC (rev 4801) @@ -72,13 +72,9 @@ # %e will be replaced by the filename without extension # (use only one of it at one time)
-# B - The Perl Bytecode Compiler (requires Perl 5.8 or higher) -compiler=perl -MO=Bytecode,-H,-o"%f"c "%f" +compiler=perl -cw "%f"
# alternatively use perlcc #compiler=perlcc -o "%e" "%f"
-# instead of actual compiling, just run a nice syntax check -#compiler=perl -c "%f" - run_cmd=perl "%f"
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.