[Paket] GNUnet

linuxkasten

Aktives Mitglied
Mitglied seit
2 Feb 2009
Beiträge
891
Punkte für Reaktionen
0
Punkte
16
GNUnet ist ein anonymes P2P-Filesharing-Programm von GNU (siehe http://gnunet.org). Dies würde ich gerne eventuell in freetz einbinden, allerdings hab ich einen Fehler beim erstellen von libextractor, wovon GNUnet abhängt. Das configure-Skript läuft erfolgreich durch, allerdings bekomme ich beim make-Prozess folgende Fehlermeldungen:
Code:
ich@debian:~/fritzbox/libextractor-0.5.22$ make
make  all-recursive
make[1]: Entering directory `/home/ich/fritzbox/libextractor-0.5.22'
Making all in m4
make[2]: Entering directory `/home/ich/fritzbox/libextractor-0.5.22/m4'
make[2]: Für das Ziel »all« ist nichts zu tun.
make[2]: Leaving directory `/home/ich/fritzbox/libextractor-0.5.22/m4'
Making all in po
make[2]: Entering directory `/home/ich/fritzbox/libextractor-0.5.22/po'
make[2]: Für das Ziel »all« ist nichts zu tun.
make[2]: Leaving directory `/home/ich/fritzbox/libextractor-0.5.22/po'
Making all in libltdl
make[2]: Entering directory `/home/ich/fritzbox/libextractor-0.5.22/libltdl'
make  all-am
make[3]: Entering directory `/home/ich/fritzbox/libextractor-0.5.22/libltdl'
make[3]: Leaving directory `/home/ich/fritzbox/libextractor-0.5.22/libltdl'
make[2]: Leaving directory `/home/ich/fritzbox/libextractor-0.5.22/libltdl'
Making all in src
make[2]: Entering directory `/home/ich/fritzbox/libextractor-0.5.22/src'
Making all in include
make[3]: Entering directory `/home/ich/fritzbox/libextractor-0.5.22/src/include'
Making all in .
make[4]: Entering directory `/home/ich/fritzbox/libextractor-0.5.22/src/include'
make[4]: Für das Ziel »all-am« ist nichts zu tun.
make[4]: Leaving directory `/home/ich/fritzbox/libextractor-0.5.22/src/include'
make[3]: Leaving directory `/home/ich/fritzbox/libextractor-0.5.22/src/include'
Making all in main
make[3]: Entering directory `/home/ich/fritzbox/libextractor-0.5.22/src/main'
Making all in .
make[4]: Entering directory `/home/ich/fritzbox/libextractor-0.5.22/src/main'
/bin/sh ../../libtool --tag=CC   --mode=link /home/ich/fritzbox/7170/toolchain/target/bin/mipsel-linux-uclibc-gcc  -fno-strict-aliasing -Os -pipe -march=4kc -Wa,--trap  -L/home/ich/fritzbox/7170/toolchain/target/lib -L/home/ich/fritzbox/7170/toolchain/target/lib -L/home/ich/fritzbox/7170/toolchain/target/lib -o extract extract.o getopt.o getopt1.o ../../src/main/libextractor.la  -ldl /home/ich/fritzbox/libiconv-1.9.2/root/lib/libcharset.a
libtool: link: /home/ich/fritzbox/7170/toolchain/target/bin/mipsel-linux-uclibc-gcc -fno-strict-aliasing -Os -pipe -march=4kc -Wa,--trap -o .libs/extract extract.o getopt.o getopt1.o  -L/home/ich/fritzbox/7170/toolchain/target/lib ../../src/main/.libs/libextractor.so -lz -lpthread -ldl /home/ich/fritzbox/libiconv-1.9.2/root/lib/libcharset.a -Wl,-rpath -Wl,/home/ich/fritzbox/libextractor-0.5.22/root/lib
extract.o: In function `iconvHelper':
extract.c:(.text+0x28): undefined reference to `iconv'
extract.c:(.text+0xb8): undefined reference to `iconv'
extract.o: In function `main':
extract.c:(.text+0x3b8): undefined reference to `__ctype_b_loc'
extract.c:(.text+0xb18): undefined reference to `iconv_open'
extract.c:(.text+0xb24): undefined reference to `__ctype_b_loc'
extract.c:(.text+0xfa8): undefined reference to `__ctype_tolower_loc'
extract.c:(.text+0x1448): undefined reference to `iconv_close'
extract.c:(.text+0x15c0): undefined reference to `iconv_close'
collect2: ld returned 1 exit status
make[4]: *** [extract] Fehler 1
make[4]: Leaving directory `/home/ich/fritzbox/libextractor-0.5.22/src/main'
make[3]: *** [all-recursive] Fehler 1
make[3]: Leaving directory `/home/ich/fritzbox/libextractor-0.5.22/src/main'
make[2]: *** [all-recursive] Fehler 1
make[2]: Leaving directory `/home/ich/fritzbox/libextractor-0.5.22/src'
make[1]: *** [all-recursive] Fehler 1
make[1]: Leaving directory `/home/ich/fritzbox/libextractor-0.5.22'
make: *** [all] Fehler 2
ich@debian:~/fritzbox/libextractor-0.5.22$
Ich denke, die Symbole beziehen sich alle auf libiconv. Habe allerdings libiconv-1.9.2 bereits kompiliert und in die Toolchain miteingebunden.
Weiß jemand, warum er die Symbole nicht findet? Muss ich dem Linker die libiconv explizit übergeben, wenn ja, wie?
 
Poste doch mal dein Makefile für libextractor, dann schaut sich das jemand von den Devs an.

MfG Oliver
 
Dumme Frage: Hier oder bei gnunet?

Aber ich glaube, ich muss dem Linker die library explizit übergeben, blos wie?
Mit den Variablen LDFLAGS bzw. LIBS ?
 
Hier. ;-)

MfG Oliver
 
Cool, war blos irritiert, weil hier bist doch Du einer von den Devs oder?

