[sldev] Build errors(in XCode 2.5) with indra.y.h
Argent Stonecutter
secret.argent at gmail.com
Sun Sep 30 08:48:00 PDT 2007
On 30-Sep-2007, at 10:12, Michael Miller wrote:
> Well, in the derived sources folder, after the build is run, I can see
> three files:
>
> 1. indra.l.cpp
> 2. indra.y.cpp
> 3. indra.y.hpp
Looks like it needs Yet Another #ifdef...
#if LL_WINDOWS
#include "ytab.h"
#else
#include "indra.y.h"
#endif
Would become (since it's N-way):
#if defined(LL_WINDOWS)
# include "ytab.h"
#elseif defined(something_else)
# include "indra.y.hpp"
#else
# include "indra.y.h"
#endif
Since you're the one with the spotty cat, you should be able to fill
in (something_else) and submit a patch.
More information about the SLDev
mailing list