LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
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 05-04-2017, 10:57 AM   #2266
gmgf
Senior Member
 
Registered: Jun 2012
Location: Bergerac, France
Distribution: Slackware
Posts: 2,192

Rep: Reputation: 987Reputation: 987Reputation: 987Reputation: 987Reputation: 987Reputation: 987Reputation: 987Reputation: 987

lzip-1.19:

http://download.savannah.gnu.org/rel...ip-1.19.tar.gz
 
Old 05-04-2017, 11:55 AM   #2267
gmgf
Senior Member
 
Registered: Jun 2012
Location: Bergerac, France
Distribution: Slackware
Posts: 2,192

Rep: Reputation: 987Reputation: 987Reputation: 987Reputation: 987Reputation: 987Reputation: 987Reputation: 987Reputation: 987
libevdev-1.5.7:

https://cgit.freedesktop.org/libevdev/

https://www.freedesktop.org/software...v-1.5.7.tar.xz
 
1 members found this post helpful.
Old 05-04-2017, 11:55 AM   #2268
gmgf
Senior Member
 
Registered: Jun 2012
Location: Bergerac, France
Distribution: Slackware
Posts: 2,192

Rep: Reputation: 987Reputation: 987Reputation: 987Reputation: 987Reputation: 987Reputation: 987Reputation: 987Reputation: 987
libevdev-1.5.7:

https://cgit.freedesktop.org/libevdev/

https://www.freedesktop.org/software...v-1.5.7.tar.xz
 
Old 05-05-2017, 01:20 AM   #2269
Daedra
Senior Member
 
Registered: Dec 2005
Location: Springfield, MO
Distribution: Slackware64-15.0
Posts: 2,670

Rep: Reputation: 1368Reputation: 1368Reputation: 1368Reputation: 1368Reputation: 1368Reputation: 1368Reputation: 1368Reputation: 1368Reputation: 1368Reputation: 1368
fontconfig compiling is broken on current due to the new glibc-2.25 update. Here is a link to a patch that fixes the issue. Just a heads up.

https://cgit.freedesktop.org/fontcon...08bf93591912da
https://github.com/voidlinux/void-packages/issues/5693 < this patch worked for me

Last edited by Daedra; 05-05-2017 at 01:29 AM.
 
2 members found this post helpful.
Old 05-05-2017, 05:08 PM   #2270
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,048

Rep: Reputation: Disabled
s/rxvt/mlterm/

Remove rxvt. I don't see a point still using a software last updated 14 years ago, that does not provide any unique feature as far as I know. Yes it's lighter than xterm, but does that still matter nowadays? Anyway there is no lack of reasonably light X terminals, shipped in Slackware or available @ SBo.

Incidentally seeing the rationale for patching it as was done recently in Slackware I checked that typing
Code:
printf '\033[-2147483648L'
does not crash any other X terminal shipped in Slackware that I know.

Now why mlterm? because it is the only X terminal that properly handle all languages of the world, including complex scripts and provides right-to-left rendering including bidi. I know it's available @ SBo, but several billions potential Slackware users would be happy to get it out of the box

Also mlterm is actively maintained (the latest stable version 3.8.1 has been released on 2017-04-29) and it seems to be usable also with a framebuffer (I didn't try yet).

Last edited by Didier Spaier; 05-05-2017 at 05:23 PM.
 
2 members found this post helpful.
Old 05-05-2017, 05:18 PM   #2271
astrogeek
Moderator
 
Registered: Oct 2008
Distribution: Slackware [64]-X.{0|1|2|37|-current} ::12<=X<=15, FreeBSD_12{.0|.1}
Posts: 6,258
Blog Entries: 24

Rep: Reputation: 4193Reputation: 4193Reputation: 4193Reputation: 4193Reputation: 4193Reputation: 4193Reputation: 4193Reputation: 4193Reputation: 4193Reputation: 4193Reputation: 4193
Quote:
Originally Posted by Didier Spaier View Post
Remove rxvt.
Replace it with rxvt-unicode (without the perl interpreter)? ;-)
 
1 members found this post helpful.
Old 05-05-2017, 09:43 PM   #2272
orbea
Senior Member
 
Registered: Feb 2015
Distribution: Slackware64-current
Posts: 1,950

Rep: Reputation: Disabled
The perl interpreter is awesome.

