We invite you to visit our Internet-stock exchange of the criminal goods and services!

2005-06-22 Thread mazafaka
Dear Internet-user, The Internet-stock exchange " Mazafaka. CC " in partnership with " FDCservers. Net " call attention  to you the huge list of the criminal goods and services on our joint the Internet-resource. 
The introduction. How it was. 
In the beginning of 2004 we Le Ministre and Render, founders of the project of the first Internet-stock exchange of the criminal goods and services, have decided to unite our advertising potential with technical opportunities FDCservers. Net. Lately our project became a unique public place of advertising of the illegal goods and services, you will not be able to find the same anywhere in the Internet! At this moment we have more than 5,000 customers of our stock exchange worldwide! 
The present.

We offer you a unique opportunity, to receive of what you could not earlier 
even think! To buy or take advantage of an enormous spectrum of various kinds 
of the goods and services!
For example:

"Any stamps and seals for your business."
http://www.carding.ru/showthread.php?t=16482
"I'm offer development and creative any kind of stamps and seals ( not emboss, 
print only ). If you need stamp of any notary, arrival/departure of any country and 
many many more - you're welcome.
The best way to get high quality stamp and reasonable price is send me scanned 
original stamp ( 300 or 600 dpi only! ) I'm reviewed on this service in russian 
part of this forum.

Every stamp cost different money. For example stamps af ariival/departure cost 
$40 per stamp. If stamp have microelements, cost will be higher.

Payment options.
1. You must pay 100% cost before I begin work with your stuff.
2. I accept E-gold ( preferred ), Western Union and Webmoney

Delivery options.
I can send you stamp by regular mail, Air mail, UPS, DHL ( please, remember, 
that delivery by UPS and DHL from Russia to foreign countries cost very high, 
around $30-40 per parcel ). Also, send me info about country of delivery BEFORE 
pay money.

My contacts.
ICQ 333204733 ( preferred )
Email [EMAIL PROTECTED]"

--

"Napalmlight Dumps for sale--Best around"
http://www.carding.ru/showthread.php?t=15568
"ALL DUMPS ARE FRESH SKIMMED AND COME WITH ORIGINAL TRACK1 & TRACK2 , THIS ASSURE THAT THEY WONT BE A PICKUP. 
LATIN AMERICAN SKIMMED DUMPS

PRICES :
CLASSICS & MASTERCARD $60
GOLDS - PLATINUMS - BUSSINES ETC $80
NEW SERVICE
NEW DUMPS ARIVED UK SKIMMED AND FRESH
CLASSICS $90
GOLDS,PLAT,BUSSINES,DELTA $150
SAME QUALITIE .
MINIMUM ORDER: $300.00 
WU & E GOLD


TURNOVER TIME:
WHEN MONEY IS PICKED UP
( USUALLY THE SAME DAY OR HOURS AFTER ORDER IS RECEIVED ,DEPENDING OF LOCAL 
TIME)

CONTACT INFO:
ICQ: 252870445
EMAIL: [EMAIL PROTECTED]"

-

"Full Info CCs -eBays - PayPals For Sale"
http://www.carding.ru/showthread.php?t=12985
"Dear Members , i am selling : 

eBay Accounts : 
Contact for prices . 
Full info CCs : ( PIN - SSN - MMN - DOB - CVV2 and all other info . ) 
10$/ each " 100$ min order " 


COBs : if you dont know what is cob . READ this 
http://www.mazafaka.cc/showthread.php?p=93094#post93094
1k-3k >>> 120 $ 
4k-7k >>> 140$ 
8k-13k >>> 170$ 
14k -21k >>> 200$ 
* all my COBs come with CC # - full name - billing address - CVV2 - PIN - SSN - DOB - MMN - eBay Or PayPal Account . & Login - pass for the online access . 
Pay for 5 COBs . GET 1 Free COB 
Pay for 10 COBs . Get 3 Free COBs 
pay For 20 COBs . Get 7 Free COBs 
Good Discount for +1k orders 

PayPals : 
3$ / account - min order " $ 500 " I dont check if the account with email access or not . 

FAQ : 
1- When i Will Receive My Order ? 
* for E-gold payments . You will receive ur order Same Day- WU payment : you must wait 1-2 DAYs . 

