diff options
author | Brent Eagles <brent@zeroc.com> | 2005-03-09 22:50:42 +0000 |
---|---|---|
committer | Brent Eagles <brent@zeroc.com> | 2005-03-09 22:50:42 +0000 |
commit | 79b4b2d9b59ffc65564bdf51ef3bfcc3333e1eea (patch) | |
tree | 1de55a7a7f63d12bb3ff6e2b93cb2c8d0ee9f7a4 /cpp/newmakebindist.py | |
parent | Fix to include expat on Mac OS X (diff) | |
download | ice-79b4b2d9b59ffc65564bdf51ef3bfcc3333e1eea.tar.bz2 ice-79b4b2d9b59ffc65564bdf51ef3bfcc3333e1eea.tar.xz ice-79b4b2d9b59ffc65564bdf51ef3bfcc3333e1eea.zip |
first whack at including OpenSSL binaries in HP-UX
Diffstat (limited to 'cpp/newmakebindist.py')
-rwxr-xr-x | cpp/newmakebindist.py | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/cpp/newmakebindist.py b/cpp/newmakebindist.py index 445097ce3a3..c85225c3c10 100755 --- a/cpp/newmakebindist.py +++ b/cpp/newmakebindist.py @@ -706,7 +706,7 @@ def main(): binaries.extend(glob.glob(installDir + '/Ice-' + version + '/lib/*' + shlibExtensions(version, soVersion)[0])) cwd = os.getcwd() os.chdir(installDir) - if not getPlatform() in ['linux']: + if not getPlatform() == 'linux': # # I need to get third party libraries. # @@ -715,9 +715,16 @@ def main(): for f in dbFiles: shutil.copy(dbLocation + '/' + f.strip(), 'Ice-' + version + '/' + f.strip()) - if getPlatform() in ['macosx']: + if getPlatform() == 'macosx': copyExpatFiles(buildEnvironment['EXPAT_HOME'], version) + if getPlatform() == 'hpux': + ssl = buildEnvironment['OPENSSL_HOME'] + os.system('cp ' + ssl + '/bin/* Ice-' + version + '/bin') + os.system('cp -pR ' + ssl + '/include Ice-' + version) + os.system('cp -pR ' + ssl + '/lib/* Ice-' + version + '/lib') + os.system('rm -rf Ice-' + version + '/lib/libfips*') + uname = getuname() platformSpecificFiles = [ 'README', 'SOURCES', 'THIRD_PARTY_LICENSE' ] for psf in platformSpecificFiles: |