public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [deleted]
@ 2004-06-30 16:21 ncm
  0 siblings, 0 replies; 4+ messages in thread
From: ncm @ 2004-06-30 16:21 UTC (permalink / raw)
  To: gcc-bugs

[deleted]
>From gcc-bugzilla@gcc.gnu.org Wed Jun 30 16:31:00 2004
From: "skunk@iskunk.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libgcj/16300] New: Bug in vendor /usr/include/net/if.h needs fixincluding
Date: Wed, 30 Jun 2004 16:31:00 -0000
Message-id: <20040630163127.16300.skunk@iskunk.org>
X-SW-Source: 2004-06/msg03955.html
Content-length: 4347

This error came up in bootstrapping:

----(cut here)----
/mnt/scratch/gcc-3.4.0/gcc/xgcc -shared-libgcc -B/mnt/scratch/gcc-3.4.0/gcc/
-nostdinc++ -L/mnt/scratch/gcc-3.4.0/alphaev56-dec-osf4.0g/libstdc++-v3/src
-L/mnt/scratch/gcc-3.4.0/alphaev56-dec-osf4.0g/libstdc++-v3/src/.libs
-B/mnt/freeport/arch/tru64/alphaev56-dec-osf4.0g/bin/
-B/mnt/freeport/arch/tru64/alphaev56-dec-osf4.0g/lib/ -isystem
/mnt/freeport/arch/tru64/alphaev56-dec-osf4.0g/include -isystem
/mnt/freeport/arch/tru64/alphaev56-dec-osf4.0g/sys-include -DHAVE_CONFIG_H -I.
-I/mnt/freeport/src/gcc/current/libjava -I./include -I./gcj
-I/mnt/freeport/src/gcc/current/libjava -Iinclude
-I/mnt/freeport/src/gcc/current/libjava/include
-I/mnt/freeport/src/gcc/gcc-3.4.0/boehm-gc/include -pthread -DGC_OSF1_THREADS=1
-DSILENT=1 -DNO_SIGNALS=1 -DALL_INTERIOR_POINTERS=1 -DJAVA_FINALIZATION=1
-DGC_GCJ_SUPPORT=1 -DATOMIC_UNCOLLECTABLE=1
-I/mnt/freeport/src/gcc/current/libjava/libltdl
-I/mnt/freeport/src/gcc/current/libjava/libltdl
-I/mnt/freeport/src/gcc/current/libjava/.././libjava/../gcc
-I/mnt/freeport/src/gcc/current/libjava/../zlib
-I/mnt/freeport/src/gcc/current/libjava/../libffi/include -I../libffi/include
-O2 -g -mieee -fno-rtti -fnon-call-exceptions -pthread -fdollars-in-identifiers
-Wswitch-enum -mieee -W -Wall -D_GNU_SOURCE
-DPREFIX=\"/mnt/freeport/arch/tru64\" -DLIBDIR=\"/mnt/freeport/arch/tru64/lib\"
-DBOOT_CLASS_PATH=\"/mnt/freeport/arch/tru64/share/java/libgcj-3.4.0.jar\" -g
-O2 -mieee -MD -MT java/net/natNetworkInterface.lo -MF
java/net/natNetworkInterface.pp -c java/net/natNetworkInterface.cc -o
java/net/natNetworkInterface.o
In file included from java/net/natNetworkInterface.cc:35:
/usr/include/net/if.h:144: error: expected `;' before '}' token
/usr/include/net/if.h:144: error: expected `;' before '}' token
java/net/natNetworkInterface.cc: In static member function `static
java::util::Vector* java::net::NetworkInterface::getRealNetworkInterfaces()':
java/net/natNetworkInterface.cc:77: warning: comparison between signed and
unsigned integer expressions
gmake[3]: *** [java/net/natNetworkInterface.lo] Error 1
gmake[3]: Leaving directory `/mnt/scratch/gcc-3.4.0/alphaev56-dec-osf4.0g/libjava'
gmake[2]: *** [all-recursive] Error 1
gmake[2]: Leaving directory `/mnt/scratch/gcc-3.4.0/alphaev56-dec-osf4.0g/libjava'
gmake[1]: *** [all-target-libjava] Error 2
gmake[1]: Leaving directory `/mnt/scratch/gcc-3.4.0'
gmake: *** [bootstrap-lean] Error 2
----(cut here)----

Relevant snippet of the offending header file:

----(cut here)----
/*
 * struct used to identify virtual mac addresses. This are
 * created by the ARP code and will be used to identify non
 * default mac addresses. The list will be hashed to allow
 * for faster searches.
 * NOTE: that the flags field must be at the correct offset
 *       since this and the ifnet struct should be interchangable
 *       till a user can determin that this entry is a vmac ifnet
 */
