Skip to content
Snippets Groups Projects
Commit 3e810695 authored by John Wohlbier's avatar John Wohlbier Committed by becker33
Browse files

For qt3, append to LD_LIBRARY_PATH, do not nuke it (#2862)

* libmonitor does not exist at
http://libmonitor.googlecode.com/svn/trunk/

Change location to HPCToolkit version at github. Specify the hash corresponding
to the 20130218 version.

* When xcb is version 1.11, patch the configure file so it doesn't trip on
pthread-stubs and xau.

* Add os.getcwd()/lib to LD_LIBRARY_PATH, instead of nuking
existing LD_LIBRARY_PATH.
parent adac3ebb
No related branches found
No related tags found
No related merge requests found
...@@ -227,7 +227,7 @@ def common_config_args(self): ...@@ -227,7 +227,7 @@ def common_config_args(self):
@when('@3') @when('@3')
def configure(self): def configure(self):
# A user reported that this was necessary to link Qt3 on ubuntu # A user reported that this was necessary to link Qt3 on ubuntu
os.environ['LD_LIBRARY_PATH'] = os.getcwd() + '/lib' os.environ['LD_LIBRARY_PATH'] += os.pathsep + os.getcwd() + '/lib'
configure('-prefix', self.prefix, configure('-prefix', self.prefix,
'-v', '-v',
'-thread', '-thread',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment