From e644e70061c1fc5330ac062ec41e5949d724365f Mon Sep 17 00:00:00 2001 From: Memphis Date: Wed, 8 Jun 2011 17:19:32 +0200 Subject: [PATCH] - add configure option for disabling the call to ldconfig on make install - this is needed because we use a prefix which is writable by the user - calling ldconfig would need root rights which we have to avoid... --- configure.ac | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/configure.ac b/configure.ac index fab196c..9973c92 100644 --- a/configure.ac +++ b/configure.ac @@ -60,6 +60,10 @@ AC_ARG_WITH([examples], ) AC_SUBST(ENABLE_EXAMPLES) +AC_ARG_WITH([ldconfig], + [ --without-ldconfig Disable call of ldconfig on make install], + [ldconfig='echo ldconfig disabled']) + AC_CONFIG_HEADER(config.h) EXTRA_OBJ="" -- 2.34.1