Commit Graph

82 Commits

Author SHA1 Message Date
ajacoutot
477a45da5b WANTLIB: pcre -> pcre2-8 after recent glib2 update. 2022-11-05 17:07:21 +00:00
ajacoutot
25de91b267 Remove jasper@ from MAINTAINER; I am the sole hobbit nowadays...
Discussed with jasper@
2022-11-04 09:14:21 +00:00
sthen
08bfef4cac sync WANTLIB 2022-03-31 16:38:31 +00:00
naddy
21f1bb8ad8 drop RCS Ids 2022-03-11 20:15:18 +00:00
sthen
0a5b5bddee replace simple PERMIT_PACKAGE_CDROM=Yes with PERMIT_PACKAGE=Yes 2019-07-12 20:50:46 +00:00
jasper
f49b900bc9 update to gtksourceview3-3.24.11 2019-05-08 01:02:29 +00:00
jasper
8f56f3d52f update to gtksourceview3-3.24.10 2019-03-16 11:53:03 +00:00
jasper
36d9067846 update to gtksourceview3-3.24.9 2018-09-06 19:48:35 +00:00
jasper
499814fe53 update to gtksourceview3-3.24.8 2018-06-21 18:09:25 +00:00
jasper
2b1924f432 add PORTROACH annotation to limit it to ^3 2018-04-23 13:45:20 +00:00
jasper
a49ddf6b6e remove unneeded BDEP on itstool, while configure checks for it,
it's not actually used by the build process anymore
2018-04-23 13:37:18 +00:00
jasper
576b4b938a update to gtksourceview-3.24.7 2018-03-14 20:33:13 +00:00
jasper
c76c0cb546 update to gtksourceview-3.24.6 2017-12-10 12:27:38 +00:00
naddy
1a87aebd2d mechanical replacement of the gettext module 2017-11-21 00:12:59 +00:00
sthen
cd095cec5e Handle pthread-stubs removal. 2017-10-23 17:11:02 +00:00
jasper
9bd2017fed update to gtksourceview-3.24.5 2017-10-07 09:43:39 +00:00
robert
d267cd02ca Unbreak autoconf checks with clang by not using nested functions
in the checks.

Someone clearly did not read the autoconf documentation because
using the following functions with a function declaration inside
the body will end up declaring a function inside a function.

