summaryrefslogtreecommitdiff
path: root/src/common.h
diff options
context:
space:
mode:
authordequis <dx@dxzone.com.ar>2015-09-23 13:42:00 -0300
committerdequis <dx@dxzone.com.ar>2015-09-23 13:58:22 -0300
commit9da445ab86740be13f47da7eb540fb9e4b962085 (patch)
tree6e817972c9a9d36b169e86f2bbd85252b3261aa9 /src/common.h
parente833521cefdedcdbc0e4382715a36ea5f8276a86 (diff)
downloadirssi-9da445ab86740be13f47da7eb540fb9e4b962085.zip
Drop some glib version checks that are not needed anymore
The g_strcmp0 fallback in particular was broken since it was used in a few places as a GCompareFunc, and macros don't work that way. Yes, that one was my fault, but nobody complained :D
Diffstat (limited to 'src/common.h')
-rw-r--r--src/common.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/common.h b/src/common.h
index e9073925..86a079fe 100644
--- a/src/common.h
+++ b/src/common.h
@@ -43,19 +43,6 @@
# include <gmodule.h>
#endif
-#if !GLIB_CHECK_VERSION(2,10,0)
-#define g_slice_alloc(size) g_malloc(size)
-#define g_slice_alloc0(size) g_malloc0(size)
-#define g_slice_free1(size, mem) g_free(mem)
-#define g_slice_new(type) g_new(type, 1)
-#define g_slice_new0(type) g_new0(type, 1)
-#define g_slice_free(type, mem) g_free(mem)
-#endif
-
-#if !GLIB_CHECK_VERSION(2,16,0)
-#define g_strcmp0(a, b) (!a ? -(a != b) : (!b ? (a != b) : strcmp(a, b)))
-#endif
-
#if defined (UOFF_T_INT)
typedef unsigned int uoff_t;
#elif defined (UOFF_T_LONG)