For example, putting something like this in ~/.Xresources comes in handy for irc links.
Code:
URxvt*url-launcher:      /usr/bin/firefox
URxvt*matcher.button:   1 
URxvt*matcher.pattern.1: \\bwww\\.[\\w-]\\.[\\w./?&@#-]*[\\w/-]

! Open images in FEH
URxvt*matcher.pattern.2:    \\bhttps?:\/\/[\\w-.]*\/[\\w./?&@#-]*.(jpg|JPG|jpeg|png)
URxvt*matcher.launcher.2:    feh $0

! Open video links in mpv
URxvt*matcher.pattern.3:    \\bhttps?:\/\/(www.youtube|youtube|youtu|vimeo|twitch).(com|be|tv)\/(watch\\?v=([\\w-]*)|v\/([\\w-]*)|([\\w-]*))
URxvt*matcher.launcher.3:    mpv $0

! Open gifs in imagemagick
URxvt*matcher.pattern.4:    \\bhttps?:\/\/[\\w-.]*\/[\\w./?&@#-]*.(gif)
URxvt*matcher.launcher.4:     animate -loop 0 $0

! Open some links in mpv
URxvt*matcher.pattern.5:    \\bhttps?:\/\/[\\w-.]*\/[\\w./?&@#-]*.(mp4|ogv|flac|webm|ogg)
URxvt*matcher.launcher.5:    mpv $0
 
6 members found this post helpful.
Old 05-05-2017, 09:51 PM   #2273
astrogeek
Moderator
 
Registered: Oct 2008
Distribution: Slackware [64]-X.{0|1|2|37|-current} ::12<=X<=15, FreeBSD_12{.0|.1}
Posts: 6,258
Blog Entries: 24

Rep: Reputation: 4193Reputation: 4193Reputation: 4193Reputation: 4193Reputation: 4193Reputation: 4193Reputation: 4193Reputation: 4193Reputation: 4193Reputation: 4193Reputation: 4193
If you go for that sort of thing...

I always build without perl, but either way I'd like to see rxvt-unicode included by default. One of us could rebuild if necessary. And I am glad to know I am not the only rxvt-unicode user!
 
Old 05-06-2017, 03:30 AM   #2274
sramov
Member
 
Registered: Mar 2010
Distribution: slackware64-current
Posts: 31

Rep: Reputation: Disabled
Quote:
Originally Posted by astrogeek View Post
If you go for that sort of thing...

I always build without perl, but either way I'd like to see rxvt-unicode included by default. One of us could rebuild if necessary. And I am glad to know I am not the only rxvt-unicode user!
+1 Would also love to have rxvt-unicode included by default.
 
1 members found this post helpful.
Old 05-06-2017, 03:35 AM   #2275
sramov
Member
 
Registered: Mar 2010
Distribution: slackware64-current
Posts: 31

Rep: Reputation: Disabled
Would love to see ntp being replaced with chrony:

https://chrony.tuxfamily.org/

It's amazing how much better/smaller/more secure it is. I just run the compiled binary from `rc.local` with the minimal `/etc/chrony.conf`:

Code:
pool pool.ntp.org iburst
makestep 1.0 3
rtcsync
 
Old 05-06-2017, 04:04 AM   #2276
ponce
LQ Guru
 
Registered: Aug 2004
Location: Pisa, Italy
Distribution: Slackware
Posts: 7,067

Rep: Reputation: 4144Reputation: 4144Reputation: 4144Reputation: 4144Reputation: 4144Reputation: 4144Reputation: 4144Reputation: 4144Reputation: 4144Reputation: 4144Reputation: 4144
Quote:
Originally Posted by Kirill Smirnov View Post
Current version of flex breaks a lot of packages:
https://github.com/westes/flex/issues/162

Please downgrade to 2.6.2 or upgrade to commit 7e4d538 (Jan 23, 2017). The last might be risky, though.
FWIW, to build qt5-webkit I had to upgrade flex again to 2.6.3 or downgrade it down to 2.6.1 or, with 2.6.2, I got this
Code:
g++ -c -O2 -fPIC -O2 -fPIC -fno-strict-aliasing -O2 -fPIC -fPIC -std=gnu++11 -fvisibility=hidden -fvisibility-inlines-hidden -fno-exceptions -D_REENTRANT -MMD -DQT_NO_TSLIB -DBUILDING_QT__=1 -DNDEBUG -DENABLE_3D_RENDERING=1 -DENABLE_ACCELERATED_2D_CANVAS=1 -DENABLE_BLOB=1 -DENABLE_CANVAS_PATH=1 -DENABLE_CHANNEL_MESSAGING=1 -DENABLE_CSS_BOX_DECORATI ON_BREAK=1 -DENABLE_CSS_COMPOSITING=1 -DENABLE_CSS_EXCLUSIONS=1 -DENABLE_CSS_FILTERS=1 -DENABLE_CSS_IMAGE_SET=1 -DENABLE_CSS_REGIONS=1 -DENABLE_CSS_SHAPES=1 -DENABLE_CSS_STICKY_POSITION=1 -DENABLE_CSS_TRANSFORMS_ANIMATIONS_UNPREFIXED=1 -DENABLE_DATALIST_ELEMENT=1 -DENABLE_DETAILS_ELEMENT=1 -DENABLE_DEVICE_ORIENTATION=1 -DENABLE_DOWNLOAD_ATTRIBUTE=1  -DENABLE_FAST_MOBILE_SCROLLING=1 -DENABLE_FILTERS=1 -DENABLE_FTPDIR=1 -DENABLE_FULLSCREEN_API=1 -DENABLE_GEOLOCATION=1 -DENABLE_GESTURE_EVENTS=1 -DENABLE_ICONDATABASE=1 -DENABLE_IFRAME_SEAMLESS=1 -DENABLE_INDEXED_DATABASE=1 -DENABLE_INPUT_TYPE_COLOR=1 -DENABLE_INSPECTOR=1 -DENABLE_INSPECTOR_SERVER=1 -DENABLE_JAVASCRIPT_DEBUGGER=1 -DENABLE_LEGACY_NOTIFICATIONS=1 -DENABLE_LEGACY_VIEWPORT_ADAPTION=1 -DENABLE_LEGACY_VENDOR_PREFIXES=1 -DENABLE_LEGACY_WEB_AUDIO=1 -DENABLE_LINK_PREFETCH=1 -DENABLE_METER_ELEMENT=1 -DENABLE_MHTML=1 -DENABLE_NOTIFICATIONS=1 -DENABLE_ORIENTATION_EVENTS=1 -DENABLE_PAGE_VISIBILITY_API=1 -DENABLE_PROGRESS_ELEMENT=1 -DENABLE_RESOLUTION_MEDIA_QUERY=1 -DENABLE_REQUEST_ANIMATION_FRAME=1 -DENABLE_SHARED_WORKERS=1 -DENABLE_SMOOTH_SCROLLING=1 -DENABLE_SQL_DATABASE=1 -DENABLE_SUBPIXEL_LAYOUT=1 -DENABLE_SVG=1 -DENABLE_SVG_FONTS=1 -DENABLE_TOUCH_ADJUSTMENT=1 -DENABLE_TOUCH_EVENTS=1 -DENABLE_TOUCH_SLIDER=1 -DENABLE_VIDEO_TRACK=1 -DENABLE_VIEW_MODE_CSS_MEDIA=1 -DENABLE_WEB_SOCKETS=1 -DENABLE_WEB_TIMING=1 -DENABLE_WORKERS=1 -DENABLE_XHR_TIMEOUT=1 -DWTF_USE_TILED_BACKING_STORE=1 -DWTF_USE_CROSS_PLATFORM_CONTEXT_MENUS=1 -DHAVE_QTQUICK=1 -DHAVE_QTPRINTSUPPORT=1 -DHAVE_QSTYLE=1 -DHAVE_QTTESTLIB=1 -DHAVE_QTPOSITIONING=1 -DHAVE_QTSENSORS=1 -DWTF_USE_LIBXML2=1 -DENABLE_XSLT=1 -DWTF_USE_ZLIB=1 -DWTF_USE_WEBP=1 -DWTF_USE_LIBJPEG=1 -DWTF_USE_LIBPNG=1 -DHAVE_XCOMPOSITE=1 -DHAVE_XRENDER=1 -DHAVE_GLX=1 -DHAVE_FONTCONFIG=1 -DENABLE_NETSCAPE_PLUGIN_API=1 -DWTF_USE_PLUGIN_BACKEND_XLIB=1 -DPLUGIN_ARCHITECTURE_X11=1 -DENABLE_PLUGIN_PROCESS=1 -DWTF_USE_3D_GRAPHICS=1 -DENABLE_WEBGL=1 -DENABLE_VIDEO=1 -DWTF_USE_GSTREAMER=1 -DWTF_USE_NATIVE_FULLSCREEN_VIDEO=1 -DHAVE_SQLITE3=1 -DENABLE_GAMEPAD=1 -DWTF_USE_GRAPHICS_SURFACE=1 -DWTF_USE_GLX=1 -DWTF_USE_LEVELDB=1 -DWTF_USE_GLIB=1 -DENABLE_BATTERY_STATUS=0 -DENABLE_CANVAS_PROXY=0 -DENABLE_CSP_NEXT=0 -DENABLE_CSS_GRID_LAYOUT=0 -DENABLE_CSS_HIERARCHIES=0 -DENABLE_CSS_IMAGE_ORIENTATION=0 -DENABLE_CSS_IMAGE_RESOLUTION=0 -DENABLE_CSS_SHADERS=0 -DENABLE_CSS_VARIABLES=0 -DENABLE_CSS3_CONDITIONAL_RULES=0 -DENABLE_CSS3_TEXT=0 -DENABLE_CSS3_TEXT_LINE_BREAK=0 -DENABLE_DASHBOARD_SUPPORT=0 -DENABLE_DATAGRID=0 -DENABLE_DATA_TRANSFER_ITEMS=0 -DENABLE_DIRECTORY_UPLOAD=0 -DENABLE_FILE_SYSTEM=0 -DENABLE_FONT_LOAD_EVENTS=0 -DENABLE_HIGH_DPI_CANVAS=0 -DENABLE_INPUT_SPEECH=0 -DENABLE_INPUT_TYPE_DATE=0 -DENABLE_INPUT_TYPE_DATETIME_INCOMPLETE=0 -DENABLE_INPUT_TYPE_DATETIMELOCAL=0 -DENABLE_INPUT_TYPE_MONTH=0 -DENABLE_INPUT_TYPE_TIME=0 -DENABLE_INPUT_TYPE_WEEK=0 -DENABLE_LEGACY_CSS_VENDOR_PREFIXES=0 -DENABLE_MATHML=0 -DENABLE_MEDIA_SOURCE=0 -DENABLE_MEDIA_STATISTICS=0 -DENABLE_MEDIA_STREAM=0 -DENABLE_MICRODATA=0 -DENABLE_MOUSE_CURSOR_SCALE=0 -DENABLE_NAVIGATOR_CONTENT_UTILS=0 -DENABLE_NETWORK_INFO=0 -DENABLE_NOSNIFF=0 -DENABLE_PROXIMITY_EVENTS=0 -DENABLE_QUOTA=0 -DENABLE_RESOURCE_TIMING=0 -DENABLE_SCRIPTED_SPEECH=0 -DENABLE_SECCOMP_FILTERS=0 -DENABLE_SHADOW_DOM=0 -DENABLE_STYLE_SCOPED=0 -DENABLE_TEMPLATE_ELEMENT=0 -DENABLE_TEXT_AUTOSIZING=0 -DENABLE_THREADED_HTML_PARSER=0 -DENABLE_TOUCH_ICON_LOADING=0 -DENABLE_USER_TIMING=0 -DENABLE_VIBRATION=0 -DENABLE_WEB_AUDIO=0 -DBUILDING_ANGLE -DBUILDING_WEBKIT -DQT_ASCII_CAST_WARNINGS -DQT_NO_EXCEPTIONS -D_LARGEFILE64_SOURCE -D_LARGEFILE_SOURCE -DQT_NO_DEBUG -I. -Iinclude/GLSLANG -Iinclude/KHR -Isrc -Isrc/compiler/preprocessor -Iinclude -Iinclude -Iinclude/GLSLANG -Iinclude/KHR -Isrc -Isrc/compiler/preprocessor -I../../../Source -I/tmp/SBo/qtwebkit-opensource-src-5.7.1/Source/include -I/usr/lib64/qt5/mkspecs/linux-g++ -o .obj/generated/Tokenizer_lex.o generated/Tokenizer_lex.cpp
src/compiler/preprocessor/Tokenizer.l: In member function ‘void pp::Tokenizer::setFileNumber(int)’:
src/compiler/preprocessor/Tokenizer.l:2738:5: error: ‘yyset_column’ was not declared in this scope
src/compiler/preprocessor/Tokenizer.l:2738:5: note: suggested alternative: ‘ppset_column’
src/compiler/preprocessor/Tokenizer.l: In member function ‘void pp::Tokenizer::setLineNumber(int)’:
src/compiler/preprocessor/Tokenizer.l:2743:5: error: ‘yyset_lineno’ was not declared in this scope
src/compiler/preprocessor/Tokenizer.l:2743:5: note: suggested alternative: ‘ppset_lineno’
src/compiler/preprocessor/Tokenizer.l: In member function ‘virtual void pp::Tokenizer::lex(pp::Token*)’:
src/compiler/preprocessor/Tokenizer.l:2748:19: error: ‘yylex’ was not declared in this scope
src/compiler/preprocessor/Tokenizer.l:2748:19: note: suggested alternative: ‘lex’
src/compiler/preprocessor/Tokenizer.l: In member function ‘bool pp::Tokenizer::initScanner()’:
src/compiler/preprocessor/Tokenizer.l:2767:30: error: ‘yylex_init_extra’ was not declared in this scope
src/compiler/preprocessor/Tokenizer.l:2767:30: note: suggested alternative: ‘pplex_init_extra’
src/compiler/preprocessor/Tokenizer.l:2770:5: error: ‘yyrestart’ was not declared in this scope
src/compiler/preprocessor/Tokenizer.l:2770:5: note: suggested alternative: ‘pprestart’
src/compiler/preprocessor/Tokenizer.l: In member function ‘void pp::Tokenizer::destroyScanner()’:
src/compiler/preprocessor/Tokenizer.l:2779:5: error: ‘yylex_destroy’ was not declared in this scope
src/compiler/preprocessor/Tokenizer.l:2779:5: note: suggested alternative: ‘pplex_destroy’
make[2]: *** [Makefile.ANGLE.Target:1061: .obj/generated/Tokenizer_lex.o] Error 1
make[2]: Leaving directory '/tmp/SBo/qtwebkit-opensource-src-5.7.1/Source/ThirdParty/ANGLE'
make[1]: *** [Makefile.ANGLE:68: sub-Target-pri-make_first-ordered] Error 2
make[1]: Leaving directory '/tmp/SBo/qtwebkit-opensource-src-5.7.1/Source/ThirdParty/ANGLE'
make: *** [Makefile:137: sub-Source-ThirdParty-ANGLE-ANGLE-pro-make_first-ordered] Error 2

Last edited by ponce; 05-06-2017 at 04:07 AM.
 
1 members found this post helpful.
Old 05-06-2017, 08:06 AM   #2277
alex14641
Member
 
Registered: Feb 2016
Distribution: Slackware64_14.2, Slackware 15.0, Slackware64_current
Posts: 316

Rep: Reputation: Disabled
Bluez 5.45 has been released. http://www.bluez.org/release-of-bluez-5-45/
 
1 members found this post helpful.
Old 05-06-2017, 01:57 PM   #2278
USUARIONUEVO
Senior Member
 
Registered: Apr 2015
Posts: 2,308

Rep: Reputation: 922Reputation: 922Reputation: 922Reputation: 922Reputation: 922Reputation: 922Reputation: 922Reputation: 922
I ever prefer go up-to-date , version of libs , arround flex , any one test 2.6.3 + archlinux patch ?
https://git.archlinux.org/svntogit/p...=packages/flex

flex-2.6.3_gitxxxxxxx ?
 
1 members found this post helpful.
Old 05-06-2017, 02:01 PM   #2279
USUARIONUEVO
Senior Member
 
Registered: Apr 2015
Posts: 2,308

Rep: Reputation: 922Reputation: 922Reputation: 922Reputation: 922Reputation: 922Reputation: 922Reputation: 922Reputation: 922
gstreamer-1.12.0 + plugins
https://gstreamer.freedesktop.org/sr...-1.12.0.tar.xz


Talking arround "plugins" i read MP3 patents expires in 2017 :=)
 
Old 05-06-2017, 02:52 PM   #2280
willysr
Senior Member
 
Registered: Jul 2004
Location: Jogja, Indonesia
Distribution: Slackware-Current
Posts: 4,651

Rep: Reputation: 1772Reputation: 1772Reputation: 1772Reputation: 1772Reputation: 1772Reputation: 1772Reputation: 1772Reputation: 1772Reputation: 1772Reputation: 1772Reputation: 1772
Quote:
Originally Posted by USUARIONUEVO View Post
I ever prefer go up-to-date , version of libs , arround flex , any one test 2.6.3 + archlinux patch ?
https://git.archlinux.org/svntogit/p...=packages/flex

flex-2.6.3_gitxxxxxxx ?
probably safer to wait until next 2.6.4 release
 
1 members found this post helpful.
  


Closed Thread


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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 04:36 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