- AC_TRY_COMPILE( [], [ int main() { return 0; } ],
- AC_LANG_PROGRAM([[]], [[int main (void) { return 0; }]])],
- AC_TRY_LINK([], [int main (void) { return 0; }],

Result:

int
main ()
{
int main (void) { return 0; }
  ;
  return 0;
}

nested functions is a gcc extension which is not supported by
clang.

test.c:4:17: error: function definition is not allowed here
int main (void) { return 0; }
                ^
1 error generated.

This causes tests to fail in the configure scripts resulting in
missing compile and link time flags from the builds.

This resulted in weird behaviour of several software, like gnome
hanging completely due to gtk+3 not being built properly.

This change intrudces the following fixes:

- remove int main() declaration from AC_TRY_COMPILE, AC_LANG_PROGRAM, AC_TRY_LINK
  as it comes with a declaration already, and people misused them

- change to use AC_LANG_SOURCE when needed in case a complete source block is specified

Most of the changes are in configure.(ac|in), however there were some cases
where autoconf is either broken or the build failed because of an autoconf
generated configure script. Everytihng else is switched to autoconf, so
the maintainers can go ahead and upstream these diffs.

There are more to come, we are continously checking the tree for these issues
and in the future the infrastructure will error if such a case is found.
2017-09-25 09:16:12 +00:00
jasper
a22c257c9c update to gtksourceview-3.24.4 2017-09-06 17:14:29 +00:00
jasper
49241dc9df update to gtksourceview-3.24.3 2017-06-22 20:09:17 +00:00
jasper
292600dbe4 update to gtksourceview3-3.24.2 2017-05-27 13:55:36 +00:00
jasper
03b6dd313e update to gtksourceview-3.24.1 2017-04-17 08:09:57 +00:00
jasper
6fb1121f8d update to gtksourceview-3.22.2 2016-11-27 11:39:34 +00:00
jasper
a16481c410 update to gtksourceview3-3.22.1 2016-11-06 12:43:33 +00:00
jasper
dad8881e67 update to gtksourceview-3.22.0 2016-10-30 16:12:19 +00:00
jasper
3b0d8306ee update to gtksourceview-3.20.4 2016-06-27 11:07:32 +00:00
jasper
bfdbfd08fc update to gtksourceview3-3.20.3 2016-05-08 18:39:06 +00:00
jasper
7f98b0eab3 update to gtksourceview-3.20.2 2016-04-25 14:24:03 +00:00
jasper
39c0e77aef update to gtksourceview-3.18.2 2016-01-15 07:56:45 +00:00
jasper
c713351bde update to gtksourceview-3.18.1 2015-10-11 10:03:19 +00:00
jasper
ddc714dfff update to gtksourceview-3.18.0 2015-10-09 06:58:04 +00:00
ajacoutot
5b82703d86 Bump after libepoxy moved from ports to xenocara. 2015-04-15 09:40:52 +00:00
jasper
6c2b0cbb7a update to gtksourceview3-3.16.1 2015-04-12 11:55:42 +00:00
ajacoutot
aa988913b0 Bump after the recent changes in packaging dbus and dconf. 2015-04-04 09:20:59 +00:00
jasper
725184476c update to gtksourceview-3.16.0 2015-04-03 11:53:43 +00:00
jasper
b6b0e69730 update to gtksourceview3-3.14.3 2015-01-07 15:59:03 +00:00
jasper
585046a2f7 update to gtksourceview-3.14.2 2014-11-13 14:41:49 +00:00
jasper
fcf83718e8 update to gtksourceview3-3.14.1 2014-10-15 10:08:16 +00:00
jasper
9f8bacd264 update to gtksourceview-3.14.0 2014-10-05 12:44:43 +00:00
jasper
a125a5b791 update to gtksourceview3-3.12.3 2014-08-21 08:18:58 +00:00
jasper
c09cf951dc update to gtksourceview3-3.12.2 2014-05-12 12:48:13 +00:00
jasper
72b43d2b30 update to gtksourceview3-3.12.1 2014-04-15 07:10:56 +00:00
jasper
012f7978a4 cleanup double spaces and sort MODGNOME_TOOLS 2014-04-02 09:36:09 +00:00
jasper
43b19ca734 merge various MODGNOME_TOOLS lines into a single line (or two if it would
exceed 80 chars); no functional change intended..
2014-04-01 18:06:28 +00:00
jasper
2100c2cdff start to make MODGNOME_TOOLS resemble the name of the tools actually used.
rename 'gi' to 'gobject-introspection'.

discussed with aja@
2014-04-01 15:31:45 +00:00
jasper
3e7e38ce80 update to gtksourceview3-3.12.0 2014-03-27 12:14:26 +00:00
jasper
44d34b566b update to gtksourceview3-3.10.2 2014-01-27 17:58:34 +00:00
jasper
76f65fe4e4 update to gtksourceview3-3.10.1 2013-10-21 15:25:11 +00:00
ajacoutot
ea93efd05f Remove hardcoded HOMEPAGE and use the one from the x11/gnome MODULE
instead. It is just too hard to maintain a coherent list of still
reachable homepages for GNOME projects so use wiki.gnome.org which is
the entry point for *all* GNOME apps.
2013-09-28 08:50:34 +00:00
jasper
cb6b763a11 update to gtksourceview-3.10.0 2013-09-27 07:38:44 +00:00
jasper
7fc7079813 update to gtksourceview3-3.8.2 2013-07-07 18:52:56 +00:00