Re: [Etherboot-developers] Re: failed
Brought to you by:
marty_connor,
stefanhajnoczi
|
From: Ken Y. <ke...@nl...> - 2000-11-03 05:31:05
|
>>#ifdef IMAGE_MENU >>extern char *motd[RFC1533_VENDOR_NUMOFMOTD]; >>... >> >>Is it possible to do MOTD without IMAGE_MENU? If so, it might make sense >>to put the *motd buffer under another conditional, or possibly define >>IMAGEMENU "with extreme prejudice" :-) > >Or I could do this fix, which would forestall this error in future: > >Change all #ifdef MOTD to #if defined(MOTD) && defined(IMAGE_MENU). Well it looks like that extern declaration is bracketed by the wrong ifdef. I've put it inside a #ifdef MOTD now. One more bug fixed for 4.6.11. |