mirror of
https://github.com/transmission/transmission
synced 2024-12-23 16:24:02 +00:00
Update 2005-12-26
This commit is contained in:
parent
6c0a54caa5
commit
82c038fabc
3 changed files with 5 additions and 3 deletions
|
@ -51,7 +51,9 @@ ifeq ($(wildcard /boot/develop/headers/be/bone/arpa/inet.h),)
|
|||
else
|
||||
LIBS = be bind socket tracker transmission Prefs
|
||||
endif
|
||||
|
||||
ifneq ($(wildcard /boot/beos/system/lib/libzeta.so),)
|
||||
LIBS += zeta
|
||||
endif
|
||||
# specify additional paths to directories following the standard
|
||||
# libXXX.so or libXXX.a naming scheme. You can specify full paths
|
||||
# or paths relative to the makefile. The paths included may not
|
||||
|
|
2
configure
vendored
2
configure
vendored
|
@ -138,7 +138,7 @@ case $SYSTEM in
|
|||
|
||||
RELEASE=`uname -r`
|
||||
case $RELEASE in
|
||||
6.0|5.0.4) # Zeta or R5 / BONE beta 7
|
||||
6.0*|5.0.4) # Zeta or R5 / BONE beta 7
|
||||
SYSTEM="$SYSTEM / BONE"
|
||||
LINKLIBS="$LINKLIBS -lbind -lsocket"
|
||||
;;
|
||||
|
|
|
@ -91,7 +91,7 @@ char * tr_getPrefsDirectory()
|
|||
void tr_threadCreate( tr_thread_t * t, void (*func)(void *), void * arg )
|
||||
{
|
||||
#ifdef SYS_BEOS
|
||||
*t = spawn_thread( (void *) func, "torrent-tx", arg );
|
||||
*t = spawn_thread( (void *) func, "torrent-tx", B_NORMAL_PRIORITY, arg );
|
||||
resume_thread( *t );
|
||||
#else
|
||||
pthread_create( t, NULL, (void *) func, arg );
|
||||
|
|
Loading…
Reference in a new issue