diff options
author | Michael Meskes <meskes@postgresql.org> | 2010-05-25 14:32:55 +0000 |
---|---|---|
committer | Michael Meskes <meskes@postgresql.org> | 2010-05-25 14:32:55 +0000 |
commit | 555a02f910490b94c48c1c479e9da2e4759ad25f (patch) | |
tree | 1f5c981af6226bfcf9f373a4a18a74654fbeeba9 /src/interfaces/ecpg/ecpglib/extern.h | |
parent | f4e9436026455f7118de094696ca33e86555979e (diff) | |
download | postgresql-555a02f910490b94c48c1c479e9da2e4759ad25f.tar.gz postgresql-555a02f910490b94c48c1c479e9da2e4759ad25f.zip |
Added a configure test for "long long" datatypes. So far this is only used in ecpg and replaces the old test that was kind of hackish.
Diffstat (limited to 'src/interfaces/ecpg/ecpglib/extern.h')
-rw-r--r-- | src/interfaces/ecpg/ecpglib/extern.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/interfaces/ecpg/ecpglib/extern.h b/src/interfaces/ecpg/ecpglib/extern.h index d42e9295951..1e8f18f965c 100644 --- a/src/interfaces/ecpg/ecpglib/extern.h +++ b/src/interfaces/ecpg/ecpglib/extern.h @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/src/interfaces/ecpg/ecpglib/extern.h,v 1.40 2010/05/20 22:10:45 meskes Exp $ */ +/* $PostgreSQL: pgsql/src/interfaces/ecpg/ecpglib/extern.h,v 1.41 2010/05/25 14:32:55 meskes Exp $ */ #ifndef _ECPG_LIB_EXTERN_H #define _ECPG_LIB_EXTERN_H @@ -13,11 +13,6 @@ #include <limits.h> #endif -/* Do we know the C99 data type "long long"? */ -#if defined(LLONG_MIN) || defined(LONGLONG_MIN) || defined(HAVE_LONG_LONG_INT_64) -#define HAVE_LONG_LONG 1 -#endif - enum COMPAT_MODE { ECPG_COMPAT_PGSQL = 0, ECPG_COMPAT_INFORMIX, ECPG_COMPAT_INFORMIX_SE |