network/verlihub: Added a patch for gcc-7.x.
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
This commit is contained in:
parent
a569ecc1f9
commit
051bf82cd6
|
@ -0,0 +1,18 @@
|
||||||
|
diff -Naur verlihub-0.9.8e-r2.orig/src/script_api.cpp verlihub-0.9.8e-r2/src/script_api.cpp
|
||||||
|
--- verlihub-0.9.8e-r2.orig/src/script_api.cpp 2009-05-16 16:42:07.000000000 +0200
|
||||||
|
+++ verlihub-0.9.8e-r2/src/script_api.cpp 2017-06-01 20:33:58.923440440 +0200
|
||||||
|
@@ -218,12 +218,12 @@
|
||||||
|
cServerDC *server = GetCurrentVerlihub();
|
||||||
|
if(!server) {
|
||||||
|
cerr << "Server verlihub is unfortunately not running or not found." << endl;
|
||||||
|
- return false;
|
||||||
|
+ return NULL;
|
||||||
|
}
|
||||||
|
cUser *usr = GetUser((char *) server->mC.hub_security.c_str());
|
||||||
|
printf("%p\n", usr);
|
||||||
|
printf("%p", usr->mxConn);
|
||||||
|
- if ((!usr) || (usr && !usr->mxConn)) return false;
|
||||||
|
+ if ((!usr) || (usr && !usr->mxConn)) return NULL;
|
||||||
|
cout << "here" << endl;
|
||||||
|
if (!server->mP.ParseForCommands(command_line, usr->mxConn)) {
|
||||||
|
// unknown command
|
|
@ -71,6 +71,9 @@ find -L . \
|
||||||
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
|
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
|
||||||
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
|
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
|
||||||
|
|
||||||
|
# https://gcc.gnu.org/gcc-7/porting_to.html
|
||||||
|
patch -p1 < $CWD/verlihub-gcc7.patch
|
||||||
|
|
||||||
patch -p1 < $CWD/verlihub-header.patch
|
patch -p1 < $CWD/verlihub-header.patch
|
||||||
CFLAGS="$SLKCFLAGS" \
|
CFLAGS="$SLKCFLAGS" \
|
||||||
CXXFLAGS="$SLKCFLAGS" \
|
CXXFLAGS="$SLKCFLAGS" \
|
||||||
|
|
Loading…
Reference in New Issue