Use rel2abs() on VMS, rather than realpath()
authorRichard Levitte <levitte@openssl.org>
Tue, 9 Feb 2016 09:15:13 +0000 (10:15 +0100)
committerRichard Levitte <levitte@openssl.org>
Tue, 9 Feb 2016 12:14:33 +0000 (13:14 +0100)
commitec182ef044abe06a2bd9a898d51f5f367e1c48dd
tree7670070645ddbcf9bd0557b10be4711200b6c20b
parent920def7401f0cd68a2040409c134af3f3db7453b
Use rel2abs() on VMS, rather than realpath()

It seems realpath() is quite buggy on VMS, or will at least give quite
surprising results.  On the other hand, realpath() is the better on
Unix to clean out clutter like foo/../bar on Unix.

So we make out own function to get the absolute directory for a given
input, and use rel2abs() or realpath() depending on the platform
Configure runs on.

Issue reported by Steven M. Schweda <sms@antinode.info>

Reviewed-by: Andy Polyakov <appro@openssl.org>
Configure