Your message dated Tue, 16 Jan 2007 06:17:05 +0000 with message-id <[EMAIL PROTECTED]> and subject line Bug#337990: fixed in fpc 2.0.4-1 has caused the attached Bug report to be marked as done.
This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database)
--- Begin Message ---Package: fp-compiler Version: 2.0.0-4 Severity: important This renders FPC pretty much useless to me for anything besides the console... when compiling with default linker setup I get: Linking /home/wsem/src/fpc/exe/helloworld ▒│ helloworld.pas(95,1) Error: Error while linking looking at the output dir I get: wsem:~$ cat /home/wsem/src/fpc/exe/link.res SEARCH_DIR(/lib/) SEARCH_DIR(/usr/lib/) SEARCH_DIR(/usr/X11R6/lib/) SEARCH_DIR(/usr/lib/fpc/2.0.0/units/i386-linux/rtl/) SEARCH_DIR(/usr/lib/fpc/2.0.0/units/i386-linux/gtk2/) SEARCH_DIR(/usr/share/doc/fp-units-gtk2/examples/gtk2/helloworld/) SEARCH_DIR(/usr/bin/) INPUT( /usr/lib/fpc/2.0.0/units/i386-linux/rtl/prt0.o /home/wsem/src/fpc/ppu/helloworld.o /usr/lib/fpc/2.0.0/units/i386-linux/rtl/system.o /usr/lib/fpc/2.0.0/units/i386-linux/rtl/objpas.o /usr/lib/fpc/2.0.0/units/i386-linux/gtk2/glib2.o /usr/lib/fpc/2.0.0/units/i386-linux/gtk2/gdk2.o /usr/lib/fpc/2.0.0/units/i386-linux/gtk2/gtk2.o /usr/lib/fpc/2.0.0/units/i386-linux/rtl/sysutils.o /usr/lib/fpc/2.0.0/units/i386-linux/rtl/unix.o /usr/lib/fpc/2.0.0/units/i386-linux/rtl/errors.o /usr/lib/fpc/2.0.0/units/i386-linux/rtl/sysconst.o /usr/lib/fpc/2.0.0/units/i386-linux/rtl/unixtype.o /usr/lib/fpc/2.0.0/units/i386-linux/rtl/baseunix.o /usr/lib/fpc/2.0.0/units/i386-linux/rtl/strings.o /usr/lib/fpc/2.0.0/units/i386-linux/rtl/syscall.o /usr/lib/fpc/2.0.0/units/i386-linux/gtk2/gdk2pixbuf.o /usr/lib/fpc/2.0.0/units/i386-linux/gtk2/pango.o /usr/lib/fpc/2.0.0/units/i386-linux/gtk2/atk.o ) INPUT( -lgobject-2.0 -lglib-2.0 -lgthread-2.0 -lgmodule-2.0 -lgdk-x11-2.0 -lgtk-x11-2.0 -lgdk_pixbuf-2.0 -lpango-1.0 -latk-1.0 ) But without any sort of specific error, fixing it is not exactly easy! when compiling with "call linker after" "only link to static" "link to Dynamic" linker setup I get a more verbose complaint: 96 Lines compiled, 0.9 sec ▒│ Error: could not create /home/wsem/src/fpc/exe/helloworld ▒│ Error: /usr/bin/ld: cannot find -lgdk-x11-2.0 Looking at the output in the exe dir I get: wsem:~$ ls /home/wsem/src/fpc/exe/ hello link.res ppas.sh wsem:~$ cat /home/wsem/src/fpc/exe/ppas.sh #!/bin/sh DoExitAsm () { echo "An error occurred while assembling $1"; exit 1; } DoExitLink () { echo "An error occurred while linking $1"; exit 1; } echo Linking /home/wsem/src/fpc/exe/helloworld /usr/bin/ld -dynamic-linker=/lib/ld-linux.so.2 -static -L. -o /home/wsem/src/fpc/exe/helloworld /home/wsem/src/fpc/exe/link.res if [ $? != 0 ]; then DoExitLink /home/wsem/src/fpc/exe/helloworld; fi wsem:~$ cat /home/wsem/src/fpc/exe/link.res SEARCH_DIR(/lib/) SEARCH_DIR(/usr/lib/) SEARCH_DIR(/usr/X11R6/lib/) SEARCH_DIR(/usr/lib/fpc/2.0.0/units/i386-linux/rtl/) SEARCH_DIR(/usr/lib/fpc/2.0.0/units/i386-linux/gtk2/) SEARCH_DIR(/usr/share/doc/fp-units-gtk2/examples/gtk2/helloworld/) SEARCH_DIR(/usr/bin/) INPUT( /usr/lib/fpc/2.0.0/units/i386-linux/rtl/prt0.o /home/wsem/src/fpc/ppu/helloworld.o /usr/lib/fpc/2.0.0/units/i386-linux/rtl/system.o /usr/lib/fpc/2.0.0/units/i386-linux/rtl/objpas.o /usr/lib/fpc/2.0.0/units/i386-linux/gtk2/glib2.o /usr/lib/fpc/2.0.0/units/i386-linux/gtk2/gdk2.o /usr/lib/fpc/2.0.0/units/i386-linux/gtk2/gtk2.o /usr/lib/fpc/2.0.0/units/i386-linux/rtl/sysutils.o /usr/lib/fpc/2.0.0/units/i386-linux/rtl/unix.o /usr/lib/fpc/2.0.0/units/i386-linux/rtl/errors.o /usr/lib/fpc/2.0.0/units/i386-linux/rtl/sysconst.o /usr/lib/fpc/2.0.0/units/i386-linux/rtl/unixtype.o /usr/lib/fpc/2.0.0/units/i386-linux/rtl/baseunix.o /usr/lib/fpc/2.0.0/units/i386-linux/rtl/strings.o /usr/lib/fpc/2.0.0/units/i386-linux/rtl/syscall.o /usr/lib/fpc/2.0.0/units/i386-linux/gtk2/gdk2pixbuf.o /usr/lib/fpc/2.0.0/units/i386-linux/gtk2/pango.o /usr/lib/fpc/2.0.0/units/i386-linux/gtk2/atk.o ) INPUT( -lgobject-2.0 -lglib-2.0 -lgthread-2.0 -lgmodule-2.0 -lgdk-x11-2.0 -lgtk-x11-2.0 -lgdk_pixbuf-2.0 -lpango-1.0 -latk-1.0 -lgcc ) wsem:~$ locate libgdk-x11-2 /usr/lib/libgdk-x11-2.0.so.0 /usr/lib/libgdk-x11-2.0.so.0.600.4 wsem:~$ locate libgtk-x11-2 /usr/lib/libgtk-x11-2.0.so.0 /usr/lib/libgtk-x11-2.0.so.0.600.4 I have the libs... what's up? -- System Information: Debian Release: 3.1 APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Kernel: Linux 2.6.8-2-386 Locale: LANG=en_CA.UTF-8, LC_CTYPE=en_CA.UTF-8 (charmap=UTF-8) Versions of packages fp-compiler depends on: ii fp-units-rtl 2.0.0-4 Free Pascal -- Runtime Library -- no debconf information
--- End Message ---
--- Begin Message ---Source: fpc Source-Version: 2.0.4-1 We believe that the bug you reported is fixed in the latest version of fpc, which is due to be installed in the Debian FTP archive: fp-compiler_2.0.4-1_i386.deb to pool/main/f/fpc/fp-compiler_2.0.4-1_i386.deb fp-docs_2.0.4-1_all.deb to pool/main/f/fpc/fp-docs_2.0.4-1_all.deb fp-ide_2.0.4-1_i386.deb to pool/main/f/fpc/fp-ide_2.0.4-1_i386.deb fp-units-base_2.0.4-1_i386.deb to pool/main/f/fpc/fp-units-base_2.0.4-1_i386.deb fp-units-db_2.0.4-1_i386.deb to pool/main/f/fpc/fp-units-db_2.0.4-1_i386.deb fp-units-fcl_2.0.4-1_i386.deb to pool/main/f/fpc/fp-units-fcl_2.0.4-1_i386.deb fp-units-fv_2.0.4-1_i386.deb to pool/main/f/fpc/fp-units-fv_2.0.4-1_i386.deb fp-units-gfx_2.0.4-1_i386.deb to pool/main/f/fpc/fp-units-gfx_2.0.4-1_i386.deb fp-units-gnome1_2.0.4-1_i386.deb to pool/main/f/fpc/fp-units-gnome1_2.0.4-1_i386.deb fp-units-gtk2_2.0.4-1_i386.deb to pool/main/f/fpc/fp-units-gtk2_2.0.4-1_i386.deb fp-units-gtk_2.0.4-1_i386.deb to pool/main/f/fpc/fp-units-gtk_2.0.4-1_i386.deb fp-units-misc_2.0.4-1_i386.deb to pool/main/f/fpc/fp-units-misc_2.0.4-1_i386.deb fp-units-net_2.0.4-1_i386.deb to pool/main/f/fpc/fp-units-net_2.0.4-1_i386.deb fp-units-rtl_2.0.4-1_i386.deb to pool/main/f/fpc/fp-units-rtl_2.0.4-1_i386.deb fp-utils_2.0.4-1_i386.deb to pool/main/f/fpc/fp-utils_2.0.4-1_i386.deb fpc_2.0.4-1.diff.gz to pool/main/f/fpc/fpc_2.0.4-1.diff.gz fpc_2.0.4-1.dsc to pool/main/f/fpc/fpc_2.0.4-1.dsc fpc_2.0.4.orig.tar.gz to pool/main/f/fpc/fpc_2.0.4.orig.tar.gz A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to [EMAIL PROTECTED], and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Torsten Werner <[EMAIL PROTECTED]> (supplier of updated fpc package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing [EMAIL PROTECTED]) -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Format: 1.7 Date: Sun, 14 Jan 2007 11:40:59 +0100 Source: fpc Binary: fp-docs fp-utils fp-units-gnome1 fp-units-base fp-units-rtl fp-units-gtk fp-units-misc fp-units-gtk2 fp-units-db fp-units-gfx fp-units-fcl fp-units-fv fp-units-net fp-compiler fp-ide Architecture: source i386 all Version: 2.0.4-1 Distribution: unstable Urgency: low Maintainer: Carlos Laviola <[EMAIL PROTECTED]> Changed-By: Torsten Werner <[EMAIL PROTECTED]> Description: fp-compiler - Free Pascal -- Compiler fp-docs - Free Pascal -- Documentation fp-ide - Free Pascal -- IDE fp-units-base - Free Pascal -- base units fp-units-db - Free Pascal -- database libraries units fp-units-fcl - Free Pascal -- Free Component Library fp-units-fv - Free Pascal -- Free Vision units fp-units-gfx - Free Pascal -- graphics libraries units fp-units-gnome1 - Free Pascal -- GNOME 1 units fp-units-gtk - Free Pascal -- GTK 1.2 units fp-units-gtk2 - Free Pascal -- GTK 2.x units fp-units-misc - Free Pascal -- miscellaneous units fp-units-net - Free Pascal -- networking units fp-units-rtl - Free Pascal -- Runtime Library fp-utils - Free Pascal -- Utils Closes: 337990 346247 348408 383055 Changes: fpc (2.0.4-1) unstable; urgency=low . [ Mazen Neifer ] * New release (Closes: #383055) . [ Torsten Werner ] * Fix bugs in debian/fp-compiler.pre*.in. * Updated debian/control to use variables provides by newer versions of dpkg. * Add XS-X-Vcs-Svn header to debian/control. * Add german po files from Holger Wansing. (Closes: #348408, #346247) * Remove unneeded debian/fp-compiler.conffiles. * Fixed debian/changelog (lintian error). * Changed Build-Depends: gawk | awk. . [ Varun Hiremath ] * Bump Standards version to 3.7.2 * Add Homepage in debian/control file. * Add fp-units-gtk2 missing dependencies (Closes: #337990) Files: be62952f9653af522de3cb04a0775885 895 devel optional fpc_2.0.4-1.dsc 57c90a7c928de969460566d4433c2a9d 20574606 devel optional fpc_2.0.4.orig.tar.gz fb64e168ec1eb7b5091647433cc87a16 4065 devel optional fpc_2.0.4-1.diff.gz ee88b232154947093833d9c47cee21cd 2295436 devel optional fp-compiler_2.0.4-1_i386.deb 82c49e84e5c6883b6520aefcbaf978a3 963130 devel optional fp-ide_2.0.4-1_i386.deb acb32fcc5a72029dfd9111053e2ba54d 2651334 devel optional fp-utils_2.0.4-1_i386.deb c8f848be8034d6ae0056b04950316b93 2053876 devel optional fp-units-rtl_2.0.4-1_i386.deb 960682eec9c870537a8cc9d6343d39d5 919286 devel optional fp-units-base_2.0.4-1_i386.deb e713c9e11b7eb6abd42e66f1095f2d64 3090784 devel optional fp-units-fcl_2.0.4-1_i386.deb 274c0a7ded3a62146f19680543e366c8 540322 devel optional fp-units-fv_2.0.4-1_i386.deb 4881efc7a256515e184a4189927255ac 977610 devel optional fp-units-gtk_2.0.4-1_i386.deb a145713b5be79b0a7aeb8d6467532bf5 1430698 devel optional fp-units-gtk2_2.0.4-1_i386.deb c441ad7e0e97d6c77ea248dfdcc33d32 327328 devel optional fp-units-gnome1_2.0.4-1_i386.deb 1db68b1c71d894ba98d72e9f408e704c 1129992 devel optional fp-units-db_2.0.4-1_i386.deb 655a1327f07527087023ead363facea6 847126 devel optional fp-units-gfx_2.0.4-1_i386.deb 59410f15cd7376468a8a2b861ae47dd0 58840 devel optional fp-units-net_2.0.4-1_i386.deb 805e5317278b0513604872fbb6c8da6e 710374 devel optional fp-units-misc_2.0.4-1_i386.deb 650cc26187199499becf989dc6dbc839 6901884 doc optional fp-docs_2.0.4-1_all.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (GNU/Linux) iD8DBQFFqp3/fY3dicTPjsMRAtFrAJ0Tg+PviikgK08PhiiJ+ueXpMdwEQCeM1QT wCi9d78pNLY7wvu/mMX6ZBk= =TJ59 -----END PGP SIGNATURE-----
--- End Message ---

