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
8799d846
Commit
8799d846
authored
Dec 20, 2001
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add memcmp() test and new memcmp.c file, for SunOS. Tested by Tatsuo.
parent
960f6a5f
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
265 additions
and
158 deletions
+265
-158
config/c-library.m4
config/c-library.m4
+25
-1
configure
configure
+197
-154
configure.in
configure.in
+3
-0
src/Makefile.global.in
src/Makefile.global.in
+2
-1
src/backend/port/Makefile.in
src/backend/port/Makefile.in
+2
-2
src/backend/port/memcmp.c
src/backend/port/memcmp.c
+36
-0
No files found.
config/c-library.m4
View file @
8799d846
# Macros that test various C library quirks
# $Header: /cvsroot/pgsql/config/c-library.m4,v 1.
9 2001/09/07 19:52:53
momjian Exp $
# $Header: /cvsroot/pgsql/config/c-library.m4,v 1.
10 2001/12/20 21:23:05
momjian Exp $
# PGAC_VAR_INT_TIMEZONE
...
...
@@ -36,6 +36,30 @@ if test x"$pgac_cv_func_gettimeofday_1arg" = xyes ; then
fi])# PGAC_FUNC_GETTIMEOFDAY_1ARG
# PGAC_FUNC_MEMCMP
# -----------
# Check if memcmp() properly handles negative bytes and returns +/-.
# SunOS does not.
# AC_FUNC_MEMCMP
AC_DEFUN(PGAC_FUNC_MEMCMP,
[AC_CACHE_CHECK(for 8-bit clean memcmp, pgac_cv_func_memcmp_clean,
[AC_TRY_RUN([
main()
{
char c0 = 0x40, c1 = 0x80, c2 = 0x81;
exit(memcmp(&c0, &c2, 1) < 0 && memcmp(&c1, &c2, 1) < 0 ? 0 : 1);
}
], pgac_cv_func_memcmp_clean=yes, pgac_cv_func_memcmp_clean=no,
pgac_cv_func_memcmp_clean=no)])
if test $pgac_cv_func_memcmp_clean = no ; then
MEMCMP=memcmp.o
else
MEMCMP=
fi
AC_SUBST(MEMCMP)dnl
])
# PGAC_UNION_SEMUN
# ----------------
# Check if `union semun' exists. Define HAVE_UNION_SEMUN if so.
...
...
configure
View file @
8799d846
This diff is collapsed.
Click to expand it.
configure.in
View file @
8799d846
...
...
@@ -809,6 +809,9 @@ PGAC_VAR_INT_TIMEZONE
AC_FUNC_ACCEPT_ARGTYPES
PGAC_FUNC_GETTIMEOFDAY_1ARG
# SunOS doesn't handle negative byte comparisons properly with +/- return
PGAC_FUNC_MEMCMP
AC_CHECK_FUNCS([fcvt getopt_long memmove pstat setproctitle setsid sigprocmask sysconf waitpid dlopen fdatasync])
dnl Check whether <unistd.h> declares fdatasync().
...
...
src/Makefile.global.in
View file @
8799d846
# -*-makefile-*-
# $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.14
0 2001/10/13 15:24:23 tgl
Exp $
# $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.14
1 2001/12/20 21:23:05 momjian
Exp $
#------------------------------------------------------------------------------
# All PostgreSQL makefiles include this file and use the variables it sets,
...
...
@@ -328,6 +328,7 @@ INET_ATON = @INET_ATON@
STRERROR
=
@STRERROR@
SNPRINTF
=
@SNPRINTF@
STRDUP
=
@STRDUP@
MEMCMP
=
@MEMCMP@
STRTOUL
=
@STRTOUL@
...
...
src/backend/port/Makefile.in
View file @
8799d846
...
...
@@ -13,7 +13,7 @@
# be converted to Method 2.
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/port/Attic/Makefile.in,v 1.
29 2001/05/08 19:38:57 petere
Exp $
# $Header: /cvsroot/pgsql/src/backend/port/Attic/Makefile.in,v 1.
30 2001/12/20 21:23:05 momjian
Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -22,7 +22,7 @@ top_builddir = ../../..
include
$(top_builddir)/src/Makefile.global
OBJS
=
dynloader.o @INET_ATON@ @STRERROR@ @MISSING_RANDOM@ @SRANDOM@
OBJS
+=
@GETHOSTNAME@ @GETRUSAGE@ @STRCASECMP@ @TAS@ @ISINF@
OBJS
+=
@GETHOSTNAME@ @GETRUSAGE@ @
MEMCMP@ @
STRCASECMP@ @TAS@ @ISINF@
OBJS
+=
@STRTOL@ @STRTOUL@ @SNPRINTF@
ifdef
STRDUP
OBJS
+=
$(top_builddir)
/src/utils/strdup.o
...
...
src/backend/port/memcmp.c
0 → 100644
View file @
8799d846
/*-------------------------------------------------------------------------
*
* memcmp.c
* compares memory bytes
*
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/port/Attic/memcmp.c,v 1.1 2001/12/20 21:23:05 momjian Exp $
*
* This file was taken from NetBSD and is used by SunOS because memcmp
* on that platform does not properly compare negative bytes.
*
*-------------------------------------------------------------------------
*/
#include <string.h>
/*
* Compare memory regions.
*/
int
memcmp
(
const
void
*
s1
,
const
void
*
s2
,
size_t
n
)
{
if
(
n
!=
0
)
{
const
unsigned
char
*
p1
=
s1
,
*
p2
=
s2
;
do
{
if
(
*
p1
++
!=
*
p2
++
)
return
(
*--
p1
-
*--
p2
);
}
while
(
--
n
!=
0
);
}
return
0
;
}
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