Raised This Month: $51 Target: $400
 12% 

Source Admin Tool (HLSW Alternative)


Post New Thread Reply   
 
Thread Tools Display Modes
KyleS
SourceMod Plugin Approver
Join Date: Jul 2009
Location: Segmentation Fault.
Old 05-04-2017 , 18:32   Re: Source Admin Tool (HLSW Alternative)
Reply With Quote #141

Quote:
Originally Posted by Obyboby View Post
I can't compile the tool on Linux.

When I cd into the folder and then type ./configure
it says no such file or directory
I googled around and it seems that if this error appears, it means that I can skip the step, and proceed with "make"
"make" though, says that "no targets specified and no makefile found. Stop."
This means (according to google) that some dependencies are missing (?)
I tried to read the Readme, but I couldn't find anything in particular about any dependencies.

Can anyone help me?
Try reading the makefile.
KyleS is offline
Obyboby
Veteran Member
Join Date: Sep 2013
Old 05-04-2017 , 18:33   Re: Source Admin Tool (HLSW Alternative)
Reply With Quote #142

Quote:
Originally Posted by KyleS View Post
Try reading the makefile.
Problem is..there is no makefile!

Here's the content of the source code I downloaded;

http://i.imgur.com/da5CanK.png

I also tried to update the "build-essentials" package on my Raspberry but they are all up to date.
__________________

Last edited by Obyboby; 05-04-2017 at 18:36.
Obyboby is offline
Peace-Maker
SourceMod Plugin Approver
Join Date: Aug 2008
Location: Germany
Old 05-04-2017 , 22:16   Re: Source Admin Tool (HLSW Alternative)
Reply With Quote #143

Quote:
Originally Posted by Obyboby View Post
Problem is..there is no makefile!

Here's the content of the source code I downloaded;

http://i.imgur.com/da5CanK.png

I also tried to update the "build-essentials" package on my Raspberry but they are all up to date.
Indeed, no Makefile because it's using Qt.
https://www.qt.io/ide/
__________________
Peace-Maker is offline
Bl4CkGuuN
Junior Member
Join Date: Oct 2016
Location: Germany
Old 05-07-2017 , 10:47   Re: Source Admin Tool (HLSW Alternative)
Reply With Quote #144

I think that im retarded...

but how can I start it?
Bl4CkGuuN is offline
Obyboby
Veteran Member
Join Date: Sep 2013
Old 05-07-2017 , 11:24   Re: Source Admin Tool (HLSW Alternative)
Reply With Quote #145

Quote:
Originally Posted by Peace-Maker View Post
Indeed, no Makefile because it's using Qt.
https://www.qt.io/ide/
Damn, I can't install the package, it says "exec format error" -.-
Should I be using the 32 or 64 bit package?
__________________
Obyboby is offline
Sillium
AlliedModders Donor
Join Date: Sep 2008
Location: Germany
Old 05-08-2017 , 02:00   Re: Source Admin Tool (HLSW Alternative)
Reply With Quote #146

QT on Raspberry Pi:
https://wiki.qt.io/Native_Build_of_Q...a_Raspberry_Pi
__________________
brb, dishes have developed their own language and are talking to the garbage about overthrowing me... i must correct this

www.unterwasserpyromanen.de
Sillium is offline
Obyboby
Veteran Member
Join Date: Sep 2013
Old 05-08-2017 , 07:25   Re: Source Admin Tool (HLSW Alternative)
Reply With Quote #147

Quote:
Originally Posted by Sillium View Post
This might be slightly OT but it's still related to SAT, someone else might want to compile it on their Linux/Raspberry device.

I am kinda stuck here:

Code:
In order to get the configure script to build all of the Makefiles correctly you will need to tweak your ~/opt/qt5/qtbase/configure script. Use your favorite text editor (vim, nano, emacs) and change/add the following code in the ~/opt/qt5/qtbase/configure script (search for QT_CFLAGS_DBUS): # flags for raspberry pi build
I can't find that "QT_CFLAGS_DBUS" string inside my configure file.

Here's the content of my configure script:

Code:
#! /bin/sh
#############################################################################
##
## Copyright (C) 2015 The Qt Company Ltd.
## Contact: http://www.qt.io/licensing/
##
## This file is part of the build tools of the Qt Toolkit.
##
## $QT_BEGIN_LICENSE:LGPL21$
## Commercial License Usage
## Licensees holding valid commercial Qt licenses may use this file in
## accordance with the commercial license agreement provided with the
## Software or, alternatively, in accordance with the terms contained in
## a written agreement between you and The Qt Company. For licensing terms
## and conditions see http://www.qt.io/terms-conditions. For further
## information use the contact form at http://www.qt.io/contact-us.
##
## GNU Lesser General Public License Usage
## Alternatively, this file may be used under the terms of the GNU Lesser
## General Public License version 2.1 or version 3 as published by the Free
## Software Foundation and appearing in the file LICENSE.LGPLv21 and
## LICENSE.LGPLv3 included in the packaging of this file. Please review the
## following information to ensure the GNU Lesser General Public License
## requirements will be met: https://www.gnu.org/licenses/lgpl.html and
## http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
##
## As a special exception, The Qt Company gives you certain additional
## rights. These rights are described in The Qt Company LGPL Exception
## version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
##
## $QT_END_LICENSE$
##
#############################################################################

srcpath=`dirname $0`
srcpath=`(cd "$srcpath"; pwd)`
configure=$srcpath/qtbase/configure
if [ ! -e "$configure" ]; then
    echo "$configure not found. Did you forget to run \"init-repository\"?" >&2
    exit 1
fi

mkdir -p qtbase || exit

echo "+ cd qtbase"
cd qtbase || exit

echo "+ $configure -top-level $@"
exec "$configure" -top-level "$@"
Where am I supposed to add the string?
They also give different strings but I can't understand which one I should be adding:

Code:
flags for libdbus-1
QT_CFLAGS_DBUS="-I/usr/include/dbus-1.0/ -I/usr/lib/arm-linux-gnueabihf/dbus-1.0/include/" QT_LIBS_DBUS=-ldbus-1

flags for Glib (X11 only)
QT_CFLAGS_GLIB="-I/usr/include/glib-2.0/ -I/usr/lib/arm-linux-gnueabihf/glib-2.0/include/" QT_LIBS_GLIB=-lglib-2.0

QT_CFLAGS_PULSEAUDIO="-I/usr/include/glib-2.0/ -I/usr/lib/arm-linux-gnueabihf/glib-2.0/include/" QT_LIBS_PULSEAUDIO="-lpulse -lpulse-mainloop-glib"

flags for GStreamer (X11 only)
QT_CFLAGS_GSTREAMER="-I/usr/include/gstreamer-0.10/ -I/usr/include/glib-2.0/ -I/usr/lib/arm-linux- gnueabihf/glib-2.0/include/ -I/usr/include/libxml2/" QT_LIBS_GSTREAMER=
If this is too much OT I'll start a new thread. In that case, I apologize
__________________
Obyboby is offline
Sillium
AlliedModders Donor
Join Date: Sep 2008
Location: Germany
Old 05-08-2017 , 08:12   Re: Source Admin Tool (HLSW Alternative)
Reply With Quote #148

I also tried to checkout several versions but I can't find the FLAGS mentioned in the wiki. I guess the info is outdated and no one updated it.

But the wiki also mentions this:
Quote:
38 hours to compile
So maybe you should think about cross compiling it:
http://wiki.qt.io/Raspberry_Pi_Beginners_Guide

Since I don't have a RaspberryPi I can't test anything. Also as you mentioned this is getting too off-topic
__________________
brb, dishes have developed their own language and are talking to the garbage about overthrowing me... i must correct this

www.unterwasserpyromanen.de
Sillium is offline
ewenjo
Junior Member
Join Date: Dec 2016
Location: Norway
Old 05-10-2017 , 15:54   Re: Source Admin Tool (HLSW Alternative)
Reply With Quote #149

"Get log" adds my routers ip address instead of my public.

rcon from "**.***.**.**:65518": command "logaddress_add 10.0.0.49:51626"
ewenjo is offline
Kammi_
AlliedModders Donor
Join Date: Dec 2007
Old 05-19-2017 , 10:24   Re: Source Admin Tool (HLSW Alternative)
Reply With Quote #150

it's switching between sourcetv & Server
__________________



Kammi_ is offline
Send a message via ICQ to Kammi_
Reply



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 On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 02:45.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode