LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Closed Thread
  Search this Thread
Old 03-09-2017, 07:26 PM   #2086
aaazen
Member
 
Registered: Dec 2009
Posts: 358

Rep: Reputation: Disabled

Firefox 52.0 no longer supports the ALSA sound system by default and only PulseAudio works.

But if it is compiled with the option '--enable-alsa' then both PulseAudio and ALSA work just fine.

Code:
--- mozilla-firefox.SlackBuild.orig     2016-11-16 10:12:10.000000000 -0800
+++ mozilla-firefox.SlackBuild  2017-03-09 12:54:40.847518513 -0800
@@ -171,6 +171,7 @@
 
 # Our building options, in a configure-like display ;)
 OPTIONS="\
+  --enable-alsa \
   --enable-official-branding \
   --prefix=/usr \
   --libdir=/usr/lib${LIBDIRSUFFIX} \
 
5 members found this post helpful.
Old 03-10-2017, 04:55 AM   #2087
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,055

Rep: Reputation: Disabled
Quote:
Originally Posted by aaazen View Post
Firefox 52.0 no longer supports the ALSA sound system by default and only PulseAudio works.
Fixed in -current.
 
2 members found this post helpful.
Old 03-10-2017, 06:28 AM   #2088
GazL
LQ Veteran
 
Registered: May 2008
Posts: 6,897

Rep: Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018
Quote:
Fri Mar 10 05:41:05 UTC 2017
ap/mc-4.8.19-x86_64-1.txz: Upgraded.
Woohoo! Thanks Pat.

Tab <---> Alt-tab successfully remapped, and mc does tab completion just like a real shell. This makes soooooo much more sense now.

Of course it also helps when your window manager doesn't grab alt-tab so that you can use the combo to swap between panels when you run it in an xterm.

I'm sure many a mc user rejoiced this day, or at least, this one did.
 
1 members found this post helpful.
Old 03-10-2017, 06:58 AM   #2089
kjhambrick
Senior Member
 
Registered: Jul 2005
Location: Round Rock, TX
Distribution: Slackware64 15.0 + Multilib
Posts: 2,159

Rep: Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512Reputation: 1512
Samba 4.6.0 Available for Download

Thanks Team !

-- kjh
 
1 members found this post helpful.
Old 03-10-2017, 09:56 AM   #2090
bassmadrigal
LQ Guru
 
Registered: Nov 2003
Location: West Jordan, UT, USA
Distribution: Slackware
Posts: 8,792

Rep: Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656
Based on this post, teachjove, from the ap/jove package, is not working due to the documentation file not being copied to the correct location.

All that needs to be done to fix this is to copy the doc/teach-jove file from the source to /usr/lib{$LIBDIRSUFFIX}/jove/ folder.

Code:
install -m 644 doc/teach-jove $PKG/usr/lib${LIBDIRSUFFIX}/jove/teach-jove
Here's a quick diff of the SlackBuild:

Code:
diff --git a/jove.SlackBuild b/jove.SlackBuild
index 65714d3..6904dd8 100755
--- a/jove.SlackBuild
+++ b/jove.SlackBuild
@@ -76,6 +76,8 @@ sed -i -e "s#/lib/jove#/lib${LIBDIRSUFFIX}/jove#" \
make $NUMJOBS || make || exit 1
make install DESTDIR=$PKG

