Commit | Line | Data |
a0d0e21e |
1 | # hints/esix4.sh |
2 | # Original esix4 hint file courtesy of |
3 | # Kevin O'Gorman ( kevin@kosman.UUCP, kevin%kosman.uucp@nrc.com ) |
4 | # |
5 | # Use Configure -Dcc=gcc to use gcc. |
146174a9 |
6 | |
7 | # Why can't we just use PATH? It contains /usr/ccs/bin. |
a0d0e21e |
8 | case "$cc" in |
9 | '') cc='/bin/cc' |
10 | test -f $cc || cc='/usr/ccs/bin/cc' |
a0d0e21e |
11 | ;; |
12 | esac |
146174a9 |
13 | |
14 | ldflags="$ldflags -L/usr/ccs/lib -L/usr/ucblib" |
a0d0e21e |
15 | test -d /usr/local/man || mansrc='none' |
146174a9 |
16 | # Do we really need to tell cc to look in /usr/include? |
17 | ccflags="$ccflags -I/usr/include -I/usr/ucbinclude" |
a0d0e21e |
18 | libswanted=`echo " $libswanted " | sed -e 's/ malloc / /' ` |
19 | d_index='undef' |
20 | d_suidsafe=define |
a0d0e21e |
21 | usevfork='false' |
22 | if test "$osvers" = "3.0"; then |
23 | d_gconvert='undef' |
ee8c7f54 |
24 | grep 'define[ ]*AF_OSI[ ]' /usr/include/sys/socket.h | grep '/\*[^*]*$' >esix$$ |
25 | if test -s esix$$; then |
68dc0745 |
26 | cat <<EOM >&2 |
a0d0e21e |
27 | |
28 | WARNING: You are likely to have problems compiling the Socket extension |
29 | unless you fix the unterminated comment for AF_OSI in the file |
30 | /usr/include/sys/socket.h. |
31 | |
32 | EOM |
33 | fi |
ee8c7f54 |
34 | rm -f esix$$ |
a0d0e21e |
35 | fi |
f4cb4c40 |
36 | |