Moved libwine to libs/ directory.
Some makefile fixes and cleanups.
This commit is contained in:
parent
90b68fc7c7
commit
2d1c79066e
|
@ -71,9 +71,9 @@ WRCFLAGS = -m --nostdinc $(EXTRAWRCFLAGS)
|
|||
LDPATH = @LDPATH@
|
||||
DLLDIR = $(TOPOBJDIR)/dlls
|
||||
LIBPORT = -L$(TOPOBJDIR)/libs/port -lwine_port
|
||||
LIBWINE = -L$(TOPOBJDIR)/library -lwine
|
||||
LIBUNICODE = -L$(TOPOBJDIR)/libs/unicode -lwine_unicode
|
||||
LIBUUID = -L$(TOPOBJDIR)/libs/uuid -lwine_uuid
|
||||
LIBWINE = -L$(TOPOBJDIR)/libs/wine -lwine
|
||||
|
||||
@SET_MAKE@
|
||||
|
||||
|
@ -235,10 +235,16 @@ clean:: $(SUBDIRS:%=%/__clean__) $(EXTRASUBDIRS:%=%/__clean__)
|
|||
|
||||
# Rules for installing
|
||||
|
||||
$(INSTALLSUBDIRS:%=%/__install__): dummy
|
||||
$(SUBDIRS:%=%/__install__): dummy
|
||||
cd `dirname $@` && $(MAKE) install
|
||||
|
||||
$(INSTALLSUBDIRS:%=%/__uninstall__): dummy
|
||||
$(SUBDIRS:%=%/__install-lib__): dummy
|
||||
cd `dirname $@` && $(MAKE) install-lib
|
||||
|
||||
$(SUBDIRS:%=%/__install-dev__): dummy
|
||||
cd `dirname $@` && $(MAKE) install-dev
|
||||
|
||||
$(SUBDIRS:%=%/__uninstall__): dummy
|
||||
cd `dirname $@` && $(MAKE) uninstall
|
||||
|
||||
install:: $(INSTALLSUBDIRS:%=%/__install__)
|
||||
|
@ -246,7 +252,8 @@ install:: $(INSTALLSUBDIRS:%=%/__install__)
|
|||
uninstall:: $(INSTALLSUBDIRS:%=%/__uninstall__)
|
||||
|
||||
.PHONY: install install-lib install-dev uninstall \
|
||||
$(INSTALLSUBDIRS:%=%/__install__) $(INSTALLSUBDIRS:%=%/__uninstall__)
|
||||
$(SUBDIRS:%=%/__install__) $(SUBDIRS:%=%/__uninstall__) \
|
||||
$(SUBDIRS:%=%/__install-lib__) $(SUBDIRS:%=%/__install-dev__)
|
||||
|
||||
# Rules for checking that no imports are missing
|
||||
|
||||
|
|
31
Makefile.in
31
Makefile.in
|
@ -31,7 +31,6 @@ SUBDIRS = \
|
|||
dlls \
|
||||
documentation \
|
||||
include \
|
||||
library \
|
||||
libs \
|
||||
miscemu \
|
||||
programs \
|
||||
|
@ -41,7 +40,6 @@ SUBDIRS = \
|
|||
# Sub-directories to install for install-lib
|
||||
INSTALLLIBSUBDIRS = \
|
||||
documentation \
|
||||
library \
|
||||
miscemu \
|
||||
programs \
|
||||
server
|
||||
|
@ -101,36 +99,25 @@ uninstall:: $(INSTALLBOTHSUBDIRS:%=%/__uninstall__)
|
|||
$(RM) $(datadir)/aclocal/wine.m4
|
||||
-rmdir $(datadir)/aclocal
|
||||
|
||||
$(INSTALLBOTHSUBDIRS:%=%/__install-lib__): dummy
|
||||
cd `dirname $@` && $(MAKE) install-lib
|
||||
|
||||
$(INSTALLBOTHSUBDIRS:%=%/__install-dev__): dummy
|
||||
cd `dirname $@` && $(MAKE) install-dev
|
||||
|
||||
$(INSTALLBOTHSUBDIRS:%=%/__uninstall__): dummy
|
||||
cd `dirname $@` && $(MAKE) uninstall
|
||||
|
||||
.PHONY: install-aclocal $(INSTALLBOTHSUBDIRS:%=%/__install-lib__) $(INSTALLBOTHSUBDIRS:%=%/__install-dev__) $(INSTALLBOTHSUBDIRS:%=%/__uninstall__)
|
||||
.PHONY: install-aclocal
|
||||
|
||||
# Dependencies between directories
|
||||
|
||||
all: $(SUBDIRS)
|
||||
dlls: library libs tools
|
||||
server: library libs tools
|
||||
miscemu programs: dlls library libs tools
|
||||
tools: library libs
|
||||
dlls: libs tools
|
||||
server: libs tools
|
||||
miscemu programs: dlls libs tools
|
||||
tools: libs
|
||||
|
||||
dlls/__install-lib__ dlls/__install-dev__: library libs tools
|
||||
server/__install__: library libs tools
|
||||
miscemu/__install__ programs/__install__: library libs tools dlls/__install-lib__
|
||||
library/__install__: library
|
||||
libs/__install__: libs
|
||||
dlls/__install-lib__ dlls/__install-dev__: libs tools
|
||||
libs/__install-lib__ libs/__install-dev__: libs
|
||||
server/__install__: libs tools
|
||||
miscemu/__install__ programs/__install__: libs tools dlls/__install-lib__
|
||||
tools/__install__: tools
|
||||
|
||||
# Test rules
|
||||
|
||||
checklink:: $(TESTSUBDIRS:%=%/__checklink__)
|
||||
$(CC) -o checklink $(TOPSRCDIR)/library/checklink.c && $(RM) checklink
|
||||
|
||||
check test:: wine $(TESTSUBDIRS:%=%/__test__)
|
||||
|
||||
|
|
|
@ -1513,11 +1513,11 @@ dlls/wsock32/Makefile
|
|||
dlls/x11drv/Makefile
|
||||
documentation/Makefile
|
||||
include/Makefile
|
||||
library/Makefile
|
||||
libs/Makefile
|
||||
libs/port/Makefile
|
||||
libs/unicode/Makefile
|
||||
libs/uuid/Makefile
|
||||
libs/wine/Makefile
|
||||
miscemu/Makefile
|
||||
programs/Makefile
|
||||
programs/avitools/Makefile
|
||||
|
|
|
@ -49,14 +49,14 @@ $(SPEC_DEF): $(WINEBUILD)
|
|||
|
||||
# Rules for checking that no imports are missing
|
||||
|
||||
CHECKLINK_RPATH = dlls library libs/unicode
|
||||
CHECKLINK_RPATH = dlls libs/unicode libs/wine
|
||||
|
||||
.PHONY: checklink16 $(WIN16_FILES:%=__checklink16__%)
|
||||
|
||||
$(WIN16_FILES:%=__checklink16__%): checklink16
|
||||
|
||||
checklink16:: $(MAINSPEC).o $(OBJS) $(MODULE).dbg.o dummy
|
||||
$(CC) -o checklink $(CHECKLINK_RPATH:%=-Wl,-rpath,$(TOPOBJDIR)/%) $(TOPSRCDIR)/library/checklink.c $(MAINSPEC).o $(OBJS) $(MODULE).dbg.o -L$(DLLDIR) $(LDIMPORTS:%=-l%) $(ALL_LIBS) && $(RM) checklink
|
||||
$(CC) -o checklink $(CHECKLINK_RPATH:%=-Wl,-rpath,$(TOPOBJDIR)/%) $(TOPSRCDIR)/dlls/checklink.c $(MAINSPEC).o $(OBJS) $(MODULE).dbg.o -L$(DLLDIR) $(LDIMPORTS:%=-l%) $(ALL_LIBS) && $(RM) checklink
|
||||
|
||||
checklink:: $(WIN16_FILES:%=__checklink16__%)
|
||||
|
||||
|
|
|
@ -1,3 +0,0 @@
|
|||
Makefile
|
||||
libwine.dll
|
||||
libwine.so.1.0
|
|
@ -1,90 +0,0 @@
|
|||
/*
|
||||
* Misc. functions for systems that don't have them
|
||||
*
|
||||
* 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
#include "wine/port.h"
|
||||
|
||||
#ifdef __BEOS__
|
||||
#include <be/kernel/fs_info.h>
|
||||
#include <be/kernel/OS.h>
|
||||
#endif
|
||||
|
||||
#include <assert.h>
|
||||
#include <ctype.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <time.h>
|
||||
#ifdef HAVE_UNISTD_H
|
||||
# include <unistd.h>
|
||||
#endif
|
||||
#include <sys/types.h>
|
||||
#ifdef HAVE_SYS_INTTYPES_H
|
||||
# include <sys/inttypes.h>
|
||||
#endif
|
||||
#ifdef HAVE_SYS_TIME_h
|
||||
# include <sys/time.h>
|
||||
#endif
|
||||
#include <sys/stat.h>
|
||||
#ifdef HAVE_SYS_IOCTL_H
|
||||
#include <sys/ioctl.h>
|
||||
#endif
|
||||
#include <errno.h>
|
||||
#include <fcntl.h>
|
||||
#ifdef HAVE_TERMIOS_H
|
||||
#include <termios.h>
|
||||
#endif
|
||||
#ifdef HAVE_SYS_MMAN_H
|
||||
#include <sys/mman.h>
|
||||
#endif
|
||||
#ifdef HAVE_LIBIO_H
|
||||
# include <libio.h>
|
||||
#endif
|
||||
#ifdef HAVE_SYSCALL_H
|
||||
# include <syscall.h>
|
||||
#endif
|
||||
#ifdef HAVE_STDINT_H
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* pthread functions
|
||||
*/
|
||||
|
||||
#ifndef HAVE_PTHREAD_GETSPECIFIC
|
||||
void pthread_getspecific() { assert(0); }
|
||||
#endif
|
||||
|
||||
#ifndef HAVE_PTHREAD_KEY_CREATE
|
||||
void pthread_key_create() { assert(0); }
|
||||
#endif
|
||||
|
||||
#ifndef HAVE_PTHREAD_MUTEX_LOCK
|
||||
void pthread_mutex_lock() { assert(0); }
|
||||
#endif
|
||||
|
||||
#ifndef HAVE_PTHREAD_MUTEX_UNLOCK
|
||||
void pthread_mutex_unlock() { assert(0); }
|
||||
#endif
|
||||
|
||||
#ifndef HAVE_PTHREAD_SETSPECIFIC
|
||||
void pthread_setspecific() { assert(0); }
|
||||
#endif
|
|
@ -7,21 +7,23 @@ MODULE = none
|
|||
SUBDIRS = \
|
||||
port \
|
||||
unicode \
|
||||
uuid
|
||||
uuid \
|
||||
wine
|
||||
|
||||
# Sub-directories to install for install-lib
|
||||
INSTALLLIBSUBDIRS = unicode
|
||||
|
||||
# Sub-directories to install for install-dev
|
||||
INSTALLDEVSUBDIRS = uuid
|
||||
|
||||
INSTALLSUBDIRS = $(INSTALLDEVSUBDIRS) $(INSTALLLIBSUBDIRS)
|
||||
INSTALLSUBDIRS = \
|
||||
unicode \
|
||||
uuid \
|
||||
wine
|
||||
|
||||
@MAKE_RULES@
|
||||
|
||||
all: $(SUBDIRS)
|
||||
|
||||
install-lib:: $(INSTALLLIBSUBDIRS:%=%/__install__)
|
||||
install-dev:: $(INSTALLDEVSUBDIRS:%=%/__install__)
|
||||
install-lib:: $(INSTALLSUBDIRS:%=%/__install-lib__)
|
||||
install-dev:: $(INSTALLSUBDIRS:%=%/__install-dev__)
|
||||
|
||||
# Inter-dll dependencies
|
||||
|
||||
wine wine/__install__ wine/__install-lib__: port
|
||||
|
||||
### Dependencies:
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
DEFS = @DLLFLAGS@ -D__WINESRC__
|
||||
DEFS = @DLLFLAGS@ -D__WINESRC__ -DNO_LIBWINE_PORT
|
||||
TOPSRCDIR = @top_srcdir@
|
||||
TOPOBJDIR = ../..
|
||||
SRCDIR = @srcdir@
|
||||
VPATH = @srcdir@
|
||||
LIBEXT = @LIBEXT@
|
||||
MODULE = none
|
||||
SOVERSION = 1
|
||||
SONAME = libwine_unicode.so.$(SOVERSION)
|
||||
MODULE = libwine_unicode.$(LIBEXT)
|
||||
|
||||
CODEPAGES = \
|
||||
037 \
|
||||
|
@ -81,40 +81,42 @@ C_SRCS = \
|
|||
wctype.c \
|
||||
$(CODEPAGES:%=c_%.c)
|
||||
|
||||
all: libwine_unicode.$(LIBEXT)
|
||||
all: $(MODULE)
|
||||
|
||||
@MAKE_RULES@
|
||||
|
||||
libwine_unicode.so.$(SOVERSION): $(OBJS)
|
||||
libwine_unicode.so.$(SOVERSION): $(OBJS) Makefile.in
|
||||
$(LDSHARED) $(OBJS) -o $@
|
||||
|
||||
libwine_unicode.so: libwine_unicode.so.$(SOVERSION)
|
||||
$(RM) $@ && $(LN_S) libwine_unicode.so.$(SOVERSION) $@
|
||||
|
||||
libwine_unicode.a: $(OBJS)
|
||||
$(RM) $@
|
||||
$(AR) $@ $(OBJS)
|
||||
$(RANLIB) $@
|
||||
libwine_unicode.a: wine_unicode.def
|
||||
$(DLLTOOL) -l $@ -d $(SRCDIR)/wine_unicode.def
|
||||
|
||||
libwine_unicode.dll: $(OBJS) wine_unicode.def
|
||||
$(DLLWRAP) --def $(SRCDIR)/wine_unicode.def --implib libwine_unicode.a -o libwine_unicode.dll $(OBJS)
|
||||
libwine_unicode.dll: $(OBJS) wine_unicode.def Makefile.in
|
||||
$(DLLWRAP) --def $(SRCDIR)/wine_unicode.def -o $@ $(OBJS)
|
||||
|
||||
.PHONY: install_so install_a install_dll
|
||||
.PHONY: install-lib-so install-lib-dll install-dev-so install-dev-dll
|
||||
|
||||
install_so: libwine_unicode.so.$(SOVERSION) dummy
|
||||
install-lib-so: libwine_unicode.so.$(SOVERSION) dummy
|
||||
$(MKINSTALLDIRS) $(libdir)
|
||||
$(INSTALL_PROGRAM) libwine_unicode.so.$(SOVERSION) $(libdir)/libwine_unicode.so.$(SOVERSION)
|
||||
cd $(libdir) && $(RM) libwine_unicode.so && $(LN_S) libwine_unicode.so.$(SOVERSION) libwine_unicode.so
|
||||
|
||||
install_a: libwine_unicode.a dummy
|
||||
$(MKINSTALLDIRS) $(libdir)
|
||||
$(INSTALL_DATA) libwine_unicode.a $(libdir)/libwine_unicode.a
|
||||
|
||||
install_dll: libwine_unicode.dll dummy
|
||||
install-lib-dll: libwine_unicode.dll dummy
|
||||
$(MKINSTALLDIRS) $(libdir)
|
||||
$(INSTALL_DATA) libwine_unicode.dll $(libdir)/libwine_unicode.dll
|
||||
|
||||
install:: $(LIBEXT:%=install_%)
|
||||
install-dev-so: dummy
|
||||
$(MKINSTALLDIRS) $(libdir)
|
||||
cd $(libdir) && $(RM) libwine_unicode.so && $(LN_S) libwine_unicode.so.$(SOVERSION) libwine_unicode.so
|
||||
|
||||
install-dev-dll: libwine_unicode.a dummy
|
||||
$(MKINSTALLDIRS) $(libdir)
|
||||
$(INSTALL_DATA) libwine_unicode.a $(libdir)/libwine_unicode.a
|
||||
|
||||
install install-lib:: $(LIBEXT:%=install-lib-%)
|
||||
install install-dev:: $(LIBEXT:%=install-dev-%)
|
||||
|
||||
uninstall::
|
||||
$(RM) $(libdir)/libwine_unicode.a $(libdir)/libwine_unicode.dll $(libdir)/libwine_unicode.so $(libdir)/libwine_unicode.so.$(SOVERSION)
|
||||
|
|
|
@ -14,12 +14,12 @@ all: $(MODULE)
|
|||
|
||||
@MAKE_RULES@
|
||||
|
||||
$(MODULE): $(OBJS)
|
||||
$(MODULE): $(OBJS) Makefile.in
|
||||
$(RM) $@
|
||||
$(AR) $@ $(OBJS)
|
||||
$(RANLIB) $@
|
||||
|
||||
install:: libwine_uuid.a
|
||||
install install-dev:: libwine_uuid.a
|
||||
$(MKINSTALLDIRS) $(libdir)
|
||||
$(INSTALL_DATA) libwine_uuid.a $(libdir)/libwine_uuid.a
|
||||
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
Makefile
|
||||
libwine.so.1
|
|
@ -1,61 +1,59 @@
|
|||
DEFS = @DLLFLAGS@ -D__WINESRC__ -DDLLDIR="\"$(dlldir)\""
|
||||
TOPSRCDIR = @top_srcdir@
|
||||
TOPOBJDIR = ..
|
||||
TOPOBJDIR = ../..
|
||||
SRCDIR = @srcdir@
|
||||
VPATH = @srcdir@
|
||||
LIBEXT = @LIBEXT@
|
||||
MODULE = none
|
||||
SOVERSION = 1.0
|
||||
SONAME = libwine.so
|
||||
EXTRALIBS = @DLLIBS@ @CRTLIBS@
|
||||
SOVERSION = 1
|
||||
SONAME = libwine.so.$(SOVERSION)
|
||||
MODULE = libwine.$(LIBEXT)
|
||||
EXTRALIBS = $(LIBPORT) @DLLIBS@ @CRTLIBS@
|
||||
|
||||
C_SRCS = \
|
||||
config.c \
|
||||
debug.c \
|
||||
errno.c \
|
||||
ldt.c \
|
||||
loader.c \
|
||||
port.c
|
||||
loader.c
|
||||
|
||||
all: libwine.$(LIBEXT)
|
||||
|
||||
@MAKE_RULES@
|
||||
|
||||
libwine.so.$(SOVERSION): $(OBJS)
|
||||
libwine.so.$(SOVERSION): $(OBJS) Makefile.in
|
||||
$(LDSHARED) $(OBJS) $(EXTRALIBS) $(LIBS) -o $@
|
||||
|
||||
libwine.so: libwine.so.$(SOVERSION)
|
||||
$(RM) $@ && $(LN_S) libwine.so.$(SOVERSION) $@
|
||||
|
||||
libwine.a: $(OBJS)
|
||||
$(RM) $@
|
||||
$(AR) $@ $(OBJS)
|
||||
$(RANLIB) $@
|
||||
|
||||
libwine.dll: $(OBJS)
|
||||
libwine.dll libwine.a: $(OBJS) Makefile.in
|
||||
$(DLLWRAP) --export-all --implib libwine.a -o libwine.dll $(OBJS) $(EXTRALIBS)
|
||||
|
||||
.PHONY: install_so install_a install_dll
|
||||
.PHONY: install-lib-so install-lib-dll install-dev-so install-dev-dll
|
||||
|
||||
install_so: libwine.so.$(SOVERSION) dummy
|
||||
install-lib-so: libwine.so.$(SOVERSION) dummy
|
||||
$(MKINSTALLDIRS) $(libdir)
|
||||
$(INSTALL_PROGRAM) libwine.so.$(SOVERSION) $(libdir)/libwine.so.$(SOVERSION)
|
||||
cd $(libdir) && $(RM) libwine.so && $(LN_S) libwine.so.$(SOVERSION) libwine.so
|
||||
|
||||
install_a: libwine.a dummy
|
||||
$(MKINSTALLDIRS) $(libdir)
|
||||
$(INSTALL_DATA) libwine.a $(libdir)/libwine.a
|
||||
|
||||
install_dll: libwine.dll dummy
|
||||
install-lib-dll: libwine.dll dummy
|
||||
$(MKINSTALLDIRS) $(libdir)
|
||||
$(INSTALL_DATA) libwine.dll $(libdir)/libwine.dll
|
||||
|
||||
install:: $(LIBEXT:%=install_%)
|
||||
install-dev-so: dummy
|
||||
$(MKINSTALLDIRS) $(libdir)
|
||||
cd $(libdir) && $(RM) libwine.so && $(LN_S) libwine.so.$(SOVERSION) libwine.so
|
||||
|
||||
install-dev-dll: libwine.a dummy
|
||||
$(MKINSTALLDIRS) $(libdir)
|
||||
$(INSTALL_DATA) libwine.a $(libdir)/libwine.a
|
||||
|
||||
install install-lib:: $(LIBEXT:%=install-lib-%)
|
||||
install install-dev:: $(LIBEXT:%=install-dev-%)
|
||||
|
||||
uninstall::
|
||||
$(RM) $(libdir)/libwine.a $(libdir)/libwine.dll $(libdir)/libwine.so $(libdir)/libwine.so.$(SOVERSION)
|
||||
|
||||
clean::
|
||||
$(RM) libwine.so.$(SOVERSION)
|
||||
$(RM) libwine.so.$(SOVERSION) libwine.dll
|
||||
|
||||
### Dependencies:
|
|
@ -20,6 +20,8 @@
|
|||
|
||||
#include "config.h"
|
||||
|
||||
#include <assert.h>
|
||||
|
||||
/* default errno before threading is initialized */
|
||||
static int *default_errno_location(void)
|
||||
{
|
||||
|
@ -58,3 +60,26 @@ int *__h_errno_location(void)
|
|||
{
|
||||
return wine_h_errno_location();
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* pthread functions
|
||||
*/
|
||||
#ifndef HAVE_PTHREAD_GETSPECIFIC
|
||||
void pthread_getspecific() { assert(0); }
|
||||
#endif
|
||||
|
||||
#ifndef HAVE_PTHREAD_KEY_CREATE
|
||||
void pthread_key_create() { assert(0); }
|
||||
#endif
|
||||
|
||||
#ifndef HAVE_PTHREAD_MUTEX_LOCK
|
||||
void pthread_mutex_lock() { assert(0); }
|
||||
#endif
|
||||
|
||||
#ifndef HAVE_PTHREAD_MUTEX_UNLOCK
|
||||
void pthread_mutex_unlock() { assert(0); }
|
||||
#endif
|
||||
|
||||
#ifndef HAVE_PTHREAD_SETSPECIFIC
|
||||
void pthread_setspecific() { assert(0); }
|
||||
#endif
|
|
@ -64,9 +64,9 @@ topdir=`cd "$topdir" && pwd`
|
|||
|
||||
if [ -n "$LD_LIBRARY_PATH" ]
|
||||
then
|
||||
LD_LIBRARY_PATH="$topdir/dlls:$topdir/library:$topdir/libs/unicode:$LD_LIBRARY_PATH"
|
||||
LD_LIBRARY_PATH="$topdir/dlls:$topdir/libs/wine:$topdir/libs/unicode:$LD_LIBRARY_PATH"
|
||||
else
|
||||
LD_LIBRARY_PATH="$topdir/dlls:$topdir/library:$topdir/libs/unicode"
|
||||
LD_LIBRARY_PATH="$topdir/dlls:$topdir/libs/wine:$topdir/libs/unicode"
|
||||
fi
|
||||
WINEDLLPATH="$topdir/dlls:$topdir/programs"
|
||||
WINESERVER="$topdir/server/wineserver"
|
||||
|
|
Loading…
Reference in New Issue