search for: plugindir

Displaying 20 results from an estimated 48 matches for "plugindir".

2007 May 17
0
[PATCH] Add getCoreInfo function
...ter, COMPIZ_DBUS_PLUGINS_CHANGED_SIGNAL_NAME, 0); @@ -1693,6 +1697,47 @@ dbusHandleGetPluginsMessage (DBusConnection *connection, } /* + * 'GetCoreInfo' can be used to retrieve information about the running + * Compiz process. + * + * Returns (s)programName, (i)ABIVERSION, (s)PLUGINDIR, (s)HOME_PLUGINDIR, + * (s)METADATADIR + * + * Example: + * + * dbus-send --print-reply --type=method_call \ + * --dest=org.freedesktop.compiz \ + * /org/freedesktop/compiz \ + * org.freedesktop.compiz.getCoreInfo + */ +static Bool +dbusHandleGetCoreInfoMessage (DBusConnection *conn...
2020 Aug 20
0
[PATCH nbdkit 12/13] wrapper: Port the wrapper to run on Windows.
..."'nbdkit /path/to/plugin." SOEXT " --dump-plugin'\n", program_name); exit (EXIT_FAILURE); } @@ -819,7 +819,7 @@ open_plugin_so (size_t i, const char *name, int short_name) if (short_name) { /* Short names are rewritten relative to the plugindir. */ if (asprintf (&filename, - "%s/nbdkit-%s-plugin.so", plugindir, name) == -1) { + "%s/nbdkit-%s-plugin." SOEXT, plugindir, name) == -1) { perror ("asprintf"); exit (EXIT_FAILURE); } @@ -872,7 +872,7 @@ op...
2020 Apr 23
2
Re: [PATCH nbdkit 1/2] server: Add pkg-config file to compile against locally compiled nbdkit.
On Thu, Apr 23, 2020 at 07:04:14PM +0100, Richard W.M. Jones wrote: > +# probably should *not* use this in most cases, since your plugin will > +# may end up containing hard paths to the local nbdkit sources. "will may" -> "may" in my local copy. Rich. -- Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones Read my programming and
2018 Jan 19
1
Re: [PATCH nbdkit filters-v2 2/5] Introduce filters.
On 01/19/2018 09:23 AM, Richard W.M. Jones wrote: > Filters can be placed in front of plugins to modify their behaviour. > > This commit adds the <nbdkit-filter.h> header file, the manual page, > the ‘filterdir’ directory (like ‘plugindir’), the ‘filters/’ source > directory which will contain the actual filters, the ‘--filters’ > parameter, and the filters backend logic. > --- > include/Makefile.am | 4 +- > include/nbdkit-filter.h | 149 +++++++++++ > include/nbdkit-plugin.h | 2 + > +++ b/include/nb...
2004 Aug 12
2
Can't locate Net/LDAP.pm in @INC
...igure --prefix=/usr make make install make check OpenSSL ./config --openssldir=/usr make make install Cyrus SASL cd cyrus-sasl-2.1.19 ./configure --prefix=/usr --with-dbpath=/usr/etc/sasldb2 --with-dblib=berkeley --with-bdb-libdir=/usr/lib --with-bdb-incdir=/usr/include --with-openssl=/usr --with-plugindir=/usr/lib/sasl2 make make install OpenLDAP env CPPFLAGS=”-I/usr/include” LDFLAGS=”-L/usr/lib” ./configure --prefix=/usr --libexecdir=/usr/sbin --libdir=/usr/lib --includedir=/usr/include --with-cyrus-sasl --enable-slapd --enable-slurpd --enable-bdb make depend make make test make install Samba...
2001 May 08
2
libao AU driver
...o_functions_t ao_raw; +extern ao_functions_t ao_au; driver_tree_t *driver_head = NULL; @@ -99,6 +100,7 @@ driver_tree_t *dnull; driver_tree_t *dwav; driver_tree_t *draw; + driver_tree_t *dau; driver_tree_t *plugin; driver_tree_t *driver; DIR *plugindir; @@ -109,7 +111,7 @@ char fullpath[FILENAME_MAX]; if (driver_head == NULL) { - /* insert the null and wav drivers into the tree */ + /* insert the null, wav, raw, and au drivers into the tree */ dnull = (driver_tree_t *)malloc(sizeof(driver_tree_t));...
2018 Jan 14
10
[PATCH nbdkit INCOMPLETE 0/6] Introduce filters to nbdkit.
This patch isn't complete (patch 6/6 isn't finished) so it's just for discussion, although it does compile and run. This introduces to nbdkit a concept of "filters" which can be placed in front of plugins to modify their behaviour. Some examples where you might use filters: * Serve a subset of the data, such as (offset, range) or a single partition from a disk image.
2019 Sep 28
0
[PATCH nbdkit v2 2/4] Rename nbdkit-reflection-plugin to nbdkit-info-plugin.
...ust/Makefile diff --git a/plugins/data/nbdkit-data-plugin.pod b/plugins/data/nbdkit-data-plugin.pod index 6686c2d..a5ee299 100644 --- a/plugins/data/nbdkit-data-plugin.pod +++ b/plugins/data/nbdkit-data-plugin.pod @@ -247,12 +247,12 @@ Use C<nbdkit --dump-config> to find the location of C<$plugindir>. L<nbdkit(1)>, L<nbdkit-captive(1)>, L<nbdkit-plugin(3)>, +L<nbdkit-info-plugin(1)>, L<nbdkit-memory-plugin(1)>, L<nbdkit-null-plugin(1)>, L<nbdkit-partitioning-plugin(1)>, L<nbdkit-pattern-plugin(1)>, L<nbdkit-random-plugin(1)>, -L&...
2018 Jan 19
0
[PATCH nbdkit filters-v2 2/5] Introduce filters.
Filters can be placed in front of plugins to modify their behaviour. This commit adds the <nbdkit-filter.h> header file, the manual page, the ‘filterdir’ directory (like ‘plugindir’), the ‘filters/’ source directory which will contain the actual filters, the ‘--filters’ parameter, and the filters backend logic. --- Makefile.am | 2 +- TODO | 17 +- configure.ac | 3 +- docs/Makefile.am | 9 +- docs/nbdkit-filter.pod |...
2018 Jan 19
0
[PATCH nbdkit filters-v3 3/7] Introduce filters.
Filters can be placed in front of plugins to modify their behaviour. This commit adds the <nbdkit-filter.h> header file, the manual page, the ‘filterdir’ directory (like ‘plugindir’), the ‘filters/’ source directory which will contain the actual filters, the ‘--filters’ parameter, and the filters backend logic. --- Makefile.am | 2 +- TODO | 17 +- configure.ac | 3 +- docs/Makefile.am | 9 +- docs/nbdkit-filter.pod |...
2018 Sep 11
0
[PATCH nbdkit 1/4] build: Move list of plugins and filters to the configure script.
...lua \ - memory \ - nbd \ - null \ - ocaml \ - pattern \ - perl \ - python \ - random \ - ruby \ - sh \ - split \ - streaming \ - tar \ - tcl \ - vddk \ - xz \ - zero - -filters = \ - blocksize \ - cache \ - cow \ - delay \ - error \ - fua \ - log \ - nozero \ - offset \ - partition \ - truncate - plugindir = $(libdir)/nbdkit/plugins filterdir = $(libdir)/nbdkit/filters diff --git a/configure.ac b/configure.ac index 4d340d4..3a02c66 100644 --- a/configure.ac +++ b/configure.ac @@ -542,6 +542,59 @@ AC_ARG_ENABLE([vddk],[ [enable_vddk=yes]) AM_CONDITIONAL([HAVE_VDDK], [test "x$enable_vddk&...
2020 Apr 23
0
Re: [PATCH nbdkit 1/2] server: Add pkg-config file to compile against locally compiled nbdkit.
...> > +# may end up containing hard paths to the local nbdkit sources. > > "will may" -> "may" in my local copy. Actually in hindsight perhaps this comment/warning is wrong. I was thinking about the original nbdkit.pc which contains absolute paths to things like plugindir and filterdir. However firstly this one doesn't contain these paths, and in any case even if it did they would be unlikely to end up inside a C plugin. Rich. -- Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones Read my programming and virtualization blog: http://...
2004 Sep 10
0
XMMS plugin build fix
...at you have on your system. My GTK libraries include .la files; do yours? That code is essentially the same code that is used to build the plugins in XMMS itself. For instance, here's the Makefile.am for the vorbis plugin: if HAVE_OGGVORBIS lib_LTLIBRARIES = libvorbis.la endif libdir = $(plugindir)/$(INPUT_PLUGIN_DIR) INCLUDES = @GTK_CFLAGS@ @OGG_CFLAGS@ @VORBIS_CFLAGS@ -I$(top_builddir)/intl libvorbis_la_LDFLAGS = -module -avoid-version libvorbis_la_LIBADD = @GTK_LIBS@ @PTHREAD_LIBS@ @VORBIS_LIBS@ @OGG_LIBS@ libvorbis_la_SOURCES = \ vorbis.c vorbis.h \ configure.c \ http.c http.h \ filein...
2006 Jun 12
0
Problems with csgfs after update
Hi all, Today I have update Centos cluster suite and my test cluster does not startup. When ccsd service tries to start returns this error: [root at srvimss1 lib]# ccsd Failed to connect to cluster manager. Hint: Magma plugins are not in the right spot. When I run magma_tools config plugindir returns me this setup: /lib/magma. This directory does not exists. How can I fix this problem??? Somebody have this problem?? Many thanks. -- C.L. Martinez clopmart at gmail.com -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.centos.org/piperma...
2001 Jun 30
2
libao: src/plugins/arts/Makefile.am
...--- src/plugins/arts/Makefile.am.orig Sat Dec 30 06:03:25 2000 +++ src/plugins/arts/Makefile.am Wed Apr 11 00:40:35 2001 @@ -16,13 +17,12 @@ artssources = endif -INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/include +INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/include @ARTS_CFLAGS@ libdir = $(plugindir) lib_LTLIBRARIES = $(artsltlibs) libarts_la_LDFLAGS = $(artsldflags) -CFLAGS = @ARTS_CFLAGS@ libarts_la_LIBADD = @ARTS_LIBS@ libarts_la_SOURCES = $(artssources) -- Christian "naddy" Weisgerber naddy@mips.inka.de --- >8 ---- List archives: http://www...
2007 Nov 06
0
configure.ac src/Makefile.am src/plugin.c
...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 index 24bce9c..bbfc043 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -2,10 +2,11 @@ plugindir = $(PLUGIN_DIR) plugin_LTLIBRARIES = libswfdecmozilla.la libswfdecmozilla_la_CFLAGS = $(GLOBAL_CFLAGS) $(MOZILLA_CFLAGS) $(SWFDEC_CFLAGS) \ - $(AUDIO_CFLAGS) $(CAIRO_CFLAGS) $(GTK_CFLAGS) + -DPLUGIN_DIR=\""$(PLUGIN_DIR)"\" + libswfdecmozilla_la_LDFLAGS = \ -module -avoid-...
2004 Sep 10
2
XMMS plugin build fix
--- Matt Zimmerman <mdz@debian.org> wrote: > The only difference in the command lines seems to be that your > xmms-config > explicitly links with -lgthread, while I suppose mine lets the > dynamic linker > pull it in. The only significant difference between the old and new > _LIBADD > lines is that @XMMS_LIBS@ is at the beginning in the new one. Now > that I think
2018 Jan 19
1
Re: [PATCH nbdkit filters-v3 3/7] Introduce filters.
On 01/19/2018 04:36 PM, Richard W.M. Jones wrote: > Filters can be placed in front of plugins to modify their behaviour. > > This commit adds the <nbdkit-filter.h> header file, the manual page, > the ‘filterdir’ directory (like ‘plugindir’), the ‘filters/’ source > directory which will contain the actual filters, the ‘--filters’ > parameter, and the filters backend logic. > --- > + > +The filter’s C<.open> and C<.close> methods are called when a new > +connection is opened or an old connection closed,...
2008 Dec 08
0
sndio support for libao
...+## Process this file with automake to produce Makefile.in + +AUTOMAKE_OPTIONS = foreign + +if HAVE_SNDIO_AUDIO + +sndioltlibs = libsndio.la +sndiosources = ao_sndio.c + +else + +sndioltlibs = +sndiosources = + +endif + +INCLUDES = -I$(top_builddir)/include/ao -I$(top_srcdir)/include + +libdir = $(plugindir) +lib_LTLIBRARIES = $(sndioltlibs) + +libsndio_la_LDFLAGS = @PLUGIN_LDFLAGS@ +libsndio_la_LIBADD = -lsndio +libsndio_la_SOURCES = $(sndiosources) + +EXTRA_DIST = ao_sndio.c diff -uNrp libao-0.8.8.orig/src/plugins/sndio/ao_sndio.c libao-0.8.8/src/plugins/sndio/ao_sndio.c --- libao-0.8.8.orig/src/plu...
2000 Dec 27
1
ao_arts
Hi, I've written an ao plugin for aRts, the soundserver that comes with KDE. Any chance of including this in the ao distribution ? Pretty please ? :) Sources and patches attached. This is a very simple plugin because it uses the easy-to-use 'artsc' C wrapper that aRts installs. configure.in.diff is for ao/configure.in Makefile.am.diff is for ao/src/plugins/Makefile.am Makefile.am