From 6c98a31b980d1d6cbbc9aeb2064d3f1c2252c3da Mon Sep 17 00:00:00 2001 From: gokuls Date: Wed, 17 May 2017 21:52:10 -0700 Subject: VES5.0 development changes not for test Change-Id: Ib44b38d24e8c841c1a85aaf82265b10f3d387b0c Signed-off-by: Gokul Singaraju --- VES5.0/doxygen-1.8.12/configure | 118 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 118 insertions(+) create mode 100755 VES5.0/doxygen-1.8.12/configure (limited to 'VES5.0/doxygen-1.8.12/configure') diff --git a/VES5.0/doxygen-1.8.12/configure b/VES5.0/doxygen-1.8.12/configure new file mode 100755 index 00000000..9d623b19 --- /dev/null +++ b/VES5.0/doxygen-1.8.12/configure @@ -0,0 +1,118 @@ +#! /bin/sh +# +# $Id: configure,v 1.1 1999/07/19 17:00:15 root Exp $ +# +# Copyright (C) 1997-2000 by Dimitri van Heesch. +# +# Permission to use, copy, modify, and distribute this software and its +# documentation under the terms of the GNU General Public License is hereby +# granted. No representations are made about the suitability of this software +# for any purpose. It is provided "as is" without express or implied warranty. +# See the GNU General Public License for more details. +# +# Documents produced by Doxygen are derivative works derived from the +# input used in their production; they are not affected by this license. +# +# shell script to configure doxygen + +f_prefix=/usr/local +f_insttool=NO + +while test -n "$1"; do + case $1 in + --prefix) + shift; f_prefix=$1 + ;; + --install) + shift; f_insttool=$1 + ;; + -h | -help | --help) + f_help=y + ;; + *) + echo $1: unknown argument + f_help=y + f_error=y + ;; + esac + shift +done + +if test "$f_help" = y; then + cat </dev/null | grep utils`"; then + install_found=YES + install_prog="$j/$i" + break 2 + fi + fi + done + done + f_insttool="$install_prog" +fi + +if test "$f_insttool" = NO; then + if test "$install_found" = YES; then + echo "GNU version of install is required!" + else + echo "not found!"; + fi + echo + exit 2 +fi +echo "using $f_insttool"; + +# ---------------------------------------------------------- + + +cat > .makeconfig < $DST <> $DST + echo " Created $DST from $SRC..." +done -- cgit 1.2.3-korg