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
c3f93719
Commit
c3f93719
authored
Jan 09, 2001
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add configure check for sys_nerr, to end all discussions.
parent
af26d6a4
Changes
9
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
110 additions
and
71 deletions
+110
-71
config/c-library.m4
config/c-library.m4
+16
-1
configure
configure
+79
-47
configure.in
configure.in
+1
-0
src/backend/utils/error/elog.c
src/backend/utils/error/elog.c
+3
-9
src/backend/utils/error/exc.c
src/backend/utils/error/exc.c
+2
-6
src/include/c.h
src/include/c.h
+5
-1
src/include/config.h.in
src/include/config.h.in
+4
-1
src/include/port/beos.h
src/include/port/beos.h
+0
-3
src/include/port/win.h
src/include/port/win.h
+0
-3
No files found.
config/c-library.m4
View file @
c3f93719
# Macros that test various C library quirks
# $Header: /cvsroot/pgsql/config/c-library.m4,v 1.
5 2000/11/03 18:43:51
petere Exp $
# $Header: /cvsroot/pgsql/config/c-library.m4,v 1.
6 2001/01/09 18:40:13
petere Exp $
# PGAC_VAR_INT_TIMEZONE
...
...
@@ -123,3 +123,18 @@ if test x"$pgac_cv_header_strings_both" = x"yes"; then
AC_DEFINE([STRING_H_WITH_STRINGS_H], 1,
[Define if string.h and strings.h may both be included])
fi])
# PGAC_VAR_SYS_NERR
# -----------------
# Check if the global variable 'sys_nerr' exists. If so, define
# HAVE_SYS_NERR.
AC_DEFUN([PGAC_VAR_SYS_NERR],
[AC_CACHE_CHECK([for sys_nerr], pgac_cv_var_sys_nerr,
[AC_TRY_LINK([extern int sys_nerr;],
[int x = sys_nerr;],
[pgac_cv_var_sys_nerr=yes],
[pgac_cv_var_sys_nerr=no])])
if test x"$pgac_cv_var_sys_nerr" = xyes ; then
AC_DEFINE(HAVE_SYS_NERR,, [Set to 1 if you have the global variable sys_nerr])
fi])# PGAC_VAR_SYS_NERR
configure
View file @
c3f93719
This diff is collapsed.
Click to expand it.
configure.in
View file @
c3f93719
...
...
@@ -945,6 +945,7 @@ if test x"$pgac_cv_var_int_optreset" = x"yes"; then
AC_DEFINE(HAVE_INT_OPTRESET, 1)
fi
PGAC_VAR_SYS_NERR
dnl Check to see if we have a working 64-bit integer type.
dnl This breaks down into two steps:
...
...
src/backend/utils/error/elog.c
View file @
c3f93719
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/error/elog.c,v 1.7
4 2000/12/18 00:44:47 tgl
Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/error/elog.c,v 1.7
5 2001/01/09 18:40:14 petere
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -44,11 +44,6 @@
extern
int
errno
;
#ifdef __CYGWIN__
# define sys_nerr _sys_nerr
#endif
extern
int
sys_nerr
;
extern
CommandDest
whereToSendOutput
;
#ifdef ENABLE_SYSLOG
...
...
@@ -140,8 +135,7 @@ elog(int lev, const char *fmt, ...)
if
(
lev
<=
DEBUG
&&
Debugfile
<
0
)
return
;
/* ignore debug msgs if noplace to send */
/* BeOS doesn't have sys_nerr and should be able to use strerror()... */
#ifndef __BEOS__
#ifdef HAVE_SYS_NERR
/* save errno string for %m */
if
(
errno
<
sys_nerr
&&
errno
>=
0
)
errorstr
=
strerror
(
errno
);
...
...
@@ -152,7 +146,7 @@ elog(int lev, const char *fmt, ...)
}
#else
errorstr
=
strerror
(
errno
);
#endif
/* __BEOS__ */
#endif
if
(
lev
==
ERROR
||
lev
==
FATAL
)
{
...
...
src/backend/utils/error/exc.c
View file @
c3f93719
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/error/Attic/exc.c,v 1.3
2 2000/10/28 23:53:00
petere Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/error/Attic/exc.c,v 1.3
3 2001/01/09 18:40:14
petere Exp $
*
* NOTE
* XXX this code needs improvement--check for state violations and
...
...
@@ -96,10 +96,6 @@ EnableExceptionHandling(bool on)
extern
int
errno
;
#ifdef __CYGWIN__
# define sys_nerr _sys_nerr
#endif
extern
int
sys_nerr
;
static
void
ExcPrint
(
Exception
*
excP
,
...
...
@@ -131,7 +127,7 @@ ExcPrint(Exception *excP,
fprintf
(
stderr
,
" (%ld)"
,
detail
);
#if
ndef __BEOS__
#if
def HAVE_SYS_NERR
if
(
errno
>
0
&&
errno
<
sys_nerr
)
#else
if
(
errno
>
0
)
...
...
src/include/c.h
View file @
c3f93719
...
...
@@ -8,7 +8,7 @@
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: c.h,v 1.8
6 2001/01/09 16:07:14 momjian
Exp $
* $Id: c.h,v 1.8
7 2001/01/09 18:40:15 petere
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -993,6 +993,10 @@ extern int vsnprintf(char *str, size_t count, const char *fmt, va_list args);
#include <regex/utils.h>
#endif
#ifdef HAVE_SYS_NERR
extern
int
sys_nerr
;
#endif
/* ----------------
* end of c.h
* ----------------
...
...
src/include/config.h.in
View file @
c3f93719
...
...
@@ -8,7 +8,7 @@
* or in config.h afterwards. Of course, if you edit config.h, then your
* changes will be overwritten the next time you run configure.
*
* $Id: config.h.in,v 1.15
4 2000/12/27 23:59:14 tgl
Exp $
* $Id: config.h.in,v 1.15
5 2001/01/09 18:40:15 petere
Exp $
*/
#ifndef CONFIG_H
...
...
@@ -617,6 +617,9 @@ extern void srandom(unsigned int seed);
/* Define if you have the optreset variable */
#undef HAVE_INT_OPTRESET
/* Define if you have the sys_nerr global variable */
#undef HAVE_SYS_NERR
/* Define if you have strtoll() */
#undef HAVE_STRTOLL
...
...
src/include/port/beos.h
View file @
c3f93719
...
...
@@ -7,9 +7,6 @@ typedef unsigned char slock_t;
#define AF_UNIX 10
/* no domain sockets on BeOS */
/* Beos doesn't have sysnerr but strerror should works on every error */
extern
int
sys_nerr
;
/* Beos doesn't have all the required getrusage fields */
#undef HAVE_GETRUSAGE
...
...
src/include/port/win.h
View file @
c3f93719
...
...
@@ -9,6 +9,3 @@ typedef unsigned char slock_t;
#define HAVE_INT_TIMEZONE
/* has int _timezone */
#include <cygwin/version.h>
#if (CYGWIN_VERSION_API_MAJOR >= 0) && (CYGWIN_VERSION_API_MINOR >= 8)
#define sys_nerr _sys_nerr
#endif
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