Changeset 19795

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

MF20 [rev 19794]: 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/trunk/build_windows.py

    r19783 r19795  
    17391739      # OpenAL 1.0 and 1.1 put the redistributable DLL in different places. 
    17401740      dll_dirs = [os.path.join(srcdir, 'dll'), 
     1741                  os.path.join(r'C:\windows', 'SysWOW64'), 
    17411742                  os.path.join(r'C:\windows', 'system32')] 
    17421743 
     
    17451746         if os.path.exists(dll): 
    17461747            smartCopy(dll, destdir) 
     1748            break 
    17471749 
    17481750   srcdir = os.environ['ALUT_ROOT'] 
     
    17531755      alut_dll = os.path.join(srcdir, 'lib', 'alut.dll') 
    17541756      if os.path.exists(alut_dll): 
    1755          smartCopy(dll, destdir) 
     1757         smartCopy(alut_dll, destdir) 
    17561758 
    17571759def installOmniORB(prefix):