diff options
author | Armin Weatherwax | 2009-12-04 11:03:07 +0100 |
---|---|---|
committer | Jacek Antonelli | 2010-04-28 23:04:21 -0500 |
commit | 1fc0936f2eff90370404fa3c03fb64a266ac06bd (patch) | |
tree | 97ff3ea39f8350ae16cd23c95fbcec4c0e77cb95 /linden/indra/newview/viewer_manifest.py | |
parent | Updated ChangeLog.txt and RELEASE_NOTES.txt for version 1.2.2. (diff) | |
download | meta-impy-1fc0936f2eff90370404fa3c03fb64a266ac06bd.zip meta-impy-1fc0936f2eff90370404fa3c03fb64a266ac06bd.tar.gz meta-impy-1fc0936f2eff90370404fa3c03fb64a266ac06bd.tar.bz2 meta-impy-1fc0936f2eff90370404fa3c03fb64a266ac06bd.tar.xz |
Trying the new 64bit libs and adding the adjustments needed.
(Backported from d057e71bc) @nochangelog
Diffstat (limited to 'linden/indra/newview/viewer_manifest.py')
-rwxr-xr-x | linden/indra/newview/viewer_manifest.py | 107 |
1 files changed, 105 insertions, 2 deletions
diff --git a/linden/indra/newview/viewer_manifest.py b/linden/indra/newview/viewer_manifest.py index a914550..2a81c5e 100755 --- a/linden/indra/newview/viewer_manifest.py +++ b/linden/indra/newview/viewer_manifest.py | |||
@@ -769,7 +769,6 @@ class LinuxManifest(ViewerManifest): | |||
769 | # 'dst': self.get_dst_prefix(), | 769 | # 'dst': self.get_dst_prefix(), |
770 | # 'inst': self.build_path_of(installer_name)}) | 770 | # 'inst': self.build_path_of(installer_name)}) |
771 | 771 | ||
772 | |||
773 | class Linux_i686Manifest(LinuxManifest): | 772 | class Linux_i686Manifest(LinuxManifest): |
774 | def construct(self): | 773 | def construct(self): |
775 | super(Linux_i686Manifest, self).construct() | 774 | super(Linux_i686Manifest, self).construct() |
@@ -892,6 +891,7 @@ class Linux_x86_64Manifest(LinuxManifest): | |||
892 | super(Linux_x86_64Manifest, self).construct() | 891 | super(Linux_x86_64Manifest, self).construct() |
893 | self.path("imprudence-stripped","bin/do-not-directly-run-imprudence-bin") | 892 | self.path("imprudence-stripped","bin/do-not-directly-run-imprudence-bin") |
894 | # self.path("../linux_crash_logger/linux-crash-logger-stripped","linux-crash-logger.bin") | 893 | # self.path("../linux_crash_logger/linux-crash-logger-stripped","linux-crash-logger.bin") |
894 | |||
895 | self.path("linux_tools/launch_url.sh","launch_url.sh") | 895 | self.path("linux_tools/launch_url.sh","launch_url.sh") |
896 | if self.prefix("res-sdl"): | 896 | if self.prefix("res-sdl"): |
897 | self.path("*") | 897 | self.path("*") |
@@ -899,7 +899,110 @@ class Linux_x86_64Manifest(LinuxManifest): | |||
899 | self.end_prefix("res-sdl") | 899 | self.end_prefix("res-sdl") |
900 | 900 | ||
901 | self.path("featuretable_linux.txt") | 901 | self.path("featuretable_linux.txt") |
902 | self.path("secondlife-i686.supp") | 902 | #self.path("secondlife-x86_64.supp") |
903 | |||
904 | self.path("app_settings/mozilla-runtime-linux-x86_64") | ||
905 | |||
906 | if self.prefix("../../libraries/x86_64-linux/lib_release_client", dst="lib"): | ||
907 | self.path("libapr-1.so.0") | ||
908 | self.path("libaprutil-1.so.0") | ||
909 | self.path("libdb-4.2.so") | ||
910 | self.path("libcrypto.so.0.9.8") | ||
911 | self.path("libexpat.so.1") | ||
912 | self.path("libssl.so.0.9.8") | ||
913 | self.path("libuuid.so", "libuuid.so.1") | ||
914 | self.path("libSDL-1.2.so.0") | ||
915 | self.path("libELFIO.so") | ||
916 | self.path("libopenjpeg.so.1.3.0", "libopenjpeg.so.1.3") | ||
917 | self.path("libxml2.so.2") | ||
918 | self.path("libz.so.1") | ||
919 | |||
920 | # OpenAL | ||
921 | self.path("libopenal.so.1") | ||
922 | self.path("libalut.so.0") | ||
923 | |||
924 | # GTK+ and dependencies | ||
925 | self.path("libatk-1.0.so.0") | ||
926 | self.path("libcairo.so.2") | ||
927 | self.path("libfontconfig.so.1") | ||
928 | self.path("libfreetype.so.6") | ||
929 | self.path("libgdk_pixbuf-2.0.so.0") | ||
930 | self.path("libgdk-x11-2.0.so.0") | ||
931 | self.path("libgtk-x11-2.0.so.0") | ||
932 | self.path("libpango-1.0.so.0") | ||
933 | self.path("libpangoft2-1.0.so.0") | ||
934 | self.path("libpangox-1.0.so.0") | ||
935 | self.path("libpangoxft-1.0.so.0") | ||
936 | self.path("libpixman-1.so.0") | ||
937 | |||
938 | # Gstreamer libs | ||
939 | self.path("libgstbase-0.10.so.0") | ||
940 | self.path("libgstreamer-0.10.so.0") | ||
941 | self.path("libgstaudio-0.10.so.0") | ||
942 | self.path("libgstbase-0.10.so.0") | ||
943 | self.path("libgstcontroller-0.10.so.0") | ||
944 | self.path("libgstdataprotocol-0.10.so.0") | ||
945 | self.path("libgstinterfaces-0.10.so.0") | ||
946 | self.path("libgstnetbuffer-0.10.so.0") | ||
947 | self.path("libgstpbutils-0.10.so.0") | ||
948 | self.path("libgstriff-0.10.so.0") | ||
949 | self.path("libgstrtp-0.10.so.0") | ||
950 | self.path("libgstrtsp-0.10.so.0") | ||
951 | self.path("libgstsdp-0.10.so.0") | ||
952 | self.path("libgsttag-0.10.so.0") | ||
953 | self.path("libgstvideo-0.10.so.0") | ||
954 | |||
955 | # Gstreamer plugin dependencies | ||
956 | self.path("libogg.so.0") | ||
957 | self.path("libtheora.so.0") | ||
958 | self.path("libvorbis.so.0") | ||
959 | self.path("libvorbisenc.so.2") | ||
960 | self.path("liboil-0.3.so.0") | ||
961 | |||
962 | # Gstreamer plugins | ||
963 | if self.prefix("gstreamer-plugins"): | ||
964 | self.path("libgstalsa.so") | ||
965 | self.path("libgstasf.so") | ||
966 | self.path("libgstaudioconvert.so") | ||
967 | self.path("libgstaudioresample.so") | ||
968 | self.path("libgstautodetect.so") | ||
969 | self.path("libgstavi.so") | ||
970 | self.path("libgstcoreelements.so") | ||
971 | self.path("libgstcoreindexers.so") | ||
972 | self.path("libgstdecodebin2.so") | ||
973 | self.path("libgstdecodebin.so") | ||
974 | self.path("libgstesd.so") | ||
975 | self.path("libgstffmpeg.so") | ||
976 | self.path("libgstffmpegcolorspace.so") | ||
977 | self.path("libgstgnomevfs.so") | ||
978 | self.path("libgsticydemux.so") | ||
979 | self.path("libgstid3demux.so") | ||
980 | self.path("libgstmpegdemux.so") | ||
981 | self.path("libgstmultifile.so") | ||
982 | self.path("libgstmultipart.so") | ||
983 | self.path("libgstogg.so") | ||
984 | self.path("libgstossaudio.so") | ||
985 | self.path("libgstplaybin.so") | ||
986 | self.path("libgstpulse.so") | ||
987 | self.path("libgstqtdemux.so") | ||
988 | self.path("libgstqueue2.so") | ||
989 | self.path("libgsttcp.so") | ||
990 | self.path("libgsttheora.so") | ||
991 | self.path("libgsttypefindfunctions.so") | ||
992 | self.path("libgstudp.so") | ||
993 | self.path("libgstvideoscale.so") | ||
994 | self.path("libgstvolume.so") | ||
995 | self.path("libgstvorbis.so") | ||
996 | self.path("libgstwavparse.so") | ||
997 | |||
998 | self.end_prefix("gstreamer-plugins") | ||
999 | self.end_prefix("lib") | ||
1000 | |||
1001 | # Vivox runtimes | ||
1002 | #if self.prefix(src="vivox-runtime/i686-linux", dst="bin"): | ||
1003 | # self.path("SLVoice") | ||
1004 | # self.end_prefix() | ||
1005 | |||
903 | 1006 | ||
904 | if __name__ == "__main__": | 1007 | if __name__ == "__main__": |
905 | main() | 1008 | main() |