OpenSDE Packages Database (without history before r20070)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

71 lines
2.1 KiB

  1. # --- SDE-COPYRIGHT-NOTE-BEGIN ---
  2. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  3. #
  4. # Filename: package/.../iptables/iptables-1.3.8-make-devel.patch.disabled
  5. # Copyright (C) 2008 The OpenSDE Project
  6. #
  7. # More information can be found in the files COPYING and README.
  8. #
  9. # This patch file is dual-licensed. It is available under the license the
  10. # patched project is licensed under, as long as it is an OpenSource license
  11. # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
  12. # of the GNU General Public License as published by the Free Software
  13. # Foundation; either version 2 of the License, or (at your option) any later
  14. # version.
  15. # --- SDE-COPYRIGHT-NOTE-END ---
  16. From 22ed966acfc06b635153015c5dd091a99faadd82 Mon Sep 17 00:00:00 2001
  17. From: Christian Wiese <morfoh@opensde.org>
  18. Date: Wed, 16 Jan 2008 19:45:28 +0200
  19. Subject: [PATCH] Changed toplevel Makefile to install more development files
  20. diff --git a/Makefile b/Makefile
  21. index df04d35..d9d9182 100644
  22. --- a/Makefile
  23. +++ b/Makefile
  24. @@ -118,6 +118,17 @@ LDLIBS += -lselinux
  25. endif
  26. endif
  27. +# development files
  28. +EXTRAS+=libiptables.a
  29. +DEVEL_LIBS+=libiptables.a
  30. +DEVEL_HEADERS+=include/iptables.h
  31. +DEVEL_HEADERS+=include/iptables_common.h
  32. +ifeq ($(DO_IPV6), 1)
  33. +EXTRAS+=libip6tables.a
  34. +DEVEL_LIBS+=libip6tables.a
  35. +DEVEL_HEADERS+=include/ip6tables.h
  36. +endif
  37. +
  38. .PHONY: default
  39. default: print-extensions all
  40. --
  41. 1.5.3.5
  42. From 3f77fbc5db04b6b99c9439255b9ecb156284eca4 Mon Sep 17 00:00:00 2001
  43. From: Christian Wiese <morfoh@opensde.org>
  44. Date: Wed, 16 Jan 2008 20:02:35 +0200
  45. Subject: [PATCH] Fixed toplevel Makefile to include targets for libiptables.a and libip6tables.a
  46. diff --git a/Makefile b/Makefile
  47. index d9d9182..4a1fb4f 100644
  48. --- a/Makefile
  49. +++ b/Makefile
  50. @@ -136,6 +136,10 @@ default: print-extensions all
  51. print-extensions:
  52. @[ -n "$(OPTIONALS)" ] && echo Extensions found: $(OPTIONALS)
  53. +libiptables.a: libiptables.a(iptables.o)
  54. +
  55. +libip6tables.a: libip6tables.a(ip6tables.o)
  56. +
  57. iptables.o: iptables.c
  58. $(CC) $(CFLAGS) -DIPT_LIB_DIR=\"$(IPT_LIBDIR)\" -c -o $@ $<
  59. --
  60. 1.5.3.5