push to repo
This commit is contained in:
commit
01abdc2877
304
bin/function_grep.pl
Executable file
304
bin/function_grep.pl
Executable file
|
@ -0,0 +1,304 @@
|
|||
#! /usr/bin/perl -w
|
||||
#
|
||||
# Copyright 2000 Patrik Stridvall
|
||||
#
|
||||
# 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
|
||||
#
|
||||
|
||||
use strict;
|
||||
|
||||
my $name0=$0;
|
||||
$name0 =~ s%^.*/%%;
|
||||
|
||||
my $invert = 0;
|
||||
my $pattern;
|
||||
my @files = ();
|
||||
my $usage;
|
||||
|
||||
while(defined($_ = shift)) {
|
||||
if (/^-v$/) {
|
||||
$invert = 1;
|
||||
} elsif (/^--?(\?|h|help)$/) {
|
||||
$usage=0;
|
||||
} elsif (/^-/) {
|
||||
print STDERR "$name0:error: unknown option '$_'\n";
|
||||
$usage=2;
|
||||
last;
|
||||
} elsif(!defined($pattern)) {
|
||||
$pattern = $_;
|
||||
} else {
|
||||
push @files, $_;
|
||||
}
|
||||
}
|
||||
if (defined $usage)
|
||||
{
|
||||
print "Usage: $name0 [--help] [-v] pattern files...\n";
|
||||
print "where:\n";
|
||||
print "--help Prints this help message\n";
|
||||
print "-v Return functions that do not match pattern\n";
|
||||
print "pattern A regular expression for the function name\n";
|
||||
print "files... A list of files to search the function in\n";
|
||||
exit $usage;
|
||||
}
|
||||
|
||||
foreach my $file (@files) {
|
||||
open(IN, "< $file") || die "Error: Can't open $file: $!\n";
|
||||
|
||||
my $level = 0;
|
||||
my $extern_c = 0;
|
||||
|
||||
my $again = 0;
|
||||
my $lookahead = 0;
|
||||
while($again || defined(my $line = <IN>)) {
|
||||
if(!$again) {
|
||||
chomp $line;
|
||||
if($lookahead) {
|
||||
$lookahead = 0;
|
||||
$_ .= "\n" . $line;
|
||||
} else {
|
||||
$_ = $line;
|
||||
}
|
||||
} else {
|
||||
$again = 0;
|
||||
}
|
||||
|
||||
# remove C comments
|
||||
if(s/^(|.*?[^\/])(\/\*.*?\*\/)(.*)$/$1 $3/s) {
|
||||
$again = 1;
|
||||
next;
|
||||
} elsif(/^(.*?)\/\*/s) {
|
||||
$lookahead = 1;
|
||||
next;
|
||||
}
|
||||
|
||||
# remove C++ comments
|
||||
while(s/^(.*?)\/\/.*?$/$1\n/s) { $again = 1; }
|
||||
if($again) { next; }
|
||||
|
||||
# remove empty rows
|
||||
if(/^\s*$/) { next; }
|
||||
|
||||
# remove preprocessor directives
|
||||
if(s/^\s*\#/\#/m) {
|
||||
if(/^\#[.\n\r]*?\\$/m) {
|
||||
$lookahead = 1;
|
||||
next;
|
||||
} elsif(s/^\#\s*(.*?)(\s+(.*?))?\s*$//m) {
|
||||
next;
|
||||
}
|
||||
}
|
||||
|
||||
# Remove extern "C"
|
||||
if(s/^\s*extern[\s\n]+"C"[\s\n]+\{//m) {
|
||||
$extern_c = 1;
|
||||
$again = 1;
|
||||
next;
|
||||
} elsif(m/^\s*extern[\s\n]+"C"/m) {
|
||||
$lookahead = 1;
|
||||
next;
|
||||
}
|
||||
|
||||
if($level > 0)
|
||||
{
|
||||
my $line = "";
|
||||
while(/^[^\{\}]/) {
|
||||
s/^([^\{\}\'\"]*)//s;
|
||||
$line .= $1;
|
||||
if(s/^\'//) {
|
||||
$line .= "\'";
|
||||
while(/^./ && !s/^\'//) {
|
||||
s/^([^\'\\]*)//s;
|
||||
$line .= $1;
|
||||
if(s/^\\//) {
|
||||
$line .= "\\";
|
||||
if(s/^(.)//s) {
|
||||
$line .= $1;
|
||||
if($1 eq "0") {
|
||||
s/^(\d{0,3})//s;
|
||||
$line .= $1;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
$line .= "\'";
|
||||
} elsif(s/^\"//) {
|
||||
$line .= "\"";
|
||||
while(/^./ && !s/^\"//) {
|
||||
s/^([^\"\\]*)//s;
|
||||
$line .= $1;
|
||||
if(s/^\\//) {
|
||||
$line .= "\\";
|
||||
if(s/^(.)//s) {
|
||||
$line .= $1;
|
||||
if($1 eq "0") {
|
||||
s/^(\d{0,3})//s;
|
||||
$line .= $1;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
$line .= "\"";
|
||||
}
|
||||
}
|
||||
|
||||
if(s/^\{//) {
|
||||
$_ = $'; $again = 1;
|
||||
$line .= "{";
|
||||
$level++;
|
||||
} elsif(s/^\}//) {
|
||||
$_ = $'; $again = 1;
|
||||
$line .= "}" if $level > 1;
|
||||
$level--;
|
||||
if($level == -1 && $extern_c) {
|
||||
$extern_c = 0;
|
||||
$level = 0;
|
||||
}
|
||||
}
|
||||
|
||||
next;
|
||||
} elsif(/^class[^\}]*{/) {
|
||||
$_ = $'; $again = 1;
|
||||
$level++;
|
||||
next;
|
||||
} elsif(/^class[^\}]*$/) {
|
||||
$lookahead = 1;
|
||||
next;
|
||||
} elsif(/^typedef[^\}]*;/) {
|
||||
next;
|
||||
} elsif(/(extern\s+|static\s+)?
|
||||
(?:__inline__\s+|__inline\s+|inline\s+)?
|
||||
((struct\s+|union\s+|enum\s+)?(?:\w+(?:\:\:(?:\s*operator\s*[^\)\s]+)?)?)+((\s*(?:\*|\&))+\s*|\s+))
|
||||
((__cdecl|__stdcall|CDECL|VFWAPIV|VFWAPI|WINAPIV|WINAPI|CALLBACK)\s+)?
|
||||
((?:\w+(?:\:\:)?)+(\(\w+\))?)\s*\(([^\)]*)\)\s*
|
||||
(?:\w+(?:\s*\([^\)]*\))?\s*)*\s*
|
||||
(\{|\;)/sx)
|
||||
{
|
||||
$_ = $'; $again = 1;
|
||||
if($11 eq "{") {
|
||||
$level++;
|
||||
}
|
||||
|
||||
my $linkage = $1;
|
||||
my $return_type = $2;
|
||||
my $calling_convention = $7;
|
||||
my $name = $8;
|
||||
my $arguments = $10;
|
||||
|
||||
if(!defined($linkage)) {
|
||||
$linkage = "";
|
||||
}
|
||||
|
||||
if(!defined($calling_convention)) {
|
||||
$calling_convention = "";
|
||||
}
|
||||
|
||||
$linkage =~ s/\s*$//;
|
||||
|
||||
$return_type =~ s/\s*$//;
|
||||
$return_type =~ s/\s*\*\s*/*/g;
|
||||
$return_type =~ s/(\*+)/ $1/g;
|
||||
|
||||
$arguments =~ y/\t\n/ /;
|
||||
$arguments =~ s/^\s*(.*?)\s*$/$1/;
|
||||
if($arguments eq "") { $arguments = "void" }
|
||||
|
||||
my @argument_types;
|
||||
my @argument_names;
|
||||
my @arguments = split(/,/, $arguments);
|
||||
foreach my $n (0..$#arguments) {
|
||||
my $argument_type = "";
|
||||
my $argument_name = "";
|
||||
my $argument = $arguments[$n];
|
||||
$argument =~ s/^\s*(.*?)\s*$/$1/;
|
||||
# print " " . ($n + 1) . ": '$argument'\n";
|
||||
$argument =~ s/^(IN OUT(?=\s)|IN(?=\s)|OUT(?=\s)|\s*)\s*//;
|
||||
$argument =~ s/^(const(?=\s)|CONST(?=\s)|__const(?=\s)|__restrict(?=\s)|\s*)\s*//;
|
||||
if($argument =~ /^\.\.\.$/) {
|
||||
$argument_type = "...";
|
||||
$argument_name = "...";
|
||||
} elsif($argument =~ /^
|
||||
((?:struct\s+|union\s+|enum\s+|(?:signed\s+|unsigned\s+)
|
||||
(?:short\s+(?=int)|long\s+(?=int))?)?(?:\w+(?:\:\:)?)+)\s*
|
||||
((?:const(?=\s)|CONST(?=\s)|__const(?=\s)|__restrict(?=\s))?\s*(?:\*\s*?)*)\s*
|
||||
(?:const(?=\s)|CONST(?=\s)|__const(?=\s)|__restrict(?=\s))?\s*
|
||||
(\w*)\s*
|
||||
(?:\[\]|\s+OPTIONAL)?/x)
|
||||
{
|
||||
$argument_type = "$1";
|
||||
if($2 ne "") {
|
||||
$argument_type .= " $2";
|
||||
}
|
||||
$argument_name = $3;
|
||||
|
||||
$argument_type =~ s/\s*const\s*/ /;
|
||||
$argument_type =~ s/^\s*(.*?)\s*$/$1/;
|
||||
|
||||
$argument_name =~ s/^\s*(.*?)\s*$/$1/;
|
||||
} else {
|
||||
die "$file: $.: syntax error: '$argument'\n";
|
||||
}
|
||||
$argument_types[$n] = $argument_type;
|
||||
$argument_names[$n] = $argument_name;
|
||||
# print " " . ($n + 1) . ": '$argument_type': '$argument_name'\n";
|
||||
}
|
||||
if($#argument_types == 0 && $argument_types[0] =~ /^void$/i) {
|
||||
$#argument_types = -1;
|
||||
$#argument_names = -1;
|
||||
}
|
||||
|
||||
@arguments = ();
|
||||
foreach my $n (0..$#argument_types) {
|
||||
if($argument_names[$n] && $argument_names[$n] ne "...") {
|
||||
if($argument_types[$n] !~ /\*$/) {
|
||||
$arguments[$n] = $argument_types[$n] . " " . $argument_names[$n];
|
||||
} else {
|
||||
$arguments[$n] = $argument_types[$n] . $argument_names[$n];
|
||||
}
|
||||
} else {
|
||||
$arguments[$n] = $argument_types[$n];
|
||||
}
|
||||
}
|
||||
|
||||
$arguments = join(", ", @arguments);
|
||||
if(!$arguments) { $arguments = "void"; }
|
||||
|
||||
if((!$invert && $name =~ /$pattern/) || ($invert && $name !~ /$pattern/)) {
|
||||
if($calling_convention) {
|
||||
print "$return_type $calling_convention $name($arguments)\n";
|
||||
} else {
|
||||
if($return_type =~ /\*$/) {
|
||||
print "$return_type$name($arguments)\n";
|
||||
} else {
|
||||
print "$return_type $name($arguments)\n";
|
||||
}
|
||||
}
|
||||
}
|
||||
} elsif(/\'(?:[^\\\']*|\\.)*\'/s) {
|
||||
$_ = $'; $again = 1;
|
||||
} elsif(/\"(?:[^\\\"]*|\\.)*\"/s) {
|
||||
$_ = $'; $again = 1;
|
||||
} elsif(/;/s) {
|
||||
$_ = $'; $again = 1;
|
||||
} elsif(/extern\s+"C"\s+{/s) {
|
||||
$_ = $'; $again = 1;
|
||||
} elsif(/\{/s) {
|
||||
$_ = $'; $again = 1;
|
||||
$level++;
|
||||
} else {
|
||||
$lookahead = 1;
|
||||
}
|
||||
}
|
||||
close(IN);
|
||||
}
|
64
bin/msidb
Executable file
64
bin/msidb
Executable file
|
@ -0,0 +1,64 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Wrapper script to start a Winelib application once it is installed
|
||||
#
|
||||
# Copyright (C) 2002 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
|
||||
#
|
||||
|
||||
# determine the app Winelib library name
|
||||
appname=`basename "$0" .exe`.exe
|
||||
|
||||
# first try explicit WINELOADER
|
||||
if [ -x "$WINELOADER" ]; then exec "$WINELOADER" "$appname" "$@"; fi
|
||||
|
||||
# now try the directory containing $0
|
||||
appdir=""
|
||||
case "$0" in
|
||||
*/*)
|
||||
# $0 contains a path, use it
|
||||
appdir=`dirname "$0"`
|
||||
;;
|
||||
*)
|
||||
# no directory in $0, search in PATH
|
||||
saved_ifs=$IFS
|
||||
IFS=:
|
||||
for d in $PATH
|
||||
do
|
||||
IFS=$saved_ifs
|
||||
if [ -x "$d/$0" ]; then appdir="$d"; break; fi
|
||||
done
|
||||
;;
|
||||
esac
|
||||
if [ -x "$appdir/wine" ]; then exec "$appdir/wine" "$appname" "$@"; fi
|
||||
if [ -x "$appdir/wine64" ]; then exec "$appdir/wine64" "$appname" "$@"; fi
|
||||
|
||||
# now look in PATH
|
||||
saved_ifs=$IFS
|
||||
IFS=:
|
||||
for d in $PATH
|
||||
do
|
||||
IFS=$saved_ifs
|
||||
if [ -x "$d/wine" ]; then exec "$d/wine" "$appname" "$@"; fi
|
||||
if [ -x "$d/wine64" ]; then exec "$d/wine64" "$appname" "$@"; fi
|
||||
done
|
||||
|
||||
# finally, the default bin directory
|
||||
if [ -x "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine" ]; then exec "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine" "$appname" "$@"; fi
|
||||
if [ -x "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine64" ]; then exec "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine64" "$appname" "$@"; fi
|
||||
|
||||
echo "$0: the Wine loader is missing"
|
||||
exit 1
|
64
bin/msiexec
Executable file
64
bin/msiexec
Executable file
|
@ -0,0 +1,64 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Wrapper script to start a Winelib application once it is installed
|
||||
#
|
||||
# Copyright (C) 2002 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
|
||||
#
|
||||
|
||||
# determine the app Winelib library name
|
||||
appname=`basename "$0" .exe`.exe
|
||||
|
||||
# first try explicit WINELOADER
|
||||
if [ -x "$WINELOADER" ]; then exec "$WINELOADER" "$appname" "$@"; fi
|
||||
|
||||
# now try the directory containing $0
|
||||
appdir=""
|
||||
case "$0" in
|
||||
*/*)
|
||||
# $0 contains a path, use it
|
||||
appdir=`dirname "$0"`
|
||||
;;
|
||||
*)
|
||||
# no directory in $0, search in PATH
|
||||
saved_ifs=$IFS
|
||||
IFS=:
|
||||
for d in $PATH
|
||||
do
|
||||
IFS=$saved_ifs
|
||||
if [ -x "$d/$0" ]; then appdir="$d"; break; fi
|
||||
done
|
||||
;;
|
||||
esac
|
||||
if [ -x "$appdir/wine" ]; then exec "$appdir/wine" "$appname" "$@"; fi
|
||||
if [ -x "$appdir/wine64" ]; then exec "$appdir/wine64" "$appname" "$@"; fi
|
||||
|
||||
# now look in PATH
|
||||
saved_ifs=$IFS
|
||||
IFS=:
|
||||
for d in $PATH
|
||||
do
|
||||
IFS=$saved_ifs
|
||||
if [ -x "$d/wine" ]; then exec "$d/wine" "$appname" "$@"; fi
|
||||
if [ -x "$d/wine64" ]; then exec "$d/wine64" "$appname" "$@"; fi
|
||||
done
|
||||
|
||||
# finally, the default bin directory
|
||||
if [ -x "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine" ]; then exec "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine" "$appname" "$@"; fi
|
||||
if [ -x "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine64" ]; then exec "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine64" "$appname" "$@"; fi
|
||||
|
||||
echo "$0: the Wine loader is missing"
|
||||
exit 1
|
64
bin/notepad
Executable file
64
bin/notepad
Executable file
|
@ -0,0 +1,64 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Wrapper script to start a Winelib application once it is installed
|
||||
#
|
||||
# Copyright (C) 2002 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
|
||||
#
|
||||
|
||||
# determine the app Winelib library name
|
||||
appname=`basename "$0" .exe`.exe
|
||||
|
||||
# first try explicit WINELOADER
|
||||
if [ -x "$WINELOADER" ]; then exec "$WINELOADER" "$appname" "$@"; fi
|
||||
|
||||
# now try the directory containing $0
|
||||
appdir=""
|
||||
case "$0" in
|
||||
*/*)
|
||||
# $0 contains a path, use it
|
||||
appdir=`dirname "$0"`
|
||||
;;
|
||||
*)
|
||||
# no directory in $0, search in PATH
|
||||
saved_ifs=$IFS
|
||||
IFS=:
|
||||
for d in $PATH
|
||||
do
|
||||
IFS=$saved_ifs
|
||||
if [ -x "$d/$0" ]; then appdir="$d"; break; fi
|
||||
done
|
||||
;;
|
||||
esac
|
||||
if [ -x "$appdir/wine" ]; then exec "$appdir/wine" "$appname" "$@"; fi
|
||||
if [ -x "$appdir/wine64" ]; then exec "$appdir/wine64" "$appname" "$@"; fi
|
||||
|
||||
# now look in PATH
|
||||
saved_ifs=$IFS
|
||||
IFS=:
|
||||
for d in $PATH
|
||||
do
|
||||
IFS=$saved_ifs
|
||||
if [ -x "$d/wine" ]; then exec "$d/wine" "$appname" "$@"; fi
|
||||
if [ -x "$d/wine64" ]; then exec "$d/wine64" "$appname" "$@"; fi
|
||||
done
|
||||
|
||||
# finally, the default bin directory
|
||||
if [ -x "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine" ]; then exec "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine" "$appname" "$@"; fi
|
||||
if [ -x "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine64" ]; then exec "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine64" "$appname" "$@"; fi
|
||||
|
||||
echo "$0: the Wine loader is missing"
|
||||
exit 1
|
64
bin/regedit
Executable file
64
bin/regedit
Executable file
|
@ -0,0 +1,64 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Wrapper script to start a Winelib application once it is installed
|
||||
#
|
||||
# Copyright (C) 2002 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
|
||||
#
|
||||
|
||||
# determine the app Winelib library name
|
||||
appname=`basename "$0" .exe`.exe
|
||||
|
||||
# first try explicit WINELOADER
|
||||
if [ -x "$WINELOADER" ]; then exec "$WINELOADER" "$appname" "$@"; fi
|
||||
|
||||
# now try the directory containing $0
|
||||
appdir=""
|
||||
case "$0" in
|
||||
*/*)
|
||||
# $0 contains a path, use it
|
||||
appdir=`dirname "$0"`
|
||||
;;
|
||||
*)
|
||||
# no directory in $0, search in PATH
|
||||
saved_ifs=$IFS
|
||||
IFS=:
|
||||
for d in $PATH
|
||||
do
|
||||
IFS=$saved_ifs
|
||||
if [ -x "$d/$0" ]; then appdir="$d"; break; fi
|
||||
done
|
||||
;;
|
||||
esac
|
||||
if [ -x "$appdir/wine" ]; then exec "$appdir/wine" "$appname" "$@"; fi
|
||||
if [ -x "$appdir/wine64" ]; then exec "$appdir/wine64" "$appname" "$@"; fi
|
||||
|
||||
# now look in PATH
|
||||
saved_ifs=$IFS
|
||||
IFS=:
|
||||
for d in $PATH
|
||||
do
|
||||
IFS=$saved_ifs
|
||||
if [ -x "$d/wine" ]; then exec "$d/wine" "$appname" "$@"; fi
|
||||
if [ -x "$d/wine64" ]; then exec "$d/wine64" "$appname" "$@"; fi
|
||||
done
|
||||
|
||||
# finally, the default bin directory
|
||||
if [ -x "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine" ]; then exec "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine" "$appname" "$@"; fi
|
||||
if [ -x "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine64" ]; then exec "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine64" "$appname" "$@"; fi
|
||||
|
||||
echo "$0: the Wine loader is missing"
|
||||
exit 1
|
64
bin/regsvr32
Executable file
64
bin/regsvr32
Executable file
|
@ -0,0 +1,64 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Wrapper script to start a Winelib application once it is installed
|
||||
#
|
||||
# Copyright (C) 2002 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
|
||||
#
|
||||
|
||||
# determine the app Winelib library name
|
||||
appname=`basename "$0" .exe`.exe
|
||||
|
||||
# first try explicit WINELOADER
|
||||
if [ -x "$WINELOADER" ]; then exec "$WINELOADER" "$appname" "$@"; fi
|
||||
|
||||
# now try the directory containing $0
|
||||
appdir=""
|
||||
case "$0" in
|
||||
*/*)
|
||||
# $0 contains a path, use it
|
||||
appdir=`dirname "$0"`
|
||||
;;
|
||||
*)
|
||||
# no directory in $0, search in PATH
|
||||
saved_ifs=$IFS
|
||||
IFS=:
|
||||
for d in $PATH
|
||||
do
|
||||
IFS=$saved_ifs
|
||||
if [ -x "$d/$0" ]; then appdir="$d"; break; fi
|
||||
done
|
||||
;;
|
||||
esac
|
||||
if [ -x "$appdir/wine" ]; then exec "$appdir/wine" "$appname" "$@"; fi
|
||||
if [ -x "$appdir/wine64" ]; then exec "$appdir/wine64" "$appname" "$@"; fi
|
||||
|
||||
# now look in PATH
|
||||
saved_ifs=$IFS
|
||||
IFS=:
|
||||
for d in $PATH
|
||||
do
|
||||
IFS=$saved_ifs
|
||||
if [ -x "$d/wine" ]; then exec "$d/wine" "$appname" "$@"; fi
|
||||
if [ -x "$d/wine64" ]; then exec "$d/wine64" "$appname" "$@"; fi
|
||||
done
|
||||
|
||||
# finally, the default bin directory
|
||||
if [ -x "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine" ]; then exec "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine" "$appname" "$@"; fi
|
||||
if [ -x "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine64" ]; then exec "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine64" "$appname" "$@"; fi
|
||||
|
||||
echo "$0: the Wine loader is missing"
|
||||
exit 1
|
BIN
bin/wine-preloader
Executable file
BIN
bin/wine-preloader
Executable file
Binary file not shown.
BIN
bin/wine64
Executable file
BIN
bin/wine64
Executable file
Binary file not shown.
BIN
bin/wine64-preloader
Executable file
BIN
bin/wine64-preloader
Executable file
Binary file not shown.
64
bin/wineboot
Executable file
64
bin/wineboot
Executable file
|
@ -0,0 +1,64 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Wrapper script to start a Winelib application once it is installed
|
||||
#
|
||||
# Copyright (C) 2002 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
|
||||
#
|
||||
|
||||
# determine the app Winelib library name
|
||||
appname=`basename "$0" .exe`.exe
|
||||
|
||||
# first try explicit WINELOADER
|
||||
if [ -x "$WINELOADER" ]; then exec "$WINELOADER" "$appname" "$@"; fi
|
||||
|
||||
# now try the directory containing $0
|
||||
appdir=""
|
||||
case "$0" in
|
||||
*/*)
|
||||
# $0 contains a path, use it
|
||||
appdir=`dirname "$0"`
|
||||
;;
|
||||
*)
|
||||
# no directory in $0, search in PATH
|
||||
saved_ifs=$IFS
|
||||
IFS=:
|
||||
for d in $PATH
|
||||
do
|
||||
IFS=$saved_ifs
|
||||
if [ -x "$d/$0" ]; then appdir="$d"; break; fi
|
||||
done
|
||||
;;
|
||||
esac
|
||||
if [ -x "$appdir/wine" ]; then exec "$appdir/wine" "$appname" "$@"; fi
|
||||
if [ -x "$appdir/wine64" ]; then exec "$appdir/wine64" "$appname" "$@"; fi
|
||||
|
||||
# now look in PATH
|
||||
saved_ifs=$IFS
|
||||
IFS=:
|
||||
for d in $PATH
|
||||
do
|
||||
IFS=$saved_ifs
|
||||
if [ -x "$d/wine" ]; then exec "$d/wine" "$appname" "$@"; fi
|
||||
if [ -x "$d/wine64" ]; then exec "$d/wine64" "$appname" "$@"; fi
|
||||
done
|
||||
|
||||
# finally, the default bin directory
|
||||
if [ -x "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine" ]; then exec "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine" "$appname" "$@"; fi
|
||||
if [ -x "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine64" ]; then exec "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine64" "$appname" "$@"; fi
|
||||
|
||||
echo "$0: the Wine loader is missing"
|
||||
exit 1
|
BIN
bin/winebuild
Executable file
BIN
bin/winebuild
Executable file
Binary file not shown.
64
bin/winecfg
Executable file
64
bin/winecfg
Executable file
|
@ -0,0 +1,64 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Wrapper script to start a Winelib application once it is installed
|
||||
#
|
||||
# Copyright (C) 2002 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
|
||||
#
|
||||
|
||||
# determine the app Winelib library name
|
||||
appname=`basename "$0" .exe`.exe
|
||||
|
||||
# first try explicit WINELOADER
|
||||
if [ -x "$WINELOADER" ]; then exec "$WINELOADER" "$appname" "$@"; fi
|
||||
|
||||
# now try the directory containing $0
|
||||
appdir=""
|
||||
case "$0" in
|
||||
*/*)
|
||||
# $0 contains a path, use it
|
||||
appdir=`dirname "$0"`
|
||||
;;
|
||||
*)
|
||||
# no directory in $0, search in PATH
|
||||
saved_ifs=$IFS
|
||||
IFS=:
|
||||
for d in $PATH
|
||||
do
|
||||
IFS=$saved_ifs
|
||||
if [ -x "$d/$0" ]; then appdir="$d"; break; fi
|
||||
done
|
||||
;;
|
||||
esac
|
||||
if [ -x "$appdir/wine" ]; then exec "$appdir/wine" "$appname" "$@"; fi
|
||||
if [ -x "$appdir/wine64" ]; then exec "$appdir/wine64" "$appname" "$@"; fi
|
||||
|
||||
# now look in PATH
|
||||
saved_ifs=$IFS
|
||||
IFS=:
|
||||
for d in $PATH
|
||||
do
|
||||
IFS=$saved_ifs
|
||||
if [ -x "$d/wine" ]; then exec "$d/wine" "$appname" "$@"; fi
|
||||
if [ -x "$d/wine64" ]; then exec "$d/wine64" "$appname" "$@"; fi
|
||||
done
|
||||
|
||||
# finally, the default bin directory
|
||||
if [ -x "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine" ]; then exec "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine" "$appname" "$@"; fi
|
||||
if [ -x "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine64" ]; then exec "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine64" "$appname" "$@"; fi
|
||||
|
||||
echo "$0: the Wine loader is missing"
|
||||
exit 1
|
64
bin/wineconsole
Executable file
64
bin/wineconsole
Executable file
|
@ -0,0 +1,64 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Wrapper script to start a Winelib application once it is installed
|
||||
#
|
||||
# Copyright (C) 2002 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
|
||||
#
|
||||
|
||||
# determine the app Winelib library name
|
||||
appname=`basename "$0" .exe`.exe
|
||||
|
||||
# first try explicit WINELOADER
|
||||
if [ -x "$WINELOADER" ]; then exec "$WINELOADER" "$appname" "$@"; fi
|
||||
|
||||
# now try the directory containing $0
|
||||
appdir=""
|
||||
case "$0" in
|
||||
*/*)
|
||||
# $0 contains a path, use it
|
||||
appdir=`dirname "$0"`
|
||||
;;
|
||||
*)
|
||||
# no directory in $0, search in PATH
|
||||
saved_ifs=$IFS
|
||||
IFS=:
|
||||
for d in $PATH
|
||||
do
|
||||
IFS=$saved_ifs
|
||||
if [ -x "$d/$0" ]; then appdir="$d"; break; fi
|
||||
done
|
||||
;;
|
||||
esac
|
||||
if [ -x "$appdir/wine" ]; then exec "$appdir/wine" "$appname" "$@"; fi
|
||||
if [ -x "$appdir/wine64" ]; then exec "$appdir/wine64" "$appname" "$@"; fi
|
||||
|
||||
# now look in PATH
|
||||
saved_ifs=$IFS
|
||||
IFS=:
|
||||
for d in $PATH
|
||||
do
|
||||
IFS=$saved_ifs
|
||||
if [ -x "$d/wine" ]; then exec "$d/wine" "$appname" "$@"; fi
|
||||
if [ -x "$d/wine64" ]; then exec "$d/wine64" "$appname" "$@"; fi
|
||||
done
|
||||
|
||||
# finally, the default bin directory
|
||||
if [ -x "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine" ]; then exec "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine" "$appname" "$@"; fi
|
||||
if [ -x "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine64" ]; then exec "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine64" "$appname" "$@"; fi
|
||||
|
||||
echo "$0: the Wine loader is missing"
|
||||
exit 1
|
1
bin/winecpp
Symbolic link
1
bin/winecpp
Symbolic link
|
@ -0,0 +1 @@
|
|||
winegcc
|
64
bin/winedbg
Executable file
64
bin/winedbg
Executable file
|
@ -0,0 +1,64 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Wrapper script to start a Winelib application once it is installed
|
||||
#
|
||||
# Copyright (C) 2002 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
|
||||
#
|
||||
|
||||
# determine the app Winelib library name
|
||||
appname=`basename "$0" .exe`.exe
|
||||
|
||||
# first try explicit WINELOADER
|
||||
if [ -x "$WINELOADER" ]; then exec "$WINELOADER" "$appname" "$@"; fi
|
||||
|
||||
# now try the directory containing $0
|
||||
appdir=""
|
||||
case "$0" in
|
||||
*/*)
|
||||
# $0 contains a path, use it
|
||||
appdir=`dirname "$0"`
|
||||
;;
|
||||
*)
|
||||
# no directory in $0, search in PATH
|
||||
saved_ifs=$IFS
|
||||
IFS=:
|
||||
for d in $PATH
|
||||
do
|
||||
IFS=$saved_ifs
|
||||
if [ -x "$d/$0" ]; then appdir="$d"; break; fi
|
||||
done
|
||||
;;
|
||||
esac
|
||||
if [ -x "$appdir/wine" ]; then exec "$appdir/wine" "$appname" "$@"; fi
|
||||
if [ -x "$appdir/wine64" ]; then exec "$appdir/wine64" "$appname" "$@"; fi
|
||||
|
||||
# now look in PATH
|
||||
saved_ifs=$IFS
|
||||
IFS=:
|
||||
for d in $PATH
|
||||
do
|
||||
IFS=$saved_ifs
|
||||
if [ -x "$d/wine" ]; then exec "$d/wine" "$appname" "$@"; fi
|
||||
if [ -x "$d/wine64" ]; then exec "$d/wine64" "$appname" "$@"; fi
|
||||
done
|
||||
|
||||
# finally, the default bin directory
|
||||
if [ -x "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine" ]; then exec "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine" "$appname" "$@"; fi
|
||||
if [ -x "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine64" ]; then exec "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine64" "$appname" "$@"; fi
|
||||
|
||||
echo "$0: the Wine loader is missing"
|
||||
exit 1
|
BIN
bin/winedump
Executable file
BIN
bin/winedump
Executable file
Binary file not shown.
64
bin/winefile
Executable file
64
bin/winefile
Executable file
|
@ -0,0 +1,64 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Wrapper script to start a Winelib application once it is installed
|
||||
#
|
||||
# Copyright (C) 2002 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
|
||||
#
|
||||
|
||||
# determine the app Winelib library name
|
||||
appname=`basename "$0" .exe`.exe
|
||||
|
||||
# first try explicit WINELOADER
|
||||
if [ -x "$WINELOADER" ]; then exec "$WINELOADER" "$appname" "$@"; fi
|
||||
|
||||
# now try the directory containing $0
|
||||
appdir=""
|
||||
case "$0" in
|
||||
*/*)
|
||||
# $0 contains a path, use it
|
||||
appdir=`dirname "$0"`
|
||||
;;
|
||||
*)
|
||||
# no directory in $0, search in PATH
|
||||
saved_ifs=$IFS
|
||||
IFS=:
|
||||
for d in $PATH
|
||||
do
|
||||
IFS=$saved_ifs
|
||||
if [ -x "$d/$0" ]; then appdir="$d"; break; fi
|
||||
done
|
||||
;;
|
||||
esac
|
||||
if [ -x "$appdir/wine" ]; then exec "$appdir/wine" "$appname" "$@"; fi
|
||||
if [ -x "$appdir/wine64" ]; then exec "$appdir/wine64" "$appname" "$@"; fi
|
||||
|
||||
# now look in PATH
|
||||
saved_ifs=$IFS
|
||||
IFS=:
|
||||
for d in $PATH
|
||||
do
|
||||
IFS=$saved_ifs
|
||||
if [ -x "$d/wine" ]; then exec "$d/wine" "$appname" "$@"; fi
|
||||
if [ -x "$d/wine64" ]; then exec "$d/wine64" "$appname" "$@"; fi
|
||||
done
|
||||
|
||||
# finally, the default bin directory
|
||||
if [ -x "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine" ]; then exec "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine" "$appname" "$@"; fi
|
||||
if [ -x "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine64" ]; then exec "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine64" "$appname" "$@"; fi
|
||||
|
||||
echo "$0: the Wine loader is missing"
|
||||
exit 1
|
1
bin/wineg++
Symbolic link
1
bin/wineg++
Symbolic link
|
@ -0,0 +1 @@
|
|||
winegcc
|
BIN
bin/winegcc
Executable file
BIN
bin/winegcc
Executable file
Binary file not shown.
2820
bin/winemaker
Executable file
2820
bin/winemaker
Executable file
File diff suppressed because it is too large
Load Diff
64
bin/winemine
Executable file
64
bin/winemine
Executable file
|
@ -0,0 +1,64 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Wrapper script to start a Winelib application once it is installed
|
||||
#
|
||||
# Copyright (C) 2002 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
|
||||
#
|
||||
|
||||
# determine the app Winelib library name
|
||||
appname=`basename "$0" .exe`.exe
|
||||
|
||||
# first try explicit WINELOADER
|
||||
if [ -x "$WINELOADER" ]; then exec "$WINELOADER" "$appname" "$@"; fi
|
||||
|
||||
# now try the directory containing $0
|
||||
appdir=""
|
||||
case "$0" in
|
||||
*/*)
|
||||
# $0 contains a path, use it
|
||||
appdir=`dirname "$0"`
|
||||
;;
|
||||
*)
|
||||
# no directory in $0, search in PATH
|
||||
saved_ifs=$IFS
|
||||
IFS=:
|
||||
for d in $PATH
|
||||
do
|
||||
IFS=$saved_ifs
|
||||
if [ -x "$d/$0" ]; then appdir="$d"; break; fi
|
||||
done
|
||||
;;
|
||||
esac
|
||||
if [ -x "$appdir/wine" ]; then exec "$appdir/wine" "$appname" "$@"; fi
|
||||
if [ -x "$appdir/wine64" ]; then exec "$appdir/wine64" "$appname" "$@"; fi
|
||||
|
||||
# now look in PATH
|
||||
saved_ifs=$IFS
|
||||
IFS=:
|
||||
for d in $PATH
|
||||
do
|
||||
IFS=$saved_ifs
|
||||
if [ -x "$d/wine" ]; then exec "$d/wine" "$appname" "$@"; fi
|
||||
if [ -x "$d/wine64" ]; then exec "$d/wine64" "$appname" "$@"; fi
|
||||
done
|
||||
|
||||
# finally, the default bin directory
|
||||
if [ -x "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine" ]; then exec "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine" "$appname" "$@"; fi
|
||||
if [ -x "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine64" ]; then exec "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine64" "$appname" "$@"; fi
|
||||
|
||||
echo "$0: the Wine loader is missing"
|
||||
exit 1
|
64
bin/winepath
Executable file
64
bin/winepath
Executable file
|
@ -0,0 +1,64 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Wrapper script to start a Winelib application once it is installed
|
||||
#
|
||||
# Copyright (C) 2002 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
|
||||
#
|
||||
|
||||
# determine the app Winelib library name
|
||||
appname=`basename "$0" .exe`.exe
|
||||
|
||||
# first try explicit WINELOADER
|
||||
if [ -x "$WINELOADER" ]; then exec "$WINELOADER" "$appname" "$@"; fi
|
||||
|
||||
# now try the directory containing $0
|
||||
appdir=""
|
||||
case "$0" in
|
||||
*/*)
|
||||
# $0 contains a path, use it
|
||||
appdir=`dirname "$0"`
|
||||
;;
|
||||
*)
|
||||
# no directory in $0, search in PATH
|
||||
saved_ifs=$IFS
|
||||
IFS=:
|
||||
for d in $PATH
|
||||
do
|
||||
IFS=$saved_ifs
|
||||
if [ -x "$d/$0" ]; then appdir="$d"; break; fi
|
||||
done
|
||||
;;
|
||||
esac
|
||||
if [ -x "$appdir/wine" ]; then exec "$appdir/wine" "$appname" "$@"; fi
|
||||
if [ -x "$appdir/wine64" ]; then exec "$appdir/wine64" "$appname" "$@"; fi
|
||||
|
||||
# now look in PATH
|
||||
saved_ifs=$IFS
|
||||
IFS=:
|
||||
for d in $PATH
|
||||
do
|
||||
IFS=$saved_ifs
|
||||
if [ -x "$d/wine" ]; then exec "$d/wine" "$appname" "$@"; fi
|
||||
if [ -x "$d/wine64" ]; then exec "$d/wine64" "$appname" "$@"; fi
|
||||
done
|
||||
|
||||
# finally, the default bin directory
|
||||
if [ -x "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine" ]; then exec "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine" "$appname" "$@"; fi
|
||||
if [ -x "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine64" ]; then exec "/home/ubuntu/buildbot/runners/wine/tkg-osu-4.6-x86_64/bin/wine64" "$appname" "$@"; fi
|
||||
|
||||
echo "$0: the Wine loader is missing"
|
||||
exit 1
|
BIN
bin/wineserver
Executable file
BIN
bin/wineserver
Executable file
Binary file not shown.
1
lib/libwine.so
Symbolic link
1
lib/libwine.so
Symbolic link
|
@ -0,0 +1 @@
|
|||
libwine.so.1
|
1
lib/libwine.so.1
Symbolic link
1
lib/libwine.so.1
Symbolic link
|
@ -0,0 +1 @@
|
|||
libwine.so.1.0
|
BIN
lib/libwine.so.1.0
Executable file
BIN
lib/libwine.so.1.0
Executable file
Binary file not shown.
BIN
lib/wine/acledit.dll.so
Executable file
BIN
lib/wine/acledit.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/aclui.dll.so
Executable file
BIN
lib/wine/aclui.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/activeds.dll.so
Executable file
BIN
lib/wine/activeds.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/actxprxy.dll.so
Executable file
BIN
lib/wine/actxprxy.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/adsldp.dll.so
Executable file
BIN
lib/wine/adsldp.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/adsldpc.dll.so
Executable file
BIN
lib/wine/adsldpc.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/advapi32.dll.so
Executable file
BIN
lib/wine/advapi32.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/advpack.dll.so
Executable file
BIN
lib/wine/advpack.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/amd_ags_x64.dll.so
Executable file
BIN
lib/wine/amd_ags_x64.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/amsi.dll.so
Executable file
BIN
lib/wine/amsi.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/amstream.dll.so
Executable file
BIN
lib/wine/amstream.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/api-ms-win-appmodel-identity-l1-1-0.dll.so
Executable file
BIN
lib/wine/api-ms-win-appmodel-identity-l1-1-0.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/api-ms-win-appmodel-runtime-l1-1-1.dll.so
Executable file
BIN
lib/wine/api-ms-win-appmodel-runtime-l1-1-1.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/api-ms-win-appmodel-runtime-l1-1-2.dll.so
Executable file
BIN
lib/wine/api-ms-win-appmodel-runtime-l1-1-2.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/api-ms-win-core-apiquery-l1-1-0.dll.so
Executable file
BIN
lib/wine/api-ms-win-core-apiquery-l1-1-0.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/api-ms-win-core-appcompat-l1-1-1.dll.so
Executable file
BIN
lib/wine/api-ms-win-core-appcompat-l1-1-1.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/api-ms-win-core-appinit-l1-1-0.dll.so
Executable file
BIN
lib/wine/api-ms-win-core-appinit-l1-1-0.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/api-ms-win-core-atoms-l1-1-0.dll.so
Executable file
BIN
lib/wine/api-ms-win-core-atoms-l1-1-0.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/api-ms-win-core-bem-l1-1-0.dll.so
Executable file
BIN
lib/wine/api-ms-win-core-bem-l1-1-0.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/api-ms-win-core-com-l1-1-0.dll.so
Executable file
BIN
lib/wine/api-ms-win-core-com-l1-1-0.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/api-ms-win-core-com-l1-1-1.dll.so
Executable file
BIN
lib/wine/api-ms-win-core-com-l1-1-1.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/api-ms-win-core-com-private-l1-1-0.dll.so
Executable file
BIN
lib/wine/api-ms-win-core-com-private-l1-1-0.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/api-ms-win-core-comm-l1-1-0.dll.so
Executable file
BIN
lib/wine/api-ms-win-core-comm-l1-1-0.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/api-ms-win-core-console-l1-1-0.dll.so
Executable file
BIN
lib/wine/api-ms-win-core-console-l1-1-0.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/api-ms-win-core-console-l2-1-0.dll.so
Executable file
BIN
lib/wine/api-ms-win-core-console-l2-1-0.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/api-ms-win-core-crt-l1-1-0.dll.so
Executable file
BIN
lib/wine/api-ms-win-core-crt-l1-1-0.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/api-ms-win-core-crt-l2-1-0.dll.so
Executable file
BIN
lib/wine/api-ms-win-core-crt-l2-1-0.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/api-ms-win-core-datetime-l1-1-0.dll.so
Executable file
BIN
lib/wine/api-ms-win-core-datetime-l1-1-0.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/api-ms-win-core-datetime-l1-1-1.dll.so
Executable file
BIN
lib/wine/api-ms-win-core-datetime-l1-1-1.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/api-ms-win-core-debug-l1-1-0.dll.so
Executable file
BIN
lib/wine/api-ms-win-core-debug-l1-1-0.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/api-ms-win-core-debug-l1-1-1.dll.so
Executable file
BIN
lib/wine/api-ms-win-core-debug-l1-1-1.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/api-ms-win-core-delayload-l1-1-0.dll.so
Executable file
BIN
lib/wine/api-ms-win-core-delayload-l1-1-0.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/api-ms-win-core-delayload-l1-1-1.dll.so
Executable file
BIN
lib/wine/api-ms-win-core-delayload-l1-1-1.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/api-ms-win-core-errorhandling-l1-1-0.dll.so
Executable file
BIN
lib/wine/api-ms-win-core-errorhandling-l1-1-0.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/api-ms-win-core-errorhandling-l1-1-1.dll.so
Executable file
BIN
lib/wine/api-ms-win-core-errorhandling-l1-1-1.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/api-ms-win-core-errorhandling-l1-1-2.dll.so
Executable file
BIN
lib/wine/api-ms-win-core-errorhandling-l1-1-2.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/api-ms-win-core-errorhandling-l1-1-3.dll.so
Executable file
BIN
lib/wine/api-ms-win-core-errorhandling-l1-1-3.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/api-ms-win-core-fibers-l1-1-0.dll.so
Executable file
BIN
lib/wine/api-ms-win-core-fibers-l1-1-0.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/api-ms-win-core-fibers-l1-1-1.dll.so
Executable file
BIN
lib/wine/api-ms-win-core-fibers-l1-1-1.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/api-ms-win-core-file-l1-1-0.dll.so
Executable file
BIN
lib/wine/api-ms-win-core-file-l1-1-0.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/api-ms-win-core-file-l1-2-0.dll.so
Executable file
BIN
lib/wine/api-ms-win-core-file-l1-2-0.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/api-ms-win-core-file-l1-2-1.dll.so
Executable file
BIN
lib/wine/api-ms-win-core-file-l1-2-1.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/api-ms-win-core-file-l1-2-2.dll.so
Executable file
BIN
lib/wine/api-ms-win-core-file-l1-2-2.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/api-ms-win-core-file-l2-1-0.dll.so
Executable file
BIN
lib/wine/api-ms-win-core-file-l2-1-0.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/api-ms-win-core-file-l2-1-1.dll.so
Executable file
BIN
lib/wine/api-ms-win-core-file-l2-1-1.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/api-ms-win-core-file-l2-1-2.dll.so
Executable file
BIN
lib/wine/api-ms-win-core-file-l2-1-2.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/api-ms-win-core-handle-l1-1-0.dll.so
Executable file
BIN
lib/wine/api-ms-win-core-handle-l1-1-0.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/api-ms-win-core-heap-l1-1-0.dll.so
Executable file
BIN
lib/wine/api-ms-win-core-heap-l1-1-0.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/api-ms-win-core-heap-l1-2-0.dll.so
Executable file
BIN
lib/wine/api-ms-win-core-heap-l1-2-0.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/api-ms-win-core-heap-l2-1-0.dll.so
Executable file
BIN
lib/wine/api-ms-win-core-heap-l2-1-0.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/api-ms-win-core-heap-obsolete-l1-1-0.dll.so
Executable file
BIN
lib/wine/api-ms-win-core-heap-obsolete-l1-1-0.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/api-ms-win-core-interlocked-l1-1-0.dll.so
Executable file
BIN
lib/wine/api-ms-win-core-interlocked-l1-1-0.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/api-ms-win-core-interlocked-l1-2-0.dll.so
Executable file
BIN
lib/wine/api-ms-win-core-interlocked-l1-2-0.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/api-ms-win-core-io-l1-1-0.dll.so
Executable file
BIN
lib/wine/api-ms-win-core-io-l1-1-0.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/api-ms-win-core-io-l1-1-1.dll.so
Executable file
BIN
lib/wine/api-ms-win-core-io-l1-1-1.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/api-ms-win-core-job-l1-1-0.dll.so
Executable file
BIN
lib/wine/api-ms-win-core-job-l1-1-0.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/api-ms-win-core-job-l2-1-0.dll.so
Executable file
BIN
lib/wine/api-ms-win-core-job-l2-1-0.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/api-ms-win-core-kernel32-legacy-l1-1-0.dll.so
Executable file
BIN
lib/wine/api-ms-win-core-kernel32-legacy-l1-1-0.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/api-ms-win-core-kernel32-legacy-l1-1-1.dll.so
Executable file
BIN
lib/wine/api-ms-win-core-kernel32-legacy-l1-1-1.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/api-ms-win-core-kernel32-private-l1-1-1.dll.so
Executable file
BIN
lib/wine/api-ms-win-core-kernel32-private-l1-1-1.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/api-ms-win-core-largeinteger-l1-1-0.dll.so
Executable file
BIN
lib/wine/api-ms-win-core-largeinteger-l1-1-0.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/api-ms-win-core-libraryloader-l1-1-0.dll.so
Executable file
BIN
lib/wine/api-ms-win-core-libraryloader-l1-1-0.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/api-ms-win-core-libraryloader-l1-1-1.dll.so
Executable file
BIN
lib/wine/api-ms-win-core-libraryloader-l1-1-1.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/api-ms-win-core-libraryloader-l1-2-0.dll.so
Executable file
BIN
lib/wine/api-ms-win-core-libraryloader-l1-2-0.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/api-ms-win-core-libraryloader-l1-2-1.dll.so
Executable file
BIN
lib/wine/api-ms-win-core-libraryloader-l1-2-1.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/api-ms-win-core-libraryloader-l1-2-2.dll.so
Executable file
BIN
lib/wine/api-ms-win-core-libraryloader-l1-2-2.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/api-ms-win-core-localization-l1-1-0.dll.so
Executable file
BIN
lib/wine/api-ms-win-core-localization-l1-1-0.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/api-ms-win-core-localization-l1-2-0.dll.so
Executable file
BIN
lib/wine/api-ms-win-core-localization-l1-2-0.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/api-ms-win-core-localization-l1-2-1.dll.so
Executable file
BIN
lib/wine/api-ms-win-core-localization-l1-2-1.dll.so
Executable file
Binary file not shown.
BIN
lib/wine/api-ms-win-core-localization-l2-1-0.dll.so
Executable file
BIN
lib/wine/api-ms-win-core-localization-l2-1-0.dll.so
Executable file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user