- (dtucker) [configure.ac] Fix typos in comments and AC_SEARCH_LIB argument
order in Reliant Unix block. Patch from johane at lysator.liu.se.
This commit is contained in:
parent
57f3915b55
commit
79d09fad52
|
@ -4,6 +4,8 @@
|
|||
asprintf() implementation, after syncing our {v,}snprintf() implementation
|
||||
with some extra fixes from Samba's version. With help and debugging from
|
||||
dtucker and tim; ok dtucker@
|
||||
- (dtucker) [configure.ac] Fix typos in comments and AC_SEARCH_LIB argument
|
||||
order in Reliant Unix block. Patch from johane at lysator.liu.se.
|
||||
|
||||
20051122
|
||||
- (dtucker) OpenBSD CVS Sync
|
||||
|
@ -3340,4 +3342,4 @@
|
|||
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
|
||||
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
|
||||
|
||||
$Id: ChangeLog,v 1.4003 2005/11/24 08:58:19 djm Exp $
|
||||
$Id: ChangeLog,v 1.4004 2005/11/24 11:34:54 dtucker Exp $
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# $Id: configure.ac,v 1.308 2005/11/24 08:58:20 djm Exp $
|
||||
# $Id: configure.ac,v 1.309 2005/11/24 11:34:54 dtucker Exp $
|
||||
#
|
||||
# Copyright (c) 1999-2004 Damien Miller
|
||||
#
|
||||
|
@ -410,8 +410,8 @@ mips-sony-bsd|mips-sony-newsos4)
|
|||
*-sni-sysv*)
|
||||
# /usr/ucblib MUST NOT be searched on ReliantUNIX
|
||||
AC_CHECK_LIB(dl, dlsym, ,)
|
||||
# -lresolv needs to be at then end of LIBS or DNS lookups break
|
||||
AC_CHECK_LIB(res_query, resolv, [ LIBS="$LIBS -lresolv" ])
|
||||
# -lresolv needs to be at the end of LIBS or DNS lookups break
|
||||
AC_CHECK_LIB(resolv, res_query, [ LIBS="$LIBS -lresolv" ])
|
||||
IPADDR_IN_DISPLAY=yes
|
||||
AC_DEFINE(USE_PIPES)
|
||||
AC_DEFINE(IP_TOS_IS_BROKEN)
|
||||
|
@ -911,7 +911,7 @@ int main(void){struct dirent d;exit(sizeof(d.d_name)<=sizeof(char));}
|
|||
[
|
||||
AC_MSG_RESULT(no)
|
||||
AC_DEFINE(BROKEN_ONE_BYTE_DIRENT_D_NAME, 1,
|
||||
[Define in your struct dirent expects you to
|
||||
[Define if your struct dirent expects you to
|
||||
allocate extra space for d_name])
|
||||
],
|
||||
[
|
||||
|
|
Loading…
Reference in New Issue