- 论坛徽章:
- 0
|
回复 #4 liying_gg 的帖子
具体要干的东西如下,前面的已经解决了,后面的不行,如下:
package = "firefox-2.0.0.4-source.tar.bz2"
result = system("tar jxfv " + package)
mozilla = "mozilla"
chdir(mozilla)
for command in ("./configure --enable-application=browser --enable-system-cairo", "make"):
result = system(command)
if result != 0:
print "Running \"%s\" within the \"%s\" subdirectory failed with error code %d. Aborting script..." % (command, mozi
lla, result)
sys.exit()
# rise out of mozilla folder, and rise even further to top-level directory
chdir("..")
chdir("..")
# set up soft links to a distinguished set of .a files (and one .o file). The build system supporting
# libfbml needs to pretend that these .o/.a files exist in ./src/lib/ so that libatom.a and libfbml.a can
# can be built. All of the relative paths are hard-coded.
print "Searching for all of the Mozilla object files and archives that libfbml depends on"
archivefiles = ("os_Linux_x86.o", "libxptinfo.a", "libxptcmd.a", "libxptcall.a", "libxpt.a", "libxpcomthreads_s.a",
"libxpcomproxy_s.a", "libxpcomio_s.a", "libxpcomglue_s.a", "libxpcomglue.a", "libxpcomds_s.a",
"libxpcomcomponents_s.a", "libxpcombase_s.a", "libunicharutil_s.a", "libstrres_s.a",
"libstring_s.a", "libsaxp.a", "libplds4.a", "libplc4.a", "libnspr4.a", "libmozutil_s.a",
"libexpat_s.a")
for filename in archivefiles:
system("rm -f src/lib/" + filename) # force the removal of previously set up soft links
createSoftLink(dependenciesdir + sep + mozilla, filename, "src" + sep + "lib", ".." + sep + "..")
result = system("make")
if result != 0:
print "Failed to make libfbml.... Aborting"
sys.exit(result)
# finally, descend into PHP extension directory and push new PHP extension back behind apache
subdirectory = "ext"
chdir(subdirectory)
for command in ("phpize", "./configure", "make", "sudo make install"):
result = system(command)
if result != 0:
print "Running \"%s\" within the \"%s\" subdirectory failed with error code %d. Aborting script..." % (command, subd
irectory, result)
sys.exit(result) |
|