Автор Гілка: проблема з gcc  (Прочитано 5192 раз)

Відсутній OlegkaOwl

  • Новачок
  • *
  • дописів: 28
  • Карма: +0/-0
  • Що новенького?
проблема з gcc
« : 2005-10-23 23:34:26 »
Шановні читачі форуму ! В мене наступна проблема: не можу встановити жодну програму , яку необхідно зібрати... З rpm  встановлюється нормально.
При кожній команди ./configure видає наступну помилку :
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking target system type... i686-pc-linux-gnu
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking for gcc... gcc
checking for C compiler default output... 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 gcc accepts -g... yes
checking for gcc option to accept ANSI C... none needed
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
checking how to run the C preprocessor... gcc -E
checking for g++... no
checking for c++... no
checking for gpp... no
checking for aCC... no
checking for CC... no
checking for cxx... no
checking for cc++... no
checking for cl... no
checking for FCC... no
checking for KCC... no
checking for RCC... no
checking for xlC_r... no
checking for xlC... no
checking whether we are using the GNU C++ compiler... no
checking whether g++ accepts -g... no
checking dependency style of g++... none
checking whether g++ accepts -fno-exceptions -fno-check-new... no
checking how to run the C++ preprocessor... /lib/cpp
configure: error: C++ preprocessor "/lib/cpp" fails sanity check
See `config.log' for more details.

Система - Mandrake 10.1, ядро 2.6.8.1-10mdk.

Пакети gcc встановлені у системі  наступні:
rpm -qa | grep 'gcc\|g++\|c++'

gcc2.96-cpp-2.96-0.83mdk
gcc-cpp-3.4.1-4mdk
libsigc++1.0_0-1.0.4-8mdk
gcc-3.4.1-4mdk
libflac++4-1.1.1-0.beta1.1mdk
libstdc++6-3.4.1-4mdk
libgcc1-3.4.1-3mdk
libstdc++5-3.3.4-1mdk

Тобто  gcc   встановлений, наскільки я зрозумів.
whereis gcc видіє наступне
gcc: /usr/bin/gcc /usr/bin/gcc3.4-version /usr/lib/gcc /usr/share/man/man1/gcc.1.bz2

Допоможіть вирішити цю проблему....
Заздалегідь вдячний.

Відсутній tech

  • Письменник
  • *****
  • дописів: 586
  • Карма: +1/-0
  • Гигик
Re: проблема з gcc
« Відповідей #1 : 2005-10-24 00:54:02 »
Перевірте чи g++,  c++ і.т.д  дійсно присутні і чи маєте права на їхне виконання.

which g++
ls -l `which g++`
(g++ - це, як правило, символічне посилання на gcc-версія, тому перевірте
ls -l /usr/bin/gcc-*)

Якщо все гаразд, то спробуйте у каталозі де ви компілюєте виконати
make clean distclean
(останнє видалить застарілий config.cache, який у вас можливо застряг там )

./configure --help
щоб дізнатися які аргументи configure візьме.
« Змінено: 2005-10-24 01:38:18 від tech »

dusoft

  • Гість
Re: проблема з gcc
« Відповідей #2 : 2005-10-24 01:43:56 »
Покажіть що після цього є в config.log

Відсутній Володимир Лісівка

  • Адміністратор ЩОДО
  • Видавець
  • *****
  • дописів: 3820
  • Карма: +11/-0
  • Програміст
Re: проблема з gcc
« Відповідей #3 : 2005-10-24 11:44:15 »
gcc  (компілятор з Сі) встановлений, а g++ (компілятор з Сі++) - ні.
Доставте пакети  gcc-c++, libstdc++, libstdc++-devel .
[Fedora Linux]

Відсутній OlegkaOwl

  • Новачок
  • *
  • дописів: 28
  • Карма: +0/-0
  • Що новенького?
Re: проблема з gcc
« Відповідей #4 : 2005-10-24 16:50:00 »
команда which g++ видає наступне:
no g++ in (/sbin:/usr/sbin:/bin:/usr/bin:/usr/X11R6/bin:/usr/local/bin:/usr/local/sbin)

Для Володимира Лісівки : у мене в переліку вище вказано, що встановлений пакет gcc-cpp-3.4.1-4mdk. Хіба це не є c++??? Пакет libstdc++ встановлений ? він теж є у переліку встановлених пакетів.





Відсутній Cthulhu

  • Кореспондент
  • ***
  • дописів: 183
  • Карма: +0/-0
Re: проблема з gcc
« Відповідей #5 : 2005-10-24 18:33:19 »
У Вас ./configure-скрипт не знаходить хедери ядра. Щоб вирішити цю проблему, достатньо кинути симлінк в /usr/include:
$ cd /usr/include
$ ln -s /usr/src/linux/include/linux
(якщо у вас код ядра лежить в іншому місці, ніж /usr/src/linux, підправте).

Відсутній OlegkaOwl

  • Новачок
  • *
  • дописів: 28
  • Карма: +0/-0
  • Що новенького?
Re: проблема з gcc
« Відповідей #6 : 2005-10-24 20:50:40 »
Ядро знаходиться у /usr/src/linux-2.6.8.1-10mdk
Після команди ln -s /usr/src/linux-2.6.8.1-10mdk/include/linux отримав у відповідь наступне :
ln: `./linux': cannot overwrite directory

