wineclipsrv is no longer used, remove it.
This commit is contained in:
parent
8bc2fdb3f9
commit
9fff718a6d
|
@ -1,4 +1,3 @@
|
||||||
Makefile
|
Makefile
|
||||||
wineclipsrv
|
|
||||||
x11drv.dll.dbg.c
|
x11drv.dll.dbg.c
|
||||||
x11drv.spec.def
|
x11drv.spec.def
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
EXTRADEFS = -DBINDIR="\"$(bindir)\""
|
|
||||||
TOPSRCDIR = @top_srcdir@
|
TOPSRCDIR = @top_srcdir@
|
||||||
TOPOBJDIR = ../..
|
TOPOBJDIR = ../..
|
||||||
SRCDIR = @srcdir@
|
SRCDIR = @srcdir@
|
||||||
|
@ -44,20 +43,8 @@ C_SRCS = \
|
||||||
xrender.c \
|
xrender.c \
|
||||||
xvidmode.c
|
xvidmode.c
|
||||||
|
|
||||||
PROGRAMS = wineclipsrv
|
|
||||||
|
|
||||||
@MAKE_DLL_RULES@
|
@MAKE_DLL_RULES@
|
||||||
|
|
||||||
all: $(PROGRAMS)
|
all: $(PROGRAMS)
|
||||||
|
|
||||||
wineclipsrv: wineclipsrv.c
|
|
||||||
$(CC) $(ALLCFLAGS) -o wineclipsrv $(SRCDIR)/wineclipsrv.c $(EXTRALIBS) $(LDFLAGS) $(LIBS)
|
|
||||||
|
|
||||||
install:: $(PROGRAMS)
|
|
||||||
$(MKINSTALLDIRS) $(bindir)
|
|
||||||
$(INSTALL_PROGRAM) wineclipsrv $(bindir)/wineclipsrv
|
|
||||||
|
|
||||||
uninstall::
|
|
||||||
$(RM) $(bindir)/wineclipsrv
|
|
||||||
|
|
||||||
### Dependencies:
|
### Dependencies:
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -178,8 +178,6 @@ WINE COMPONENTS
|
||||||
- winebuild : Winebuild is a tool used for building Winelib applications
|
- winebuild : Winebuild is a tool used for building Winelib applications
|
||||||
(and by Wine itself) to allow a developer to compile a .spec file
|
(and by Wine itself) to allow a developer to compile a .spec file
|
||||||
into a .spec.c file.
|
into a .spec.c file.
|
||||||
- wineclipserv : The Wine Clipboard Server is a standalone XLib application
|
|
||||||
whose purpose is to manage the X selection when Wine exits.
|
|
||||||
- wineconsole : Render the output of CUI programs.
|
- wineconsole : Render the output of CUI programs.
|
||||||
- winedbg : A application making use of the debugging API to allow
|
- winedbg : A application making use of the debugging API to allow
|
||||||
debugging of Wine or Winelib applications as well as Wine itself
|
debugging of Wine or Winelib applications as well as Wine itself
|
||||||
|
@ -462,9 +460,6 @@ Example (split this into %build and %install section for rpm:
|
||||||
install -d $BR/usr/X11R6/lib/wine
|
install -d $BR/usr/X11R6/lib/wine
|
||||||
mv $BR/usr/X11R6/lib/lib* $BR/usr/X11R6/lib/wine/
|
mv $BR/usr/X11R6/lib/lib* $BR/usr/X11R6/lib/wine/
|
||||||
|
|
||||||
# the clipboard server is started on demand.
|
|
||||||
install -m 755 dlls/x11drv/wineclipsrv $BR/usr/X11R6/bin/
|
|
||||||
|
|
||||||
# The Wine server is needed.
|
# The Wine server is needed.
|
||||||
install -m 755 server/wineserver $BR/usr/X11R6/bin/
|
install -m 755 server/wineserver $BR/usr/X11R6/bin/
|
||||||
|
|
||||||
|
@ -477,9 +472,9 @@ separate library directory should be used.
|
||||||
|
|
||||||
You will need to package the files:
|
You will need to package the files:
|
||||||
|
|
||||||
$prefix/bin/wine, $prefix/bin/dosmod, $prefix/lib/wine/*
|
$prefix/bin/wine, $prefix/lib/wine/*
|
||||||
$prefix/man/man1/wine.1, $prefix/include/wine/*,
|
$prefix/man/man1/wine.1, $prefix/include/wine/*,
|
||||||
$prefix/bin/wineserver, $prefix/bin/wineclipsrv
|
$prefix/bin/wineserver
|
||||||
|
|
||||||
%config /etc/wine/*
|
%config /etc/wine/*
|
||||||
%doc ... choose from the toplevel directory and documentation/
|
%doc ... choose from the toplevel directory and documentation/
|
||||||
|
|
|
@ -159,7 +159,6 @@ WINE REGISTRY Version 2
|
||||||
|
|
||||||
[Clipboard]
|
[Clipboard]
|
||||||
"ClearAllSelections" = "0"
|
"ClearAllSelections" = "0"
|
||||||
"PersistentSelection" = "1"
|
|
||||||
"UsePrimary" = "0"
|
"UsePrimary" = "0"
|
||||||
|
|
||||||
; List of all directories directly contain .AFM files
|
; List of all directories directly contain .AFM files
|
||||||
|
|
|
@ -233,11 +233,6 @@ The
|
||||||
.B wine
|
.B wine
|
||||||
debugger
|
debugger
|
||||||
.TP
|
.TP
|
||||||
.I @bindir@/wineclipsrv
|
|
||||||
The
|
|
||||||
.B wine
|
|
||||||
clipboard server
|
|
||||||
.TP
|
|
||||||
.I @dlldir@
|
.I @dlldir@
|
||||||
Directory containing
|
Directory containing
|
||||||
.B wine's
|
.B wine's
|
||||||
|
|
Loading…
Reference in New Issue