On 30.01.2013, at 09:53, Fred Kiefer wrote: > In file included from VHFPopUpButtonAdditions.m:36:0: > VHFPopUpButtonAdditions.h:40:71: fatal error: VHFShared/vhfCompatibility.h: > Datei oder Verzeichnis nicht gefunden
ok, I was looking in the wrong file. The problem is in the header file "VHFShared/VHFPopUpButtonAdditions.h". The line: #include <VHFShared/vhfCompatibility.h> should be changed to: #include "vhfCompatibility.h" I can't test it with GNUstep at the moment, but it should work. Georg > On 30.01.2013 05:12, Georg Fleischmann wrote: >> >> On 26.01.2013, at 14:40, Fred Kiefer wrote: >>> Thank you for this new version of Cenon. I had to add the definition >>> >>> #ifndef MAXFLOAT >>> #define MAXFLOAT FLT_MAX >>> #endif >>> >>> into DocView.m, VGroup.m and VPolyline.m to get it to compile on my >>> OpenSuse 12.2. There this macro is only defined in math.h for __USE_XOPEN. >> >> Thank's, I will fix this, when I'm back in Germany. > > Great! > >>> I am also having problems to compile VHFShared, there I get the error: >>> >>> In file included from VHFPopUpButtonAdditions.m:36:0: >>> VHFPopUpButtonAdditions.h:40:71: fatal error: VHFShared/vhfCompatibility.h: >>> Datei oder Verzeichnis nicht gefunden >>> compilation terminated. >> >> Probably it helps to change this line from >> >> #include "VHFPopUpButtonAdditions.h" >> >> to >> >> #include <VHFShared/VHFPopUpButtonAdditions.h> > > This makes things worse, now I get: > > VHFPopUpButtonAdditions.m:37:47: fatal error: > VHFShared/VHFPopUpButtonAdditions.h: Datei oder Verzeichnis nicht gefunden > > instead of > > In file included from VHFPopUpButtonAdditions.m:36:0: > VHFPopUpButtonAdditions.h:40:71: fatal error: VHFShared/vhfCompatibility.h: > Datei oder Verzeichnis nicht gefunden > > > For both to work you would need to have the parent directory in the include > path. Most likely it will even work on your computer as you already have a > previous version of these header files installed and they will get included > from there. > > Fred > > >
_______________________________________________ Gnustep-dev mailing list [email protected] https://lists.gnu.org/mailman/listinfo/gnustep-dev
