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.

54 lines
2.0 KiB

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