LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
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


Reply
  Search this Thread
Old 07-08-2021, 03:59 PM   #4021
j12i
Member
 
Registered: Nov 2013
Location: UTC+1
Distribution: Slackware64 15.0
Posts: 162

Rep: Reputation: Disabled

Quote:
Originally Posted by PreguntoYo View Post
Then when I run ledger, I get displayed strange results, like:

Code:
€1.251,92    ESC[34mServiciosESC[0m
              €92,08      ESC[34mAguaESC[0m
             €327,57      ESC[34mElectricidadESC[0m
             €292,06      ESC[34mGasESC[0m
              €55,00      ESC[34mNetFlixESC[0m
This looks like it's displayed through less, and your maybe you set $LESS in your old system and forgot about that. Or maybe ledger set it for you but now it doesn't. Look at `man less`, specifically the part about $LESS and the otions -R and -e.
 
Old 07-09-2021, 05:16 PM   #4022
USUARIONUEVO
Senior Member
 
Registered: Apr 2015
Posts: 2,344

Rep: Reputation: 942Reputation: 942Reputation: 942Reputation: 942Reputation: 942Reputation: 942Reputation: 942Reputation: 942
edb-debugger no compile here , i think is too old version.

EDIT: edb-debugger-1.3.0 builds fine , but REQUIRES capstone , not a problem , we have slackbuild.

Last edited by USUARIONUEVO; 07-09-2021 at 05:28 PM.
 
Old 07-09-2021, 10:59 PM   #4023
lagavulin16
LQ Newbie
 
Registered: Aug 2017
Distribution: Slackware
Posts: 27

Rep: Reputation: Disabled
rubygem-asciidoctor is now a part of -current.
Should be removed as well from Slackbuilds.
 
Old 07-10-2021, 07:28 AM   #4024
ponce
LQ Guru
 
Registered: Aug 2004
Location: Pisa, Italy
Distribution: Slackware
Posts: 7,125

Original Poster
Rep: Reputation: 4200Reputation: 4200Reputation: 4200Reputation: 4200Reputation: 4200Reputation: 4200Reputation: 4200Reputation: 4200Reputation: 4200Reputation: 4200Reputation: 4200
Quote:
Originally Posted by USUARIONUEVO View Post
edb-debugger no compile here , i think is too old version.

EDIT: edb-debugger-1.3.0 builds fine , but REQUIRES capstone , not a problem , we have slackbuild.
thanks for the report.
 
Old 07-10-2021, 07:28 AM   #4025
ponce
LQ Guru
 
Registered: Aug 2004
Location: Pisa, Italy
Distribution: Slackware
Posts: 7,125

Original Poster
Rep: Reputation: 4200Reputation: 4200Reputation: 4200Reputation: 4200Reputation: 4200Reputation: 4200Reputation: 4200Reputation: 4200Reputation: 4200Reputation: 4200Reputation: 4200
Quote:
Originally Posted by lagavulin16 View Post
rubygem-asciidoctor is now a part of -current.
Should be removed as well from Slackbuilds.
removed, thanks for the report!
 
Old 07-10-2021, 01:55 PM   #4026
USUARIONUEVO
Senior Member
 
Registered: Apr 2015
Posts: 2,344

Rep: Reputation: 942Reputation: 942Reputation: 942Reputation: 942Reputation: 942Reputation: 942Reputation: 942Reputation: 942
Hi , qtractor have this parameter

--enable-qt4

But no qt4 on -current and not in SB0 , i suggest upgrade to newer version , cause support qt5.

0.9.23 its okey.
 
Old 07-10-2021, 02:09 PM   #4027
ponce
LQ Guru
 
Registered: Aug 2004
Location: Pisa, Italy
Distribution: Slackware
Posts: 7,125

Original Poster
Rep: Reputation: 4200Reputation: 4200Reputation: 4200Reputation: 4200Reputation: 4200Reputation: 4200Reputation: 4200Reputation: 4200Reputation: 4200Reputation: 4200Reputation: 4200
Quote:
Originally Posted by USUARIONUEVO View Post
Hi , qtractor have this parameter

--enable-qt4

But no qt4 on -current and not in SB0 , i suggest upgrade to newer version , cause support qt5.

0.9.23 its okey.
done, thanks for the report!
 
Old 07-10-2021, 02:36 PM   #4028
Spinlock
Member
 
Registered: Jan 2006
Location: Missouri
Distribution: Slackware -current, Slackware64 -current, Slackware 12.2
Posts: 191

Rep: Reputation: 49
After WAY too much time spent trying to figure it out, I have freeorion built on -current again.

This is a backport by hand of patches from their git repo, applied with patch -p0:

Code:
--- UI/CombatReport/GraphicalSummary.cpp	2021-07-10 14:11:25.281161865 -0500
+++ UI/CombatReport/GraphicalSummary.cpp	2021-07-10 14:11:34.010981701 -0500
@@ -409,91 +409,6 @@
         m_y_axis_label->MoveTo(GG::Pt(-m_y_axis_label->MinUsableSize().x / 2 - AXIS_WIDTH, Height()/2 - m_y_axis_label->Height()/2));
     }
 
-    void DrawArrow(GG::Pt begin, GG::Pt end) {
-        double head_width = 5.0;
-        // A vector (math) of the arrow we wish to draw
-        GG::Pt direction = end - begin;
-        double length = sqrt(1.0*(Value(direction.x)*Value(direction.x) +
-                                  Value(direction.y)*Value(direction.y)));
-        if (length == 0) {
-            return;
-        }
-
-        // The point in the main line of the arrow,
-        // paraller to which the head ends
-        //          \.
-        //           \.
-        // --------h-->
-        //           /.
-        //          /.
-        // h is at the handle
-        GG::Pt handle;
-        // How much to move off the handle to get to
-        // the end point of one of the head lines
-        GG::X delta_x;
-        GG::Y delta_y;
-
-        if (direction.x != 0 && direction.y != 0) {
-            // In a skewed arrow we need
-            // a bit of geometry to figure out the head
-            double x = Value(direction.x);
-            double y = Value(direction.y);
-            double normalizer = head_width / sqrt(1 + x*x / (y*y));
-            delta_x = GG::X(normalizer);
-            delta_y = GG::Y(- x / y * normalizer);
-
-            handle = end - GG::Pt((head_width / length) * direction.x, (head_width / length) * direction.y);
-        } else if (direction.x == 0) {
-            // Vertical arrow
-            handle = end;
-            handle.y -= boost::math::sign(Value(direction.y))*GG::Y(head_width);
-            delta_x = GG::X(head_width);
-            delta_y = GG::Y0;
-        } else {
-            //horizontal arrow
-            handle = end;
-            handle.x -= boost::math::sign(Value(direction.x)) * GG::X(head_width);
-            delta_x = GG::X0;
-            delta_y = GG::Y(head_width);
-        }
-
-        GG::Pt left_head = handle;
-        GG::Pt right_head = handle;
-
-        left_head.x += delta_x;
-        left_head.y += delta_y;
-        // The other line is on the opposite side of the handle
-        right_head.x -=  delta_x;
-        right_head.y -= delta_y;
-
-        GG::glColor(GG::CLR_WHITE);
-        glLineWidth(2);
-        glDisable(GL_TEXTURE_2D);
-
-        GG::GL2DVertexBuffer verts;
-        verts.reserve(6);
-        verts.store(Value(begin.x),     Value(begin.y));
-        verts.store(Value(end.x),       Value(end.y));
-        verts.store(Value(end.x),       Value(end.y));
-        verts.store(Value(left_head.x), Value(left_head.y));
-        verts.store(Value(end.x),       Value(end.y));
-        verts.store(Value(right_head.x),Value(right_head.y));
-        verts.activate();
-
-        glDrawArrays(GL_LINES, 0, verts.size());
-
-        glEnable(GL_TEXTURE_2D);
-    }
-
-    void Render() override {
-        // Draw the axes outside th3e client area
-        GG::Pt begin(ClientUpperLeft().x - AXIS_WIDTH/2, ClientLowerRight().y + AXIS_HEIGHT/2);
-        GG::Pt x_end(ClientLowerRight().x, begin.y);
-        GG::Pt y_end(begin.x, ClientUpperLeft().y);
-        DrawArrow(begin, x_end);
-        DrawArrow(begin, y_end);
-    }
-
     void SizeMove(const GG::Pt& ul, const GG::Pt& lr) override {
         GG::Wnd::SizeMove(ul, lr);
         DoLayout();
--- universe/Conditions.cpp	2021-07-10 14:11:05.049579392 -0500
+++ universe/Conditions.cpp	2021-07-10 14:13:39.582389758 -0500
@@ -1,5 +1,6 @@
 #include "Conditions.h"
 
+#include <cfloat>
 #include "../util/Logger.h"
 #include "../util/Random.h"
 #include "../util/i18n.h"
 
Old 07-10-2021, 02:36 PM   #4029
Spinlock
Member
 
Registered: Jan 2006
Location: Missouri
Distribution: Slackware -current, Slackware64 -current, Slackware 12.2
Posts: 191

Rep: Reputation: 49
Quote:
Originally Posted by ponce View Post
I'm an not able to replicate this: wxPython3 builds fine here from scratch on a clean and full slackware64-current.
I had to rebuild WxGTK3 to get WxPython3 to build, but then it built fine. Something weird with an older build.
 
1 members found this post helpful.
Old 07-10-2021, 07:02 PM   #4030
sombragris
Member
 
Registered: Jul 2004
Location: Asuncion, Paraguay, South America
Distribution: Slackware
Posts: 902

Rep: Reputation: 412Reputation: 412Reputation: 412Reputation: 412Reputation: 412
Quote:
Originally Posted by Spinlock View Post
I had to rebuild WxGTK3 to get WxPython3 to build, but then it built fine. Something weird with an older build.
Indeed, that was my case, too.
 
Old 07-10-2021, 10:04 PM   #4031
willysr
Senior Member
 
Registered: Jul 2004
Location: Jogja, Indonesia
Distribution: Slackware-Current
Posts: 4,684

Rep: Reputation: 1800Reputation: 1800Reputation: 1800Reputation: 1800Reputation: 1800Reputation: 1800Reputation: 1800Reputation: 1800Reputation: 1800Reputation: 1800Reputation: 1800
probably because i change it to use GTK+3 instead of GTK+2 so everything need to be rebuilt
 
2 members found this post helpful.
Old 07-11-2021, 02:51 AM   #4032
sombragris
Member
 
Registered: Jul 2004
Location: Asuncion, Paraguay, South America
Distribution: Slackware
Posts: 902

Rep: Reputation: 412Reputation: 412Reputation: 412Reputation: 412Reputation: 412
doomsday does not build. The build fails complaining that qmake cannot be found, which is a dead giveaway that the build was set for Qt4.

Changing qmake to qmake-qt5 makes the build to progress for some time but then it fails with an error:

Code:
g++ -c -pipe -std=c++11 -O2 -O2 -fPIC -std=gnu++11 -D_REENTRANT -Wall -Wextra -pedantic -Wno-long-long -fPIC -DNDEBUG -DDENG_64BIT_HOST -DDENG_STABLE -DUNIX -DDENG_X11 -DDENG_BASE_DIR="\"/usr/share/doomsday/\"" -DDENG_LIBRARY_DIR="\"/usr/lib64/doomsday/\"" -DDENG_NO_FIXED_ASM -DDENG_NO_RANGECHECKING -DLIBDENG2_RELEASE_LABEL=\"Dev\" -DLIBDENG2_MAJOR_VERSION=2 -DLIBDENG2_MINOR_VERSION=0 -DLIBDENG2_PATCHLEVEL=0 -DLIBDENG2_VERSION=\"2.0.0\" -D__DENG2__ -DQT_NO_DEBUG -DQT_NETWORK_LIB -DQT_CORE_LIB -I. -Iinclude -I/usr/include/qt5 -I/usr/include/qt5/QtNetwork -I/usr/include/qt5/QtCore -I. -I/usr/lib64/qt5/mkspecs/linux-g++ -o pathtreenode.o src/data/pathtreenode.cpp
In file included from include/de/data/../core/range.h:23,
                 from include/de/data/../Range:1,
                 from include/de/data/string.h:28,
                 from include/de/String:1,
                 from include/de/data/pathtree.h:25,
                 from include/de/PathTree:1,
                 from src/data/pathtreenode.cpp:20:
include/de/data/../core/../math.h: In function ‘float de::frand()’:
include/de/data/../core/../math.h:210:43: warning: ‘int qrand()’ is deprecated: use QRandomGenerator instead [-Wdeprecated-declarations]
  210 | inline float frand() { return float(qrand()) / float(RAND_MAX); }
      |                                           ^
In file included from include/de/libcore.h:85,
                 from include/de/error.h:23,
                 from include/de/Error:1,
                 from include/de/data/pathtree.h:23,
                 from include/de/PathTree:1,
                 from src/data/pathtreenode.cpp:20:
/usr/include/qt5/QtCore/qglobal.h:1279:80: note: declared here
 1279 | Q_CORE_EXPORT QT_DEPRECATED_VERSION_X_5_15("use QRandomGenerator instead") int qrand();
      |                                                                                ^~~~~
In file included from include/de/data/../Log:1,
                 from include/de/data/path.h:27,
                 from include/de/Path:1,
                 from include/de/data/pathtree.h:26,
                 from include/de/PathTree:1,
                 from src/data/pathtreenode.cpp:20:
include/de/data/../core/log.h: At global scope:
include/de/data/../core/log.h:562:56: warning: ‘constexpr QFlags<T>::QFlags(QFlags<T>::Zero) [with Enum = de::LogEntry::Flag; QFlags<T>::Zero = int QFlags<de::LogEntry::Flag>::Private::*]’ is deprecated: Use default constructor instead [-Wdeprecated-declarations]
  562 |     LogEntry(LogEntry const &other, Flags extraFlags = 0);
      |                                                        ^
In file included from /usr/include/qt5/QtCore/qglobal.h:1304,
                 from include/de/libcore.h:85,
                 from include/de/error.h:23,
                 from include/de/Error:1,
                 from include/de/data/pathtree.h:23,
                 from include/de/PathTree:1,
                 from src/data/pathtreenode.cpp:20:
/usr/include/qt5/QtCore/qflags.h:123:80: note: declared here
  123 |     QT_DEPRECATED_X("Use default constructor instead") Q_DECL_CONSTEXPR inline QFlags(Zero) noexcept : i(0) {}
      |                                                                                ^~~~~~
In file included from include/de/data/../Log:1,
                 from include/de/data/path.h:27,
                 from include/de/Path:1,
                 from include/de/data/pathtree.h:26,
                 from include/de/PathTree:1,
                 from src/data/pathtreenode.cpp:20:
include/de/data/../core/log.h:596:40: warning: ‘constexpr QFlags<T>::QFlags(QFlags<T>::Zero) [with Enum = de::LogEntry::Flag; QFlags<T>::Zero = int QFlags<de::LogEntry::Flag>::Private::*]’ is deprecated: Use default constructor instead [-Wdeprecated-declarations]
  596 |     String asText(Flags const &flags = 0, int shortenSection = 0) const;
      |                                        ^
In file included from /usr/include/qt5/QtCore/qglobal.h:1304,
                 from include/de/libcore.h:85,
                 from include/de/error.h:23,
                 from include/de/Error:1,
                 from include/de/data/pathtree.h:23,
                 from include/de/PathTree:1,
                 from src/data/pathtreenode.cpp:20:
/usr/include/qt5/QtCore/qflags.h:123:80: note: declared here
  123 |     QT_DEPRECATED_X("Use default constructor instead") Q_DECL_CONSTEXPR inline QFlags(Zero) noexcept : i(0) {}
      |                                                                                ^~~~~~
In file included from include/de/data/../Log:1,
                 from include/de/data/path.h:27,
                 from include/de/Path:1,
                 from include/de/data/pathtree.h:26,
                 from include/de/PathTree:1,
                 from src/data/pathtreenode.cpp:20:
include/de/data/../core/log.h: In static member function ‘static de::LogEntry::Context de::LogEntry::textToContext(de::String)’:
include/de/data/../core/log.h:322:47: warning: implicitly-declared ‘de::String& de::String::operator=(const de::String&)’ is deprecated [-Wdeprecated-copy]
  322 |             text = text.remove(text.size() - 3);
      |                                               ^
In file included from include/de/String:1,
                 from include/de/data/pathtree.h:25,
                 from include/de/PathTree:1,
                 from src/data/pathtreenode.cpp:20:
include/de/data/string.h:85:5: note: because ‘de::String’ has user-provided ‘de::String::String(const de::String&)’
   85 |     String(String const &other);
      |     ^~~~~~
In file included from include/de/PathTree:1,
                 from src/data/pathtreenode.cpp:20:
include/de/data/pathtree.h: At global scope:
include/de/data/pathtree.h:256:37: warning: ‘constexpr QFlags<T>::QFlags(QFlags<T>::Zero) [with Enum = de::PathTree::Flag; QFlags<T>::Zero = int QFlags<de::PathTree::Flag>::Private::*]’ is deprecated: Use default constructor instead [-Wdeprecated-declarations]
  256 |     explicit PathTree(Flags flags = 0);
      |                                     ^
In file included from /usr/include/qt5/QtCore/qglobal.h:1304,
                 from include/de/libcore.h:85,
                 from include/de/error.h:23,
                 from include/de/Error:1,
                 from include/de/data/pathtree.h:23,
                 from include/de/PathTree:1,
                 from src/data/pathtreenode.cpp:20:
/usr/include/qt5/QtCore/qflags.h:123:80: note: declared here
  123 |     QT_DEPRECATED_X("Use default constructor instead") Q_DECL_CONSTEXPR inline QFlags(Zero) noexcept : i(0) {}
      |                                                                                ^~~~~~
In file included from include/de/PathTree:1,
                 from src/data/pathtreenode.cpp:20:
include/de/data/pathtree.h:299:59: warning: ‘constexpr QFlags<T>::QFlags(QFlags<T>::Zero) [with Enum = de::PathTree::ComparisonFlag; QFlags<T>::Zero = int QFlags<de::PathTree::ComparisonFlag>::Private::*]’ is deprecated: Use default constructor instead [-Wdeprecated-declarations]
  299 |     bool remove(Path const &path, ComparisonFlags flags = 0);
      |                                                           ^
In file included from /usr/include/qt5/QtCore/qglobal.h:1304,
                 from include/de/libcore.h:85,
                 from include/de/error.h:23,
                 from include/de/Error:1,
                 from include/de/data/pathtree.h:23,
                 from include/de/PathTree:1,
                 from src/data/pathtreenode.cpp:20:
/usr/include/qt5/QtCore/qflags.h:123:80: note: declared here
  123 |     QT_DEPRECATED_X("Use default constructor instead") Q_DECL_CONSTEXPR inline QFlags(Zero) noexcept : i(0) {}
      |                                                                                ^~~~~~
In file included from include/de/PathTree:1,
                 from src/data/pathtreenode.cpp:20:
include/de/data/pathtree.h:314:56: warning: ‘constexpr QFlags<T>::QFlags(QFlags<T>::Zero) [with Enum = de::PathTree::ComparisonFlag; QFlags<T>::Zero = int QFlags<de::PathTree::ComparisonFlag>::Private::*]’ is deprecated: Use default constructor instead [-Wdeprecated-declarations]
  314 |     bool has(Path const &path, ComparisonFlags flags = 0) const;
      |                                                        ^
In file included from /usr/include/qt5/QtCore/qglobal.h:1304,
                 from include/de/libcore.h:85,
                 from include/de/error.h:23,
                 from include/de/Error:1,
                 from include/de/data/pathtree.h:23,
                 from include/de/PathTree:1,
                 from src/data/pathtreenode.cpp:20:
/usr/include/qt5/QtCore/qflags.h:123:80: note: declared here
  123 |     QT_DEPRECATED_X("Use default constructor instead") Q_DECL_CONSTEXPR inline QFlags(Zero) noexcept : i(0) {}
      |                                                                                ^~~~~~
In file included from include/de/PathTree:1,
                 from src/data/pathtreenode.cpp:20:
include/de/data/pathtree.h:349:65: warning: ‘constexpr QFlags<T>::QFlags(QFlags<T>::Zero) [with Enum = de::PathTree::ComparisonFlag; QFlags<T>::Zero = int QFlags<de::PathTree::ComparisonFlag>::Private::*]’ is deprecated: Use default constructor instead [-Wdeprecated-declarations]
  349 |     int findAllPaths(FoundPaths &found, ComparisonFlags flags = 0, QChar sep = '/') const;
      |                                                                 ^
In file included from /usr/include/qt5/QtCore/qglobal.h:1304,
                 from include/de/libcore.h:85,
                 from include/de/error.h:23,
                 from include/de/Error:1,
                 from include/de/data/pathtree.h:23,
                 from include/de/PathTree:1,
                 from src/data/pathtreenode.cpp:20:
/usr/include/qt5/QtCore/qflags.h:123:80: note: declared here
  123 |     QT_DEPRECATED_X("Use default constructor instead") Q_DECL_CONSTEXPR inline QFlags(Zero) noexcept : i(0) {}
      |                                                                                ^~~~~~
src/data/pathtreenode.cpp: In member function ‘int de::PathTree::Node::comparePath(const de::Path&, de::PathTree::ComparisonFlags) const’:
src/data/pathtreenode.cpp:186:71: error: call of overloaded ‘compare(const char [2])’ is ambiguous
  186 |             bool const snameIsWild = !snode->toStringRef().compare("*");
      |                                                                       ^
In file included from /usr/include/qt5/QtCore/qhashfunctions.h:44,
                 from /usr/include/qt5/QtCore/qlist.h:47,
                 from /usr/include/qt5/QtCore/qhash.h:46,
                 from /usr/include/qt5/QtCore/qdebug.h:45,
                 from /usr/include/qt5/QtCore/QDebug:1,
                 from include/de/libcore.h:87,
                 from include/de/error.h:23,
                 from include/de/Error:1,
                 from include/de/data/pathtree.h:23,
                 from include/de/PathTree:1,
                 from src/data/pathtreenode.cpp:20:
/usr/include/qt5/QtCore/qstring.h:1851:12: note: candidate: ‘int QStringRef::compare(const QString&, Qt::CaseSensitivity) const’
 1851 | inline int QStringRef::compare(const QString &s, Qt::CaseSensitivity cs) const noexcept
      |            ^~~~~~~~~~
/usr/include/qt5/QtCore/qstring.h:1776:9: note: candidate: ‘int QStringRef::compare(const QByteArray&, Qt::CaseSensitivity) const’
 1776 |     int compare(const QByteArray &s, Qt::CaseSensitivity cs = Qt::CaseSensitive) const
      |         ^~~~~~~
make[1]: *** [Makefile:3426: pathtreenode.o] Error 1
make[1]: Leaving directory '/tmp/SBo/doomsday-stable-1.15.8/doomsday/libcore'
make: *** [Makefile:103: sub-libcore-make_first-ordered] Error 2
 
Old 07-11-2021, 03:52 AM   #4033
ponce
LQ Guru
 
Registered: Aug 2004
Location: Pisa, Italy
Distribution: Slackware
Posts: 7,125

Original Poster
Rep: Reputation: 4200Reputation: 4200Reputation: 4200Reputation: 4200Reputation: 4200Reputation: 4200Reputation: 4200Reputation: 4200Reputation: 4200Reputation: 4200Reputation: 4200
update it to version 2.3.1: thanks for the report!

https://git.slackbuilds.org/slackbui...it/?id=7af02fc
 
1 members found this post helpful.
Old 07-11-2021, 04:18 AM   #4034
Nedderokumo
LQ Newbie
 
Registered: Jul 2021
Posts: 6

Rep: Reputation: Disabled
Hello. I'm unable to build xl2tpd on up-to-date 64-current. Already done compiling of Networkmanager-l2tpd and strongswan in order to connect to l2tp/ipsec vpn. However this type of connection requires xl2tpd. Not an expert in compiling, so any help would be appreciated. Build log - https://pastebin.com/2GfhXGfF

Last edited by Nedderokumo; 07-11-2021 at 04:24 AM.
 
Old 07-11-2021, 04:35 AM   #4035
ponce
LQ Guru
 
Registered: Aug 2004
Location: Pisa, Italy
Distribution: Slackware
Posts: 7,125

Original Poster
Rep: Reputation: 4200Reputation: 4200Reputation: 4200Reputation: 4200Reputation: 4200Reputation: 4200Reputation: 4200Reputation: 4200Reputation: 4200Reputation: 4200Reputation: 4200
Quote:
Originally Posted by Nedderokumo View Post
Hello. I'm unable to build xl2tpd on up-to-date 64-current. Already done compiling of Networkmanager-l2tpd and strongswan in order to connect to l2tp/ipsec vpn. However this type of connection requires xl2tpd. Not an expert in compiling, so any help would be appreciated. Build log - https://pastebin.com/2GfhXGfF
Hi Nedderokumo, welcome to LQ!

just update xl2tpd to version 1.3.16, thanks for reporting!

https://git.slackbuilds.org/slackbui...ch/?id=de0d895
 
1 members found this post helpful.
  


Reply

Tags
current, sbo, sbopkg, slackrepo



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] Error building gst1-plugins-good 1.4.1 from SBO l0rddarkf0rce Slackware 4 10-06-2014 05:58 PM
[SOLVED] Failure building nvidia-kernel Slackbuild from SBo sysfce2 Slackware 7 07-02-2011 01:10 AM
problems building fontforge from SBo gtludwig Slackware 7 05-12-2010 01:52 PM
Pls help me take my 1st step! verysoon Fedora - Installation 2 12-12-2005 07:49 AM

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

All times are GMT -5. The time now is 01:18 PM.

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