configure: update script headers

The libvpx build system was influenced by the clever design of the
FFmpeg configure script. Say so in the script header, and provide a
little introduction.

Change-Id: I4d134c77f9032d1dde72b852b444e98676b85326
This commit is contained in:
John Koleszar 2010-05-28 10:11:58 -04:00
parent a7bb3360bc
commit 0d719655a1
2 changed files with 15 additions and 11 deletions

View File

@ -1,13 +1,13 @@
#!/bin/bash #!/bin/bash
## ##
## Copyright (c) 2010 The VP8 project authors. All Rights Reserved. ## configure.sh
## ##
## Use of this source code is governed by a BSD-style license and patent ## This script is sourced by the main configure script and contains
## grant that can be found in the LICENSE file in the root of the source ## utility functions and other common bits that aren't strictly libvpx
## tree. All contributing project authors may be found in the AUTHORS ## related.
## file in the root of the source tree. ##
## This build system is based in part on the FFmpeg configure script.
## ##
# #

14
configure vendored
View File

@ -1,11 +1,15 @@
#!/bin/bash #!/bin/bash
## ##
## Copyright (c) 2010 The VP8 project authors. All Rights Reserved. ## configure
## ##
## Use of this source code is governed by a BSD-style license and patent ## This script is the front-end to the build system. It provides a similar
## grant that can be found in the LICENSE file in the root of the source ## interface to standard configure scripts with some extra bits for dealing
## tree. All contributing project authors may be found in the AUTHORS ## with toolchains that differ from the standard POSIX interface and
## file in the root of the source tree. ## for extracting subsets of the source tree. In theory, reusable parts
## of this script were intended to live in build/make/configure.sh,
## but in practice, the line is pretty blurry.
##
## This build system is based in part on the FFmpeg configure script.
## ##
#source_path="`dirname \"$0\"`" #source_path="`dirname \"$0\"`"