struct vmac_ifnet {
        struct  vmac_ifnet *vmif_next;  /* the next structure in the list */
        char    *vmif_name;             /* name, e.g. ``en'' or ``lo'' */
        char    *vmif_version;          /* The version string.             */
        struct  sockaddr vmif_hwaddr;   /* address of interface */
        int     vmif_flags;             /* up/down, broadcast, etc. */
        int     vmif_refcnt;            /* last one out needs to delete this */
        struct  ifnet *vmif_ifnet;      /* point to the correct ifnet struct */
        struct  sockaddr vmif_paddr     /* protocol address */
};
----(cut here)----

Note the missing semicolon.

I was able to work around this by placing an edited if.h with other fixed
headers in gcc-3.4.0/gcc/include/root/usr/sys/include/net/.

-- 
           Summary: Bug in vendor /usr/include/net/if.h needs fixincluding
           Product: gcc
           Version: 3.4.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: libgcj
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: skunk at iskunk dot org
                CC: gcc-bugs at gcc dot gnu dot org,java-prs at gcc dot gnu
                    dot org
 GCC build triplet: alphaev56-dec-osf4.0g
  GCC host triplet: alphaev56-dec-osf4.0g
GCC target triplet: alphaev56-dec-osf4.0g


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16300


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [deleted]
@ 2004-06-30 17:02 fam
  0 siblings, 0 replies; 4+ messages in thread
From: fam @ 2004-06-30 17:02 UTC (permalink / raw)
  To: gcc-bugs

[deleted]
>From gcc-bugzilla@gcc.gnu.org Wed Jun 30 17:29:00 2004
From: "giovannibajo@libero.it" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libstdc++/16021] Tests for container swap specialisations FAIL in debug mode
Date: Wed, 30 Jun 2004 17:29:00 -0000
Message-id: <20040630172912.13261.qmail@sourceware.org>
References: <20040616121506.16021.redi@gcc.gnu.org>
X-SW-Source: 2004-06/msg03962.html
Content-length: 525

------- Additional Comments From giovannibajo at libero dot it  2004-06-30 17:29 -------
Wolfgang, the standard explicitally says that the only thing you are allowed to 
define in namespace std are specializations of standard templates. Everything 
else brings you into undefined behaviour, but this very thing is allowed and 
should work also in debug mode.

This is just another bug with strong using, I thikn it's a dup of whatever bug 
is left around about this.

-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16021


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [deleted]
@ 2004-06-30 16:42 ÄÚ¿þÀÌ·»Å»
  0 siblings, 0 replies; 4+ messages in thread
From: ÄÚ¿þÀÌ·»Å» @ 2004-06-30 16:42 UTC (permalink / raw)
  To: gcc-bugs

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 21195 bytes --]

[deleted]
>From gcc-bugs-return-101666-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Jun 30 16:42:51 2004
Return-Path: <gcc-bugs-return-101666-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 21176 invoked by alias); 30 Jun 2004 16:42:51 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 20968 invoked from network); 30 Jun 2004 16:42:47 -0000
Received: from unknown (HELO hanmail.net) (218.49.76.129)
  by sourceware.org with SMTP; 30 Jun 2004 16:42:47 -0000
From: ÄÚ¿þÀÌ·»Å» <master@cowayrental.net>
To: gcc-bugs@gcc.gnu.org <gcc-bugs@gcc.gnu.org>
Subject: (±¤°í)ºñµ¥,¿¬¼ö±â,Á¤¼ö±â ÀüÁ¦Ç° µî·Ïºñ¹«·á!15ÀÏ ¹«·áüÇè!@
Date: Wed, 30 Jun 2004 16:49:00 -0000
MIME-Version: 1.0
Content-Type: text/html;
	charset="ks_c_5601-1987"
X-SW-Source: 2004-06/txt/msg03958.txt.bz2
Content-length: 18826


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- saved from url=(0032)http://www.waterwj.com/free.html -->
<HTML>
<HEAD>
<TITLE>¾È³çÇϽʴϱî? ¿õÁøÄÚ¿þÀÌÀÔ´Ï´Ù.</TITLE>
<META http-equiv=Content-Type content="text/html; charset=ks_c_5601-1987">

<body bgcolor="#ffffff" text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
      
