diff options
author | Michael Meskes <meskes@postgresql.org> | 2010-05-25 17:28:20 +0000 |
---|---|---|
committer | Michael Meskes <meskes@postgresql.org> | 2010-05-25 17:28:20 +0000 |
commit | 29259531c7b48384dba863124aff79e05980b329 (patch) | |
tree | 290b34b78076d9d4ca463f9e99393cd162dedab9 /src/interfaces/ecpg/include | |
parent | 9b6dba119349475f12d2a909ca265770156c4667 (diff) | |
download | postgresql-29259531c7b48384dba863124aff79e05980b329.tar.gz postgresql-29259531c7b48384dba863124aff79e05980b329.zip |
Replace self written 'long long int' configure test by standard 'AC_TYPE_LONG_LONG_INT' macro call.
Diffstat (limited to 'src/interfaces/ecpg/include')
-rw-r--r-- | src/interfaces/ecpg/include/ecpg_config.h.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/interfaces/ecpg/include/ecpg_config.h.in b/src/interfaces/ecpg/include/ecpg_config.h.in index 5ee42c8ab7d..72a34f4be0e 100644 --- a/src/interfaces/ecpg/include/ecpg_config.h.in +++ b/src/interfaces/ecpg/include/ecpg_config.h.in @@ -4,6 +4,9 @@ /* Define to 1 if `long int' works and is 64 bits. */ #undef HAVE_LONG_INT_64 +/* Define to 1 if the system has the type `long long int'. */ +#undef HAVE_LONG_LONG_INT + /* Define to 1 if `long long int' works and is 64 bits. */ #undef HAVE_LONG_LONG_INT_64 @@ -15,6 +18,3 @@ * (--enable-thread-safety) */ #undef ENABLE_THREAD_SAFETY -/* Define to 1 if the C compiler does understand long long type. */ -#undef HAVE_LONG_LONG - |