projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
66bfa3e
)
Removed a ',' that didn't belong in the timezone test case
author
Marc G. Fournier
Wed, 19 Feb 1997 13:55:13 +0000
(13:55 +0000)
committer
Marc G. Fournier
Wed, 19 Feb 1997 13:55:13 +0000
(13:55 +0000)
Pointed out by:
[email protected]
src/configure
patch
|
blob
|
blame
|
history
src/configure.in
patch
|
blob
|
blame
|
history
diff --git
a/src/configure
b/src/configure
index b00d922090baf2d6939d933891513dbc02502422..46fc383f9e8019b208acec8805e6cc0c2de060e0 100755
(executable)
--- a/
src/configure
+++ b/
src/configure
@@
-2633,7
+2633,7
@@
if { (eval echo configure:2632: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && t
cat >> confdefs.h <<\EOF
#define HAVE_INT_TIMEZONE 1
EOF
-
,
echo "$ac_t""yes" 1>&6
+ echo "$ac_t""yes" 1>&6
else
echo "configure: failed program was:" >&5
cat conftest.$ac_ext >&5
diff --git
a/src/configure.in
b/src/configure.in
index e813c96dd0bea139e5b8f546578d69fd89ac09f8..7233aeb555678abf5c90363b62317f3de1b149db 100644
(file)
--- a/
src/configure.in
+++ b/
src/configure.in
@@
-140,7
+140,7
@@
dnl Check for any "odd" conditions
AC_MSG_CHECKING(for int timezone)
AC_TRY_LINK([#include
],
[int res = timezone / 60; ],
- [AC_DEFINE(HAVE_INT_TIMEZONE)
,
AC_MSG_RESULT(yes)],
+ [AC_DEFINE(HAVE_INT_TIMEZONE) AC_MSG_RESULT(yes)],
AC_MSG_RESULT(no))
AC_MSG_CHECKING(for union semun)