File tree 2 files changed +9
-9
lines changed
2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -3634,10 +3634,10 @@ else
3634
3634
echo " configure: failed program was:" >&5
3635
3635
cat conftest.$ac_ext >&5
3636
3636
rm -fr conftest*
3637
- echo " $ac_t " " no " 1>&6 cat >> confdefs.h << \EOF
3637
+ cat >> confdefs.h << \EOF
3638
3638
#define HAVE_DBL_MIN_PROBLEM 1
3639
3639
EOF
3640
-
3640
+ echo " $ac_t " " no " 1>&6
3641
3641
fi
3642
3642
rm -fr conftest*
3643
3643
fi
@@ -3686,10 +3686,10 @@ main() {
3686
3686
EOF
3687
3687
if { (eval echo configure:3688: \" $ac_link \" ) 1>&5 ; (eval $ac_link ) 2>&5 ; } && test -s conftest && (./conftest; exit) 2> /dev/null
3688
3688
then
3689
- echo " $ac_t " " yes " 1>&6 cat >> confdefs.h << \EOF
3689
+ cat >> confdefs.h << \EOF
3690
3690
#define HAVE_LONG_INT_64 1
3691
3691
EOF
3692
-
3692
+ echo " $ac_t " " yes " 1>&6
3693
3693
else
3694
3694
echo " configure: failed program was:" >&5
3695
3695
cat conftest.$ac_ext >&5
@@ -3743,10 +3743,10 @@ main() {
3743
3743
EOF
3744
3744
if { (eval echo configure:3745: \" $ac_link \" ) 1>&5 ; (eval $ac_link ) 2>&5 ; } && test -s conftest && (./conftest; exit) 2> /dev/null
3745
3745
then
3746
- echo " $ac_t " " yes " 1>&6 cat >> confdefs.h << \EOF
3746
+ cat >> confdefs.h << \EOF
3747
3747
#define HAVE_LONG_LONG_INT_64 1
3748
3748
EOF
3749
-
3749
+ echo " $ac_t " " yes " 1>&6
3750
3750
else
3751
3751
echo " configure: failed program was:" >&5
3752
3752
cat conftest.$ac_ext >&5
Original file line number Diff line number Diff line change @@ -522,7 +522,7 @@ AC_TRY_RUN([#include <stdlib.h>
522
522
#endif
523
523
main() { double d = DBL_MIN; if (d != DBL_MIN) exit(-1); else exit(0); }],
524
524
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 )],
526
526
AC_MSG_RESULT(assuming ok on target machine))
527
527
528
528
dnl Check to see if we have a working 64-bit integer type.
@@ -559,7 +559,7 @@ int does_int64_work()
559
559
main() {
560
560
exit(! does_int64_work());
561
561
}],
562
- [AC_MSG_RESULT(yes) AC_DEFINE(HAVE_LONG_INT_64 )],
562
+ [AC_DEFINE(HAVE_LONG_INT_64) AC_MSG_RESULT(yes )],
563
563
AC_MSG_RESULT(no),
564
564
AC_MSG_RESULT(assuming not on target machine))
565
565
@@ -596,7 +596,7 @@ int does_int64_work()
596
596
main() {
597
597
exit(! does_int64_work());
598
598
}],
599
- [AC_MSG_RESULT(yes) AC_DEFINE(HAVE_LONG_LONG_INT_64 )],
599
+ [AC_DEFINE(HAVE_LONG_LONG_INT_64) AC_MSG_RESULT(yes )],
600
600
AC_MSG_RESULT(no),
601
601
AC_MSG_RESULT(assuming not on target machine))
602
602
You can’t perform that action at this time.
0 commit comments