9
0
Fork 0

Adding ./configure files-

This commit is contained in:
jjako 2002-12-16 14:53:50 +00:00
parent dc8bb83fc9
commit 824ae2ccbf
8 changed files with 9633 additions and 0 deletions

1183
config.guess vendored Executable file

File diff suppressed because it is too large Load Diff

1268
config.sub vendored Executable file

File diff suppressed because it is too large Load Diff

0
doc/Makefile.in Normal file
View File

3114
ltconfig Executable file

File diff suppressed because it is too large Load Diff

4028
ltmain.sh Normal file

File diff suppressed because it is too large Load Diff

40
mkinstalldirs Executable file
View File

@ -0,0 +1,40 @@
#! /bin/sh
# mkinstalldirs --- make directory hierarchy
# Author: Noah Friedman <friedman@prep.ai.mit.edu>
# Created: 1993-05-16
# Public domain
# $Id: mkinstalldirs,v 1.1 2002/12/16 14:54:34 jjako Exp $
errstatus=0
for file
do
set fnord `echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'`
shift
pathcomp=
for d
do
pathcomp="$pathcomp$d"
case "$pathcomp" in
-* ) pathcomp=./$pathcomp ;;
esac
if test ! -d "$pathcomp"; then
echo "mkdir $pathcomp"
mkdir "$pathcomp" || lasterr=$?
if test ! -d "$pathcomp"; then
errstatus=$lasterr
fi
fi
pathcomp="$pathcomp/"
done
done
exit $errstatus
# mkinstalldirs ends here

0
po/Makefile.in Normal file
View File

0
src/Makefile.in Normal file
View File