2- Can i Ask for bins From my List ? 
* No , you can't 

3- How Can I Contact You ? 
* by ICQ , 588 Or email : [EMAIL PROTECTED]"


At our stock exchange you can find the goods or services for all tastes! If you were interested with our offer you can visit our resource to following addresses: 
http://www.mazafaka.cc

http://www.carding.ru
If you have any questios please contact us by fillowing e-mail's:
[EMAIL PROTECTED] (main questions about the service )
[EMAIL PROTECTED] (technical questions)





Re: FYI: loop in libtool m4 macros

2005-06-22 Thread Ralf Wildenhues
Hi Stepan,

* Stepan Kasal wrote on Tue, Jun 21, 2005 at 05:38:57PM CEST:
>
>   sorry for the delay, I was offline until today.

No worries.

> 1)
> m4/ltsugar.m4:
> 
> If you want to be compatible with both old and new m4_cdr, you have to
> use:
>   m4_if([$2], [[]], [],
> [$2], [], [],
> [lt_join(...
> 
> I apologize for the inconvinience, but I believe this was a good step
> in the long time perspective.

Well, the interface was not published, so I guess Libtool can't complain
too much.  Your change looks much better than my hack.  Thanks.

> 2)
> In the code of lt_combine cited above, I noticed that you use
>   m4_quote(m4_default([$1], [, ])
> 
> Do you know that this removes all spaces after commas and is effectively
> the same as
>   m4_quote(m4_default([$1], [,])
> ?

Oh, this code was written by Gary, and I have shyed away from it as much
as I could, as m4-literate as I am.  But I think I can see your point.

> I suggest that you use the following instead:
> 
>   m4_ifval([$1], [[$1]], [[, ]])
> 
> This way the first argument to lt_join will be $1, defaulting to ", ".

Hmm.  Neither m4_ifval nor m4_default are published interface by
Autoconf.  So are you telling me above is bound to be less prone
to interface changes than, say,

|   m4_quote(m4_default([$1], [[, ]])

?  Would the latter even be m4-correctly quoted (with correctness being
what the Autoconf manual advises)?

> 3)
> m4/ltoptions.m4
> >  m4_define([_LT_SET_OPTIONS],
> > -[AC_FOREACH([_LT_Option], [$1], [...]
> > +[m4_if([$1], [], [],
> > +   [AC_FOREACH([_LT_Option], [$1], [...]
> 
> This change is a workaround for a bug I introduced.
> Please remove the workaround, as the bug is now fixed in the Autoconf CVS.

When was the bug introduced?  If only with the m4_cdr change, then OK.
If before, I might want to leave this in just to be sure.

Thanks for your explanations.  I will commit what end result we can
agree on.

Regards,
Ralf




Re: FYI: loop in libtool m4 macros

2005-06-22 Thread Ralf Wildenhues
[ Unintentional private reply? ]

Hi Stepan,

* Stepan Kasal wrote on Wed, Jun 22, 2005 at 02:22:38PM CEST:
> 
> > > 1)
> > > m4/ltsugar.m4:
> > > 
> > > If you want to be compatible with both old and new m4_cdr, you have to
> > > use:
> > >   m4_if([$2], [[]], [],
> > > [$2], [], [],
> > > [lt_join(...
> > > 
> > > I apologize for the inconvinience, but I believe this was a good step
> > > in the long time perspective.
> > 
> > Well, the interface was not published, so I guess Libtool can't complain
> > too much.  Your change looks much better than my hack.  Thanks.
> 
> No, your change is corrent, mine is a hack.
> 
> Correct code is:
> m4_if([$2], [], [], [lt_join(...
> 
> or, equivalently
> m4_ifval([$2], [lt_join(...
> 
> But this _correct_ code doesn't work with previous buggy versions of m4_cdr.

ACK.

> To make the code portable, there are two ways:
> a) my hack cited above

OK.

> b) m4_define([my_cdr], ...) -- copy the definition of m4_cdr from current
>autoconf
>Then use my_cdr instead of m4_cdr in your code.

This is what I ended up doing:
http://lists.gnu.org/archive/html/libtool-patches/2005-06/msg00121.html

> I think b) is better.  Would you agree?

b is fine with me, it's already in place.  :)
a would have been shorter.  But b is also more straightforward to rip
out once Autoconf-2.60 is established (and m4_cdr published).  So let's
leave it like it is currently.

> 2)
> > |   m4_quote(m4_default([$1], [[, ]])
> 
> m4_quote doesn't do what it should, as it uses [$*].
> That means that all whitespace after commas is stripped.

Is this a bug in m4_quote?   Is this an unfixable bug (because that
thing is published and used)?

> It's better to add a pair  of quotes in advance.
> 
> The above code is equivalent to:
> m4_quote(m4_ifval([$1], [$1], [[, ]]))
> So if $1 is " a, b", both spaces will be removed.

> I suggested
>   m4_ifval([$1], [[$1]], [[, ]])
> which preserves whitespace in both cases.

Hmm.  This idiom is used in several places in Libtool HEAD's m4 files.
Just replacing them with your suggestion leads to brackets in the
resulting `configure'.  So there is either some more workarounds to make
up for the different style, or some other misunderstanding.

See the patch below for what I have tried (and does not work), and bear
with me, I still read m4 like a foreign language I just started.

> > > 3)
> > > m4/ltoptions.m4
> > > >  m4_define([_LT_SET_OPTIONS],
> > > > -[AC_FOREACH([_LT_Option], [$1], [...]
> > > > +[m4_if([$1], [], [],
> > > > +   [AC_FOREACH([_LT_Option], [$1], [...]
> > > 
> > > This change is a workaround for a bug I introduced.
> > > Please remove the workaround, as the bug is now fixed in the Autoconf CVS.
> > 
> > When was the bug introduced?  If only with the m4_cdr change, then OK.
> 
> Yes, the bug was introduced when I fixed m4_cdr and forgot to fix m4_strip.
> So the bug lived only for very short in the CVS version.

Thank you.  I will remove this patch then.

Regards,
Ralf

This part seems OK:

Index: m4/ltoptions.m4
===
RCS file: /cvsroot/libtool/libtool/m4/ltoptions.m4,v
retrieving revision 1.11
diff -u -r1.11 ltoptions.m4
--- m4/ltoptions.m4 11 Jun 2005 11:11:45 -  1.11
+++ m4/ltoptions.m4 22 Jun 2005 13:44:05 -
@@ -51,14 +51,12 @@
 # dispatch to that macro; otherwise complain about the unknown option
 # and exit.
 m4_define([_LT_SET_OPTIONS],
-[m4_if([$1], [], [],
-   [AC_FOREACH([_LT_Option], [$1],
-  [_LT_SET_OPTION(_LT_Option)
-   m4_ifdef(_LT_MANGLE_DEFUN(_LT_Option),
-_LT_MANGLE_DEFUN(_LT_Option),
-   [m4_fatal([Unknown option `]_LT_Option[' to 
LT][_INIT_LIBTOOL])])
-  ])dnl
-   ])
+[AC_FOREACH([_LT_Option], [$1],
+[_LT_SET_OPTION(_LT_Option)
+m4_ifdef(_LT_MANGLE_DEFUN(_LT_Option),
+_LT_MANGLE_DEFUN(_LT_Option),
+   [m4_fatal([Unknown option `]_LT_Option[' to LT][_INIT_LIBTOOL])])
+])dnl
 dnl
 dnl Simply set some default values (i.e off) if boolean options were not
 dnl specified:



This patch is not OK:

Index: m4/libtool.m4
===
RCS file: /cvsroot/libtool/libtool/m4/libtool.m4,v
retrieving revision 1.197
diff -u -r1.197 libtool.m4
--- m4/libtool.m4   18 Jun 2005 16:49:52 -  1.197
+++ m4/libtool.m4   22 Jun 2005 13:44:05 -
@@ -357,7 +357,7 @@
 # lt_decl_varnames_tagged([SEPARATOR], [VARNAME1...])
 # 
 m4_define([lt_decl_varnames_tagged],
-[_$0(m4_quote(m4_default([$1], [[, ]])),
+[_$0(m4_ifval([$1], [[$1]], [[, ]]),
  m4_quote(m4_if([$2], [],
 m4_quote(lt_decl_tag_varnames),
  m4_quote(m4_shift($@,
@@ -368,7 +368,7 @@
 # lt_decl_all_varnames([SEPARATOR], [VARNAME1...])
 # 
 m4_def