Naja egal, also hier ist die Ausgabe vom configure-Skript:
Code:
export PATH=/home/ich/fritzbox/7170/toolchain/target/bin:${PATH}
./configure --build=i386-linux-gnu --target=mipsel-linux --host=mipsel-linux --prefix=`pwd`/root CC=/home/ich/fritzbox/7170/toolchain/target/bin/mipsel-linux-uclibc-gcc LDFLAGS=-L/home/ich/fritzbox/7170/toolchain/target/lib CPPFLAGS=-I/home/ich/fritzbox/7170/toolchain/target/include CPP=/home/ich/fritzbox/7170/toolchain/target/bin/mipsel-linux-uclibc-cpp CROSS_COMPILE=mipsel-linux-uclibc- ARCH=mipsel-linux CFLAGS="-Os -pipe -march=4kc -Wa,--trap"
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking for mipsel-linux-strip... mipsel-linux-strip
checking build system type... i386-pc-linux-gnu
checking host system type... mipsel-unknown-linux-gnu
checking for style of include used by make... GNU
checking for mipsel-linux-gcc... /home/ich/fritzbox/7170/toolchain/target/bin/mipsel-linux-uclibc-gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... yes
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether /home/ich/fritzbox/7170/toolchain/target/bin/mipsel-linux-uclibc-gcc accepts -g... yes
checking for /home/ich/fritzbox/7170/toolchain/target/bin/mipsel-linux-uclibc-gcc option to accept ISO C89... none needed
checking dependency style of /home/ich/fritzbox/7170/toolchain/target/bin/mipsel-linux-uclibc-gcc... gcc3
checking how to run the C preprocessor... /home/ich/fritzbox/7170/toolchain/target/bin/mipsel-linux-uclibc-cpp
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for AIX... no
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking minix/config.h usability... no
checking minix/config.h presence... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... yes
checking for gawk... (cached) gawk
checking for mipsel-linux-gcc... (cached) /home/ich/fritzbox/7170/toolchain/target/bin/mipsel-linux-uclibc-gcc
checking whether we are using the GNU C compiler... (cached) yes
checking whether /home/ich/fritzbox/7170/toolchain/target/bin/mipsel-linux-uclibc-gcc accepts -g... (cached) yes
checking for /home/ich/fritzbox/7170/toolchain/target/bin/mipsel-linux-uclibc-gcc option to accept ISO C89... (cached) none needed
checking dependency style of /home/ich/fritzbox/7170/toolchain/target/bin/mipsel-linux-uclibc-gcc... (cached) gcc3
checking how to run the C preprocessor... /home/ich/fritzbox/7170/toolchain/target/bin/mipsel-linux-uclibc-cpp
checking for mipsel-linux-g++... mipsel-linux-g++
checking whether we are using the GNU C++ compiler... yes
checking whether mipsel-linux-g++ accepts -g... yes
checking dependency style of mipsel-linux-g++... gcc3
checking for mipsel-linux-g++... yes
checking for a BSD-compatible install... /usr/bin/install -c
checking whether ln -s works... yes
checking whether make sets $(MAKE)... (cached) yes
checking host system type... (cached) mipsel-unknown-linux-gnu
checking for a sed that does not truncate output... /bin/sed
checking for fgrep... /bin/grep -F
checking for ld used by /home/ich/fritzbox/7170/toolchain/target/bin/mipsel-linux-uclibc-gcc... /home/ich/fritzbox/7170/toolchain/build/gcc-4.2.1-uClibc-0.9.29/mipsel-linux-uclibc/mipsel-linux-uclibc/bin/ld
checking if the linker (/home/ich/fritzbox/7170/toolchain/build/gcc-4.2.1-uClibc-0.9.29/mipsel-linux-uclibc/mipsel-linux-uclibc/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /home/ich/fritzbox/7170/toolchain/target/bin/mipsel-linux-nm -B
checking the name lister (/home/ich/fritzbox/7170/toolchain/target/bin/mipsel-linux-nm -B) interface... BSD nm
checking the maximum length of command line arguments... 1572864
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking for /home/ich/fritzbox/7170/toolchain/build/gcc-4.2.1-uClibc-0.9.29/mipsel-linux-uclibc/mipsel-linux-uclibc/bin/ld option to reload object files... -r
checking how to recognize dependent libraries... pass_all
checking for mipsel-linux-ar... mipsel-linux-ar
checking for mipsel-linux-strip... (cached) mipsel-linux-strip
checking for mipsel-linux-ranlib... mipsel-linux-ranlib
checking command to parse /home/ich/fritzbox/7170/toolchain/target/bin/mipsel-linux-nm -B output from /home/ich/fritzbox/7170/toolchain/target/bin/mipsel-linux-uclibc-gcc object... ok
checking for dlfcn.h... yes
checking whether we are using the GNU C++ compiler... (cached) yes
checking whether mipsel-linux-g++ accepts -g... (cached) yes
checking dependency style of mipsel-linux-g++... (cached) gcc3
checking how to run the C++ preprocessor... mipsel-linux-g++ -E
checking for objdir... .libs
checking if /home/ich/fritzbox/7170/toolchain/target/bin/mipsel-linux-uclibc-gcc supports -fno-rtti -fno-exceptions... no
checking for /home/ich/fritzbox/7170/toolchain/target/bin/mipsel-linux-uclibc-gcc option to produce PIC... -fPIC -DPIC
checking if /home/ich/fritzbox/7170/toolchain/target/bin/mipsel-linux-uclibc-gcc PIC flag -fPIC -DPIC works... yes
checking if /home/ich/fritzbox/7170/toolchain/target/bin/mipsel-linux-uclibc-gcc static flag -static works... yes
checking if /home/ich/fritzbox/7170/toolchain/target/bin/mipsel-linux-uclibc-gcc supports -c -o file.o... yes
checking if /home/ich/fritzbox/7170/toolchain/target/bin/mipsel-linux-uclibc-gcc supports -c -o file.o... (cached) yes
checking whether the /home/ich/fritzbox/7170/toolchain/target/bin/mipsel-linux-uclibc-gcc linker (/home/ich/fritzbox/7170/toolchain/build/gcc-4.2.1-uClibc-0.9.29/mipsel-linux-uclibc/mipsel-linux-uclibc/bin/ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking for shl_load... no
checking for shl_load in -ldld... no
checking for dlopen... no
checking for dlopen in -ldl... yes
checking whether a program can dlopen itself... cross
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no
checking for ld used by mipsel-linux-g++... /home/ich/fritzbox/7170/toolchain/build/gcc-4.2.1-uClibc-0.9.29/mipsel-linux-uclibc/mipsel-linux-uclibc/bin/ld
checking if the linker (/home/ich/fritzbox/7170/toolchain/build/gcc-4.2.1-uClibc-0.9.29/mipsel-linux-uclibc/mipsel-linux-uclibc/bin/ld) is GNU ld... yes
checking whether the mipsel-linux-g++ linker (/home/ich/fritzbox/7170/toolchain/build/gcc-4.2.1-uClibc-0.9.29/mipsel-linux-uclibc/mipsel-linux-uclibc/bin/ld) supports shared libraries... yes
checking for mipsel-linux-g++ option to produce PIC... -fPIC -DPIC
checking if mipsel-linux-g++ PIC flag -fPIC -DPIC works... yes
checking if mipsel-linux-g++ static flag -static works... yes
checking if mipsel-linux-g++ supports -c -o file.o... yes
checking if mipsel-linux-g++ supports -c -o file.o... (cached) yes
checking whether the mipsel-linux-g++ linker (/home/ich/fritzbox/7170/toolchain/build/gcc-4.2.1-uClibc-0.9.29/mipsel-linux-uclibc/mipsel-linux-uclibc/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking which extension is used for runtime loadable modules... .so
checking which variable specifies run-time module search path... LD_LIBRARY_PATH
checking for the default library search path... /lib /usr/lib /lib/i486-linux-gnu /usr/lib/i486-linux-gnu /usr/local/lib 
checking for library containing dlopen... -ldl
checking for dlerror... yes
checking for shl_load... (cached) no
checking for shl_load in -ldld... (cached) no
checking for dld_link in -ldld... no
checking for _ prefix in compiled symbols... no
checking whether deplibs are loaded by dlopen... yes
checking for argz.h... no
checking for error_t... no
checking for argz_add... no
checking for argz_append... no
checking for argz_count... no
checking for argz_create_sep... no
checking for argz_insert... no
checking for argz_next... no
checking for argz_stringify... no
checking whether libtool supports -dlopen/-dlpreopen... yes
checking for ltdl.h... no
checking where to find libltdl headers... -I${top_srcdir}/libltdl
checking where to find libltdl library... ${top_builddir}/libltdl/libltdlc.la
checking for unistd.h... (cached) yes
checking for dl.h... no
checking for sys/dl.h... no
checking for dld.h... no
checking for mach-o/dyld.h... no
checking for dirent.h... yes
checking for closedir... yes
checking for opendir... yes
checking for readdir... yes
checking for strlcat... yes
checking for strlcpy... yes
checking for ld used by GCC... /home/ich/fritzbox/7170/toolchain/build/gcc-4.2.1-uClibc-0.9.29/mipsel-linux-uclibc/mipsel-linux-uclibc/bin/ld
checking if the linker (/home/ich/fritzbox/7170/toolchain/build/gcc-4.2.1-uClibc-0.9.29/mipsel-linux-uclibc/mipsel-linux-uclibc/bin/ld) is GNU ld... yes
checking for shared library run path origin... done
checking for iconv... yes
checking how to link with libiconv... /home/ich/fritzbox/7170/toolchain/target/lib/libiconv.so -Wl,-rpath -Wl,/home/ich/fritzbox/7170/toolchain/target/lib
checking for iconv declaration... 
         extern size_t iconv (iconv_t cd, const char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);
/usr
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... 64
checking for _LARGEFILE_SOURCE value needed for large files... no
checking for fclose in -lstdc++... yes
checking langinfo.h usability... yes
checking langinfo.h presence... yes
checking for langinfo.h... yes
checking for dlopen in -ldl... (cached) yes
checking for ov_open_callbacks in -lvorbisfile... no
checking for FLAC__stream_decoder_init_stream in -lFLAC... no
checking for FLAC__stream_decoder_init_ogg_stream in -lFLAC... no
checking for vorbis_comment_query in -lvorbisfile... no
checking for inflate in -lz... yes
checking zlib.h usability... yes
checking zlib.h presence... yes
checking for zlib.h... yes
checking for BZ2_decompress in -lbz2... no
checking for rpmReadPackageFile in -lrpm... no
checking for mpeg2_init in -lmpeg2... no
checking whether /home/ich/fritzbox/7170/toolchain/target/bin/mipsel-linux-uclibc-gcc accepts -no-cpp-precomp... no
checking for ANSI C header files... (cached) yes
checking for dirent.h that defines DIR... yes
checking for library containing opendir... none required
checking for stdbool.h that conforms to C99... yes
checking for _Bool... yes
checking for ltdl.h... (cached) no
checking iconv.h usability... yes
checking iconv.h presence... yes
checking for iconv.h... yes
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking netinet/in.h usability... yes
checking netinet/in.h presence... yes
checking for netinet/in.h... yes
checking for stdlib.h... (cached) yes
checking for string.h... (cached) yes
checking for unistd.h... (cached) yes
checking libintl.h usability... no
checking libintl.h presence... no
checking for libintl.h... no
checking limits.h usability... yes
checking limits.h presence... yes
checking for limits.h... yes
checking stddef.h usability... yes
checking stddef.h presence... yes
checking for stddef.h... yes
checking for zlib.h... (cached) yes
checking for an ANSI C-conforming const... yes
checking for inline... inline
checking for size_t... yes
checking for pid_t... yes
checking endianess... little
checking for working memcmp... no
checking for vprintf... yes
checking for _doprnt... no
checking for stdlib.h... (cached) yes
checking for unistd.h... (cached) yes
checking for getpagesize... yes
checking for working mmap... no
checking whether lstat dereferences a symlink specified with a trailing slash... no
checking whether stat accepts an empty string... yes
checking for error_at_line... yes
checking for mkstemp... yes
checking for strndup... yes
checking for munmap... yes
checking for strcasecmp... yes
checking for strdup... yes
checking for strncasecmp... yes
checking for memmove... yes
checking for memset... yes
checking for strtoul... yes
checking for floor... no
checking for getcwd... yes
checking for pow... no
checking for setenv... yes
checking for sqrt... no
checking for strchr... yes
checking for strcspn... yes
checking for strrchr... yes
checking for strnlen... yes
checking for strndup... (cached) yes
checking for ftruncate... yes
checking whether NLS is requested... yes
checking for msgfmt... /usr/bin/msgfmt
checking for gmsgfmt... /usr/bin/msgfmt
checking for xgettext... /usr/bin/xgettext
checking for msgmerge... /usr/bin/msgmerge
checking for CFPreferencesCopyAppValue... no
checking for CFLocaleCopyCurrent... no
checking for GNU gettext in libc... no
checking for iconv... (cached) yes
checking how to link with libiconv... /home/ich/fritzbox/7170/toolchain/target/lib/libiconv.so -Wl,-rpath -Wl,/home/ich/fritzbox/7170/toolchain/target/lib
checking for GNU gettext in libintl... no
checking whether to use NLS... no
checking if the linker (/home/ich/fritzbox/7170/toolchain/build/gcc-4.2.1-uClibc-0.9.29/mipsel-linux-uclibc/mipsel-linux-uclibc/bin/ld) is GNU ld... (cached) yes
checking for glib... checking for pkg-config... /usr/bin/pkg-config
checking for GLIB - version >= 2.0.0... no
*** Could not run GLIB test program, checking why...
*** The test program failed to compile or link. See the file config.log for the
*** exact error that occured. This usually means GLIB is incorrectly installed.
checking whether glib is disabled... checking for gtk... checking for pkg-config... (cached) /usr/bin/pkg-config
checking for GTK+ - version >= 2.6.0... no
*** Could not run GTK+ test program, checking why...
*** The test program failed to compile or link. See the file config.log for the
*** exact error that occured. This usually means GTK+ is incorrectly installed.
checking for Qt... --with-qt not specified
checking Qt/qpixmap.h usability... no
checking Qt/qpixmap.h presence... no
checking for Qt/qpixmap.h... no
checking for Qt SVG... --with-qt not specified
checking Qt/qsvgrenderer.h usability... no
checking Qt/qsvgrenderer.h presence... no
checking for Qt/qsvgrenderer.h... no
checking whether to enable xpdf-based extractor... no
checking whether to enable exiv2 extractor... yes
checking for mipsel-linux-pkg-config... (cached) /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for GSF... 
checking for gsf_init in -lgsf-1... no
checking for zzuf... 0
checking whether to enable printable extractors... yes
checking whether to enable the FFmpeg thumbnail extractor... no
checking whether -export-symbols-regex works... yes
checking our pkgconfig libname... libextractor
checking our pkgconfig version... 0.5.22
checking our pkgconfig_libdir... ${libdir}/pkgconfig
expanded our pkgconfig_libdir... /home/ich/fritzbox/libextractor-0.5.22/root/lib/pkgconfig
checking our pkgconfig_libfile... libextractor.pc
checking our package / suffix... libextractor / 
checking our pkgconfig description... Metadata extraction library
checking our pkgconfig requires... 
checking our pkgconfig ext libs... -lextractor
checking our pkgconfig cppflags... -I/usr/include -I/usr/include/qt4 -I/usr/include -I/usr/include/qt4 -I/home/ich/fritzbox/7170/toolchain/target/include
checking our pkgconfig ldflags... -L/home/ich/fritzbox/7170/toolchain/target/lib -L/home/ich/fritzbox/7170/toolchain/target/lib -L/home/ich/fritzbox/7170/toolchain/target/lib
noninstalled pkgconfig -L /home/ich/fritzbox/libextractor-0.5.22/src/.libs
noninstalled pkgconfig -I /home/ich/fritzbox/libextractor-0.5.22/.
configure: creating ./config.status
config.status: creating Makefile
config.status: creating po/Makefile.in
config.status: creating m4/Makefile
config.status: creating contrib/macosx/Info.plist
config.status: creating doc/Makefile
config.status: creating src/Makefile
config.status: creating src/include/Makefile
config.status: creating src/intlemu/Makefile
config.status: creating src/common/Makefile
config.status: creating src/main/Makefile
config.status: creating src/plugins/Makefile
config.status: creating src/plugins/ole2/Makefile
config.status: creating src/plugins/oo/Makefile
config.status: creating src/plugins/pdf/Makefile
config.status: creating src/plugins/rpm/Makefile
config.status: creating src/plugins/printable/Makefile
config.status: creating src/plugins/hash/Makefile
config.status: creating src/plugins/thumbnail/Makefile
config.status: creating src/plugins/thumbnailffmpeg/Makefile
config.status: creating src/plugins/exiv2/Makefile
config.status: creating src/test/Makefile
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing libtool commands
config.status: executing po-directories commands
config.status: creating po/POTFILES
config.status: creating po/Makefile
config.status: executing libextractor.pc commands
config.status: creating libextractor.pc.in
config.status: creating libextractor.pc
config.status: creating libextractor-uninstalled.pc
config.status: creating libextractor-uninstalled.sh
=== configuring in libltdl (/home/ich/fritzbox/libextractor-0.5.22/libltdl)
configure: running /bin/sh ./configure '--prefix=/home/ich/fritzbox/libextractor-0.5.22/root'  '--build=i386-linux-gnu' '--target=mipsel-linux' '--host=mipsel-linux' 'CC=/home/ich/fritzbox/7170/toolchain/target/bin/mipsel-linux-uclibc-gcc' 'LDFLAGS=-L/home/ich/fritzbox/7170/toolchain/target/lib' 'CPPFLAGS=-I/home/ich/fritzbox/7170/toolchain/target/include' 'CPP=/home/ich/fritzbox/7170/toolchain/target/bin/mipsel-linux-uclibc-cpp' 'CROSS_COMPILE=mipsel-linux-uclibc-' 'ARCH=mipsel-linux' 'CFLAGS=-Os -pipe -march=4kc -Wa,--trap' 'build_alias=i386-linux-gnu' 'host_alias=mipsel-linux' 'target_alias=mipsel-linux' '--enable-ltdl-convenience' --cache-file=/dev/null --srcdir=.
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking for mipsel-linux-strip... mipsel-linux-strip
checking build system type... i386-pc-linux-gnu
checking host system type... mipsel-unknown-linux-gnu
checking for style of include used by make... GNU
checking for mipsel-linux-gcc... /home/ich/fritzbox/7170/toolchain/target/bin/mipsel-linux-uclibc-gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... yes
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether /home/ich/fritzbox/7170/toolchain/target/bin/mipsel-linux-uclibc-gcc accepts -g... yes
checking for /home/ich/fritzbox/7170/toolchain/target/bin/mipsel-linux-uclibc-gcc option to accept ISO C89... none needed
checking dependency style of /home/ich/fritzbox/7170/toolchain/target/bin/mipsel-linux-uclibc-gcc... gcc3
checking for a sed that does not truncate output... /bin/sed
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for fgrep... /bin/grep -F
checking for ld used by /home/ich/fritzbox/7170/toolchain/target/bin/mipsel-linux-uclibc-gcc... /home/ich/fritzbox/7170/toolchain/build/gcc-4.2.1-uClibc-0.9.29/mipsel-linux-uclibc/mipsel-linux-uclibc/bin/ld
checking if the linker (/home/ich/fritzbox/7170/toolchain/build/gcc-4.2.1-uClibc-0.9.29/mipsel-linux-uclibc/mipsel-linux-uclibc/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /home/ich/fritzbox/7170/toolchain/target/bin/mipsel-linux-nm -B
checking the name lister (/home/ich/fritzbox/7170/toolchain/target/bin/mipsel-linux-nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1572864
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking for /home/ich/fritzbox/7170/toolchain/build/gcc-4.2.1-uClibc-0.9.29/mipsel-linux-uclibc/mipsel-linux-uclibc/bin/ld option to reload object files... -r
checking how to recognize dependent libraries... pass_all
checking for mipsel-linux-ar... mipsel-linux-ar
checking for mipsel-linux-strip... (cached) mipsel-linux-strip
checking for mipsel-linux-ranlib... mipsel-linux-ranlib
checking command to parse /home/ich/fritzbox/7170/toolchain/target/bin/mipsel-linux-nm -B output from /home/ich/fritzbox/7170/toolchain/target/bin/mipsel-linux-uclibc-gcc object... ok
checking how to run the C preprocessor... /home/ich/fritzbox/7170/toolchain/target/bin/mipsel-linux-uclibc-cpp
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for dlfcn.h... yes
checking for objdir... .libs
checking if /home/ich/fritzbox/7170/toolchain/target/bin/mipsel-linux-uclibc-gcc supports -fno-rtti -fno-exceptions... no
checking for /home/ich/fritzbox/7170/toolchain/target/bin/mipsel-linux-uclibc-gcc option to produce PIC... -fPIC -DPIC
checking if /home/ich/fritzbox/7170/toolchain/target/bin/mipsel-linux-uclibc-gcc PIC flag -fPIC -DPIC works... yes
checking if /home/ich/fritzbox/7170/toolchain/target/bin/mipsel-linux-uclibc-gcc static flag -static works... yes
checking if /home/ich/fritzbox/7170/toolchain/target/bin/mipsel-linux-uclibc-gcc supports -c -o file.o... yes
checking if /home/ich/fritzbox/7170/toolchain/target/bin/mipsel-linux-uclibc-gcc supports -c -o file.o... (cached) yes
checking whether the /home/ich/fritzbox/7170/toolchain/target/bin/mipsel-linux-uclibc-gcc linker (/home/ich/fritzbox/7170/toolchain/build/gcc-4.2.1-uClibc-0.9.29/mipsel-linux-uclibc/mipsel-linux-uclibc/bin/ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking for shl_load... no
checking for shl_load in -ldld... no
checking for dlopen... no
checking for dlopen in -ldl... yes
checking whether a program can dlopen itself... cross
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking which extension is used for runtime loadable modules... .so
checking which variable specifies run-time module search path... LD_LIBRARY_PATH
checking for the default library search path... /lib /usr/lib /lib/i486-linux-gnu /usr/lib/i486-linux-gnu /usr/local/lib 
checking for library containing dlopen... -ldl
checking for dlerror... yes
checking for shl_load... (cached) no
checking for shl_load in -ldld... (cached) no
checking for dld_link in -ldld... no
checking for _ prefix in compiled symbols... no
checking whether deplibs are loaded by dlopen... yes
checking for argz.h... no
checking for error_t... no
checking for argz_add... no
checking for argz_append... no
checking for argz_count... no
checking for argz_create_sep... no
checking for argz_insert... no
checking for argz_next... no
checking for argz_stringify... no
checking whether libtool supports -dlopen/-dlpreopen... yes
checking for unistd.h... (cached) yes
checking for dl.h... no
checking for sys/dl.h... no
checking for dld.h... no
checking for mach-o/dyld.h... no
checking for dirent.h... yes
checking for closedir... yes
checking for opendir... yes
checking for readdir... yes
checking for strlcat... yes
checking for strlcpy... yes
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing libtool commands
configure: NOTICE: xpdf disabled (result: limited PDF support)
configure: NOTICE: printable plugins enabled
configure: NOTICE: libgsf not found, no OLE2 (MS Office) support
configure: NOTICE: FFmpeg thumbnailer plugin disabled
configure: NOTICE: neither gtk nor Qt not found, no thumbnail support
configure: NOTICE: vorbis support disabled
configure: NOTICE: libmpeg2 not found (will not compile mpeg2 plugin)

Ein "make" liefert mir die Ausgabe im ersten Post.
Hier der Inhalt des Makefile von libextractor:
Code:
# Makefile.in generated by automake 1.10.1 from Makefile.am.
# Makefile.  Generated from Makefile.in by configure.

# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
# 2003, 2004, 2005, 2006, 2007, 2008  Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.

# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
# PARTICULAR PURPOSE.




pkgdatadir = $(datadir)/libextractor
pkglibdir = $(libdir)/libextractor
pkgincludedir = $(includedir)/libextractor
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
install_sh_DATA = $(install_sh) -c -m 644
install_sh_PROGRAM = $(install_sh) -c
install_sh_SCRIPT = $(install_sh) -c
INSTALL_HEADER = $(INSTALL_DATA)
transform = $(program_transform_name)
NORMAL_INSTALL = :
PRE_INSTALL = :
POST_INSTALL = :
NORMAL_UNINSTALL = :
PRE_UNINSTALL = :
POST_UNINSTALL = :
build_triplet = i386-pc-linux-gnu
host_triplet = mipsel-unknown-linux-gnu
subdir = .
DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \
	$(srcdir)/Makefile.in $(srcdir)/config.h.in \
	$(top_srcdir)/configure \
	$(top_srcdir)/contrib/macosx/Info.plist.in ABOUT-NLS AUTHORS \
	COPYING ChangeLog INSTALL NEWS TODO compile config.guess \
	config.rpath config.sub depcomp install-sh \
	libltdl/config/compile libltdl/config/config.guess \
	libltdl/config/config.rpath libltdl/config/config.sub \
	libltdl/config/depcomp libltdl/config/install-sh \
	libltdl/config/ltmain.sh libltdl/config/mdate-sh \
	libltdl/config/missing libltdl/config/texinfo.tex ltmain.sh \
	missing mkinstalldirs
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/m4/abi-gsf.m4 \
	$(top_srcdir)/m4/ac_define_dir.m4 $(top_srcdir)/m4/argz.m4 \
	$(top_srcdir)/m4/ax_create_pkgconfig_info.m4 \
	$(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/glib-2.0.m4 \
	$(top_srcdir)/m4/gtk-2.0.m4 $(top_srcdir)/m4/iconv.m4 \
	$(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \
	$(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libtool.m4 \
	$(top_srcdir)/m4/ltdl.m4 $(top_srcdir)/m4/ltoptions.m4 \
	$(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
	$(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \
	$(top_srcdir)/m4/pkg.m4 $(top_srcdir)/m4/po.m4 \
	$(top_srcdir)/m4/progtest.m4 $(top_srcdir)/acinclude.m4 \
	$(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
	$(ACLOCAL_M4)
am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
 configure.lineno config.status.lineno
mkinstalldirs = $(install_sh) -d
CONFIG_HEADER = config.h
CONFIG_CLEAN_FILES = contrib/macosx/Info.plist
SOURCES =
DIST_SOURCES =
RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
	html-recursive info-recursive install-data-recursive \
	install-dvi-recursive install-exec-recursive \
	install-html-recursive install-info-recursive \
	install-pdf-recursive install-ps-recursive install-recursive \
	installcheck-recursive installdirs-recursive pdf-recursive \
	ps-recursive uninstall-recursive
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
am__vpath_adj = case $$p in \
    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
    *) f=$$p;; \
  esac;
am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
am__installdirs = "$(DESTDIR)$(pkgconfigdatadir)"
pkgconfigdataDATA_INSTALL = $(INSTALL_DATA)
DATA = $(pkgconfigdata_DATA)
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive	\
  distclean-recursive maintainer-clean-recursive
ETAGS = etags
CTAGS = ctags
DIST_SUBDIRS = $(SUBDIRS)
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
distdir = $(PACKAGE)-$(VERSION)
top_distdir = $(distdir)
am__remove_distdir = \
  { test ! -d $(distdir) \
    || { find $(distdir) -type d ! -perm -200 -exec chmod u+w {} ';' \
         && rm -fr $(distdir); }; }
DIST_ARCHIVES = $(distdir).tar.gz
GZIP_ENV = --best
distuninstallcheck_listfiles = find . -type f -print
distcleancheck_listfiles = find . -type f -print
ACLOCAL = ${SHELL} /home/ich/fritzbox/libextractor-0.5.22/libltdl/config/missing --run aclocal-1.10
AMTAR = ${SHELL} /home/ich/fritzbox/libextractor-0.5.22/libltdl/config/missing --run tar
AR = mipsel-linux-ar
ARGZ_H = argz.h
AS = as
AUTOCONF = ${SHELL} /home/ich/fritzbox/libextractor-0.5.22/libltdl/config/missing --run autoconf
AUTOHEADER = ${SHELL} /home/ich/fritzbox/libextractor-0.5.22/libltdl/config/missing --run autoheader
AUTOMAKE = ${SHELL} /home/ich/fritzbox/libextractor-0.5.22/libltdl/config/missing --run automake-1.10
AWK = gawk
CC = /home/ich/fritzbox/7170/toolchain/target/bin/mipsel-linux-uclibc-gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -fno-strict-aliasing -Os -pipe -march=4kc -Wa,--trap
CPP = /home/ich/fritzbox/7170/toolchain/target/bin/mipsel-linux-uclibc-cpp
CPPFLAGS = -I/usr/include -I/usr/include/qt4 -I/usr/include -I/usr/include/qt4 -I/home/ich/fritzbox/7170/toolchain/target/include
CXX = mipsel-linux-g++
CXXCPP = mipsel-linux-g++ -E
CXXDEPMODE = depmode=gcc3
CXXFLAGS = -g -O2
CYGPATH_W = echo
DEFS = -DHAVE_CONFIG_H
DEPDIR = .deps
DLLTOOL = dlltool
DSYMUTIL = 
DUMPBIN = 
ECHO_C = 
ECHO_N = -n
ECHO_T = 
EGREP = /bin/grep -E
EXEEXT = 
FGREP = /bin/grep -F
GLIB_CFLAGS = 
GLIB_GENMARSHAL = 
GLIB_LIBS = 
GLIB_MKENUMS = 
GMSGFMT = /usr/bin/msgfmt
GMSGFMT_015 = /usr/bin/msgfmt
GOBJECT_QUERY = 
GREP = /bin/grep
GSF_CFLAGS = 
GSF_GNOME_CFLAGS = 
GSF_GNOME_LIBS = 
GSF_LIBS = 
GTK_CFLAGS = 
GTK_LIBS = 
HAVE_CXX = yes
HAVE_ZZUF = 0
INCLTDL = -I${top_srcdir}/libltdl
INSTALL = /usr/bin/install -c
INSTALL_DATA = ${INSTALL} -m 644
INSTALL_PROGRAM = ${INSTALL}
INSTALL_SCRIPT = ${INSTALL}
INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
INTLLIBS = 
INTL_MACOSX_LIBS = 
ISOLOCALEDIR = /usr/share/locale
LD = /home/ich/fritzbox/7170/toolchain/build/gcc-4.2.1-uClibc-0.9.29/mipsel-linux-uclibc/mipsel-linux-uclibc/bin/ld
LDFLAGS = -L/home/ich/fritzbox/7170/toolchain/target/lib -L/home/ich/fritzbox/7170/toolchain/target/lib -L/home/ich/fritzbox/7170/toolchain/target/lib
LE_INTLINCL = 
LE_LIBINTL = 
LE_LIB_LDFLAGS = -export-dynamic -no-undefined -export-symbols-regex "EXTRACTOR_[a-zA-Z0-9_]*"
LE_PLUGIN_LDFLAGS = -export-dynamic -avoid-version -module -no-undefined -export-symbols-regex "libextractor_[a-zA-Z0-9_]*_extract"
LIBADD_DL = -ldl 
LIBADD_DLD_LINK = 
LIBADD_DLOPEN = -ldl
LIBADD_SHL_LOAD = 
LIBEXT = .so
LIBICONV = /home/ich/fritzbox/7170/toolchain/target/lib/libiconv.so -Wl,-rpath -Wl,/home/ich/fritzbox/7170/toolchain/target/lib
LIBINTL = 
LIBLTDL = ${top_builddir}/libltdl/libltdlc.la
LIBOBJS =  ${LIBOBJDIR}memcmp$U.o ${LIBOBJDIR}lstat$U.o ${LIBOBJDIR}stat$U.o
LIBS = -ldl 
LIBTOOL = $(SHELL) $(top_builddir)/libtool
LIB_VERSION_AGE = 1
LIB_VERSION_CURRENT = 2
LIB_VERSION_REVISION = 1
LIPO = 
LN_S = ln -s
LOCALEDIR = /home/ich/fritzbox/libextractor-0.5.22/root/share/locale
LTDLDEPS = ${top_builddir}/libltdl/libltdlc.la
LTDLINCL = -I${top_srcdir}/libltdl
LTDLOPEN = libltdl
LTLIBICONV = -L/home/ich/fritzbox/7170/toolchain/target/lib -liconv -R/home/ich/fritzbox/7170/toolchain/target/lib
LTLIBINTL = 
LTLIBOBJS =  ${LIBOBJDIR}memcmp$U.lo ${LIBOBJDIR}lstat$U.lo ${LIBOBJDIR}stat$U.lo
LT_CONFIG_H = config.h
LT_DLLOADERS =  libltdl/dlopen.la
LT_DLPREOPEN = -dlpreopen libltdl/dlopen.la 
MAKEINFO = ${SHELL} /home/ich/fritzbox/libextractor-0.5.22/libltdl/config/missing --run makeinfo
MKDIR_P = /bin/mkdir -p
MSGFMT = /usr/bin/msgfmt
MSGFMT_015 = /usr/bin/msgfmt
MSGMERGE = /usr/bin/msgmerge
NM = /home/ich/fritzbox/7170/toolchain/target/bin/mipsel-linux-nm -B
NMEDIT = 
OBJDUMP = objdump
OBJEXT = o
OTOOL = 
OTOOL64 = 
PACKAGE = libextractor
PACKAGE_BUGREPORT = [email protected]
PACKAGE_NAME = libextractor
PACKAGE_STRING = libextractor 0.5.22
PACKAGE_TARNAME = libextractor
PACKAGE_VERSION = 0.5.22
PATH_SEPARATOR = :
PKG_CONFIG = /usr/bin/pkg-config
POSUB = 
RANLIB = mipsel-linux-ranlib
RPLUGINDIR = libextractor
SED = /bin/sed
SET_MAKE = 
SHELL = /bin/sh
STRIP = mipsel-linux-strip
USE_NLS = no
VERSION = 0.5.22
XGETTEXT = /usr/bin/xgettext
XGETTEXT_015 = /usr/bin/xgettext
XTRA_CPPLIBS = -lstdc++
abs_builddir = /home/ich/fritzbox/libextractor-0.5.22
abs_srcdir = /home/ich/fritzbox/libextractor-0.5.22
abs_top_builddir = /home/ich/fritzbox/libextractor-0.5.22
abs_top_srcdir = /home/ich/fritzbox/libextractor-0.5.22
ac_ct_CC = 
ac_ct_CXX = 
ac_ct_DUMPBIN = 
am__include = include
am__leading_dot = .
am__quote = 
am__tar = ${AMTAR} chof - "$$tardir"
am__untar = ${AMTAR} xf -
bindir = ${exec_prefix}/bin
build = i386-pc-linux-gnu
build_alias = i386-linux-gnu
build_cpu = i386
build_os = linux-gnu
build_vendor = pc
builddir = .
datadir = ${datarootdir}
datarootdir = ${prefix}/share
docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}
dvidir = ${docdir}
exec_prefix = ${prefix}
host = mipsel-unknown-linux-gnu
host_alias = mipsel-linux
host_cpu = mipsel
host_os = linux-gnu
host_vendor = unknown
htmldir = ${docdir}
includedir = ${prefix}/include
infodir = ${datarootdir}/info
install_sh = $(SHELL) /home/ich/fritzbox/libextractor-0.5.22/libltdl/config/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localedir = ${datarootdir}/locale
localstatedir = ${prefix}/var
lt_ECHO = echo
ltdl_LIBOBJS =  argz.o
ltdl_LTLIBOBJS =  argz.lo
mandir = ${datarootdir}/man
mkdir_p = /bin/mkdir -p
oldincludedir = /usr/include
pdfdir = ${docdir}
pkgconfig_libdir = ${libdir}/pkgconfig
pkgconfig_libfile = libextractor.pc
prefix = /home/ich/fritzbox/libextractor-0.5.22/root
program_transform_name = s,x,x,
psdir = ${docdir}
sbindir = ${exec_prefix}/sbin
sharedstatedir = ${prefix}/com
srcdir = .
subdirs =  libltdl
sys_symbol_underscore = no
sysconfdir = ${prefix}/etc
target_alias = mipsel-linux
top_builddir = .
top_srcdir = .
SUBDIRS = m4 po libltdl src doc . 
EXTRA_DIST = config.rpath \
  ABOUT-NLS mkinstalldirs install-sh \
  PLATFORMS README.debian 

pkgconfigdatadir = $(libdir)/pkgconfig
pkgconfigdata_DATA = libextractor.pc
ACLOCAL_AMFLAGS = -I m4 -I libltdl/m4
all: config.h
	$(MAKE) $(AM_MAKEFLAGS) all-recursive

.SUFFIXES:
am--refresh:
	@:
$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
	@for dep in $?; do \
	  case '$(am__configure_deps)' in \
	    *$$dep*) \
	      echo ' cd $(srcdir) && $(AUTOMAKE) --gnu '; \
	      cd $(srcdir) && $(AUTOMAKE) --gnu  \
		&& exit 0; \
	      exit 1;; \
	  esac; \
	done; \
	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  Makefile'; \
	cd $(top_srcdir) && \
	  $(AUTOMAKE) --gnu  Makefile
.PRECIOUS: Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
	@case '$?' in \
	  *config.status*) \
	    echo ' $(SHELL) ./config.status'; \
	    $(SHELL) ./config.status;; \
	  *) \
	    echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
	    cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
	esac;

$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
	$(SHELL) ./config.status --recheck

$(top_srcdir)/configure:  $(am__configure_deps)
	cd $(srcdir) && $(AUTOCONF)
$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
	cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)

config.h: stamp-h1
	@if test ! -f $@; then \
	  rm -f stamp-h1; \
	  $(MAKE) $(AM_MAKEFLAGS) stamp-h1; \
	else :; fi

stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
	@rm -f stamp-h1
	cd $(top_builddir) && $(SHELL) ./config.status config.h
$(srcdir)/config.h.in:  $(am__configure_deps) 
	cd $(top_srcdir) && $(AUTOHEADER)
	rm -f stamp-h1
	touch $@

distclean-hdr:
	-rm -f config.h stamp-h1
contrib/macosx/Info.plist: $(top_builddir)/config.status $(top_srcdir)/contrib/macosx/Info.plist.in
	cd $(top_builddir) && $(SHELL) ./config.status $@

mostlyclean-libtool:
	-rm -f *.lo

clean-libtool:
	-rm -rf .libs _libs

distclean-libtool:
	-rm -f libtool
install-pkgconfigdataDATA: $(pkgconfigdata_DATA)
	@$(NORMAL_INSTALL)
	test -z "$(pkgconfigdatadir)" || $(MKDIR_P) "$(DESTDIR)$(pkgconfigdatadir)"
	@list='$(pkgconfigdata_DATA)'; for p in $$list; do \
	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
	  f=$(am__strip_dir) \
	  echo " $(pkgconfigdataDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(pkgconfigdatadir)/$$f'"; \
	  $(pkgconfigdataDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(pkgconfigdatadir)/$$f"; \
	done

uninstall-pkgconfigdataDATA:
	@$(NORMAL_UNINSTALL)
	@list='$(pkgconfigdata_DATA)'; for p in $$list; do \
	  f=$(am__strip_dir) \
	  echo " rm -f '$(DESTDIR)$(pkgconfigdatadir)/$$f'"; \
	  rm -f "$(DESTDIR)$(pkgconfigdatadir)/$$f"; \
	done

# This directory's subdirectories are mostly independent; you can cd
# into them and run `make' without going through this Makefile.
# To change the values of `make' variables: instead of editing Makefiles,
# (1) if the variable is set in `config.status', edit `config.status'
#     (which will cause the Makefiles to be regenerated when you run `make');
# (2) otherwise, pass the desired values on the `make' command line.
$(RECURSIVE_TARGETS):
	@failcom='exit 1'; \
	for f in x $$MAKEFLAGS; do \
	  case $$f in \
	    *=* | --[!k]*);; \
	    *k*) failcom='fail=yes';; \
	  esac; \
	done; \
	dot_seen=no; \
	target=`echo $@ | sed s/-recursive//`; \
	list='$(SUBDIRS)'; 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) $(AM_MAKEFLAGS) $$local_target) \
	  || eval $$failcom; \
	done; \
	if test "$$dot_seen" = "no"; then \
	  $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
	fi; test -z "$$fail"

$(RECURSIVE_CLEAN_TARGETS):
	@failcom='exit 1'; \
	for f in x $$MAKEFLAGS; do \
	  case $$f in \
	    *=* | --[!k]*);; \
	    *k*) failcom='fail=yes';; \
	  esac; \
	done; \
	dot_seen=no; \
	case "$@" in \
	  distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
	  *) list='$(SUBDIRS)' ;; \
	esac; \
	rev=''; for subdir in $$list; do \
	  if test "$$subdir" = "."; then :; else \
	    rev="$$subdir $$rev"; \
	  fi; \
	done; \
	rev="$$rev ."; \
	target=`echo $@ | sed s/-recursive//`; \
	for subdir in $$rev; do \
	  echo "Making $$target in $$subdir"; \
	  if test "$$subdir" = "."; then \
	    local_target="$$target-am"; \
	  else \
	    local_target="$$target"; \
	  fi; \
	  (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
	  || eval $$failcom; \
	done && test -z "$$fail"
tags-recursive:
	list='$(SUBDIRS)'; for subdir in $$list; do \
	  test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
	done
ctags-recursive:
	list='$(SUBDIRS)'; for subdir in $$list; do \
	  test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
	done

ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
	list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
	unique=`for i in $$list; do \
	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
	  done | \
	  $(AWK) '{ files[$$0] = 1; nonemtpy = 1; } \
	      END { if (nonempty) { for (i in files) print i; }; }'`; \
	mkid -fID $$unique
tags: TAGS

TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
		$(TAGS_FILES) $(LISP)
	tags=; \
	here=`pwd`; \
	if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
	  include_option=--etags-include; \
	  empty_fix=.; \
	else \
	  include_option=--include; \
	  empty_fix=; \
	fi; \
	list='$(SUBDIRS)'; for subdir in $$list; do \
	  if test "$$subdir" = .; then :; else \
	    test ! -f $$subdir/TAGS || \
	      tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \
	  fi; \
	done; \
	list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
	unique=`for i in $$list; do \
	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
	  done | \
	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
	      END { if (nonempty) { for (i in files) print i; }; }'`; \
	if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
	  test -n "$$unique" || unique=$$empty_fix; \
	  $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
	    $$tags $$unique; \
	fi
ctags: CTAGS
CTAGS: ctags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
		$(TAGS_FILES) $(LISP)
	tags=; \
	list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
	unique=`for i in $$list; do \
	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
	  done | \
	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
	      END { if (nonempty) { for (i in files) print i; }; }'`; \
	test -z "$(CTAGS_ARGS)$$tags$$unique" \
	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
	     $$tags $$unique

GTAGS:
	here=`$(am__cd) $(top_builddir) && pwd` \
	  && cd $(top_srcdir) \
	  && gtags -i $(GTAGS_ARGS) $$here

distclean-tags:
	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags

distdir: $(DISTFILES)
	$(am__remove_distdir)
	test -d $(distdir) || mkdir $(distdir)
	@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
	list='$(DISTFILES)'; \
	  dist_files=`for file in $$list; do echo $$file; done | \
	  sed -e "s|^$$srcdirstrip/||;t" \
	      -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
	case $$dist_files in \
	  */*) $(MKDIR_P) `echo "$$dist_files" | \
			   sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
			   sort -u` ;; \
	esac; \
	for file in $$dist_files; do \
	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
	  if test -d $$d/$$file; then \
	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
	    fi; \
	    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
	  else \
	    test -f $(distdir)/$$file \
	    || cp -p $$d/$$file $(distdir)/$$file \
	    || exit 1; \
	  fi; \
	done
	list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
	  if test "$$subdir" = .; then :; else \
	    test -d "$(distdir)/$$subdir" \
	    || $(MKDIR_P) "$(distdir)/$$subdir" \
	    || exit 1; \
	    distdir=`$(am__cd) $(distdir) && pwd`; \
	    top_distdir=`$(am__cd) $(top_distdir) && pwd`; \
	    (cd $$subdir && \
	      $(MAKE) $(AM_MAKEFLAGS) \
	        top_distdir="$$top_distdir" \
	        distdir="$$distdir/$$subdir" \
		am__remove_distdir=: \
		am__skip_length_check=: \
	        distdir) \
	      || exit 1; \
	  fi; \
	done
	$(MAKE) $(AM_MAKEFLAGS) \
	  top_distdir="$(top_distdir)" distdir="$(distdir)" \
	  dist-hook
	-find $(distdir) -type d ! -perm -777 -exec chmod a+rwx {} \; -o \
	  ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
	  ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
	  ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
	|| chmod -R a+r $(distdir)
dist-gzip: distdir
	tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
	$(am__remove_distdir)

dist-bzip2: distdir
	tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2
	$(am__remove_distdir)

dist-lzma: distdir
	tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma
	$(am__remove_distdir)

dist-tarZ: distdir
	tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
	$(am__remove_distdir)

dist-shar: distdir
	shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
	$(am__remove_distdir)

dist-zip: distdir
	-rm -f $(distdir).zip
	zip -rq $(distdir).zip $(distdir)
	$(am__remove_distdir)

dist dist-all: distdir
	tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
	$(am__remove_distdir)

# This target untars the dist file and tries a VPATH configuration.  Then
# it guarantees that the distribution is self-contained by making another
# tarfile.
distcheck: dist
	case '$(DIST_ARCHIVES)' in \
	*.tar.gz*) \
	  GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\
	*.tar.bz2*) \
	  bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\
	*.tar.lzma*) \
	  unlzma -c $(distdir).tar.lzma | $(am__untar) ;;\
	*.tar.Z*) \
	  uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
	*.shar.gz*) \
	  GZIP=$(GZIP_ENV) gunzip -c $(distdir).shar.gz | unshar ;;\
	*.zip*) \
	  unzip $(distdir).zip ;;\
	esac
	chmod -R a-w $(distdir); chmod a+w $(distdir)
	mkdir $(distdir)/_build
	mkdir $(distdir)/_inst
	chmod a-w $(distdir)
	dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
	  && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
	  && cd $(distdir)/_build \
	  && ../configure --srcdir=.. --prefix="$$dc_install_base" \
	    $(DISTCHECK_CONFIGURE_FLAGS) \
	  && $(MAKE) $(AM_MAKEFLAGS) \
	  && $(MAKE) $(AM_MAKEFLAGS) dvi \
	  && $(MAKE) $(AM_MAKEFLAGS) check \
	  && $(MAKE) $(AM_MAKEFLAGS) install \
	  && $(MAKE) $(AM_MAKEFLAGS) installcheck \
	  && $(MAKE) $(AM_MAKEFLAGS) uninstall \
	  && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
	        distuninstallcheck \
	  && chmod -R a-w "$$dc_install_base" \
	  && ({ \
	       (cd ../.. && umask 077 && mkdir "$$dc_destdir") \
	       && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
	       && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
	       && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
	            distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
	      } || { rm -rf "$$dc_destdir"; exit 1; }) \
	  && rm -rf "$$dc_destdir" \
	  && $(MAKE) $(AM_MAKEFLAGS) dist \
	  && rm -rf $(DIST_ARCHIVES) \
	  && $(MAKE) $(AM_MAKEFLAGS) distcleancheck
	$(am__remove_distdir)
	@(echo "$(distdir) archives ready for distribution: "; \
	  list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
	  sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
distuninstallcheck:
	@cd $(distuninstallcheck_dir) \
	&& test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \
	   || { echo "ERROR: files left after uninstall:" ; \
	        if test -n "$(DESTDIR)"; then \
	          echo "  (check DESTDIR support)"; \
	        fi ; \
	        $(distuninstallcheck_listfiles) ; \
	        exit 1; } >&2
distcleancheck: distclean
	@if test '$(srcdir)' = . ; then \
	  echo "ERROR: distcleancheck can only run from a VPATH build" ; \
	  exit 1 ; \
	fi
	@test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
	  || { echo "ERROR: files left in build directory after distclean:" ; \
	       $(distcleancheck_listfiles) ; \
	       exit 1; } >&2
check-am: all-am
check: check-recursive
all-am: Makefile $(DATA) config.h
installdirs: installdirs-recursive
installdirs-am:
	for dir in "$(DESTDIR)$(pkgconfigdatadir)"; do \
	  test -z "$$dir" || $(MKDIR_P) "$$dir"; \
	done
install: install-recursive
install-exec: install-exec-recursive
install-data: install-data-recursive
uninstall: uninstall-recursive

install-am: all-am
	@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am

installcheck: installcheck-recursive
install-strip:
	$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
	  install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
	  `test -z '$(STRIP)' || \
	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
mostlyclean-generic:

clean-generic:

distclean-generic:
	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)

