please see. Thanks yr74xMJBdW9iyonuWK8y9jgs
beauty mtv KBPUIgvoIxgvUW4vurjXJO
far friend good luck C6GaNWE7Ey0Ah57Z5
super news v66aw63UpmlqHdUWfU
nice foto 5CTrOgppFmQkjcxiGkTUfcy3
good mtv QDcqbbp5wa9LQ6rn0ma1Q
super news ORz4ppV1NGtfFxE
good friend xzZwuJML5NDx7jGiApm
tell you a great new kuBi4Hc5HLZMvVt9nvH74
please see thanks HPKr78JUnc6iAJbkB3CL1l6q
please see see OHRE8rV5uOrOHviY
good news oOjSJo2usB74Xci0fCWAfBb
from heaven 1f4PNq2BwF5BdvK
Automake spam since last night
I'm usually pretty tolerant because I have decent filters and a DSL pipe, but this is extreme and needs to be stopped: $ egrep '^(Sender|Date):' nsmail/Dubious Date: Fri, 03 May 2002 22:42:56 -0400 Sender: [EMAIL PROTECTED] Date: Fri, 03 May 2002 22:55:41 -0400 Sender: [EMAIL PROTECTED] Date: Fri, 03 May 2002 23:24:26 -0400 Sender: [EMAIL PROTECTED] Date: Fri, 03 May 2002 23:33:02 -0400 Sender: [EMAIL PROTECTED] Date: Sat, 04 May 2002 01:24:22 -0400 Sender: [EMAIL PROTECTED] Date: Fri, 03 May 2002 21:26:32 + Date: Sat, 04 May 2002 04:37:17 -0400 Sender: [EMAIL PROTECTED] Date: Sat, 04 May 2002 04:37:32 -0400 Sender: [EMAIL PROTECTED] Date: Sat, 04 May 2002 04:39:23 -0400 Sender: [EMAIL PROTECTED] Date: Sat, 04 May 2002 05:08:03 -0400 Sender: [EMAIL PROTECTED] Date: Sat, 04 May 2002 05:37:33 -0400 Sender: www <[EMAIL PROTECTED]> Date: Sat, 04 May 2002 06:42:36 -0400 Sender: [EMAIL PROTECTED] Date: Sat, 04 May 2002 06:21:01 -0400 Sender: [EMAIL PROTECTED] Date: Sat, 04 May 2002 07:13:41 -0400 Sender: [EMAIL PROTECTED] Date: Sat, 04 May 2002 07:15:56 -0400 Sender: [EMAIL PROTECTED] Date: Sat, 04 May 2002 06:50:31 -0400 Sender: [EMAIL PROTECTED] Date: Sat, 04 May 2002 09:06:32 -0400 Sender: [EMAIL PROTECTED] Date: Sat, 04 May 2002 09:41:57 -0400 Sender: [EMAIL PROTECTED] Date: Sat, 04 May 2002 09:47:26 -0400 Sender: [EMAIL PROTECTED] Date: Wed, 27 Mar 2002 11:30:46 + Date: Sat, 04 May 2002 10:32:08 -0400 Sender: [EMAIL PROTECTED] == Bruce Korb AG URL: http://autogen.sourceforge.net
to the heaven CIHthR5q7hSi21qZy9RgsB
Fresh Email Lists at Unbelievable Prices
Title: DISCLAIMER DISCLAIMER The Freshest Bulk Email Lists at Deep Discount Prices Datasurplus is the best source for bulk email lists. All lists are harvested within the last 3 weeks. All lists are filtered for undesirable addresses such as "administrator", "info", and other unfavorable addresses. All lists contain ".com", ".net", and ".org" addresses only. CLICK HERE TO ORDER NOW 25,000 email addresses$9.9550,000 email addresses$14.95100,000 email addresses$24.95250,000 email addresses$39.95500,000 email addresses$54.951,000,000 email addresses$69.95 CLICK HERE TO ORDER NOW DISCLAIMER: DO NOT REPLY TO THIS EMAIL. Please click here to opt-out of future mailings. You will be taken off our list at once. We apologize for any inconvenience.
Re: Automake spam since last night
Bruce Korb <[EMAIL PROTECTED]> writes: > I'm usually pretty tolerant because I have decent filters > and a DSL pipe, but this is extreme and needs to be stopped: [...] It's not just the automake list; I'm seeing this on bug-gnu-utils too. I'm not convinced that having the lists completely open is a good idea with the amount of spam nowadays. Only allowing subscribers to post (like on SourceForge) would stop virtually all spam, and anyone who wants to post justs needs to subscribe (like everyone who wants to recieve the list). IIRC all posts from non-subscribers are held and can be either rejected or accepted by the list admin. -- Roger Leigh ** Registration Number: 151826, http://counter.li.org ** Need Epson Stylus Utilities? http://gimp-print.sourceforge.net/ GPG Public Key: 0x25BFB848 available on public keyservers
Re: Automake spam since last night
Bruce> I'm usually pretty tolerant because I have decent filters Bruce> and a DSL pipe, but this is extreme and needs to be stopped: Talk to the FSF sysadmins. There's nothing I can do about it. Tom
Re: monolithic Makefile.am
> "Richard" == Richard Boulton <[EMAIL PROTECTED]> writes: Richard> I split mine up into sub-files, one in each directory, using Richard> "include". This sounds good. Richard> Each subMake.am must add itself to EXTRA_DIST. Also, all Richard> paths inside subMake.am have to be relative to the top Richard> Makefile. Variables which may have entries added in several Richard> places (such as CFLAGS) are set to an empty value in Richard> Makefile.am, and appended to in subMake.am's. Long term I'd like us to ease this sort of thing. My working idea is to have a new `import' command which is like `include' but understands about directory structure. So for instance it would know that `bin_PROGRAMS = foo' in subdir would really mean `bin_PROGRAMS = subdir/foo'. Also all the normal targets would have subdir versions, so you could invoke `make subdir/mostlyclean'. There are a lot of details to solve. And the implementation will be hard, since it will touch basically everything. Richard> I've not worked out a solution for letting each subMake.am Richard> add something to a rule such as "install-local". There isn't a good way right now. Having a method to do this would be good. Could you submit a PR for it? Tom
RE: monolithic Makefile.am
> -Original Message- > From: Tom Tromey [mailto:[EMAIL PROTECTED]] > Sent: Sunday, May 05, 2002 11:18 AM > Long term I'd like us to ease this sort of thing. > > My working idea is to have a new `import' command which is > like `include' but understands about directory structure. So > for instance it would know that `bin_PROGRAMS = foo' in > subdir would really mean `bin_PROGRAMS = subdir/foo'. Also > all the normal targets would have subdir versions, so you > could invoke `make subdir/mostlyclean'. I hacked up an import command. It was simply a variant on include, that appended the include prefix to any relative paths. It worked so-so, but I didn't have time to make it work well enough to submit it. Anyway, for someone who actually understands automakes innards, it should be pretty simple: refactor the standard include to perform canonicalisation with a handed-in prefix, and then for normal include statements, use no prefix, for imports use the path to the importee as the prefix. I don't have the code around now, but IIRC I sent a proof-of-concept patch to the list. > There are a lot of details to solve. And the implementation > will be hard, since it will touch basically everything. It didn't need to when I fiddled. The things that I ran into have largely been solved now (subdir_objects etc were more buggy then). All the rules are subdir and other dir aware, so it's only the transformation of the include that matters. And I accomplished that by setting the current logical dir to the one the importee was in before processing, and restoring the logical dir afterwards. Rob
RE: monolithic Makefile.am
In fact, here are some of the references... http://sources.redhat.com/ml/automake/2001-08/msg00061.html http://sources.redhat.com/ml/automake/2001-08/msg00088.html http://sources.redhat.com/ml/automake/2001-08/msg00109.html http://sources.redhat.com/ml/automake/2001-08/msg00113.html Msg 113 highlights one of the nasties that does turn up - local user ruels of the @ for foo in $(MACRO) form. http://sources.redhat.com/ml/automake/2001-08/msg00112.html is the proof-of-concept I sent in. Have fun, Rob
How mush money can you make with $25
Dear Future Millionaire: I'll make you a promise. READ THIS E-MAIL TO THE END! - follow what it says to the letter - and you will not worry whether a RECESSION is coming or not, who is President, or whether you keep your current job or not. Yes, I know what you are thinking. I never responded to one of these before either. One day though, something just said "you throw away $25.00 for many useless products". "What the heck." Believe me, no matter where you believe "those feelings" come from, I thank every day that I had that feeling. I cannot imagine where I would be or what I would be doing had I not. Read on. It's true, every word of it. It is legal. I checked. Simply because you are buying and selling something of value. AS SEEN ON NATIONAL TV: Making over half million dollars every 4 to 5 months from your home. THANK'S TO THE COMPUTER AGE AND THE INTERNET ! == BE AN INTERNET MILLIONAIRE LIKE OTHERS WITHIN A YEAR!!! Before you say ''Bull'', please read the following. This is the letter you have been hearing about on the news lately. Due to the popularity of this letter on the Internet, a national weekly news program recently devoted an entire show to the investigation of this program described below, to see if it really can make people money. The show also investigated whether or not the program was legal. Their findings proved once and for all that there are ''absolutely NO Laws prohibiting the participation in the program and if people can "follow the simple instruction" they are bound to make some mega bucks with only $25 out of pocket cost''. DUE TO THE RECENT INCREASE OF POPULARITY & RESPECT THIS PROGRAM HAS ATTAINED, IT IS CURRENTLY WORKING BETTER THAN EVER. This is what one had to say: '' Thanks to this profitable opportunity". I was approached many times before but each time I passed on it. I am so glad I finally joined just to see what one could expect in return for the minimal effort and money required. To my astonishment, I received a total $610,470.00 in 21 weeks, with money still coming in''. Pam Hedland, Fort Lee, New Jersey. Another said: "this program has been around for a long time but I never believed in it. But one day when I received this again in the mail I decided to gamble my $25 on it. I followed the simple instructions and walaa . 3 weeks later the money started to come in. First month I only made $240.00 but the next 2 months after that I made a total of $290,000.00. So far, in the past 8 months by re-entering the program, I have made over $710,000.00 and I am playing it again. The key to success in this program is to follow the simple steps and NOT change anything.'' More testimonials later but first, === PRINT THIS NOW FOR YOUR FUTURE REFERENCE If you would like to make at least $500,000 every 4 to 5 months easily and comfortably, please read the following...THEN READ IT AGAIN and AGAIN !!! FOLLOW THE SIMPLE INSTRUCTION BELOW AND YOUR FINANCIAL DREAMS WILL COME TRUE, GUARANTEED! INSTRUCTIONS: =Order all 5 reports shown on the list below = For each report, send $5 CASH, THE NAME & NUMBER OF THE REPORT YOU ARE ORDERING and YOUR E-MAIL ADDRESS to the person whose name appears ON THAT LIST next to the report. MAKE SURE YOUR RETURN ADDRESS IS ON YOUR ENVELOPE TOP LEFT CORNER in case of any mail problems. ===WHEN YOU PLACE YOUR ORDER, MAKE SURE === ===YOU ORDER EACH OF THE 5 REPORTS! === You will need all 5 reports so that you can save them on your computer and resell them. YOUR TOTAL COST $5 X 5 = $25.00. Within a few days you will receive, via e-mail, each of the 5 reports from these 5 different individuals. Save them on your computer so they will be accessible for you to send to the 1,000's of people who will order them from you. Also make a floppy of these reports and keep it on your desk in case something happens to your computer. IMPORTANT - DO NOT alter the names of the people who are listed next to each report, or their sequence on the list, in any way other than what is instructed below in step '' 1 through 6 '' or you will loose out on the majority of your profits. Once you understand the way this works, you will also see how it does not work if you change it. Remember, this method has been tested, and if you alter it, it will NOT work !!! People have tried to put their friends/relatives names on all five thinking they could get all the money. But it does not work this way. Believe us, some have tried to be greedy and then nothing happened. So, Do not try to change anything other than what is instructed. Because if you do, it will not work for you. Remember, honesty reaps the reward!!! This IS a legitimate BUSINESS. You are offering a product for sale and getting paid for it. Treat it as such and you will be VERY profitable