LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 12-31-2013, 10:57 AM   #1
AdiLQ123
Member
 
Registered: Oct 2011
Posts: 52

Rep: Reputation: Disabled
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.
 
Old 12-31-2013, 11:49 AM   #2
Alien Bob
Slackware Contributor
 
Registered: Sep 2005
Location: Eindhoven, The Netherlands
Distribution: Slackware
Posts: 8,559

Rep: Reputation: 8119Reputation: 8119Reputation: 8119Reputation: 8119Reputation: 8119Reputation: 8119Reputation: 8119Reputation: 8119Reputation: 8119Reputation: 8119Reputation: 8119
I have not tried, but it looks like you need this patch: https://github.com/pld-linux/freerdp...p-ffmpeg.patch

Eric
 
Old 12-31-2013, 12:43 PM   #3
ponce
LQ Guru
 
Registered: Aug 2004
Location: Pisa, Italy
Distribution: Slackware
Posts: 7,385

Rep: Reputation: 4356Reputation: 4356Reputation: 4356Reputation: 4356Reputation: 4356Reputation: 4356Reputation: 4356Reputation: 4356Reputation: 4356Reputation: 4356Reputation: 4356
that's not the version on SBo

http://slackbuilds.org/repository/14.1/network/freerdp/
 
Old 01-01-2014, 08:58 PM   #4
santaslilslacker
Member
 
Registered: Nov 2007
Distribution: Slackware64_current
Posts: 47

Rep: Reputation: 31
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.
 
Old 01-03-2014, 04:26 PM   #5
Bertman123
Member
 
Registered: Jun 2010
Distribution: Slackware Current 64 bit KDE 5
Posts: 380

Rep: Reputation: 77
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.
 
Old 01-19-2014, 03:58 AM   #6
AdiLQ123
Member
 
Registered: Oct 2011
Posts: 52

Original Poster
Rep: Reputation: Disabled
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?
Attached Thumbnails
Click image for larger version

Name:	Screenshot - 01192014 - 08:55:20 AM.png
Views:	26
Size:	33.3 KB
ID:	14519  
 
Old 01-19-2014, 08:28 AM   #7
Bertman123
Member
 
Registered: Jun 2010
Distribution: Slackware Current 64 bit KDE 5
Posts: 380

Rep: Reputation: 77
Quote:
Originally Posted by AdiLQ123 View Post
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.
 
Old 01-19-2014, 08:30 AM   #8
Bertman123
Member
 
Registered: Jun 2010
Distribution: Slackware Current 64 bit KDE 5
Posts: 380

Rep: Reputation: 77
Quote:
Originally Posted by AdiLQ123 View Post
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.
 
Old 01-19-2014, 08:46 AM   #9
AdiLQ123
Member
 
Registered: Oct 2011
Posts: 52

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by Bertman123 View Post
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.
 
Old 01-19-2014, 09:36 AM   #10
ponce
LQ Guru
 
Registered: Aug 2004
Location: Pisa, Italy
Distribution: Slackware
Posts: 7,385

Rep: Reputation: 4356Reputation: 4356Reputation: 4356Reputation: 4356Reputation: 4356Reputation: 4356Reputation: 4356Reputation: 4356Reputation: 4356Reputation: 4356Reputation: 4356
it probably depends on the gtk theme/colors you have chosen.
 
Old 01-19-2014, 10:42 AM   #11
AdiLQ123
Member
 
Registered: Oct 2011
Posts: 52

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by ponce View Post
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.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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



Similar Threads
Thread Thread Starter Forum Replies Last Post
[REQUEST] freerdp zerouno Slackware 4 09-23-2013 06:19 PM
[SOLVED] freerdp-x11 Lexus45 Linux - Software 1 11-21-2012 11:05 PM
Issues running dropbox on slackware currernt. kernel-P4N1C Slackware 2 04-07-2012 01:25 PM
[SOLVED] Issues with the kismet slackbuild Josh000 Slackware 2 01-08-2010 08:47 PM
errors running a slackbuild. garyg007 Linux - Software 5 01-12-2009 12:26 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 08:10 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration