suresh p wrote: > > The command that I run is below : > > env CPPFLAGS="-I/usr/local/include/openssl > -I/usr/local/openldap/include" LDFLAGS="-L/usr/local/lib -L/usr/lib/ > -L/usr/local/openldap/lib/ " env > CPPFLAGS="-I/usr/local/include/openssl -I/usr/local/openldap/include" > LDFLAGS="-L/usr/local/lib -L/usr/local/lib/" ./configure > --with-authldap --without-authmysql --without-authpgsql > --without-authcustom --without-authcram --with-ssl >
You're calling "env" twice. The second set of arguments is overwriting the first set. Use: env CPPFLAGS="-I/usr/local/include/openssl \ -I/usr/local/openldap/include" \ LDFLAGS="-L/usr/local/lib \ -L/usr/local/openldap/lib/ " \ ./configure You don't need to specify which modules to build. Modules can be selected in the configuration file after installation. "--with-ssl" doesn't look like a setting that authlib's configure uses, either. ------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ courier-users mailing list [email protected] Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users
