libtool
[Top][All Lists]
Advanced

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

[zzSPAM] Junkmail-Notify (Misc(via-gra))


From: zzHQMAIL1
Subject: [zzSPAM] Junkmail-Notify (Misc(via-gra))
Date: Tue, 24 Feb 2004 11:57:22 -0800

************* eManager Notification **************

Junkmail Notify

Source mailbox: "address@hidden"
Destination mailbox(es): "address@hidden"
Policy: Misc(via-gra)
Action: Delete

******************* End of message *******************
--- Begin Message --- Subject: Libtool Digest, Vol 15, Issue 13
Send Libtool mailing list submissions to
        address@hidden

To subscribe or unsubscribe via the World Wide Web, visit
        http://mail.gnu.org/mailman/listinfo/libtool
or, via email, send a message with subject or body 'help' to
        address@hidden

You can reach the person managing the list at
        address@hidden

When replying, please edit your Subject line so it is more specific
than "Re: Contents of Libtool digest..."


Today's Topics:

   1. [zzSPAM] Junkmail-Notify (Misc(via-gra)) (address@hidden)
   2. Re: tagdemo-make.test fails (Lon Canaday)
   3. Di.scounted Viagr.a Pric.es    bjdzmebrpmgjydsnanebcxrxsu
      (Julia Stewart)
   4. she'll give it up more     ik40j114 (Jonas Crowley)
   5. bigger is better     tvnrv03 (Warren Daniels)


----------------------------------------------------------------------

Message: 1
Date: Mon, 23 Feb 2004 09:15:52 -0800
From: address@hidden
Subject: [zzSPAM] Junkmail-Notify (Misc(via-gra))
To: <address@hidden>
Message-ID: <address@hidden>
Content-Type: text/plain; charset="iso-8859-1"

************* eManager Notification **************

Junkmail Notify

Source mailbox: "address@hidden"
Destination mailbox(es): "address@hidden"
Policy: Misc(via-gra)
Action: Delete

******************* End of message *******************
-------------- next part --------------
An embedded message was scrubbed...
From: address@hidden
Subject: Libtool Digest, Vol 15, Issue 12
Date: no date
Size: 7851
Url: 
http://mail.gnu.org/pipermail/libtool/attachments/20040223/2994d73f/attachment.eml

------------------------------

Message: 2
Date: 23 Feb 2004 14:27:41 -0800
From: Lon Canaday <address@hidden>
Subject: Re: tagdemo-make.test fails
To: Patrick Welche <address@hidden>
Cc: address@hidden
Message-ID: <address@hidden>
Content-Type: text/plain; charset="us-ascii"

It didn't help.  The output of make is given below.

Lon

_________________________________________________

/bin/sh ./libtool --mode=link g++  -g -O2   -o tagdemo  main.o libbaz.la
g++ -g -O2 -o .libs/tagdemo main.o  ./.libs/libbaz.so -lm -Wl,--rpath
-Wl,/usr/local/lib
main.o(.text+0xe): In function `main':
/usr/include/g++-3/iostream.h:106: undefined reference to `cout'
main.o(.text+0x13):/usr/include/g++-3/iostream.h:106: undefined
reference to `ostream::operator<<(char const *)'
main.o(.text+0x1e):/usr/include/g++-3/iostream.h:106: undefined
reference to `endl(ostream &)'
main.o(.text+0x40):/usr/include/g++-3/iostream.h:106: undefined
reference to `cout'
main.o(.text+0x45):/usr/include/g++-3/iostream.h:106: undefined
reference to `ostream::operator<<(char const *)'
main.o(.text+0x4e):/usr/include/g++-3/iostream.h:106: undefined
reference to `ostream::operator<<(int)'
main.o(.text+0x56):/usr/include/g++-3/iostream.h:106: undefined
reference to `endl(ostream &)'
main.o(.text+0x6e):/usr/include/g++-3/iostream.h:106: undefined
reference to `cout'
main.o(.text+0x73):/usr/include/g++-3/iostream.h:106: undefined
reference to `ostream::operator<<(char const *)'
main.o(.text+0x7b):/usr/include/g++-3/iostream.h:106: undefined
reference to `endl(ostream &)'
main.o(.text+0x9f):/usr/include/g++-3/iostream.h:106: undefined
reference to `cout'
main.o(.text+0xa4):/usr/include/g++-3/iostream.h:106: undefined
reference to `ostream::operator<<(char const *)'
main.o(.text+0xac):/usr/include/g++-3/iostream.h:106: undefined
reference to `endl(ostream &)'
main.o(.text+0xda):/usr/include/g++-3/iostream.h:106: undefined
reference to `cout'
main.o(.text+0xdf):/usr/include/g++-3/iostream.h:106: undefined
reference to `ostream::operator<<(char const *)'
main.o(.text+0xe7):/usr/include/g++-3/iostream.h:106: undefined
reference to `endl(ostream &)'
./.libs/libbaz.so: undefined reference to `ostream::operator<<(double)'
collect2: ld returned 1 exit status
make: *** [tagdemo] Error 1

_________________________________________________
On Thu, 2004-02-19 at 12:40, Patrick Welche wrote:

> On Wed, Feb 18, 2004 at 01:25:20PM -0800, Lon Canaday wrote:
> > Sorry, 
> > Here are the details.
> 
> >         main.o(.text+0xe): In function `main':
> >         /usr/include/g++-3/iostream.h:106: undefined reference to `cout'
> 
> Does this help?
> 
> Cheers,
> 
> Patrick
> 
> 
> Index: tests/tagdemo/foo.cpp
> ===================================================================
> RCS file: /cvsroot/libtool/libtool/tests/tagdemo/foo.cpp,v
> retrieving revision 1.1
> diff -u -r1.1 foo.cpp
> --- tests/tagdemo/foo.cpp     14 Oct 2003 21:46:13 -0000      1.1
> +++ tests/tagdemo/foo.cpp     19 Feb 2004 20:35:52 -0000
> @@ -20,11 +20,11 @@
>  // USA.
>  
>  #include "foo.h"
> -#include <iostream.h>
> +#include <iostream>
> +#include <cmath>
>  
> -#ifdef HAVE_MATH_H
> -#include <math.h>
> -#endif
> +using std::cout;
> +using std::endl;
>  
>  // Our C functions.
>  int
> Index: tests/tagdemo/main.cpp
> ===================================================================
> RCS file: /cvsroot/libtool/libtool/tests/tagdemo/main.cpp,v
> retrieving revision 1.1
> diff -u -r1.1 main.cpp
> --- tests/tagdemo/main.cpp    14 Oct 2003 21:46:13 -0000      1.1
> +++ tests/tagdemo/main.cpp    19 Feb 2004 20:35:52 -0000
> @@ -22,8 +22,10 @@
>  
>  #include "foo.h"
>  #include "baz.h"
> -#include <iostream.h>
> +#include <iostream>
>  
> +using std::cout;
> +using std::endl;
>  
>  int
>  main (int, char *[])
-------------- next part --------------
An HTML attachment was scrubbed...
URL: 
http://mail.gnu.org/pipermail/libtool/attachments/20040223/3542d375/attachment.htm

------------------------------

Message: 3
Date: Tue, 24 Feb 2004 03:23:53 +0000
From: "Julia Stewart" <address@hidden>
Subject: Di.scounted Viagr.a Pric.es    bjdzmebrpmgjydsnanebcxrxsu
To: address@hidden, address@hidden
Message-ID: <address@hidden>
Content-Type: text/plain; charset="iso-8859-1"


-------------- next part --------------
An HTML attachment was scrubbed...
URL: 
http://mail.gnu.org/pipermail/libtool/attachments/20040224/60e2e429/attachment.htm

------------------------------

Message: 4
Date: Tue, 24 Feb 2004 15:22:17 +0000
From: "Jonas Crowley" <address@hidden>
Subject: she'll give it up more     ik40j114
To: address@hidden
Message-ID: <address@hidden>
Content-Type: text/plain; charset="us-ascii"

An HTML attachment was scrubbed...
URL: 
http://mail.gnu.org/pipermail/libtool/attachments/20040224/7fb186a2/attachment.htm

------------------------------

Message: 5
Date: Tue, 24 Feb 2004 19:39:40 +0000
From: "Warren Daniels" <address@hidden>
Subject: bigger is better     tvnrv03
To: address@hidden
Message-ID: <address@hidden>
Content-Type: text/plain; charset="us-ascii"

An HTML attachment was scrubbed...
URL: 
http://mail.gnu.org/pipermail/libtool/attachments/20040224/d8ea887d/attachment.htm

------------------------------

_______________________________________________
Libtool mailing list
address@hidden
http://mail.gnu.org/mailman/listinfo/libtool


End of Libtool Digest, Vol 15, Issue 13
***************************************

--- End Message ---

reply via email to

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