forked from libvirt/libvirt
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Partial reversion of commit 76d87a5, now that bootstrap is smarter. * .gnulib: Update to latest, for poll and bootstrap fixes. * bootstrap: Resync from gnulib. * autogen.sh: Drop redundant tool checks; bootstrap does them better, by honoring environment variables. * examples/domain-events/events-c/Makefile.am (INCLUDES) (event_test_LDADD): Use gnulib library during build. * bootstrap.conf (gnulib_tool_option_extras): Revert --libtool addition, now that updated bootstrap does it for us. Reported by Justin Clift.
- Loading branch information
Showing
5 changed files
with
28 additions
and
50 deletions.
There are no files selected for viewing
Submodule .gnulib
updated
from 833bff to 9f940e
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
INCLUDES = -I$(top_builddir)/include -I$(top_srcdir)/include | ||
INCLUDES = -I$(top_builddir)/include -I$(top_srcdir)/include \ | ||
-I$(top_builddir)/gnulib/lib -I$(top_srcdir)/gnulib/lib | ||
noinst_PROGRAMS = event-test | ||
event_test_CFLAGS = $(WARN_CFLAGS) | ||
event_test_SOURCES = event-test.c | ||
event_test_LDADD = @top_builddir@/src/libvirt.la | ||
event_test_LDADD = $(top_builddir)/src/libvirt.la \ | ||
$(top_builddir)/gnulib/lib/libgnu.la |