aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/scripts (unfollow)
Commit message (Collapse)AuthorFilesLines
2013-04-27Fix Windows autobuild support, coz it's different from the others. sighDavid Walter Seikel1-0/+3
2013-04-26Make sure the TYPE variable is actually defined for nmake builds.David Walter Seikel1-1/+3
2013-04-26Make nmake builds more like VS builds.David Walter Seikel1-1/+1
Still some tweaking to go, therefore, still some rough bits in this.
2013-04-24Add compatibility with autobuild pre built libraries.David Walter Seikel1-0/+38
Now Imprudence can share them with Kokua.
2013-04-20Make python output stuff in the proper order.David Walter Seikel1-0/+4
2013-04-19Allow the build scripts to build a configurable type, and make that type ↵David Walter Seikel3-2/+4
RelWithDebInfo.
2013-04-18New branch for building with nmake.David Walter Seikel5-36/+31
This is a branch, coz it's still crap.
2013-04-17Better cache directory code for pre built libraries.David Walter Seikel1-4/+4
2013-04-11Add release number to version strings.David Walter Seikel1-1/+2
2012-02-20Adding my linux build scripts. Makes it easy to build under 32 and 64 bit ↵David Walter Seikel7-0/+545
linux.
2012-02-18Fixed one of those annoying silly bugs: md5 comparison being case-sensitiveMcCabe Maxsted1-1/+2
2011-11-13Linux: allow cross compiling the 32bit viewer on a x86_64 platformArmin Weatherwax1-2/+5
to do so: (have anything for crosscompiling installed), export WORD_SIZE='32' before configuring and/or building. Be aware: Mixing several platforms in one root directory probably wont work (didn't try though). Cross compiling the 64bit viewer on a i686 platform isn't tested, but probably will work using export WORD_SIZE='64'
2011-10-11Use the bash builtin time command, it's output is much nicer by default.David Walter Seikel1-2/+3
2011-06-27Make use of the new packaging stuff from upstream.David Walter Seikel2-98/+5
2011-06-06Trying to use the new package thingy, did not work.David Seikel1-0/+100
I need to study what they did more closely. At least the script itself is here, to remind me to fix it. lol
2011-05-21Ported Mac packaging system from Kokua.Jacek Antonelli1-5/+1
Build the "package" target in Xcode to create a DMG.
2011-05-20Ported Linux packaging system from Kokua.Jacek Antonelli1-0/+338
Run "make package" in the build directory to create a tarball.
2011-05-19Ported viewer_info.py and BuildVersion.cmake from Kokua.Jacek Antonelli2-62/+101
viewer_info.py provides a way to easily query the viewer name and version (from viewerinfo.cpp). It replaces build_version.py, which has been removed. BuildVersion.cmake has been updated to use viewer_info.py instead of build_version.py.
2011-03-03Added pixman to the "use system GTK+" list of things to remove.David Seikel1-2/+3
2011-01-17IMP-429: Link against prebuilt libraries / always use gtk-related system ↵Aleric Inglewood1-0/+24
libs (linux) (cherry picked from commit a3cffd06a0e7aa92e1b6c28e7bad655b7085296c)
2011-01-13Linux build scripts.David Seikel6-0/+536
These are the scripts I use to build most of the viewers that I have tried building. These scripts are based on cmake-SL v1.31 (c)2008-2009 Henri Beauchamp. Released under GPL license v2: http://www.gnu.org/licenses/gpl.txt I split them up and made them more generic.
2010-10-26IMP-670: Uninstall packages that are renewedAleric Inglewood1-5/+10
Uninstall old files when a new package with the same name is being installed. See http://redmine.imprudenceviewer.org/issues/670
2010-10-10RED-429: Additional fixes.Aleric Inglewood1-24/+27
This patch fixes the regression that you couldn't run 'scripts/install.py' anymore from linden/ when installing a prebuilt package. It also adds support for --dry-run: still printing what symlinks are missing when that options is used without actually adding the symlinks. Finally, the added symlinks are now added to the 'files' section in install.xml so that they are also removed again when you uninstall the package.
2010-10-08RED-429: Link against prebuilt libraries / always use gtk-related system ↵Aleric Inglewood1-0/+24
libs (linux) This patch fixes the problem that there were no 'developer' symlinks for the prebuilt packages (which is not needed for runtim), causing the casual user that tries to compile the viewer on linux (without using --standalone) to link against their system libs (while using the header files of the prebuilt versions), often causing linker errors. It also fixes the fact that a few libraries were completely missing, most notably the dbusglib package only had header files and not a library at all! libgio and libpangocairo where missing from the link command line so that the wrong libraries were picked up, if any at all. Finally, the last GTK related prebuilt libraries have simply been removed from the packaging: linux has those installed (or else the users will know how to install them as soon as they see that the viewer complains about a missing library). This is much more stable, as all those libraries more or less form a whole. Or rather, the libraries that use glib, as especially that one gives a problem at the moment since the latest glib has new g_malloc_n functions that don't exist in the prebuilt glib. Note the difference between a USER compiling her own viewer, and the imprudence team compiling a release: When the imprudence team compiles a release we need to create a portable binary that runs on many versions of linux. In order to achieve that we link against "old" library versions, so that the viewer still works on old operating systems, and (hopefull) also on newer systems, since libraries with the same SONAME are backwards compatible. With g_malloc_n as example: our viewer binary doesn't use that function, so a user that links with their own glib will never have a problem, whether or not his library provides this function. On the other hand, when a user gets the sources and compiles his own viewer he wants to use the LATEST library versions: his own operating system ones. The best way to achieve this is to configure with --standalone, but that currently demands that ALL libraries are installed on her system, including a few very-hard-to-get libraries. If she therefore chooses to configure without --standalone, she suddenly gets all the old library versions, forcing her to at least link against those at compile time (in order to minimize the risk of version incompatibilities). A better solution for the do-it-yourself user would be to have a --semi-standalone configuration that only uses the hard-to-get prebuilt libs and further uses as much the operating system libraries as possible. For most of the hard-to-get libraries this is no problem since they all only depend on libc and similar stable ABI libs.
2010-10-02RED-578: SNOW-744: scripts/install.py --uninstall does not remove symbolic ↵Aleric Inglewood1-1/+1
links. See http://redmine.imprudenceviewer.org/issues/578
2010-09-30RED-578: SNOW-744: scripts/install.py --uninstall does not remove symbolic ↵Aleric Inglewood1-1/+1
links. See http://redmine.imprudenceviewer.org/issues/578
2010-06-19OpenCircuit is now UDPBlackListedMcCabe Maxsted1-1/+1
2010-06-19Replace some puncuation and spaces with '-' in the test versionJacek Antonelli1-0/+2
2010-06-19Made CMake find the viewer version in xmlMcCabe Maxsted1-4/+4
2010-05-06Fixed a subprocess usage bug in make_changelog.py. @nochangelogJacek Antonelli1-1/+1
2010-03-18Improved make_changelog.py.Jacek Antonelli1-20/+39
* Uses 'subprocess' module instead of 'commands' (which is Unix-only). * No longer overwrites ChangeLog.txt when it fails. @nochangelog
2010-03-15Small compatibility fix to make_changelog.py.Jacek Antonelli1-1/+1
os.uname is not available on Windows. sys.platform is better. @nochangelog
2010-03-13Tweaked make_changelog.py to work on Mac.Jacek Antonelli1-14/+20
Compatibility with older python and git versions, and set PATH to try to find git executable in likely locations. @nochangelog
2010-03-13ChangeLog.txt is now generated from the Git log at compile time.Jacek Antonelli1-0/+432
It is no longer version controlled and should not be editted manually. Put '@nochangelog' in commit messages to omit them from the log. See linden/scripts/make_changelog.py for more information.
2009-09-07Fixed tool brush sizeMcCabe Maxsted1-3/+7
2009-09-03Updated some python scripts to not use deprecated modules.Jacek Antonelli1-4/+2
2009-06-06Improved regex and formatting in build_version.py.Jacek Antonelli1-2/+8
Handles empty test version strings better.
2009-04-30Second Life viewer sources 1.23.0-RCJacek Antonelli4-51/+155
2009-01-28Second Life viewer sources 1.22.7-RCJacek Antonelli1-1/+3
2009-01-14Added the 'Return to World' inventory optionMcCabe Maxsted1-0/+52
2009-01-11Second Life viewer sources 1.22.5-RCJacek Antonelli3-3/+3
2008-12-13Version string generator now includes test label.Jacek Antonelli1-1/+3
This is used for naming packages on Linux, among other things.
2008-12-01Second Life viewer sources 1.22.0-RCJacek Antonelli2-7/+75
2008-11-02Script finds Imprudence version numbers for packaging.Jacek Antonelli1-6/+4
2008-10-08Second Life viewer sources 1.21.5-RCJacek Antonelli1-1/+2
2008-09-28Second Life viewer sources 1.21.3-RCJacek Antonelli1-3/+3
2008-09-06Second Life viewer sources 1.21.0-RCJacek Antonelli3-3/+1172
2008-08-15Second Life viewer sources 1.20.7Jacek Antonelli1-0/+4
2008-08-15Second Life viewer sources 1.20.2Jacek Antonelli1-6/+24
2008-08-15Second Life viewer sources 1.19.1.0Jacek Antonelli3-3/+32