aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2016-11-14 23:01:07 -0500
committerMike Frysinger <vapier@gentoo.org>2016-11-14 23:01:07 -0500
commit7aeb66e8ab261007a95fd0fee0f573d6aede496d (patch)
tree990dff7100106b73171cd0be58c5d2626f477019 /paxldso.h
parentpaxldso: fix building when ldso support is disabled (diff)
downloadpax-utils-7aeb66e8ab261007a95fd0fee0f573d6aede496d.tar.gz
pax-utils-7aeb66e8ab261007a95fd0fee0f573d6aede496d.tar.bz2
pax-utils-7aeb66e8ab261007a95fd0fee0f573d6aede496d.zip
paxldso: always expose ldpaths array
This fixes building when ldso config logic is unavailable since consumers (like scanelf) always attempt to walk the array. Changing the code to be an empty array by default so it won't suck up too much space when support isn't available.
Diffstat (limited to 'paxldso.h')
-rw-r--r--paxldso.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/paxldso.h b/paxldso.h
index bbf8852..1517e5e 100644
--- a/paxldso.h
+++ b/paxldso.h
@@ -49,8 +49,9 @@ static inline char *ldso_cache_lookup_lib(elfobj *elf, const char *fname)
# define PAX_LDSO_CONFIG 1
#endif
-#if PAX_LDSO_CONFIG
+/* Consumers refer to ldpaths directly, so can't hide its def. */
extern array_t *ldpaths;
+#if PAX_LDSO_CONFIG
extern int ldso_config_load(const char *fname);
#else
static inline int ldso_config_load(const char *fname)