+install -m 644 doc/teach-jove $PKG/usr/lib${LIBDIRSUFFIX}/jove/teach-jove
+
# Create jove-recover symlink
( cd $PKG/usr/bin
  ln -s ../lib${LIBDIRSUFFIX}/jove/recover jove-recover
I verified that teachjove works with this change (although, then I had to figure out how to exit jove -- ctrl+x and then ctrl+c for any other who get stuck ).

Last edited by bassmadrigal; 03-10-2017 at 03:46 PM. Reason: The -c option for install is deprecated
 
Old 03-10-2017, 03:27 PM   #2091
orbea
Senior Member
 
Registered: Feb 2015
Distribution: Slackware64-current
Posts: 1,950

Rep: Reputation: Disabled
Why "-c"? The install manpage says this, "-c (ignored)". I think you just need "-m", am I missing something?
 
1 members found this post helpful.
Old 03-10-2017, 03:46 PM   #2092
bassmadrigal
LQ Guru
 
Registered: Nov 2003
Location: West Jordan, UT, USA
Distribution: Slackware
Posts: 8,792

Rep: Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656
Quote:
Originally Posted by orbea View Post
Why "-c"? The install manpage says this, "-c (ignored)". I think you just need "-m", am I missing something?
I just copied it directly from the 12.1 jove.SlackBuild that Pat used. I wasn't at home to easily check building it (it is a pain to do stuff with my phone). That option does seem to have been deprecated since the 12.1 SlackBuild was generated.

I'll edit the post above to remove the -c.
 
Old 03-10-2017, 03:51 PM   #2093
orbea
Senior Member
 
Registered: Feb 2015
Distribution: Slackware64-current
Posts: 1,950

Rep: Reputation: Disabled
Ah, thanks for the explanation, I haven't seen it used much so I thought I was missing something.
 
Old 03-10-2017, 04:42 PM   #2094
bassmadrigal
LQ Guru
 
Registered: Nov 2003
Location: West Jordan, UT, USA
Distribution: Slackware
Posts: 8,792

Rep: Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656Reputation: 6656
It looked a little off when I saw it, but I was too lazy to dig into it
 
Old 03-13-2017, 06:16 AM   #2095
aaazen
Member
 
Registered: Dec 2009
Posts: 358

Rep: Reputation: Disabled
There is a new version of xlockmore, 5.51

"Bouncing Bob", as defined in the /etc/X11/app-defaults/XLock, can work again if the --enable-appdefaultdir parameter is added to the xlockmore.SlackBuild script:

Code:
--- xlockmore.SlackBuild.orig   2017-01-09 11:59:31.000000000 -0800
+++ xlockmore.SlackBuild        2017-03-13 03:22:28.496341664 -0700
@@ -93,6 +93,7 @@
   --without-motif \
   --without-esound \
   --without-gtk \
+  --enable-appdefaultdir=/etc/X11/app-defaults \
   --build=$ARCH-slackware-linux || exit 1
 
 make $NUMJOBS || make || exit 1
The Small Bob bitmap looks good with the eyes mode as well as the bounce mode.
The Large Bob bitmap looks good with the maze mode.

Without using an app default file, one can always use the command line:
Code:
xlock -mode bounce -bitmap /usr/include/X11/bitmaps/s-bob.xbm
xlock -mode eyes -bitmap /usr/include/X11/bitmaps/s-bob.xbm
xlock -mode maze -bitmap /usr/include/X11/bitmaps/l-bob.xbm

Last edited by aaazen; 03-13-2017 at 06:18 AM. Reason: 5.51 not 5.52 yet...
 
Old 03-13-2017, 07:50 AM   #2096
cwizardone
LQ Veteran
 
Registered: Feb 2007
Distribution: Slackware64-current with "True Multilib" and KDE4Town.
Posts: 9,086

Rep: Reputation: 7262Reputation: 7262Reputation: 7262Reputation: 7262Reputation: 7262Reputation: 7262Reputation: 7262Reputation: 7262Reputation: 7262Reputation: 7262Reputation: 7262
Pidgin 2.12.0, is now available.

Quote:
Pidgin 2.12.0 removed protocols that were not being maintained: Facebook XMPP, MSN, MySpace, Mxit, and Yahoo!. These will show up as unknown in your account lists until you delete them.

AIM is not breaking, update to this version to keep it working!
https://pidgin.im/
 
Old 03-13-2017, 12:43 PM   #2097
atelszewski
Member
 
Registered: Aug 2007
Distribution: Slackware
Posts: 948

Rep: Reputation: Disabled
Hi,

LLVM 4.0 released.

--
Best regards,
Andrzej Telszewski
 
Old 03-13-2017, 12:46 PM   #2098
atelszewski
Member
 
Registered: Aug 2007
Distribution: Slackware
Posts: 948

Rep: Reputation: Disabled
Hi,

intel-gpu-tools 1.18 released.

--
Best regards,
Andrzej Telszewski
 
Old 03-13-2017, 09:20 PM   #2099
montagdude
Senior Member
 
Registered: Apr 2016
Distribution: Slackware
Posts: 2,011

Rep: Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619Reputation: 1619
Quote:
Originally Posted by GazL View Post
Woohoo! Thanks Pat.

Tab <---> Alt-tab successfully remapped, and mc does tab completion just like a real shell. This makes soooooo much more sense now.

Of course it also helps when your window manager doesn't grab alt-tab so that you can use the combo to swap between panels when you run it in an xterm.

I'm sure many a mc user rejoiced this day, or at least, this one did.
I'm trying it out now on 14.2. Redefining the Tab key behavior should be helpful, but the problem is that by now I'm so used to the default keybindings. I'll give it a little while and see if I like it better once I get more accustomed to it.
 
2 members found this post helpful.
Old 03-14-2017, 05:22 AM   #2100
GazL
LQ Veteran
 
Registered: May 2008
Posts: 6,897

Rep: Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018Reputation: 5018
It's a hard call. I hate changing default-bindings because it tends to make you feel uncomfortable if you ever have to use a system/account lacking your modifications, but I also value consistency and logical choices for keybindings and this one is a big ugly in-your-face inconsistency between mc and bash.

Anyway, we're a bit off-topic here so we should probably take this to another thread or PM if there's anything further to say. I think I might have found a subject for my next blog entry...
 
1 members found this post helpful.
  


Closed Thread



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] how to show the current time at the top in the current shell Always ? rohitchauhan Linux - General 5 04-09-2014 03:05 PM
Slackware ARM (current) epic mistake: the current Android kernels are kicked out! Darth Vader Slackware 16 08-25-2013 04:36 PM
[SOLVED] setup fails on most current Slackware-current March 26, 2012 AlleyTrotter Slackware 15 04-09-2012 06:05 AM
Observation of Feb -current vs March -current Hangaber Slackware 14 03-12-2010 08:26 AM
cvs diff the most current and second last current version powah Linux - Software 1 03-30-2006 01:02 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 09:30 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration