Bravo List

Bravo List (http://www.bvlist.com/index.php)
-   Tutorials (http://www.bvlist.com/forumdisplay.php?f=61)
-   -   XBT Tracker Installation (http://www.bvlist.com/showthread.php?t=5248)

Fynnon 26th August 2010 22:48

XBT Tracker Installation
 
The XBT tracker (XBTT) can run on Unix/Linux or Windows.

http://www.visigod.com/xbt-tracker/installation




Using Unix/Linux

You need shell and root access to compile and run XBTT.
You also need the following packages:
  • boost-devel
  • mysql-devel
  • gcc-c++
  • subversion

To install this required packages you can run the following commands in your server:

1. Install the required packages on Debian
PHP Code:

apt-get install cmake g++ libboost-date-time-dev libboost-dev \
libboost-filesystem-dev libboost-program-options-dev libboost-regex-dev \
libboost-serialization-dev libmysqlclient15-dev make subversion zlib1g-dev 

Installing the required packages on CentOS, Fedora or Red Hat
PHP Code:

yum install boost-devel gcc-c++ mysql-devel subversion 



2. Then create a folder in your server and type the following:

PHP Code:

svn co https://xbtt.svn.sourceforge.net/svnroot/xbtt/trunk/xbt/misc xbt/misc
svn co https://xbtt.svn.sourceforge.net/svnroot/xbtt/trunk/xbt/Tracker xbt/Tracker
cd xbt/Tracker
./make.sh 

After the server is compiled you will have a xbt_tracker binary under xbt/Tracker.
Copy this binary into the directory where you will run XBTT along with the xbt_tracker.conf.default that is on the same folder.

You will end up with two files in your xbt directory: the xbt_tracker and the xbt_tracker.conf.default.
Rename the xbt_tracker.conf.default to xbt_tracker.conf.

3. we are using /home/xbt_tracker as an example
PHP Code:

cp xbt_tracker /home/xbt_tracker/
cp xbt_tracker.conf.default /home/xbt_tracker/
cp xbt_tracker.sql /home/xbt_tracker/
cd /home/xbt_tracker/
mv xbt_tracker.conf.default xbt_tracker.conf 



4. We now need to create a database to be used with XBTT. You can use phpMyAdmin of the mysql command to create it. See the example below using the mysql client:

PHP Code:

CREATE USER 'xbt_tracker'@'localhost' IDENTIFIED BY 'my_tracker_password';
GRANT USAGE ON * . * TO 'xbt_tracker'@'localhost' IDENTIFIED BY 'my_tracker_password';
CREATE DATABASE IF NOT EXISTS `xbt_tracker` ;
GRANT ALL PRIVILEGES ON `xbt_tracker` . * TO 'xbt_tracker'@'localhost'



5. After the database is created we need to import the default sql that we previously copied into our xbt_tracker home directory. Just type the following command in the shell of your server:

PHP Code:

mysql -uxbt_tracker -pmy_tracker_password xbt_tracker xbt_tracker.sql 



6. Ok, the default database schema (xbt_tracker.sql) is imported into the database we have created. All that is left is to configure XBTT to use it. To do so, edit the xbt_tracker.conf in the xbt_tracker home directory and use the following (change the values to fit you need. We are going to use the ones from the previous commands):

PHP Code:

mysql_host localhost
mysql_user 
xbt_tracker
mysql_password 
my_tracker_password
mysql_database 
xbt_tracker 



7. We have now concluded the installation of XBTT on our server. So let's start it. To do it just type:

PHP Code:

./xbt_tracker 

You now have XBTT running on the default port 2710.

Now you nee to customize it: http://www.visigod.com/xbt-tracker/i...ration-options

wMan 26th August 2010 23:33

tracker
 
nice to see this ok here is my probs here ok set it up on vb same as this site code , do i have to put a torrent folder in root as it is there not one when when it install it on vb , any idea what to do ?:sos:

Nero9 12th February 2011 13:01

getting segmentation fault wen compiling ./xbt_tracker ??

asdcxz9 16th April 2011 16:21

xbtt install error
 
Code:

./make.sh
../misc/bt_misc.cpp:4:29: error: boost/foreach.hpp: No such file or directory
../misc/bt_misc.cpp: In function 'std::string escape_string(const std::string&)':
../misc/bt_misc.cpp:19: error: expected primary-expression before 'char'
../misc/bt_misc.cpp:19: error: 'BOOST_FOREACH' was not declared in this scope
../misc/bt_misc.cpp:20: error: expected `;' before '{' token
../misc/bt_misc.cpp:354: error: expected `}' at end of input
../misc/bvalue.cpp:4:29: error: boost/foreach.hpp: No such file or directory
../misc/bvalue.cpp: In member function 'int Cbvalue::pre_read() const':
../misc/bvalue.cpp:289: error: expected primary-expression before 'i'
../misc/bvalue.cpp:289: error: 'BOOST_FOREACH' was not declared in this scope
../misc/bvalue.cpp:290: error: expected `;' before 'v'
../misc/bvalue.cpp:296: error: expected primary-expression before 'i'
../misc/bvalue.cpp:296: error: 'BOOST_FOREACH' was not declared in this scope
../misc/bvalue.cpp:297: error: expected `;' before 'v'
In file included from config.cpp:1:
stdafx.h:3:29: error: boost/foreach.hpp: No such file or directory
In file included from connection.cpp:1:
stdafx.h:3:29: error: boost/foreach.hpp: No such file or directory
In file included from epoll.cpp:1:
stdafx.h:3:29: error: boost/foreach.hpp: No such file or directory
In file included from server.cpp:1:
stdafx.h:3:29: error: boost/foreach.hpp: No such file or directory
server.cpp: In member function 'int Cserver::run()':
server.cpp:43: error: expected primary-expression before 'j'
server.cpp:43: error: 'BOOST_FOREACH' was not declared in this scope
server.cpp:44: error: expected `;' before '{' token
server.cpp:966: error: expected `}' at end of input
In file included from tcp_listen_socket.cpp:1:
stdafx.h:3:29: error: boost/foreach.hpp: No such file or directory
In file included from tracker_input.cpp:1:
stdafx.h:3:29: error: boost/foreach.hpp: No such file or directory
In file included from transaction.cpp:1:
stdafx.h:3:29: error: boost/foreach.hpp: No such file or directory
In file included from udp_listen_socket.cpp:1:
stdafx.h:3:29: error: boost/foreach.hpp: No such file or directory
In file included from XBT Tracker.cpp:1:
stdafx.h:3:29: error: boost/foreach.hpp: No such file or directory


can u explain me about dis plzzz

l0calh0st 16th May 2011 15:08

Execute the folllowing commands to fix that:

Code:


cd
/usr/local/src/
wget
http://sourceforge.net/projects/boost/files/boost/1.44.0/boost_1_44_0.tar.gz
tar
xvzf boost_1_44_0.tar.gz
cd
boost_1_44_0
./bootstrap.sh
./bjam install


totopizza 26th May 2012 14:02

i also in troubles arrtfffffff please some help ? :)
 
i get this error :::::

g++: error trying to exec 'cc1plus': execvp: No such file or directory


i searched and searched but could not find any solution,
would you please help me ?

i tried your fix :::
cd /usr/local/src/
wget http://sourceforge.net/projects/boos..._1_44_0.tar.gz
tar xvzf boost_1_44_0.tar.gz
cd boost_1_44_0
./bootstrap.sh
./bjam install


but i recieved another error ::



Building Boost.Jam with toolset gcc...
Failed to build Boost.Jam
Consult 'bootstrap.log' for more details
1909346773:/usr/local/src/boost_1_44_0# ./bjam install
-bash: ./bjam: No such file or directory


arrrfffffffff

chromium 27th April 2013 06:18

Hey,
Can this XBT installation on my machine be used to create a torrent tracker site , pls lemme know.

buves18 8th June 2013 22:03

Not good xbt
 
Not good xbt!!!!

Dingo38 11th October 2013 23:15

Quote:

Originally Posted by buves18 (Post 41102)
Not good xbt!!!!


It's a bloody nightmare,been trying to sort it for 2 days..The tuts no use..I'll move on to another for the time being..

AutoSnipe 12th October 2013 05:31

You're obviously not doing it right :P
and there are many Shell bash scripts that are simply one click wonders for installs for xbt avaliable

Dingo38 12th October 2013 19:09

Obviously not,I did get torrent trader installed and shh xbt,but that won't work either..I'll just keep trying...

BuLeX 14th June 2014 12:11

Please HELP !!!
 
attention

Attention

I've installed this system on my tracker but now i've changed my host and the torrents won't start seeding ! Please help me unistalling XBT from my tracker.Can anyone do that ?



:wallbash:

DND 14th June 2014 16:34

check if the port for xbt is open and check to have everything installed on the new server.

BuLeX 14th June 2014 23:01

Help !
 
I don't want XBT anymore.I don't know how to change the files to go to classic upload/seed.Can you help me with that please ?

meggafast 12th June 2015 04:09

error making ./make.sh
 
hi i keep getting this error when trying to install xbtt

cc1plus: error: unrecognized command line option ‘-std=c++11’
cc1plus: error: unrecognized command line option ‘-std=c++11’
cc1plus: error: unrecognized command line option ‘-std=c++11’
cc1plus: error: unrecognized command line option ‘-std=c++11’
cc1plus: error: unrecognized command line option ‘-std=c++11’
cc1plus: error: unrecognized command line option ‘-std=c++11’
cc1plus: error: unrecognized command line option ‘-std=c++11’
cc1plus: error: unrecognized command line option ‘-std=c++11’
cc1plus: error: unrecognized command line option ‘-std=c++11’
cc1plus: error: unrecognized command line option ‘-std=c++11’
cc1plus: error: unrecognized command line option ‘-std=c++11’
cc1plus: error: unrecognized command line option ‘-std=c++11’
cc1plus: error: unrecognized command line option ‘-std=c++11’


thats the file i downloaded in /xbt/Tracker make.sh

any ideas please

inception 26th October 2015 21:03

Quote:

Originally Posted by meggafast (Post 47130)
hi i keep getting this error when trying to install xbtt

cc1plus: error: unrecognized command line option ‘-std=c++11’
cc1plus: error: unrecognized command line option ‘-std=c++11’
cc1plus: error: unrecognized command line option ‘-std=c++11’
cc1plus: error: unrecognized command line option ‘-std=c++11’
cc1plus: error: unrecognized command line option ‘-std=c++11’
cc1plus: error: unrecognized command line option ‘-std=c++11’
cc1plus: error: unrecognized command line option ‘-std=c++11’
cc1plus: error: unrecognized command line option ‘-std=c++11’
cc1plus: error: unrecognized command line option ‘-std=c++11’
cc1plus: error: unrecognized command line option ‘-std=c++11’
cc1plus: error: unrecognized command line option ‘-std=c++11’
cc1plus: error: unrecognized command line option ‘-std=c++11’
cc1plus: error: unrecognized command line option ‘-std=c++11’


thats the file i downloaded in /xbt/Tracker make.sh

any ideas please

Sorry for the bump . I gues u dont need to get solution but one who wants to know the solution .... GCC version should be 4.7 to fix the above error

Bump:
Code:

root@srv1 [~/xbt/Tracker]# sh make.sh
In file included from connection.cpp:3:0:
connection.h:15:2: warning: access declarations are deprecated in favour of usin                                                                                        g-declarations; suggestion: add the ‘using’ keyword [-Wdeprecated]
In file included from server.h:12:0,
                from connection.cpp:7:
peer_link.h:15:2: warning: access declarations are deprecated in favour of using                                                                                        -declarations; suggestion: add the ‘using’ keyword [-Wdeprecated]
In file included from server.h:14:0,
                from connection.cpp:7:
tcp_listen_socket.h:16:2: warning: access declarations are deprecated in favour                                                                                        of using-declarations; suggestion: add the ‘using’ keyword [-Wdeprecated]
In file included from server.h:16:0,
                from connection.cpp:7:
udp_listen_socket.h:16:2: warning: access declarations are deprecated in favour                                                                                        of using-declarations; suggestion: add the ‘using’ keyword [-Wdeprecated]
In file included from peer_link.cpp:2:0:
peer_link.h:15:2: warning: access declarations are deprecated in favour of using                                                                                        -declarations; suggestion: add the ‘using’ keyword [-Wdeprecated]
In file included from ../misc/sql/database.h:8:0,
                from server.h:8,
                from peer_link.cpp:5:
../misc/sql/sql_result.h: In member function ‘long long int Csql_field::i(long l                                                                                        ong int) const’:
../misc/sql/sql_result.h:70:29: error: ‘atoll’ was not declared in this scope
In file included from server.h:10:0,
                from peer_link.cpp:5:
connection.h: At global scope:
connection.h:15:2: warning: access declarations are deprecated in favour of usin                                                                                        g-declarations; suggestion: add the ‘using’ keyword [-Wdeprecated]
In file included from server.h:14:0,
                from peer_link.cpp:5:
tcp_listen_socket.h:16:2: warning: access declarations are deprecated in favour                                                                                        of using-declarations; suggestion: add the ‘using’ keyword [-Wdeprecated]
In file included from server.h:16:0,
                from peer_link.cpp:5:
udp_listen_socket.h:16:2: warning: access declarations are deprecated in favour                                                                                        of using-declarations; suggestion: add the ‘using’ keyword [-Wdeprecated]
In file included from ../misc/sql/database.h:8:0,
                from server.h:8,
                from server.cpp:2:
../misc/sql/sql_result.h: In member function ‘long long int Csql_field::i(long l                                                                                        ong int) const’:
../misc/sql/sql_result.h:70:29: error: ‘atoll’ was not declared in this scope
In file included from server.h:10:0,
                from server.cpp:2:
connection.h: At global scope:
connection.h:15:2: warning: access declarations are deprecated in favour of usin                                                                                        g-declarations; suggestion: add the ‘using’ keyword [-Wdeprecated]
In file included from server.h:12:0,
                from server.cpp:2:
peer_link.h:15:2: warning: access declarations are deprecated in favour of using                                                                                        -declarations; suggestion: add the ‘using’ keyword [-Wdeprecated]
In file included from server.h:14:0,
                from server.cpp:2:
tcp_listen_socket.h:16:2: warning: access declarations are deprecated in favour                                                                                        of using-declarations; suggestion: add the ‘using’ keyword [-Wdeprecated]
In file included from server.h:16:0,
                from server.cpp:2:
udp_listen_socket.h:16:2: warning: access declarations are deprecated in favour                                                                                        of using-declarations; suggestion: add the ‘using’ keyword [-Wdeprecated]
In file included from tcp_listen_socket.cpp:2:0:
tcp_listen_socket.h:16:2: warning: access declarations are deprecated in favour                                                                                        of using-declarations; suggestion: add the ‘using’ keyword [-Wdeprecated]
In file included from ../misc/sql/database.h:8:0,
                from server.h:8,
                from tcp_listen_socket.cpp:4:
../misc/sql/sql_result.h: In member function ‘long long int Csql_field::i(long l                                                                                        ong int) const’:
../misc/sql/sql_result.h:70:29: error: ‘atoll’ was not declared in this scope
In file included from server.h:10:0,
                from tcp_listen_socket.cpp:4:
connection.h: At global scope:
connection.h:15:2: warning: access declarations are deprecated in favour of usin                                                                                        g-declarations; suggestion: add the ‘using’ keyword [-Wdeprecated]
In file included from server.h:12:0,
                from tcp_listen_socket.cpp:4:
peer_link.h:15:2: warning: access declarations are deprecated in favour of using                                                                                        -declarations; suggestion: add the ‘using’ keyword [-Wdeprecated]
In file included from server.h:16:0,
                from tcp_listen_socket.cpp:4:
udp_listen_socket.h:16:2: warning: access declarations are deprecated in favour                                                                                        of using-declarations; suggestion: add the ‘using’ keyword [-Wdeprecated]
In file included from ../misc/sql/database.h:8:0,
                from server.h:8,
                from transaction.h:8,
                from transaction.cpp:2:
../misc/sql/sql_result.h: In member function ‘long long int Csql_field::i(long l                                                                                        ong int) const’:
../misc/sql/sql_result.h:70:29: error: ‘atoll’ was not declared in this scope
In file included from server.h:10:0,
                from transaction.h:8,
                from transaction.cpp:2:
connection.h: At global scope:
connection.h:15:2: warning: access declarations are deprecated in favour of usin                                                                                        g-declarations; suggestion: add the ‘using’ keyword [-Wdeprecated]
In file included from server.h:12:0,
                from transaction.h:8,
                from transaction.cpp:2:
peer_link.h:15:2: warning: access declarations are deprecated in favour of using                                                                                        -declarations; suggestion: add the ‘using’ keyword [-Wdeprecated]
In file included from server.h:14:0,
                from transaction.h:8,
                from transaction.cpp:2:
tcp_listen_socket.h:16:2: warning: access declarations are deprecated in favour                                                                                        of using-declarations; suggestion: add the ‘using’ keyword [-Wdeprecated]
In file included from server.h:16:0,
                from transaction.h:8,
                from transaction.cpp:2:
udp_listen_socket.h:16:2: warning: access declarations are deprecated in favour                                                                                        of using-declarations; suggestion: add the ‘using’ keyword [-Wdeprecated]
In file included from udp_listen_socket.cpp:2:0:
udp_listen_socket.h:16:2: warning: access declarations are deprecated in favour                                                                                        of using-declarations; suggestion: add the ‘using’ keyword [-Wdeprecated]
In file included from ../misc/sql/database.h:8:0,
                from server.h:8,
                from transaction.h:8,
                from udp_listen_socket.cpp:4:
../misc/sql/sql_result.h: In member function ‘long long int Csql_field::i(long l                                                                                        ong int) const’:
../misc/sql/sql_result.h:70:29: error: ‘atoll’ was not declared in this scope
In file included from server.h:10:0,
                from transaction.h:8,
                from udp_listen_socket.cpp:4:
connection.h: At global scope:
connection.h:15:2: warning: access declarations are deprecated in favour of usin                                                                                        g-declarations; suggestion: add the ‘using’ keyword [-Wdeprecated]
In file included from server.h:12:0,
                from transaction.h:8,
                from udp_listen_socket.cpp:4:
peer_link.h:15:2: warning: access declarations are deprecated in favour of using                                                                                        -declarations; suggestion: add the ‘using’ keyword [-Wdeprecated]
In file included from server.h:14:0,
                from transaction.h:8,
                from udp_listen_socket.cpp:4:
tcp_listen_socket.h:16:2: warning: access declarations are deprecated in favour                                                                                        of using-declarations; suggestion: add the ‘using’ keyword [-Wdeprecated]
In file included from server.h:10:0,
                from XBT Tracker.cpp:4:
connection.h:15:2: warning: access declarations are deprecated in favour of usin                                                                                        g-declarations; suggestion: add the ‘using’ keyword [-Wdeprecated]
In file included from server.h:12:0,
                from XBT Tracker.cpp:4:
peer_link.h:15:2: warning: access declarations are deprecated in favour of using                                                                                        -declarations; suggestion: add the ‘using’ keyword [-Wdeprecated]
In file included from server.h:14:0,
                from XBT Tracker.cpp:4:
tcp_listen_socket.h:16:2: warning: access declarations are deprecated in favour                                                                                        of using-declarations; suggestion: add the ‘using’ keyword [-Wdeprecated]
In file included from server.h:16:0,
                from XBT Tracker.cpp:4:
udp_listen_socket.h:16:2: warning: access declarations are deprecated in favour                                                                                        of using-declarations; suggestion: add the ‘using’ keyword [-Wdeprecated]
In file included from ../misc/stream_writer.h:8:0,
                from ../misc/alerts.h:10,
                from ../misc/alerts.cpp:2:
../misc/stream_int.h: In function ‘T write_float(T, float)’:
../misc/stream_int.h:26:29: error: there are no arguments to ‘memcpy’ that depen                                                                                        d on a template parameter, so a declaration of ‘memcpy’ must be available [-fper                                                                                        missive]
../misc/stream_int.h:26:29: note: (if you use ‘-fpermissive’, G++ will accept yo                                                                                        ur code, but allowing the use of an undeclared name is deprecated)
In file included from ../misc/alerts.h:10:0,
                from ../misc/alerts.cpp:2:
../misc/stream_writer.h: In member function ‘void Cstream_writer::write_string(c                                                                                        onst string&)’:
../misc/stream_writer.h:39:50: error: ‘memcpy’ was not declared in this scope
../misc/bt_misc.cpp: In function ‘std::string get_env(const string&)’:
../misc/bt_misc.cpp:37:34: error: ‘getenv’ was not declared in this scope
In file included from ../misc/stream_writer.h:8:0,
                from ../misc/bt_tracker_account.h:8,
                from ../misc/bt_tracker_account.cpp:2:
../misc/stream_int.h: In function ‘T write_float(T, float)’:
../misc/stream_int.h:26:29: error: there are no arguments to ‘memcpy’ that depen                                                                                        d on a template parameter, so a declaration of ‘memcpy’ must be available [-fper                                                                                        missive]
../misc/stream_int.h:26:29: note: (if you use ‘-fpermissive’, G++ will accept yo                                                                                        ur code, but allowing the use of an undeclared name is deprecated)
In file included from ../misc/bt_tracker_account.h:8:0,
                from ../misc/bt_tracker_account.cpp:2:
../misc/stream_writer.h: In member function ‘void Cstream_writer::write_string(c                                                                                        onst string&)’:
../misc/stream_writer.h:39:50: error: ‘memcpy’ was not declared in this scope
../misc/bvalue.cpp: In member function ‘int Cbvalue::write(const char*&, const c                                                                                        har*)’:
../misc/bvalue.cpp:143:18: error: ‘atoi’ was not declared in this scope
../misc/bvalue.cpp:178:19: error: ‘atoll’ was not declared in this scope
../misc/bvalue.cpp: In member function ‘int Cbvalue::read(char*) const’:
../misc/bvalue.cpp:336:16: error: ‘strlen’ was not declared in this scope
../misc/bvalue.cpp:342:47: error: ‘memcpy’ was not declared in this scope
In file included from ../misc/stream_reader.h:8:0,
                from ../misc/stream_reader.cpp:2:
../misc/stream_int.h: In function ‘T write_float(T, float)’:
../misc/stream_int.h:26:29: error: there are no arguments to ‘memcpy’ that depen                                                                                        d on a template parameter, so a declaration of ‘memcpy’ must be available [-fper                                                                                        missive]
../misc/stream_int.h:26:29: note: (if you use ‘-fpermissive’, G++ will accept yo                                                                                        ur code, but allowing the use of an undeclared name is deprecated)
In file included from ../misc/stream_writer.h:8:0,
                from ../misc/stream_writer.cpp:2:
../misc/stream_int.h: In function ‘T write_float(T, float)’:
../misc/stream_int.h:26:29: error: there are no arguments to ‘memcpy’ that depen                                                                                        d on a template parameter, so a declaration of ‘memcpy’ must be available [-fper                                                                                        missive]
../misc/stream_int.h:26:29: note: (if you use ‘-fpermissive’, G++ will accept yo                                                                                        ur code, but allowing the use of an undeclared name is deprecated)
In file included from ../misc/stream_writer.cpp:2:0:
../misc/stream_writer.h: In member function ‘void Cstream_writer::write_string(c                                                                                        onst string&)’:
../misc/stream_writer.h:39:50: error: ‘memcpy’ was not declared in this scope
../misc/virtual_binary.cpp: In constructor ‘Cvirtual_binary_source::Cvirtual_bin                                                                                        ary_source(const void*, size_t)’:
../misc/virtual_binary.cpp:12:25: error: ‘memcpy’ was not declared in this scope
../misc/virtual_binary.cpp: In member function ‘size_t Cvirtual_binary::read(voi                                                                                        d*) const’:
../misc/virtual_binary.cpp:105:26: error: ‘memcpy’ was not declared in this scop                                                                                        e
../misc/virtual_binary.cpp: In member function ‘void Cvirtual_binary::write(cons                                                                                        t void*, size_t)’:
../misc/virtual_binary.cpp:121:35: error: ‘memcpy’ was not declared in this scop                                                                                        e
In file included from ../misc/xcc_z.cpp:6:0:
../misc/stream_int.h: In function ‘T write_float(T, float)’:
../misc/stream_int.h:26:29: error: there are no arguments to ‘memcpy’ that depen                                                                                        d on a template parameter, so a declaration of ‘memcpy’ must be available [-fper                                                                                        missive]
../misc/stream_int.h:26:29: note: (if you use ‘-fpermissive’, G++ will accept yo                                                                                        ur code, but allowing the use of an undeclared name is deprecated)
In file included from ../misc/xif_key.h:11:0,
                from ../misc/xif_key.cpp:2:
../misc/xif_value.h: In constructor ‘Cxif_value::Cxif_value(const string&)’:
../misc/xif_value.h:44:71: error: ‘memcpy’ was not declared in this scope
In file included from ../misc/xif_key.cpp:5:0:
../misc/stream_int.h: In function ‘T write_float(T, float)’:
../misc/stream_int.h:26:29: error: there are no arguments to ‘memcpy’ that depen                                                                                        d on a template parameter, so a declaration of ‘memcpy’ must be available [-fper                                                                                        missive]
../misc/stream_int.h:26:29: note: (if you use ‘-fpermissive’, G++ will accept yo                                                                                        ur code, but allowing the use of an undeclared name is deprecated)
In file included from ../misc/xif_key_r.h:10:0,
                from ../misc/xif_key_r.cpp:2:
../misc/xif_value.h: In constructor ‘Cxif_value::Cxif_value(const string&)’:
../misc/xif_value.h:44:71: error: ‘memcpy’ was not declared in this scope
In file included from ../misc/xif_key_r.cpp:5:0:
../misc/stream_int.h: In function ‘T write_float(T, float)’:
../misc/stream_int.h:26:29: error: there are no arguments to ‘memcpy’ that depen                                                                                        d on a template parameter, so a declaration of ‘memcpy’ must be available [-fper                                                                                        missive]
../misc/stream_int.h:26:29: note: (if you use ‘-fpermissive’, G++ will accept yo                                                                                        ur code, but allowing the use of an undeclared name is deprecated)
In file included from ../misc/xif_value.cpp:2:0:
../misc/xif_value.h: In constructor ‘Cxif_value::Cxif_value(const string&)’:
../misc/xif_value.h:44:71: error: ‘memcpy’ was not declared in this scope
In file included from ../misc/xif_value.cpp:5:0:
../misc/stream_int.h: In function ‘T write_float(T, float)’:
../misc/stream_int.h:26:29: error: there are no arguments to ‘memcpy’ that depen                                                                                        d on a template parameter, so a declaration of ‘memcpy’ must be available [-fper                                                                                        missive]
../misc/stream_int.h:26:29: note: (if you use ‘-fpermissive’, G++ will accept yo                                                                                        ur code, but allowing the use of an undeclared name is deprecated)
../misc/xif_value.cpp: In function ‘float read_float(const byte*&)’:
../misc/xif_value.cpp:11:17: error: ‘memcpy’ was not declared in this scope
../misc/xif_value.cpp: In member function ‘void Cxif_value::load_old(const byte*                                                                                        &)’:
../misc/xif_value.cpp:53:29: error: ‘memcpy’ was not declared in this scope
../misc/xif_value.cpp:54:45: error: ‘memcpy’ was not declared in this scope
../misc/xif_value.cpp: In member function ‘void Cxif_value::load_new(const byte*                                                                                        &)’:
../misc/xif_value.cpp:79:47: error: ‘memcpy’ was not declared in this scope
../misc/xif_value.cpp: In member function ‘void Cxif_value::load_external(const                                                                                        byte*&)’:
../misc/xif_value.cpp:89:45: error: ‘memcpy’ was not declared in this scope
../misc/xif_value.cpp: In member function ‘void Cxif_value::save(byte*&) const’:
../misc/xif_value.cpp:133:34: error: ‘memcpy’ was not declared in this scope
../misc/xif_value.cpp: In member function ‘void Cxif_value::external_save(byte*&                                                                                        ) const’:
../misc/xif_value.cpp:149:37: error: ‘memcpy’ was not declared in this scope
In file included from ../misc/xif_value.cpp:5:0:
../misc/stream_int.h: In instantiation of ‘T write_float(T, float) [with T = uns                                                                                        igned char*]’:
../misc/xif_value.cpp:125:39:  required from here
../misc/stream_int.h:26:2: error: ‘memcpy’ was not declared in this scope
In file included from ../misc/sql/database.h:8:0,
                from ../misc/sql/database.cpp:2:
../misc/sql/sql_result.h: In member function ‘long long int Csql_field::i(long l                                                                                        ong int) const’:
../misc/sql/sql_result.h:70:29: error: ‘atoll’ was not declared in this scope
In file included from ../misc/sql/database.h:8:0,
                from ../misc/sql/sql_query.cpp:5:
../misc/sql/sql_result.h: In member function ‘long long int Csql_field::i(long l                                                                                        ong int) const’:
../misc/sql/sql_result.h:70:29: error: ‘atoll’ was not declared in this scope
../misc/sql/sql_query.cpp: In member function ‘void Csql_query::p(const string&)                                                                                        ’:
../misc/sql/sql_query.cpp:68:16: error: ‘strcat’ was not declared in this scope
../misc/sql/sql_query.cpp: In member function ‘void Csql_query::p(const Cvirtual                                                                                        _binary&)’:
../misc/sql/sql_query.cpp:78:16: error: ‘strcat’ was not declared in this scope
In file included from ../misc/sql/sql_result.cpp:2:0:
../misc/sql/sql_result.h: In member function ‘long long int Csql_field::i(long l                                                                                        ong int) const’:
../misc/sql/sql_result.h:70:29: error: ‘atoll’ was not declared in this scope
root@srv1 [~/xbt/Tracker]#

I am getting the above error :( anyone help me install this XBT tracker.. Trying for 4 days now :(

Bump: anyone wants help me here please

Henrysix 20th March 2019 00:51

XBT Tracker Installation
 
Say, I translated FF8 PC to my language, now the question is how to make the translated data into an installation CD so that my friend can install the translation using this CD.

I'll be very gratefull if anyone can help.

Thank you in advance.


All times are GMT +2. The time now is 21:09.

Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions Inc.