search for: include_head

Displaying 20 results from an estimated 46 matches for "include_head".

Did you mean: include_hea
2015 Jul 08
1
[Nut-upsuser] Nut-2.7.3 & gcc-3.3.6
Hi Charles, Yes, it looks like my g++ does contain STL library which might be just my specific case... However, as a temporary solution I disabled nutclient in Makefile (please find the file attached). And nut-2.7.3 can be compiled now. Thanks, Sergey On Wed, Jul 8, 2015 at 4:13 AM, Charles Lepple <clepple at gmail.com> wrote: > On Jul 6, 2015, at 10:32 AM, Sergey Talchuk
2009 Apr 03
2
Implementation of editheaders in dovecot
...unsigned int exclude_cnt = 0; unsigned int include_cnt = 0; int ret = 0; #if 1 {/* Test code */ const char * str = "Subject"; const char * str2 = "X-DSPAM: test value\n\n"; array_append(&ra_mail->exclude_headers, &str, 1); array_append(&ra_mail->include_headers, &str2, 1); } #endif DPRINT("Standard get_stream for mail storage format"); ret = ra_mail->module_ctx.super.get_stream(mail, hdr_size, body_size, &stream); include_cnt = array_count(&ra_mail->include_headers); exclude_cnt = array_count(&ra_mail->exclud...
2011 Aug 11
1
[PATCH] hivex: A few tweaks to enable building in a separate directory
...0:0:0 \ - $(VERSION_SCRIPT_FLAGS)hivex.syms \ + $(VERSION_SCRIPT_FLAGS)$(srcdir)/hivex.syms \ $(LTLIBINTL) \ $(LTLIBTHREAD) libhivex_la_CFLAGS = $(WARN_CFLAGS) $(WERROR_CFLAGS) -libhivex_la_CPPFLAGS = -I$(top_srcdir)/gnulib/lib +libhivex_la_CPPFLAGS = -I$(top_srcdir)/gnulib/lib -I$(srcdir) include_HEADERS = hivex.h @@ -56,10 +56,10 @@ noinst_DATA = \ $(top_builddir)/html/hivex.3.html: hivex.pod mkdir -p $(top_builddir)/html - cd $(top_builddir) && pod2html \ - --css 'pod.css' \ - --htmldir html \ - --outfile html/hivex.3.html \ - lib/hivex.pod + pod2html \ + --css...
2009 Nov 18
1
[PATCH] Add missing dependencies for targets of generator.ml
...c/Makefile.am index 469f6d6..ae10ed8 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -34,8 +34,6 @@ stamp-generator: generator.ml mkdir -p $(top_srcdir)/java/com/redhat/et/libguestfs cd $(top_srcdir) && ocaml -warn-error A src/generator.ml -guestfs_protocol.x: stamp-generator - include_HEADERS = guestfs.h guestfs-actions.h guestfs-structs.h lib_LTLIBRARIES = libguestfs.la @@ -49,6 +47,8 @@ BUILT_SOURCES = \ guestfs-actions.c \ guestfs-bindtests.c +$(BUILT_SOURCES): stamp-generator + # This convenience library is solely to avoid compiler warnings # in its generated sources...
2007 Oct 21
0
libswfdec-gtk/Makefile.am
...ols-regex '^(swfdec_.*)' \ - $(GTK_LIBS) $(SWFDEC_LIBS) $(AUDIO_LIBS) $(HTTP_LIBS) + $(GTK_LIBS) $(SWFDEC_LIBS) $(AUDIO_LIBS) $(HTTP_LIBS) $(GTHREAD_LIBS) libswfdec_ at SWFDEC_MAJORMINOR@includedir = $(includedir)/swfdec- at SWFDEC_MAJORMINOR@/libswfdec-gtk libswfdec_ at SWFDEC_MAJORMINOR@include_HEADERS = \ swfdec-gtk.h \
2007 Sep 04
0
3 commits - libswfdec/Makefile.am test/trace
...akefile.am @@ -130,6 +130,7 @@ libswfdec_ at SWFDEC_MAJORMINOR@_la_LDFLAGS public_headers = \ swfdec.h \ + swfdec_as_array.h \ swfdec_as_context.h \ swfdec_as_debugger.h \ swfdec_as_frame.h \ @@ -152,7 +153,6 @@ libswfdec_ at SWFDEC_MAJORMINOR@includedir libswfdec_ at SWFDEC_MAJORMINOR@include_HEADERS = $(public_headers) swfdec_enums.h noinst_HEADERS = \ - swfdec_as_array.h \ swfdec_as_boolean.h \ swfdec_as_frame_internal.h \ swfdec_as_initialize.h \ diff-tree 7e1226fcd15665c2223df36a6715a094c013639e (from 2a3b19702ddacf1534feea1ee7f50b4aa1b6e796) Author: Pekka Lampila <pekka.lamp...
2004 Sep 10
0
Re: beta 10 candidate checked in
...added are random little files that aren't used directly in the build. These should be added to an EXTRA_DIST variable in the appropriate Makefile.am. You also have to be sure that all of your .h files are listed either in a _SOURCES variable (for headers that should not be installed) or in an include_HEADERS variable. I'll try to put together a patch to make all of this work; it shouldn't take too much effort. If you use 'make distcheck', it will build the distribution, then attempt a VPATH build. This is a good way to verify that all of the make rules are correct (this includes u...
2012 Sep 25
2
[libopusfile PATCH] build: implement autotools build system for libopusfile.
...mple +install-sh +libopusfile-*.tar.* +libtool +ltmain.sh +missing diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..098a63d --- /dev/null +++ b/Makefile.am @@ -0,0 +1,22 @@ +AM_CFLAGS = -I$(top_srcdir)/include $(DEPS_CFLAGS) + +dist_doc_DATA = COPYING AUTHORS README.txt + +include_HEADERS = include/opusfile.h + +lib_LTLIBRARIES = libopusfile.la +libopusfile_la_SOURCES = \ + src/http.c src/info.c \ + src/internal.c src/internal.h \ + src/opusfile.c src/stream.c +libopusfile_la_LIBADD = $(DEPS_LIBS) + +EXTRA_PROGRAMS = examples/opusfile_example examples/seeking_example + +examples_...
2011 Nov 30
1
[PATCH] hivex: Added gnulib includes from builddir, as suggested by the Gnulib documentation; link hivexml against libgnu.
...39,7 +39,10 @@ libhivex_la_LDFLAGS = \ $(LTLIBINTL) \ $(LTLIBTHREAD) libhivex_la_CFLAGS = $(WARN_CFLAGS) $(WERROR_CFLAGS) -libhivex_la_CPPFLAGS = -I$(top_srcdir)/gnulib/lib -I$(srcdir) +libhivex_la_CPPFLAGS = \ + -I$(top_srcdir)/gnulib/lib \ + -I$(top_builddir)/gnulib/lib \ + -I$(srcdir) include_HEADERS = hivex.h diff --git a/sh/Makefile.am b/sh/Makefile.am index 0898370..a6f5ae6 100644 --- a/sh/Makefile.am +++ b/sh/Makefile.am @@ -38,6 +38,7 @@ hivexsh_SOURCES = \ hivexsh_LDADD = ../lib/libhivex.la ../gnulib/lib/libgnu.la $(LIBREADLINE) hivexsh_CFLAGS = \ -I$(top_srcdir)/gnulib/lib \ +...
2019 Sep 24
0
[PATCH nbdkit 4/4] common/protocol: Install <nbd-protocol.h> as a public header.
...-- 2 files changed, 24 insertions(+), 16 deletions(-) diff --git a/common/protocol/Makefile.am b/common/protocol/Makefile.am index 74c288a..b115c58 100644 --- a/common/protocol/Makefile.am +++ b/common/protocol/Makefile.am @@ -37,6 +37,8 @@ EXTRA_DIST = \ generate-protostrings.sh \ $(NULL) +include_HEADERS = nbd-protocol.h + noinst_LTLIBRARIES = libprotocol.la libprotocol_la_SOURCES = \ diff --git a/common/protocol/nbd-protocol.h b/common/protocol/nbd-protocol.h index 724ffb6..7df411a 100644 --- a/common/protocol/nbd-protocol.h +++ b/common/protocol/nbd-protocol.h @@ -36,10 +36,16 @@ #include...
2020 Mar 10
0
[PATCH libguestfs 1/2] build: Allow C programs using libguestfs to be compiled against build dir.
...file make-fs/Makefile diff --git a/lib/Makefile.am b/lib/Makefile.am index e5df96fe2..4fef46826 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -47,6 +47,7 @@ EXTRA_DIST = \ $(BUILT_SOURCES) \ MAX_PROC_NR \ libguestfs.pc.in \ + local/libguestfs.pc.in \ guestfs.pod include_HEADERS = guestfs.h diff --git a/lib/local/libguestfs.pc.in b/lib/local/libguestfs.pc.in new file mode 100644 index 000000000..b736cd671 --- /dev/null +++ b/lib/local/libguestfs.pc.in @@ -0,0 +1,36 @@ +# @configure_input@ +# Copyright (C) 2020 Red Hat Inc. +# +# This program is free software; you can re...
2019 Aug 27
0
[nbdkit PATCH 1/2] include: Expose nbdkit version information to public
...1,6 +51,7 @@ Makefile.in /docs/plugin-links.pod /fuzzing/sync_dir/ /html/*.html +/include/nbdkit-version.h /INSTALL /install-sh /libtool diff --git a/include/Makefile.am b/include/Makefile.am index 3a293359..cf46abc6 100644 --- a/include/Makefile.am +++ b/include/Makefile.am @@ -35,4 +35,5 @@ include_HEADERS = \ nbdkit-common.h \ nbdkit-plugin.h \ nbdkit-filter.h \ + nbdkit-version.h \ $(NULL) diff --git a/include/nbdkit-version.h.in b/include/nbdkit-version.h.in new file mode 100644 index 00000000..38bbf0d2 --- /dev/null +++ b/include/nbdkit-version.h.in @@ -0,0 +1,45 @@ +/* nbdkit + * Copy...
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
...ols-regex '^(swfdec_.*)' \ - $(GTK_LIBS) $(SWFDEC_LIBS) $(AUDIO_LIBS) $(HTTP_LIBS) $(GTHREAD_LIBS) + $(GTK_LIBS) $(SWFDEC_LIBS) $(AUDIO_LIBS) $(HTTP_LIBS) libswfdec_ at SWFDEC_MAJORMINOR@includedir = $(includedir)/swfdec- at SWFDEC_MAJORMINOR@/libswfdec-gtk libswfdec_ at SWFDEC_MAJORMINOR@include_HEADERS = \ swfdec-gtk.h \ diff --git a/libswfdec/swfdec_player.c b/libswfdec/swfdec_player.c index babd2ad..284b7f7 100644 --- a/libswfdec/swfdec_player.c +++ b/libswfdec/swfdec_player.c @@ -2059,6 +2059,8 @@ swfdec_init (void) _inited = TRUE; + if (!g_thread_supported ()) + g_thread_init...
2004 Sep 10
2
Re: beta 10 candidate checked in
--- Christian Weisgerber <naddy@mips.inka.de> wrote: > Josh Coalson <xflac@yahoo.com> wrote: > > > I have checked in all the latest into CVS and am going to start the > > test suite again. if all goes well I will probably release this as > > beta 10. > > What's the sequence of steps required to turn this into a buildable > distribution? >
2007 Mar 26
0
6 commits - doc/swfdec-sections.txt libswfdec-gtk/Makefile.am libswfdec-gtk/swfdec_gtk_player.c libswfdec-gtk/swfdec_gtk_player.h libswfdec/swfdec_loader.c player/swfplay.c swfdec-gtk.pc.in
...ols-regex '^(swfdec_.*)' \ $(GTK_LIBS) $(SWFDEC_LIBS) $(AUDIO_LIBS) -libswfdec_@SWFDEC_MAJORMINOR@includedir = $(includedir)/swfdec-@SWFDEC_MAJORMINOR@/libswfdec +libswfdec_@SWFDEC_MAJORMINOR@includedir = $(includedir)/swfdec-@SWFDEC_MAJORMINOR@/libswfdec-gtk libswfdec_@SWFDEC_MAJORMINOR@include_HEADERS = \ swfdec-gtk.h \ swfdec_gtk_player.h \ diff-tree 5006bb563101b32301eeb4a25f58ffa8189f40a8 (from 5925dd88bf66d0773b1ae6060205742d64ebd4a4) Author: Benjamin Otte <otte@gnome.org> Date: Mon Mar 26 21:15:18 2007 +0200 remove debugging g_print And that was even in the rele...
2009 Nov 19
5
Fix various build dependency problems
Patch 1/5 is a repost. Only change is title update. These fix parallel make on my machine, and additionally make building from subdirectories more correct.
2009 Nov 18
1
[PATCH] Fix dependencies on generator.ml
...generator if it has changed. # Git removes empty directories, so in cases where the @@ -34,21 +48,10 @@ stamp-generator: generator.ml mkdir -p $(top_srcdir)/java/com/redhat/et/libguestfs cd $(top_srcdir) && ocaml -warn-error A src/generator.ml -guestfs_protocol.x: stamp-generator - include_HEADERS = guestfs.h guestfs-actions.h guestfs-structs.h lib_LTLIBRARIES = libguestfs.la -BUILT_SOURCES = \ - guestfs_protocol.x \ - guestfs_protocol.c \ - guestfs_protocol.h \ - guestfs-structs.h \ - guestfs-actions.h \ - guestfs-actions.c \ - guestfs-bindtests.c - # This convenience librar...
2007 Nov 08
0
configure.ac libswfdec-gtk/Makefile.am libswfdec-gtk/swfdec_playback_pa.c
...uot; -o "$with_audio" = "none"; then AUDIO_CFLAGS= AUDIO_LIBS= diff --git a/libswfdec-gtk/Makefile.am b/libswfdec-gtk/Makefile.am index 5aa9af5..c3c140f 100644 --- a/libswfdec-gtk/Makefile.am +++ b/libswfdec-gtk/Makefile.am @@ -39,4 +39,5 @@ libswfdec_ at SWFDEC_MAJORMINOR@include_HEADERS = \ EXTRA_DIST = \ swfdec_playback_alsa.c \ swfdec_playback_oss.c \ + swfdec_playback_pa.c \ swfdec_playback_none.c diff --git a/libswfdec-gtk/swfdec_playback_pa.c b/libswfdec-gtk/swfdec_playback_pa.c new file mode 100644 index 0000000..598c273 --- /dev/null +++ b/libswfdec-gtk/swfdec_pla...
2004 Sep 10
2
Re: beta 10 candidate checked in
...m little files that aren't used directly in the build. These should > be added to an EXTRA_DIST variable in the appropriate Makefile.am. You also > have to be sure that all of your .h files are listed either in a _SOURCES > variable (for headers that should not be installed) or in an include_HEADERS > variable. I'll try to put together a patch to make all of this work; it > shouldn't take too much effort. Attached is the diff. I wasn't able to completely test the distribution, since src/libFLAC/i386/lpc_asm.s seems to be broken: ../../../../src/libFLAC/i386/lpc_asm.s:2...
2020 Mar 23
0
[PATCH nbdkit 1/3] include: Function indirection for PE DLL
...;(plugin); \ } +#endif #ifdef __cplusplus } diff --git a/include/Makefile.am b/include/Makefile.am index cf46abc6..8b413570 100644 --- a/include/Makefile.am +++ b/include/Makefile.am @@ -32,6 +32,7 @@ include $(top_srcdir)/common-rules.mk include_HEADERS = \ + nbdkit-compat.h \ nbdkit-common.h \ nbdkit-plugin.h \ nbdkit-filter.h \ -- 2.25.0