Hi all, In OpenVPN 2.0.5, the following patch is necessary to compile manage.c with Sun Studio 9. Without it, the resulting symbol will be undefined.
******************************************************************************** --- manage.c.orig 2005-11-01 05:06:11.000000000 -0600 +++ manage.c 2005-11-22 13:14:00.420287000 -0600 @@ -1564,7 +1564,7 @@ #endif -inline bool +static inline bool man_standalone_ok (const struct management *man) { return !man->settings.management_over_tunnel && man->connection.state != MS_INITIAL; ******************************************************************************** There are 'static inline bool's all over the code, but only this one particular 'inline bool'. Perhaps it was just a mistype. Please CC me on any additional correspondence as I am not on the mailing list. Thanks! David -- David Stipp <dst...@coolhack.net>