Changeset 182891 in webkit


Ignore:
Timestamp:
Apr 16, 2015 10:03:23 AM (9 years ago)
Author:
peavo@outlook.com
Message:

[WinCairo] Compile error when environment variable WEBKITLIBRARIESDIR is not defined.
https://bugs.webkit.org/show_bug.cgi?id=143828

Reviewed by Brent Fulgham.

Python throws an exception when calling os.environWEBKITLIBRARIESDIR? and
WEBKITLIBRARIESDIR is not defined. WEBKITLIBRARIESDIR is obsolete, we can remove it.

  • AVFoundationSupport.py:

(lookFor):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/AVFoundationSupport.py

    r182164 r182891  
    3232
    3333def lookFor(relativePath):
    34     return os.path.isfile(os.environ['WEBKIT_LIBRARIES'] + relativePath) or os.path.isfile(os.environ['WEBKITLIBRARIESDIR'] + relativePath)
     34    return os.path.isfile(os.environ['WEBKIT_LIBRARIES'] + relativePath)
    3535
    3636print "/* Identifying AVFoundation Support */"
  • trunk/Source/WebCore/ChangeLog

    r182889 r182891  
     12015-04-16  Per Arne Vollan  <peavo@outlook.com>
     2
     3        [WinCairo] Compile error when environment variable WEBKITLIBRARIESDIR is not defined.
     4        https://bugs.webkit.org/show_bug.cgi?id=143828
     5
     6        Reviewed by Brent Fulgham.
     7
     8        Python throws an exception when calling os.environ['WEBKITLIBRARIESDIR'] and
     9        WEBKITLIBRARIESDIR is not defined. WEBKITLIBRARIESDIR is obsolete, we can remove it.
     10
     11        * AVFoundationSupport.py:
     12        (lookFor):
     13
    1142015-04-16  Alexey Proskuryakov  <ap@apple.com>
    215
Note: See TracChangeset for help on using the changeset viewer.