<table cellspacing=0 cellpadding=0 width=550 align=center border=0>
  <tbody> 
  <tr> 
    <td><a href="http://www.cowayrental.net" target="_blank"><img src="http://yeseoul.co.kr/portfolio/online/cowayrental/letter2_img1.jpg" width="650" height="220" border="0"></a></td>
  </tr>
  <tr> 
    <td><a href="http://www.cowayrental.net" target="_blank"><img src="http://yeseoul.co.kr/portfolio/online/cowayrental/letter2_img2.gif" width="650" height="212" border="0"></a></td>
  </tr>
  <tr> 
    <td><a href="http://www.cowayrental.net" target="_blank"><img src="http://yeseoul.co.kr/portfolio/online/cowayrental/letter2_img3.gif" width="650" height="196" border="0"></a></td>
  </tr>
  <tr> 
    <td><a href="http://www.cowayrental.net" target="_blank"><img src="http://yeseoul.co.kr/portfolio/online/cowayrental/letter2_img4.gif" width="650" height="194" border="0"></a></td>
  </tr>
  <tr>
    <td><img src="http://yeseoul.co.kr/portfolio/online/cowayrental/letter2_img5_2.gif" width="650" height="283"></td>
  </tr>
  <tr>
    <td><img src="http://yeseoul.co.kr/portfolio/online/cowayrental/letter2_img6.gif" width="650" height="295"></td>
  </tr>
  <tr>
    <td><img src="http://yeseoul.co.kr/portfolio/online/cowayrental/letter2_img7.gif" width="650" height="107"></td>
  </tr>
  <tr> 
    <td background="http://yeseoul.co.kr/portfolio/online/cowayrental/letter2_bg.gif" align="middle"><!-- Event Content -->
      <table cellspacing=0 cellpadding=0 width=600 align=center border=0>
        <tr> 
          <form name=wjEvent onSubmit="return checkVal()" action=http://www.cowayrental.net/mailling/registerOK.html method=post>
            <td width=1 rowspan="5"><img height=1 src="" width=1 border=0></td>
            <td width="100%" align="middle" height="319"><!-- À̺¥Æ®°í°´ Á¤º¸ ÀÔ·Â Æû -->
              <table cellspacing=0 cellpadding=0 width=580 align=center border=0>
                <tr> 
                  <td width=1><img height=1 src="" width=1 border=0></td>
                  <td width="100%" bgcolor=#ffffff align="middle"><!-- À̺¥Æ®°í°´ Á¤º¸ ÀÔ·Â Æû -->
                    <script language=JavaScript>
