Slackware This Forum is for the discussion of Slackware Linux.
|
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
|
12-31-2013, 10:57 AM
|
#1
|
Member
Registered: Oct 2011
Posts: 52
Rep:
|
Dependencie issues when running freerdp slackbuild - Slackware 14.1
Hi,
I am trying to install freerdp from the slack build provided by slackbuilds.com. I have double checked that I have installed all the dependencies and they are all there as far as I can see:
ffmpeg
lame
x264
texlive
texi2html
libsigsegv
Is there any way to tell from the below terminal output excerpt what I might be missing, or what else could be wrong? I am struggling to make sense of it:
Code:
Scanning dependencies of target tsmf_ffmpeg
make[2]: Leaving directory `/tmp/SBo/freerdp-1.0.1/build'
make -f channels/drdynvc/tsmf/ffmpeg/CMakeFiles/tsmf_ffmpeg.dir/build.make channels/drdynvc/tsmf/ffmpeg/CMakeFiles/tsmf_ffmpeg.dir/build
make[2]: Entering directory `/tmp/SBo/freerdp-1.0.1/build'
/usr/bin/cmake -E cmake_progress_report /tmp/SBo/freerdp-1.0.1/build/CMakeFiles
[ 78%] Building C object channels/drdynvc/tsmf/ffmpeg/CMakeFiles/tsmf_ffmpeg.dir/tsmf_ffmpeg.c.o
cd /tmp/SBo/freerdp-1.0.1/build/channels/drdynvc/tsmf/ffmpeg && /usr/bin/cc -Dtsmf_ffmpeg_EXPORTS -O2 -fPIC -Wall -Wno-unused-result -Wno-unused-but-set-variable -O2 -DNDEBUG -fPIC -I/tmp/SBo/freerdp-1.0.1/build -I/tmp/SBo/freerdp-1.0.1/include -I/tmp/SBo/freerdp-1.0.1/channels/drdynvc/tsmf/.. -I/tmp/SBo/freerdp-1.0.1/channels/drdynvc/tsmf/ffmpeg/.. -I/usr/include/libavcodec -I/usr/include/libavutil -o CMakeFiles/tsmf_ffmpeg.dir/tsmf_ffmpeg.c.o -c /tmp/SBo/freerdp-1.0.1/channels/drdynvc/tsmf/ffmpeg/tsmf_ffmpeg.c
/tmp/SBo/freerdp-1.0.1/channels/drdynvc/tsmf/ffmpeg/tsmf_ffmpeg.c:42:15: error: field 'codec_id' has incomplete type
enum CodecID codec_id;
^
/tmp/SBo/freerdp-1.0.1/channels/drdynvc/tsmf/ffmpeg/tsmf_ffmpeg.c: In function 'tsmf_ffmpeg_init_context':
/tmp/SBo/freerdp-1.0.1/channels/drdynvc/tsmf/ffmpeg/tsmf_ffmpeg.c:57:2: warning: implicit declaration of function 'avcodec_alloc_context' [-Wimplicit-function-declaration]
mdecoder->codec_context = avcodec_alloc_context();
^
/tmp/SBo/freerdp-1.0.1/channels/drdynvc/tsmf/ffmpeg/tsmf_ffmpeg.c:57:26: warning: assignment makes pointer from integer without a cast [enabled by default]
mdecoder->codec_context = avcodec_alloc_context();
^
/tmp/SBo/freerdp-1.0.1/channels/drdynvc/tsmf/ffmpeg/tsmf_ffmpeg.c: In function 'tsmf_ffmpeg_init_audio_stream':
/tmp/SBo/freerdp-1.0.1/channels/drdynvc/tsmf/ffmpeg/tsmf_ffmpeg.c:92:25: error: 'AVCodecContext' has no member named 'dsp_mask'
mdecoder->codec_context->dsp_mask = AV_CPU_FLAG_SSE2 | AV_CPU_FLAG_MMX2;
^
/tmp/SBo/freerdp-1.0.1/channels/drdynvc/tsmf/ffmpeg/tsmf_ffmpeg.c: In function 'tsmf_ffmpeg_prepare':
/tmp/SBo/freerdp-1.0.1/channels/drdynvc/tsmf/ffmpeg/tsmf_ffmpeg.c:177:2: warning: implicit declaration of function 'avcodec_open' [-Wimplicit-function-declaration]
if (avcodec_open(mdecoder->codec_context, mdecoder->codec) < 0)
^
/tmp/SBo/freerdp-1.0.1/channels/drdynvc/tsmf/ffmpeg/tsmf_ffmpeg.c: In function 'tsmf_ffmpeg_decode_audio':
/tmp/SBo/freerdp-1.0.1/channels/drdynvc/tsmf/ffmpeg/tsmf_ffmpeg.c:340:32: error: 'AVCODEC_MAX_AUDIO_FRAME_SIZE' undeclared (first use in this function)
mdecoder->decoded_size_max = AVCODEC_MAX_AUDIO_FRAME_SIZE + 16;
^
/tmp/SBo/freerdp-1.0.1/channels/drdynvc/tsmf/ffmpeg/tsmf_ffmpeg.c:340:32: note: each undeclared identifier is reported only once for each function it appears in
/tmp/SBo/freerdp-1.0.1/channels/drdynvc/tsmf/ffmpeg/tsmf_ffmpeg.c:375:4: warning: 'avcodec_decode_audio3' is deprecated (declared at /usr/include/libavcodec/avcodec.h:3787) [-Wdeprecated-declarations]
len = avcodec_decode_audio3(mdecoder->codec_context,
^
/tmp/SBo/freerdp-1.0.1/channels/drdynvc/tsmf/ffmpeg/tsmf_ffmpeg.c: In function 'TSMFDecoderEntry':
/tmp/SBo/freerdp-1.0.1/channels/drdynvc/tsmf/ffmpeg/tsmf_ffmpeg.c:502:3: warning: implicit declaration of function 'avcodec_init' [-Wimplicit-function-declaration]
avcodec_init();
^
make[2]: *** [channels/drdynvc/tsmf/ffmpeg/CMakeFiles/tsmf_ffmpeg.dir/tsmf_ffmpeg.c.o] Error 1
make[2]: Leaving directory `/tmp/SBo/freerdp-1.0.1/build'
make[1]: *** [channels/drdynvc/tsmf/ffmpeg/CMakeFiles/tsmf_ffmpeg.dir/all] Error 2
make[1]: Leaving directory `/tmp/SBo/freerdp-1.0.1/build'
make: *** [all] Error 2
Last edited by AdiLQ123; 12-31-2013 at 11:04 AM.
|
|
|
12-31-2013, 12:43 PM
|
#3
|
LQ Guru
Registered: Aug 2004
Location: Pisa, Italy
Distribution: Slackware
Posts: 7,385
|
|
|
|
01-01-2014, 08:58 PM
|
#4
|
Member
Registered: Nov 2007
Distribution: Slackware64_current
Posts: 47
Rep:
|
Speaking of freerdp... Does anyone else have problems running latest freerdp & remmina combo? I've compiled their slackbuilds but I keep getting segfaults when connecting trough remmina. I downloaded Ponce's packages too, just to be sure, but I keep getting the same error:
Code:
remmina[4015]: segfault at 0 ip 00007ff9820f642f sp 00007ff912ffcc48 error 4 in libc-2.17.so
However, latest freerdp invoked from console with switches for shared folders and compression works just fine. So I gave up and reverted all back to previous versions that work ok.
Regards,
S.
|
|
|
01-03-2014, 04:26 PM
|
#5
|
Member
Registered: Jun 2010
Distribution: Slackware Current 64 bit KDE 5
Posts: 380
Rep:
|
I haven't had a problem with freerdp or remmina. I use it on my laptop that has 14.1. Have you tried sbopkg? http://www.sbopkg.org/downloads.php I haven't had any issues installing either from there.
|
|
|
01-19-2014, 03:58 AM
|
#6
|
Member
Registered: Oct 2011
Posts: 52
Original Poster
Rep:
|
OK got it working so thanks everybody.
After all all that Remmina doesn't seem to like Xfce. Anybody managed to get it to work OK under Xfce?
|
|
|
01-19-2014, 08:28 AM
|
#7
|
Member
Registered: Jun 2010
Distribution: Slackware Current 64 bit KDE 5
Posts: 380
Rep:
|
Quote:
Originally Posted by AdiLQ123
OK got it working so thanks everybody.
After all all that Remmina doesn't seem to like Xfce. Anybody managed to get it to work OK under Xfce?
|
I use under xfce and haven't noticed any problems.
|
|
|
01-19-2014, 08:30 AM
|
#8
|
Member
Registered: Jun 2010
Distribution: Slackware Current 64 bit KDE 5
Posts: 380
Rep:
|
Quote:
Originally Posted by AdiLQ123
OK got it working so thanks everybody.
After all all that Remmina doesn't seem to like Xfce. Anybody managed to get it to work OK under Xfce?
|
I use under xfce and haven't noticed any problems or issues.
|
|
|
01-19-2014, 08:46 AM
|
#9
|
Member
Registered: Oct 2011
Posts: 52
Original Poster
Rep:
|
Quote:
Originally Posted by Bertman123
I use under xfce and haven't noticed any problems or issues.
|
Hmmmm, strange. On my system with Xfce 4.1 the form is black and the menu's don't look right either.
|
|
|
01-19-2014, 09:36 AM
|
#10
|
LQ Guru
Registered: Aug 2004
Location: Pisa, Italy
Distribution: Slackware
Posts: 7,385
|
it probably depends on the gtk theme/colors you have chosen.
|
|
|
01-19-2014, 10:42 AM
|
#11
|
Member
Registered: Oct 2011
Posts: 52
Original Poster
Rep:
|
Quote:
Originally Posted by ponce
it probably depends on the gtk theme/colors you have chosen.
|
I am using the default, but did try a few different themes and no change.
|
|
|
All times are GMT -5. The time now is 08:10 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|