Hello everybody
I was reading the following forum guide:
openSUSE software installation hints
So I decide to install from the souce code the following webcam application:
In order to avoid problems ( it is my first installation from souce code) I downloaded and unpacked everything in an USB key and I worked from, as the guide said, from the Linux terminal.
Once I was in the right directory and I compute the command:
./configure
I got the following issues:
golem@linux-hchb:/media/LEXAR/Test/guvcview-src-1.4.3> ./configure
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)... no
checking whether to enable maintainer-specific portions of Makefiles... no
checking for style of include used by make... none
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking dependency style of gcc... none
checking for library containing strerror... none required
checking for gcc... (cached) gcc
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to accept ISO C89... (cached) none needed
checking dependency style of gcc... (cached) none
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for ANSI C header files... yes
checking if you specifically want to enable debug-code -g... no
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 locale.h usability... yes
checking locale.h presence... yes
checking for locale.h... yes
checking for LC_MESSAGES... yes
checking libintl.h usability... yes
checking libintl.h presence... yes
checking for libintl.h... yes
checking for ngettext in libc... yes
checking for dgettext in libc... yes
checking for bind_textdomain_codeset... yes
checking for msgfmt... /usr/bin/msgfmt
checking for dcgettext... yes
checking if msgfmt accepts -c... yes
checking for gmsgfmt... /usr/bin/msgfmt
checking for xgettext... no
checking for catalogs to be installed... pt pt_BR de es fr da tr cs ja ru nl he eu zh_TW
./configure: line 5552: ./po/POTFILES.in: No such file or directory
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for DEPS... no
configure: error: Package requirements (gtk+-2.0 >= 2.14.0 glib-2.0 >= 2.10.0 gthread-2.0 gdk-2.0 >= 2.10.0 gdk-pixbuf-2.0 sdl >= 1.2.10 portaudio-2.0 libpng libavcodec libv4l2 libudev) were not met:
No package 'gtk+-2.0' found
No package 'glib-2.0' found
No package 'gthread-2.0' found
No package 'gdk-2.0' found
No package 'gdk-pixbuf-2.0' found
No package 'sdl' found
No package 'portaudio-2.0' found
No package 'libpng' found
No package 'libavcodec' found
No package 'libv4l2' found
No package 'libudev' found
Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.
Alternatively, you may set the environment variables DEPS_CFLAGS
and DEPS_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.
However there is something strange: I have checked if these libraries were installed or note and by querying the software database I got:
- gtk2
- glib2
- portaudio
- libpng12-0
libpng14-0
libpng14-14-32bit - libavcodec52
- libdev4l2-0
- libudev0
Were installed, but it seems that the installation program did not recognize them correctly.
However it was not possible to find the following ones in any repository:
- gthread-2.0
- gtk-2.0
- gdk-pixbuf-2.0
- sdl
Where dit I get this wrong? Any idea??
Thank you in advance for your advices