Your message dated Fri, 18 Nov 2005 11:34:56 +0100 with message-id <[EMAIL PROTECTED]> and subject line insight: #286446 has been fixed 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; 20 Dec 2004 10:56:07 +0000 >From [EMAIL PROTECTED] Mon Dec 20 02:56:07 2004 Return-path: <[EMAIL PROTECTED]> Received: from c219139.adsl.hansenet.de (localhost.localdomain) [213.39.219.139] by spohr.debian.org with esmtp (Exim 3.35 1 (Debian)) id 1CgLCx-0006eJ-00; Mon, 20 Dec 2004 02:56:07 -0800 Received: from aj by localhost.localdomain with local (Exim 4.34) id 1CgLHe-0008C8-N5; Mon, 20 Dec 2004 12:00:58 +0100 To: Debian Bug Tracking System <[EMAIL PROTECTED]> From: Andreas Jochens <[EMAIL PROTECTED]> Subject: insight: FTBFS (amd64/gcc-4.0): unrecognized command line option "-fwritable-strings" Message-Id: <[EMAIL PROTECTED]> Date: Mon, 20 Dec 2004 12:00:58 +0100 Delivered-To: [EMAIL PROTECTED] X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 (1.212-2003-09-23-exp) on spohr.debian.org X-Spam-Status: No, hits=-6.4 required=4.0 tests=BAYES_00,HAS_PACKAGE, UPPERCASE_25_50 autolearn=no version=2.60-bugs.debian.org_2004_03_25 X-Spam-Level: Package: insight Severity: normal Tags: patch When building 'insight' on amd64 with gcc-4.0, I get the following error: make[4]: Entering directory `/insight-6.1+cvs.2004.08.11/libgui/src' gcc -DHAVE_CONFIG_H -I. -I. -I.. -fwritable-strings -I/usr/include/tcl8.4/tcl-private/generic -I/usr/include/tcl8.4/tk-private/generic -DTCL_THREADS=1 -DUSE_THREAD_ALLOC=1 -D_REENTRANT=1 -D_THREAD_SAFE=1 -DHAVE_PTHREAD_ATTR_SETSTACKSIZE=1 -DHAVE_PTHREAD_ATFORK=1 -DHAVE_READDIR_R=1 -DHAVE_THREE_ARG_READDIR_R=1 -DPEEK_XCLOSEIM=1 -D_LARGEFILE64_SOURCE=1 -DTCL_WIDE_INT_IS_LONG=1 -DHAVE_GETCWD=1 -DHAVE_OPENDIR=1 -DHAVE_STRSTR=1 -DHAVE_STRTOL=1 -DHAVE_STRTOLL=1 -DHAVE_STRTOULL=1 -DHAVE_TMPNAM=1 -DHAVE_WAITPID=1 -DHAVE_LIMITS_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYS_PARAM_H=1 -DUSE_TERMIOS=1 -DHAVE_SYS_TIME_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_TM_ZONE=1 -DHAVE_GMTIME_R=1 -DHAVE_LOCALTIME_R=1 -DHAVE_TM_GMTOFF=1 -DHAVE_TIMEZONE_VAR=1 -DHAVE_ST_BLKSIZE=1 -DSTDC_HEADERS=1 -DHAVE_SIGNED_CHAR=1 -DHAVE_LANGINFO=1 -DHAVE_SYS_IOCTL_H=1 -DHAVE_UNISTD_H=1 -DHAVE_LIMITS_H=1 -DTCL_THREADS=1 -DUSE_THREAD_ALLOC=1 -D_REENTRANT=1 -D_THREAD_SAFE=1 -DHAVE_PTHREAD_ATTR_SETSTACKSIZE=1 -DHAVE_PTHREAD_ATFORK=1 -DHAVE_READDIR_R=1 -DPEEK_XCLOSEIM=1 -D_LARGEFILE64_SOURCE=1 -DTCL_WIDE_INT_IS_LONG=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TIME_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_PW_GECOS=1 -I/usr/include/tcl8.4/tk-private/generic/../unix -I/usr/include/tcl8.4/tk-private/generic/../win -DTBL_VERSION=\"2.7\" -DTBL_COMMAND=\"table\" -DTBL_RUNTIME=\"tkTable.tcl\" -DTBL_RUNTIME_DIR=\"/usr/share/redhat/gui\" -DSTATIC_BUILD -g -O2 -c subcommand.c cc1: error: unrecognized command line option "-fwritable-strings" make[4]: *** [subcommand.o] Error 1 make[4]: Leaving directory `/insight-6.1+cvs.2004.08.11/libgui/src' With the attached patch 'insight' can be compiled on amd64 using gcc-4.0. Regards Andreas Jochens diff -urN ../tmp-orig/insight-6.1+cvs.2004.08.11/gdb/configure ./gdb/configure --- ../tmp-orig/insight-6.1+cvs.2004.08.11/gdb/configure 2004-08-10 01:25:23.000000000 +0200 +++ ./gdb/configure 2004-12-20 11:12:06.576291768 +0100 @@ -10529,15 +10529,6 @@ fi ENABLE_CFLAGS="${ENABLE_CFLAGS} \$(SUBDIR_GDBTK_CFLAGS)" - # Tcl/Tk 8.1 require -fwritable strings. I don't - # know whether 8.2 will or not, but I bet it will. - # I don't have to worry about 7.x since we don't support it. - GDBTK_CFLAGS="" - if test "$GCC" = "yes"; then - if test "$TCL_VERSION" != "8.0" ; then - GDBTK_CFLAGS="-fwritable-strings" - fi - fi # Include some libraries that Tcl and Tk want. TCL_LIBS='$(LIBGUI) $(ITCL) $(ITK) $(TK) $(TCL) $(X11_LDFLAGS) $(X11_LIBS)' diff -urN ../tmp-orig/insight-6.1+cvs.2004.08.11/gdb/configure.in ./gdb/configure.in --- ../tmp-orig/insight-6.1+cvs.2004.08.11/gdb/configure.in 2004-08-10 01:25:24.000000000 +0200 +++ ./gdb/configure.in 2004-12-20 11:11:55.778933216 +0100 @@ -1325,17 +1325,6 @@ ITK_DEPS="${ITK_LIB_FULL_PATH}" fi - ENABLE_CFLAGS="${ENABLE_CFLAGS} \$(SUBDIR_GDBTK_CFLAGS)" - # Tcl/Tk 8.1 require -fwritable strings. I don't - # know whether 8.2 will or not, but I bet it will. - # I don't have to worry about 7.x since we don't support it. - GDBTK_CFLAGS="" - if test "$GCC" = "yes"; then - if test "$TCL_VERSION" != "8.0" ; then - GDBTK_CFLAGS="-fwritable-strings" - fi - fi - # Include some libraries that Tcl and Tk want. TCL_LIBS='$(LIBGUI) $(ITCL) $(ITK) $(TK) $(TCL) $(X11_LDFLAGS) $(X11_LIBS)' # Yes, the ordering seems wrong here. But it isn't. diff -urN ../tmp-orig/insight-6.1+cvs.2004.08.11/libgui/configure ./libgui/configure --- ../tmp-orig/insight-6.1+cvs.2004.08.11/libgui/configure 2003-02-12 05:18:53.000000000 +0100 +++ ./libgui/configure 2004-12-20 11:02:18.850639648 +0100 @@ -1920,14 +1920,6 @@ rm -f conftest* -# Tcl8.1 requires writable strings for gcc - -if test "$GCC" = "yes"; then - LIBGUI_CFLAGS=-fwritable-strings -else - LIBGUI_CFLAGS= -fi - echo $ac_n "checking for cygwin32""... $ac_c" 1>&6 echo "configure:1933: checking for cygwin32" >&5 if eval "test \"`echo '$''{'ide_cv_os_cygwin32'+set}'`\" = set"; then diff -urN ../tmp-orig/insight-6.1+cvs.2004.08.11/libgui/configure.in ./libgui/configure.in --- ../tmp-orig/insight-6.1+cvs.2004.08.11/libgui/configure.in 2001-10-28 17:22:24.000000000 +0100 +++ ./libgui/configure.in 2004-12-20 11:02:07.641343720 +0100 @@ -45,12 +45,6 @@ # Tcl8.1 requires writable strings for gcc -if test "$GCC" = "yes"; then - LIBGUI_CFLAGS=-fwritable-strings -else - LIBGUI_CFLAGS= -fi - AC_CACHE_CHECK([for cygwin32], ide_cv_os_cygwin32, [AC_EGREP_CPP(lose, [ #ifdef __CYGWIN32__ --------------------------------------- Received: (at 286446-done) by bugs.debian.org; 18 Nov 2005 10:35:27 +0000 >From [EMAIL PROTECTED] Fri Nov 18 02:35:27 2005 Return-path: <[EMAIL PROTECTED]> Received: from d194089.adsl.hansenet.de ([80.171.194.89] helo=localhost.localdomain) by spohr.debian.org with esmtp (Exim 4.50) id 1Ed3aZ-0003Ys-9H for [EMAIL PROTECTED]; Fri, 18 Nov 2005 02:35:27 -0800 Received: from aj by localhost.localdomain with local (Exim 4.54) id 1Ed3a4-0002NM-Lc; Fri, 18 Nov 2005 11:34:56 +0100 Date: Fri, 18 Nov 2005 11:34:56 +0100 To: [EMAIL PROTECTED] Subject: insight: #286446 has been fixed Message-ID: <[EMAIL PROTECTED]> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.11 From: Andreas Jochens <[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-Level: X-Spam-Status: No, hits=-1.5 required=4.0 tests=BAYES_01,RCVD_IN_SORBS autolearn=no version=2.60-bugs.debian.org_2005_01_02 Version: 6.3.50+cvs.2005.11.16-1 This FTBFS problem has been fixed, thanks. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]