Subj : Re: Where is jsautocfg.h file under Windows NT? To : netscape.public.mozilla.jseng From : David Bradley Date : Thu Feb 13 2003 08:00 am Sumit Babu wrote: > Hello, > > I can't find jsautocfg.h file under Windows NT even after compiling. > In *nix machines it is created under the .OBJ directory... But the same > I am not able to find the same under Windows NT. I am trying to compile > JavaScript::SpiderMonkey perl module and it is complaining that it can > find the jsautocfg.h file. Can someone please point to me how it can be > generated/obtained? It should be created in your object directory as well. Worse case you could just manually create a blank file, since that's all this does. 344 ifeq ($(OS_ARCH),WINNT) 345 jsautocfg.h: 346 touch $@ 347 else 348 jsautocfg.h: jscpucfg$(BIN_SUFFIX) 349 @rm -f $@ jsautocfg.tmp 350 ./jscpucfg > jsautocfg.tmp 351 mv jsautocfg.tmp $@ 352 endif The Makefile.ref seems to only reference this file and not build it. Wonder if that's a bug in that makefile. David Bradley .