Відсутній Cthulhu

  • Кореспондент
  • ***
  • дописів: 183
  • Карма: +0/-0
Re: проблема з gcc
« Відповідей #7 : 2005-10-24 21:24:26 »
Після команди ln -s /usr/src/linux-2.6.8.1-10mdk/include/linux отримав у відповідь наступне :
ln: `./linux': cannot overwrite directory

Значить, у Вас вже існує директорія с таким іменем (/usr/include/linux). По ідеї, вона повинна містити все, що необхідно, але це необов'язково (звична практика в багатьох дистрибутивах - виносити хедери ядра в окремий пакунок, але часом це приводить до помилок). Видаліть її, а краще перейменуйте (щоб не викидати), і створіть лінк цією ж командою. До речі, в /usr/include повинно бути ще дві директорії з хедерами ядра: /usr/include/asm -> /usr/src/linux-2.6.8.1-10mdk/include/asm і /usr/include/asm-generic -> /usr/src/linux-2.6.8.1-10mdk/include/asm-generic, перевірте їх наявність. Зважте на те, що якщо Ви компілювали ядро не в дереві /usr/src/linux-2.6.8.1-10mdk, у Вас відсутній симлінк asm на asm-arch. Якщо у Вас i386, то це asm-i386.

Відсутній Cthulhu

  • Кореспондент
  • ***
  • дописів: 183
  • Карма: +0/-0
Re: проблема з gcc
« Відповідей #8 : 2005-10-24 21:50:24 »
Поправка: з Вашого поточного /usr/include/linux скопіюйте version.h, compile.h і autoconf.h (сподіваюсь, вони там є, а то моя думка про Mandrake різко впаде) в /usr/src/linux-2.6.8.1-10mdk/include/linux, а тоді вже видаляйте(перейменовуйте) і створюйте симлінк. В принципі, це не суттєво, але перестрахуватись варто.

Відсутній miwa

  • Літератор
  • ******
  • дописів: 1111
  • Карма: +0/-0
Re: проблема з gcc
« Відповідей #9 : 2005-10-24 21:52:25 »
Ядро знаходиться у /usr/src/linux-2.6.8.1-10mdk
Після команди ln -s /usr/src/linux-2.6.8.1-10mdk/include/linux отримав у відповідь наступне :
ln: `./linux': cannot overwrite directory
Стоп-стоп-стоп.
Команда була набрана саме так, як ви оце щойно ввели? Тоді де її другий параметр?
Читайте документацію - вона кермує.

