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.

55 lines
2.1 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) 2009 The OpenSDE Project
  6. # Copyright (C) 2004 - 2006 The T2 SDE Project
  7. # Copyright (C) 1998 - 2003 Clifford Wolf
  8. #
  9. # More information can be found in the files COPYING and README.
  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. # --- SDE-COPYRIGHT-NOTE-END ---
  18. diff -Nur socket-1.2p1/Makefile socket-1.2p1.new/Makefile
  19. --- socket-1.2p1/Makefile 1999-09-19 12:48:45.000000000 +0200
  20. +++ socket-1.2p1.new/Makefile 2003-07-30 18:59:07.000000000 +0200
  21. @@ -32,7 +32,7 @@
  22. ### socket.1 in /usr/local/man/man1/socket.1
  23. ### Make sure the target directories exist before doing a "make install".
  24. -INSTALLBASE = /usr/local
  25. +INSTALLBASE = $(prefix)
  26. INSTALLBINPATH = $(INSTALLBASE)/bin
  27. INSTALLBINMODE = 755
  28. INSTALLMANPATH = $(INSTALLBASE)/man
  29. @@ -46,10 +46,10 @@
  30. ### system:
  31. ### 4.4 BSD (tested on FreeBSD, but probably works for other BSDs)
  32. -SWITCHES = -DHAS_POSIX_SIGS -DHAS_SYS_SIGLIST -DHAS_SYS_ERRLIST
  33. +#SWITCHES = -DHAS_POSIX_SIGS -DHAS_SYS_SIGLIST -DHAS_SYS_ERRLIST
  34. ### Linux
  35. -#SWITCHES = -DHAS_POSIX_SIGS -DHAS_SYS_SIGLIST -DHAS_SYS_ERRLIST
  36. +SWITCHES = -DHAS_SYS_SIGLIST -DHAS_SYS_ERRLIST -D_GNU_SOURCE
  37. ### Solaris 2.6 and 7 with gcc
  38. #SWITCHES = -DHAS_POSIX_SIGS -DHAS_SYS_SIGLIST -DHAS_SYS_ERRLIST \
  39. diff -Nur socket-1.2p1/socketp.c socket-1.2p1.new/socketp.c
  40. --- socket-1.2p1/socketp.c 1999-09-19 13:00:30.000000000 +0200
  41. +++ socket-1.2p1.new/socketp.c 2003-07-30 18:14:15.000000000 +0200
  42. @@ -105,7 +105,7 @@
  43. }
  44. }
  45. - sa.sin_port = htons((u_short) port) ;
  46. + sa.sin_port = htons((u_int16_t) port) ;
  47. if ((s = socket(sa.sin_family, SOCK_STREAM, 0)) < 0) { /* get socket */
  48. return -1 ;