|
53 | 53 | (--enable-thread-safety) */
|
54 | 54 | #define ENABLE_THREAD_SAFETY 1
|
55 | 55 |
|
| 56 | +/* float4 values are passed by value if 'true', by reference if 'false' */ |
| 57 | +#define FLOAT4PASSBYVAL true |
| 58 | + |
| 59 | +/* float8, int8, and related values are passed by value if 'true', by |
| 60 | + reference if 'false' */ |
| 61 | +#define FLOAT8PASSBYVAL false |
| 62 | + |
56 | 63 | /* Define to 1 if getpwuid_r() takes a 5th argument. */
|
57 | 64 | /* #undef GETPWUID_R_5ARG */
|
58 | 65 |
|
|
616 | 623 | /* Define to 1 to build with Bonjour support. (--with-bonjour) */
|
617 | 624 | /* #undef USE_BONJOUR */
|
618 | 625 |
|
| 626 | +/* Define to 1 if you want float4 values to be passed by value. |
| 627 | + (--enable-float4-byval) */ |
| 628 | +#define USE_FLOAT4_BYVAL 1 |
| 629 | + |
| 630 | +/* Define to 1 if you want float8, int8, etc values to be passed by value. |
| 631 | + (--enable-float8-byval) */ |
| 632 | +/* #undef USE_FLOAT8_BYVAL */ |
| 633 | + |
619 | 634 | /* Define to 1 if you want 64-bit integer timestamp and interval support.
|
620 | 635 | (--enable-integer-datetimes) */
|
621 | 636 | /* #undef USE_INTEGER_DATETIMES */
|
|