summaryrefslogtreecommitdiff
path: root/crypto/dso/dso_dlfcn.c
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>2006-04-11 20:05:23 +0000
committerUlf Möller <ulf@openssl.org>2006-04-11 20:05:23 +0000
commit9555339007eb4557be991ce61c1bc33faa05252a (patch)
treee446214a32966a11f6647348fec1c6a459d2e718 /crypto/dso/dso_dlfcn.c
parent2fbe371f53451ef165331b10006d61e7d77a09c7 (diff)
downloadopenssl-new-9555339007eb4557be991ce61c1bc33faa05252a.tar.gz
improve make dclean to remove files generated during build
PR: 1308 Submitted by: Oliver Tappe <zooey@hirschkaefer.de> Reviewed by: Ulf Moeller
Diffstat (limited to 'crypto/dso/dso_dlfcn.c')
-rw-r--r--crypto/dso/dso_dlfcn.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/crypto/dso/dso_dlfcn.c b/crypto/dso/dso_dlfcn.c
index c5edaec4a0..ceeda005f5 100644
--- a/crypto/dso/dso_dlfcn.c
+++ b/crypto/dso/dso_dlfcn.c
@@ -422,6 +422,7 @@ static int dladdr(void *address, Dl_info *dl)
static int dlfcn_pathbyaddr(void *addr,char *path,int sz)
{
+#ifdef HAVE_DLINFO
Dl_info dli;
int len;
@@ -443,6 +444,7 @@ static int dlfcn_pathbyaddr(void *addr,char *path,int sz)
}
ERR_add_error_data(4, "dlfcn_pathbyaddr(): ", dlerror());
+#endif
return -1;
}