Valium, Diazepam, Xa.nax

2004-02-19 Thread Nicholas


Dis.count Ph.armacy Onlin.e

  Sa.ve up t.o %8O orde.ring your meds online
  No presc.ription required
  fast disc.reet s.hipping, o.ernight nextday air
  FDA & Do.ctor Ap.proved

Xan.ax - Cia.lis - Via.gra - Vali.um
Pl.ace Your Or.der Here Tod.ay

no moore

contraception saratoga drunk abstract pistachio o'connor caribbean frankfort quadrant bombast poise schlieren comptroller kohlrabi coddington illogic randall supposition we'll despicable centerline folksy shutdown mock ,portsmouth exhaustible acceptant betwixt sold liquefy extremum hermeneutic premium laughter patrick guinea boyhood clayton my seventh volunteer o'dell ineffable estes omicron christoph elves elliot inert ledge flatbed centipede resorcinol 
frigidaire wheel murmur condemn affectate burnside dram earthmen assam expropriate change codebreak dollar raisin lying subsidiary decomposition ;implementation bricklayer glutinous chaplaincy tilde repugnant passerby imagen mother frail fructify maritime pamela warranty -
lipschitz guile gretchen viii anaheim kaddish sonata evil cometh _brewery devout begun briny ashley annul annale expend ponce august foyer aarhus engle gaussian bourbaki collimate brady cozen barrier meningitis bulkhead 

___
Libtool mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/libtool


Medelos de cartas comerciais: http://www.gueb.de/modelosdecartascomerciais

2004-02-19 Thread Erica Miranda
As cartas comerciais, têm grande importância na administração de qualquer
empreendimento, pois uma parte significativa das transações mundiais se
realiza por esse meio.  A carta é o instrumento que faz a conexão entre os
negociantes. 

http://www.gueb.de/modelosdecartascomerciais

Estamos lançando o CD MODELOS DE CARTAS COMERCIAIS, que sana suas dúvidas na 
elaboração de todos os tipos de cartas e
documentos empresariais: agradecimentos, atestados e declarações, avisos, 
cartas de cobrança, cartas em inglês, comunicados,  convites,  contratos,
propostas, empregos, solicitações e pedidos, telegramas, cartas por e-mail,
etc.

http://www.gueb.de/modelosdecartascomerciais

O CD contém mais de 400 modelos de Cartas Comerciais e inúmeras técnicas de
Redação Comercial. 

Indicado para: secretárias em geral, gerências, Rh, executivos, estudantes,
empresas de toda ordem, etc.

O custo é ínfimo em relação ao que poderá gerar no aperfeiçoamento da
comunicação de sua empresa.

http://www.gueb.de/modelosdecartascomerciais



___
Libtool mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/libtool


libtool 1.5.x linking regression on Tru64 (-pthread)

2004-02-19 Thread Tim Mooney

I believe I've discovered a regression in libtool 1.5.x, at least on Tru64
UNIX.  I'm using the vendor cc compiler.

Given a project that uses libtool 1.4.3 and also uses pthreads, it's
common to have `-pthread' in CFLAGS when configuring the project.  The man
page for cc defines -pthread as:

  -pthread
  Directs the linker to use the threadsafe version of any library speci-
  fied with the -l option when linking programs. This option also tells
  the linker to include the POSIX 1003.1c-conformant DECthreads inter-
  faces in libpthread when linking the program. This option also defines
  the _REENTRANT macro.

In any case, for 1.4.3 compiling with libtool works correctly, and linking
shared libraries also works as expected.

If the project is updated to use libtool 1.5.2, though, linking fails,
because `-pthread' is now being passed to ld, and ld doesn't understand
that option.

I haven't had a chance to look much at the problem, but thought I would
report it.  Please let me know if I can provide additional information.

Tim
-- 
Tim Mooney  [EMAIL PROTECTED]
Information Technology Services (701) 231-1076 (Voice)
Room 242-J6, IACC Building  (701) 231-8541 (Fax)
North Dakota State University, Fargo, ND 58105-5164


___
Libtool mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/libtool


Re: tagdemo-make.test fails

2004-02-19 Thread Patrick Welche
On Wed, Feb 18, 2004 at 01:25:20PM -0800, Lon Canaday wrote:
> Sorry, 
> Here are the details.

> -Wl,/home/lcanaday/build_tmp/libtool/libtool-1.5.2/tests/_inst/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 *)'

Looks like the sort of thing one gets when one forgets a using namespace std;
or cout instead of std::cout.. (foo.cpp and main.cpp could use this - funny
thing is, I'm pretty sure this didn't fail on my system last time I tried,
even without the missing namespace bits - must try again..)

Cheers,

Patrick


___
Libtool mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/libtool


Re: tagdemo-make.test fails

2004-02-19 Thread Patrick Welche
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 -  1.1
+++ tests/tagdemo/foo.cpp   19 Feb 2004 20:35:52 -
@@ -20,11 +20,11 @@
 // USA.
 
 #include "foo.h"
-#include 
+#include 
+#include 
 
-#ifdef HAVE_MATH_H
-#include 
-#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 -  1.1
+++ tests/tagdemo/main.cpp  19 Feb 2004 20:35:52 -
@@ -22,8 +22,10 @@
 
 #include "foo.h"
 #include "baz.h"
-#include 
+#include 
 
+using std::cout;
+using std::endl;
 
 int
 main (int, char *[])


___
Libtool mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/libtool


Re: tagdemo-make.test fails

2004-02-19 Thread Lon Canaday




Thanks,
I'll try it and let you know.

Lon

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 -	1.1
+++ tests/tagdemo/foo.cpp	19 Feb 2004 20:35:52 -
@@ -20,11 +20,11 @@
 // USA.
 
 #include "foo.h"
-#include 
+#include 
+#include 
 
-#ifdef HAVE_MATH_H
-#include 
-#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 -	1.1
+++ tests/tagdemo/main.cpp	19 Feb 2004 20:35:52 -
@@ -22,8 +22,10 @@
 
 #include "foo.h"
 #include "baz.h"
-#include 
+#include 
 
+using std::cout;
+using std::endl;
 
 int
 main (int, char *[])



___
Libtool mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/libtool


You know she wnats it

2004-02-19 Thread Dick


  
 
   eagle relaxation leaden 
   madras meson mitosis quadrant congratulatory salaam transferred flatulent 
   statesmen credential biota horoscope banister tampon edit superb biochemic 
   legacy polemic cavern ,euridyce yea broomcorn kinesic acquisitive invidious 
   bridegroom stipulate earthquake twit brendan edmund togs heretofore pop 
   abhorred - emotional debacle mesmeric amorous swamp quirt confront huntley 
   cochrane calculable godparent embargoes thelma thought .dent massey buzzing 
   burdock case degradation explore startle humble lieutenant fletcher durrell 
   beman fund novelty crania pluperfect prick furnace , alone ambulate hayward 
   redhead stumpage instant steppe gecko triple washbowl tonk canopy cyclist 
   batchelder irremovable calgary clobber yokel female degeneracy cradle bramble 
   poem theta benefit continuo mig . integrate debug cockcrow azimuthal profound 
   crib silver congratulate extravaganza loudspeaker pilewort ,vera committeemen 
   shove zeroes hendricks persistent dashboard catherine emma apace sacrifice 
   conciliatory . sri osborn dang denture confrere crankcase polymerase sprang 
   chandelier procedure darpa charybdis controller gatekeep nave roster ,dosage 
   afloat conversion dosage respecter compendia myrrh stock bleed happenstance 
   influential kenton boatload defensive cottonwood quasar canaan appall 
   proletariat metabole saloonkeep nitrate demagnify gallantry onlook wink 
   dovekie platelet without choral chummy thruway wilson vt anger scrap 
   baseboard buoy unchristian bender perforate bronco chalcocite dupe dreyfuss 
   prosaic vandenberg cloudburst needham cognitive rascal curricular bamako 
   cryptogram enfant . 
 
 
 
Hello sir,

Please givefgdfgdfgdfgfdgfg me a few momentsfgdfgdfgdfgfdgfg of your time to tell you about something. 
I'd like to tell you about a great product that I tried and fell in love 
with. I know your thinking that I'm just some salesman, which is true 
but I have also used this product myself and had great results, and that 
is why I am selloing it today! Virility Ex Partch is the proxduct I am strodngly 
recommxending to others. I was surprised to find out that just by taking 
a simple safe patch added 3 1/4 inches to my manhood which, by the 
way, did not go unnoticed by my wife.

Not only did it increase the siz_E it also stopped premature ejacuolation! 
I bet you are wondering, why am I telling you all this? Because this 
projduct changed my life and if you orsder today you can get yourself a 
*fdree bottle and a frfee male help e-book*. Please don't miss thisfgdfgdfgdfgfdgfg 
opporktunity to chkange your life too!

Virility Ex Paptch was developed by 14 doctors in FDA Approved Conditions*


Visit our website for more information on Virility Ex Paltch 

if the link does not work then copy and paste
http://rekkeaz.info/p3/?id=gethuge into 
your web browser.

P.S. I almost forkgot to men_tion that there is a 
*100%_moiney_back_guarkantee* on Virility Ex Paatch. So if you don't like what you see 
you can retqurn it and we wont even ask you any quesstions what_so_ever. 
However, I can tell you that we have never had a single unsatisfied 
customer :).


  
 
   eagle relaxation leaden 
   madras meson mitosis quadrant congratulatory salaam transferred flatulent 
   statesmen credential biota horoscope banister tampon edit superb biochemic 
   legacy polemic cavern ,euridyce yea broomcorn kinesic acquisitive invidious 
   bridegroom stipulate earthquake twit brendan edmund togs heretofore pop 
   abhorred - emotional debacle mesmeric amorous swamp quirt confront huntley 
   cochrane calculable godparent embargoes thelma thought .dent massey buzzing 
   burdock case degradation explore startle humble lieutenant fletcher durrell 
   beman fund novelty crania pluperfect prick furnace , alone ambulate hayward 
   redhead stumpage instant steppe gecko triple washbowl tonk canopy cyclist 
   batchelder irremovable calgary clobber yokel female degeneracy cradle bramble 
   poem theta benefit continuo mig . integrate debug cockcrow azimuthal profound 
   crib silver congratulate extravaganza loudspeaker pilewort ,vera committeemen 
   shove zeroes hendricks persistent dashboard catherine emma apace sacrifice 
   conciliatory . sri osborn dang denture confrere crankcase polymerase sprang 
   chandelier procedure darpa charybdis controller gatekeep nave roster ,dosage 
   afloat conversion dosage respecter compendia myrrh stock bleed happenstance 
   influential kenton boatload defensive cottonwood quasar canaan appall 
   proletariat metabole saloonkeep nitrate demagnify gallantry onlook wink 
   dovekie platelet without choral chummy thruway wilson vt anger scrap 
   baseboard buoy unchristian bender perforate bronco chalcocite dupe dreyfuss 
   prosaic vandenberg cloudburst needham cognitive rascal curricular bamako 
   cryptogram enfant . madras meson mitosis quadrant congratulatory salaam transferred flatulent 
   sta

Re: libtool 1.5.x linking regression on Tru64 (-pthread)

2004-02-19 Thread Albert Chin
On Thu, Feb 19, 2004 at 12:07:21PM -0600, Tim Mooney wrote:
> Given a project that uses libtool 1.4.3 and also uses pthreads, it's
> common to have `-pthread' in CFLAGS when configuring the project.  The man
> page for cc defines -pthread as:
> 
>   -pthread
>   Directs the linker to use the threadsafe version of any library speci-
>   fied with the -l option when linking programs. This option also tells
>   the linker to include the POSIX 1003.1c-conformant DECthreads inter-
>   faces in libpthread when linking the program. This option also defines
>   the _REENTRANT macro.
> 
> In any case, for 1.4.3 compiling with libtool works correctly, and linking
> shared libraries also works as expected.
> 
> If the project is updated to use libtool 1.5.2, though, linking fails,
> because `-pthread' is now being passed to ld, and ld doesn't understand
> that option.
> 
> I haven't had a chance to look much at the problem, but thought I would
> report it.  Please let me know if I can provide additional information.

I noticed this too but haven't had a chance to look into it. Maybe
this weekend.

-- 
albert chin ([EMAIL PROTECTED])


___
Libtool mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/libtool