Bitcoin Forum
June 22, 2024, 04:57:13 AM *
News: Voting for pizza day contest
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Feathercoin [FTC] on: November 22, 2017, 11:31:39 AM
Version 0.9.6.2 is released!

It has bug fixes and improved speed of synchronization
2  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] FinTech Coins (FTC) - Introducing New Tokens on: October 31, 2017, 04:26:36 PM
Well, the symbol FTC is occupied by Feathercoin already, so I doubt, they will find a lot of exchanges.

In any case it would be confusing.

I believe it is scam.
3  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Feathercoin [FTC] - time proven, fast, secure and unique POW coin on: February 09, 2016, 03:45:55 PM
Hi Marada,



It seems all the dependencies are met now.

No! see below

Quote
I have even switched to bdb5.3 even though I would prefer to stick with 5.1.

There is no need to switch to bdb5.3, I've 0.9.3 running even on BDB 4.8 and 5.1
Quote

The only libprotobuf-dev can not be upgraded to >= 2.6.1 from 2.5.0-9 without messing up the whole LTS system, but I think it is not the case.

That should be no problem

Quote
Basically no progress, the result is still the same. It must have something to do with QtPrintSupport and QJsonObject.

As said I never used Linux mint, so I can't judge how the dependencies are resolved in that distribution.
Mint should use the same package structure as Ubuntu, so I checked the packages you need to have for Ubuntu.

With the help of Google I found the following:

QJsonObject: The compiler misses the file qjasonobject.h
      As Mint is a kind of special flavor of Ubuntu I checked the Ubuntu packages.
      You need to install the package qtbase5-dev.  That package contains qjsonobject.h as you can see here:       
      http://packages.ubuntu.com/wily/amd64/qtbase5-dev/filelist

QtPrintSupport/QPrinter: The compiler misses the file qprinter.h
      Again, the package qtbase5-dev contains the header  files for QtPrintSupport.
      If you have installed qtbase5-dev, check for the directories containing qprinter.h and qjsonobject.h
      and specifiy these directories for the configure script. Use 'configure --help' for syntax.

Quote
What were "special compiling options" mentioned by entertheabyss?
Can I use older wallet versions that got build flawlessly?

I'm the only compiling option I'm aware of is that you have to run configure with the 'diable-tests' option.
use configure --help for syntax. Other possible 'special options' are platform dependencies and related to your local system so you need to find out yourself.

The only older version you could use is 0.8.7.1. other versions are not working as they are pre-neoscrypt.

[qoute]

I know many users are not aware of such details as they use binaries or even not.
Anyway I believe serious vendors evaluate the code quality to determine the team capability.
Therefore this situation doesn't help FTC getting shining again at all.
[/quote]

As you may notice from my answers above , the problems you have are NOT related to the code quality of the Feathercoin wallet, but are caused by some packets/dependencies missing on our development system.

Just a hint: check the file lists of the packages you have installed. In order to compile a programm you need the header files of the libraries, while to run the program you need the shared object files of the libraries. (*.h vs *.so)
Typicalliy the header files are contained in the -dev packages.


4  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Feathercoin [FTC] - time proven, fast, secure and unique POW coin on: February 08, 2016, 01:53:10 PM
I can't compile the new Feathercoin wallet on linux (Linux Mint 17.3).

Code:
coinnectordialog.cpp:28:23: fatal error: QJsonObject: No such file or directory
 #include <QJsonObject>
                       ^
compilation terminated.
(...)
make[5]: *** [libbitcoinqt_a-coinnectordialog.o] Error 1
utilitydialog.cpp:51:35: fatal error: QtPrintSupport/QPrinter: No such file or directory
 #include <QtPrintSupport/QPrinter>
                                   ^
compilation terminated.

libqt5printsupport5 and libqjson-dev are installed.
Other wallets, including bitcoin-qt compile fine.
What is wrong?

PS: this was v. 0.9.3, github link from official FTC site.

I never tried to compile for Linux Mint, but I think you are missing some QT dependencies.

For Debian I compiled 0.9.3 and 0.9.5 with the follwing:
From the DSC file:

Code:
Build-Depends: libdb5.3-dev debhelper (>= 8.3.0), qtbase5-dev, qttools5-dev-tools, build-essential, libboost-dev, 
 libboost-system-dev, libboost-filesystem-dev, libboost-program-options-dev, libboost-thread-dev,
 libssl-dev,libdb++-dev, libminiupnpc-dev, binutils,
 autoconf, automake,  debhelper (>= 8.1.3), dh-autoreconf,
 libzxing, libqrencode-dev, pkg-config, libprotobuf-dev (>= 2.6.1), protobuf-compiler

Extract from the rules-file

Code:
#ifeq "$(shell uname -v|grep +deb7)" "+deb7"
GUI_PARMS= --with-gui=no
HAVE_GUI= false
#else
GUI_PARMS= --with-gui=qt5 --with-qrcode
HAVE_GUI= true
#endif

ifeq "$(shell uname -m)" "x86_64"
LIBDIR=$(PREFIX)/lib64
CONFIG_PARMS= --without-cli --with-incompatible-bdb  --enable-tests=no $(GUI_PARMS) -with-boost=yes
else
LIBDIR=$(PREFIX)/lib
CONFIG_PARMS= --without-cli --with-incompatible-bdb  --enable-tests=no $(GUI_PARMS) --with-boost-libdir=$(LIBDIR)/i386-linux-gnu
endif

#ifeq "$(shell uname -v| grep -c deb)" "1"
QRCODE="1"
#else
#QRCODE="-"
#endif

INCLUDEDIR=../../../include
SBINDIR=$(PREFIX)/sbin
MANDIR=$(PREFIX)/share/man
DATADIR=$(PREFIX)/share/$(NAME)
DOCDIR=$(PREFIX)/share/doc/$(NAME)
SYSCONFDIR=/etc
RCDIR=$(SYSCONFDIR)/init.d
CGIDIR=/src/www/cgi-bin

build: build-arch build-indep
build-arch: build-stamp
build-indep: build-stamp
build-stamp:
dh_testdir
dh_autoreconf
# Add here commands to compile the package.
./autogen.sh
./configure $(CONFIG_PARMS)
#
make

For Debian 7 no Gui is possible, as Debian 7 uses QT4 and 0.9.3 / 0.9.5 doesn't compile on QT4

I hope this helps

The next relase which probably will be 0.11.2 compiles fine for QT4 and QT5
5  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Feathercoin [FTC] - time proven, fast, secure and unique POW coin on: November 17, 2015, 02:01:47 PM
You need to scroll down until you reach the post from 'Wrapper'.

He compiled the code about 2 weeks ago and described the modifications to the original procedure and also describes his tests /attempts to get the miner working with different versions of the AMD drivers.

To my knowledge he compiled on Ubuntu, but may be able to help with other Linux OS, too.
6  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Feathercoin [FTC] - time proven, fast, secure and unique POW coin on: November 16, 2015, 08:19:20 AM
Yes, there are a lot of people mining Feathercoin with an AMD card.

I found this howto:

http://forum.feathercoin.com/topic/7446/guide-how-to-mine-ftc-neoscrypt-sgminer-ubuntu-14-04-amd/
7  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Feathercoin [FTC] - time proven, fast, secure and unique POW coin on: November 10, 2015, 08:08:14 AM
i am having an issue building feathercoin:

Code:
base58_tests.cpp:93:10: note: bool base58_tests::TestAddrTypeVisitor::operator()(const CNoDestination&) const
     bool operator()(const CNoDestination &no) const
          ^
base58_tests.cpp:93:10: note:   no known conversion for argument 1 from ‘CStealthAddress’ to ‘const CNoDestination&’
Makefile:881: recipe for target 'test_bitcoin-base58_tests.o' failed
make[4]: *** [test_bitcoin-base58_tests.o] Error 1
make[4]: *** Waiting for unfinished jobs....
Makefile:923: recipe for target 'test_bitcoin-bloom_tests.o' failed
make[4]: *** [test_bitcoin-bloom_tests.o] Error 1
make[4]: Leaving directory '/home/user/apps/Feathercoin/src/test'
Makefile:700: recipe for target 'all' failed
make[3]: *** [all] Error 2
make[3]: Leaving directory '/home/user/apps/Feathercoin/src/test'
Makefile:913: recipe for target 'all-recursive' failed
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory '/home/user/apps/Feathercoin/src'
Makefile:666: recipe for target 'all' failed
make[1]: *** [all] Error 2
make[1]: Leaving directory '/home/user/apps/Feathercoin/src'
Makefile:502: recipe for target 'all-recursive' failed
make: *** [all-recursive] Error 1

The test section of the code is currently broken. It is not needed for a fully functional wallet.
you can disable the compilation of the tests by adding '--enable-tests=no' as parameter to the configure script.
8  Alternate cryptocurrencies / Altcoin Discussion / Re: FTC vs. LTC vs. rock @lmao on: November 24, 2014, 07:13:42 PM
I like that humor
9  Bitcoin / Project Development / Re: Physical Bitcoin Design Finalists - VOID - New Thread soon - See Statement on: September 01, 2014, 01:31:24 PM
I vote for iwagoM
10  Alternate cryptocurrencies / Altcoin Discussion / Re: what happend to feathercoin? on: June 27, 2014, 12:10:35 PM
FTC ist alive and has a busy community.

If you follow their forum, you will notice, that a lot of good things are on their way.

It seems people over there talk about their activities only, after a goal is archived, rather than making noise, before something is done.
11  Alternate cryptocurrencies / Altcoin Discussion / Re: Which currency should Hive support next? on: June 27, 2014, 08:19:42 AM
Add Feathercoin!!
12  Alternate cryptocurrencies / Altcoin Discussion / Re: FTC on: June 20, 2014, 07:15:29 AM
FTC is really cheap at the moment.

I'm sure, that the rates will go up soon
13  Alternate cryptocurrencies / Altcoin Discussion / Re: Most Popular Alts - Where does your money lie? on: June 18, 2014, 11:35:21 AM
Feathercoin  Grin

lot of innovations announced there....
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!