编译 hulahop 时出错

编译 hulahop 时出错

当我克隆的时候呼啦舞我曾有一个可能性很小安装它。

我选择了这条路autogen.sh

我使用命令:

$ sh autogen.sh # -> OK
$ ./configure   # -> OK

make失败了:

$ sudo make 2> errors.txt
$ cat errors.txt
hulahop.cpp:28:29: error: pyxpcom/PyXPCOM.h: No such file or directory
In file included from /usr/include/python2.6/Python.h:8,
                 from hulahop-web-view.h:23,
                 from hulahop.h:23,
                 from hulahop.cpp:31:
/usr/include/python2.6/pyconfig.h:395:1: warning: "HAVE_LONG_LONG" redefined
In file included from /usr/include/xulrunner-1.9.2.24/nspr/prtypes.h:58,
                 from /usr/include/xulrunner-1.9.2.24/nscore.h:51,
                 from /usr/include/xulrunner-1.9.2.24/nsDebug.h:42,
                 from /usr/include/xulrunner-1.9.2.24/nsCOMPtr.h:59,
                 from hulahop.cpp:20:
/usr/include/xulrunner-1.9.2.24/nspr/prcpucfg.h:807:1: warning: this is the location of the previous definition
In file included from /usr/include/python2.6/Python.h:8,
                 from hulahop-web-view.h:23,
                 from hulahop.h:23,
                 from hulahop.cpp:31:
/usr/include/python2.6/pyconfig.h:1031:1: warning: "_POSIX_C_SOURCE" redefined
In file included from /usr/include/sys/types.h:27,
                 from /usr/include/xulrunner-1.9.2.24/nspr/obsolete/protypes.h:79,
                 from /usr/include/xulrunner-1.9.2.24/nspr/prtypes.h:517,
                 from /usr/include/xulrunner-1.9.2.24/nscore.h:51,
                 from /usr/include/xulrunner-1.9.2.24/nsDebug.h:42,
                 from /usr/include/xulrunner-1.9.2.24/nsCOMPtr.h:59,
                 from hulahop.cpp:20:
/usr/include/features.h:158:1: warning: this is the location of the previous definition
In file included from /usr/include/python2.6/Python.h:8,
                 from hulahop-web-view.h:23,
                 from hulahop.h:23,
                 from hulahop.cpp:31:
/usr/include/python2.6/pyconfig.h:1040:1: warning: "_XOPEN_SOURCE" redefined
In file included from /usr/include/sys/types.h:27,
                 from /usr/include/xulrunner-1.9.2.24/nspr/obsolete/protypes.h:79,
                 from /usr/include/xulrunner-1.9.2.24/nspr/prtypes.h:517,
                 from /usr/include/xulrunner-1.9.2.24/nscore.h:51,
                 from /usr/include/xulrunner-1.9.2.24/nsDebug.h:42,
                 from /usr/include/xulrunner-1.9.2.24/nsCOMPtr.h:59,
                 from hulahop.cpp:20:
/usr/include/features.h:160:1: warning: this is the location of the previous definition
hulahop.cpp: In function ‘HulahopWebView* hulahop_get_view_for_window(PyObject*)’:
hulahop.cpp:101: error: ‘Py_nsISupports’ has not been declared
hulahop.cpp:112: error: ‘do_GetService’ was not declared in this scope
make[1]: *** [hulahop.lo] Error 1
make: *** [all-recursive] Error 1

你能帮我编译一下吗?

答案1

error: pyxpcom/PyXPCOM.h: No such file or directory

你需要PyXPCOM。 它不是目前在Ubuntu中

有几个旧的 PyXPCOM PPA,您可以尝试它们,但是自 maverick 以来两者都没有更新,因此它们可能不起作用。

否则,从源代码构建 PyXPCOM。但首先,检查是否PyXPCOMext(您可以以二进制形式获得)足以满足您的目的。

相关内容