diff options
author | Allan Sandfeld Jensen <allan.jensen@digia.com> | 2013-09-13 12:51:20 +0200 |
---|---|---|
committer | The Qt Project <gerrit-noreply@qt-project.org> | 2013-09-19 20:50:05 +0200 |
commit | d441d6f39bb846989d95bcf5caf387b42414718d (patch) | |
tree | e367e64a75991c554930278175d403c072de6bb8 /Source/JavaScriptCore/DerivedSources.make | |
parent | 0060b2994c07842f4c59de64b5e3e430525c4b90 (diff) | |
download | qtwebkit-d441d6f39bb846989d95bcf5caf387b42414718d.tar.gz |
Import Qt5x2 branch of QtWebkit for Qt 5.2
Importing a new snapshot of webkit.
Change-Id: I2d01ad12cdc8af8cb015387641120a9d7ea5f10c
Reviewed-by: Allan Sandfeld Jensen <allan.jensen@digia.com>
Diffstat (limited to 'Source/JavaScriptCore/DerivedSources.make')
-rw-r--r-- | Source/JavaScriptCore/DerivedSources.make | 21 |
1 files changed, 1 insertions, 20 deletions
diff --git a/Source/JavaScriptCore/DerivedSources.make b/Source/JavaScriptCore/DerivedSources.make index b0b637e88..517063d78 100644 --- a/Source/JavaScriptCore/DerivedSources.make +++ b/Source/JavaScriptCore/DerivedSources.make @@ -1,4 +1,4 @@ -# Copyright (C) 2006, 2007, 2008, 2009, 2011 Apple Inc. All rights reserved. +# Copyright (C) 2006, 2007, 2008, 2009, 2011, 2013 Apple Inc. All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions @@ -41,7 +41,6 @@ all : \ DateConstructor.lut.h \ DatePrototype.lut.h \ ErrorPrototype.lut.h \ - HeaderDetection.h \ JSONObject.lut.h \ JSGlobalObject.lut.h \ KeywordLookup.h \ @@ -51,13 +50,11 @@ all : \ NumberConstructor.lut.h \ NumberPrototype.lut.h \ ObjectConstructor.lut.h \ - ObjectPrototype.lut.h \ RegExpConstructor.lut.h \ RegExpPrototype.lut.h \ RegExpJitTables.h \ RegExpObject.lut.h \ StringConstructor.lut.h \ - StringPrototype.lut.h \ docs/bytecode.html \ udis86_itab.h \ # @@ -84,19 +81,3 @@ KeywordLookup.h: KeywordLookupGenerator.py Keywords.table udis86_itab.h: $(JavaScriptCore)/disassembler/udis86/itab.py $(JavaScriptCore)/disassembler/udis86/optable.xml (PYTHONPATH=$(JavaScriptCore)/disassembler/udis86 python $(JavaScriptCore)/disassembler/udis86/itab.py $(JavaScriptCore)/disassembler/udis86/optable.xml || exit 1) - -# header detection - -ifeq ($(OS),MACOS) - -HeaderDetection.h : DerivedSources.make /System/Library/CoreServices/SystemVersion.plist - rm -f $@ - echo "/* This is a generated file. Do not edit. */" > $@ - if [ -f $(SDKROOT)/System/Library/Frameworks/System.framework/PrivateHeaders/pthread_machdep.h ]; then echo "#define HAVE_PTHREAD_MACHDEP_H 1" >> $@; else echo >> $@; fi - -else - -HeaderDetection.h : - echo > $@ - -endif |