aboutsummaryrefslogtreecommitdiff
path: root/src/include/mhd_options.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/mhd_options.h')
-rw-r--r--src/include/mhd_options.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/mhd_options.h b/src/include/mhd_options.h
index 8d9cedd2..36a5f575 100644
--- a/src/include/mhd_options.h
+++ b/src/include/mhd_options.h
@@ -109,9 +109,9 @@
109#if !defined(MHD_FAVOR_FAST_CODE) && !defined(MHD_FAVOR_SMALL_CODE) 109#if !defined(MHD_FAVOR_FAST_CODE) && !defined(MHD_FAVOR_SMALL_CODE)
110/* Try to detect user preferences */ 110/* Try to detect user preferences */
111/* Defined by GCC and many compatible compilers */ 111/* Defined by GCC and many compatible compilers */
112#ifdef __OPTIMIZE_SIZE__ 112#if defined(__OPTIMIZE_SIZE__)
113#define MHD_FAVOR_SMALL_CODE 1 113#define MHD_FAVOR_SMALL_CODE 1
114#elif __OPTIMIZE__ 114#elif defined(__OPTIMIZE__)
115#define MHD_FAVOR_FAST_CODE 1 115#define MHD_FAVOR_FAST_CODE 1
116#endif /* __OPTIMIZE__ */ 116#endif /* __OPTIMIZE__ */
117#endif /* !MHD_FAVOR_FAST_CODE && !MHD_FAVOR_SMALL_CODE */ 117#endif /* !MHD_FAVOR_FAST_CODE && !MHD_FAVOR_SMALL_CODE */