Changeset 19794

Show
Ignore:
Timestamp:
02/02/07 14:10:36 (2 years ago)
Author:
patrick
Message:

Fixed two packaging errors for OpenAL and ALUT:

  1. Check C:\WINDOWS\SysWOW64 for OpenAL32.dll since that's where it ends
    up on 64-bit Windows.
  2. Reference the correct variable when installing alut.dll (in the case
    when ALUT is installed separately from OpenAL).
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • juggler/branches/2.0/buildwin32.py

    r19749 r19794  
    15371537      # OpenAL 1.0 and 1.1 put the redistributable DLL in different places. 
    15381538      dll_dirs = [os.path.join(srcdir, 'dll'), 
     1539                  os.path.join(r'C:\windows', 'SysWOW64'), 
    15391540                  os.path.join(r'C:\windows', 'system32')] 
    15401541 
     
    15431544         if os.path.exists(dll): 
    15441545            smartCopy(dll, destdir) 
     1546            break 
    15451547 
    15461548   srcdir = os.environ['ALUT_ROOT'] 
     
    15511553      alut_dll = os.path.join(srcdir, 'lib', 'alut.dll') 
    15521554      if os.path.exists(alut_dll): 
    1553          smartCopy(dll, destdir) 
     1555         smartCopy(alut_dll, destdir) 
    15541556 
    15551557def installOmniORB(prefix):