Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 4fc3b06

Browse files
committed
Remove lld from LONG LONG name
1 parent b3e72e5 commit 4fc3b06

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/configure.in

+2-2
Original file line numberDiff line numberDiff line change
@@ -573,7 +573,7 @@ main() {
573573
AC_MSG_RESULT(no),
574574
AC_MSG_RESULT(assuming not on target machine))
575575

576-
AC_MSG_CHECKING(whether 'long long int' is 64 bits using %lld)
576+
AC_MSG_CHECKING(whether 'long long int' is 64 bits)
577577
AC_TRY_RUN([#include <stdio.h>
578578
typedef long long int int64;
579579
#define INT64_FORMAT "%lld"
@@ -606,7 +606,7 @@ int does_int64_work()
606606
main() {
607607
exit(! does_int64_work());
608608
}],
609-
[AC_DEFINE(HAVE_LONG_LONG_INT_64_lld) AC_MSG_RESULT(yes)],
609+
[AC_DEFINE(HAVE_LONG_LONG_INT_64) AC_MSG_RESULT(yes)],
610610
AC_MSG_RESULT(no),
611611
AC_MSG_RESULT(assuming not on target machine))
612612

src/include/config.h.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ extern void srandom(int seed);
223223
#undef HAVE_LONG_INT_64
224224

225225
/* Set to 1 if type "long long int" works and is 64 bits */
226-
#undef HAVE_LONG_LONG_INT_64_lld
226+
#undef HAVE_LONG_LONG_INT_64
227227

228228
/*
229229
* Code below this point should not require changes

src/include/utils/int8.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*
77
* Copyright (c) 1994, Regents of the University of California
88
*
9-
* $Id: int8.h,v 1.7 1998/09/11 16:43:26 momjian Exp $
9+
* $Id: int8.h,v 1.8 1998/09/11 17:16:11 momjian Exp $
1010
*
1111
* NOTES
1212
* These data types are supported on all 64-bit architectures, and may
@@ -29,7 +29,7 @@ typedef long int int64;
2929

3030
#define INT64_FORMAT "%ld"
3131
#else
32-
#ifdef HAVE_LONG_LONG_INT_64_lld
32+
#ifdef HAVE_LONG_LONG_INT_64
3333
/* We have working support for "long long int", use that */
3434
typedef long long int int64;
3535

0 commit comments

Comments
 (0)