Re: [seq24-users] expected primary expression during make (seq24-0.6.3)
Brought to you by:
rcbuse
|
From: Rob B. <rc...@fi...> - 2005-05-08 21:46:13
|
Well, All I can tell is your pthread.h file isn't looking like most.
/* Mutex initializers. */
#define PTHREAD_MUTEX_INITIALIZER \
{ }
#ifdef __USE_GNU
# define PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP \
{ .__data =3D { .__kind =3D PTHREAD_MUTEX_RECURSIVE_NP } }
# define PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP \
{ .__data =3D { .__kind =3D PTHREAD_MUTEX_ERRORCHECK_NP } }
# define PTHREAD_ADAPTIVE_MUTEX_INITIALIZER_NP \
{ .__data =3D { .__kind =3D PTHREAD_MUTEX_ADAPTIVE_NP } }
#endif
I'm not even sure if that is valid code?
The above code looks like this in my 2.3.4.20040808:
# define PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP \
{ { 0, 0, 0, PTHREAD_MUTEX_RECURSIVE_NP } }
# define PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP \
{ { 0, 0, 0, PTHREAD_MUTEX_ERRORCHECK_NP } }
# define PTHREAD_ADAPTIVE_MUTEX_INITIALIZER_NP \
{ { 0, 0, 0, PTHREAD_MUTEX_ADAPTIVE_NP } }
I've never done a custom glibc, so I don't know what pthread options
there are. I would guess some things were left off at compile/install
time?
Sorry, I really don't have any other advice to offer. I hope that helps.
cheers
rob
On 5/8/2005, "Esben Stien" <b0...@es...> wrote:
>"Rob Buse" <rc...@fi...> writes:
>
>> distro
>
>I have my own distro, using glibc-2.3.4-20040828,
>linux-2.6.12-rc3-RT-V0.7.46-02
>
>> what does your /usr/include/pthread.h file look like?
>
>http://esben-stien.name/goldenarms/pthread.h
>
>--
>Esben Stien is b0ef@e s a
> http://www. s t n m
> irc://irc. b - i . e/%23contact
> [sip|iax]: e e
> jid:b0ef@ n n
>
>
>-------------------------------------------------------
>This SF.Net email is sponsored by: NEC IT Guy Games.
>Get your fingers limbered up and give it your best shot. 4 great events, 4
>opportunities to win big! Highest score wins.NEC IT Guy Games. Play to
>win an NEC 61 plasma display. Visit http://www.necitguy.com/?r=3D20
>_______________________________________________
>seq24-users mailing list
>seq...@li...
>https://lists.sourceforge.net/lists/listinfo/seq24-users
|