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.

76 lines
2.6 KiB

  1. # --- SDE-COPYRIGHT-NOTE-BEGIN ---
  2. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  3. #
  4. # Filename: package/.../trickle/trickle-1.07-include_netdb.patch
  5. # Copyright (C) 2011 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. Description: Fix error: two or more data types in declaration specifiers
  17. Origin: Fedora Project
  18. http://pkgs.fedoraproject.org/gitweb/?p=trickle.git;a=blob_plain;f=trickle-1.07-include_netdb.patch;hb=HEAD
  19. diff -up trickle-1.06/client.c.include_netdb trickle-1.06/client.c
  20. --- trickle-1.06/client.c.include_netdb 2003-05-09 04:16:42.000000000 +0200
  21. +++ trickle-1.06/client.c 2008-06-07 17:16:50.000000000 +0200
  22. @@ -6,7 +6,7 @@
  23. *
  24. * $Id: client.c,v 1.14 2003/05/09 02:16:42 marius Exp $
  25. */
  26. -
  27. +#include <netdb.h>
  28. #include <sys/types.h>
  29. #ifdef HAVE_CONFIG_H
  30. diff -up trickle-1.06/tricklectl.c.include_netdb trickle-1.06/tricklectl.c
  31. --- trickle-1.06/tricklectl.c.include_netdb 2003-06-03 01:13:28.000000000 +0200
  32. +++ trickle-1.06/tricklectl.c 2008-06-07 17:18:01.000000000 +0200
  33. @@ -6,7 +6,7 @@
  34. *
  35. * $Id: tricklectl.c,v 1.4 2003/06/02 23:13:28 marius Exp $
  36. */
  37. -
  38. +#include <netdb.h>
  39. #include <sys/types.h>
  40. #ifdef HAVE_CONFIG_H
  41. diff -up trickle-1.06/trickled.c.include_netdb trickle-1.06/trickled.c
  42. --- trickle-1.06/trickled.c.include_netdb 2003-05-09 04:16:42.000000000 +0200
  43. +++ trickle-1.06/trickled.c 2008-06-07 17:16:34.000000000 +0200
  44. @@ -13,6 +13,7 @@
  45. * initial spike
  46. */
  47. +#include <netdb.h>
  48. #include <sys/types.h>
  49. #ifdef HAVE_CONFIG_H
  50. --- trickle-1.07/trickledu.c.old 2008-08-29 04:19:47.000000000 +0300
  51. +++ trickle-1.07/trickledu.c 2008-08-29 04:20:37.000000000 +0300
  52. @@ -7,6 +7,7 @@
  53. * $Id: trickledu.c,v 1.16 2004/02/13 06:11:21 marius Exp $
  54. */
  55. +#include <netdb.h>
  56. #include <sys/types.h>
  57. #ifdef HAVE_CONFIG_H
  58. diff -up trickle-1.06/trickle-overload.c.include_netdb trickle-1.06/trickle-overload.c
  59. --- trickle-1.06/trickle-overload.c.include_netdb 2003-06-03 01:13:28.000000000 +0200
  60. +++ trickle-1.06/trickle-overload.c 2008-06-07 17:21:51.000000000 +0200
  61. @@ -10,6 +10,7 @@
  62. /* Ick. linux sucks. */
  63. #define _GNU_SOURCE
  64. +#include <netdb.h>
  65. #include <sys/types.h>
  66. #ifdef HAVE_CONFIG_H