parent
dd44219aa5
commit
e9fbbf4000
@ -16,6 +16,7 @@ m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
|
|||||||
|
|
||||||
# Checks for programs.
|
# Checks for programs.
|
||||||
AC_PROG_CC
|
AC_PROG_CC
|
||||||
|
AC_PROG_CXX
|
||||||
|
|
||||||
# Initialize libtool
|
# Initialize libtool
|
||||||
LT_PREREQ([2.2.6])
|
LT_PREREQ([2.2.6])
|
||||||
|
@ -207,7 +207,7 @@ endif HAVE_MUTTER_WAYLAND
|
|||||||
|
|
||||||
libgnome_shell_js_la_SOURCES = \
|
libgnome_shell_js_la_SOURCES = \
|
||||||
shell-js.h \
|
shell-js.h \
|
||||||
shell-js.c \
|
shell-js.cpp \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
libgnome_shell_js_la_LIBADD = \
|
libgnome_shell_js_la_LIBADD = \
|
||||||
|
@ -38,7 +38,7 @@ shell_js_add_extension_importer (const char *target_object_script,
|
|||||||
* we should only ever have one context, so this
|
* we should only ever have one context, so this
|
||||||
* should be alright. */
|
* should be alright. */
|
||||||
contexts = gjs_context_get_all ();
|
contexts = gjs_context_get_all ();
|
||||||
context = gjs_context_get_native_context (contexts->data);
|
context = (JSContext*) gjs_context_get_native_context ((GjsContext*)contexts->data);
|
||||||
g_list_free_full (contexts, g_object_unref);
|
g_list_free_full (contexts, g_object_unref);
|
||||||
|
|
||||||
JS_BeginRequest (context);
|
JS_BeginRequest (context);
|
Loading…
Reference in New Issue
Block a user