home *** CD-ROM | disk | FTP | other *** search
/ nextcube.org / www.nextcube.org.tar / www.nextcube.org / board / bbs.php3?board=board&line=rdate&mode=view&id=2742&fld=&nws=y&page=8&keyword=&flag=&a_o=.orig < prev    next >
Text File  |  2010-08-17  |  23KB  |  67 lines

  1. <html><head><title>NeXTcube - [Œ®Õò¢Ì] NeXTSTEP Porting Tips</title><meta http-equiv='Content-Type' content='text/html; charset=utf-8'><link rel='stylesheet' type='text/css' href='./css/style.css'><link rel='shortcut icon' href='/images/favicon.ico'><link rel='alternate' type='application/rss+xml' title='NeXTcube RSS Feed' href='/board/rss2.php?items=active'><script type='text/javascript' src='./css/nextcube.js'></script></head>
  2.  
  3. <body bgcolor=#ffffff text=#000000 link=#000000 alink=#000000 vlink=#000000  onload='imgSizeConv(600);'>
  4.  
  5. <div id='menu'><table border=0 width=120 height=100% cellpadding=0 cellspacing=0 bgcolor=#000000><tr><td height=40 colspan=2></td></tr><tr><td width=16></td><td align=left valign=top><a href=?board=news&line=rdate&fld=&nws=><img src=/images/news_t.gif border=0></a><br><br><br><a href=?board=board&line=rdate&fld=&nws=><img src=/images/board_t.gif border=0></a><br><br><br><a href=?board=doc&line=subject&fld=&nws=><img src=/images/doc_t.gif border=0></a><br><br><br><a href=?board=photo&line=reg_date&fld=&nws=><img src=/images/photo_t.gif border=0></a><br><br><br><a href=?board=image&line=reg_date&fld=&nws=><img src=/images/image_t.gif border=0></a><br><br><br><a href=?board=pub&line=subject&fld=&nws=><img src=/images/pub_t.gif border=0></a><br><br><br></td></tr><tr><td align=center valign=bottom colspan=2><img src='/counter/digit/code39/0.gif'><img src='/counter/digit/code39/0.gif'><img src='/counter/digit/code39/0.gif'><img src='/counter/digit/code39/2.gif'><img src='/counter/digit/code39/8.gif'><img src='/counter/digit/code39/3.gif'><img src='/counter/digit/code39/8.gif'><br><br><img src=/images/contactme.gif border=0></td></tr><tr><td height=40 colspan=2></td></tr></table></div>
  6.  
  7. <div id='main'><table width=100% height=100% border=0 cellpadding=0 cellspacing=0 align=center><tr><td height=40></td></tr><tr><td align=center valign=top><a href='#page_bottom' title='Go to Bottom of Page'><img src='/images/knowhow2.gif' id='knowhow2' border=0></a><a href='https://www.pbank.co.kr/svc/guest_remit/pop_remit_main.jsp?fix=46516&b_bankbook=378273812&fbid=' title='Pbank Donate'><img src='/images/pbank_logo.gif' id='pbank' border=0></a><form action='https://www.paypal.com/cgi-bin/webscr' method='post'><input type='hidden' name='cmd' value='_s-xclick'><input type='hidden' name='hosted_button_id' value='9050272'><input type='image' src='/images/paypal_logo.gif' border='0' name='submit' alt='PayPal - The safer, easier way to pay online!' title='Paypal Donate' id='paypal'><img alt='' border='0' src='https://www.paypal.com/en_US/i/scr/pixel.gif' width='1' height='1'></form><table width=100% border=0 cellpadding=0 cellspacing=1 align=center><tr><td align=center><img src='/images/board.gif'></td></tr></table><br><br>
  8.  
  9. <table bgcolor=#ffffff width=100% border=0 cellpadding=2 cellspacing=1 align=center><tr height=24 bgcolor=#666666><td width=100% align=center nowrap><font color=#ffffff><b>[Œ®Õò¢Ì] NeXTSTEP Porting Tips</b></font></td></tr></table><a name="0"></a><table bgcolor=#ffffff width=100% border=0 cellpadding=4 cellspacing=0 align=center><tr height=24 bgcolor=#eeeeee><td width=50% align=left nowrap>òµ·ºƒÃ: capri91</td><td width=50% align=right nowrap> <a href='/board/bbs.php3?board=board&line=rdate&mode=modi&id=2742&rid=2742&fld=&nws=y&page=8&keyword=&flag=&a_o='>[òÈÚò©Õ]</a> 2007-04-19 23:46:45</td></tr></table><table bgcolor=#ffffff width=100% border=0 cellpadding=10 cellspacing=1 align=center><tr bgcolor=#ffffff><td><b><font size=+2>General Porting Tips</font></b>
  10. <br>
  11. <br>While porting many UNIX-progs to NeXTstep, I stumbled over some nasty but solveable problems:
  12. <br>
  13. <br><b>cc: Internal compiler error: program cc1obj got fatal signal 11</b>
  14. <br>I found three memory related solutions so far:
  15. <br>-> turn off Optimization (-Ox) ...or...
  16. <br>-> turn off Debug (-g) ...or...
  17. <br>-> limit stacksize 10000 (before make)
  18. <br>
  19. <br><b>foo.h:247: macro `index' used with just one arg</b>
  20. <br>#undef index (index is already defined in string.h!)
  21. <br>
  22. <br><b>foo.c:1234: bad macro argument list</b>
  23. <br>-> add --traditional-cpp to CFLAGS
  24. <br>
  25. <br><b>ld: Undefined symbols: _strdup</b>
  26. <br>-> gcc -o foo bar.o -lstdc++ ...or...
  27. <br>-> gcc -o foo bar.o -liberty
  28. <br>
  29. <br><b>ld: Undefined symbols: _mkfifo</b>
  30. <br>-> mknod(path, S_IFIFO|mode, 0);
  31. <br>
  32. <br><b>undefined type, found `pid_t'</b>
  33. <br>typedef int pid_t;
  34. <br>
  35. <br><b>POSIX (not recommend):</b>
  36. <br>-> gcc -posix ... -lposix
  37. <br>
  38. <br>
  39. <br><b><font size=+2>Functions and their Replacements</font></b>
  40. <br>
  41. <br><b>getcwd</b> can be replaced by the BSD-command getwd(pathname). The pathnames length must not be longer then MAXPATHLEN characters (1024), as defined in <sys/param.h>.
  42. <br>
  43. <br><b>waitpid</b> can be implemented as a macro, using one of the BSD waitN functions, e.g.,
  44. <br>#define waitpid(p, s, o)  wait3((union wait *)(s), (o), (struct rusage *) 0)
  45. <br>
  46. <br>NeXTstep 3.3 does not have <b>uname</b>. 
  47. <br>
  48. <br><b><a href=/files/NSLib.zip target=_blank><u>Functions</u></a></b>
  49. <br>[ basename.c | getcwd.c | getschr.c | mmap.c | putenv.c | setenv.c | sp_offset.c | strdup.c | tcgetattr.c | tempnam.c | tempname.c | termios.c ] 
  50. <br>
  51. <br><b>POSIX-binaries</b>
  52. <br>On a black NeXT you can use otool, to get some working functions out of libposix.a, e.g.
  53. <br>[ sigaction.o | sigsetops.o ]
  54. <br>
  55. <br>ò¶Þò†Ú: <a href=http://www.drolls.de/NeXT/Porting.html target=_blank><u>http://www.drolls.de/NeXT/Porting.html</u></a>, <a href=http://www.math.unl.edu/~rdieter/OpenStep/Developer/PortingTips/ target=_blank><u>http://www.math.unl.edu/~rdieter/OpenStep/Developer/PortingTips/</u></a>
  56. <br><span id="'1'"></span></td></tr></table><a name="1"></a><table bgcolor=#ffffff width=100% border=0 cellpadding=4 cellspacing=0 align=center><tr height=24 bgcolor=#eeeeee><td width=50% align=left nowrap>òµ·ºƒÃ: onion</td><td width=50% align=right nowrap><a href='/board/bbs.php3?board=board&line=rdate&mode=del&id=2762&rid=2742&fld=&nws=y&page=8&keyword=&flag=&a_o=' onclick="return confirm('ò©Õº§Ð òÁ›ò©ÞóÕÚòËÞŒ†©òʦºËÈŒ„Ì?')">[òÁ›ò©Þ]</a> <a href='/board/bbs.php3?board=board&line=rdate&mode=modi&id=2762&rid=2742&fld=&nws=y&page=8&keyword=&flag=&a_o='>[òÈÚò©Õ]</a> 2007-04-23 11:36:48</td></tr></table><table bgcolor=#ffffff width=100% border=0 cellpadding=10 cellspacing=1 align=center><tr bgcolor=#ffffff><td>óµÑ...òÚÀòÖ·......T.T<span id="'1'"></span></td></tr></table><a name="2"></a><table bgcolor=#ffffff width=100% border=0 cellpadding=4 cellspacing=0 align=center><tr height=24 bgcolor=#eeeeee><td width=50% align=left nowrap>òµ·ºƒÃ: capri91</td><td width=50% align=right nowrap><a href='/board/bbs.php3?board=board&line=rdate&mode=del&id=2765&rid=2742&fld=&nws=y&page=8&keyword=&flag=&a_o=' onclick="return confirm('ò©Õº§Ð òÁ›ò©ÞóÕÚòËÞŒ†©òʦºËÈŒ„Ì?')">[òÁ›ò©Þ]</a> <a href='/board/bbs.php3?board=board&line=rdate&mode=modi&id=2765&rid=2742&fld=&nws=y&page=8&keyword=&flag=&a_o='>[òÈÚò©Õ]</a> 2007-04-23 12:54:17</td></tr></table><table bgcolor=#ffffff width=100% border=0 cellpadding=10 cellspacing=1 align=center><tr bgcolor=#ffffff><td>Œ®Ñò×ÐŒ‚® òÕ‰óÕÞ ò†Û óÕÚòËÞŒ‚®ºÊÔ... ^^;
  57. <br><span id="'1'"></span></td></tr></table><a name="3"></a><table bgcolor=#ffffff width=100% border=0 cellpadding=4 cellspacing=0 align=center><tr height=24 bgcolor=#eeeeee><td width=50% align=left nowrap>òµ·ºƒÃ: onion</td><td width=50% align=right nowrap><a href='/board/bbs.php3?board=board&line=rdate&mode=del&id=2768&rid=2742&fld=&nws=y&page=8&keyword=&flag=&a_o=' onclick="return confirm('ò©Õº§Ð òÁ›ò©ÞóÕÚòËÞŒ†©òʦºËÈŒ„Ì?')">[òÁ›ò©Þ]</a> <a href='/board/bbs.php3?board=board&line=rdate&mode=modi&id=2768&rid=2742&fld=&nws=y&page=8&keyword=&flag=&a_o='>[òÈÚò©Õ]</a> 2007-04-24 07:16:24</td></tr></table><table bgcolor=#ffffff width=100% border=0 cellpadding=10 cellspacing=1 align=center><tr bgcolor=#ffffff><td>òÕ‰óÕÚºË⁄Œ¦‹òÜÔ..-.-;<span id="'1'"></span></td></tr></table><table bgcolor=#ffffff width=100% border=0 cellpadding=4 cellspacing=0 align=center><tr bgcolor=#eeeeee><td width=100% align=left nowrap>ºÓ–º¡µóÌÌòµ… òÙÅòµÌ</td></tr></table><br>
  58.  
  59. <form method=post enctype='multipart/form-data' action='/board/bbs.php3?board=board&line=rdate&fld=&nws=y&page=8&id=2742&keyword=&flag=&a_o=&nospam_str=185' onsubmit='return check_submit();'><input type=hidden name=mode value=insert><input type=hidden id='subjectchk' name='fields[subject]' value='Re: [Œ®Õò¢Ì] NeXTSTEP Porting Tips'><table bgcolor=#ffffff width=100% border=0 cellpadding=0 cellspacing=0 align=center><tr><td bgcolor=#ffffff align=right><textarea id='contentschk' name='fields[contents]' rows=5 cols=80></textarea></td></tr><tr><td align=right><table width=460 border=0 cellpadding=0 cellspacing=0><tr align=right><td nowrap>  òµ· ºƒÃ</td><td><input type=text id='namechk' name='fields[name]' size=10 maxlength=12 value=''></td><td nowrap>  òÕÔ óÚ‚</td><td><input type='password' id='passwdchk' name='fields[passwd]' size=10 maxlength=8></td><td nowrap>  º‡·òÕÈò‰ÔºÓÞ </td><td><input type=text id='nospamchk' name='fields[nospamchk]' size=5 maxlength=2></td><td><img src='/counter/digit/brush/8.gif' valign=middle><img src='/counter/digit/brush/6.gif' valign=middle></td><td> <input type='Submit' name='Submit' value=' Post '></td></tr></table></td></tr></table></form>
  60.  
  61. <table bgcolor=#ffffff width=100% border=0 cellpadding=1 cellspacing=1 align=center><tr height=24 bgcolor=#666666><td width=50 align=center nowrap><font color=#ffffff><b>º†ÈóÚ‚</b></font></td><td width=90 align=center nowrap><font color=#ffffff><b>ò×ÑòÖò×Ð</b></font></td><td width=90 align=center nowrap><font color=#ffffff><b>ºÁ©ò§Þ</b></font></td><td width=50 align=center nowrap><font color=#ffffff><b>ò¡®óÜÌ</b></font></td><td width=100% align=center nowrap><font color=#ffffff><b>ò©Þ    º“’</b></font></td></tr><tr height=24 bgcolor=#ffffff onMouseOver="this.style.backgroundColor='#ffffff';window.status=('Physical number 2936, Virtual number 690, Included 10 lines');return true;" onMouseOut="this.style.backgroundColor='#ffffff'; window.status=('');return true;"><td height=24 width=50 align=center nowrap>690</td><td width=80 align=center nowrap><a href="mailto:jhwanny@gmail.com">òÃÞò§ óÛÚ</a></td><td width=90 align=center nowrap>2007-05-30</td><td width=50 align=center nowrap>1142</td><td width=100% nowrap>  <img src='./image/bwtx.gif' border=0 align=absmiddle> <a href='/board/bbs.php3?board=board&line=rdate&mode=view&id=2936&fld=&nws=y&page=8&keyword=&flag=&a_o='>ºÃ¥òÊ⁄óÊ‚òÊ⁄óÄÌòµ·òÄÚò„…ºµ…ó·....ò×¥óîòÙРºÁÚòÛÔºÃ⁄òÜÔ....</a> <font color=orange>(3)</font></td></tr><tr height=24 bgcolor=#ffffff onMouseOver="this.style.backgroundColor='#ffffff';window.status=('Physical number 2745, Virtual number 689, Included 16 lines');return true;" onMouseOut="this.style.backgroundColor='#ffffff'; window.status=('');return true;"><td height=24 width=50 align=center nowrap>689</td><td width=80 align=center nowrap>capri91</td><td width=90 align=center nowrap>2004-03-01</td><td width=50 align=center nowrap>1467</td><td width=100% nowrap>  <img src='./image/bwtx.gif' border=0 align=absmiddle> <a href='/board/bbs.php3?board=board&line=rdate&mode=view&id=2745&fld=&nws=y&page=8&keyword=&flag=&a_o='>[Œ®Õò¢Ì] VMware 3.2òÙРNeXTSTEP 3.3 º„̺ÓÞóÕÚŒ‚® (1º¶ )</a> <font color=orange>(1)</font></td></tr><tr height=24 bgcolor=#ffffff onMouseOver="this.style.backgroundColor='#ffffff';window.status=('Physical number 2920, Virtual number 688, Included 19 lines');return true;" onMouseOut="this.style.backgroundColor='#ffffff'; window.status=('');return true;"><td height=24 width=50 align=center nowrap>688</td><td width=80 align=center nowrap><a href="mailto:onionmixer@gmail.com">onion</a></td><td width=90 align=center nowrap>2007-05-21</td><td width=50 align=center nowrap>1308</td><td width=100% nowrap>  <img src='./image/bwtx.gif' border=0 align=absmiddle> <a href='/board/bbs.php3?board=board&line=rdate&mode=view&id=2920&fld=&nws=y&page=8&keyword=&flag=&a_o='>º×’òÅ̺ÔÔ òÁ‰ò§ÈºÀµ..óÕÚò§ º§Ì...</a> <font color=orange>(7)</font></td></tr><tr height=24 bgcolor=#ffffff onMouseOver="this.style.backgroundColor='#ffffff';window.status=('Physical number 2902, Virtual number 687, Included 12 lines');return true;" onMouseOut="this.style.backgroundColor='#ffffff'; window.status=('');return true;"><td height=24 width=50 align=center nowrap>687</td><td width=80 align=center nowrap><a href="mailto:onionmixer@gmail.com">onion</a></td><td width=90 align=center nowrap>2007-05-14</td><td width=50 align=center nowrap>1589</td><td width=100% nowrap>  <img src='./image/bwtx.gif' border=0 align=absmiddle> <a href='/board/bbs.php3?board=board&line=rdate&mode=view&id=2902&fld=&nws=y&page=8&keyword=&flag=&a_o='>óÕ·óÁ¤óÅ©òËÞ..óÏ‹Œ‚®...</a> <font color=orange>(10)</font></td></tr><tr height=24 bgcolor=#ffffff onMouseOver="this.style.backgroundColor='#ffffff';window.status=('Physical number 2747, Virtual number 686, Included 36 lines');return true;" onMouseOut="this.style.backgroundColor='#ffffff'; window.status=('');return true;"><td height=24 width=50 align=center nowrap>686</td><td width=80 align=center nowrap>capri91</td><td width=90 align=center nowrap>2004-03-01</td><td width=50 align=center nowrap>1598</td><td width=100% nowrap>  <img src='./image/bwtx.gif' border=0 align=absmiddle> <a href='/board/bbs.php3?board=board&line=rdate&mode=view&id=2747&fld=&nws=y&page=8&keyword=&flag=&a_o='>[Œ®Õò¢Ì] VMware 3.2òÙРNeXTSTEP 3.3 º„̺ÓÞóÕÚŒ‚® (3º¶ )</a> <font color=orange>(4)</font></td></tr><tr height=24 bgcolor=#ffffff onMouseOver="this.style.backgroundColor='#ffffff';window.status=('Physical number 2793, Virtual number 685, Included 4 lines');return true;" onMouseOut="this.style.backgroundColor='#ffffff'; window.status=('');return true;"><td height=24 width=50 align=center nowrap>685</td><td width=80 align=center nowrap><a href="mailto:onionmixer@gmail.com">onion</a></td><td width=90 align=center nowrap>2007-05-07</td><td width=50 align=center nowrap>1364</td><td width=100% nowrap>  <img src='./image/bwtx.gif' border=0 align=absmiddle> <a href='/board/bbs.php3?board=board&line=rdate&mode=view&id=2793&fld=&nws=y&page=8&keyword=&flag=&a_o='>òÕÈòÙ·º©⁄òÃÞ ºÅ º×ÐòʦºËȺË⁄...</a> <font color=orange>(2)</font></td></tr><tr height=24 bgcolor=#ffffff onMouseOver="this.style.backgroundColor='#ffffff';window.status=('Physical number 2756, Virtual number 684, Included 23 lines');return true;" onMouseOut="this.style.backgroundColor='#ffffff'; window.status=('');return true;"><td height=24 width=50 align=center nowrap>684</td><td width=80 align=center nowrap>LineRoh</td><td width=90 align=center nowrap>2007-04-22</td><td width=50 align=center nowrap>1233</td><td width=100% nowrap>  <img src='./image/bwtx.gif' border=0 align=absmiddle> <a href='/board/bbs.php3?board=board&line=rdate&mode=view&id=2756&fld=&nws=y&page=8&keyword=&flag=&a_o='>NEXTSTEP óÑÞŒ‚®º†Õ, Œ®ÃºË¤ó×È òÁ·òµÃ º¶Ûòµ·ò×к’·...</a> <font color=orange>(7)</font></td></tr><tr height=24 bgcolor=#ffffff onMouseOver="this.style.backgroundColor='#ffffff';window.status=('Physical number 2774, Virtual number 683, Included 13 lines');return true;" onMouseOut="this.style.backgroundColor='#ffffff'; window.status=('');return true;"><td height=24 width=50 align=center nowrap>683</td><td width=80 align=center nowrap>LineRoh</td><td width=90 align=center nowrap>2007-05-01</td><td width=50 align=center nowrap>2021</td><td width=100% nowrap>  <img src='./image/bwtx.gif' border=0 align=absmiddle> <a href='/board/bbs.php3?board=board&line=rdate&mode=view&id=2774&fld=&nws=y&page=8&keyword=&flag=&a_o='>ó΂ò§Ñ òÕ¤º†Ôòµ·º×  º‹·òÙÇòµ‚Œ® </a> <font color=orange>(7)</font></td></tr><tr height=24 bgcolor=#ffffff onMouseOver="this.style.backgroundColor='#ffffff';window.status=('Physical number 2770, Virtual number 682, Included 5 lines');return true;" onMouseOut="this.style.backgroundColor='#ffffff'; window.status=('');return true;"><td height=24 width=50 align=center nowrap>682</td><td width=80 align=center nowrap><a href="mailto:onionmixer@gmail.com">onion</a></td><td width=90 align=center nowrap>2007-04-27</td><td width=50 align=center nowrap>1073</td><td width=100% nowrap>  <img src='./image/bwtx.gif' border=0 align=absmiddle> <a href='/board/bbs.php3?board=board&line=rdate&mode=view&id=2770&fld=&nws=y&page=8&keyword=&flag=&a_o='>Œ®ÐòÁ‹óÕ’ºËȺË⁄..~.~</a> <font color=orange>(2)</font></td></tr><tr height=24 bgcolor=#ffffff onMouseOver="this.style.backgroundColor='#ffffff';window.status=('Physical number 2742, Virtual number 681, Included 49 lines');return true;" onMouseOut="this.style.backgroundColor='#ffffff'; window.status=('');return true;"><td height=24 width=50 align=center nowrap>681</td><td width=80 align=center nowrap>capri91</td><td width=90 align=center nowrap>2007-04-19</td><td width=50 align=center nowrap>1792</td><td width=100% nowrap>  <img src='./image/bwre.gif' border=0 align=absmiddle> <a href='/board/bbs.php3?board=board&line=rdate&mode=view&id=2742&fld=&nws=y&page=8&keyword=&flag=&a_o='>[Œ®Õò¢Ì] NeXTSTEP Porting Tips</a> <font color=orange>(3)</font></td></tr><tr height=24 bgcolor=#ffffff onMouseOver="this.style.backgroundColor='#ffffff';window.status=('Physical number 2739, Virtual number 680, Included 253 lines');return true;" onMouseOut="this.style.backgroundColor='#ffffff'; window.status=('');return true;"><td height=24 width=50 align=center nowrap>680</td><td width=80 align=center nowrap>capri91</td><td width=90 align=center nowrap>2007-04-19</td><td width=50 align=center nowrap>2846</td><td width=100% nowrap>  <img src='./image/bwtx.gif' border=0 align=absmiddle> <a href='/board/bbs.php3?board=board&line=rdate&mode=view&id=2739&fld=&nws=y&page=8&keyword=&flag=&a_o='>[Œ®Õò¢Ì] License Strings for NeXTSTEP Applications</a> <font color=orange>(2)</font></td></tr><tr height=24 bgcolor=#ffffff onMouseOver="this.style.backgroundColor='#ffffff';window.status=('Physical number 2707, Virtual number 679, Included 3 lines');return true;" onMouseOut="this.style.backgroundColor='#ffffff'; window.status=('');return true;"><td height=24 width=50 align=center nowrap>679</td><td width=80 align=center nowrap><a href="mailto:onionmixer@gmail.com">onion</a></td><td width=90 align=center nowrap>2007-03-17</td><td width=50 align=center nowrap>1237</td><td width=100% nowrap>  <img src='./image/bwtx.gif' border=0 align=absmiddle> <a href='/board/bbs.php3?board=board&line=rdate&mode=view&id=2707&fld=&nws=y&page=8&keyword=&flag=&a_o='>òÖóÕÞòÁ‹º§È.. º¶ óÂÀòµ· ò×ÈòʦºËȺË⁄...</a> <font color=orange>(15)</font></td></tr><tr height=24 bgcolor=#ffffff onMouseOver="this.style.backgroundColor='#ffffff';window.status=('Physical number 2696, Virtual number 678, Included 65 lines');return true;" onMouseOut="this.style.backgroundColor='#ffffff'; window.status=('');return true;"><td height=24 width=50 align=center nowrap>678</td><td width=80 align=center nowrap>LineRoh</td><td width=90 align=center nowrap>2007-03-10</td><td width=50 align=center nowrap>1111</td><td width=100% nowrap>  <img src='./image/bwtx.gif' border=0 align=absmiddle> <a href='/board/bbs.php3?board=board&line=rdate&mode=view&id=2696&fld=&nws=y&page=8&keyword=&flag=&a_o='>º†ÈŒ®Þ óÝÃŒ‚®</a> <font color=orange>(2)</font></td></tr><tr height=24 bgcolor=#ffffff onMouseOver="this.style.backgroundColor='#ffffff';window.status=('Physical number 2687, Virtual number 677, Included 23 lines');return true;" onMouseOut="this.style.backgroundColor='#ffffff'; window.status=('');return true;"><td height=24 width=50 align=center nowrap>677</td><td width=80 align=center nowrap>LineRoh</td><td width=90 align=center nowrap>2007-03-07</td><td width=50 align=center nowrap>1418</td><td width=100% nowrap>  <img src='./image/bwtx.gif' border=0 align=absmiddle> <a href='/board/bbs.php3?board=board&line=rdate&mode=view&id=2687&fld=&nws=y&page=8&keyword=&flag=&a_o='>[òÕ̺ƒ…] º†ÈŒ®Þ Œ‡¦ò§ </a> <font color=orange>(7)</font></td></tr><tr height=24 bgcolor=#ffffff onMouseOver="this.style.backgroundColor='#ffffff';window.status=('Physical number 2666, Virtual number 676, Included 28 lines');return true;" onMouseOut="this.style.backgroundColor='#ffffff'; window.status=('');return true;"><td height=24 width=50 align=center nowrap>676</td><td width=80 align=center nowrap>ºË⁄º“¤óÅ©ºƒ‹</td><td width=90 align=center nowrap>2007-03-07</td><td width=50 align=center nowrap>1367</td><td width=100% nowrap>  <img src='./image/bwtx.gif' border=0 align=absmiddle> <a href='/board/bbs.php3?board=board&line=rdate&mode=view&id=2666&fld=&nws=y&page=8&keyword=&flag=&a_o='>[ºÓÞºƒ‰ºËȺË⁄]ibm ºÃ•óÔ…ºËÈóË® kb-7953 º‚Ôº×Û+òÕú¡© A106 Œ‚®Œ‡Ãò˵ º‚Ôº×Û</a> <font color=orange>(13)</font></td></tr></table><table bgcolor=#ffffff width=100% border=0 cellpadding=4 cellspacing=1 align=center><tr bgcolor=#eeeeee><td align=center><a href='/board/bbs.php3?board=board&line=rdate&mode=list&fld=&nws=y&page=1&keyword=&flag=&a_o='>[1]</a> <a href='/board/bbs.php3?board=board&line=rdate&mode=list&fld=&nws=y&page=2&keyword=&flag=&a_o='>[2]</a> <a href='/board/bbs.php3?board=board&line=rdate&mode=list&fld=&nws=y&page=3&keyword=&flag=&a_o='>[3]</a> <a href='/board/bbs.php3?board=board&line=rdate&mode=list&fld=&nws=y&page=4&keyword=&flag=&a_o='>[4]</a> <a href='/board/bbs.php3?board=board&line=rdate&mode=list&fld=&nws=y&page=5&keyword=&flag=&a_o='>[5]</a> <a href='/board/bbs.php3?board=board&line=rdate&mode=list&fld=&nws=y&page=6&keyword=&flag=&a_o='>[6]</a> <a href='/board/bbs.php3?board=board&line=rdate&mode=list&fld=&nws=y&page=7&keyword=&flag=&a_o='>[7]</a> <a href='/board/bbs.php3?board=board&line=rdate&mode=list&fld=&nws=y&page=8&keyword=&flag=&a_o='><font color='red'>[8]</font></a> <a href='/board/bbs.php3?board=board&line=rdate&mode=list&fld=&nws=y&page=9&keyword=&flag=&a_o='>[9]</a> <a href='/board/bbs.php3?board=board&line=rdate&mode=list&fld=&nws=y&page=10&keyword=&flag=&a_o='>[10]</a> <a href='/board/bbs.php3?board=board&line=rdate&mode=list&fld=&nws=y&page=11&keyword=&flag=&a_o='>íÖ¶</a></td></tr></table>
  62.  
  63. <a name="page_bottom"></a><form method=post action='/board/bbs.php3?board=board&line=rdate&fld=&nws=y&page=&keyword=&flag=&a_o='><table width=100% border=0 cellpadding=0 cellspacing=1 align=center><tr><td align=left><a href='/board/bbs.php3?board=board&line=rdate&mode=list&fld=&nws=y&page=8&keyword=&flag=&a_o='>[º“’º¡µº‡·Œ‚®]</a> <a href='/board/bbs.php3?board=board&line=rdate&mode=new&fld=&nws=y&page=8&keyword=&flag=&a_o='>[Œ‚ òÓ®Œ‚®]</a> <br><br></td><td align=right><select name=flag><option value='subject' selected>ò©Þº“’ <option value='contents'>ºÁ·òÜ’ <option value='name'>òµ·ºƒÃ <option value='all'>ò©Ãò†· </select> <input type=search results name=keyword size=20 maxlength=50 value=''> <select name=a_o><option value='AND' selected>AND <option value='OR'>OR </select> <input type=submit value='Search'><br><br></td></tr></table>
  64.  
  65. </td></tr><tr><td align=center valign=bottom><br><a href='/board/rss2.php?items=active'><img src='/images/rssicon.gif' width=15 height=15></a> <img src='/images/copyright.gif' border=0></td></tr><tr><td height=40></td></tr></table></form></div></body></html>
  66.  
  67.