So far ./configure --disable-gtk --disable-nls --disable-cli --enable-daemon, works:
Code: Select all
Configuration:
Source code location: .
Compiler: g++
Build libtransmission: yes
* optimized for low-resource systems: no
* µTP enabled: yes
Build Command-Line client: no
Build GTK+ client: no
* libappindicator for an Ubuntu-style tray: no
Build Daemon: yes
Build Mac client: no
Code: Select all
make
Making all in extras
Making all in third-party
Making all in dht
Making all in libnatpmp
Making all in miniupnp
./updateminiupnpcstrings.sh ./miniupnpcstrings.h.in miniupnpcstrings.h
Detected OS [SunOS] version [5.11]
setting OS_STRING macro value to SunOS/5.11 in miniupnpcstrings.h.
make all-am
CC minisoap.o
CC miniwget.o
miniwget.c: In function `getHTTPResponse':
miniwget.c:187: warning: comparison between signed and unsigned
miniwget.c:224: warning: signed and unsigned type in conditional expression
miniwget.c: At top level:
miniwget.c:287: warning: unused parameter 'url'
AR libminiupnp.a
Making all in libutp
Making all in libtransmission
CC announcer.o
announcer.c:19:27: event2/buffer.h: No such file or directory
announcer.c:20:40: event2/event.h: No such file or directory
announcer.c: In function `tr_announcerInit':
announcer.c:170: warning: implicit declaration of function `evtimer_new'
announcer.c:170: warning: nested extern declaration of `evtimer_new'
announcer.c:170: warning: assignment makes pointer from integer without a cast
announcer.c: In function `tr_announcerClose':
announcer.c:187: warning: implicit declaration of function `event_free'
announcer.c:187: warning: nested extern declaration of `event_free'
announcer.c: In function `dbgmsg_tier_announce_queue':
announcer.c:756: warning: implicit declaration of function `evbuffer_new'
announcer.c:756: warning: nested extern declaration of `evbuffer_new'
announcer.c:756: warning: initialization makes pointer from integer without a cast
announcer.c:763: warning: implicit declaration of function `evbuffer_add_printf'
announcer.c:763: warning: nested extern declaration of `evbuffer_add_printf'
announcer.c:766: warning: implicit declaration of function `evbuffer_pullup'
announcer.c:766: warning: nested extern declaration of `evbuffer_pullup'
announcer.c:766: warning: format argument is not a pointer (arg 5)
announcer.c:767: warning: implicit declaration of function `evbuffer_free'
announcer.c:767: warning: nested extern declaration of `evbuffer_free'
*** Error code 1
The following command caused the error:
echo " CC " announcer.o;gcc -DPACKAGE_NAME=\"transmission\" -DPACKAGE_TARNAME=\"transmission\" -DPACKAGE_VERSION=\"2.41\" -DPACKAGE_STRING=\"transmission\ 2.41\" -DPACKAGE_BUGREPORT=\"http://trac.transmissionbt.com/newticket\" -DPACKAGE_URL=\"\" -DPACKAGE=\"transmission\" -DVERSION=\"2.41\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DSTDC_HEADERS=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_STDBOOL_H=1 -DHAVE_ICONV_OPEN=1 -DHAVE_PREAD=1 -DHAVE_PWRITE=1 -DHAVE_STRLCPY=1 -DHAVE_DAEMON=1 -DHAVE_DIRNAME=1 -DHAVE_BASENAME=1 -DHAVE_STRCASECMP=1 -DHAVE_LOCALTIME_R=1 -DHAVE_POSIX_FALLOCATE=1 -DHAVE_MEMMEM=1 -DHAVE_STRSEP=1 -DHAVE_STRTOLD=1 -DHAVE_SYSLOG=1 -DHAVE_VALLOC=1 -DHAVE_GETPAGESIZE=1 -DHAVE_POSIX_MEMALIGN=1 -DHAVE_STATVFS=1 -DHAVE_HTONLL=1 -DHAVE_NTOHLL=1 -DHAVE_PTHREAD=1 -DHAVE__TMP_DUMMY1_ZLIB_H=1 -DHAVE_ZLIB=1 -D_FILE_OFFSET_BITS=64 -DHAVE_LSEEK64=1 -DHAVE_DECL_POSIX_FADVISE=1 -DHAVE_POSIX_FADVISE=1 -DHAVE_SYS_STATVFS_H=1 -DWITH_UTP=1 -I. -I. -I.. -I../third-party/ -D__TRANSMISSION__ -DPACKAGE_DATA_DIR=\""/usr/local/share"\" -DNDEBUG -I../third-party/dht -I../third-party/ -D_REENTRANT -pthreads -g -O2 -std=gnu99 -ggdb3 -Wall -W -Wpointer-arith -Wformat-security -Wcast-align -Wundef -Wcast-align -Wstrict-prototypes -Wmissing-declarations -Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Wunused-parameter -Wwrite-strings -Winline -Wfloat-equal -Wextra -Wdeclaration-after-statement -Winit-self -MT announcer.o -MD -MP -MF .deps/announcer.Tpo -c -o announcer.o announcer.c
make: Fatal error: Command failed for target `announcer.o'
Current working directory /home/nas/Desktop/transmission-2.41/libtransmission
*** Error code 1
The following command caused the error:
fail= failcom='exit 1'; \
for f in x $MAKEFLAGS; do \
case $f in \
*=* | --[!k]*);; \
*k*) failcom='fail=yes';; \
esac; \
done; \
dot_seen=no; \
target=`echo all-recursive | sed s/-recursive//`; \
list='extras third-party libtransmission utils daemon web'; 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; \
(CDPATH="${ZSH_VERSION+.}:" && cd $subdir && make $local_target) \
|| eval $failcom; \
done; \
if test "$dot_seen" = "no"; then \
make "$target-am" || exit 1; \
fi; test -z "$fail"
make: Fatal error: Command failed for target `all-recursive'
Is there something i missed?

Much appreciated !!