c4380ced32
This reverts most of commit 4c5b475278
and just keeps the OutputDebugStringA() call unconditionally.
Change-Id: Ia838052b3147ca2d66c7d28b04eadd9700244669
Reviewed-on: https://gerrit.libreoffice.org/54029
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
16 lines
330 B
C
16 lines
330 B
C
/*
|
|
* General configuration settings for various options.
|
|
*/
|
|
|
|
#ifndef CONFIG_OPTIONS_H
|
|
#define CONFIG_OPTIONS_H
|
|
|
|
/*
|
|
* Whether we want to link as many object files as possible into one big object.
|
|
* True in case of --enable-lto or --enable-mergelibs.
|
|
*/
|
|
#define STATIC_LINKING 0
|
|
|
|
#define ENABLE_RUNTIME_OPTIMIZATIONS 0
|
|
|
|
#endif
|