2
1

libevent-disable-building-test-programs.patch 1.1 KB

123456789101112131415161718192021222324252627282930
  1. From e932c8864e1bb8b6a7901d4b049a1100c4becba5 Mon Sep 17 00:00:00 2001
  2. From: Gilles Talis <gilles.talis@gmail.com>
  3. Date: Fri, 21 Jun 2013 15:25:11 -0700
  4. Subject: [PATCH] Disable building test programs
  5. We are not really interested in building test programs.
  6. Moreover, these programs use fork() function that is
  7. not available on MMU-less architectures.
  8. Signed-off-by: Gilles Talis <gilles.talis@gmail.com>
  9. ---
  10. Makefile.in | 2 +-
  11. 1 files changed, 1 insertions(+), 1 deletions(-)
  12. diff --git a/Makefile.in b/Makefile.in
  13. index 2ebefa2..4fba1ff 100644
  14. --- a/Makefile.in
  15. +++ b/Makefile.in
  16. @@ -487,7 +487,7 @@ LIBEVENT_LIBS_LA = libevent.la libevent_core.la libevent_extra.la \
  17. @INSTALL_LIBEVENT_TRUE@lib_LTLIBRARIES = $(LIBEVENT_LIBS_LA)
  18. @INSTALL_LIBEVENT_TRUE@pkgconfig_DATA = $(LIBEVENT_PKGCONFIG)
  19. @INSTALL_LIBEVENT_FALSE@noinst_LTLIBRARIES = $(LIBEVENT_LIBS_LA)
  20. -SUBDIRS = . include sample test
  21. +SUBDIRS = . include sample
  22. @BUILD_WIN32_FALSE@SYS_LIBS =
  23. @BUILD_WIN32_TRUE@SYS_LIBS = -lws2_32 -lshell32 -ladvapi32
  24. @BUILD_WIN32_FALSE@SYS_SRC = $(am__append_5) $(am__append_6) \
  25. --
  26. 1.7.4.1