On 2023/09/27 15:49, Theo Buehler wrote: > This is a simple OpenVPN plugin that a client of henning would like to > have. The released version 1.0 is not compatible with OpenSSL 1.1 API, > which is not a great sign, but the code doesn't look too terrible. > > It ships an .so. Not sure if that needs to be versioned and if so, how.
It's just a module that gets dlopen()'d by openvpn, no version needed. The .a is of no use at all - "LIBTOOL_FLAGS= --tag=disable-static" skips building it. It's unlikely that the .la will be useful either - the only plugin loader I've seen that wants that is openldap's which uses ltdl. So I think that can probably be skipped too (no fancy way, but rm or @comment would do). I would avoid autoconf 2.68 unless regenerating a script which was originally generated with 2.68 (and even then I might go for something newer if it works) - it was a short lived fairly buggy release. I'd go for either of 2.69 or 2.71, they both work fine for this.