Displaying 19 results from an estimated 19 matches for "default_includ".
Did you mean:
default_includes
2012 Dec 23
1
clucene-config.h location
By deafult, CLucene installs the clucene-config.h header
to /usr/lib/CLucene, but fts-lucene tries to include it
from /usr/include/CLucene and fails. Here is how it is fixed in Fedora,
for instance:
sed -i '/DEFAULT_INCLUDES *=/s|$| '"$(pkg-config --cflags
libclucene-core)|" src/plugins/fts-lucene/Makefile.in
Indeed, Lucene's pkgconfig file reflects the fact that some headers
reside in /usr/lib/CLucene. It would be great if Dovecot used pkgconfig
for CLucene.
Thanks,
Dimitri
Mageia Linux packager
2005 Dec 13
2
Parallel build of dash still fails
Building dash in parallel still fails:
GEN dash/builtins.def
HOSTCC dash/mkinit
HOSTCC dash/mknodes
HOSTCC dash/mksignames
HOSTCC dash/mksyntax
dash/mksignames.c:59: warning: function declaration isn?t a prototype
dash/mksignames.c:365: warning: function declaration isn?t a prototype
dash/mksignames.c:386: warning: function declaration isn?t a prototype
KLIBCCC
2012 Jan 20
8
Various fixes from building libguestfs for Debian
Here are some of the patches that I have maintained in the patch queue
of my packages that I maintain within the Debian distribution
(http://packages.qa.debian.org/libg/libguestfs.html). All of them
address FTBFS (fail to build from source) errors that happened with
the particular configuration that is used for building the Debian
package.
Cheers,
-Hilko
2004 Sep 10
3
OS X compile errors
...4: syntax error, missing `;' after `const'
../../include/FLAC/format.h:147: syntax error, missing `;' after `const'
../../include/FLAC/format.h:152: syntax error, missing `;' after `const'
It looks like this time, it is due to my CPPFLAGS setting:
CPPFLAGS = -I/sw/include
DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
CFLAGS = -I$(top_builddir) -I$(srcdir)/include -I$(top_srcdir)/include
-I/sw/include -O3 -DNDEBUG -fomit-frame-pointer -funroll-loops
-finline-functions -Wall -W -Winline -DFLaC__INLINE=__inline__
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_...
2004 Sep 10
6
OS X compile errors
I just tried to compile FLAC 1.0.5 beta1 under Apple's X11 v0.1
(released today) and it didn't work. The error message was:
file_decoder.c: In function `_declspec':
file_decoder.c:477: warning: unused parameter `dllimport'
file_decoder.c:478: warning: unused parameter
`FLAC__file_decoder_process_until_end_of_file'
make[4]: *** [file_decoder.lo] Error 1
make[3]: ***
2007 Dec 29
0
building dovecot-sieve against installed dovecot
...T) imparse.$(OBJEXT)
sieved_OBJECTS = $(am_sieved_OBJECTS)
@HAVE_DOVECOT_LIBS_TRUE at sieved_DEPENDENCIES = libsieve.la \
@HAVE_DOVECOT_LIBS_TRUE@ $(dovecotdir)/src/lib/liblib.a
+ at HAVE_DOVECOT_LIBS_FALSE@sieved_DEPENDENCIES = libsieve.la \
+ at HAVE_DOVECOT_LIBS_FALSE@ $(dovecotdir)/liblib.a
DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
depcomp = $(SHELL) $(top_srcdir)/depcomp
am__depfiles_maybe = depfiles
@@ -267,10 +271,16 @@ noinst_HEADERS = \
@HAVE_DOVECOT_LIBS_TRUE at sievec_LDADD = \
@HAVE_DOVECOT_LIBS_TRUE@ libsieve.la \
@HAVE_DOVECOT_LIBS_TRUE@ $(dovecotdir)/src/lib/liblib.a
+ at...
2006 Feb 03
0
rquotad (NFS) quota plugin
...**************
*** 60,66 ****
LTLIBRARIES = $(module_LTLIBRARIES)
lib01_quota_plugin_la_LIBADD =
am_lib01_quota_plugin_la_OBJECTS = quota.lo quota-fs.lo quota-dict.lo \
! quota-dirsize.lo quota-plugin.lo quota-storage.lo
lib01_quota_plugin_la_OBJECTS = $(am_lib01_quota_plugin_la_OBJECTS)
DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
depcomp = $(SHELL) $(top_srcdir)/depcomp
--- 60,67 ----
LTLIBRARIES = $(module_LTLIBRARIES)
lib01_quota_plugin_la_LIBADD =
am_lib01_quota_plugin_la_OBJECTS = quota.lo quota-fs.lo quota-dict.lo \
! quota-dirsize.lo quota-plugin.lo quota-storage.lo \
!...
2011 Jun 22
1
[nut-commits] buildbot failure in Network UPS Tools on Ubuntu-maverick-x86
>
> The Buildbot has detected a new failure of Ubuntu-maverick-x86 on
> Network UPS Tools.
> Full details are available at:
> http://buildbot.networkupstools.org/public/nut/builders/Ubuntu-maverick-x86/builds/32
>
> Buildbot URL: http://buildbot.networkupstools.org/public/nut/
>
> Buildslave for this Build: cayenne
Fred,
I had a few spare cycles and tried building
2014 Feb 28
2
Re: enable build for ocaml bytecode
I believe this patch has now been superseded by Hilko's commit here:
https://github.com/libguestfs/libguestfs/commit/f75142c577255b30f2a8e1d27baa5fd185594197
Rich.
--
Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones
Read my programming blog: http://rwmj.wordpress.com
Fedora now supports 80 OCaml packages (the OPEN alternative to F#)
2014 Nov 25
3
[PATCH] mllib: use Unix.isatty
Make use of Unix.isatty instead of our TTY.isatty_stdout, as the
supported OCaml provides the former already.
---
mllib/common_utils.ml | 10 +++++-----
mllib/progress.ml | 2 +-
2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/mllib/common_utils.ml b/mllib/common_utils.ml
index 295981c..9fcd8dd 100644
--- a/mllib/common_utils.ml
+++ b/mllib/common_utils.ml
@@ -207,15 +207,15
2014 Feb 28
6
[PATCH] Fix building on architectures where ocamlopt is not available
...\
$(OCAML_GCOV_LDFLAGS) \
-o $@
+else
+ $(OCAMLFIND) ocamlc $(OCAMLCFLAGS) \
+ mlguestfs.cma -linkpkg $^ \
+ -cclib '$(OCAMLCLIBS)' \
+ -custom \
+ $(OCAML_GCOV_LDFLAGS) \
+ -o $@
+endif
.mli.cmi:
$(OCAMLFIND) ocamlc $(OCAMLCFLAGS) -c $< -o $@
@@ -153,9 +169,15 @@ DEFAULT_INCLUDES = \
check_SCRIPTS = common_utils_tests
+if HAVE_OCAMLOPT
common_utils_tests: common_gettext.cmx common_utils.cmx common_utils_tests.cmx
$(OCAMLFIND) ocamlopt $(OCAMLOPTFLAGS) \
mlguestfs.cmxa -linkpkg $^ -cclib -lncurses -o $@
+else
+common_utils_tests: common_gettext.cmo common_utils...
2014 Oct 23
17
[PATCH 00/16] Small bits of non-Linux porting
Hi,
from time to time, there have been requests (or attempts, like the
mingw port posted on the list some months ago) to make libguestfs work
on OSes different than Linux. Of course this would imply using a fixed
appliance, since it is currently heavily dependent on Linux.
The attached series provides some easy changes in this direction,
resolving some of the easy issues found in porting to
2018 Sep 10
1
make check (pigeonhole)
...cot (dovecot-2.3.2.1) directory
3) built dovecot with following config and paramerters:
patch -p1 < ../../SOURCES/dovecot-2.0-defaultconfig.patch
patch -p1 < ../../SOURCES/dovecot-1.0.beta2-mkcert-permissions.patch
patch -p1 < ../../SOURCES/dovecot-2.2.27-mkcert-paths.patch
sed -i '/DEFAULT_INCLUDES *=/s|$| '"$(pkg-config --cflags
libclucene-core)|" src/plugins/fts-lucene/Makefile.in
#export CFLAGS="-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions
-fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches
-fno-strict-aliasing"
#export LDFLAGS=...
2018 Sep 10
0
make check (pigeonhole)
...> 3) built dovecot with following config and paramerters:
>
> patch -p1 < ../../SOURCES/dovecot-2.0-defaultconfig.patch
> patch -p1 < ../../SOURCES/dovecot-1.0.beta2-mkcert-permissions.patch
> patch -p1 < ../../SOURCES/dovecot-2.2.27-mkcert-paths.patch
>
> sed -i '/DEFAULT_INCLUDES *=/s|$| '"$(pkg-config --cflags
> libclucene-core)|" src/plugins/fts-lucene/Makefile.in
>
> #export CFLAGS="-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions
> -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches
> -fno-strict-aliasing&q...
2018 Sep 09
3
make check (pigeonhole)
Hello list,
During the 'make check' (pigeonhole) portion of a building (rpmbuild) a
dovecot.spec file I'm getting the following error:
testsuite(root): Fatal: Couldn't drop privileges: User is missing UID
(see mail_uid setting)
I'm not sure how to resolve this, and any help would be appreciated to
help me finish the creating the rpm
--
Eric Broch
White Horse Technical
2010 Apr 09
4
Patch: support URLAUTH, BURL, CATENATE
...lope.$(OBJEXT) imap-id.$(OBJEXT) imap-match.$(OBJEXT) \
imap-parser.$(OBJEXT) imap-quote.$(OBJEXT) \
- imap-seqset.$(OBJEXT) imap-utf7.$(OBJEXT) imap-util.$(OBJEXT)
+ imap-seqset.$(OBJEXT) imap-url.$(OBJEXT) imap-utf7.$(OBJEXT) \
+ imap-util.$(OBJEXT)
libimap_a_OBJECTS = $(am_libimap_a_OBJECTS)
DEFAULT_INCLUDES = -I. at am__isrc@ -I$(top_builddir)
depcomp = $(SHELL) $(top_srcdir)/depcomp
@@ -75,11 +76,11 @@
am__noinst_HEADERS_DIST = imap-base-subject.h imap-bodystructure.h \
imap-date.h imap-envelope.h imap-id.h imap-match.h \
imap-parser.h imap-resp-code.h imap-quote.h imap-seqset.h \
- imap-utf7...
2014 Mar 18
2
[PATCH] customize: Move virt-customize-related code to a separate
There's not going to be an easy way to present this patch. It's huge
and interconnected.
Anyway, what it does is lay the groundwork for a new tool which I'm
calling 'virt-customize'. virt-customize is virt-builder, but without
the part where it downloads a template from a respository. Just the
part where it customizes the template, that is, installing packages,
editing
2014 Oct 23
10
[PATCH v6 00/10] tests: Introduce test harness for running tests.
For v6:
This is mainly just a rebase, but I have also added tests in the
ocaml/ language bindings directory, and for all the OCaml-written virt
tools.
Rich.
2014 Oct 24
10
[PATCH v7 00/10] tests: Introduce test harness for running tests.
v7:
The only changes since v6 are those suggested by Pino in the review
of v5.