Displaying 7 results from an estimated 7 matches for "genmarshal".
2018 Sep 14
0
CentOS 6: meson/ninja in python36 requires python27
...on a CentOS 6 box, in the need for `meson`, I've installed rh-python36
using yum, then meson and ninja using `pip3.6 install meson ninja`.
Later at run-time, while building atk 2.29.1:
$ meson --prefix /opt/atk _build
$ ninja-build -C _build
FAILED: atk/atkmarshal.c
/opt/gimp-2.8/bin/glib-genmarshal --prefix atk_marshal --output atk/atkmarshal.c --body ../atk/atkmarshal.list --include-header atkmarshal.h
/opt/rh/python27/root/usr/bin/python: error while loading shared libraries: libpython2.7.so.1.0: cannot open shared object file: No such file or directory
ninja: build stopped: subcommand fail...
2007 Mar 22
2
Patches to Fix Warnings
I've been looking at packaging swfdec on my Fedora 6 system.
Unfortunately since a git source checkout compiles with -Werror I've
been having problems because of all of the unused parameter warnings.
I've developed some patches that eliminate the problem by marking all of
the unused parameters with __attribute__ ((unused)). The attribute
markings are all macroized so if you
2007 Apr 22
0
3 commits - configure.ac libswfdec/swfdec_debug.h swfdec-gtk.pc.in swfdec.pc.in
.../configure.ac
index eafc8fb..4a55cfc 100644
--- a/configure.ac
+++ b/configure.ac
@@ -69,7 +69,7 @@ if test "$HAVE_GLIB" = "no"; then
fi
AC_SUBST(GLIB_LIBS)
AC_SUBST(GLIB_CFLAGS)
-AC_SUBST(GLIB_REQUIRES)
+AC_SUBST(GLIB_VER)
dnl FIXME: detect these executables correctly
GLIB_GENMARSHAL=glib-genmarshal
AC_SUBST(GLIB_GENMARSHAL)
@@ -92,17 +92,17 @@ AC_ARG_ENABLE(gtk,
dnl
dnl GTK: We want this for swfdec-gtk
dnl
-GTK_REQUIRES=2.8.0
-AC_SUBST(GTK_REQUIRES)
+GTK_VER=2.8.0
+AC_SUBST(GTK_VER)
if test "$enable_gtk" = "yes"; then
- PKG_CHECK_MODULES(GTK, gtk+-2.0...
2007 Oct 28
0
5 commits - autogen.sh configure.ac libswfdec-gtk/Makefile.am libswfdec/swfdec_codec_audio.c libswfdec/swfdec_codec_video.c libswfdec/swfdec_player.c test/trace
...ibswfdec to it (yet)
-PKG_CHECK_MODULES(GTHREAD, gthread-2.0 >= $GLIB_VER,
- HAVE_GLIB=yes, HAVE_GLIB=no)
-if test "$HAVE_GTHREAD" = "no"; then
- AC_MSG_ERROR([gthread-2.0 >= $GLIB_VER is required to build swfdec])
-fi
dnl FIXME: detect these executables correctly
GLIB_GENMARSHAL=glib-genmarshal
AC_SUBST(GLIB_GENMARSHAL)
diff --git a/libswfdec-gtk/Makefile.am b/libswfdec-gtk/Makefile.am
index b04b40f..5aa9af5 100644
--- a/libswfdec-gtk/Makefile.am
+++ b/libswfdec-gtk/Makefile.am
@@ -22,12 +22,12 @@ noinst_HEADERS = \
libswfdec_gtk_ at SWFDEC_MAJORMINOR@_la_CFLAGS = \...
2023 Mar 21
1
where is glib-devl x86-64?
I dunno. I guess it could be. Went to the Gimp site and saw that glib-devel
was mentioned there.
My tired old brain is a bit confused by this, since most other -devel
packages put -devel following the program/package name, and gimp doesn't.
I'll give that a try, though, to see if it takes care of my issue. Thanks!
On Tue, Mar 21, 2023 at 2:32?AM Simon Matter <simon.matter at
2023 Mar 21
3
where is glib-devl x86-64?
...t; > -rw-r--r--. 1 root root 444 May 16 2022 /usr/lib64/pkgconfig/glib-2.0.pc
> >
> > cat /usr/lib64/pkgconfig/glib-2.0.pc:
> >
> > prefix=/usr
> > libdir=${prefix}/lib64
> > includedir=${prefix}/include
> >
> > bindir=${prefix}/bin
> > glib_genmarshal=${bindir}/glib-genmarshal
> > gobject_query=${bindir}/gobject-query
> > glib_mkenums=${bindir}/glib-mkenums
> >
> > Name: GLib
> > Description: C Utility Library
> > Version: 2.68.4
> > Requires.private: libpcre >= 8.31, sysprof-capture-4 >= 3.38.0...
2007 Jul 02
0
Branch 'as' - 24 commits - configure.ac doc/Makefile.am doc/swfdec-sections.txt libswfdec/Makefile.am libswfdec/swfdec_amf.c libswfdec/swfdec_as_array.c libswfdec/swfdec_as_context.c libswfdec/swfdec_as_context.h libswfdec/swfdec_as_frame.c
...ibswfdec to it (yet)
+PKG_CHECK_MODULES(GTHREAD, gthread-2.0 >= $GLIB_VER,
+ HAVE_GLIB=yes, HAVE_GLIB=no)
+if test "$HAVE_GTHREAD" = "no"; then
+ AC_MSG_ERROR([gthread-2.0 >= $GLIB_VER is required to build swfdec])
+fi
dnl FIXME: detect these executables correctly
GLIB_GENMARSHAL=glib-genmarshal
AC_SUBST(GLIB_GENMARSHAL)
diff --git a/test/trace/Makefile.am b/test/trace/Makefile.am
index e06d866..930a5d8 100644
--- a/test/trace/Makefile.am
+++ b/test/trace/Makefile.am
@@ -9,8 +9,8 @@ trace_SOURCES = \
noinst_HEADERS = \
swfdec_interaction.h
-trace_CFLAGS = $(GLOBAL_CFL...