gridcf / gct

Grid Community Toolkit
Apache License 2.0
46 stars 30 forks source link

configure.ac: Avoid calling the undeclared exit function #211

Closed fweimer-rh closed 1 year ago

fweimer-rh commented 1 year ago

The SASL and LDAP version checks called exit without including . Future compilers will not support implicit function declarations, causing these two checks to fail unconditionally. Instead, return directly from the main function.

Related to:

Alternative to globus/globus-toolkit#132.