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.

59 lines
2.3 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 - 2003 Clifford Wolf
  10. #
  11. # This program is free software; you can redistribute it and/or modify
  12. # it under the terms of the GNU General Public License as published by
  13. # the Free Software Foundation; either version 2 of the License, or
  14. # (at your option) any later version. A copy of the GNU General Public
  15. # License can be found at Documentation/COPYING.
  16. #
  17. # Many people helped and are helping developing ROCK Linux. Please
  18. # have a look at http://www.rocklinux.org/ and the Documentation/TEAM
  19. # file for details.
  20. #
  21. # --- ROCK-COPYRIGHT-NOTE-END ---
  22. diff -Nur socket-1.2p1/Makefile socket-1.2p1.new/Makefile
  23. --- socket-1.2p1/Makefile 1999-09-19 12:48:45.000000000 +0200
  24. +++ socket-1.2p1.new/Makefile 2003-07-30 18:59:07.000000000 +0200
  25. @@ -32,7 +32,7 @@
  26. ### socket.1 in /usr/local/man/man1/socket.1
  27. ### Make sure the target directories exist before doing a "make install".
  28. -INSTALLBASE = /usr/local
  29. +INSTALLBASE = $(prefix)
  30. INSTALLBINPATH = $(INSTALLBASE)/bin
  31. INSTALLBINMODE = 755
  32. INSTALLMANPATH = $(INSTALLBASE)/man
  33. @@ -46,10 +46,10 @@
  34. ### system:
  35. ### 4.4 BSD (tested on FreeBSD, but probably works for other BSDs)
  36. -SWITCHES = -DHAS_POSIX_SIGS -DHAS_SYS_SIGLIST -DHAS_SYS_ERRLIST
  37. +#SWITCHES = -DHAS_POSIX_SIGS -DHAS_SYS_SIGLIST -DHAS_SYS_ERRLIST
  38. ### Linux
  39. -#SWITCHES = -DHAS_POSIX_SIGS -DHAS_SYS_SIGLIST -DHAS_SYS_ERRLIST
  40. +SWITCHES = -DHAS_SYS_SIGLIST -DHAS_SYS_ERRLIST
  41. ### Solaris 2.6 and 7 with gcc
  42. #SWITCHES = -DHAS_POSIX_SIGS -DHAS_SYS_SIGLIST -DHAS_SYS_ERRLIST \
  43. diff -Nur socket-1.2p1/socketp.c socket-1.2p1.new/socketp.c
  44. --- socket-1.2p1/socketp.c 1999-09-19 13:00:30.000000000 +0200
  45. +++ socket-1.2p1.new/socketp.c 2003-07-30 18:14:15.000000000 +0200
  46. @@ -105,7 +105,7 @@
  47. }
  48. }
  49. - sa.sin_port = htons((u_short) port) ;
  50. + sa.sin_port = htons((u_int16_t) port) ;
  51. if ((s = socket(sa.sin_family, SOCK_STREAM, 0)) < 0) { /* get socket */
  52. return -1 ;