0001-Disable-building-test-programs.patch 756 B

123456789101112131415161718192021222324252627282930
  1. From 4b5a135fa681e85eb6988a379f59f3c7a41cc48c 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 1/2] 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.am | 2 +-
  11. 1 file changed, 1 insertion(+), 1 deletion(-)
  12. diff --git a/Makefile.am b/Makefile.am
  13. index 42879a3..dc90359 100644
  14. --- a/Makefile.am
  15. +++ b/Makefile.am
  16. @@ -126,7 +126,7 @@ else
  17. noinst_LTLIBRARIES = $(LIBEVENT_LIBS_LA)
  18. endif
  19. -SUBDIRS = . include sample test
  20. +SUBDIRS = . include sample
  21. if BUILD_WIN32
  22. --
  23. 2.1.1