<!--
function checkVal() {
	var frm = document.wjEvent;
	if(frm.userName.value == '' || frm.userName.value == null) {
		alert('°í°´¸íÀ» ÀÔ·ÂÇØÁÖ¼¼¿ä.');
		frm.userName.focus();
		return false;
	}
	if(frm.jumin1.value == '' || frm.jumin1.value == null) {
		alert('Áֹεî·Ï¹øÈ£¸¦ ÀÔ·ÂÇØÁÖ¼¼¿ä.');
		frm.jumin1.focus();
		return false;
	} else if(frm.jumin2.value == '' || frm.jumin2.value == null) {
		alert('Áֹεî·Ï¹øÈ£¸¦ ÀÔ·ÂÇØÁÖ¼¼¿ä.');
		frm.jumin2.focus();
		return false;
	}	
	if(frm.phone1.value == '' || frm.phone1.value == null) {
		alert('ÀüÈ­¹øÈ£¸¦ ÀÔ·ÂÇØ ÁÖ¼¼¿ä.');
		frm.phone1.focus();
		return false;
	} else if(frm.phone2.value == '' || frm.phone2.value == null) {
		alert('ÀüÈ­¹øÈ£¸¦ ÀÔ·ÂÇØ ÁÖ¼¼¿ä.');
		frm.phone2.focus();
		return false;
	} else if(frm.phone3.value == '' || frm.phone3.value == null) {
		alert('ÀüÈ­¹øÈ£¸¦ ÀÔ·ÂÇØ ÁÖ¼¼¿ä.');
		frm.phone3.focus();
		return false;
	}
	if(frm.mobile1.value == '' || frm.mobile1.value == null) {
		alert('ÇÚµåÆù¹øÈ£¸¦ ÀÔ·ÂÇØÁÖ¼¼¿ä.');
		frm.mobile1.focus();
		return false;
	} else if(frm.mobile2.value == '' || frm.mobile2.value == null) {
		alert('ÇÚµåÆù¹øÈ£¸¦ ÀÔ·ÂÇØÁÖ¼¼¿ä.');
		frm.mobile2.focus();
		return false;
	} else if(frm.mobile3.value == '' || frm.mobile3.value == null) {
		alert('ÇÚµåÆù¹øÈ£¸¦ ÀÔ·ÂÇØÁÖ¼¼¿ä.');
		frm.mobile3.focus();
		return false;
	}
	if(frm.phone1.value != '') {
		var reg = new RegExp("^[0-9]{2,3}$");		
		if(reg.test(frm.phone1.value) == false) {
			alert('ÀüÈ­¹øÈ£´Â ¼ýÀÚ¸¸ ÀÔ·ÂÇÒ ¼ö ÀÖ½À´Ï´Ù.');
			frm.phone1.focus();
			return false;
		}
		
	}
	if(frm.phone2.value != '' && frm.phone3.value != '') {
		var reg = new RegExp("^[0-9]{3,4}$");
		for(var i = 2; i < 4; i++) {
			if(reg.test(frm['phone'+i].value) == false) {
				alert('ÀüÈ­¹øÈ£´Â ¼ýÀÚ¸¸ ÀÔ·ÂÇÒ ¼ö ÀÖ½À´Ï´Ù.');
				frm['phone'+i].focus();
				return false;
			}
		}
	}
	if(frm.mobile1.value != '' && frm.mobile2.value != '' && frm.mobile3.value != '') {
		var reg = new RegExp("^[0-9]{3,4}$");
		for(var i = 1; i < 4; i++) {
			if(reg.test(frm['mobile'+i].value) == false) {
				alert('ÈÞ´ëÆù¹øÈ£´Â ¼ýÀÚ¸¸ ÀÔ·ÂÇÒ ¼ö ÀÖ½À´Ï´Ù.');
				frm['mobile'+i].focus();
				return false;
			}
		}
	}
	var j = 0;
	for(var i = 0; i < 2; i++) {
		if(frm.itemKind[i].checked == true) {
			j++
		}
	}
	if(j == 0) {
		alert('Á¦Ç°ÀÇ Á¾·ù¸¦ ¼±ÅÃÇØÁÖ¼¼¿ä.');
		return false;
	}
	
	if(frm.addr1.value == '') {
		alert('ÁÖ¼Ò¸¦ ÀÔ·ÂÇØÁÖ¼¼¿ä.');
		frm.addr1.focus();
		return false;
	}
	if(frm.email.value == '' || frm.email.value == null) {
		alert('À̸ÞÀÏ ÁÖ¼Ò¸¦ ÀÔ·ÂÇØÁÖ¼¼¿ä.');
		frm.email.focus();
		return false;
	}
}
function disableVisit() {
	var frm = document.wjEvent;
	var visitTmp = new Array('Y','M','D');
	var state, BG;
	if(frm.nonVisit.checked == true) {
		state = true;
		BG = '#EEEEEE';
	} else {
		state = false;
		BG = '#FFFFFF';
	}
	for(var i = 0; i < 3; i++) {
		frm['visit'+visitTmp[i]].disabled = state;
		frm['visit'+visitTmp[i]].style.background = BG;
	}
}
//-->
</script>
                    <table cellspacing=0 cellpadding=7 width="550" border=0>
                      <tr> 
                        <td style="LINE-HEIGHT: 160%"> 
                          <p align=center> 
                          <table width="100%" border=0 bgcolor="#ffffff" class="height">
                            <tr> 
                              <td noWrap align=middle width=98 bgcolor=#ffffcc><font color="#ff0000" size="2" face="±¼¸², ±¼¸²Ã¼">*</font><font size="2" face="±¼¸², ±¼¸²Ã¼"> 
                                °í°´¸í&nbsp;</font></td>
                              <td width="358" bgcolor="#ffffec"> <font size="2" face="±¼¸², ±¼¸²Ã¼"> 
                                <input size=25 name=userName>
                                </font></td>
                            </tr>
                            <tr> 
                              <td align=middle bgcolor=#ffffcc width="98"><font color="#ff0000" size="2" face="±¼¸², ±¼¸²Ã¼">*</font><font size="2" face="±¼¸², ±¼¸²Ã¼"> 
                                Áֹεî·Ï¹øÈ£&nbsp;</font></td>
                              <td bgcolor="#ffffec" width="358"> <font size="2" face="±¼¸², ±¼¸²Ã¼"> 
                                <input maxlength=6 size=12 name=jumin1>
                                - 
                                <input 
                        maxlength=7 size=12 name=jumin2>
                                </font></td>
                            </tr>
                            <tr> 
                              <td align=middle bgcolor=#ffffcc width="98"><font color="#ff0000" size="2" face="±¼¸², ±¼¸²Ã¼">*</font><font size="2" face="±¼¸², ±¼¸²Ã¼"> 
                                ÀüÈ­¹øÈ£&nbsp;</font></td>
                              <td bgcolor="#ffffec" width="358"> <font size="2" face="±¼¸², ±¼¸²Ã¼"> 
                                <input maxlength=3 size=7 name=phone1>
                                - 
                                <input 
                        maxlength=4 size=7 name=phone2>
                                - 
                                <input maxlength=4 
                        size=7 name=phone3>
                                </font></td>
                            </tr>
                            <tr> 
                              <td align=middle bgcolor=#ffffcc width="98"><font color="#ff0000" size="2" face="±¼¸², ±¼¸²Ã¼">*</font><font size="2" face="±¼¸², ±¼¸²Ã¼"> 
                                ÇÚµåÆù¹øÈ£&nbsp;</font></td>
                              <td bgcolor="#ffffec" width="358"> <font size="2" face="±¼¸², ±¼¸²Ã¼"> 
                                <input maxlength=3 size=7 name=mobile1>
                                - 
                                <input 
                        maxlength=4 size=7 name=mobile2>
                                - 
                                <input maxlength=4 
                        size=7 name=mobile3>
                                </font></td>
                            </tr>
                            <tr> 
                              <td align=middle bgcolor=#ffffcc width="98"><font color="#ff0000" size="2" face="±¼¸², ±¼¸²Ã¼">*</font><font size="2" face="±¼¸², ±¼¸²Ã¼"> 
                                Á¦Ç°¼±ÅÃ&nbsp;</font></td>
                              <td bgcolor="#ffffec" width="358"> <font size="2" face="±¼¸², ±¼¸²Ã¼"><!-- ·ê·ç¿¬¼ö±â <input type=radio name=itemKind value=pro1>&nbsp;&nbsp;
			·ê·çºñµ¥ <input type=radio name=itemKind value=pro2 checked> -->
                                Á¤¼ö±â 
                                <input type=checkbox value=1 name=water>
                                &nbsp;¿¬¼ö±â 
                                <input type=checkbox value=1 name=yearnsu>
                                &nbsp;¼¼Á¤±â 
                                <input type=checkbox value=1 name=bidae>
                                &nbsp;°ø±âûÁ¤±â 
                                <input type=checkbox value=1 name=air>
                                </font></td>
                            </tr>
                            <tr> 
                              <td align=middle bgcolor=#ffffcc width="98"><font color="#ff0000" size="2" face="±¼¸², ±¼¸²Ã¼">*</font><font size="2" face="±¼¸², ±¼¸²Ã¼"> 
                                ÁÖ¼Ò</font></td>
                              <td bgcolor="#ffffec" width="358"> <font size="2" face="±¼¸², ±¼¸²Ã¼"> 
                                <input maxlength=3 size=5 name=zip1>
                                - 
                                <input 
                        maxlength=3 size=5 name=zip2>
                                <br>
                                <input maxlength=100 
                        size=40 name=addr1>
                                </font></td>
                            </tr>
                            <tr> 
                              <td align=middle bgcolor=#ffffcc width="98"><font color="#ff0000" size="2" face="±¼¸², ±¼¸²Ã¼">*</font><font size="2" face="±¼¸², ±¼¸²Ã¼"> 
                                Email&nbsp;</font></td>
                              <td bgcolor="#ffffec" width="358"> <font size="2" face="±¼¸², ±¼¸²Ã¼"> 
                                <input maxlength=50 size=25 name=email>
                                </font></td>
                            </tr>
                            <tr> 
                              <td align=middle bgcolor=#ffffcc width="98"><font color="#ff0000" size="2" face="±¼¸², ±¼¸²Ã¼">*</font><font size="2" face="±¼¸², ±¼¸²Ã¼"> 
                                ¼³Ä¡Èñ¸ÁÀÏ&nbsp;</font></td>
                              <td bgcolor="#ffffec" width="358"> <font size="2" face="±¼¸², ±¼¸²Ã¼"> 
                                <select name=visitY>
                                  <option value=2003 
                          selected>2003</option>
                                </select>
                                ³â &nbsp; 
                                <select 
                        name=visitM>
                                  <option value=1>1</option>
                                  <option 
                          value=2>2</option>
                                  <option value=3>3</option>
                                  <option 
                          value=4>4</option>
                                  <option value=5>5</option>
                                  <option 
                          value=6>6</option>
                                  <option value=7>7</option>
                                  <option 
                          value=8 selected>8</option>
                                  <option 
                          value=9>9</option>
                                  <option value=10>10</option>
                                  <option 
                          value=11>11</option>
                                  <option 
                        value=12>12</option>
                                </select>
                                ¿ù &nbsp; 
                                <select 
                        name=visitD>
                                  <option value=1>1</option>
                                  <option 
                          value=2>2</option>
                                  <option value=3>3</option>
                                  <option 
                          value=4>4</option>
                                  <option value=5>5</option>
                                  <option value=6>6</option>
                                  <option value=7>7</option>
                                  <option 
                          value=8>8</option>
                                  <option value=9>9</option>
                                  <option 
                          value=10>10</option>
                                  <option 
                          value=11>11</option>
                                  <option 
                          value=12>12</option>
                                  <option 
                          value=13>13</option>
                                  <option 
                          value=14>14</option>
                                  <option 
                          value=15>15</option>
                                  <option 
                          value=16>16</option>
                                  <option 
                          value=17>17</option>
                                  <option 
                          value=18>18</option>
                                  <option 
                          value=19>19</option>
                                  <option value=20 
                          selected>20</option>
                                  <option 
                          value=21>21</option>
                                  <option 
                          value=22>22</option>
                                  <option 
                          value=23>23</option>
                                  <option 
                          value=24>24</option>
                                  <option 
                          value=25>25</option>
                                  <option 
                          value=26>26</option>
                                  <option 
                          value=27>27</option>
                                  <option 
                          value=28>28</option>
                                  <option value=29>29</option>
                                  <option value=30>30</option>
                                  <option value=31>31</option>
                                </select>
                                ÀÏ &nbsp;<font color=#ff8000><b>»ó´ãÈÄ °áÁ¤</b></font></font> 
                                <font size="2" face="±¼¸², ±¼¸²Ã¼"> 
                                <input onClick=disableVisit(); type=checkbox value=1 name=nonVisit>
                                </font></td>
                            </tr>
                            <tr> 
                              <td align=middle bgcolor=#ffffcc width="98"><font size="2" face="±¼¸², ±¼¸²Ã¼">³²±â½Ç 
                                ¸»¾¸&nbsp;</font></td>
                              <td bgcolor="#ffffec" width="358"> <font size="2" face="±¼¸², ±¼¸²Ã¼"><TEXTAREA style="WIDTH: 90%" name=comment cols=1></TEXTAREA>
                                </font></td>
                            </tr>
                          </table></p>
                        </td>
                      </tr>
                      <tr> 
                        <td align=middle colspan=2> 
                          <input type=submit value=À̺¥Æ®½Åû name="submit">
                        </td>
                      </tr>
                    </table>
                  </td>
                </tr>
              </table>
            </td>
          </form>
        </tr>
      </table>
    </td>
  </tr>
  <tr> 
    <td background="http://yeseoul.co.kr/portfolio/online/cowayrental/letter2_bg.gif" align="middle"> 
      <table width="90%" border="0" cellspacing="0" cellpadding="5">
        <tr> 
          <td valign="top" style="PADDING-RIGHT: 3px; PADDING-LEFT: 3px; PADDING-BOTTOM: 3px; COLOR: #666666; PADDING-TOP: 3px; TEXT-DECORATION: none" 
         ><font size="2">
            <DIV align=center><br>
              ±ÍÇÏÀÇ ½Â³«¾øÀÌ È«º¸¼º ÀüÀÚ ¿ìÆíÀ» º¸³»°Ô µÈ 
            Á¡ Á¤ÁßÈ÷ »ç°ú µå¸³´Ï´Ù. Á¤º¸Åë½Å¸ÁÀÌ¿ëÃËÁø¹ý ±ÔÁ¤À» ÁؼöÇÏ¿© ±¤°í¸ÞÀÏ ÀÓÀ» Ç¥½ÃÇÏ¿´À¸¸ç, ¼ö½Å°ÅºÎ ÀåÄ¡¸¦ ¸¶·ÃÇÏ°í 
            ÀÖ½À´Ï´Ù. ±ÍÇÏÀÇ ¸ÞÀÏÀº </DIV>
            <DIV align=center>mail.nl.linux.org/spamfilter-report/2002-01/msg00208.html¿¡¼­ ¼öÁýÇÏ¿´À¸¸ç, <BR>
                             
                       
               ÀúÈñ´Â ±ÍÇÏÀÇ ÀüÀÚ¿ìÆí ÁÖ¼Ò ¿Ü ¾î¶°ÇÑ °³ÀÎÁ¤º¸µµ °¡Áö°í ÀÖÁö ¾Ê½À´Ï´Ù. <A href="mailto:cleanmail@naver.com"><u>¼ö½Å°ÅºÎ[DENY]</u></a> 
              ¹öÆ°À» Ŭ¸¯ÇÏ½Ã¸é ¼ö½Å°ÅºÎ󸮰¡ ÀÌ·ç¾îÁý´Ï´Ù. If you don't want to receive this mail 
              anymore, write your mail blank and click there <A  href="mailto:cleanmail@naver.com"><u>[DENY]</u></a></font></DIV>
          </td>
        </tr>
        <tr> 
          <td valign="top"><a style="PADDING-RIGHT: 3px; PADDING-LEFT: 3px; PADDING-BOTTOM: 3px; COLOR: black; PADDING-TOP: 3px; TEXT-DECORATION: none" 
           > 
            <div align="center"><font size="2"><img src="http://yeseoul.co.kr/portfolio/online/cowayrental/icon.gif" width="10" height="11"> 
              ¿õÁøÄÚ¿þÀÌ°³¹ß(ÁÖ) ·»Å»»ç¾÷º»ºÎ <b><img src="http://yeseoul.co.kr/portfolio/online/cowayrental/icon.gif" width="10" height="11"></b> 
              ¼­¿ï½Ã ¿ë»ê±¸ µ¿ÀÚµ¿12-5 º®»ê125B/D 18Ãþ<br>
              <img src="http://yeseoul.co.kr/portfolio/online/cowayrental/icon.gif" width="10" height="11"> 
              ÆÀÀå ÃÖÁø¼º <img src="http://yeseoul.co.kr/portfolio/online/cowayrental/icon.gif" width="10" height="11"> 
              TEL 080-566-6699 <img src="http://yeseoul.co.kr/portfolio/online/cowayrental/icon.gif" width="10" height="11"> 
              E-MAIL jagmrcjs@daum.net</font></div>
            </a></td>
        </tr>
      </table>
    </td>
  </tr>
  <tr> 
    <td><img src="http://yeseoul.co.kr/portfolio/online/cowayrental/letter2_img8.gif" width="650" height="15"></td>
  </tr>
  </tbody> 
</table>
</body></HTML>



^ permalink raw reply	[flat|nested] 4+ messages in thread

* [deleted]
@ 2004-06-30 16:05 ¿µ¹®¹ýÀÇ Çõ¸í Çõ¸í ....
  0 siblings, 0 replies; 4+ messages in thread
From: ¿µ¹®¹ýÀÇ Çõ¸í Çõ¸í .... @ 2004-06-30 16:05 UTC (permalink / raw)
  To: gcco; +Cc: gcckky, gcckeh, gccinsa, gcci, gcchoi, gccho, gccho, gccheon, gccha

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 7275 bytes --]

[deleted]
>From gcc-bugs-return-101661-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Jun 30 16:05:29 2004
Return-Path: <gcc-bugs-return-101661-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 5870 invoked by alias); 30 Jun 2004 16:05:28 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 5805 invoked from network); 30 Jun 2004 16:05:27 -0000
Received: from unknown (HELO hotmail.com) (64.4.43.193)
  by sourceware.org with SMTP; 30 Jun 2004 16:05:27 -0000
Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC;
	 Wed, 30 Jun 2004 09:05:12 -0700
Received: from 211.224.163.97 by bay17-dav13.bay17.hotmail.com with DAV;
	Wed, 30 Jun 2004 16:05:11 +0000
