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
ee213bcb
Commit
ee213bcb
authored
Oct 06, 2021
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libport: Remove the readlink() implementation.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
6d2cf023
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
0 additions
and
42 deletions
+0
-42
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
-4
Makefile.in
libs/port/Makefile.in
+0
-1
readlink.c
libs/port/readlink.c
+0
-32
No files found.
configure
View file @
ee213bcb
...
...
@@ -17915,7 +17915,6 @@ for ac_func in \
posix_fallocate
\
prctl
\
proc_pidinfo
\
readlink
\
sched_yield
\
setproctitle
\
setprogname
\
...
...
configure.ac
View file @
ee213bcb
...
...
@@ -2146,7 +2146,6 @@ AC_CHECK_FUNCS(\
posix_fallocate \
prctl \
proc_pidinfo \
readlink \
sched_yield \
setproctitle \
setprogname \
...
...
include/config.h.in
View file @
ee213bcb
...
...
@@ -510,9 +510,6 @@
/* Define to 1 if you have the <QuickTime/ImageCompression.h> header file. */
#undef HAVE_QUICKTIME_IMAGECOMPRESSION_H
/* Define to 1 if you have the `readlink' function. */
#undef HAVE_READLINK
/* Define to 1 if the system has the type `request_sense'. */
#undef HAVE_REQUEST_SENSE
...
...
include/wine/port.h
View file @
ee213bcb
...
...
@@ -99,10 +99,6 @@ static inline const char *dlerror(void) { return "No dlopen support on Windows";
* Function definitions (only when using libwine_port)
*/
#ifndef HAVE_READLINK
int
readlink
(
const
char
*
path
,
char
*
buf
,
size_t
size
);
#endif
/* HAVE_READLINK */
#ifndef HAVE_SYMLINK
int
symlink
(
const
char
*
from
,
const
char
*
to
);
#endif
...
...
libs/port/Makefile.in
View file @
ee213bcb
STATICLIB
=
libwine_port.a
C_SRCS
=
\
readlink.c
\
symlink.c
libs/port/readlink.c
deleted
100644 → 0
View file @
6d2cf023
/*
* readlink function
*
* Copyright 2004 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"
#include <errno.h>
#ifndef HAVE_READLINK
int
readlink
(
const
char
*
path
,
char
*
buf
,
size_t
size
)
{
errno
=
-
ENOSYS
;
return
-
1
;
}
#endif
/* HAVE_READLINK */
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