summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2009-02-14 00:06:01 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2009-02-14 00:06:01 +0000
commit7ecab92e9a8508c44a758a8ca58defe9a5965bb4 (patch)
tree069accf001b7f948edcbc9d32433002685abc61a /build
parentc9899180b84909a15f3dcc17378a60d4e9e9fc3e (diff)
downloadlibcss-7ecab92e9a8508c44a758a8ca58defe9a5965bb4.tar.gz
libcss-7ecab92e9a8508c44a758a8ca58defe9a5965bb4.tar.bz2
A motley selection of changes. Vague summary:
+ Add config makefile (not that there's anything to configure at present :) + Fix dumping of UNIT_MS to actually use sprintf and not printf + Extend computed style dumping (still loads of properties missing) + Make result buffer larger in select-auto.c -- avoids buffer overflows when there's way more output than expected + Expand expected test output to contain defaulted properties (more of this will be needed once the computed style dumping is complete) + Store interned string pointers in css_select_state. + Intern pseudo class/element names at start of selecting styles for a sheet + Group properties so we know which ones appear in the extension blocks + Fixup unset properties once the cascade has completed + Implement matching of pseudo class/element selectors + Fix setting of background-image and list-style-image when there's no URL. svn path=/trunk/libcss/; revision=6470
Diffstat (limited to 'build')
-rw-r--r--build/Makefile.common3
-rw-r--r--build/Makefile.config4
2 files changed, 7 insertions, 0 deletions
diff --git a/build/Makefile.common b/build/Makefile.common
index f6bc147..73a4880 100644
--- a/build/Makefile.common
+++ b/build/Makefile.common
@@ -24,6 +24,9 @@ TARGET_TESTS :=
# Source files
SOURCES :=
+# Include configuration Makefile fragment
+include build/Makefile.config
+
# Include Makefile fragments in subdirectories
define do_include
diff --git a/build/Makefile.config b/build/Makefile.config
new file mode 100644
index 0000000..1d27350
--- /dev/null
+++ b/build/Makefile.config
@@ -0,0 +1,4 @@
+# Configuration Makefile fragment
+
+# Cater for local configuration changes
+-include build/Makefile.config.override