mirror of the now-defunct rocklinux.org
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.

56 lines
2.2 KiB

  1. # --- ROCK-COPYRIGHT-NOTE-BEGIN ---
  2. #
  3. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  4. # Please add additional copyright information _after_ the line containing
  5. # the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
  6. # the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
  7. #
  8. # ROCK Linux: rock-src/package/esden/socket/hotfix.patch
  9. # ROCK Linux is Copyright (C) 1998 - 2006 Clifford Wolf
  10. #
  11. # This patch file is dual-licensed. It is available under the license the
  12. # patched project is licensed under, as long as it is an OpenSource license
  13. # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
  14. # of the GNU General Public License as published by the Free Software
  15. # Foundation; either version 2 of the License, or (at your option) any later
  16. # version.
  17. #
  18. # --- ROCK-COPYRIGHT-NOTE-END ---
  19. diff -Nur socket-1.2p1/Makefile socket-1.2p1.new/Makefile
  20. --- socket-1.2p1/Makefile 1999-09-19 12:48:45.000000000 +0200
  21. +++ socket-1.2p1.new/Makefile 2003-07-30 18:59:07.000000000 +0200
  22. @@ -32,7 +32,7 @@
  23. ### socket.1 in /usr/local/man/man1/socket.1
  24. ### Make sure the target directories exist before doing a "make install".
  25. -INSTALLBASE = /usr/local
  26. +INSTALLBASE = $(prefix)
  27. INSTALLBINPATH = $(INSTALLBASE)/bin
  28. INSTALLBINMODE = 755
  29. INSTALLMANPATH = $(INSTALLBASE)/man
  30. @@ -46,10 +46,10 @@
  31. ### system:
  32. ### 4.4 BSD (tested on FreeBSD, but probably works for other BSDs)
  33. -SWITCHES = -DHAS_POSIX_SIGS -DHAS_SYS_SIGLIST -DHAS_SYS_ERRLIST
  34. +#SWITCHES = -DHAS_POSIX_SIGS -DHAS_SYS_SIGLIST -DHAS_SYS_ERRLIST
  35. ### Linux
  36. -#SWITCHES = -DHAS_POSIX_SIGS -DHAS_SYS_SIGLIST -DHAS_SYS_ERRLIST
  37. +SWITCHES = -DHAS_SYS_SIGLIST -DHAS_SYS_ERRLIST
  38. ### Solaris 2.6 and 7 with gcc
  39. #SWITCHES = -DHAS_POSIX_SIGS -DHAS_SYS_SIGLIST -DHAS_SYS_ERRLIST \
  40. diff -Nur socket-1.2p1/socketp.c socket-1.2p1.new/socketp.c
  41. --- socket-1.2p1/socketp.c 1999-09-19 13:00:30.000000000 +0200
  42. +++ socket-1.2p1.new/socketp.c 2003-07-30 18:14:15.000000000 +0200
  43. @@ -105,7 +105,7 @@
  44. }
  45. }
  46. - sa.sin_port = htons((u_short) port) ;
  47. + sa.sin_port = htons((u_int16_t) port) ;
  48. if ((s = socket(sa.sin_family, SOCK_STREAM, 0)) < 0) { /* get socket */
  49. return -1 ;