1 # --- T2-COPYRIGHT-NOTE-BEGIN ---
2 # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
4 # T2 SDE: package/.../socket/hotfix.patch
5 # Copyright (C) 2004 - 2005 The T2 SDE Project
6 # Copyright (C) 1998 - 2003 ROCK Linux Project
8 # More information can be found in the files COPYING and README.
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
16 # --- T2-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
22 ### socket.1 in /usr/local/man/man1/socket.1
23 ### Make sure the target directories exist before doing a "make install".
25 -INSTALLBASE = /usr/local
26 +INSTALLBASE = $(prefix)
27 INSTALLBINPATH = $(INSTALLBASE)/bin
29 INSTALLMANPATH = $(INSTALLBASE)/man
33 ### 4.4 BSD (tested on FreeBSD, but probably works for other BSDs)
34 -SWITCHES = -DHAS_POSIX_SIGS -DHAS_SYS_SIGLIST -DHAS_SYS_ERRLIST
35 +#SWITCHES = -DHAS_POSIX_SIGS -DHAS_SYS_SIGLIST -DHAS_SYS_ERRLIST
38 -#SWITCHES = -DHAS_POSIX_SIGS -DHAS_SYS_SIGLIST -DHAS_SYS_ERRLIST
39 +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
50 - sa.sin_port = htons((u_short) port) ;
51 + sa.sin_port = htons((u_int16_t) port) ;
53 if ((s = socket(sa.sin_family, SOCK_STREAM, 0)) < 0) { /* get socket */