<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 12pt;
font-family:Calibri
}
--></style></head>
<body class='hmmessage'><div dir='ltr'><span style="font-size: 12pt;">> I am still puzzled why in my case the above "export" statement was </span><br><div>> needed, but anyway...<br><br></div><div>Because a variable setting is only good within the current process; if you do not export (or setenv in C-shells) a variable, the child process(es) will not inherit it.</div><div><br></div><div>When you build software, a lot of child processes get created; it does not normally happen within only one process.</div><div><br></div><div>> <br>> And, if we want to link against the custom ldap libraries:<br>> <br>> CXXFLAGS="${CXXFLAGS} -I/usr/local/openldap/include"; export CXXFLAGS<br>> LDFLAGS="${LDFLAGS} -L/usr/local/openldap/lib64 -lldap -llber"; export <br>> LDFLAGS<br>> %configure <options></div><div><br></div><div>Please add "-rpath /usr/local/openldap/lib64" to your LDFLAGS so that you do not have to resort to LD_LIBRARY_PATH or ld.so.conf hacks.</div><div><br>>     export CPPFLAGS="-DLDAP_DEPRECATED %{optflags}"<br>> <br>> ...??<br>> <br>> What does "-DLDAP_DEPRECATED" signify?<br><br></div><div>It sets the LDAP_DEPRECATED macro, which is likely to have a conditional statement somewhere in the code, like this:</div><div><br></div><div>#ifdef LDAP_DEPRECATED</div><div>...</div><div>...</div><div>...</div><div>#endif</div><div><br></div><div>...or like this:</div><div><br></div><div>#if defined (LDAP_DEPRECATED)</div><div>...</div><div>...</div><div>...</div><div>#endif</div><div><br></div><div>This is used by the C pre-processor (cpp(1)) to decide what to include / omit / expand during the source code pre-processing stage, before that code is passed onto the compiler back end.</div><div><br></div><div>To know exactly what that particular macro setting does, you have to find it in the header or program files and see what logic is in there. The answer is in the code.</div>                                     </div></body>
</html>