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
43416529
Commit
43416529
authored
Jan 13, 1998
by
Marc G. Fournier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
isinf() doesn't exist under i386_solaris, so code it such that
it is (!isnan() && !finite()) instead
parent
06356b89
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
101 additions
and
46 deletions
+101
-46
src/backend/port/Makefile.in
src/backend/port/Makefile.in
+2
-2
src/configure
src/configure
+95
-43
src/configure.in
src/configure.in
+4
-1
No files found.
src/backend/port/Makefile.in
View file @
43416529
...
@@ -13,7 +13,7 @@
...
@@ -13,7 +13,7 @@
# be converted to Method 2.
# be converted to Method 2.
#
#
# IDENTIFICATION
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/port/Attic/Makefile.in,v 1.1
3 1998/01/13 15:31:09
scrappy Exp $
# $Header: /cvsroot/pgsql/src/backend/port/Attic/Makefile.in,v 1.1
4 1998/01/13 19:21:40
scrappy Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -25,7 +25,7 @@ INCLUDE_OPT = -I..
...
@@ -25,7 +25,7 @@ INCLUDE_OPT = -I..
CFLAGS
+=
${INCLUDE_OPT}
CFLAGS
+=
${INCLUDE_OPT}
OBJS
=
dynloader.o @INET_ATON@ @STRERROR@ @MISSING_RANDOM@ @SRANDOM@
OBJS
=
dynloader.o @INET_ATON@ @STRERROR@ @MISSING_RANDOM@ @SRANDOM@
OBJS
+=
@GETHOSTNAME@ @GETRUSAGE@ @STRCASECMP@ @STRDUP@ @TAS@
OBJS
+=
@GETHOSTNAME@ @GETRUSAGE@ @STRCASECMP@ @STRDUP@ @TAS@
@ISINF@
all
:
SUBSYS.o
all
:
SUBSYS.o
...
...
src/configure
View file @
43416529
This diff is collapsed.
Click to expand it.
src/configure.in
View file @
43416529
...
@@ -461,8 +461,11 @@ AC_PROG_GCC_TRADITIONAL
...
@@ -461,8 +461,11 @@ AC_PROG_GCC_TRADITIONAL
AC_FUNC_MEMCMP
AC_FUNC_MEMCMP
AC_TYPE_SIGNAL
AC_TYPE_SIGNAL
AC_FUNC_VPRINTF
AC_FUNC_VPRINTF
AC_CHECK_FUNCS(
isinf
tzset vfork memmove sigsetjmp kill sysconf)
AC_CHECK_FUNCS(tzset vfork memmove sigsetjmp kill sysconf)
AC_CHECK_FUNCS(sigprocmask waitpid setsid fcvt)
AC_CHECK_FUNCS(sigprocmask waitpid setsid fcvt)
AC_CHECK_FUNC(isinf,
AC_DEFINE(HAVE_ISINF),
ISINF='isinf.o')
AC_CHECK_FUNC(getrusage,
AC_CHECK_FUNC(getrusage,
AC_DEFINE(HAVE_GETRUSAGE),
AC_DEFINE(HAVE_GETRUSAGE),
GETRUSAGE='getrusage.o')
GETRUSAGE='getrusage.o')
...
...
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