[BACK]Return to configure CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/configure between version 1.22 and 1.23

version 1.22, 2015/03/18 17:13:37 version 1.23, 2015/03/19 14:57:29
Line 45  HAVE_DIRENT_NAMLEN=
Line 45  HAVE_DIRENT_NAMLEN=
 HAVE_FGETLN=  HAVE_FGETLN=
 HAVE_FTS=  HAVE_FTS=
 HAVE_GETSUBOPT=  HAVE_GETSUBOPT=
   HAVE_ISBLANK=
   HAVE_MKDTEMP=
 HAVE_MMAP=  HAVE_MMAP=
 HAVE_REALLOCARRAY=  HAVE_REALLOCARRAY=
 HAVE_STRCASESTR=  HAVE_STRCASESTR=
Line 53  HAVE_STRLCPY=
Line 55  HAVE_STRLCPY=
 HAVE_STRPTIME=  HAVE_STRPTIME=
 HAVE_STRSEP=  HAVE_STRSEP=
 HAVE_STRTONUM=  HAVE_STRTONUM=
   HAVE_VASPRINTF=
 HAVE_WCHAR=  HAVE_WCHAR=
   
 HAVE_SQLITE3=  HAVE_SQLITE3=
Line 167  runtest dirent-namlen DIRENT_NAMLEN || true
Line 170  runtest dirent-namlen DIRENT_NAMLEN || true
 runtest fgetln          FGETLN          || true  runtest fgetln          FGETLN          || true
 runtest fts             FTS             || true  runtest fts             FTS             || true
 runtest getsubopt       GETSUBOPT       || true  runtest getsubopt       GETSUBOPT       || true
   runtest isblank         ISBLANK         || true
   runtest mkdtemp         MKDTEMP         || true
 runtest mmap            MMAP            || true  runtest mmap            MMAP            || true
 runtest reallocarray    REALLOCARRAY    || true  runtest reallocarray    REALLOCARRAY    || true
 runtest strcasestr      STRCASESTR      || true  runtest strcasestr      STRCASESTR      || true
Line 175  runtest strlcpy  STRLCPY  || true
Line 180  runtest strlcpy  STRLCPY  || true
 runtest strptime        STRPTIME        || true  runtest strptime        STRPTIME        || true
 runtest strsep          STRSEP          || true  runtest strsep          STRSEP          || true
 runtest strtonum        STRTONUM        || true  runtest strtonum        STRTONUM        || true
   runtest vasprintf       VASPRINTF       || true
 runtest wchar           WCHAR           || true  runtest wchar           WCHAR           || true
   
 # --- sqlite3 ---  # --- sqlite3 ---
Line 268  __HEREDOC__
Line 274  __HEREDOC__
 [ ${HAVE_FGETLN} -eq 0 -o ${HAVE_REALLOCARRAY} -eq 0 -o \  [ ${HAVE_FGETLN} -eq 0 -o ${HAVE_REALLOCARRAY} -eq 0 -o \
   ${HAVE_STRLCAT} -eq 0 -o ${HAVE_STRLCPY} -eq 0 ] \    ${HAVE_STRLCAT} -eq 0 -o ${HAVE_STRLCPY} -eq 0 ] \
         && echo "#include <sys/types.h>"          && echo "#include <sys/types.h>"
   [ ${HAVE_VASPRINTF} -eq 0 ] && echo "#include <stdarg.h>"
 [ ${HAVE_FGETLN} -eq 0 ] && echo "#include <stdio.h>"  [ ${HAVE_FGETLN} -eq 0 ] && echo "#include <stdio.h>"
   
 echo  echo
Line 279  cat << __HEREDOC__
Line 286  cat << __HEREDOC__
 #define HAVE_FGETLN ${HAVE_FGETLN}  #define HAVE_FGETLN ${HAVE_FGETLN}
 #define HAVE_FTS ${HAVE_FTS}  #define HAVE_FTS ${HAVE_FTS}
 #define HAVE_GETSUBOPT ${HAVE_GETSUBOPT}  #define HAVE_GETSUBOPT ${HAVE_GETSUBOPT}
   #define HAVE_ISBLANK ${HAVE_ISBLANK}
   #define HAVE_MKDTEMP ${HAVE_MKDTEMP}
 #define HAVE_MMAP ${HAVE_MMAP}  #define HAVE_MMAP ${HAVE_MMAP}
 #define HAVE_REALLOCARRAY ${HAVE_REALLOCARRAY}  #define HAVE_REALLOCARRAY ${HAVE_REALLOCARRAY}
 #define HAVE_STRCASESTR ${HAVE_STRCASESTR}  #define HAVE_STRCASESTR ${HAVE_STRCASESTR}
Line 287  cat << __HEREDOC__
Line 296  cat << __HEREDOC__
 #define HAVE_STRPTIME ${HAVE_STRPTIME}  #define HAVE_STRPTIME ${HAVE_STRPTIME}
 #define HAVE_STRSEP ${HAVE_STRSEP}  #define HAVE_STRSEP ${HAVE_STRSEP}
 #define HAVE_STRTONUM ${HAVE_STRTONUM}  #define HAVE_STRTONUM ${HAVE_STRTONUM}
   #define HAVE_VASPRINTF ${HAVE_VASPRINTF}
 #define HAVE_WCHAR ${HAVE_WCHAR}  #define HAVE_WCHAR ${HAVE_WCHAR}
 #define HAVE_SQLITE3 ${HAVE_SQLITE3}  #define HAVE_SQLITE3 ${HAVE_SQLITE3}
 #define HAVE_SQLITE3_ERRSTR ${HAVE_SQLITE3_ERRSTR}  #define HAVE_SQLITE3_ERRSTR ${HAVE_SQLITE3_ERRSTR}
Line 321  __HEREDOC__
Line 331  __HEREDOC__
 [ ${HAVE_GETSUBOPT} -eq 0 ] && \  [ ${HAVE_GETSUBOPT} -eq 0 ] && \
         echo "extern    int       getsubopt(char **, char * const *, char **);"          echo "extern    int       getsubopt(char **, char * const *, char **);"
   
   [ ${HAVE_ISBLANK} -eq 0 ] && \
           echo "extern    int       isblank(int);"
   
   [ ${HAVE_MKDTEMP} -eq 0 ] && \
           echo "extern    char     *mkdtemp(char *);"
   
 [ ${HAVE_REALLOCARRAY} -eq 0 ] && \  [ ${HAVE_REALLOCARRAY} -eq 0 ] && \
         echo "extern    void     *reallocarray(void *, size_t, size_t);"          echo "extern    void     *reallocarray(void *, size_t, size_t);"
   
Line 341  __HEREDOC__
Line 357  __HEREDOC__
   
 [ ${HAVE_STRTONUM} -eq 0 ] && \  [ ${HAVE_STRTONUM} -eq 0 ] && \
         echo "extern    long long strtonum(const char *, long long, long long, const char **);"          echo "extern    long long strtonum(const char *, long long, long long, const char **);"
   
   [ ${HAVE_VASPRINTF} -eq 0 ] && \
           echo "extern    int       vasprintf(char **, const char *, va_list);"
   
 echo  echo
 echo "#endif /* MANDOC_CONFIG_H */"  echo "#endif /* MANDOC_CONFIG_H */"

Legend:
Removed from v.1.22  
changed lines
  Added in v.1.23

CVSweb