maintainer-clean-generic:
	@echo "This command is intended for maintainers to use"
	@echo "it deletes files that may require special tools to rebuild."
clean: clean-recursive

clean-am: clean-generic clean-libtool mostlyclean-am

distclean: distclean-recursive
	-rm -f $(am__CONFIG_DISTCLEAN_FILES)
	-rm -f Makefile
distclean-am: clean-am distclean-generic distclean-hdr \
	distclean-libtool distclean-tags

dvi: dvi-recursive

dvi-am:

html: html-recursive

info: info-recursive

info-am:

install-data-am: install-pkgconfigdataDATA

install-dvi: install-dvi-recursive

install-exec-am:

install-html: install-html-recursive

install-info: install-info-recursive

install-man:

install-pdf: install-pdf-recursive

install-ps: install-ps-recursive

installcheck-am:

maintainer-clean: maintainer-clean-recursive
	-rm -f $(am__CONFIG_DISTCLEAN_FILES)
	-rm -rf $(top_srcdir)/autom4te.cache
	-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic

mostlyclean: mostlyclean-recursive

mostlyclean-am: mostlyclean-generic mostlyclean-libtool

pdf: pdf-recursive

pdf-am:

ps: ps-recursive

ps-am:

uninstall-am: uninstall-pkgconfigdataDATA

.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) install-am \
	install-strip

.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
	all all-am am--refresh check check-am clean clean-generic \
	clean-libtool ctags ctags-recursive dist dist-all dist-bzip2 \
	dist-gzip dist-hook dist-lzma dist-shar dist-tarZ dist-zip \
	distcheck distclean distclean-generic distclean-hdr \
	distclean-libtool distclean-tags distcleancheck distdir \
	distuninstallcheck dvi dvi-am html html-am info info-am \
	install install-am install-data install-data-am install-dvi \
	install-dvi-am install-exec install-exec-am install-html \
	install-html-am install-info install-info-am install-man \
	install-pdf install-pdf-am install-pkgconfigdataDATA \
	install-ps install-ps-am install-strip installcheck \
	installcheck-am installdirs installdirs-am maintainer-clean \
	maintainer-clean-generic mostlyclean mostlyclean-generic \
	mostlyclean-libtool pdf pdf-am ps ps-am tags tags-recursive \
	uninstall uninstall-am uninstall-pkgconfigdataDATA

# yayh: automake hacks!
dist-hook:
	cp -p $(srcdir)/src/plugins/printable/peXX.c $(distdir)/src/plugins/printable/
	cp -p $(srcdir)/src/plugins/printable/??.txt $(distdir)/src/plugins/printable/
	rm -f $(distdir)/src/plugins/printable/??_*.c
	rm -f $(distdir)/src/plugins/printable/??.c
	rm -f $(distdir)/src/plugins/printable/peda.c
	rm -f $(distdir)/src/plugins/printable/pede.c
	rm -f $(distdir)/src/plugins/printable/peen.c
	rm -f $(distdir)/src/plugins/printable/pees.c
	rm -f $(distdir)/src/plugins/printable/peit.c
	rm -f $(distdir)/src/plugins/printable/peno.c
	rm -f $(distdir)/src/plugins/printable/pept.c
# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT:

Danke!
 
Gibst du das ./configure ... und make von Hand ein? Ich wollte das Makefile sehen, dass in Freetz kommt.

MfG Oliver
 
Nein, das starte ich immer per Skript. Hab ich aber jetzt oben mit rein kopiert, damit du den Aufruf von configure siehst...
Wie welches Makefile, das in Freetz kommt? Sorry...:confused:
Also für das Paket selber hab ich noch gar nichts, ich wollte erstmal "einfach so" kompilieren...;)
 
Ich hätte gerne sowas wie hier. Damit ich das einfach ausprobieren kann.

MfG Oliver
 
Tut mir Leid für meine Unwissenheit, aber ich weiß echt nicht, wo ich das finde...Ich blick da nicht ganz durch...Ein Makefile.mk gibt es nicht. Muss ich das selber machen?
Falls du die Library selber bauen/ausprobieren willst, hier ist der Link: ftp://ftp.gnu.org/gnu/libextractor/libextractor-0.5.22.tar.gz
 
Ich hätte gerne sowas wie hier.

Tut mir Leid für meine Unwissenheit, aber ich weiß echt nicht, wo ich das finde...

Es klang so, als hättest Du diese Datei für die Library bereits erstellt. Ist aber anscheinend nicht der Fall. Versuche mal, so eine vorlage für deine Library anzupassen.

