summaryrefslogtreecommitdiff
path: root/src/mongo/platform/strcasestr.h
Commit message (Collapse)AuthorAgeFilesLines
* SERVER-37651 Update header files with new licenseRamon Fernandez2018-10-221-14/+17
|
* SERVER-18579: Clang-Format - reformat code, no comment reflowMark Benvenuto2015-06-201-3/+3
|
* SERVER-17552 Use correct OS detection macros, rather than our ownAndrew Morrow2015-03-111-1/+1
|
* SERVER-13264 Move Apache-licensed files to AGPLIan Whalen2014-05-161-9/+21
| | | | Also update generators.
* SERVER-9786 Link to strcasestr at runtime for SolarisTad Marshall2013-06-171-0/+35
For the Solaris/SmartOS build, do not make direct calls to strcasestr, which is present in Solaris 11 but not in Solaris 10. Instead, see if it is available in a loaded library (which will be libc.so.1) at runtime and either call it or call an emulation. Use the emulated version on Windows, which is also missing this function.