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
a927d6ea
Commit
a927d6ea
authored
Jul 18, 1999
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configure cleanup
parent
d0634aca
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
167 additions
and
226 deletions
+167
-226
doc/README.NT
doc/README.NT
+1
-1
src/backend/commands/async.c
src/backend/commands/async.c
+1
-3
src/configure.in
src/configure.in
+1
-8
src/include/config.h.in
src/include/config.h.in
+164
-214
No files found.
doc/README.NT
View file @
a927d6ea
...
@@ -19,7 +19,7 @@ It can be done by done by typing configure, make and make install.
...
@@ -19,7 +19,7 @@ It can be done by done by typing configure, make and make install.
(This may be optional.)
(This may be optional.)
1. Download the Cygwin32 IPC Package by Ludovic LANGE
1. Download the Cygwin32 IPC Package by Ludovic LANGE
(http://www.multione.capgemini.fr/tools/pack_ipc/
http://www.multione.capgemini.fr:80/tools/pack_ipc/current.tar.gz
2. Untar the package and follow the readme instructions.
2. Untar the package and follow the readme instructions.
3. I tested 1.03.
3. I tested 1.03.
4. I used the \cygwin-b20\h-i568-cygwin32\i586-cygwin32\lib and
4. I used the \cygwin-b20\h-i568-cygwin32\i586-cygwin32\lib and
...
...
src/backend/commands/async.c
View file @
a927d6ea
...
@@ -6,7 +6,7 @@
...
@@ -6,7 +6,7 @@
* Copyright (c) 1994, Regents of the University of California
* Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/commands/async.c,v 1.5
2 1999/07/17 20:16:50
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/commands/async.c,v 1.5
3 1999/07/18 18:03:49
momjian Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -510,7 +510,6 @@ AtCommit_Notify()
...
@@ -510,7 +510,6 @@ AtCommit_Notify()
* signal first, because the other guy can't read
* signal first, because the other guy can't read
* pg_listener until we unlock it.
* pg_listener until we unlock it.
*/
*/
#ifdef HAVE_KILL
if
(
kill
(
listenerPID
,
SIGUSR2
)
<
0
)
if
(
kill
(
listenerPID
,
SIGUSR2
)
<
0
)
{
{
...
@@ -526,7 +525,6 @@ AtCommit_Notify()
...
@@ -526,7 +525,6 @@ AtCommit_Notify()
heap_delete
(
lRel
,
&
lTuple
->
t_self
,
NULL
);
heap_delete
(
lRel
,
&
lTuple
->
t_self
,
NULL
);
}
}
else
else
#endif
{
{
d
=
heap_getattr
(
lTuple
,
Anum_pg_listener_notify
,
d
=
heap_getattr
(
lTuple
,
Anum_pg_listener_notify
,
tdesc
,
&
isnull
);
tdesc
,
&
isnull
);
...
...
src/configure.in
View file @
a927d6ea
...
@@ -581,7 +581,6 @@ AC_CHECK_HEADERS(crypt.h)
...
@@ -581,7 +581,6 @@ AC_CHECK_HEADERS(crypt.h)
AC_CHECK_HEADERS(dld.h)
AC_CHECK_HEADERS(dld.h)
AC_CHECK_HEADERS(endian.h)
AC_CHECK_HEADERS(endian.h)
AC_CHECK_HEADERS(float.h)
AC_CHECK_HEADERS(float.h)
AC_CHECK_HEADERS(fp_class.h)
AC_CHECK_HEADERS(history.h)
AC_CHECK_HEADERS(history.h)
AC_CHECK_HEADERS(ieeefp.h)
AC_CHECK_HEADERS(ieeefp.h)
AC_CHECK_HEADERS(limits.h)
AC_CHECK_HEADERS(limits.h)
...
@@ -664,8 +663,7 @@ dnl Checks for library functions.
...
@@ -664,8 +663,7 @@ dnl Checks for library functions.
AC_FUNC_MEMCMP
AC_FUNC_MEMCMP
AC_TYPE_SIGNAL
AC_TYPE_SIGNAL
AC_FUNC_VPRINTF
AC_FUNC_VPRINTF
AC_CHECK_FUNCS(tzset memmove sigsetjmp kill sysconf fpclass)
AC_CHECK_FUNCS(memmove sigsetjmp sysconf)
AC_CHECK_FUNCS(fp_class fp_class_d class)
AC_CHECK_FUNCS(sigprocmask waitpid setsid fcvt)
AC_CHECK_FUNCS(sigprocmask waitpid setsid fcvt)
dnl We use our snprintf.c emulation if either snprintf() or vsnprintf()
dnl We use our snprintf.c emulation if either snprintf() or vsnprintf()
dnl is missing. Yes, there are machines that have only one.
dnl is missing. Yes, there are machines that have only one.
...
@@ -716,11 +714,6 @@ AC_CHECK_FUNC(inet_aton,
...
@@ -716,11 +714,6 @@ AC_CHECK_FUNC(inet_aton,
AC_DEFINE(HAVE_INET_ATON),
AC_DEFINE(HAVE_INET_ATON),
INET_ATON='inet_aton.o')
INET_ATON='inet_aton.o')
AC_SUBST(INET_ATON)
AC_SUBST(INET_ATON)
AC_CHECK_FUNC(strerror,
AC_DEFINE(HAVE_STRERROR),
[STRERROR='strerror.o' STRERROR2='../../backend/port/strerror.o'])
AC_SUBST(STRERROR)
AC_SUBST(STRERROR2)
AC_CHECK_FUNC(strdup,
AC_CHECK_FUNC(strdup,
AC_DEFINE(HAVE_STRDUP),
AC_DEFINE(HAVE_STRDUP),
STRDUP='../../utils/strdup.o')
STRDUP='../../utils/strdup.o')
...
...
src/include/config.h.in
View file @
a927d6ea
This diff is collapsed.
Click to expand it.
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