summaryrefslogtreecommitdiff
path: root/xtrans.m4
Commit message (Collapse)AuthorAgeFilesLines
* Remove "All rights reserved" from Oracle copyright noticesAlan Coopersmith2023-03-191-1/+1
| | | | | | Oracle no longer includes this term in our copyright & license notices. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
* Remove non-Solaris SysV supportAdam Jackson2019-09-301-1/+1
| | | | Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
* Delete SCO supportAdam Jackson2019-09-301-1/+1
| | | | Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
* Use strcasecmp if it's available, instead of lowercasing stringsAlan Coopersmith2018-08-251-0/+3
| | | | Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
* xtrans.m4: remove AC_TYPE_SIGNAL and Imake SIGNALRETURNSINTGaetan Nadon2013-12-161-1/+0
| | | | | | | | | | | Assume signal handlers return void, as C89 requires Drops use of autoconf's obsolete AC_TYPE_SIGNAL and Imake's even more obsolete SIGNALRETURNSINT. None of the modules including xtrans.m4 uses RETSIGTYPE from autoconf. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
* xtrans.m4: replace deprecated AC_HAVE_LIBRARY with AC_CHECK_LIBGaetan Nadon2013-12-161-1/+1
| | | | | | | The #define HAVE_LIBWS2_32 is still done and the lib ws2_32 is prepended to LIBS if found. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
* xtrans.m4: fix warning by replacing obsolete AC_HELP_STRINGGaetan Nadon2013-12-161-5/+5
| | | | | | with AS_HELP_STRING Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
* Check if we need to define _XOPEN_SOURCE for struct msghdr.msg_controlAlan Coopersmith2013-11-071-0/+35
| | | | | | | Required to expose the structure members in Solaris headers, since it was an XPG4/UNIX95 addition to the Solaris ABI. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
* Strip trailing whitespaceAlan Coopersmith2011-09-161-8/+8
| | | | | | | Performed with: find * -type f | xargs perl -i -p -e 's{[ \t]+$}{}' git diff -w & git diff -b show no diffs from this change Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
* Sun's copyrights now belong to OracleAlan Coopersmith2010-10-291-3/+2
| | | | Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
* Update Sun license notices to current X.Org standard formAlan Coopersmith2010-01-141-22/+19
| | | | Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
* Don't use -lws2_32 on CygwinYaakov Selkowitz2009-10-151-1/+3
| | | | | | | | On Cygwin, both the (builtin) *NIX socket API and WinSock (via w32api) are available, but they cannot be mixed. We use *NIX APIs for everything else, so we do not want to mix in WinSock here. Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
* 18748: xtrans.m4 causes configure --help to list --enable-ipv6 in wrong case.Alan Coopersmith2008-12-011-1/+1
| | | | X.Org Bug #18748 <http://bugs.freedesktop.org/show_bug.cgi?id=18748>
* add winsock check for windows buildsAlan Hourihane2008-10-151-0/+1
|
* disable UNIXCONN on MINGWAlan Hourihane2008-04-281-4/+8
|
* Sun bug #6688467: _X11TransConvertAddress: Unknown family type on 64-bit SPARCAlan Coopersmith2008-04-151-0/+6
| | | | | | | Check for socklen_t definition and if found use it instead of size_t or int for the length argument to getpeername/getsockname/etc. <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6688467>
* Add --enable-local-transport and set it on by default on SVR4 OS'esAlan Coopersmith2006-08-211-2/+16
|
* On FreeBSD, some of the symbols necessary for secure RPC support are inEric Anholt2005-08-171-1/+3
| | | | | librpcsvc, so check for their presence in rpcsvc so that the library will be added.
* Define BSD44SOCKETS if struct sockaddr_in has a sin_len memberAlan Coopersmith2005-08-161-1/+10
|
* Use AC_TYPE_SIGNAL to replace Imake's SIGNAL_DEFINES (used in Xtransutil.c)Alan Coopersmith2005-07-261-1/+2
|
* typoMatthieu Herrb2005-07-231-1/+1
|
* Move AC_MSG_RESULT so it shows up in the right place, not after other testsAlan Coopersmith2005-07-171-1/+1
| | | | are executed
* Split out TCP library/IPv6 support checks into XTRANS_TCP_FLAGS for sharingAlan Coopersmith2005-07-141-19/+37
| | | | | | with code like xdm that doesn't use Xtrans but accesses TCP sockets directly. Clean up --enable flags and report settings in configure output.
* Move Secure RPC flags from X11/configure.ac to xtrans/xtrans.m4 sinceAlan Coopersmith2005-06-181-1/+33
| | | | multiple modules will need them
* xtrans:Alan Coopersmith2005-05-211-0/+52
Create autoconf macro XTRANS_CONNECTION_FLAGS to provide standard set of --enable flags for which transports to support and common place to update for required libraries for platforms that need certain libs for certain transports ICE: Add ICE_t #define required by Xtrans headers. Replace static defines of LOCALCONN & UNIXCONN with new XTRANS_CONNECTION_FLAGS macro. X11: Moved transport type checks to new macro XTRANS_CONNECTION_FLAGS in xtrans.m4 in xtrans module so they can be shared by all modules using xtrans.