search for: test_error_messages_cppflags

Displaying 5 results from an estimated 5 matches for "test_error_messages_cppflags".

2016 Mar 22
1
[PATCH] Reduce GUESTFS_PRIVATE usage
...I$(top_srcdir)/fish \ diff --git a/tests/protocol/Makefile.am b/tests/protocol/Makefile.am index 8494fa0..4cdd96f 100644 --- a/tests/protocol/Makefile.am +++ b/tests/protocol/Makefile.am @@ -43,7 +43,6 @@ check_PROGRAMS = test-error-messages test_error_messages_SOURCES = \ test-error-messages.c test_error_messages_CPPFLAGS = \ - -DGUESTFS_PRIVATE=1 \ -I$(top_srcdir)/gnulib/lib -I$(top_builddir)/gnulib/lib \ -I$(top_srcdir)/src -I$(top_builddir)/src test_error_messages_CFLAGS = \ diff --git a/tests/qemu/Makefile.am b/tests/qemu/Makefile.am index 091361f..fe45d88 100644 --- a/tests/qemu/Makefile.am +++ b/tests/qem...
2017 Jan 25
0
[PATCH v2 1/7] lib: Share common protocol and errnostring libraries with the library and daemon.
...m b/tests/protocol/Makefile.am index 8f3487d..d54a403 100644 --- a/tests/protocol/Makefile.am +++ b/tests/protocol/Makefile.am @@ -41,10 +41,12 @@ TESTS = \ check_PROGRAMS = test-error-messages test_error_messages_SOURCES = \ + ../../common/protocol/guestfs_protocol.h \ test-error-messages.c test_error_messages_CPPFLAGS = \ -I$(top_srcdir)/gnulib/lib -I$(top_builddir)/gnulib/lib \ - -I$(top_srcdir)/src -I$(top_builddir)/src + -I$(top_srcdir)/src -I$(top_builddir)/src \ + -I$(top_srcdir)/common/protocol -I$(top_builddir)/common/protocol test_error_messages_CFLAGS = \ $(WARN_CFLAGS) $(WERROR_CFLAGS) test_error...
2017 Jan 25
0
[PATCH v2 2/7] lib: Move utilities to new directory common/utils.
...\ $(LTLIBINTL) \ $(top_builddir)/gnulib/lib/libgnu.la diff --git a/tests/protocol/Makefile.am b/tests/protocol/Makefile.am index d54a403..6c7a76c 100644 --- a/tests/protocol/Makefile.am +++ b/tests/protocol/Makefile.am @@ -45,12 +45,13 @@ test_error_messages_SOURCES = \ test-error-messages.c test_error_messages_CPPFLAGS = \ -I$(top_srcdir)/gnulib/lib -I$(top_builddir)/gnulib/lib \ - -I$(top_srcdir)/src -I$(top_builddir)/src \ - -I$(top_srcdir)/common/protocol -I$(top_builddir)/common/protocol + -I$(top_srcdir)/common/utils -I$(top_builddir)/common/utils \ + -I$(top_srcdir)/common/protocol -I$(top_builddir)/commo...
2017 Jan 20
5
[PATCH 0/5] Rename src/ to lib/ and move common code to common/
This patch series moves some files and directories around but is only code motion (or supposed to be). A new directory, common/, is created for all of the common code which is currently shared in random ways between parts of the project. And src/ becomes lib/ (the largest change, but mostly mechanical). In full this series makes the following changes: src/libprotocol -> common/protocol
2017 Jan 25
10
[PATCH v2 0/7] Rename src/ to lib/ and move common code to common/
Previous patch series was posted here: https://www.redhat.com/archives/libguestfs/2017-January/msg00059.html v2 simply extends this patch series to cover the extra directories common/edit, common/progress, common/windows and common/parallel. The only remaining item is to consider whether we should rename mllib to something else, mlcommon was my suggestion. Rich.