https://bugs.winehq.org/show_bug.cgi?id=47763
Bug ID: 47763
Summary: Update build guide for Fedora 30
Product: WineHQ.org
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: www-unknown
Assignee: wine-bugs(a)winehq.org
Reporter: tukusejssirs(a)protonmail.com
Distribution: ---
(1) I find [Fedora build guide](https://wiki.winehq.org/Fedora) outdated a bit.
(2) I have no editing rights at WineHQ Wiki.
(3) I have created a new guide how to build wine32 and wine64 (both stable and
dev latest version) tested on vanilla Fedora 30.
(4) Although the guide works, I have no idea if all the steps are required.
(5) Please check the comments within the guide below for more details.
:::bash
# This is updated installation guide for Fedora 30 AMD64. Using this guide
one could build from source the latest wine stable or development version, and
either wine64 or wine32 or both.
# Note that I am not sure if all the steps (or packages) are really
required, but it works.
# Anyway, I tried to install the WineHQ packages, but I could not install
both wine64 and wine32 (I has some 32-bit apps that I need to be able run, e.g.
Mikrotik WinBox).
# Add RPM Fusion repo
sudo dnf -y install
https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E
%fedora).noarch.rpm
https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(…
-E %fedora).noarch.rpm
# Install all required packages
# Note: Package libpng-static was not listed at
https://wiki.winehq.org/Fedora, but when It was not installed, wine64 (and
maybe wine32) was not able to detect freetype (`pkg-config --cflags freetype2`
complained that libpng is not installed or something like that)
sudo dnf -y install alsa-plugins-pulseaudio.i686 glibc-devel.i686
glibc-devel libgcc.i686 libX11-devel.i686 freetype-devel.i686
libXcursor-devel.i686 libXi-devel.i686 libXext-devel.i686 libXxf86vm-devel.i686
libXrandr-devel.i686 libXinerama-devel.i686 mesa-libGLU-devel.i686
mesa-libOSMesa-devel.i686 libXrender-devel.i686 libpcap-devel.i686
ncurses-devel.i686 libzip-devel.i686 lcms2-devel.i686 zlib-devel.i686
libv4l-devel.i686 libgphoto2-devel.i686 cups-devel.i686 libxml2-devel.i686
openldap-devel.i686 libxslt-devel.i686 gnutls-devel.i686 libpng-devel.i686
flac-libs.i686 json-c.i686 libICE.i686 libSM.i686 libXtst.i686 libasyncns.i686
libedit.i686 liberation-narrow-fonts.noarch libieee1284.i686 libogg.i686
libsndfile.i686 libuuid.i686 libva.i686 libvorbis.i686 libwayland-client.i686
libwayland-server.i686 llvm-libs.i686 mesa-dri-drivers.i686
mesa-filesystem.i686 mesa-libEGL.i686 mesa-libgbm.i686 nss-mdns.i686
ocl-icd.i686 pulseaudio-libs.i686 sane-backends-libs.i686
tcp_wrappers-libs.i686 unixODBC.i686 samba-common-tools.x86_64
samba-libs.x86_64 samba-winbind.x86_64 samba-winbind-clients.x86_64
samba-winbind-modules.x86_64 mesa-libGL-devel.i686 fontconfig-devel.i686
libXcomposite-devel.i686 libtiff-devel.i686 openal-soft-devel.i686
mesa-libOpenCL-devel.i686 opencl-utils-devel.i686 alsa-lib-devel.i686
gsm-devel.i686 libjpeg-turbo-devel.i686 pulseaudio-libs-devel.i686
pulseaudio-libs-devel gtk3-devel.i686 libattr-devel.i686 libva-devel.i686
libexif-devel.i686 libexif.i686 glib2-devel.i686 mpg123-devel.i686
mpg123-devel.x86_64 libcom_err-devel.i686 libcom_err-devel.x86_64
libFAudio-devel.i686 libFAudio-devel.x86_64 gstreamer-plugins-base-devel
gstreamer-devel.i686 gstreamer.i686 gstreamer-plugins-base.i686 gstreamer-devel
gstreamer1.i686 gstreamer1-devel gstreamer1-plugins-base-devel.i686
gstreamer-plugins-base.x86_64 gstreamer.x86_64 gstreamer1-devel.i686
gstreamer1-plugins-base-devel gstreamer-plugins-base-devel.i686
gstreamer-ffmpeg.i686 gstreamer1-plugins-bad-free-devel.i686
gstreamer1-plugins-bad-free-extras.i686 gstreamer1-plugins-good-extras.i686
gstreamer1-libav.i686 gstreamer1-plugins-bad-freeworld.i686 libpng-static
# Note: These packages not found in Fedora 30 + RPM Fusion, but that are
listed at https://wiki.winehq.org/Fedora
# libNX_Xext-devel.i686 libcapifax-devel.i686 python-talloc.x86_64
# Remove any wine* versions previously installed
# This might be not necessary if you have previously installed wine from
source
sudo dnf -y remove wine wine-*
# Symlink freetype2 to freetype
sudo ln -sf /usr/include/freetype{2,}
# Install some develpment tools as groups
sudo dnf -y group install "C Development Tools and Libraries" "Development
Tools"
# Although it is not necessary, I usually create an empty folder before
cloning git repo
mkdir -p ~/git/wine
git clone git://source.winehq.org/git/wine.git ~/git/wine
# Create build folders for x32 and x64
mkdir ~/git/wine/wine{32,64}
# Compile wine64
cd ~/git/wine/wine64
git checkout stable # Skip this step if you wish to compile the
development release
../configure --enable-win64
make -j 4
# Compile wine32
cd ~/git/wine/wine32
PKG_CONFIG_PATH=/usr/lib/pkgconfig CC="ccache gcc -m32" ../configure
--with-wine64=../wine64
make -j 4
# Install wine32
sudo make install
# Install wine64
cd ../wine64
sudo make install
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=38269
Bug ID: 38269
Summary: Project64k regression in Wine 1.5.20 and later
Product: Wine
Version: 1.5.20
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: leodexe(a)gmail.com
Distribution: ---
Created attachment 51097
--> https://bugs.winehq.org/attachment.cgi?id=51097
Output from the terminal when the program is being executed
Well, it is quite simple. When you execute Project64k (READ CAREFULLY),
Project64k, NOT the standard Project 64 emulator, but the one that has netplay
capabilities within any version of Wine older than 1.5.20 it won't recognize
controller plugins, no matter what controller plugin you actually use it won't
work so basically you will not be able to play online due to the controller
inputs being disabled. If you run Project64k with Wine 1.5.19 or older it will
just run fine without any problems, though. I have added an attachment which
shows the output from the terminal when you run the program via terminal, if it
happens to be something useful there so the regression can be fixed. Note that
this regression both affects x86 and x64 versions of Wine.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=41751
Bug ID: 41751
Summary: Retire docs.git
Product: WineHQ.org
Version: unspecified
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: www-unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dimesio(a)earthlink.net
Distribution: ---
The Developer's, Wine User's, and Winelib User's guides have all been moved to
the wiki, and the SGML files will not be updated.
Since the SGML files are still on the website, people who follow a direct link
to one of the pages still end up in the old document and sometimes file bugs
for outdated information that has already been fixed in the wiki version (e.g.,
bug 40491).
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=42437
Bug ID: 42437
Summary: Wine Wiki: Building Wine - Compiler Optimizations &
Call-Stacks
Product: WineHQ.org
Version: unspecified
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: www-unknown
Assignee: wine-bugs(a)winehq.org
Reporter: wylda(a)volny.cz
Distribution: ---
Wiki link:
https://wiki.winehq.org/Building_Wine#Compiler_Optimizations_.26_Call-Stacks
Says:
../wine-source/configure CFLAGS="-g -O1 -fno-optimize-sibling-calls
-fno-omit-frame-pointer -fno-inline"
IMHO these two are superfluous as:
* "optimize-sibling-calls" is disabled in -O1 and enabled since -O2
* "omit-frame-pointer" is disabled in -O0, -O1 and -O2
at least by comparing output of following two commands:
gcc -g -O1 -Q --help=common
gcc -g -O1 -fno-optimize-sibling-calls -fno-omit-frame-pointer -fno-inline -Q
--help=common
I tried that on Debian Stretch. Gcc (Debian 6.3.0-6) 6.3.0 20170205
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=44081
Bug ID: 44081
Summary: Office graphics suitable for HiDPI displays
Product: WineHQ.org
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: www-unknown
Assignee: wine-bugs(a)winehq.org
Reporter: pmenzel+bugs.winehq.org(a)molgen.mpg.de
Distribution: ---
Visiting https://www.winehq.org/ with a HiDPI Dell UP3214Q monitor, the icons
and graphics look blurry. It’d be great, if the Web site could be improved to
also look good on HiDPI displays.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=46585
Bug ID: 46585
Summary: Some unicode characters cut off the rest of
description
Product: WineHQ Bugzilla
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: bugzilla-unknown
Assignee: wine-bugs(a)winehq.org
Reporter: spleefer90(a)gmail.com
CC: austinenglish(a)gmail.com
Distribution: ---
Created attachment 63469
--> https://bugs.winehq.org/attachment.cgi?id=63469
test.txt with the issue
Looks like posting certain unicode characters makes rest of the description be
cut off.
Here's pasting of contents of the attached test.txt:
Tobias
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47589
Bug ID: 47589
Summary: WineHQ requires email to sign up, sign in and to
recover access
Product: WineHQ.org
Version: unspecified
Hardware: Other
OS: other
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: www-unknown
Assignee: wine-bugs(a)winehq.org
Reporter: kolan_n(a)mail.ru
It may be inacceptible for users living in jurisdictions with oppressive
regimes requiring all the email providers either collect the personal data
tying an account to a government-issued ID or being blocked. For example
cellphone numbers.
Now most of email providers require cellphone number validation. But not all.
Ironically the only email providers not enforcing this I know are Russian ones.
But the State Duma is preparing a law requiring all the email providers to do
that, so I expect there will be no free email providers not doing that
(probably except Riseup, but I won't use Riseup services).
So it is important to allow users contribute without having a email addreess.
For access recovery crypto protocols or a sheet of one-time passwords can be
used.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47632
Bug ID: 47632
Summary: Installation instructions for popular Ubuntu-based
distros
Product: WineHQ.org
Version: unspecified
Hardware: x86
OS: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: www-unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jebeld17(a)gmail.com
With Ubuntu being the most popular distro and Ubuntu having a lot of popular
forks, like Linux Mint, ElementaryOS, and Pop!_OS, it's a good idea to have
individualized instructions for install on these few sub-distros as well.
Reason being: Some sub-distros like ElementaryOS have different software
version dependencies and modified app catalogues when compared to the source OS
Ubuntu.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=46593
Bug ID: 46593
Summary: LXR: Incorrect display width of author names
containing utf-8 characters
Product: WineHQ.org
Version: unspecified
Hardware: Other
OS: other
Status: NEW
Severity: normal
Priority: P2
Component: www-unknown
Assignee: wine-bugs(a)winehq.org
Reporter: o.dierick(a)piezo-forte.be
Follow up from bug 25453:
> > Is there something else to fix?
> Well, at least in my browser, there's an indentation or rather an I18N
> issue: Every line whose author's name contains umlauts is misindented:
>
> >4aa5f5bc Jörg *0023 #include "windows.h"
> >6698e9e0 Jan Ze*0024 #include "mmsystem.h"
>
> Perhaps the string length function that LXR uses to calculate the display
> width produces incorrect values for "Jörg", e.g. 5 instead of 4. That would
> explain what I see. But that would warrant another bug entry.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=45314
Bug ID: 45314
Summary: https://bugs.winehq.org landing page and task lists
bar mention wine 2.0
Product: WineHQ.org
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: www-unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dav75uk(a)yahoo.co.uk
Distribution: ---
Either show be removed, or detail tasks for wine 4.0 - makes the website look
abandoned
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.