sbcl: update to 2.5.1
[oi-userland.git] / components / library / poppler / patches / 01-stdc_want_lib_ext1.patch
blobd0f9f71014980324b23ce4c97e55e4225f3bb2ae
1 perf-test.cc file is missing __STDC_WANT_LIB_EXT1__ option to have str???_s
2 functions defined.
4 This is a Solaris specific patch.
6 --- a/test/perf-test.cc 2020-10-01 21:44:58.000000000 +0200
7 +++ b/test/perf-test.cc 2020-11-10 09:23:38.566053281 +0100
8 @@ -18,6 +18,9 @@
9 of a previous run.
12 +// str*_s() functions needs this to be defined.
13 +#define __STDC_WANT_LIB_EXT1__ 1
15 #ifdef _MSC_VER
16 // this sucks but I don't know any other way
17 # pragma comment(linker, "/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='x86' publicKeyToken='6595b64144ccf1df' language='*'\"")