Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
64c82a50
Commit
64c82a50
authored
Mar 25, 1997
by
Marc G. Fournier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add checs for float.h
Remove 'unused variable' from dt.c
parent
719a413f
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
4 deletions
+6
-4
src/backend/utils/adt/dt.c
src/backend/utils/adt/dt.c
+1
-2
src/configure
src/configure
+1
-1
src/configure.in
src/configure.in
+1
-1
src/include/config.h.in
src/include/config.h.in
+3
-0
No files found.
src/backend/utils/adt/dt.c
View file @
64c82a50
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/adt/Attic/dt.c,v 1.
9 1997/03/25 20:00:5
2 scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/adt/Attic/dt.c,v 1.
10 1997/03/25 20:02:4
2 scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -2556,7 +2556,6 @@ int EncodePostgresDate(struct tm *tm, double fsec, char *str)
...
@@ -2556,7 +2556,6 @@ int EncodePostgresDate(struct tm *tm, double fsec, char *str)
char
mabbrev
[
4
],
dabbrev
[
4
];
char
mabbrev
[
4
],
dabbrev
[
4
];
int
day
;
int
day
;
double
sec
;
double
sec
;
char
buf
[
MAXDATELEN
];
sec
=
(
tm
->
tm_sec
+
fsec
);
sec
=
(
tm
->
tm_sec
+
fsec
);
...
...
src/configure
View file @
64c82a50
...
@@ -2353,7 +2353,7 @@ else
...
@@ -2353,7 +2353,7 @@ else
fi
fi
done
done
for
ac_hdr
in
readline.h history.h dld.h crypt.h endian.h
for
ac_hdr
in
readline.h history.h dld.h crypt.h endian.h
float.h
do
do
ac_safe
=
`
echo
"
$ac_hdr
"
|
sed
'y%./+-%__p_%'
`
ac_safe
=
`
echo
"
$ac_hdr
"
|
sed
'y%./+-%__p_%'
`
echo
$ac_n
"checking for
$ac_hdr
""...
$ac_c
"
1>&6
echo
$ac_n
"checking for
$ac_hdr
""...
$ac_c
"
1>&6
...
...
src/configure.in
View file @
64c82a50
...
@@ -134,7 +134,7 @@ dnl Checks for header files.
...
@@ -134,7 +134,7 @@ dnl Checks for header files.
AC_HEADER_STDC
AC_HEADER_STDC
AC_HEADER_SYS_WAIT
AC_HEADER_SYS_WAIT
AC_CHECK_HEADERS(limits.h unistd.h termios.h values.h sys/select.h)
AC_CHECK_HEADERS(limits.h unistd.h termios.h values.h sys/select.h)
AC_CHECK_HEADERS(readline.h history.h dld.h crypt.h endian.h)
AC_CHECK_HEADERS(readline.h history.h dld.h crypt.h endian.h
float.h
)
dnl Checks for typedefs, structures, and compiler characteristics.
dnl Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
AC_C_CONST
...
...
src/include/config.h.in
View file @
64c82a50
...
@@ -23,6 +23,9 @@
...
@@ -23,6 +23,9 @@
/* Set to 1 if you have <termios.h> */
/* Set to 1 if you have <termios.h> */
#undef HAVE_TERMIOS_H
#undef HAVE_TERMIOS_H
/* Set to 1 if you have <float.h> */
#undef HAVE_FLOAT_H
/* Set to 1 if you have <limits.h> */
/* Set to 1 if you have <limits.h> */
#undef HAVE_LIMITS_H
#undef HAVE_LIMITS_H
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment