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

Commit a06ba33

Browse files
committed
int64 fix
1 parent 28d90a5 commit a06ba33

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

src/configure

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3634,10 +3634,10 @@ else
36343634
echo "configure: failed program was:" >&5
36353635
cat conftest.$ac_ext >&5
36363636
rm -fr conftest*
3637-
echo "$ac_t""no" 1>&6 cat >> confdefs.h <<\EOF
3637+
cat >> confdefs.h <<\EOF
36383638
#define HAVE_DBL_MIN_PROBLEM 1
36393639
EOF
3640-
3640+
echo "$ac_t""no" 1>&6
36413641
fi
36423642
rm -fr conftest*
36433643
fi
@@ -3686,10 +3686,10 @@ main() {
36863686
EOF
36873687
if { (eval echo configure:3688: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null
36883688
then
3689-
echo "$ac_t""yes" 1>&6 cat >> confdefs.h <<\EOF
3689+
cat >> confdefs.h <<\EOF
36903690
#define HAVE_LONG_INT_64 1
36913691
EOF
3692-
3692+
echo "$ac_t""yes" 1>&6
36933693
else
36943694
echo "configure: failed program was:" >&5
36953695
cat conftest.$ac_ext >&5
@@ -3743,10 +3743,10 @@ main() {
37433743
EOF
37443744
if { (eval echo configure:3745: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null
37453745
then
3746-
echo "$ac_t""yes" 1>&6 cat >> confdefs.h <<\EOF
3746+
cat >> confdefs.h <<\EOF
37473747
#define HAVE_LONG_LONG_INT_64 1
37483748
EOF
3749-
3749+
echo "$ac_t""yes" 1>&6
37503750
else
37513751
echo "configure: failed program was:" >&5
37523752
cat conftest.$ac_ext >&5

src/configure.in

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -522,7 +522,7 @@ AC_TRY_RUN([#include <stdlib.h>
522522
#endif
523523
main() { double d = DBL_MIN; if (d != DBL_MIN) exit(-1); else exit(0); }],
524524
AC_MSG_RESULT(yes),
525-
[AC_MSG_RESULT(no) AC_DEFINE(HAVE_DBL_MIN_PROBLEM)],
525+
[AC_DEFINE(HAVE_DBL_MIN_PROBLEM) AC_MSG_RESULT(no)],
526526
AC_MSG_RESULT(assuming ok on target machine))
527527

528528
dnl Check to see if we have a working 64-bit integer type.
@@ -559,7 +559,7 @@ int does_int64_work()
559559
main() {
560560
exit(! does_int64_work());
561561
}],
562-
[AC_MSG_RESULT(yes) AC_DEFINE(HAVE_LONG_INT_64)],
562+
[AC_DEFINE(HAVE_LONG_INT_64) AC_MSG_RESULT(yes)],
563563
AC_MSG_RESULT(no),
564564
AC_MSG_RESULT(assuming not on target machine))
565565

@@ -596,7 +596,7 @@ int does_int64_work()
596596
main() {
597597
exit(! does_int64_work());
598598
}],
599-
[AC_MSG_RESULT(yes) AC_DEFINE(HAVE_LONG_LONG_INT_64)],
599+
[AC_DEFINE(HAVE_LONG_LONG_INT_64) AC_MSG_RESULT(yes)],
600600
AC_MSG_RESULT(no),
601601
AC_MSG_RESULT(assuming not on target machine))
602602

0 commit comments

Comments
 (0)