summaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2014-01-08 03:15:10 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2014-01-08 03:15:10 (GMT)
commita39086067c99ab691f704017ff853250469aa91a (patch)
tree7e7ad0598f5cdfc477aa08f9b833afb8cdf3b2ac /contrib
parent9629ef3f969e31dfd19efa27e62487fc46610416 (diff)
downloaduscxml-a39086067c99ab691f704017ff853250469aa91a.zip
uscxml-a39086067c99ab691f704017ff853250469aa91a.tar.gz
uscxml-a39086067c99ab691f704017ff853250469aa91a.tar.bz2
Updated IM invoker for latest libpurple
Diffstat (limited to 'contrib')
-rw-r--r--contrib/cmake/FindGObject.cmake52
-rw-r--r--contrib/dom/scripts/CodeGeneratorArabicaJSC.pm1
2 files changed, 53 insertions, 0 deletions
diff --git a/contrib/cmake/FindGObject.cmake b/contrib/cmake/FindGObject.cmake
new file mode 100644
index 0000000..1107c10
--- /dev/null
+++ b/contrib/cmake/FindGObject.cmake
@@ -0,0 +1,52 @@
+# - Try to find GObject
+# Once done this will define
+#
+# GOBJECT_FOUND - system has GObject
+# GOBJECT_INCLUDE_DIR - the GObject include directory
+# GOBJECT_LIBRARIES - the libraries needed to use GObject
+# GOBJECT_DEFINITIONS - Compiler switches required for using GObject
+
+# Copyright (c) 2011, Raphael Kubo da Costa <kubito@gmail.com>
+# Copyright (c) 2006, Tim Beaulen <tbscope@gmail.com>
+#
+# Redistribution and use is allowed according to the terms of the BSD license.
+# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
+
+FIND_PACKAGE(PkgConfig)
+PKG_CHECK_MODULES(PC_GOBJECT gobject-2.0)
+SET(GOBJECT_DEFINITIONS ${PC_GOBJECT_CFLAGS_OTHER})
+
+FIND_PATH(GOBJECT_INCLUDE_DIR gobject.h
+ HINTS
+ ${PC_GOBJECT_INCLUDEDIR}
+ ${PC_GOBJECT_INCLUDE_DIRS}
+ PATH_SUFFIXES glib-2.0/gobject/
+ )
+
+FIND_LIBRARY(_GObjectLibs NAMES gobject-2.0
+ HINTS
+ ${PC_GOBJECT_LIBDIR}
+ ${PC_GOBJECT_LIBRARY_DIRS}
+ )
+FIND_LIBRARY(_GModuleLibs NAMES gmodule-2.0
+ HINTS
+ ${PC_GOBJECT_LIBDIR}
+ ${PC_GOBJECT_LIBRARY_DIRS}
+ )
+FIND_LIBRARY(_GThreadLibs NAMES gthread-2.0
+ HINTS
+ ${PC_GOBJECT_LIBDIR}
+ ${PC_GOBJECT_LIBRARY_DIRS}
+ )
+FIND_LIBRARY(_GLibs NAMES glib-2.0
+ HINTS
+ ${PC_GOBJECT_LIBDIR}
+ ${PC_GOBJECT_LIBRARY_DIRS}
+ )
+
+SET( GOBJECT_LIBRARIES ${_GObjectLibs} ${_GModuleLibs} ${_GThreadLibs} ${_GLibs} )
+
+INCLUDE(FindPackageHandleStandardArgs)
+FIND_PACKAGE_HANDLE_STANDARD_ARGS(GOBJECT DEFAULT_MSG GOBJECT_LIBRARIES GOBJECT_INCLUDE_DIR)
+
+MARK_AS_ADVANCED(GOBJECT_INCLUDE_DIR _GObjectLibs _GModuleLibs _GThreadLibs _GLibs) \ No newline at end of file
diff --git a/contrib/dom/scripts/CodeGeneratorArabicaJSC.pm b/contrib/dom/scripts/CodeGeneratorArabicaJSC.pm
index 27ad7a7..64004d0 100644
--- a/contrib/dom/scripts/CodeGeneratorArabicaJSC.pm
+++ b/contrib/dom/scripts/CodeGeneratorArabicaJSC.pm
@@ -242,6 +242,7 @@ END
classDef.staticFunctions = staticFunctions;
classDef.finalize = jsDestructor;
END
+ push(@headerContent, " classDef.className = \"${interfaceName}\";\n");
if ($extensions->{'CustomIndexedGetter'}) {
push(@headerContent, " classDef.hasProperty = hasPropertyCustomCallback;\n");
push(@headerContent, " classDef.getProperty = getPropertyCustomCallback;\n");