Ansonsten wird bei Dir die libiconv nicht mit gelinkt, obwohl configure der Meinung ist, sie gefunden zu haben.
 
Bin wirklich ahnungslos, ob/wo die Datei existiert, trotzdem Danke für euere Geduld! :)

Ein ./configure --help gibt mir u.A. folgendes aus:
Code:
Some influential environment variables:
  CC          C compiler command
  CFLAGS      C compiler flags
  LDFLAGS     linker flags, e.g. -L<lib dir> if you have libraries in a
              nonstandard directory <lib dir>
  [B]LIBS        libraries to pass to the linker, e.g. -l<library>[/B]
  CPPFLAGS    C/C++/Objective C preprocessor flags, e.g. -I<include dir> if
              you have headers in a nonstandard directory <include dir>
  CPP         C preprocessor
  CXX         C++ compiler command
  CXXFLAGS    C++ compiler flags
  CXXCPP      C++ preprocessor
  PKG_CONFIG  path to pkg-config utility
  GSF_CFLAGS  C compiler flags for GSF, overriding pkg-config
  GSF_LIBS    linker flags for GSF, overriding pkg-config
  GSF_GNOME_CFLAGS
              C compiler flags for GSF_GNOME, overriding pkg-config
  GSF_GNOME_LIBS
              linker flags for GSF_GNOME, overriding pkg-config
