google-code-export / google-gadgets-for-linux

Automatically exported from code.google.com/p/google-gadgets-for-linux
0 stars 0 forks source link

nspr header detection issue #99

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Some distribution like fedora provide nspr headers in
/usr/include/nspr<Version> directory.

the nspr header files is needed by SpiderMonkey(js).
for example, in jslock.h
#include "pratom.h"
#include "prlock.h"
#include "prcvar.h"
#include "prthread.h"

configure process did not check the nspr headers, it cause
"smjs_script_runtime" failed to compile.

A probable fix of this issue is to check nspr.pc and setup the include dirs
properly.

Original issue reported on code.google.com by cjac...@gmail.com on 30 May 2008 at 4:55

GoogleCodeExporter commented 9 years ago
The dependency should be stated in spidermonkey's pc file.

Original comment by james...@gmail.com on 8 Jun 2008 at 5:36