Re: how to enable Flash Plugins in konqueror/embedded
Yan Seiner <[email protected]>
| Newsgroups | gmane.comp.kde.devel.konq-e |
|---|---|
| Message-ID | <[email protected]> |
saravanan sar wrote: > hi... > > i compiled konqueror3-embedded for blackfin processor. now i need to > enable flash plugins while compiling the konqueror3-embedded. can > anyone say me how to do that....? > from the following website: > > http://konqueror.kde.org/embedded/#HowdoIrunFlashpluginswithKonquerorEmbedded > > i gave the option --enable-add-ons=/konqueror > -dir/konq-embed/addons/kflashpart while cross compiling for blackfin. > but i did ni\ot workout. > i got the following error: > > make[5]: Entering directory > `/home/konqvithflash/konqueror3-embedded-0.2-20060121/konq-embed/add-ons/kflashpart/flashlib' > if /bin/sh ../../../../libtool --silent --tag=CXX --mode=compile > bfin-uclinux-g++ -DHAVE_CONFIG_H -I. -I. -I../../../.. > -I../../../../konq-embed/kdesrc/kdecore > -I../../../../konq-embed/kdesrc/kjs > -I../../../../konq-embed/kdesrc/kssl -DQT_THREAD_SUPPORT -DQWS -O3 > -Wall -fno-rtti -fno-exceptions -DDISABLE_UNAVAILABLE_DEPTHS=1 > -Wno-long-long -Wundef -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG > -O2 -D__linux__ -DNOMMU -DQT_THREAD_SUPPORT -Wno-non-virtual-dtor > -fno-exceptions -fno-check-new -fno-common -fno-rtti > -DQT_CLEAN_NAMESPACE -DQT_NO_COMPAT -DQT_NO_ASCII_CAST -MT flash.lo > -MD -MP -MF ".deps/flash.Tpo" -c -o flash.lo flash.cc; \ > then mv -f ".deps/flash.Tpo" ".deps/flash.Plo"; else rm -f > ".deps/flash.Tpo"; exit 1; fi > In file included from flash.cc:23: > swf.h:209:21: jpeglib.h: No such file or directory > swf.h:212:18: zlib.h: No such file or directory ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Read the error messages. You are missing jpeg.h and zlib.h. You need to compile and install libjpeg and libz, and put the headers where the build system can find them. --Yan