Displaying 15 results from an estimated 15 matches for "gmodul".
Did you mean:
modul
2016 Feb 15
3
glib2 head file error when build libvirt with wireshark support
...virt from fedora rawhide, but failed.
The version of my software:
wireshark-devel-2.0.1-2.fc24.x86_64
glib2-2.47.5-2.fc24.x86_64
gcc-5.1.1-4.fc23.x86_64
binutils-2.26-10.fc24.x86_64
The error as following:
# ./autogen.sh --prefix=/usr && make
.....
wireshark/src/plugin.c:5:21: fatal error: gmodule.h: No such file or directory
compilation terminated.
Makefile:2442: recipe for target 'wireshark/src/wireshark_src_libvirt_la-plugin.lo' failed
make[3]: *** [wireshark/src/wireshark_src_libvirt_la-plugin.lo] Error 1
make[3]: *** Waiting for unfinished jobs....
In file included from wiresha...
2016 Feb 15
0
Re: glib2 head file error when build libvirt with wireshark support
...ora rawhide, but failed.
>The version of my software:
>wireshark-devel-2.0.1-2.fc24.x86_64
>glib2-2.47.5-2.fc24.x86_64
>gcc-5.1.1-4.fc23.x86_64
>binutils-2.26-10.fc24.x86_64
>
Can you post the output of:
pkg-config --print-requires wireshark
If it does not output glib-2.0 and gmodule-2.0, then it's your wireshark
broken. I see they have it fixed upstream (thanks to Michal, BTW), so
the next release should be fine. In the meantime, you can just edit
your /usr/lib/pkgconfig/wireshark.pc to have the following line in it:
Requires: glib-2.0, gmodule-2.0, gthread-2.0
HTH,...
2016 Feb 16
2
Re: glib2 head file error when build libvirt with wireshark support
...e:
> >wireshark-devel-2.0.1-2.fc24.x86_64
> >glib2-2.47.5-2.fc24.x86_64
> >gcc-5.1.1-4.fc23.x86_64
> >binutils-2.26-10.fc24.x86_64
> >
>
> Can you post the output of:
>
> pkg-config --print-requires wireshark
>
> If it does not output glib-2.0 and gmodule-2.0, then it's your wireshark
> broken. I see they have it fixed upstream (thanks to Michal, BTW), so
> the next release should be fine. In the meantime, you can just edit
> your /usr/lib/pkgconfig/wireshark.pc to have the following line in it:
>
> Requires: glib-2.0, gmodul...
2007 Nov 06
0
configure.ac src/Makefile.am src/plugin.c
...a/configure.ac
+++ b/configure.ac
@@ -58,7 +58,7 @@ dnl Check for essential libraries first:
dnl ====================================
SWFDEC_REQUIRES=0.5.3.1
-PKG_CHECK_MODULES(SWFDEC, swfdec-gtk-$SWFDEC_MAJORMINOR = $SWFDEC_REQUIRES, HAVE_SWFDEC=yes, HAVE_SWFDEC=no)
+PKG_CHECK_MODULES(SWFDEC, gmodule-2.0 swfdec-gtk-$SWFDEC_MAJORMINOR = $SWFDEC_REQUIRES, HAVE_SWFDEC=yes, HAVE_SWFDEC=no)
if test "$HAVE_SWFDEC" = "no"; then
AC_MSG_ERROR([cannot find swfdec-$SWFDEC_MAJORMINOR $SWFDEC_REQUIRES, which is required for build])
fi
diff --git a/src/Makefile.am b/src/Makefile.am...
2020 Mar 03
2
Has the work in this talk been pushed: "Better C++ debugging using Clang Modules in LLDB"?
Hi,
I tried using lldb built from master, but still seeing some STL
container member functions not recognizable in a debugging session. I am
wondering if the work has been pushed to master; also if it's pushed but
not enabled by default yet, is there a flag I can use to turn on the
expression evaluator using Clang modules. Thanks a lot for the great work.
Best Regards,
Jiading
2007 Nov 15
2
2 commits - configure.ac
configure.ac | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 8b3f9aca00a0d0447ba95a5ac86c56eb5894b8a8
Author: Benjamin Otte <otte at gnome.org>
Date: Thu Nov 15 12:00:38 2007 +0100
back to development
diff --git a/configure.ac b/configure.ac
index 514f515..96ffeed 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
AC_PREREQ([2.58])
2013 Aug 15
12
[Bug 845] New: checking for LIBNFNETLINK... configure: error: Package requirements (libnfnetlink >= 0.0.41) were not met:
https://bugzilla.netfilter.org/show_bug.cgi?id=845
Summary: checking for LIBNFNETLINK... configure: error: Package
requirements (libnfnetlink >= 0.0.41) were not met:
Product: libnetfilter_queue
Version: unspecified
Platform: i386
OS/Version: RedHat Linux
Status: NEW
Severity: normal
2007 Dec 17
1
2 commits - configure.ac NEWS
NEWS | 5 +++++
configure.ac | 4 ++--
2 files changed, 7 insertions(+), 2 deletions(-)
New commits:
commit b89f3c46440581f2818e1572c206331182e3a17f
Author: Benjamin Otte <otte at gnome.org>
Date: Mon Dec 17 21:44:48 2007 +0100
back to development
diff --git a/configure.ac b/configure.ac
index 56b01c5..237b2a0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2,7 +2,7
2007 Nov 06
1
src/plugin.c
...his_thing_stays_in_memory (void)
+/* This mess is unfortunately necessary */
+#define PLUGIN_FILE PLUGIN_DIR G_DIR_SEPARATOR_S "libswfdecmozilla." G_MODULE_SUFFIX
+G_MODULE_EXPORT gboolean
+swfdec_mozilla_make_sure_this_thing_stays_in_memory (void)
{
static gboolean inited = FALSE;
GModule *module;
+ gpointer check;
if (inited)
return TRUE;
- inited = TRUE;
if (!g_module_supported ())
return FALSE;
- module = g_module_open (PLUGIN_DIR G_DIR_SEPARATOR_S "libswfdecmozilla." G_MODULE_SUFFIX, 0);
+ module = g_module_open (PLUGIN_FILE, 0);
if (modul...
2007 Aug 24
0
2 commits - configure.ac vivified/core
..._HEADER_STDC([])
@@ -270,7 +271,6 @@ AC_ARG_ENABLE(vivified,
enable_vivi=$enableval,
enable_vivi="no")
if test "$enable_vivi" = "yes"; then
- AM_PROG_AS
MING_REQUIRED=0.4.0.beta5
VIVI_GTK_REQUIRED=2.11.6
PKG_CHECK_MODULES(VIVI, libming >= $MING_REQUIRED gmodule-export-2.0 gtk+-2.0 >= $VIVI_GTK_REQUIRED, HAVE_VIVI=yes, HAVE_VIVI=no)
2007 Apr 17
0
3 commits - configure.ac libswfdec/swfdec_loader.c libswfdec/swfdec_movie.h
...s(+), 4 deletions(-)
New commits:
diff-tree b9d433487b5fa18d9b53e4bd7eed3801b62fde3e (from 3b51123d377a1157fb2780e0e4282eb55240ded5)
Author: Benjamin Otte <otte@gnome.org>
Date: Tue Apr 17 20:23:21 2007 +0200
update GStreamer requirement
Prior to 0.10.11 GStreamer linked with gmodule-2.0 which overrides the exported
symbols due to use of --export-dynamic. That causes the Javascript symbols to
be exported. And that in turn causes the mozilla plugin to fail due to symbol
clashes.
diff --git a/configure.ac b/configure.ac
index d26278d..fe0ffa8 100644
--- a/configure....
2007 Aug 21
0
Branch 'vivi' - 15 commits - configure.ac libswfdec/Makefile.am libswfdec/swfdec_as_context.c libswfdec/swfdec_as_debugger.h libswfdec/swfdec_as_object.c libswfdec/swfdec_movie.c libswfdec/swfdec_script.c libswfdec/swfdec_types.h vivified/core vivified/ui
...272,12 @@ AC_ARG_ENABLE(vivified,
if test "$enable_vivi" = "yes"; then
AM_PROG_AS
MING_REQUIRED=0.4.0.beta5
- PKG_CHECK_MODULES(VIVI, libming >= $MING_REQUIRED, HAVE_VIVI=yes, HAVE_VIVI=no)
+ VIVI_GTK_REQUIRED=2.11.6
+ PKG_CHECK_MODULES(VIVI, libming >= $MING_REQUIRED gmodule-export-2.0 gtk+-2.0 >= $VIVI_GTK_REQUIRED, HAVE_VIVI=yes, HAVE_VIVI=no)
if test "x$HAVE_VIVI" = xyes; then
AC_DEFINE(HAVE_VIVI, 1, [Define if Vivified is enabled])
else
- AC_MSG_ERROR([Vivified requirements not met. You need at libming >= $MING_REQUIRED.])
+ AC_MSG_ERRO...
2017 Feb 11
2
Asan self host problems: Failed to deallocate
Trying to run a self host "ninja check-clang" with ASan enabled I hit a
/lot/ of errors like this (strangely I hit none of these in check-llvm,
only in check-clang):
Any ideas?
==10525==ERROR: AddressSanitizer failed to deallocate 0x10800 (67584) bytes
at address 0x631000014800
==10525==AddressSanitizer CHECK failed:
2017 Feb 15
2
Asan self host problems: Failed to deallocate
...Compile with -fmodules-local-submodule-visibility.
LLVM_ENABLE_LOCAL_SUBMODULE_VISIBILITY:BOOL=ON
//Build LLVM with LTO. May be specified as Thin or Full to use
// a particular kind of LTO
LLVM_ENABLE_LTO:STRING=OFF
//Compile with C++ modules enabled.
LLVM_ENABLE_MODULES:BOOL=OFF
//Compile with -gmodules.
LLVM_ENABLE_MODULE_DEBUGGING:BOOL=OFF
//Build OCaml bindings documentation.
LLVM_ENABLE_OCAMLDOC:BOOL=ON
//Compile with pedantic enabled.
LLVM_ENABLE_PEDANTIC:BOOL=ON
//Build Position-Independent Code
LLVM_ENABLE_PIC:BOOL=ON
//Semicolon-separated list of projects to build (clang;libcxx;libcx...
2007 Aug 22
0
163 commits - autogen.sh configure.ac doc/swfdec-sections.txt libswfdec-gtk/swfdec_gtk_player.c libswfdec-gtk/swfdec_gtk_player.h libswfdec-gtk/swfdec_gtk_widget.c libswfdec-gtk/swfdec_source.c libswfdec/Makefile.am libswfdec/swfdec_as_array.c
...272,12 @@ AC_ARG_ENABLE(vivified,
if test "$enable_vivi" = "yes"; then
AM_PROG_AS
MING_REQUIRED=0.4.0.beta5
- PKG_CHECK_MODULES(VIVI, libming >= $MING_REQUIRED, HAVE_VIVI=yes, HAVE_VIVI=no)
+ VIVI_GTK_REQUIRED=2.11.6
+ PKG_CHECK_MODULES(VIVI, libming >= $MING_REQUIRED gmodule-export-2.0 gtk+-2.0 >= $VIVI_GTK_REQUIRED, HAVE_VIVI=yes, HAVE_VIVI=no)
if test "x$HAVE_VIVI" = xyes; then
AC_DEFINE(HAVE_VIVI, 1, [Define if Vivified is enabled])
else
- AC_MSG_ERROR([Vivified requirements not met. You need at libming >= $MING_REQUIRED.])
+ AC_MSG_ERRO...