bug-ncurses
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

webdesign


From: designzz
Subject: webdesign
Date: Sun, 1 Apr 01 16:08:27 +0800

Hello,
 I own a design firm with headquarters in NYC, I wanted to inquire
about  any design work you may have to outsource, Since my 
designers are students & recent grads, as well as  graphic artists 
from all over NYC, I can enter quotes at well below market rate, 
$30 per hour on HTML or JAVA and $35 to $50 per hour on 
Flash depending on the project. We have a couple sources for XML,
but have yet to obtain a project, make an offer. If we can move forward 
and develop a relationship, I can even beat these rates. 
for more info reply to this email with info in the subject title.
 

Hope to hear from you soon.

Richard Miller
22 Greencroft ave.
Staten Island, NY 10308
(646)425-9636
www.sitexposure.net
address@hidden


From address@hidden Wed Apr 04 14:52:20 2001
Received: from phoenix.nanospace.com ([209.213.199.121])
        by fencepost.gnu.org with smtp (Exim 3.16 #1 (Debian))
        id 14ksOB-0007zE-00
        for <address@hidden>; Wed, 04 Apr 2001 14:52:20 -0400
Received: (qmail 16497 invoked from network); 4 Apr 2001 18:52:18 -0000
Received: from workstation-209-213-222-98.yy.com (HELO thune.mrc-home.org) 
(209.213.222.98)
  by phoenix.nanospace.com with SMTP; 4 Apr 2001 18:52:18 -0000
Received: by thune.mrc-home.org (8.10.0) id f34IqIo00757; Wed, 4 Apr 2001 
11:52:18 -0700
Date: Wed, 4 Apr 2001 11:52:18 -0700
From: Mike Castle <address@hidden>
To: Ncurses List <address@hidden>
Subject: Problems building latest patch with gcc 2.95.3 and glibc 2.2.2
Message-ID: <address@hidden>
Reply-To: Mike Castle <address@hidden>
Mail-Followup-To: Mike Castle <address@hidden>,
        Ncurses List <address@hidden>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.3.6i
Sender: address@hidden
Errors-To: address@hidden
X-BeenThere: address@hidden
X-Mailman-Version: 2.0.3
Precedence: bulk
List-Help: <mailto:address@hidden>
List-Post: <mailto:address@hidden>
List-Subscribe: <http://mail.gnu.org/mailman/listinfo/bug-ncurses>,
        <mailto:address@hidden>
List-Id: Bug reports for ncurses,
        the GNU implementation of curses <bug-ncurses.gnu.org>
List-Unsubscribe: <http://mail.gnu.org/mailman/listinfo/bug-ncurses>,
        <mailto:address@hidden>
List-Archive: <http://mail.gnu.org/pipermail/bug-ncurses/>

Home grown linux system.
Kernel 2.4.2.
Glibc 2.2.2
Gcc 2.95.3

It appears that gcc-2.95.3 now comes with sstream.  So, this bit in
cursesw.h gets invoked:

#if HAVE_SSTREAM
#include <sstream>
#else
#include <strstream.h>
#endif


However, this causes a problem in cursesw.cc due to the following:
#if defined(_CPP_CSTDIO)
        if (::vscanf(fmt, args) != -1)
            result = OK;
#else   /* assume pre-gcc 3.0 */
        strstreambuf ss(buf, sizeof(buf));
        if (ss.vscan(fmt, (_IO_va_list)args) != -1)
            result = OK;
#endif


I can see no path in the gcc sstream file that gets to strstreambuf
(granted I spent all of 15 seconds looking).

Any other info needed?
-- 
       Mike Castle       Life is like a clock:  You can work constantly
  address@hidden  and be right all the time, or not work at all
www.netcom.com/~dalgoda/ and be right at least twice a day.  -- mrc
    We are all of us living in the shadow of Manhattan.  -- Watchmen


reply via email to

[Prev in Thread] Current Thread [Next in Thread]