Your message dated Tue, 15 Feb 2005 09:02:05 -0500 with message-id <[EMAIL PROTECTED]> and subject line Bug#228072: fixed in avifile 1:0.7.42.20050215-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) -------------------------------------- Received: (at submit) by bugs.debian.org; 16 Jan 2004 12:36:25 +0000 >From [EMAIL PROTECTED] Fri Jan 16 06:36:24 2004 Return-path: <[EMAIL PROTECTED]> Received: from tisch.mail.mindspring.net [207.69.200.157] by master.debian.org with esmtp (Exim 3.35 1 (Debian)) id 1AhTD5-0003ZS-00; Fri, 16 Jan 2004 06:36:23 -0600 Received: from user-119bq03.biz.mindspring.com ([66.149.232.3] helo=frobnitz.ddts.net) by tisch.mail.mindspring.net with esmtp (Exim 3.33 #1) id 1AhTD4-00056P-00 for [EMAIL PROTECTED]; Fri, 16 Jan 2004 07:36:22 -0500 Received: from daniel by frobnitz.ddts.net with local (Exim 4.30) id 1AhTD4-0003se-0q for [EMAIL PROTECTED]; Fri, 16 Jan 2004 04:36:22 -0800 To: Debian Bug Tracking System <[EMAIL PROTECTED]> Subject: avifile: FTBFS with new freetype From: Daniel Schepler <[EMAIL PROTECTED]> Date: Fri, 16 Jan 2004 04:36:21 -0800 Message-ID: <[EMAIL PROTECTED]> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Sender: Daniel Schepler <[EMAIL PROTECTED]> Delivered-To: [EMAIL PROTECTED] X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_01_14 (1.212-2003-09-23-exp) on master.debian.org X-Spam-Status: No, hits=-5.0 required=4.0 tests=HAS_PACKAGE autolearn=no version=2.60-bugs.debian.org_2004_01_14 X-Spam-Level: --=-=-= Package: avifile Severity: serious Version: 1:0.7.38.20030710-1 Tags: patch >From my build log: ... Making all in video make[3]: Entering directory `/tmp/buildd/avifile-0.7.38.20030710/lib/video' /bin/sh ../../libtool --mode=compile i386-linux-g++ -DHAVE_CONFIG_H -I. -I. -I../../include -I/usr/include/SDL -D_REENTRANT -I/usr/include/freetype2 -I/usr/X11R6/include -D_REENTRANT -I/usr/include/freetype2 -I./../../drivers/vidix -DVIDIX_LIBDIR=\"/usr/lib/avifile-0.7/vidix/\" -I./../subtitles -Wall -Wno-unused -I../../include -O2 -ffast-math -fomit-frame-pointer -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -pipe -c -o sub_ft.lo `test -f 'sub_ft.cpp' || echo './'`sub_ft.cpp mkdir .libs i386-linux-g++ -DHAVE_CONFIG_H -I. -I. -I../../include -I/usr/include/SDL -D_REENTRANT -I/usr/include/freetype2 -I/usr/X11R6/include -D_REENTRANT -I/usr/include/freetype2 -I./../../drivers/vidix -DVIDIX_LIBDIR=\"/usr/lib/avifile-0.7/vidix/\" -I./../subtitles -Wall -Wno-unused -I../../include -O2 -ffast-math -fomit-frame-pointer -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -pipe -c sub_ft.cpp -fPIC -DPIC -o .libs/sub_ft.o In file included from sub_ft.cpp:9: /usr/include/freetype2/freetype/freetype.h:20:2: #error "`ft2build.h' hasn't been included yet!" /usr/include/freetype2/freetype/freetype.h:21:2: #error "Please always use macros to include FreeType header files." /usr/include/freetype2/freetype/freetype.h:22:2: #error "Example:" /usr/include/freetype2/freetype/freetype.h:23:2: #error " #include <ft2build.h>" /usr/include/freetype2/freetype/freetype.h:24:2: #error " #include FT_FREETYPE_H" make[3]: *** [sub_ft.lo] Error 1 make[3]: Leaving directory `/tmp/buildd/avifile-0.7.38.20030710/lib/video' make[2]: *** [all-recursive] Error 1 make[2]: Leaving directory `/tmp/buildd/avifile-0.7.38.20030710/lib' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/tmp/buildd/avifile-0.7.38.20030710' make: *** [build-stamp] Error 2 I've included a patch which fixes this problem, as well as another one I ran into later which prevented it from building with linux-kernel-headers. -- System Information: Debian Release: testing/unstable Architecture: i386 Kernel: Linux frobnitz 2.6.1 #1 Sun Jan 11 12:58:34 PST 2004 i686 Locale: LANG=en, LC_CTYPE=en (ignored: LC_ALL set to en_US.UTF-8) -- Daniel Schepler "Please don't disillusion me. I [EMAIL PROTECTED] haven't had breakfast yet." -- Orson Scott Card --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=avifile.diff Content-Description: avifile patch diff -urN avifile-0.7.38.20030710.old/lib/video/sub_ft.cpp avifile-0.7.38.20030710/lib/video/sub_ft.cpp --- avifile-0.7.38.20030710.old/lib/video/sub_ft.cpp 2002-11-01 03:08:06.000000000 -0800 +++ avifile-0.7.38.20030710/lib/video/sub_ft.cpp 2004-01-16 03:47:31.951376123 -0800 @@ -6,7 +6,8 @@ #ifdef HAVE_LIBFREETYPE -#include <freetype/freetype.h> +#include <ft2build.h> +#include FT_FREETYPE_H #if (FREETYPE_MAJOR > 2) || (FREETYPE_MAJOR == 2 && FREETYPE_MINOR >= 1) #define HAVE_FREETYPE21 diff -urN avifile-0.7.38.20030710.old/plugins/libwin32/loader/ldt_keeper.c avifile-0.7.38.20030710/plugins/libwin32/loader/ldt_keeper.c --- avifile-0.7.38.20030710.old/plugins/libwin32/loader/ldt_keeper.c 2002-08-08 02:05:51.000000000 -0700 +++ avifile-0.7.38.20030710/plugins/libwin32/loader/ldt_keeper.c 2004-01-16 04:11:25.805752606 -0800 @@ -24,6 +24,7 @@ #ifdef __linux__ #include <asm/unistd.h> #include <asm/ldt.h> +#define modify_ldt_ldt_s user_desc /* prototype it here, so we won't depend on kernel headers */ #ifdef __cplusplus extern "C" { --=-=-=-- --------------------------------------- Received: (at 228072-close) by bugs.debian.org; 15 Feb 2005 14:08:13 +0000 >From [EMAIL PROTECTED] Tue Feb 15 06:08:13 2005 Return-path: <[EMAIL PROTECTED]> Received: from newraff.debian.org [208.185.25.31] (mail) by spohr.debian.org with esmtp (Exim 3.35 1 (Debian)) id 1D13N7-0006vW-00; Tue, 15 Feb 2005 06:08:13 -0800 Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian)) id 1D13HB-0002EQ-00; Tue, 15 Feb 2005 09:02:05 -0500 From: Zdenek Kabelac <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] X-Katie: $Revision: 1.55 $ Subject: Bug#228072: fixed in avifile 1:0.7.42.20050215-1 Message-Id: <[EMAIL PROTECTED]> Sender: Archive Administrator <[EMAIL PROTECTED]> Date: Tue, 15 Feb 2005 09:02:05 -0500 Delivered-To: [EMAIL PROTECTED] X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 (1.212-2003-09-23-exp) on spohr.debian.org X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER autolearn=no version=2.60-bugs.debian.org_2005_01_02 X-Spam-Level: X-CrossAssassin-Score: 2 Source: avifile Source-Version: 1:0.7.42.20050215-1 We believe that the bug you reported is fixed in the latest version of avifile, which is due to be installed in the Debian FTP archive: avifile-divx-plugin_0.7.42.20050215-1_i386.deb to pool/contrib/a/avifile/avifile-divx-plugin_0.7.42.20050215-1_i386.deb avifile-mad-plugin_0.7.42.20050215-1_i386.deb to pool/main/a/avifile/avifile-mad-plugin_0.7.42.20050215-1_i386.deb avifile-mjpeg-plugin_0.7.42.20050215-1_i386.deb to pool/main/a/avifile/avifile-mjpeg-plugin_0.7.42.20050215-1_i386.deb avifile-player_0.7.42.20050215-1_i386.deb to pool/main/a/avifile/avifile-player_0.7.42.20050215-1_i386.deb avifile-utils_0.7.42.20050215-1_i386.deb to pool/main/a/avifile/avifile-utils_0.7.42.20050215-1_i386.deb avifile-vorbis-plugin_0.7.42.20050215-1_i386.deb to pool/main/a/avifile/avifile-vorbis-plugin_0.7.42.20050215-1_i386.deb avifile-win32-plugin_0.7.42.20050215-1_i386.deb to pool/contrib/a/avifile/avifile-win32-plugin_0.7.42.20050215-1_i386.deb avifile-xvid-plugin_0.7.42.20050215-1_i386.deb to pool/contrib/a/avifile/avifile-xvid-plugin_0.7.42.20050215-1_i386.deb avifile_0.7.42.20050215-1.dsc to pool/main/a/avifile/avifile_0.7.42.20050215-1.dsc avifile_0.7.42.20050215-1.tar.gz to pool/main/a/avifile/avifile_0.7.42.20050215-1.tar.gz libavifile-0.7-dev_0.7.42.20050215-1_i386.deb to pool/main/a/avifile/libavifile-0.7-dev_0.7.42.20050215-1_i386.deb libavifile-0.7c102_0.7.42.20050215-1_i386.deb to pool/main/a/avifile/libavifile-0.7c102_0.7.42.20050215-1_i386.deb 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. Zdenek Kabelac <[EMAIL PROTECTED]> (supplier of updated avifile 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: Thu, 10 Jul 2003 13:40:44 +0200 Source: avifile Binary: avifile-divx-plugin libavifile-0.7c102 avifile-utils avifile-mad-plugin libavifile-0.7-dev avifile-vorbis-plugin avifile-win32-plugin avifile-xvid-plugin avifile-mjpeg-plugin avifile-player Architecture: source i386 Version: 1:0.7.42.20050215-1 Distribution: unstable Urgency: low Maintainer: Zdenek Kabelac <[EMAIL PROTECTED]> Changed-By: Zdenek Kabelac <[EMAIL PROTECTED]> Description: avifile-divx-plugin - Divx4Linux video encoding plugin avifile-mad-plugin - MAD - MPEG audio plugin avifile-mjpeg-plugin - MJPEG video plugin avifile-player - Video player for AVI/ASF/WMF files avifile-utils - Utility programs using the avifile library avifile-vorbis-plugin - Vorbis audio plugin avifile-win32-plugin - Win32 audio/video plugin avifile-xvid-plugin - XviD video encoding plugin libavifile-0.7-dev - Development header files libavifile-0.7c102 - Shared libraries for AVI read/writing Closes: 202627 228072 245653 253504 264543 267807 285677 294473 Changes: avifile (1:0.7.42.20050215-1) unstable; urgency=low . * fix libmad compilation for X86_64 (Closes: 253504) * quoted AM_PATH_AVIFILE (Closes: 267807) * unless I'm proven with buggy compiler output I'm closing this bug report as it compiles fine with current gcc-4.0 (Closes: 294473, 285677, 264543) * compiles fine with freetype2 (Closes: 228072) * removed compilation with qt2 (Closes: 245653) * name change fixed (Closes: 202627) Files: a5c9efca91b7c7a3a61911a032e71c30 1113 graphics optional avifile_0.7.42.20050215-1.dsc 864ce9c7d18ba93e1c4d433fad18961d 3180326 graphics optional avifile_0.7.42.20050215-1.tar.gz aa50597d5b6d0e177a33af76c289863d 1827630 libs optional libavifile-0.7c102_0.7.42.20050215-1_i386.deb 629fb75026481e0c35fcb044043e2ec6 48756 devel optional libavifile-0.7-dev_0.7.42.20050215-1_i386.deb 8ac8460286a147220da642d2b73b3222 64526 libs optional avifile-mad-plugin_0.7.42.20050215-1_i386.deb a046fa35abacd1d784879a9d356033d4 874 libs optional avifile-mjpeg-plugin_0.7.42.20050215-1_i386.deb 72b6c9121de28bb882395e80a918e01f 7260 libs optional avifile-vorbis-plugin_0.7.42.20050215-1_i386.deb dfc10b1d4a32116f5e33ad4f9de3d85a 93796 contrib/libs optional avifile-win32-plugin_0.7.42.20050215-1_i386.deb 69390327ea6256094d12f3a56c5c5506 896 contrib/libs optional avifile-xvid-plugin_0.7.42.20050215-1_i386.deb 303bdc1c9dc9c7b3ff151440926eac45 12726 contrib/libs optional avifile-divx-plugin_0.7.42.20050215-1_i386.deb 514ebb8bf4e288e858a6d868036ad7cf 110154 graphics extra avifile-player_0.7.42.20050215-1_i386.deb e76faaa0825a96ab6f7de1f11443549d 318452 graphics extra avifile-utils_0.7.42.20050215-1_i386.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (GNU/Linux) iQCVAwUBQhH+V1WWyMLXq+m5AQJL6QP+KTsnIqYNjckmSY5FW3RvgWETg6oslZfv 2upQFj3qxOYAKNq5iwE/tySCXWZD1a+BAACE9qftWIP1Z4eMloB1V1HLBuwN6xuh EOzjkRQoxU1J+xRUdTzZ/Gv70zH7q/7eAM44tKOcA+N91CO6cWFsFEgtRXbxB7/W HgqzRISCptg= =X4i/ -----END PGP SIGNATURE----- -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]