if (PR_SUCCESS != PR_Access(saslpath, PR_ACCESS_EXISTS)) {
#ifdef CPU_arm
/* the 64-bit ARMv8 architecture. */
- saslpath = "/usr/lib/aarch64-linux-gnu";
+ saslpath = "/usr/lib/aarch64-linux-gnu/sasl2";
#else
/* Try x86_64 gnu triplet */
- saslpath = "/usr/lib/x86_64-linux-gnu";
+ saslpath = "/usr/lib/x86_64-linux-gnu/sasl2";
#endif
}
#else
if (PR_SUCCESS != PR_Access(saslpath, PR_ACCESS_EXISTS)) {
#ifdef CPU_arm
/* the latest 32 bit ARM architecture using the hard-float version of EABI. */
- saslpath = "/usr/lib/arm-linux-gnueabihf";
+ saslpath = "/usr/lib/arm-linux-gnueabihf/sasl2";
if (PR_SUCCESS != PR_Access(saslpath, PR_ACCESS_EXISTS)) {
/* the 32 bit ARM architecture of EABI. */
- saslpath = "/usr/lib/arm-linux-gnueabi";
+ saslpath = "/usr/lib/arm-linux-gnueabi/sasl2";
}
#else
/* Try i386 gnu triplet */
- saslpath = "/usr/lib/i386-linux-gnu";
+ saslpath = "/usr/lib/i386-linux-gnu/sasl2";
#endif
}
#endif