summaryrefslogtreecommitdiff
path: root/src/utils
diff options
context:
space:
mode:
authorJohn-Mark Bell <jmb@netsurf-browser.org>2014-11-16 10:31:59 +0000
committerJohn-Mark Bell <jmb@netsurf-browser.org>2014-11-16 10:31:59 +0000
commit82fcf234d087486e385ef644c80a5d247896d5bc (patch)
treeeb75ae61e853468db53b8f8ee4f262162bc5bc9d /src/utils
parent8e74b81769688c1df42f170a232c5f9851668d70 (diff)
downloadlibhubbub-82fcf234d087486e385ef644c80a5d247896d5bc.tar.gz
libhubbub-82fcf234d087486e385ef644c80a5d247896d5bc.tar.bz2
Fix up for new buildsystem. Remove unused compat hacks.
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/utils.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/utils/utils.h b/src/utils/utils.h
index e949bd1..d22a0eb 100644
--- a/src/utils/utils.h
+++ b/src/utils/utils.h
@@ -8,19 +8,6 @@
#ifndef hubbub_utils_h_
#define hubbub_utils_h_
-#ifdef BUILD_TARGET_riscos
- /* If we're building with Norcroft, then we need to haul in
- * unixlib.h from TCPIPLibs for useful things like strncasecmp
- */
- #ifdef __CC_NORCROFT
- #include <unixlib.h>
- #endif
-#endif
-
-#ifdef BUILD_TARGET_windows
- #define strncasecmp _strnicmp
-#endif
-
#ifndef max
#define max(a,b) ((a)>(b)?(a):(b))
#endif