X-Originating-IP: [211.224.163.97]
X-Originating-Email: [jvxrbftsqtduw54933@hotmail.com]
X-Sender: jvxrbftsqtduw54933@hotmail.com
From: "¿µ¹®¹ýÀÇ Çõ¸í Çõ¸í ...." <ohwoo01@hanmail.net>
To: <gcco@hanmir.com>
CC: <gcckky@gcc.go.kr>,
	<gcckeh@gcc.go.kr>,
	<gccinsa@gcc.go.kr>,
	<gcci@hanmir.com>,
	<gcchoi@htk.co.kr>,
	<gccho@sen.go.kr>,
	<gccho@chosun.ac.kr>,
	<gccheon@seanet.co.kr>,
	<gccha@dragon.yonsei.ac.kr>
Subject: ¿µ¾î¿¡ ÇѸÎÈù »ç¶÷µé¿¡°Ô ¹ÙĨ´Ï´Ù.. 6ziKkbhyFg
Date: Wed, 30 Jun 2004 16:19:00 -0000
MIME-Version: 1.0
Content-Type: text/html
X-MSMail_Priority: Normal
Message-ID: <BAY17-DAV13oOxg2elK000190b3@hotmail.com>
X-OriginalArrivalTime: 30 Jun 2004 16:05:12.0204 (UTC) FILETIME=[0613CCC0:01C45EBC]
X-SW-Source: 2004-06/txt/msg03953.txt.bz2
Content-length: 4957

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=KS_C_5601-1987">
<META content="MSHTML 6.00.2800.1106" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY><STRONG><FONT color=#0000ff 
size=4>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</FONT></STRONG> <A 
href="http://www.7english7.com/" target=_blank><B><FONT color=blue size=4>±âÀûÀÇ 
¿µ¾î</FONT></B></A> <B><A href="http://www.7english7.com/" target=_blank><FONT 
color=#ff3333 size=4>7English </FONT><FONT color=blue size=4>»ùÇÃ</FONT></A></B><A 
href="http://www.7english7.com/"><FONT color=blue 
size=3>&nbsp;<BR></FONT></A><FONT color=blue 
size=3>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</FONT><A 
href="http://www.7english7.com/" target=_blank><FONT color=blue 
size=3>&nbsp;</FONT><FONT color=blue size=2>»ùÇÃÀ» º¸½Ã·Á¸é &lt;ÇѱÛ97&gt;ÀÌ ¼³Ä¡µÇ¾î ÀÖ¾î¾ß 
ÇÕ´Ï´Ù.</FONT></A><A href="http://www.7english7.com/"><B><FONT color=blue 
size=4><BR></FONT></B></A><FONT size=2>&nbsp;´ÙÀ½Àº ¿µ¾î±³À°°³Çõ ÇùȸÀÇ ¹ßÇ¥¹®À» ÀοëÇÑ 
°ÍÀÔ´Ï´Ù.</FONT> 
<TABLE height=5 cellSpacing=0 borderColorDark=black cellPadding=0 width=525 
bgColor=#ccffcc borderColorLight=black>
  <TBODY>
  <TR>
    <TD borderColor=white width=525 bgColor=#f1f7e2 height=116>
      <P style="MARGIN-LEFT: 2mm; LINE-HEIGHT: 160%"><FONT size=4>&nbsp; 
      </FONT><A href="http://www.7english7.com/" target=_blank><FONT color=blue 
      size=4>¡¶1¡· <B>ÆóÁöµÇ´Â ¿µ¹®¹ý 80% 25°³Ç×</B> - »ó¼¼È÷ º¸±â</FONT></A> <FONT 
      size=4><BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</FONT><FONT 
      color=red size=4> Çаè</FONT><FONT size=4> ¿Í</FONT><FONT color=red size=4> 
      ±³À°°è</FONT> <FONT size=4>ÀÇ&nbsp;98%ÀÇ ÁöÁö·Î °áÁ¤µÈ »çÇ×ÀÔ´Ï´Ù.<BR><A 
      href="http://www.7english7.com/" target=_blank>&nbsp;</A> </FONT><A 
      href="http://www.7english7.com/" target=_blank><FONT color=blue 
      size=4>¡¶2¡·<B>±âÀûÀÇ</B><B> ´Ü¾î¼÷¾î, ¹®¹ýÀÇ Çõ¸í</B> - 
  ¿ø¼ÒÀÌ·Ð</FONT></A></P></TD></TR></TBODY></TABLE>