Ich hab also mal LIBS=/home/ich/fritzbox/libiconv-1.9.2/root/lib/libcharset.a (das ist anscheinend die erzeugte lib) gesetzt, aber das hat nichts geholfen.
 
Oliver hatte Dir schon einen Link auf die aktuelle Version der Datei make/libs/jpeg.mk genannt.

Nimm einfach mal die Datei oder ein anderes der Library-Makefiles aus dem verzeichnis als Vorlage und erstelle daraus eine Datei make/libs/libextractor.mk. Damit ist die Library schon mal mehr ins Freetz Build-System integriert, und kann man leichter nachvollziehen, was passiert.

Es ist aber noch keine Garantie, daß es danach besser geht. Vielleicht gibt es auch Problem mit dem configure-Skript, daß es etwas nicht richtig erkennt.

Andererseits scheint das configure die Library an der richtigen Stelle zu finden, aber sie wird beim Linken nicht mit angegeben.

Eine andere Überlegung wäre, ob die Unterstützung für iconv wirklich notwendig ist oder weggelassen werden kann.
 
Die Liste der Prerequisites liest sich nicht so als würde dieses Programm Sinn auf der FritzBox machen:
Code:
[B]Benötigt: [/B][URL="http://www.gnu.org/software/gmp/"][COLOR=#0066cc]GNU MP Bignum Library[/COLOR][/URL] (>= 4.0.0) 
[B]Benötigt: [/B][URL="http://www.gnu.org/directory/security/libgcrypt.html"][COLOR=#0066cc]libgcrypt (>= 1.2.0)[/COLOR][/URL] 
[B]Benötigt: [/B][URL="http://gnunet.org/libextractor/"][COLOR=#800080]libextractor (>= 0.5.16)[/COLOR][/URL] 
[B]Benötigt: [/B][URL="http://www.zlib.net/"][COLOR=#0066cc]zlib[/COLOR][/URL] 
[B]Benötigt: [/B][URL="http://www.sqlite.org/"][COLOR=#0066cc]sqlite[/COLOR][/URL] (>= 3.0.0) 
[B]Benötigt: [/B][URL="http://www.gtk.org/"][COLOR=#0066cc]gtk+ >= 2.6[/COLOR][/URL] 
[B]Benötigt: [/B][URL="http://glade.gnome.org/"][COLOR=#0066cc]glade >= 2.10[/COLOR][/URL] 
[B]Benötigt: [/B][URL="http://curl.haxx.se/"][COLOR=#0066cc]libcurl[/COLOR][/URL] 
[B]Benötigt: [/B][URL="http://www.gnu.org/software/guile/guile.html"][COLOR=#0066cc]Guile >= 1.8[/COLOR][/URL] 
[B]Benötigt: [/B][URL="http://invisible-island.net/dialog/"][COLOR=#0066cc]dialog >= 1.0-20060221[/COLOR][/URL] 
[B]Empfohlen: [/B][URL="http://gnunet.org/libmicrohttpd/"][COLOR=#0066cc]GNU libmicrohttpd[/COLOR][/URL] (>= 0.3.1) 
[B]Empfohlen: [/B][URL="http://www.mysql.com/"][COLOR=#0066cc]mysql[/COLOR][/URL] (>= 5.0.8) 
[B]Empfohlen: [/B][URL="http://xmlsoft.org/"][COLOR=#0066cc]libxml2[/COLOR][/URL] 
[B]Optional: [/B][URL="http://www.gnu.org/software/gettext/"][COLOR=#0066cc]GNU gettext (>= 0.16.1)[/COLOR][/URL] 
[B]Optional: [/B][URL="http://www.gnu.org/software/ncurses/"][COLOR=#0066cc]ncurses[/COLOR][/URL] 
[B]Optional: [/B][URL="http://www.gnu.org/software/adns/"][COLOR=#0066cc]GNU adns[/COLOR][/URL] 
[B]Optional: [/B][URL="http://www.nongnu.org/gksu/"][COLOR=#0066cc]GKSu[/COLOR][/URL] 
[B]Optional: [/B][URL="http://www.galago-project.org/downloads.php/"][COLOR=#0066cc]libnotify[/COLOR][/URL]
MfG Oliver
 
Hmmm. Mist, da hast du recht.
Aber auf der "herunterladen"-Seite werden als Systemvoraussetzungen ein Pentium 100Mhz mit 32 MB RAM angegeben. Manche der Abvhängigkeiten werden auch nur für die GUI benötigt. Aber trotzdem bleibt noch einiges übrig...vor allem sqlite stört mich.
 
Dabei ist sqlite doch noch die harmloseste DB-Implementierung ;) Aber es stimmt. Die Liste ist ziemlich mächtig, wenn es nicht machbar ist, das Ding ohne GUI zu bauen.
 
Natürlich ist es machbar....das configure-Skript erkennt das:
Code:
configure: NOTICE: xpdf disabled (result: limited PDF support)
configure: NOTICE: printable plugins enabled
configure: NOTICE: libgsf not found, no OLE2 (MS Office) support
configure: NOTICE: FFmpeg thumbnailer plugin disabled
configure: NOTICE: neither gtk nor Qt not found, no thumbnail support
configure: NOTICE: vorbis support disabled
configure: NOTICE: libmpeg2 not found (will not compile mpeg2 plugin)
 
Übrigens kennt das configure-Skript von libextractor den Parameter

--with-libiconv-prefix[=DIR] search for libiconv in DIR/include and DIR/lib
und
--without-libiconv-prefix don't search for libiconv in includedir and libdir

Evtl. hilft das Setzen dieses Pfades?
 
Auch diese Optionen helfen nichts...nach ´ner gewissen Zeit bringt er immer:
Code:
extract.o: In function `iconvHelper':
extract.c:(.text+0x28): undefined reference to `libiconv'
extract.c:(.text+0xb8): undefined reference to `libiconv'
extract.o: In function `main':
extract.c:(.text+0x11b8): undefined reference to `libiconv_open'
extract.c:(.text+0x131c): undefined reference to `libiconv_open'
extract.c:(.text+0x1464): undefined reference to `libiconv_close'
collect2: ld returned 1 exit status
make[4]: *** [extract] Fehler 1
make[4]: Leaving directory `/home/josef/fritzbox/libextractor-0.5.23/src/main'
make[3]: *** [all-recursive] Fehler 1
make[3]: Leaving directory `/home/josef/fritzbox/libextractor-0.5.23/src/main'
make[2]: *** [all-recursive] Fehler 1
make[2]: Leaving directory `/home/josef/fritzbox/libextractor-0.5.23/src'
make[1]: *** [all-recursive] Fehler 1
make[1]: Leaving directory `/home/josef/fritzbox/libextractor-0.5.23'
make: *** [all] Fehler 2
 
Er sucht die libiconv und findet sie nicht. Entweder, weil sie nicht gebaut wurde oder weil sie nicht zum Linken angegeben ist.

MfG Oliver
 
So, mit der iconv.h der uclibc klappts nun. Ich habe libextractor und gnunet manuell bereits erfolgreich bauen können.
Ich versuch mich grade an der Integration von libextractor in Freetz, erhalte aber immer folgende Fehler:
Code:
(.....)
/bin/bash ../../libtool --tag=CC   --mode=compile /home/josef/fritzbox/freetz-3170/toolchain/target/bin/mipsel-linux-uclibc-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../src/include -I../../libltdl -DPLUGINDIR=\"libextractor\"    -fno-strict-aliasing -Os -pipe -march=4kc -Wa,--trap -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -MT libextractor_la-extractor.lo -MD -MP -MF .deps/libextractor_la-extractor.Tpo -c -o libextractor_la-extractor.lo `test -f 'extractor.c' || echo './'`extractor.c
/home/josef/fritzbox/freetz-3170/toolchain/target/bin/mipsel-linux-uclibc-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../src/include -I../../libltdl    -fno-strict-aliasing -Os -pipe -march=4kc -Wa,--trap -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -MT extract.o -MD -MP -MF .deps/extract.Tpo -c -o extract.o extract.c
/home/josef/fritzbox/freetz-3170/toolchain/target/bin/mipsel-linux-uclibc-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../src/include -I../../libltdl    -fno-strict-aliasing -Os -pipe -march=4kc -Wa,--trap -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -MT getopt.o -MD -MP -MF .deps/getopt.Tpo -c -o getopt.o getopt.c
/home/josef/fritzbox/freetz-3170/toolchain/target/bin/mipsel-linux-uclibc-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../src/include -I../../libltdl    -fno-strict-aliasing -Os -pipe -march=4kc -Wa,--trap -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -MT getopt1.o -MD -MP -MF .deps/getopt1.Tpo -c -o getopt1.o getopt1.c
make[5]: *** Keine Regel vorhanden, um das Target »../../src/main/libextractor.la«, 
  benötigt von »extract«, zu erstellen.  Schluss.
make[5]: *** Warte auf noch nicht beendete Prozesse...
mv -f .deps/getopt.Tpo .deps/getopt.Po
mv -f .deps/getopt1.Tpo .deps/getopt1.Po
mv -f .deps/extract.Tpo .deps/extract.Po
libtool: compile:  /home/josef/fritzbox/freetz-3170/toolchain/target/bin/mipsel-linux-uclibc-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../src/include -I../../libltdl -DPLUGINDIR=\"libextractor\" -fno-strict-aliasing -Os -pipe -march=4kc -Wa,--trap -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -MT libextractor_la-extractor.lo -MD -MP -MF .deps/libextractor_la-extractor.Tpo -c extractor.c  -fPIC -DPIC -o .libs/libextractor_la-extractor.o
libtool: compile:  /home/josef/fritzbox/freetz-3170/toolchain/target/bin/mipsel-linux-uclibc-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../src/include -I../../libltdl -DPLUGINDIR=\"libextractor\" -fno-strict-aliasing -Os -pipe -march=4kc -Wa,--trap -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -MT libextractor_la-extractor.lo -MD -MP -MF .deps/libextractor_la-extractor.Tpo -c extractor.c -o libextractor_la-extractor.o >/dev/null 2>&1
mv -f .deps/libextractor_la-extractor.Tpo .deps/libextractor_la-extractor.Plo
make[5]: Leaving directory `/home/josef/fritzbox/freetz-3170/source/libextractor-0.5.23/src/main'
make[4]: *** [all-recursive] Fehler 1
make[4]: Leaving directory `/home/josef/fritzbox/freetz-3170/source/libextractor-0.5.23/src/main'
make[3]: *** [all-recursive] Fehler 1
make[3]: Leaving directory `/home/josef/fritzbox/freetz-3170/source/libextractor-0.5.23/src'
make[2]: *** [all-recursive] Fehler 1
make[2]: Leaving directory `/home/josef/fritzbox/freetz-3170/source/libextractor-0.5.23'
make[1]: *** [all] Fehler 2
make[1]: Leaving directory `/home/josef/fritzbox/freetz-3170/source/libextractor-0.5.23'

ERROR: Build failed.
make: *** [source/libextractor-0.5.23/src/main/.libs/libextractor.so.1.1.1] Fehler 1

Hier meine libextractor.mk :
Code:
$(call PKG_INIT_LIB, 0.5.23)
$(PKG)_LIB_VERSION:=1.1.1
$(PKG)_SOURCE:=$(pkg)-$($(PKG)_VERSION).tar.gz
$(PKG)_SITE:=http://ftp.gnu.org/gnu/libextractor

$(PKG)_BINARY:=$($(PKG)_DIR)/src/main/.libs/libextractor.so.$($(PKG)_LIB_VERSION)
$(PKG)_STAGING_BINARY:=$(TARGET_TOOLCHAIN_STAGING_DIR)/usr/lib/libextractor.so.$($(PKG)_LIB_VERSION)
$(PKG)_TARGET_BINARY:=$($(PKG)_TARGET_DIR)/libextractor.so.$($(PKG)_LIB_VERSION)

$(PKG)_DEPENDS_ON := zlib libtool

$(PKG)_CONFIGURE_OPTIONS += --enable-shared
$(PKG)_CONFIGURE_OPTIONS += --enable-static
$(PKG)_CONFIGURE_OPTIONS += --disable-gnome 
$(PKG)_CONFIGURE_OPTIONS += --disable-gsf 
$(PKG)_CONFIGURE_OPTIONS += --disable-xpdf 
$(PKG)_CONFIGURE_OPTIONS += --disable-exiv2 
$(PKG)_CONFIGURE_OPTIONS += --disable-printable 
$(PKG)_CONFIGURE_OPTIONS += --disable-ffmpeg 
$(PKG)_CONFIGURE_OPTIONS += --disable-glib
$(PKG)_CONFIGURE_OPTIONS += --disable-rpath  

$(PKG_SOURCE_DOWNLOAD)
$(PKG_UNPACKED)
$(PKG_CONFIGURED_CONFIGURE)

$($(PKG)_BINARY): $($(PKG)_DIR)/.configured
	$(SUBMAKE1) -C $(LIBEXTRACTOR_DIR)
	
$($(PKG)_STAGING_BINARY): $($(PKG)_BINARY)
	$(SUBMAKE) -C $(LIBEXTRACTOR_DIR)\
		DESTDIR="$(TARGET_TOOLCHAIN_STAGING_DIR)" \
		install
	$(PKG_FIX_LIBTOOL_LA) \
		$(TARGET_TOOLCHAIN_STAGING_DIR)/lib/libextractor.la \
		$(TARGET_TOOLCHAIN_STAGING_DIR)/lib/pkgconfig/libextractor.pc 

$($(PKG)_TARGET_BINARY): $($(PKG)_STAGING_BINARY)
	$(INSTALL_LIBRARY_STRIP)

$(pkg): $($(PKG)_STAGING_BINARY)

$(pkg)-precompiled: $($(PKG)_TARGET_BINARY)

$(pkg)-clean:
	-$(SUBMAKE) -C $(LIBEXTRACTOR_DIR) clean
	$(RM) -r $(TARGET_TOOLCHAIN_STAGING_DIR)/bin/extract \
		$(TARGET_TOOLCHAIN_STAGING_DIR)/bin/extract \
		$(TARGET_TOOLCHAIN_STAGING_DIR)/include/extractor.h \
		$(TARGET_TOOLCHAIN_STAGING_DIR)/lib/libextractor* \
		$(TARGET_TOOLCHAIN_STAGING_DIR)/lib/pkgconfig/libextractor.pc \
		$(TARGET_TOOLCHAIN_STAGING_DIR)/share/man/man1/extract.1 \
		$(TARGET_TOOLCHAIN_STAGING_DIR)/share/man/man3/libextractor.3 \
		$(TARGET_TOOLCHAIN_STAGING_DIR)/share/info/extractor.info
		
$(pkg)-uninstall:
	$(RM) -r $(LIBEXTRACTOR_TARGET_DIR)/libextractor*	

$(PKG_FINISH)

Außerdem müsste nach ./configure noch ein Skript ausgeführt werden:
Code:
#!/bin/sh

for SP in "." "src" "src/common" "src/include" "src/intlemu" "src/main" "src/test" "src/plugins" "src/plugins/exiv2" \
"src/plugins/ffmpeg" "src/plugins/hash" "src/plugins/ole2" "src/plugins/oo" "src/plugins/pdf" "src/plugins/printable" \
"src/plugins/rpm" "src/plugins/thumbnail" "src/plugins/thumbnailffmpeg"
do
sed -i -e 's/\/usr\/include/$(TARGET_TOOLCHAIN_STAGING_DIR)\/include/g' \
-e 's/\/usr\/lib/$(TARGET_TOOLCHAIN_STAGING_DIR)\/lib/g' \
${SP}/Makefile
done
Ich weiß allerdings nicht, wo ich das Platzieren müsste, und wie man das dann aufruft. Ich vermute mal, mit $(CONFIGURE_POST_CMDS), aber ich weißt nicht genau, wie.
Gibt es übrigens irgendwo eine genauere Erläuterung zu den ganzen Variablen/Makros, die in den Makefiles verwendet werden?
Was macht z.B. PKG_FIX_LIBTOOL_LA?
 
Zuletzt bearbeitet:
Holen Sie sich 3CX - völlig kostenlos!
Verbinden Sie Ihr Team und Ihre Kunden Telefonie Livechat Videokonferenzen

Gehostet oder selbst-verwaltet. Für bis zu 10 Nutzer dauerhaft kostenlos. Keine Kreditkartendetails erforderlich. Ohne Risiko testen.

3CX
Für diese E-Mail-Adresse besteht bereits ein 3CX-Konto. Sie werden zum Kundenportal weitergeleitet, wo Sie sich anmelden oder Ihr Passwort zurücksetzen können, falls Sie dieses vergessen haben.