14 Commits

Author SHA1 Message Date
sthen
0a5b5bddee replace simple PERMIT_PACKAGE_CDROM=Yes with PERMIT_PACKAGE=Yes 2019-07-12 20:50:46 +00:00
sthen
f548d95863 sync some WANTLIBs 2019-06-13 15:48:50 +00:00
sthen
cd095cec5e Handle pthread-stubs removal. 2017-10-23 17:11:02 +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
jca
305fe2d8a6 Drop the gettext module. 2016-08-28 17:44:09 +00:00
sthen
b0afd3bc40 remove bcallah as maintainer of his ports, at his request 2015-08-25 13:18:24 +00:00
bcallah
b015301ca0 Move all my distfiles from devio.us to NYC*BUG. This results in faster and
more reliable hosting. This is just tarball moving and I've verified that
all distinfos have remained the same.
2015-03-17 23:43:25 +00:00
bcallah
25d0c4f254 Use MODULES=x11/gnome for ease of maintenance and Makefile simplification.
Prompted by and ok landry@
2014-07-09 20:49:36 +00:00
bcallah
38f9f15def Old HOMEPAGE has been gone for some time now, so change to the GitHub
project page.
2013-11-25 21:40:39 +00:00
bcallah
1b025b3d23 Keybinder's HOMEPAGE, which was hosting source, appears to be permanently
down. Host the source myself, but leave the HOMEPAGE; Google doesn't
suggest it moved anywhere, so people can check it with the wayback machine
if they're interested in viewing the HOMEPAGE.
Bump REVISIONs.
2013-06-15 03:08:31 +00:00
ajacoutot
3de9758da8 Sync WANTLIB and bump after the recent harfbuzz update; icu libs are not
needed anymore. This is a mecanical commit, there might be dragons :-)
2013-05-31 15:34:39 +00:00
ajacoutot
58f1a6f9f6 USE_LIBTOOL=Yes is the default now. 2013-03-21 08:45:11 +00:00
espie
eae66e4a7b PERMIT_* / REGRESS->TEST sweep 2013-03-11 11:35:43 +00:00
bcallah
8bdf0b6207 Import x11/keybinder. A library for registering keyboard shortcuts.
Help and thanks to landry@ and aja@.
ok landry@ aja@
2013-01-29 19:16:30 +00:00