Hello!

It isn't guaranteed that the user has -lkse, and you don't check for it.


Well  that check is inside a check for FreeBSD, and if it doesn't have
pthread then it should have kse. Or am I missing something?

Your script will not be really robust, because you are making such assumptions. The whole idea is:
* Use pthread if you have it. (and working properly)
* Use kse if you have it. (and working properly)
* Drop the functionality if you don't have any. (unless you really need it)

If you make assumptions that might not be true in the future, you may cause trouble to your users. Of course, 'what to test for?' is always a dilema. (and 'how' is another one)

Andre Caldas.


_______________________________________________
Autoconf mailing list
Autoconf@gnu.org
http://lists.gnu.org/mailman/listinfo/autoconf

Reply via email to