From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1976 invoked by alias); 8 May 2012 15:18:33 -0000 Received: (qmail 1964 invoked by uid 22791); 8 May 2012 15:18:31 -0000 X-SWARE-Spam-Status: No, hits=-0.8 required=5.0 tests=AWL,BAYES_00,KHOP_DYNAMIC,KHOP_RCVD_UNTRUST,RCVD_IN_DNSWL_LOW,RCVD_IN_HOSTKARMA_YE,TW_LN X-Spam-Check-By: sourceware.org Received: from mx0a-00105401.pphosted.com (HELO mx0a-00105401.pphosted.com) (67.231.144.184) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 08 May 2012 15:18:17 +0000 Received: from pps.filterd (m0004047 [127.0.0.1]) by mx0a-00105401.pphosted.com (8.14.4/8.14.4) with SMTP id q48FE5MF030770; Tue, 8 May 2012 11:18:15 -0400 Received: from xnwp216.utc.com (xnwp216.utc.com [159.82.148.203]) by mx0a-00105401.pphosted.com with ESMTP id 14q5fc9gw9-1 (version=TLSv1/SSLv3 cipher=AES256-SHA bits=256 verify=OK); Tue, 08 May 2012 11:18:15 -0400 Received: from uusmna1q.utc.com (uusmna1q.utc.com [159.82.219.65]) by xnwp216.utc.com (Switch-3.2.5/Switch-3.2.5) with ESMTP id q48FICeV024223 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=FAIL); Tue, 8 May 2012 11:18:12 -0400 Received: from UUSNWG02.na.utcmail.com (uusnwg02.na.utcmail.com [159.82.111.50]) by uusmna1q.utc.com (Switch-3.4.3/Switch-3.4.3) with ESMTP id q48FHne4018151 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=FAIL); Tue, 8 May 2012 11:18:10 -0400 Received: from UUSNWE1M.na.utcmail.com ([159.82.111.24]) by UUSNWG02.na.utcmail.com ([159.82.111.50]) with mapi id 14.02.0298.004; Tue, 8 May 2012 11:17:53 -0400 From: "Lusk, Timothy CCS" To: "crossgcc@sourceware.org" CC: "yann.morin.1998@free.fr" Subject: Re: crosstool-NG Cygwin Build Fails Date: Tue, 08 May 2012 15:18:00 -0000 Message-ID: <022F8C6A86906F4CA6FCE17F54B1BFCE07B010@UUSNWE1M.na.utcmail.com> Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Proofpoint-Spam-Details: rule=outbound_notspam policy=outbound score=0 spamscore=0 ipscore=0 suspectscore=1 phishscore=0 bulkscore=0 adultscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=6.0.2-1203120001 definitions=main-1205080147 Mailing-List: contact crossgcc-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: crossgcc-owner@sourceware.org X-SW-Source: 2012-05/txt/msg00012.txt.bz2 Yann, Here is the patch as a unified diff. It's essentially just adding the libin= tl library, specifying the ncurses path, and changing the way ESCDELAY is s= et.=20 --- crosstool-ng-1.15.0_old/kconfig/Makefile 2012-04-30 16:54:20.0000000= 00 -0400 +++ crosstool-ng-1.15.0/kconfig/Makefile 2012-05-08 11:10:24.9500661= 00 -0400 @@ -35,20 +35,21 @@ conf_OBJ =3D $(patsubst %.c,%.o,$(conf_SRC)) conf_DEP =3D $(patsubst %.o,%.dep,$(conf_OBJ)) $(conf_OBJ) $(conf_DEP): CFLAGS +=3D $(INTL_CFLAGS) +conf: LDFLAGS +=3D -lintl # What's needed to build 'mconf' mconf_SRC =3D mconf.c mconf_OBJ =3D $(patsubst %.c,%.o,$(mconf_SRC)) mconf_DEP =3D $(patsubst %.c,%.dep,$(mconf_SRC)) $(mconf_OBJ) $(mconf_DEP): CFLAGS +=3D $(NCURSES_CFLAGS) $(INTL_CFLAGS) -mconf: LDFLAGS +=3D $(NCURSES_LDFLAGS) +mconf: LDFLAGS +=3D -lintl $(NCURSES_LDFLAGS) # What's needed to build 'nconf' nconf_SRC =3D nconf.c nconf.gui.c nconf_OBJ =3D $(patsubst %.c,%.o,$(nconf_SRC)) nconf_DEP =3D $(patsubst %.c,%.dep,$(nconf_SRC)) -$(nconf_OBJ) $(nconf_DEP): CFLAGS +=3D $(INTL_CFLAGS) -nconf: LDFLAGS +=3D -lmenu -lpanel -lncurses +$(nconf_OBJ) $(nconf_DEP): CFLAGS +=3D -I/usr/include/ncurses/ $(INTL_CFLA= GS) +nconf: LDFLAGS +=3D -lintl -lmenu -lpanel -lncurses # Under Cygwin, we need to auto-import some libs (which ones, exactly?) # for mconf and nconf to lin properly. --- crosstool-ng-1.15.0_old/kconfig/nconf.c 2012-04-30 16:54:20.0000000= 00 -0400 +++ crosstool-ng-1.15.0/kconfig/nconf.c 2012-05-07 16:47:39.618358900 -0400 @@ -1518,7 +1518,7 @@ } notimeout(stdscr, FALSE); - ESCDELAY =3D 1; + set_escdelay(1); /* set btns menu */ curses_menu =3D new_menu(curses_menu_items); -- For unsubscribe information see http://sourceware.org/lists.html#faq