head	1.2;
access;
symbols
	pkgsrc-2013Q2:1.2.0.50
	pkgsrc-2013Q2-base:1.2
	pkgsrc-2012Q4:1.2.0.48
	pkgsrc-2012Q4-base:1.2
	pkgsrc-2011Q4:1.2.0.46
	pkgsrc-2011Q4-base:1.2
	pkgsrc-2011Q2:1.2.0.44
	pkgsrc-2011Q2-base:1.2
	pkgsrc-2009Q4:1.2.0.42
	pkgsrc-2009Q4-base:1.2
	pkgsrc-2008Q4:1.2.0.40
	pkgsrc-2008Q4-base:1.2
	pkgsrc-2008Q3:1.2.0.38
	pkgsrc-2008Q3-base:1.2
	cube-native-xorg:1.2.0.36
	cube-native-xorg-base:1.2
	pkgsrc-2008Q2:1.2.0.34
	pkgsrc-2008Q2-base:1.2
	pkgsrc-2008Q1:1.2.0.32
	pkgsrc-2008Q1-base:1.2
	pkgsrc-2007Q4:1.2.0.30
	pkgsrc-2007Q4-base:1.2
	pkgsrc-2007Q3:1.2.0.28
	pkgsrc-2007Q3-base:1.2
	pkgsrc-2007Q2:1.2.0.26
	pkgsrc-2007Q2-base:1.2
	pkgsrc-2007Q1:1.2.0.24
	pkgsrc-2007Q1-base:1.2
	pkgsrc-2006Q4:1.2.0.22
	pkgsrc-2006Q4-base:1.2
	pkgsrc-2006Q3:1.2.0.20
	pkgsrc-2006Q3-base:1.2
	pkgsrc-2006Q2:1.2.0.18
	pkgsrc-2006Q2-base:1.2
	pkgsrc-2006Q1:1.2.0.16
	pkgsrc-2006Q1-base:1.2
	pkgsrc-2005Q4:1.2.0.14
	pkgsrc-2005Q4-base:1.2
	pkgsrc-2005Q3:1.2.0.12
	pkgsrc-2005Q3-base:1.2
	pkgsrc-2005Q2:1.2.0.10
	pkgsrc-2005Q2-base:1.2
	pkgsrc-2005Q1:1.2.0.8
	pkgsrc-2005Q1-base:1.2
	pkgsrc-2004Q4:1.2.0.6
	pkgsrc-2004Q4-base:1.2
	pkgsrc-2004Q3:1.2.0.4
	pkgsrc-2004Q3-base:1.2
	pkgsrc-2004Q2:1.2.0.2
	pkgsrc-2004Q2-base:1.2
	pkgsrc-2004Q1:1.1.0.2
	pkgsrc-2004Q1-base:1.1;
locks; strict;
comment	@# @;


1.2
date	2004.04.01.18.35.00;	author jmmv;	state dead;
branches;
next	1.1;

1.1
date	2004.02.07.15.21.43;	author jmmv;	state Exp;
branches;
next	;


desc
@@


1.2
log
@Update to 1.0.0.  Changes since previous version in pkgsrc:

News in 1.0.0
* Bug fixes and updated translations.

News in 0.9.2
* Bug fixes and updated translations.

News in 0.9.1
* Bug fixes.
* XML and HTML .lang files now highlight strings using simple patterns.
* Beginning of line and end of line are now correctly matched, even if
  the slice of text doesn't include the newlines.
* "Others" style is now deprecated.

News in 0.9.0
* Miscellaneous Bugfixes

News in 0.8.0
* Highlighting spec files for PHP, Verilog, MSIL, C# and SQL.
* Migrated test application to Gtk 2.3 (UI and file selector).
@
text
@$NetBSD: patch-ab,v 1.1 2004/02/07 15:21:43 jmmv Exp $

--- gtksourceview/gnu-regex/regex.h.orig	2003-05-15 09:00:56.000000000 +0200
+++ gtksourceview/gnu-regex/regex.h
@@@@ -22,6 +22,11 @@@@
 #ifndef _REGEX_H
 #define _REGEX_H 1
 
+#define regcomp  gtksourceview_regcomp
+#define regexec  gtksourceview_regexec
+#define regerror gtksourceview_regerror
+#define regfree  gtksourceview_regfree
+
 /* Allow the use in C++ code.  */
 #ifdef __cplusplus
 extern "C" {
@


1.1
log
@Under a system without GNU regex, this package builds an internal copy of
it.  This copy defines the standard regcomp and friends functions, which
are also present in NetBSD.  The problem is that the copy gets linked into
the libgtksourceview shared library and, when loaded into memory, shadows
native regex functions.

The problem exposes itself at least in gedit through gnome-vfs2.  The later
executes regcomp, expecting the native one to be called, but instead the
one from the libgtksourceview library appears, making the program crash.

Apply a patch to ensure these internal GNU regex functions do not colish
with native ones.  Bump PKGREVISION to 8.
@
text
@d1 1
a1 1
$NetBSD$
@