<TABLE height=5 cellSpacing=0 borderColorDark=black cellPadding=0 width=525 
bgColor=#ccffcc borderColorLight=black>
  <TBODY>
  <TR>
    <TD borderColor=white width=525 bgColor=#f3e4e4 height=36>
      <P style="LINE-HEIGHT: 160%"><FONT 
      size=4>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
      </FONT><A href="http://www.7english7.com/" target=_blank><B><FONT 
      color=blue size=4>¾ûÅ͸® ¹®¹ý Ãß¹æÇÏ¿© ¿µ¾îÁö¿Á ¹þ¾î³ªÀÚ</FONT> <FONT 
      size=4>.</FONT></B></A> <B><FONT size=4><A 
      href="http://www.7english7.com/"><BR></A></FONT></B></P></TD></TR></TBODY></TABLE>
<TABLE borderColor=green cellSpacing=0 borderColorDark=black width=527 
bgColor=#ffffcc borderColorLight=black border=1>
  <TBODY>
  <TR>
    <TD borderColor=white width=521 height=122>
      <P style="LINE-HEIGHT: 150%"><FONT color=#ff3333 size=4>&nbsp;&nbsp;&nbsp; 
      <B>¿µ¾î±³À° ¾ç½É¼±¾ð¹®</B></FONT> <FONT size=4><BR>&nbsp;&nbsp;&nbsp;±âÁ¸ÀÇ ¿µ¹®¹ýÀº 
      &nbsp;1. ¿µ¾îÀÇ ±Ùº»À» Æı«ÇÏ°í &nbsp; 
      <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
      2. ¾öû³­ ½Ã°£°ú ÀÚ¿øÀ» ÇãºñÇÏ°í &nbsp;&nbsp; 
      <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
      &nbsp;3. Àΰ£ÀÇ ÃµºÎÀû ¾ð¾î´É·ÂÀ» ¸¶ºñ½ÃŲ´Ù.</FONT></P></TD></TR></TBODY></TABLE>
