cvs commit: ports/editors/bed Makefile
Kris Kennaway
kris at FreeBSD.org
Sun Jun 17 06:27:46 UTC 2007
kris 2007-06-17 06:27:45 UTC
FreeBSD ports repository
Modified files:
editors/bed Makefile
Log:
This port contains an incorrect configure test that tries to test for the
pthread_create() function by doing the following
| char pthread_create ();
| int
| main ()
| {
| pthread_create ();
| ;
| return 0;
| }
This is completely bogus (pthread_create() requires arguments), so this
causes undefined behaviour. One such undefined behaviour seen in practise
is an infinite loop. Disable the port until someone cares to fix this.
Also shuffle the rxvt PATCH_DEPENDS (!) later, to give a chance for the
WITHOUT_X11 to be set. This also looks pretty bogus, rxvt in fact does not
appear to be needed for patching.
Revision Changes Path
1.21 +6 -4 ports/editors/bed/Makefile
More information about the cvs-all
mailing list