Changeset 6810a85e35b332e3c17149dbd0104cdd42d2db13

Show
Ignore:
Timestamp:
09/12/06 20:03:45 (2 years ago)
Author:
Rémi Denis-Courmont <rem@videolan.org>
git-committer:
Rémi Denis-Courmont <rem@videolan.org> 1158084225 +0000
git-parent:

[9360ead000d468646bfb9a8ece6d9b1766e8f7ad]

git-author:
Rémi Denis-Courmont <rem@videolan.org> 1158084225 +0000
Message:

Revert lame revert from [16628].
Provide trivial work-around for users of obsolete autoconf

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • bootstrap

    r9360ead r6810a85  
    4848  fi 
    4949fi 
     50 
     51# Check for autoconf 
     52rm -f m4/autoconf260.m4 
     53case "$(autoconf --version|head -1)" in 
     54  *2.5[012345678]*) 
     55    echo "Hey, your autoconf is quite old. Update it." >&2 
     56    exit 1 
     57    ;; 
     58 
     59  *2.59*) 
     60    echo "Enabling provisional autoconf 2.59 work-around. Update autoconf ASAP." 
     61    cp -f extras/m4/autoconf260.m4 m4/ 
     62    ;; 
     63esac 
    5064 
    5165# Check for automake 
  • configure.ac

    r2242665 r6810a85  
    3838dnl Check for tools 
    3939dnl 
     40AC_PROG_CC_C99 
    4041AM_PROG_CC_C_O 
    41 AC_PROG_CPP 
    4242AC_PROG_CXX 
    4343eval "${CXX} --version" >/dev/null 2>&1 || CXX=""