<TABLE cellSpacing=0 borderColorDark=black cellPadding=0 width=526 
bgColor=#ccffcc borderColorLight=black>
  <TBODY>
  <TR>
    <TD borderColor=white width=526 height=89>
      <P style="MARGIN-LEFT: 3mm; LINE-HEIGHT: 150%; MARGIN-RIGHT: 3mm" 
      align=justify><FONT size=3>&nbsp;&nbsp;&nbsp;¿µ¾î¸¦ °ÆÁ¤ÇÏ´Â °¡Á·°ú Ä£±¸µé²²µµ ÀüÇØ ÁֽʽÿÀ. 
      ±×¸®°í ¿µ¾î±³À°°³Çõ¿¡ µ¿ÂüÇÏ¿© Áֽñ⠹ٶø´Ï´Ù. 
      <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
      <A href="http://www.7english7.com/" target=_blank>&gt;&nbsp;</A></FONT> <A 
      href="http://www.7english7.com/" target=_blank><FONT color=#ff3333 
      size=3>-¿µ¾î±³À°°³Çõ ±¹¹ÎÇùȸ</FONT> <FONT color=blue size=3>www.</FONT><FONT 
      color=#0033ff size=3> 7english7.com</FONT> <FONT color=blue 
      size=3></FONT><B><FONT color=#ff3333 size=3>-</FONT></B></A><B> <A 
      href="http://www.7english7.com/" target=_blank>&gt;<FONT color=#ff3333 
      size=3><BR></FONT></A></B></P></TD></TR></TBODY></TABLE></BODY></HTML>
 ZyxgVG1Jc0<table border='0' width='862'><tr><td width='856'><HR><font size='2' face='µ¸¿ò'>È®ÀÎÇÏÀÚ <A href='http://g.msn.com/8HMAKOKR/2740??PS='>¿À´ÃÀÇ ¿î¼¼ </A>¹«·á »çÁÖ, ±ÃÇÕ, ÀÛ¸í, Àü»ý °¡À̵å</font></td></tr></table>


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2004-06-30 17:02 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-06-30 16:21 [deleted] ncm
  -- strict thread matches above, loose matches on Subject: below --
2004-06-30 17:02 [deleted] fam
2004-06-30 16:42 [deleted] ÄÚ¿þÀÌ·»Å»
2004-06-30 16:05 [deleted] ¿µ¹®¹ýÀÇ Çõ¸í Çõ¸í ....

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).