diff --git a/configure b/configure index 533e33b..18c0fc5 100755 --- a/configure +++ b/configure @@ -230,6 +230,12 @@ main() { } EOF +test_compile issetugid issetugid.o < */ + +/* + * XXX: This is not an implementation of issetugid but since this call is made + * to check on how to use pledge() and pledge is not available on any of the + * systems we target, we can safely use a dummy version. + */ + +int +issetugid(void) +{ + return 0; +}