Відсутній Cthulhu

  • Кореспондент
  • ***
  • дописів: 183
  • Карма: +0/-0
Re: проблема з gcc
« Відповідей #10 : 2005-10-24 22:01:18 »
Стоп-стоп-стоп.
Команда була набрана саме так, як ви оце щойно ввели? Тоді де її другий параметр?
Все нормально, якщо не вказувати ціль, то ln створює симлінк з іменем джерела.

Відсутній tech

  • Письменник
  • *****
  • дописів: 586
  • Карма: +1/-0
  • Гигик
Re: проблема з gcc
« Відповідей #11 : 2005-10-25 02:33:53 »
" ln: `./linux': cannot overwrite directory" означає що linux (/usr/include/linux) вже існує.
Ваша configure помилка не пов'язана з заголовками (?) (headers). Відсутні заголовки виявляють себе вже під час компіляції.

$ whatis g++ cpp
g++                  (1)  - GNU project C++ Compiler
g++ [c++]            (1)  - GNU project C++ Compiler
cpp                  (1)  - The GNU C-Compatible Compiler Preprocessor

(cpp це препроцесор, обробляє різноманітні include і define вирази вихідного коду)
У вас вітсутній g++. Володимир вже вказав що робити (встановити gcc-c++*.rpm).

Відсутній Cthulhu

  • Кореспондент
  • ***
  • дописів: 183
  • Карма: +0/-0
Re: проблема з gcc
« Відповідей #12 : 2005-10-25 02:54:56 »
" Ваша configure помилка не пов'язана з заголовками (?) (headers). Відсутні заголовки виявляють себе вже під час компіляції.
Дуже сильно повязана. Як по-вашому, працює ./configure-скрипт? Просто пробує скомпілювати тестовий файл, грубо кажучи, і якщо нема хедера, то він на ньому вилітає. Помилка "how to run the C++ preprocessor..." вилітає за відсутності хедерів ядра. Там має з'являтись щось типу "gcc -E". Проведіть експеримент - витріть у Вас ці файли і спробуйте щось сконфігурити. Отримаєте описану помилку. Гарантую.
Хоча, гм, якщо g++ нема зовсім, то повинна вилетіти така ж помилка...
« Змінено: 2005-10-25 03:03:02 від Cthulhu »

dusoft

  • Гість
Re: проблема з gcc
« Відповідей #13 : 2005-10-25 03:29:48 »
У всіх би відкинулися всі питання, якби ви всеж таки написали сюди що видає cat config.log

Відсутній OlegkaOwl

  • Новачок
  • *
  • дописів: 28
  • Карма: +0/-0
  • Що новенького?
Re: проблема з gcc
« Відповідей #14 : 2005-10-26 14:36:43 »
Я встановив пакет gcc-c++ . (спасибі  tech та Володимиру Лісівці) зараз вищеназвана немає помилки, але з'явилась інша.
При виконанні команди ./configure видає помилку:

checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking target system type... i686-pc-linux-gnu
checking for a BSD-compatible install... /usr/bin/install -c
checking for -p flag to install... yes
checking whether build environment is sane... yes
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking for kde-config... /usr/bin/kde-config
kde-config: ??????????? ???????? '--libsuffix'.
kde-config: ??????????? --help ??? ?????? ?????? ????????? ?????????? ????????? ??????.
checking where to install... /usr (as returned by kde-config)
checking for style of include used by make... GNU
checking for gcc... gcc
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 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 for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking dependency style of g++... gcc3
checking whether gcc is blacklisted... no
checking whether g++ supports -Wmissing-format-attribute... yes
checking whether gcc supports -Wmissing-format-attribute... yes
checking whether g++ supports -Wundef... yes
checking whether g++ supports -Wno-long-long... yes
checking whether g++ supports -Wno-non-virtual-dtor... yes
checking whether g++ supports -fno-exceptions... yes
checking whether g++ supports -fno-check-new... yes
checking whether g++ supports -fno-common... yes
checking whether g++ supports -fexceptions... yes
checking how to run the C++ preprocessor... g++ -E
checking whether g++ supports -O0... yes
checking whether g++ supports -Wl,--no-undefined... yes
checking whether g++ supports -Wl,--allow-shlib-undefined... yes
not using lib directory suffix
checking for a sed that does not truncate output... /bin/sed
checking for egrep... grep -E
checking for ld used by gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for /usr/bin/ld option to reload object files... -r
checking for BSD-compatible nm... /usr/bin/nm -B
checking whether ln -s works... yes
checking how to recognise dependent libraries... pass_all
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 dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h... yes
checking for g77... no
checking for f77... no
checking for xlf... no
checking for frt... no
checking for pgf77... no
checking for fort77... no
checking for fl32... no
checking for af77... no
checking for f90... no
checking for xlf90... no
checking for pgf90... no
checking for epcf90... no
checking for f95... no
checking for fort... no
checking for xlf95... no
checking for ifc... no
checking for efc... no
checking for pgf95... no
checking for lf95... no
checking for gfortran... no
checking whether we are using the GNU Fortran 77 compiler... no
checking whether  accepts -g... no
checking the maximum length of command line arguments... 32768
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for objdir... .libs
checking for ar... ar
checking for ranlib... ranlib
checking for strip... strip
checking if gcc static flag  works... yes
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC
checking if gcc PIC flag -fPIC works... yes
checking if gcc supports -c -o file.o... yes
checking whether the gcc linker (/usr/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 whether stripping libraries is possible... yes
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... yes
checking whether a statically linked program can dlopen itself... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no
configure: creating libtool
appending configuration tag "CXX" to libtool
checking for ld used by g++... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes
checking for g++ option to produce PIC... -fPIC
checking if g++ PIC flag -fPIC works... yes
checking if g++ supports -c -o file.o... yes
checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking for shl_load... (cached) no
checking for shl_load in -ldld... (cached) no
checking for dlopen... (cached) no
checking for dlopen in -ldl... (cached) yes
checking whether a program can dlopen itself... (cached) yes
checking whether a statically linked program can dlopen itself... (cached) yes
appending configuration tag "F77" to libtool
checking for msgfmt... msgfmt
checking for gmsgfmt... msgfmt
found msgfmt program is not GNU msgfmt; ignore it
checking for xgettext... :
checking if C++ programs can be compiled... yes
checking for strlcat... no
checking if strlcat needs custom prototype... yes - in libkdefakes
checking for strlcpy... no
checking if strlcpy needs custom prototype... yes - in libkdefakes
checking for main in -lutil... yes
checking for main in -lcompat... no
checking for crypt in -lcrypt... yes
checking for socklen_t... yes
checking for dnet_ntoa in -ldnet... no
checking for dnet_ntoa in -ldnet_stub... no
checking for inet_ntoa... yes
checking for connect... yes
checking for remove... yes
checking for shmat... yes
checking for sys/types.h... (cached) yes
checking for stdint.h... (cached) yes
checking sys/bitypes.h usability... yes
checking sys/bitypes.h presence... yes
checking for sys/bitypes.h... yes
checking for poll in -lpoll... no
checking Carbon/Carbon.h usability... no
checking Carbon/Carbon.h presence... no
checking for Carbon/Carbon.h... no
checking CoreAudio/CoreAudio.h usability... no
checking CoreAudio/CoreAudio.h presence... no
checking for CoreAudio/CoreAudio.h... no
checking if res_init needs -lresolv... yes
checking for res_init... yes
checking if res_init needs custom prototype... no
checking for killpg in -lucb... no
checking for int... yes
checking size of int... 4
checking for short... yes
checking size of short... 2
checking for long... yes
checking size of long... 4
checking for char *... yes
checking size of char *... 4
checking for dlopen in -ldl... (cached) yes
checking for shl_unload in -ldld... no
checking for size_t... yes
checking size of size_t... 4
checking for unsigned long... yes
checking size of unsigned long... 4
checking sizeof size_t == sizeof unsigned long... yes
checking crt_externs.h usability... no
checking crt_externs.h presence... no
checking for crt_externs.h... no
checking for _NSGetEnviron... no
checking for vsnprintf... yes
checking for snprintf... yes
checking for X... configure: error: Can't find X includes. Please check your installation and add the correct paths!

На мою думку sources Х знаходяться у /usr/X11R6/include ,  але  там не має нічого.
В мене встановлені Х версії 6.7.0-4.2, викачав пакети
libxorg-x11-6.7.0-4.2.101mdk.i586.rpm
libxorg-x11-devel-6.7.0-4.2.101mdk.i586.rpm
libxorg-x11-static-devel-6.7.0-4.2.101mdk.i586.rpm
але вони не встанавлюються -

The following packages have to be removed for others to be upgraded:
ImageMagick-6.0.4.4-3mdk.i586 (due to missing ghostscript)
OpenOffice.org-1.1.3-0.20040820.9mdk.i586 (due to missing ghostscript, due to unsatisfied OpenOffice.org-l10n == 1.1.3)
OpenOffice.org-help-en-1.1.3-0.20040820.9mdk.i586 (due to unsatisfied OpenOffice.org == 1:1.1.3)
OpenOffice.org-help-ru-1.1.3-0.20040820.9mdk.i586 (due to unsatisfied OpenOffice.org == 1:1.1.3)
OpenOffice.org-l10n-en-1.1.3-0.20040820.9mdk.i586 (due to missing urw-fonts, due to missing fonts-ttf-vera, due to unsatisfied OpenOffice.org == 1:1.1.3)
OpenOffice.org-l10n-ru-1.1.3-0.20040820.9mdk.i586 (due to unsatisfied urw-fonts >= 2.0-6mdk, due to unsatisfied OpenOffice.org == 1:1.1.3)
X11R6-contrib-6.7.0-2mdk.i586 (due to unsatisfied libxorg-x11 == 6.7.0-2mdk)
a2ps-4.13b-4mdk.i586 (due to missing ImageMagick)
app-defaults-ru-0.1-9mdk.noarch (due to missing XFree86)
app-defaults-uk-0.1-6mdk.noarch (due to missing XFree86)
chkfontpath-1.9.10-1mdk.i586 (due to missing XFree86-xfs)
cups-drivers-10.1-0.2mdk.i586 (due to unsatisfied ghostscript >= 7.05, due to missing ImageMagick)
drakfirsttime-1.1-8mdk.noarch (due to unsatisfied xinitrc >= 2.4.9-1mdk)
fonts-ttf-decoratives-1.3-13mdk.noarch (due to unsatisfied chkfontpath >= 1.4.1)
fonts-ttf-vera-1.10-3mdk.noarch (due to missing chkfontpath
  • )

fonts-ttf-west_european-1.3-13mdk.noarch (due to unsatisfied chkfontpath >= 1.4.1)
foomatic-db-3.0.1-0.20040828.1mdk.i586 (due to missing ghostscript, due to missing printer-filters)
ghostscript-7.07-25mdk.i586 (due to unsatisfied urw-fonts >= 1.1)
ghostscript-module-X-7.07-25mdk.i586 (due to missing ghostscript
  • )

giftrans-1.12.2-13mdk.i586 (due to missing XFree86)
gimp2_0-2.0.4-1mdk.i586 (due to missing libwmf-0.2.so.7, due to missing libwmflite-0.2.so.7)
gnome-print-0.37-6mdk.i586 (due to missing urw-fonts
  • )

gnucash-1.8.9-2mdk.i586 (due to missing libgnomeprint.so.15, due to missing libgtkhtml-1.1.so.3, due to missing libgnc-app-file-gnome.so.0, due to missing libgncmodule.so.0, due to unsatisfied libgnucash0 >= 1.8.9-2mdk)
gnucash-hbci-1.8.9-2mdk.i586 (due to missing libgncmod-engine.so.0, due to missing libgncmod-generic-import.so.0, due to unsatisfied gnucash == 1.8.9-2mdk, due to missing libgncgnome.so.0, due to missing libgncmodule.so.0)
gnucash-ofx-1.8.9-2mdk.i586 (due to missing libgncmod-engine.so.0, due to missing libgncmod-generic-import.so.0, due to unsatisfied gnucash == 1.8.9-2mdk, due to missing libgncmodule.so.0)
gpr-0.9-5mdk.i586 (due to missing a2ps)
hylafax-4.2.0-1mdk.i586 (due to unsatisfied ghostscript >= 7.07)
kdegraphics-kghostview-3.2.3-15mdk.i586 (due to missing ghostscript, due to missing ghostscript-module-X)
libgnomeprint15-0.37-6mdk.i586 (due to unsatisfied gnome-print >= 0.37-6mdk)
libgnucash0-1.8.9-2mdk.i586 (due to missing libgncmod-app-file.so.0, due to missing libgncmod-backend-file.so.0, due to missing libgncmod-engine.so.0, due to missing libgncmod-gnome-search.so.0, due to missing libgncmod-ledger-core.so.0, due to missing libgncmod-report-gnome.so.0, due to missing libgncmod-report-system.so.0)
libgtkhtml1.1_3-1.1.10-6mdk.i586 (due to missing libgnomeprint.so.15)
libwmf-0.2.8.3-2mdk.i586 (due to missing libwmf-0.2.so.7, due to missing libwmflite-0.2.so.7)
libwmf0.2_7-0.2.8.3-2mdk.i586 (due to missing urw-fonts, due to unsatisfied libwmf == 0.2.8.3-2mdk)
mdkonline-1.1-9mdk.noarch (due to unsatisfied drakfirsttime >= 1.0-0.6mdk)
printer-filters-10.1-0.2mdk.i586 (due to missing ghostscript
  • , due to missing ImageMagick)

sane-frontends-1.0.12-1mdk.i586 (due to unsatisfied gimp2_0 >= 2.0)
urw-fonts-2.0-14mdk.noarch (due to missing chkfontpath
  • )

xinitrc-2.4.10-1mdk.noarch (due to unsatisfied XFree86 >= 3.3.5-12mdk)
xorg-x11-100dpi-fonts-6.7.0-2mdk.i586 (due to missing chkfontpath
  • )

xorg-x11-6.7.0-2mdk.i586 (due to unsatisfied libxorg-x11 == 6.7.0-2mdk)
xorg-x11-75dpi-fonts-6.7.0-2mdk.i586 (due to missing chkfontpath
  • )

xorg-x11-Xnest-6.7.0-2mdk.i586 (due to missing xorg-x11-xfs)
xorg-x11-Xvfb-6.7.0-2mdk.i586 (due to unsatisfied libxorg-x11 == 6.7.0-2mdk)
xorg-x11-cyrillic-fonts-6.7.0-2mdk.i586 (due to missing chkfontpath
  • )

xorg-x11-glide-module-6.7.0-2mdk.i586 (due to unsatisfied xorg-x11-server == 6.7.0-2mdk)
xorg-x11-server-6.7.0-2mdk.i586 (due to missing xorg-x11-xfs)
xorg-x11-xfs-6.7.0-2mdk.i586 (due to missing chkfontpath
  • )

xpdf-3.00-7mdk.i586 (due to missing urw-fonts)
do you agree ?

Не знаю? що робити..........
Де можна знайти include для Х ? На дисках не має.