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
a63d2168
Commit
a63d2168
authored
Jun 07, 2004
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix strerror_r by checking return type from configure.
parent
91366138
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
87 additions
and
8 deletions
+87
-8
config/c-library.m4
config/c-library.m4
+18
-1
configure
configure
+53
-0
configure.in
configure.in
+2
-1
src/include/pg_config.h.in
src/include/pg_config.h.in
+3
-0
src/port/thread.c
src/port/thread.c
+11
-6
No files found.
config/c-library.m4
View file @
a63d2168
# Macros that test various C library quirks
# $PostgreSQL: pgsql/config/c-library.m4,v 1.2
5 2004/03/20 15:39:27
momjian Exp $
# $PostgreSQL: pgsql/config/c-library.m4,v 1.2
6 2004/06/07 22:39:44
momjian Exp $
# PGAC_VAR_INT_TIMEZONE
...
...
@@ -96,6 +96,23 @@ fi
])# PGAC_FUNC_GETPWUID_R_5ARG
# PGAC_FUNC_STRERROR_R_INT
# ---------------------------
# Check if strerror_r() returns an int (SUSv3) rather than a char * (GNU libc)
# If so, define STRERROR_R_INT
AC_DEFUN([PGAC_FUNC_STRERROR_R_INT],
[AC_CACHE_CHECK(whether strerror_r returns int,
pgac_func_strerror_r_int,
[AC_TRY_COMPILE([#include <string.h>],
[int strerror_r(int, char *, size_t);],
[pgac_func_strerror_r_int=yes],
[pgac_func_strerror_r_int=no])])
if test x"$pgac_func_strerror_r_int" = xyes ; then
AC_DEFINE(STRERROR_R_INT,, [Define to 1 if strerror_r() returns a int.])
fi
])# PGAC_FUNC_STRERROR_R_INT
# PGAC_UNION_SEMUN
# ----------------
# Check if `union semun' exists. Define HAVE_UNION_SEMUN if so.
...
...
configure
View file @
a63d2168
...
...
@@ -13759,6 +13759,59 @@ _ACEOF
fi
echo
"
$as_me
:
$LINENO
: checking whether strerror_r returns int"
>
&5
echo
$ECHO_N
"checking whether strerror_r returns int...
$ECHO_C
"
>
&6
if
test
"
${
pgac_func_strerror_r_int
+set
}
"
=
set
;
then
echo
$ECHO_N
"(cached)
$ECHO_C
"
>
&6
else
cat
>
conftest.
$ac_ext
<<
_ACEOF
#line
$LINENO
"configure"
#include "confdefs.h"
#include <string.h>
#ifdef F77_DUMMY_MAIN
# ifdef __cplusplus
extern "C"
# endif
int F77_DUMMY_MAIN() { return 1; }
#endif
int
main ()
{
int strerror_r(int, char *, size_t);
;
return 0;
}
_ACEOF
rm
-f
conftest.
$ac_objext
if
{
(
eval echo
"
$as_me
:
$LINENO
:
\"
$ac_compile
\"
"
)
>
&5
(
eval
$ac_compile
)
2>&5
ac_status
=
$?
echo
"
$as_me
:
$LINENO
:
\$
? =
$ac_status
"
>
&5
(
exit
$ac_status
)
;
}
&&
{
ac_try
=
'test -s conftest.$ac_objext'
{
(
eval echo
"
$as_me
:
$LINENO
:
\"
$ac_try
\"
"
)
>
&5
(
eval
$ac_try
)
2>&5
ac_status
=
$?
echo
"
$as_me
:
$LINENO
:
\$
? =
$ac_status
"
>
&5
(
exit
$ac_status
)
;
}
;
}
;
then
pgac_func_strerror_r_int
=
yes
else
echo
"
$as_me
: failed program was:"
>
&5
cat
conftest.
$ac_ext
>
&5
pgac_func_strerror_r_int
=
no
fi
rm
-f
conftest.
$ac_objext
conftest.
$ac_ext
fi
echo
"
$as_me
:
$LINENO
: result:
$pgac_func_strerror_r_int
"
>
&5
echo
"
${
ECHO_T
}
$pgac_func_strerror_r_int
"
>
&6
if
test
x
"
$pgac_func_strerror_r_int
"
=
xyes
;
then
cat
>>
confdefs.h
<<
\
_ACEOF
#define STRERROR_R_INT
_ACEOF
fi
else
# do not use values from template file
...
...
configure.in
View file @
a63d2168
dnl Process this file with autoconf to produce a configure script.
dnl $PostgreSQL: pgsql/configure.in,v 1.36
0 2004/05/28 20:52:42
momjian Exp $
dnl $PostgreSQL: pgsql/configure.in,v 1.36
1 2004/06/07 22:39:43
momjian Exp $
dnl
dnl Developers, please strive to achieve this order:
dnl
...
...
@@ -993,6 +993,7 @@ CFLAGS="$_CFLAGS"
LIBS="$_LIBS"
PGAC_FUNC_GETPWUID_R_5ARG
PGAC_FUNC_STRERROR_R_INT
else
# do not use values from template file
...
...
src/include/pg_config.h.in
View file @
a63d2168
...
...
@@ -607,6 +607,9 @@
/* Define to 1 if you have the ANSI C header files. */
#undef STDC_HEADERS
/* Define to 1 if strerror_r() returns a int. */
#undef STRERROR_R_INT
/* Define to 1 if your <sys/time.h> declares `struct tm'. */
#undef TM_IN_SYS_TIME
...
...
src/port/thread.c
View file @
a63d2168
...
...
@@ -7,7 +7,7 @@
*
* Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
*
* $PostgreSQL: pgsql/src/port/thread.c,v 1.2
0 2004/04/23 18:15:5
5 momjian Exp $
* $PostgreSQL: pgsql/src/port/thread.c,v 1.2
1 2004/06/07 22:39:4
5 momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -70,12 +70,17 @@ pqStrerror(int errnum, char *strerrbuf, size_t buflen)
{
#if defined(FRONTEND) && defined(ENABLE_THREAD_SAFETY) && defined(HAVE_STRERROR_R)
/* reentrant strerror_r is available */
/* some early standards had strerror_r returning char * */
strerror_r
(
errnum
,
strerrbuf
,
buflen
);
return
strerrbuf
;
#ifdef STRERROR_R_INT
/* SUSv3 version */
if
(
strerror_r
(
errnum
,
strerrbuf
,
buflen
)
==
0
)
return
strerrbuf
;
else
return
NULL
;
#else
/* GNU libc */
return
strerror_r
(
errnum
,
strerrbuf
,
buflen
);
#endif
#else
/* no strerror_r() available, just use strerror */
StrNCpy
(
strerrbuf
,
strerror
(
errnum
),
buflen
);
...
...
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