PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : libpng-devel = libpng-dev ?



Mr. Wolfenstein
30.09.05, 17:39
Hallo. Ich bin momentan dabei Amule zu kompilieren bzw es zu versuchen. Jetzt spuckt mir ./configure diese Fehlermeldung aus:



checking for libpng-config... no
configure:
WARNING: libpng-devel >= 1.2.0 is needed for amuleweb

Ich hab libpng12 und libpng12-dev installiert. Deswegen wollt ich mal fragen ob libpng12-dev nicht dasselbe ist wie libpng-devel in der Version 1.2? Oder bedeutet eventuell die 12 nicht Version 1.2?

Wie ihr seht bin ich auf diesem Gebiet noch nicht so richtig fit. Deswegen währe ich froh wenn Ihr mir hier weiterhelfen könntet.


mfg Mr. Wolfenstein

hp_tux
30.09.05, 17:57
Hallo,


checking for libpng-config... no
nun, hast Du denn mal geschaut, ob Du diese Datei irgendwo hast? Welche Distribution verwendest Du? Wie hast Du denn libpng12 installiert?

Gruß

hp_tux

Mr. Wolfenstein
30.09.05, 18:07
Hmm komisch. Die war verschwunden. Jetzt hab ich libpng-dev nochmal neuinstalliert und jetzt ist sie da. Jetzt kommt aber folgendes:




checking for libpng-config... /usr/bin/libpng-config
checking for libpng version >= 1.2.0... yes (version 1.2.8)
WARNING: libpng-devel >= 1.2.0 is needed for amuleweb

Ich verwende Debian Sarge!

carnil
30.09.05, 18:12
Hallo

So wie es scheint, würde er aber jetzt nach libpng12-dev verlangen. Ist dies installiert?

Installiere beide (falls noch nicht vorhanden) libpng12 und libpng12-dev nach.

Edit: Sorry verlesen, hab den ersten Post wohl etwas zu schnell gelesen, waren die wirklich installiert?

Mr. Wolfenstein
30.09.05, 18:31
Ich hab jetzt die libpng12-0 und libpng12-dev nochmal neuinstalliert aber es kommt immer noch diese Fehlermeldung :(

hp_tux
30.09.05, 18:34
Hallo,

hmm, was steht denn in der "config.log"?

Gruß

hp_tux

carnil
30.09.05, 18:35
Hallo

Also meiner Meinung nach müsste das ja klappen, kann Dir nicht sagen wieso das jetzt immer noch nicht klappt. Melde mich nur gerade nochmals weil ich das hier gefunden habe: http://www.amule.org/wiki/index.php/HowTo_Compile_In_Debian
Man könnte ja einfacher ja nur die binaries installieren.


Are you sure you want to compile?

If not, (which is pretty common) decide if you want the aMule stable release or the aMule CVS release.

aMule stable release

You can just install latest stable aMule version through debs adding the following lines into your /etc/apt/sources.list file:

deb http://amule-debian.dyndns.org/ debian/

Now run apt-get update && apt-get install amule

NOTES:

* If aMule exits with error message complaining about being unable to open libbfd-2.15.so this usually means you are NOT running Debian Sarge. Don't start making symlinks or doing other workarounds, they can quite easily bork your whole system.

* http://dude.gemil.de is deprecated. http://amule-debian.dyndns.org is (for now) just a redirect, but this might change in the future (if the repository has to move due to traffic limitations).

aMule CVS release

You can also get the latest aMule CVS through debs adding the following lines into your /etc/apt/sources.list file:

deb http://www.vollstreckernet.de/debian/ testing amule
deb http://www.vollstreckernet.de/debian/ testing wx

NOTE: The second line is necessary for Sarge users and strongly recommended for Sid users.

Now run apt-get update && apt-get install amule

You might also want to take a look at the other available aMule utilities:

aMule CVS

* amule
* amule-common
* amuled
* amule-remote-gui
* amuleweb
* amulewebdlg
* amule-cas
* amule-wxcas
* amule-xas
* amule-utils

aMule stable

* amule-daemon
* amule-utils (alc, wxcas)
* amule-console-utils (amuleweb, alcc, cas)

For example, if you think aMule's Web interface rocks and you want to have it too, enter this line after the one above:

For aMule CVS: apt-get install amuleweb

For aMule stable: apt-get install amule-console-utils

If you still want to compile aMule instead of just installing a binary, keep reading...
[...] usw :)

Mr. Wolfenstein
30.09.05, 19:03
Die Pakete von Vollstrecker hatte ich schon mal installiert und nur Probleme damit gehabt. Und es gibt auch noch ein .deb-Paket von Amule, nur da ist der Daemon nicht dabei. Also komme ich um kompilieren nicht herum.

Das steht in der libpng-config drin:



#! /bin/sh

# libpng-config
# provides configuration info for libpng.

# Copyright (C) 2002 Glenn Randers-Pehrson
# For conditions of distribution and use, see copyright notice in png.h

# Modeled after libxml-config.

version=1.2.8
prefix=""
libdir=""
libs=""
I_opts=""
L_opts=""
R_opts=""
cppflags=""
ccopts=""
ldopts=""

prefix="/usr"
I_opts="-I/usr/include/libpng12"
L_opts=""
R_opts=""
libs="-lpng12"
all_libs="-lpng12 -lz -lm"

usage()
{
cat <<EOF
Usage: libpng-config [OPTION] ...

Known values for OPTION are:

--prefix print libpng prefix
--libdir print path to directory containing library
--libs print library linking information
--ccopts print compiler options
--cppflags print pre-processor flags
--cflags print preprocessor flags, I_opts, and compiler options
--I_opts print "-I" include options
--L_opts print linker "-L" flags for dynamic linking
--R_opts print dynamic linker "-R" or "-rpath" flags
--ldopts print linker options
--ldflags print linker flags (ldopts, L_opts, R_opts, and libs)
--static revise subsequent outputs for static linking
--help print this help and exit
--version print version information
EOF

exit $1
}

if test $# -eq 0; then
usage 1
fi

while test $# -gt 0; do
case "$1" in

--prefix)
echo ${prefix}
;;

--version)
echo ${version}
exit 0
;;

--help)
usage 0
;;

--ccopts)
echo ${ccopts}
;;

--cppflags)
echo ${cppflags}
;;

--cflags)
echo ${I_opts} ${cppflags} ${ccopts}
;;

--libdir)
echo ${libdir}
;;

--libs)
echo ${libs}
;;

--I_opts)
echo ${I_opts}
;;

--L_opts)
echo ${L_opts}
;;

--R_opts)
echo ${R_opts}
;;

--ldflags)
echo ${ldflags} ${L_opts} ${R_opts} ${libs}
;;

--static)
R_opts=""
libs=${all_libs}
;;

*)
usage
exit 1
;;
esac
shift
done

exit 0

hp_tux
30.09.05, 19:17
Hallo,


Das steht in der libpng-config drin:
nun, danach hatte ich nicht gefragt (vielleicht jemand anders? - egal), sondern nach der "config.log".

Gruß

hp_tux

Mr. Wolfenstein
30.09.05, 19:21
Upps sorry :)



configure:5836: checking for libpng-config
configure:5855: found /usr/bin/libpng-config
configure:5868: result: /usr/bin/libpng-config
configure:5882: checking for libpng version >= 1.2.0
WARNING: libpng-devel >= 1.2.0 is needed for amuleweb
ac_cv_path_LIBPNG_CONFIG_PATH=/usr/bin/libpng-config
LIBPNG_CFLAGS_ONLY='-I/usr/include/libpng12'
LIBPNG_CONFIG_PATH='/usr/bin/libpng-config'
LIBPNG_CPPFLAGS='-I/usr/include/libpng12'
LIBPNG_CXXFLAGS='-I/usr/include/libpng12'
LIBPNG_CXXFLAGS_ONLY='-I/usr/include/libpng12'


Hab jetzt nur die Zeilen mit libpng herauskopiert. Hoffe das war so richtig.

phoenix22
30.09.05, 19:23
Bist du dir sicher, dass überhaupt noch ein Fehler vorhanden ist? Bricht configure denn ab? Schließlich ist nur von einer Warnung die Rede, nicht von einem Fehler.

Mr. Wolfenstein
30.09.05, 19:31
Ehrlich gesagt bin ich mir mittlerweile gar nicht mehr sicher. Abbrechen tut configure nicht. Werde morgen mal testen ob es so geht oder nicht, hab jetzt leider keine Zeit mehr dafür.

Werde dann morgen berichten!

traffic
01.10.05, 00:45
Ich hab jetzt die libpng12-0 und libpng12-dev nochmal neuinstalliert aber es kommt immer noch diese Fehlermeldung :(
ARGH!

Das ist keine Fehlermeldung und es steht auch ganz genau da, dass es keine Fehlermeldung ist! Wäre es eine Fehlermeldung, dann stünde dort "error", da steht aber "warning". Die Übersetzung von "warning" bedeutet in solchen Zusammenhängen nie "Warnung", sondern "Hinweis".

Kompilier einfach, dann wirst Du schon sehen, dass es super-toll klappen wird.

Mr. Wolfenstein
01.10.05, 14:05
Also ich hab jetzt einfach mal das ganze kompiliert. Make & co ist - soweit ich das beurteilen kann - gut durchgelaufen. Beim Starten kommt aber ne ganz komische Fehlermeldung mit der ich momentan nicht so richtig was anfangen kann:



Fatal Error: Mismatch between the program and library build versions detected.
The library used 2.6 (no debug,Unicode,compiler with C++ ABI 1002,wx containers,compatible with 2.4),
and your program used 2.6 (no debug,Unicode,compiler with C++ ABI 102,wx containers,compatible with 2.4).
Abgebrochen

Diese Fehlermeldung sehe ich zum ersten mal und auch googeln brachte mir nicht viel. Hier komme ich glaub ich ohne Hilfe nicht weiter :(

Hier nochmal die Ausgabe von ./configure. Vielleicht findet einer was :confused:



checking build system type... i686-pc-linux
checking host system type... i686-pc-linux
checking target system type... i686-pc-linux
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking whether to enable maintainer-specific portions of Makefiles... no
checking for g++... g++
checking for C++ compiler default output file name... a.out
checking whether the C++ compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking for style of include used by make... GNU
checking dependency style of g++... gcc3
checking how to run the C++ preprocessor... g++ -E
checking for gcc... gcc
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ANSI C... none needed
checking dependency style of gcc... gcc3
checking how to run the C preprocessor... gcc -E
checking whether make sets $(MAKE)... (cached) yes
checking for a BSD-compatible install... /usr/bin/install -c
checking for ranlib... ranlib
checking for bison... bison -y
checking whether ln -s works... yes
checking for ranlib... (cached) ranlib
checking for strip... strip
checking for ar... ar
checking for ld... ld
checking for egrep... grep -E
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 zlib >= 1.1.4... yes (version 1.2.3)
checking for libpng-config... /usr/bin/libpng-config
checking for libpng version >= 1.2.0... yes (version 1.2.8)
checking gd.h usability... no
checking gd.h presence... no
checking for gd.h... no
configure:
WARNING: libpng-devel >= 1.2.0 is needed for amuleweb

checking whether we need the GUI... yes
checking for wx-config... /usr/bin/wx-config
checking for wxWidgets version >= 2.4.2... yes (version 2.6.1)
checking for GUI toolkit to use... GTK
checking if wxWidgets was linked with GTK2... yes
checking for pkg-config... /usr/bin/pkg-config
checking for GTK+ - version >= 2.0.3... yes (version 2.6.10)
checking whether to use embedded Crypto... yes
checking for bfd headers... yes
checking for autopoint... yes (4.5)
checking for X... no
checking for working alloca.h... yes
checking for alloca... yes
checking for dirent.h that defines DIR... yes
checking for library containing opendir... none required
checking for ANSI C header files... (cached) yes
checking argz.h usability... yes
checking argz.h presence... yes
checking for argz.h... yes
checking arpa/inet.h usability... yes
checking arpa/inet.h presence... yes
checking for arpa/inet.h... yes
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking for inttypes.h... (cached) yes
checking langinfo.h usability... yes
checking langinfo.h presence... yes
checking for langinfo.h... yes
checking libintl.h usability... yes
checking libintl.h presence... yes
checking for libintl.h... yes
checking limits.h usability... yes
checking limits.h presence... yes
checking for limits.h... yes
checking locale.h usability... yes
checking locale.h presence... yes
checking for locale.h... yes
checking malloc.h usability... yes
checking malloc.h presence... yes
checking for malloc.h... yes
checking mntent.h usability... yes
checking mntent.h presence... yes
checking for mntent.h... yes
checking netdb.h usability... yes
checking netdb.h presence... yes
checking for netdb.h... yes
checking netinet/in.h usability... yes
checking netinet/in.h presence... yes
checking for netinet/in.h... yes
checking stddef.h usability... yes
checking stddef.h presence... yes
checking for stddef.h... yes
checking for stdint.h... (cached) yes
checking stdio_ext.h usability... yes
checking stdio_ext.h presence... yes
checking for stdio_ext.h... yes
checking for stdlib.h... (cached) yes
checking for string.h... (cached) yes
checking for strings.h... (cached) yes
checking sys/ioctl.h usability... yes
checking sys/ioctl.h presence... yes
checking for sys/ioctl.h... yes
checking sys/mount.h usability... yes
checking sys/mount.h presence... yes
checking for sys/mount.h... yes
checking sys/param.h usability... yes
checking sys/param.h presence... yes
checking for sys/param.h... yes
checking sys/socket.h usability... yes
checking sys/socket.h presence... yes
checking for sys/socket.h... yes
checking sys/statvfs.h usability... yes
checking sys/statvfs.h presence... yes
checking for sys/statvfs.h... yes
checking sys/time.h usability... yes
checking sys/time.h presence... yes
checking for sys/time.h... yes
checking for unistd.h... (cached) yes
checking for sys/wait.h that is POSIX.1 compatible... yes
checking for stdbool.h that conforms to C99... yes
checking for _Bool... yes
checking for an ANSI C-conforming const... yes
checking for inline... inline
checking for mode_t... yes
checking for off_t... yes
checking for size_t... yes
checking whether time.h and sys/time.h may both be included... yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking for uid_t in sys/types.h... yes
checking for working volatile... yes
checking for ptrdiff_t... yes
checking whether closedir returns void... no
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 library containing strerror... none required
checking for stdlib.h... (cached) yes
checking for unistd.h... (cached) yes
checking for getpagesize... yes
checking for working mmap... yes
checking whether we are using the GNU C Library 2.1 or newer... yes
checking whether integer division by zero raises SIGFPE... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unsigned long long... yes
checking for inttypes.h... yes
checking whether the inttypes.h PRIxNN macros are broken... no
checking for ld used by GCC... ld
checking if the linker (ld) is GNU ld... yes
checking for shared library run path origin... done
checking for argz.h... (cached) yes
checking for limits.h... (cached) yes
checking for locale.h... (cached) yes
checking nl_types.h usability... yes
checking nl_types.h presence... yes
checking for nl_types.h... yes
checking for malloc.h... (cached) yes
checking for stddef.h... (cached) yes
checking for stdlib.h... (cached) yes
checking for string.h... (cached) yes
checking for unistd.h... (cached) yes
checking for sys/param.h... (cached) yes
checking for feof_unlocked... yes
checking for fgets_unlocked... yes
checking for getc_unlocked... yes
checking for getcwd... yes
checking for getegid... yes
checking for geteuid... yes
checking for getgid... yes
checking for getuid... yes
checking for mempcpy... yes
checking for munmap... yes
checking for putenv... yes
checking for setenv... yes
checking for setlocale... yes
checking for stpcpy... yes
checking for strcasecmp... yes
checking for strdup... yes
checking for strtoul... yes
checking for tsearch... yes
checking for __argz_count... yes
checking for __argz_stringify... yes
checking for __argz_next... yes
checking for iconv... yes
checking for iconv declaration...
extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);
checking for nl_langinfo and CODESET... yes
checking for LC_MESSAGES... yes
checking for bison... bison
checking version of bison... 1.875, ok
checking whether NLS is requested... yes
checking whether included gettext is requested... no
checking for GNU gettext in libc... yes
checking for getmntent in -lsun... no
checking for getmntent in -lseq... no
checking for getmntent in -lgen... no
checking for getmntent... yes
checking whether gcc needs -traditional... no
checking for pid_t... yes
checking for unistd.h... (cached) yes
checking vfork.h usability... no
checking vfork.h presence... no
checking for vfork.h... no
checking for fork... yes
checking for vfork... yes
checking for working fork... yes
checking for working vfork... (cached) yes
checking whether lstat dereferences a symlink specified with a trailing slash... yes
checking whether lstat accepts an empty string... no
checking whether lstat dereferences a symlink specified with a trailing slash... (cached) yes
checking for stdlib.h... (cached) yes
checking for GNU libc compatible malloc... yes
checking for working memcmp... yes
checking for stdlib.h... (cached) yes
checking for unistd.h... (cached) yes
checking for getpagesize... (cached) yes
checking for working mmap... (cached) yes
checking for stdlib.h... (cached) yes
checking for GNU libc compatible realloc... yes
checking sys/select.h usability... yes
checking sys/select.h presence... yes
checking for sys/select.h... yes
checking for sys/socket.h... (cached) yes
checking types of arguments for select... int,fd_set *,struct timeval *
checking for function prototypes... yes
checking whether setvbuf arguments are reversed... no
checking return type of signal handlers... void
checking whether stat accepts an empty string... no
checking for strftime... yes
checking for working strtod... yes
checking for __argz_count... (cached) yes
checking for __argz_next... (cached) yes
checking for __argz_stringify... (cached) yes
checking for endpwent... yes
checking for floor... no
checking for ftruncate... yes
checking for getcwd... (cached) yes
checking for gethostbyaddr... yes
checking for gethostbyname... yes
checking for gethostname... yes
checking for getmntent... (cached) yes
checking for getmntinfo... no
checking for getpass... yes
checking for gettimeofday... yes
checking for inet_ntoa... yes
checking for memmove... yes
checking for mempcpy... (cached) yes
checking for memset... yes
checking for munmap... (cached) yes
checking for nl_langinfo... yes
checking for select... yes
checking for setlocale... (cached) yes
checking for socket... yes
checking for sqrt... no
checking for stpcpy... (cached) yes
checking for strcasecmp... (cached) yes
checking for strchr... yes
checking for strcspn... yes
checking for strdup... (cached) yes
checking for strerror... yes
checking for strncasecmp... yes
checking for strstr... yes
checking for strtoul... (cached) yes
checking sys/resource.h usability... yes
checking sys/resource.h presence... yes
checking for sys/resource.h... yes
checking sys/timeb.h usability... yes
checking sys/timeb.h presence... yes
checking for sys/timeb.h... yes
checking for mkdir... yes
checking for getrlimit... yes
checking for setrlimit... yes
checking whether taskbar icon support should be compiled... yes
checking whether taskbar icon should use UTF-8 strings... no
checking if the applications should be statically linked... no
checking if this is a FreeBSD 4 or earlier system... no
checking for a readline compatible library... no
checking whether ccache support should be added... no
configure: creating ./config.status
config.status: creating Makefile
config.status: creating docs/Makefile
config.status: creating docs/man/Makefile
config.status: creating intl/Makefile
config.status: creating m4/Makefile
config.status: creating src/Makefile
config.status: creating src/kademlia/Makefile
config.status: creating src/kademlia/utils/Makefile
config.status: creating src/kademlia/io/Makefile
config.status: creating src/kademlia/kademlia/Makefile
config.status: creating src/kademlia/routing/Makefile
config.status: creating src/kademlia/net/Makefile
config.status: creating src/pixmaps/Makefile
config.status: creating src/utils/Makefile
config.status: creating src/utils/aLinkCreator/Makefile
config.status: creating src/utils/aLinkCreator/docs/Makefile
config.status: creating src/utils/aLinkCreator/src/Makefile
config.status: creating src/utils/cas/Makefile
config.status: creating src/utils/cas/docs/Makefile
config.status: creating src/utils/wxCas/Makefile
config.status: creating src/utils/wxCas/docs/Makefile
config.status: creating src/utils/wxCas/src/Makefile
config.status: creating src/utils/xas/Makefile
config.status: creating src/utils/xas/docs/Makefile
config.status: creating src/webserver/Makefile
config.status: creating src/webserver/default/Makefile
config.status: creating src/webserver/chicane/Makefile
config.status: creating po/Makefile.in
config.status: creating Compilation.flags
config.status: creating config.h
config.status: config.h is unchanged
config.status: executing depfiles commands
config.status: executing default-1 commands
config.status: creating po/POTFILES
config.status: creating po/Makefile


Configure script has finished system check.

Configured aMule 2.0.3 for 'i686-pc-linux'.

aMule enabled options:

**** aMule Core ****
Prefix where aMule should be installed? /usr/local
Should aMule be compiled with i18n support? yes
Should aMule be compiled in debug mode? yes
Should aMule be compiled with profiling? no
Should aMule be compiled with optimizations? yes
Should aMule be compiled with taskbar icon support? yes
Should aMule be compiled with old GTK taskbar icon? no
Should aMule be compiled with UTF-8 taskbar icon support? no
Should aMule be linked against patched gsocket? no
Should aMule monolithic application be built? yes
Should aMule daemon version be built? no
Should aMule remote gui be built? (EXPERIMENTAL) no
Crypto++ library/headers style? embedded

**** aMule TextClient ****
Should aMule Command Line Client be built? no
Should aMule GUI Client be built? no

**** aMule WebServer ****
Should aMule WebServer be built? yes
Should aMule WebServer GUI be built? yes

**** aMule ED2K Links Handler ****
Should aMule ED2K Links Handler be built? yes

**** aMuleLinkCreator ****
Should aMuleLinkCreator GUI version (alc) be built? no
Should aMuleLinkCreator for console (alcc) be built? no

**** aMule Statistics ****
Should C aMule Statistics (CAS) be built? no
Should aMule GUI Statistics (wxCas) be built? no

**** General Libraries and Tools ****
Should ccache support be enabled? no
Libraries aMule will use to build:
wxWidgets 2.6.1
crypto++ embedded
libpng 1.2.8
zlib 1.2.3


WARNING! gd-lib >= 2.0.0, or a functional gd.h (from gd-devel) not found.
amuleweb will be compiled but file download progress bar images will NOT be generated.
See the above error on gd check for solutions.

traffic
01.10.05, 14:13
Du musst zum Kompilieren der Anwendungen denselben Compiler benutzen, der auch zum Kompilieren der Bibliotheken benutzt wurde. GCC =< 3.3 und GCC >= 3.4 sind inkompatibel!

Dein wxWidgets wurde mit GCC >= 3.4 übersetzt und aMule hast Du mit GCC =< 3.3 übersetzt, das kann nicht funktionieren. Kompilier nochmal mit passenden Compilerversionen oder versuch es mal mit

CXXFLAGS="-fabi-version=1" ./configure
make
make install

Mr. Wolfenstein
01.10.05, 14:31
Ich hab GCC-3.4 aber gar nicht installiert laut dpkg -l. Es ist gcc, gcc-3.3, gcc-3.3-base und gcc-4.0-base installiert. Hast du dich eventuell vertan und meintest das wxWidget mit 3.4 übersetzt wurde und mein Programm mit 3.3?

edit: Dein Tip mit CXXFLAGS="-fabi-version=1" ./configure hat leider nicht funktioniert.

traffic
01.10.05, 14:46
Hast du dich eventuell vertan und meintest das wxWidget mit 3.4 übersetzt wurde und mein Programm mit 3.3?
Ja, hab ich, deswegen ist es jetzt auch berichtigt.

Dein Tip mit CXXFLAGS="-fabi-version=1" ./configure hat leider nicht funktioniert.
Hast Du aMule nochmal so kompiliert? Das bringt nichts. Sorry, war mein Fehler.

Du musst entweder wxWidgets nochmal so kompilieren oder aber GCC 4 installieren und aMule damit kompilieren, oder, noch besser, alle beide mit irgendeinem GCC, aber auf jeden Fall mit demselben.

Mr. Wolfenstein
02.10.05, 16:35
Ich hab jetzt wxWidgets selber kompiliert. Und jetzt geht es :)

Komischerweise kam auch die Warnung mit dem libpng nicht mehr. Aber egal, hauptsache es geht jetzt. Vielen Dank!!!


mfg Mr. Wolfenstein