anjuta r4499 - in trunk: . plugins/class-inheritance plugins/symbol-db



Author: mcora
Date: Sun Dec 28 10:52:54 2008
New Revision: 4499
URL: http://svn.gnome.org/viewvc/anjuta?rev=4499&view=rev

Log:
	* AUTHORS: added Carl-Anton Ingmarsson.
	* plugins/class-inheritance/Makefile.am:
	added G_LOG_DOMAIN

	* plugins/symbol-db/symbol-db-system.c
	(sdb_system_get_normalized_cflags):
	fixed #565823 â symbol-db hardcodes /usr/include for header files

Modified:
   trunk/AUTHORS
   trunk/ChangeLog
   trunk/plugins/class-inheritance/Makefile.am
   trunk/plugins/symbol-db/symbol-db-system.c

Modified: trunk/AUTHORS
==============================================================================
--- trunk/AUTHORS	(original)
+++ trunk/AUTHORS	Sun Dec 28 10:52:54 2008
@@ -51,6 +51,7 @@
 	Armin Burgmeier  <armin arbur net>
 	Benke LÃzlà  <decike freemail hu>
 	BolesÅaw KulbabiÅski <bolekk gmail com>
+	Carl-Anton Ingmarsson <ca ingmarsson gmail com>
 	Chris Woodruff  <cwoodruff openpenguin com> (US)
 	Cygwin Ports maintainer  <yselkowitz users sourceforge net>
 	Dan Elphick  <dre00r ecs soton ac uk> (United Kingdom)

Modified: trunk/plugins/class-inheritance/Makefile.am
==============================================================================
--- trunk/plugins/class-inheritance/Makefile.am	(original)
+++ trunk/plugins/class-inheritance/Makefile.am	Sun Dec 28 10:52:54 2008
@@ -28,7 +28,8 @@
 	$(WARN_CFLAGS) \
 	$(GDL_CFLAGS) \
 	$(DEPRECATED_FLAGS) \
-	$(GRAPHVIZ_CFLAGS)
+	$(GRAPHVIZ_CFLAGS) \
+	-DG_LOG_DOMAIN=\"libanjuta-class-inheritance\"
 
 # Where to install the plugin
 plugindir = $(anjuta_plugin_dir)

Modified: trunk/plugins/symbol-db/symbol-db-system.c
==============================================================================
--- trunk/plugins/symbol-db/symbol-db-system.c	(original)
+++ trunk/plugins/symbol-db/symbol-db-system.c	Sun Dec 28 10:52:54 2008
@@ -242,7 +242,7 @@
 	while ((curr_flag = flags[i++]) != NULL)
 	{
 		/* '-I/usr/include/gimp-2.0' would be good, but '/usr/include/' wouldn't. */
-		if (g_regex_match_simple ("\\.*/usr/include/\\w+", curr_flag, 0, 0) == TRUE)
+		if (g_regex_match_simple ("\\.*/include/\\w+", curr_flag, 0, 0) == TRUE)
 		{
 			/* FIXME the +2. It's to skip the -I */
 			DEBUG_PRINT ("adding %s to good_flags", curr_flag +2);



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]