Advertisement
Guest User

nettle 2.7.1 build fix

a guest
Sep 25th, 2014
721
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.35 KB | None | 0 0
  1. *** Makefile.in.old Tue May 28 16:21:53 2013
  2. --- Makefile.in Thu Sep 25 09:30:47 2014
  3. ***************
  4. *** 591,595 ****
  5. tags-here:
  6. etags -o $(srcdir)/TAGS $(srcdir)/*.c $(srcdir)/*.h
  7.  
  8. ! DEP_FILES = $(SOURCES:.c=.$(OBJEXT).d) $(SOURCES:.c=.p$(OBJEXT).d) asm.d
  9. @DEP_INCLUDE@ $(DEP_FILES)
  10. --- 591,595 ----
  11. tags-here:
  12. etags -o $(srcdir)/TAGS $(srcdir)/*.c $(srcdir)/*.h
  13.  
  14. ! DEP_FILES = $(SOURCES:.c=.c.$(OBJEXT).d) $(SOURCES:.c=.c.p$(OBJEXT).d) asm.d
  15. @DEP_INCLUDE@ $(DEP_FILES)
  16. *** tools/Makefile.in.old Tue May 28 16:21:54 2013
  17. --- tools/Makefile.in Thu Sep 25 09:31:13 2014
  18. ***************
  19. *** 33,38 ****
  20. --- 33,44 ----
  21.  
  22. DISTFILES = $(SOURCES) Makefile.in input.h misc.h output.h parse.h
  23.  
  24. + ../libnettle.a:
  25. + $(MAKE) -C .. libnettle.a
  26. +
  27. + ../libhogweed.a:
  28. + $(MAKE) -C .. libhogweed.a
  29. +
  30. sexp_conv_OBJS = $(sexp_conv_SOURCES:.c=.$(OBJEXT)) $(getopt_OBJS)
  31. sexp-conv$(EXEEXT): $(sexp_conv_OBJS) ../libnettle.a
  32. $(LINK) $(sexp_conv_OBJS) -lnettle $(LIBS) -o $@
  33. ***************
  34. *** 91,94 ****
  35. tags:
  36. etags -o $(srcdir)/TAGS --include $(top_srcdir) $(srcdir)/*.c $(srcdir)/*.h
  37.  
  38. ! @DEP_INCLUDE@ $(SOURCES:.c=.$(OBJEXT).d)
  39. --- 97,100 ----
  40. tags:
  41. etags -o $(srcdir)/TAGS --include $(top_srcdir) $(srcdir)/*.c $(srcdir)/*.h
  42.  
  43. ! @DEP_INCLUDE@ $(SOURCES:.c=.c.$(OBJEXT).d)
  44. *** testsuite/Makefile.in.old Tue May 28 16:21:54 2013
  45. --- testsuite/Makefile.in Thu Sep 25 09:31:35 2014
  46. ***************
  47. *** 132,136 ****
  48.  
  49. # Includes dependency files for everything, including objects which
  50. # the current configuration will not build.
  51. ! DEP_FILES = $(SOURCES:.c=.$(OBJEXT).d) $(CXX_SOURCES:.cxx=.$(OBJEXT).d)
  52. @DEP_INCLUDE@ $(DEP_FILES)
  53. --- 132,136 ----
  54.  
  55. # Includes dependency files for everything, including objects which
  56. # the current configuration will not build.
  57. ! DEP_FILES = $(SOURCES:.c=.c.$(OBJEXT).d) $(CXX_SOURCES:.cxx=.cxx.$(OBJEXT).d)
  58. @DEP_INCLUDE@ $(DEP_FILES)
  59. *** examples/Makefile.in.old Tue May 28 16:21:54 2013
  60. --- examples/Makefile.in Thu Sep 25 09:31:22 2014
  61. ***************
  62. *** 145,148 ****
  63. tags:
  64. etags -o $(srcdir)/TAGS --include $(top_srcdir) $(srcdir)/*.c $(srcdir)/*.h
  65.  
  66. ! @DEP_INCLUDE@ $(SOURCES:.c=.$(OBJEXT).d)
  67. --- 145,148 ----
  68. tags:
  69. etags -o $(srcdir)/TAGS --include $(top_srcdir) $(srcdir)/*.c $(srcdir)/*.h
  70.  
  71. ! @DEP_INCLUDE@ $(SOURCES:.c=.c.$(OBJEXT).d)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement