Re: [blfs-support] UPower-0.99.7 No such method 'Suspend'

2018-12-03 Thread Wayne Sallee via blfs-support
Original Message *Subject: *Re: [blfs-support] UPower-0.99.7 No such method 'Suspend' *From: *Wayne Sallee *To: *blfs-support@lists.linuxfromscratch.org *Date: *12/03/2018 07:35 PM Not sure. At the end of ~/.xbindkeysrc I have three entries (I initially copied this one

Re: [blfs-support] UPower-0.99.7 No such method 'Suspend'

2018-12-03 Thread Wayne Sallee via blfs-support
On 12/03/2018 06:33 PM, Ken Moffat via blfs-support wrote: On Mon, Dec 03, 2018 at 06:00:24PM -0500, Wayne Sallee via blfs-support wrote: On 12/03/2018 01:34 PM, Ken Moffat via blfs-support wrote: On Mon, Dec 03, 2018 at 01:01:34PM -0500, Wayne Sallee via blfs-support wrote: I upgraded

[blfs-support] UPower-0.99.7 No such method 'Suspend'

2018-12-03 Thread Wayne Sallee via blfs-support
I upgraded upower to version 0.99.7 but then could no longer suspend with the command "dbus-send --system --print-reply --dest='org.freedesktop.UPower' /org/freedesktop/UPower org.freedesktop.UPower.Suspend", as it gives the error "Error org.freedesktop.DBus.Error.UnknownMethod: No such method

Re: [blfs-support] UPower-0.99.7 No such method 'Suspend'

2018-12-08 Thread Wayne Sallee via blfs-support
On 12/08/2018 11:48 AM, Bruce Dubbs via blfs-support wrote: On 12/08/2018 10:04 AM, Wayne Sallee via blfs-support wrote: Instead of going the sudo rout, I ended up creating a file chmod 4751: #include #include #include #include int main() { setuid( 0 );   // you can set it at run

Re: [blfs-support] UPower-0.99.7 No such method 'Suspend'

2018-12-08 Thread Wayne Sallee via blfs-support
Instead of going the sudo rout, I ended up creating a file chmod 4751: #include #include #include #include int main() { setuid( 0 );   // you can set it at run time also clearenv(); system("/usr/sbin/pm-suspend"); return 0; } Wayne Sallee wa...@waynesallee.com http://www.WayneSallee.com

[blfs-support] ffmpeg pulseaudio --enable-libpulse

2019-06-15 Thread Wayne Sallee via blfs-support
When building ffmpeg, pulseaudio is listed as an optional dependency. But if one has pulseaudio, ffmpeg will still not work with pulse, unless ffmpeg is compiled with --enable-libpulse . https://www.ffmpeg.org/ffmpeg-devices.html Since pulseaudio is listed as an optional dependency, it would

[blfs-support] VLC compile error: only allowed in C99 or C11 mode

2019-11-27 Thread Wayne Sallee via blfs-support
For anyone else that might run into this problem, I updated VLC to a newer version, and got the compile error "loop initial declarations are only allowed in C99 or C11 mode". I got it working by changing: BUILDCC=gcc ./configure --prefix=/usr    \ to: BUILDCC="gcc -std=gnu99" ./configure

[blfs-support] VLC compile error with libmatroska and libebml Fix

2020-02-03 Thread Wayne Sallee via blfs-support
To fix the VLC compile error at libebml: When compiling  libmatroska and libebml run: cmake .. -DBUILD_SHARED_LIBS=YES instead of: cmake .. Wayne Sallee wa...@waynesallee.com http://www.WayneSallee.com -- http://lists.linuxfromscratch.org/listinfo/blfs-support FAQ:

Re: [blfs-support] Qt5 Multiple versions

2020-10-15 Thread Wayne Sallee via blfs-support
 Original Message  *Subject: *  Re: [blfs-support] Qt5 Multiple versions *From: * Bruce Dubbs Via Blfs-support *To: * Blfs-support *CC: *Bruce Dubbs *Date: *  2020-10-14  03:02 PM for file in moc uic rcc qmake lconvert lrelease lupdate; do   ln

[blfs-support] Qt5 Multiple versions

2020-10-14 Thread Wayne Sallee via blfs-support
The idea of using /opt to be able to create multiple versions of qt5 is a good idea. I found some problems that might need to be addressed in the BLFS instructions. run: find /usr/bin -lname '*/opt/qt*' | xargs ls -lhd and you will find something like this: lrwxrwxrwx 1 qt qt 32 Oct 14 09:57

Re: [blfs-support] Qt5 Multiple versions

2020-10-14 Thread Wayne Sallee via blfs-support
 Original Message  *Subject: *  Re: [blfs-support] Qt5 Multiple versions *From: * Bruce Dubbs Via Blfs-support *To: * Blfs-support *CC: *Bruce Dubbs *Date: *  2020-10-14  01:48 PM On 10/14/20 12:10 PM, Wayne Sallee via blfs-support wrote: The idea