Displaying 3 results from an estimated 3 matches for "e4d9a36".
2014 Nov 04
0
[PATCH 3/9] build: check for libintl, and use it
...pthread \
@@ -299,6 +300,7 @@ virt_index_validate_CPPFLAGS = \
-DLOCALEBASEDIR=\""$(datadir)/locale"\"
virt_index_validate_LDADD = \
+ $(LTLIBINTL) \
../gnulib/lib/libgnu.la
man_MANS += virt-index-validate.1
diff --git a/cat/Makefile.am b/cat/Makefile.am
index 14b8e81..e4d9a36 100644
--- a/cat/Makefile.am
+++ b/cat/Makefile.am
@@ -66,6 +66,7 @@ virt_cat_LDADD = \
$(top_builddir)/src/libguestfs.la \
$(LIBXML2_LIBS) \
$(LIBVIRT_LIBS) \
+ $(LTLIBINTL) \
../gnulib/lib/libgnu.la
virt_filesystems_SOURCES = \
@@ -88,6 +89,7 @@ virt_filesystems_LDADD = \
$(top_build...
2014 Nov 04
2
Re: [PATCH 3/9] build: check for libintl, and use it
...date_CPPFLAGS = \
> -DLOCALEBASEDIR=\""$(datadir)/locale"\"
>
> virt_index_validate_LDADD = \
> + $(LTLIBINTL) \
> ../gnulib/lib/libgnu.la
>
> man_MANS += virt-index-validate.1
> diff --git a/cat/Makefile.am b/cat/Makefile.am
> index 14b8e81..e4d9a36 100644
> --- a/cat/Makefile.am
> +++ b/cat/Makefile.am
> @@ -66,6 +66,7 @@ virt_cat_LDADD = \
> $(top_builddir)/src/libguestfs.la \
> $(LIBXML2_LIBS) \
> $(LIBVIRT_LIBS) \
> + $(LTLIBINTL) \
> ../gnulib/lib/libgnu.la
>
> virt_filesystems_SOURCES = \
> @@...
2014 Nov 04
13
[PATCH 0/9] Small bits of non-Linux porting - #2
Hi,
continuing what started a couple of weeks ago [1], the attached patch
series continues the work in making it easier to build and run
libguestfs (in fixed appliance mode) on OSes different than Linux.
The provided changes should cause no functional changes on Linux.
[1] https://www.redhat.com/archives/libguestfs/2014-October/msg00176.html
Thanks,
--
Pino
Pino Toscano (9):
build: check