SF.net SVN: geany:[5376] trunk
eht16 at users.sourceforge.net
eht16 at xxxxx
Sun Nov 7 15:40:18 UTC 2010
Revision: 5376
http://geany.svn.sourceforge.net/geany/?rev=5376&view=rev
Author: eht16
Date: 2010-11-07 15:40:18 +0000 (Sun, 07 Nov 2010)
Log Message:
-----------
Show which regex implementation is used.
Modified Paths:
--------------
trunk/ChangeLog
trunk/wscript
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2010-11-07 15:32:37 UTC (rev 5375)
+++ trunk/ChangeLog 2010-11-07 15:40:18 UTC (rev 5376)
@@ -5,6 +5,7 @@
is available and to be used regardless of the USE_GIO_FILEMON flag.
* wscript:
Fix installation of template files.
+ Show which regex implementation is used.
* src/ui_utils.c:
Use non-GIO mime-type icon lookup if GIO lookup fails.
* autogen.sh:
Modified: trunk/wscript
===================================================================
--- trunk/wscript 2010-11-07 15:32:37 UTC (rev 5375)
+++ trunk/wscript 2010-11-07 15:40:18 UTC (rev 5376)
@@ -188,7 +188,6 @@
if conf.env['HAVE_REGCOMP'] != 1 or conf.env['HAVE_REGEX_H'] != 1:
conf.define('HAVE_REGCOMP', 1, 0)
conf.define('USE_INCLUDED_REGEX', 1, 0)
- Utils.pprint('YELLOW', 'Using included GNU regex library.')
conf.check(function_name='fgetpos', header_name='stdio.h')
conf.check(function_name='ftruncate', header_name='unistd.h')
@@ -284,6 +283,7 @@
print_message(conf, 'Build with GTK printing support', have_gtk_210 and 'yes' or 'no')
print_message(conf, 'Build with plugin support', Options.options.no_plugins and 'no' or 'yes')
print_message(conf, 'Use virtual terminal support', Options.options.no_vte and 'no' or 'yes')
+ print_message(conf, 'GNU regex library', conf.env['USE_INCLUDED_REGEX'] and 'built-in' or 'system')
if svn_rev != '-1':
print_message(conf, 'Compiling Subversion revision', svn_rev)
conf.env.append_value('CCFLAGS', '-g -DGEANY_DEBUG'.split())
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Commits
mailing list