Hm, the patch attached as binary data. Here is the attached patch as text. Apologies about that:<div><br></div><div><div>---</div><div> src/Makefile.am |    4 ++--</div><div> 1 files changed, 2 insertions(+), 2 deletions(-)</div>

<div><br></div><div>diff --git a/src/Makefile.am b/src/Makefile.am</div><div>index b321657..118c329 100644</div><div>--- a/src/Makefile.am</div><div>+++ b/src/Makefile.am</div><div>@@ -1029,14 +1029,14 @@ libvirt.syms: libvirt_public.syms $(USED_SYM_FILES)</div>

<div> libvirt.def: libvirt.syms</div><div>        $(AM_V_GEN)rm -f -- $@-tmp $@ ; \</div><div>        printf 'EXPORTS\n' > $@-tmp && \</div><div>-       sed -e '/^$$/d; /#/d; /:/d; /\}/d; /\*/d; /LIBVIRT_/d; s/[ \t]*\(.*\)\;/    \1/g' $^ >> $@-tmp && \</div>

<div>+       $(SED) -e '/^$$/d; /#/d; /:/d; /\}/d; /\*/d; /LIBVIRT_/d; s/[ \t]*\(.*\)\;/    \1/g' $^ >> $@-tmp && \</div><div>        chmod a-w $@-tmp && \</div><div>        mv $@-tmp libvirt.def</div>

<div> </div><div> libvirt_qemu.def: $(srcdir)/libvirt_qemu.syms</div><div>        $(AM_V_GEN)rm -f -- $@-tmp $@ ; \</div><div>        printf 'EXPORTS\n' > $@-tmp && \</div><div>-       sed -e '/^$$/d; /#/d; /:/d; /\}/d; /\*/d; /LIBVIRT_/d; s/[ \t]*\(.*\)\;/    \1/g' $^ >> $@-tmp && \</div>

<div>+       $(SED) -e '/^$$/d; /#/d; /:/d; /\}/d; /\*/d; /LIBVIRT_/d; s/[ \t]*\(.*\)\;/    \1/g' $^ >> $@-tmp && \</div><div>        chmod a-w $@-tmp && \</div><div>        mv $@-tmp libvirt_qemu.def</div>

<div> </div><div>-- </div><div>1.7.2.2</div><br><div class="gmail_quote">On Wed, Sep 8, 2010 at 11:39 PM, Mitchell Hashimoto <span dir="ltr"><<a href="mailto:mitchell.hashimoto@gmail.com">mitchell.hashimoto@gmail.com</a>></span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">Hi,<div><br></div><div>I've been trying to get libvirt (client) to cleanly/easily compile on BSD-based systems (in this case OS X). "./configure" runs fine but the "make" caused an error with `sed` since BSD sed was reporting some sort of regex error. I realized that the "SED" variable was populated with "gsed" which worked properly. This made the make continue (failed again later, will address that when I can).</div>


<div><br></div><div>This is my first contribution to a C-based project and I don't have much experience with autotools other than using them as a consumer. Let me know if anything can be improved.</div><div><br></div>


<div>Thank you,</div><div>Mitchell</div>
</blockquote></div><br></div>