Web Images Videos Maps News Shopping Gmail more »
Recently Visited Groups | Help | Sign in
Google Groups Home
compile error
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  6 messages - Expand all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
lauedoi  
View profile  
 More options Mar 25 2005, 2:14 pm
Newsgroups: comp.unix.solaris
From: lauedoi <laue...@web.de>
Date: Fri, 25 Mar 2005 20:14:13 +0100
Local: Fri, Mar 25 2005 2:14 pm
Subject: compile error
hi ng,
i try to install streamripper (version 1.61.4) on solaris 10(sparc) but
at the make check/make command get the following error.
or what is an equivalent mp3 streamripper for solaris?
i tested the code on a suse 9.0 version and work without any errors.
why do not work it on solaris plattform? they say that the code is
plattform independent. on x86 or solaris 9 the same error message.

configure command:
root@ariel> ./configure --prefix=/usr/local/streamripper/
....

root@ariel> make check
....
In file included from lib/inet.c:25:
lib/socklib.h:32: error: syntax error before "u_int32_t"
*** Error code 1
make: Fatal error: Command failed for target `inet.o'
Current working directory /data/software/streamripper-1.61.4
*** Error code 1
The following command caused the error:
set fnord $MAKEFLAGS; amf=$2; \
dot_seen=no; \
target=`echo check-recursive | sed s/-recursive//`; \
list='libmad-0.15.1b '; for subdir in $list; do \
   echo "Making $target in $subdir"; \
   if test "$subdir" = "."; then \
     dot_seen=yes; \
     local_target="$target-am"; \
   else \
     local_target="$target"; \
   fi; \
   (cd $subdir && make  $local_target) \
    || case "$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
done; \
if test "$dot_seen" = "no"; then \
   make  "$target-am" || exit 1; \
fi; test -z "$fail"
make: Fatal error: Command failed for target `check-recursive'

thanks.


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
lauedoi  
View profile  
 More options Mar 25 2005, 2:15 pm
Newsgroups: comp.unix.solaris, alt.solaris.x86
From: lauedoi <laue...@web.de>
Date: Fri, 25 Mar 2005 20:15:21 +0100
Local: Fri, Mar 25 2005 2:15 pm
Subject: compile error
hi ng,
i try to install streamripper (version 1.61.4) on solaris 10(sparc) but
at the make check/make command get the following error.
or what is an equivalent mp3 streamripper for solaris?
i tested the code on a suse 9.0 version and work without any errors.
why do not work it on solaris plattform? they say that the code is
plattform independent. on x86 or solaris 9 the same error message.

configure command:
root@ariel> ./configure --prefix=/usr/local/streamripper/
....

root@ariel> make check
....
In file included from lib/inet.c:25:
lib/socklib.h:32: error: syntax error before "u_int32_t"
*** Error code 1
make: Fatal error: Command failed for target `inet.o'
Current working directory /data/software/streamripper-1.61.4
*** Error code 1
The following command caused the error:
set fnord $MAKEFLAGS; amf=$2; \
dot_seen=no; \
target=`echo check-recursive | sed s/-recursive//`; \
list='libmad-0.15.1b '; for subdir in $list; do \
   echo "Making $target in $subdir"; \
   if test "$subdir" = "."; then \
     dot_seen=yes; \
     local_target="$target-am"; \
   else \
     local_target="$target"; \
   fi; \
   (cd $subdir && make  $local_target) \
    || case "$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
done; \
if test "$dot_seen" = "no"; then \
   make  "$target-am" || exit 1; \
fi; test -z "$fail"
make: Fatal error: Command failed for target `check-recursive'

thanks.


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Marc  
View profile  
 More options Mar 25 2005, 3:37 pm
Newsgroups: comp.unix.solaris
From: Marc <marc.gli...@gmail.com>
Date: Fri, 25 Mar 2005 20:37:44 +0000 (UTC)
Local: Fri, Mar 25 2005 3:37 pm
Subject: Re: compile error

lauedoi  wrote:
> i try to install streamripper (version 1.61.4) on solaris 10(sparc) but
> at the make check/make command get the following error.
> or what is an equivalent mp3 streamripper for solaris?
> i tested the code on a suse 9.0 version and work without any errors.
> why do not work it on solaris plattform? they say that the code is
> plattform independent. on x86 or solaris 9 the same error message.

> lib/socklib.h:32: error: syntax error before "u_int32_t"

In this file, add these 3 lines after the first #include:
#include "net/ppp_defs.h"
#include "sys/sockio.h"
#define INADDR_NONE 0xffffffffU

You will also need to set LDFLAGS='-lsocket -lnsl -lrt' before running
configure.

Notice that this is just what a grep and a RNG say I should do to force
it to compile. It does not mean it is the right thing to do, that would
require thinking.


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
lauedoi  
View profile  
 More options Mar 25 2005, 6:27 pm
Newsgroups: comp.unix.solaris
From: lauedoi <laue...@web.de>
Date: Sat, 26 Mar 2005 00:27:00 +0100
Subject: Re: compile error
the added lines generates the following error:
ld: fatal: Symbol referencing errors. No output written to streamripper
collect2: ld returned 1 exit status
*** Error code 1
make: Fatal error: Command failed for target `streamripper'
Current working directory /data/software/streamripper-1.61.4
*** Error code 1
The following command caused the error:
set fnord $MAKEFLAGS; amf=$2; \
dot_seen=no; \
target=`echo check-recursive | sed s/-recursive//`; \
list='libmad-0.15.1b '; for subdir in $list; do \
   echo "Making $target in $subdir"; \
   if test "$subdir" = "."; then \
     dot_seen=yes; \
     local_target="$target-am"; \
   else \
     local_target="$target"; \
   fi; \
   (cd $subdir && make  $local_target) \
    || case "$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
done; \
if test "$dot_seen" = "no"; then \
   make  "$target-am" || exit 1; \
fi; test -z "$fail"
make: Fatal error: Command failed for target `check-recursive'

Marc schrieb:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Marc  
View profile  
 More options Mar 29 2005, 5:54 am
Newsgroups: comp.unix.solaris
From: Marc <marc.gli...@gmail.com>
Date: Tue, 29 Mar 2005 10:54:54 +0000 (UTC)
Local: Tues, Mar 29 2005 5:54 am
Subject: Re: compile error

lauedoi  wrote:
> ld: fatal: Symbol referencing errors. No output written to streamripper
> collect2: ld returned 1 exit status

Well, you did not show the error message that ld gave (it lists the
symbols, when there is a referencing error). Your problem seems to be
with libmad (I had one already installed when I tested). Maybe you could
try to install it independantly.

(sorry, I won't be able to answer anymore, but someone else might)


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
lauedoi  
View profile  
 More options Apr 2 2005, 5:14 pm
Newsgroups: comp.unix.solaris
From: lauedoi <laue...@web.de>
Date: Sun, 03 Apr 2005 00:14:59 +0200
Local: Sat, Apr 2 2005 5:14 pm
Subject: Re: compile error
hi marc,
thanks for your straight tip.
i did not see the symbol referencing problem.
now it works very well.

Marc schrieb:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »

Create a group - Google Groups - Google Home - Terms of Service - Privacy Policy
©2009 Google