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
d0634aca
Commit
d0634aca
authored
Jul 18, 1999
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configure cleanup
parent
ef9699d6
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
39 deletions
+8
-39
src/backend/port/isinf.c
src/backend/port/isinf.c
+7
-24
src/configure.in
src/configure.in
+0
-11
src/include/config.h.in
src/include/config.h.in
+0
-3
src/include/utils/ps_status.h
src/include/utils/ps_status.h
+1
-1
No files found.
src/backend/port/isinf.c
View file @
d0634aca
/* $Id: isinf.c,v 1.
9 1999/07/17 04:00:29
momjian Exp $ */
/* $Id: isinf.c,v 1.
10 1999/07/18 17:38:23
momjian Exp $ */
#include <math.h>
#include <math.h>
#include "config.h"
#include "config.h"
#if HAVE_FPCLASS
#ifdef NOT_USED
#if HAVE_IEEEFP_H
#if HAVE_IEEEFP_H
#include <ieeefp.h>
#include <ieeefp.h>
#endif
#endif
#if HAVE_FP_CLASS_H
#include <fp_class.h>
#endif
int
int
isinf
(
double
d
)
isinf
(
double
d
)
{
{
...
@@ -24,12 +29,6 @@ isinf(double d)
...
@@ -24,12 +29,6 @@ isinf(double d)
return
0
;
return
0
;
}
}
#else
#if defined(HAVE_FP_CLASS) || defined(HAVE_FP_CLASS_D)
#if HAVE_FP_CLASS_H
#include <fp_class.h>
#endif
int
int
isinf
(
x
)
isinf
(
x
)
double
x
;
double
x
;
...
@@ -50,19 +49,3 @@ double x;
...
@@ -50,19 +49,3 @@ double x;
}
}
#endif
#endif
#endif
#if defined(HAVE_CLASS)
int
isinf
(
double
x
)
{
int
fpclass
=
class
(
x
);
if
(
fpclass
==
FP_PLUS_INF
)
return
1
;
if
(
fpclass
==
FP_MINUS_INF
)
return
-
1
;
return
0
;
}
#endif
src/configure.in
View file @
d0634aca
...
@@ -660,17 +660,6 @@ AC_TRY_LINK([#include <fcntl.h>],
...
@@ -660,17 +660,6 @@ AC_TRY_LINK([#include <fcntl.h>],
[AC_DEFINE(HAVE_FCNTL_SETLK) AC_MSG_RESULT(yes)],
[AC_DEFINE(HAVE_FCNTL_SETLK) AC_MSG_RESULT(yes)],
AC_MSG_RESULT(no))
AC_MSG_RESULT(no))
AC_MSG_CHECKING(for good DBL_MIN)
AC_TRY_RUN([#include <stdlib.h>
#include <math.h>
#ifdef HAVE_FLOAT_H
# include <float.h>
#endif
main() { double d = DBL_MIN; if (d != DBL_MIN) exit(-1); else exit(0); }],
AC_MSG_RESULT(yes),
[AC_DEFINE(HAVE_DBL_MIN_PROBLEM) AC_MSG_RESULT(no)],
AC_MSG_RESULT(assuming ok on target machine))
dnl Checks for library functions.
dnl Checks for library functions.
AC_FUNC_MEMCMP
AC_FUNC_MEMCMP
AC_TYPE_SIGNAL
AC_TYPE_SIGNAL
...
...
src/include/config.h.in
View file @
d0634aca
...
@@ -294,9 +294,6 @@ extern void srandom(unsigned int seed);
...
@@ -294,9 +294,6 @@ extern void srandom(unsigned int seed);
/* Set to 1 if you want to Enable ASSERT CHECKING */
/* Set to 1 if you want to Enable ASSERT CHECKING */
#undef USE_ASSERT_CHECKING
#undef USE_ASSERT_CHECKING
/* Set to 1 if your DBL_MIN is problematic */
#undef HAVE_DBL_MIN_PROBLEM
/* Set to 1 if type "long int" works and is 64 bits */
/* Set to 1 if type "long int" works and is 64 bits */
#undef HAVE_LONG_INT_64
#undef HAVE_LONG_INT_64
...
...
src/include/utils/ps_status.h
View file @
d0634aca
...
@@ -75,7 +75,7 @@ const char **ps_status = NULL
...
@@ -75,7 +75,7 @@ const char **ps_status = NULL
#define PS_STATUS (ps_status ? *ps_status : "")
#define PS_STATUS (ps_status ? *ps_status : "")
#endif
#endif
#ifdef
DONT_HAVE
_PS_STATUS
#ifdef
NO
_PS_STATUS
#define PS_DEFINE_BUFFER
#define PS_DEFINE_BUFFER
#define PS_INIT_STATUS(argc, argv, execname, username, hostname, dbname)
#define PS_INIT_STATUS(argc, argv, execname, username, hostname, dbname)
#define PS_CLEAR_STATUS()
#define PS_CLEAR_STATUS()
...
...
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