diff options
author | Badlop <badlop@process-one.net> | 2010-08-05 20:27:12 +0200 |
---|---|---|
committer | Badlop <badlop@process-one.net> | 2010-08-05 20:27:12 +0200 |
commit | 4ed00c3d1fff5e73f0f1d8abdcfb90cc343d6a95 (patch) | |
tree | 4f95e69862566288209934f1b38071a8c84471c2 /src | |
parent | Loading ASN.1 driver explicitly to avoid races in LDAP (EJAB-1284) (diff) |
Fix detection of Erlang R11 and older (thanks to Mathias Ertl)(EJAB-1287)
Diffstat (limited to 'src')
-rw-r--r-- | src/aclocal.m4 | 2 | ||||
-rwxr-xr-x | src/configure | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/aclocal.m4 b/src/aclocal.m4 index 09b166b99..5d9dbca60 100644 --- a/src/aclocal.m4 +++ b/src/aclocal.m4 @@ -134,7 +134,7 @@ ssldef() -> if OTP >= "R14" -> "-DSSL40\n"; OTP >= "R12" -> "-DSSL39\n"; - true -> "" + true -> "\n" end. %% return physical architecture based on OS/Processor diff --git a/src/configure b/src/configure index f8fd718a2..49a11b5e4 100755 --- a/src/configure +++ b/src/configure @@ -3224,7 +3224,7 @@ ssldef() -> if OTP >= "R14" -> "-DSSL40\n"; OTP >= "R12" -> "-DSSL39\n"; - true -> "" + true -> "\n" end. %% return physical architecture based on OS/Processor |