]> andersk Git - openssh.git/commitdiff
- (dtucker) [configure.ac] Fix typos in comments and AC_SEARCH_LIB argument
authordtucker <dtucker>
Thu, 24 Nov 2005 11:34:54 +0000 (11:34 +0000)
committerdtucker <dtucker>
Thu, 24 Nov 2005 11:34:54 +0000 (11:34 +0000)
   order in Reliant Unix block.  Patch from johane at lysator.liu.se.

ChangeLog
configure.ac

index 8b1630367350f00b4f06c416b81bde4a09cf3183..b1c1fdd417ca47637e8c73ae79db42e9352ce95c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
index 4c901e71626c529620dd4b5cc03a5dbd3e993daf..5aa729294abdb51faaa7df2db0cce1a25e3d2110 100644 (file)
@@ -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])
        ],
        [
This page took 0.051219 seconds and 5 git commands to generate.