summaryrefslogtreecommitdiff
path: root/postgresql
ModeNameSize
-rw-r--r--libpq-parallel-build.patch652logplain
-rw-r--r--makefile.mk2774logplain
-rw-r--r--postgresql-9.1.1-autoreconf.patch16418logplain
-rw-r--r--postgresql-9.1.1-libreoffice.patch3522logplain
-rw-r--r--postgresql-libs-leak.patch1702logplain
-rw-r--r--postgresql-moz-ldap.patch10154logplain
d---------prj103logplain
der'>2019-10-02-Werror,-Wmicrosoft-exception-spec (clang-cl)Stephan Bergmann No idea why that started to show up now, but C:/Program Files (x86)/Windows Kits/10/Include/10.0.17763.0/um/combaseapi.h contains > #define STDMETHOD(method) virtual COM_DECLSPEC_NOTHROW HRESULT STDMETHODCALLTYPE method while C:/Program Files (x86)/Windows Kits/10/Include/10.0.17763.0/um/winnt.h contains > #define STDMETHODIMP HRESULT STDMETHODCALLTYPE which caused failures like > [build CXX] embedserv/source/inprocserv/dllentry.cxx > embedserv/source/inprocserv/dllentry.cxx(261,40): error: 'QueryInterface' is missing exception specification '__attribute__((nothrow))' [-Werror,-Wmicrosoft-exception-spec] > STDMETHODIMP InprocEmbedProvider_Impl::QueryInterface( REFIID riid, void ** ppv ) > ^ > embedserv/source/inprocserv/dllentry.cxx(143,15): note: previous declaration is here > STDMETHOD(QueryInterface)(REFIID riid, void ** ppvObj) override; > ^ Change-Id: I0fe3554c2da4089bf0f883e1132d6f2ee95ae2c3 Reviewed-on: https://gerrit.libreoffice.org/79970 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com> 2017-10-27loplugin:includeform: extensions (Windows)Stephan Bergmann Change-Id: I6619004353fb7e94506e2a75c77b42156f0b6c6d 2016-08-25-Werror,-Wnonportable-include-path (clang-cl)Stephan Bergmann Change-Id: Ia468adf0bea2f7fca9b370ef0ff8b05e34b3ac19 2016-03-04Silence -Werror,-Wnon-virtual-dtor in generated so_activex.h (clang-cl)Stephan Bergmann Change-Id: If9472d25f469030102b26894793ba45ab0fafaa3 2016-03-04-Werror,-Wsign-compareStephan Bergmann Change-Id: Ia7b0518a05cda8881ab6feed9852e9f060813b5c 2016-02-09Remove excess newlinesChris Sherlock A ridiculously fast way of doing this is: for i in $(pcregrep -l -M -r --include='.*[hc]xx$' \ --exclude-dir=workdir --exclude-dir=instdir '^ {3,}' .) do perl -0777 -i -pe 's/^ {3,}/ /gm' $i done Change-Id: Iebb93eccbee9e4fc5c4380474ba595858a27ac2c Reviewed-on: https://gerrit.libreoffice.org/22224 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Chris Sherlock <chris.sherlock79@gmail.com>