Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
47c440a8
Commit
47c440a8
authored
Mar 12, 2019
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libport: Remove checks for strerror().
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
4fcd86e1
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
0 additions
and
41 deletions
+0
-41
configure
configure
+0
-1
configure.ac
configure.ac
+0
-1
config.h.in
include/config.h.in
+0
-3
port.h
include/wine/port.h
+0
-5
Makefile.in
libs/port/Makefile.in
+0
-1
strerror.c
libs/port/strerror.c
+0
-30
No files found.
configure
View file @
47c440a8
...
...
@@ -16772,7 +16772,6 @@ for ac_func in \
statvfs
\
strcasecmp
\
strdup
\
strerror
\
strncasecmp
\
strnlen
\
strtold
\
...
...
configure.ac
View file @
47c440a8
...
...
@@ -2190,7 +2190,6 @@ AC_CHECK_FUNCS(\
statvfs \
strcasecmp \
strdup \
strerror \
strncasecmp \
strnlen \
strtold \
...
...
include/config.h.in
View file @
47c440a8
...
...
@@ -936,9 +936,6 @@
/* Define to 1 if you have the `strdup' function. */
#undef HAVE_STRDUP
/* Define to 1 if you have the `strerror' function. */
#undef HAVE_STRERROR
/* Define to 1 if you have the <strings.h> header file. */
#undef HAVE_STRINGS_H
...
...
include/wine/port.h
View file @
47c440a8
...
...
@@ -344,10 +344,6 @@ int strncasecmp(const char *str1, const char *str2, size_t n);
size_t
strnlen
(
const
char
*
str
,
size_t
maxlen
);
#endif
/* !defined(HAVE_STRNLEN) */
#ifndef HAVE_STRERROR
const
char
*
strerror
(
int
err
);
#endif
/* !defined(HAVE_STRERROR) */
#ifndef HAVE_STRCASECMP
# ifndef HAVE__STRICMP
int
strcasecmp
(
const
char
*
str1
,
const
char
*
str2
);
...
...
@@ -524,7 +520,6 @@ extern __int64 interlocked_cmpxchg64( __int64 *dest, __int64 xchg, __int64 compa
#define spawnvp __WINE_NOT_PORTABLE(spawnvp)
#define statvfs __WINE_NOT_PORTABLE(statvfs)
#define strcasecmp __WINE_NOT_PORTABLE(strcasecmp)
#define strerror __WINE_NOT_PORTABLE(strerror)
#define strncasecmp __WINE_NOT_PORTABLE(strncasecmp)
#define strnlen __WINE_NOT_PORTABLE(strnlen)
#define usleep __WINE_NOT_PORTABLE(usleep)
...
...
libs/port/Makefile.in
View file @
47c440a8
...
...
@@ -99,7 +99,6 @@ C_SRCS = \
spawn.c
\
statvfs.c
\
strcasecmp.c
\
strerror.c
\
strncasecmp.c
\
strnlen.c
\
symlink.c
\
...
...
libs/port/strerror.c
deleted
100644 → 0
View file @
4fcd86e1
/*
* strerror function
*
* Copyright 1996 Alexandre Julliard
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include "wine/port.h"
#ifndef HAVE_STRERROR
const
char
*
strerror
(
int
err
)
{
/* Let's hope we have sys_errlist then */
return
sys_errlist
[
err
];
}
#endif
/* HAVE_STRERROR */
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