mirror of
git://git.code.sf.net/p/cdesktopenv/code
synced 2025-03-09 15:50:02 +00:00
Get rid of overcomplicated AT&T copyright/license maintenance code
I'm now taking another small step towards extricating this build system from the long-dead AT&T AST universe. This commit modifies/reduces the tool called proto. AT&T used proto for two purposes: 1. To convert ANSI C code to a form compatible with ancient (pre-ANSI) K&R C compilers using extremely complex macro voodo. It was similarly capable of translating to C++. Theoretically, this entire code base should compile on anything from a 1980s K&R C compiler to a modern C++ compiler. In practice, given the massive amount of bit rot we inherited, I am 99.9% sure that this has been broken for many years. 2. To automagically insert license comments into source files based on an extremely complicated license database system. (In all-too-typical AT&T fashion, this second function of proto is completely unrelated to the first.) Function 2 has now been removed because, unlike the AT&T legal department, I don't think it's worth going to unspeakably extreme lengths to avoid maintaining license information in source code files by hand. In the process, proto.c was cleaned up to look halfway like actual C code, but it's still processed code: most macros have been expanded to their numeric value, all comments were stripped, etc. So don't expect to understand this code. The actual source code is in these two directories in the ast-open-history repo: https://github.com/ksh93/ast-open-history/tree/master/src/cmd/proto https://github.com/ksh93/ast-open-history/tree/master/src/lib/libpp Meanwhile, nobody wants to compile ksh with a pre-ANSI K&R C compiler in 2021 -- and there's no good reason to be compatible with C++ because standard C compilers are universally available. So, proto will go away when I manage to figure out how to pry it loose from the innards of this build system. src/lib/libast/port/astlicense.c: - Removed. This is al the license handling code that was incorporated in proto.c in stripped form. It was not used anywhere else, and the environment where it was useful is gone. src/cmd/INIT/proto.c: - Cleanup to make this halfway maintainable: indentation, huge blocks of empty lines, #line directives, etc. - Delete all the code corresponding to astlicense.c. This was actually easy as it was in a discrete block. - proto(), pppopen(): Remove 'license'/'notice' and 'options' arguments. - main(): Remove processing of -l (license) and -o (license options) flags. **/Mamfile: - Update all the proto invocations to remove the -l and -o flags. bin/package, src/cmd/INIT/package.sh: - Delete the 'copyright' command, which used the -l and -o options to tell proto to extract copyright information from *.lic/*.def files in lib/package. COPYRIGHT: - Added. This has the information from 'bin/package copyright', with the copyright years corrected to plausible values as the AST code used the current year (2021) for all of them. It adds ksh 93u+m copyright and contributor information at the top as well. (Yes, some of the lines in the old non-AT&T copyright notices are clipped. This is the actual output of the 'bin/package copyright' command as generated by 'proto' in the AST distribution. For all that extreme complexity, they couldn't even reproduce the notices correctly. But it's officially sanctioned by AT&T in exactly this form, so there you have it.) lib/package/**: - Removed. All these files are now obsolete and redundant.
This commit is contained in:
parent
c2ac69b2d5
commit
46593a89b7
38 changed files with 551 additions and 6286 deletions
|
@ -17,8 +17,6 @@ setv CCFLAGS ${-debug-symbols?1?${mam_cc_DEBUG} -D_BLD_DEBUG?${mam_cc_OPTIMIZE}?
|
|||
setv CCLDFLAGS ${-strip-symbols?1?${mam_cc_LD_STRIP}??}
|
||||
setv COTEMP $$
|
||||
setv LDFLAGS
|
||||
make ${PACKAGEROOT}/lib/package/ast.lic
|
||||
done ${PACKAGEROOT}/lib/package/ast.lic
|
||||
make install
|
||||
make hurl
|
||||
make hurl.sh
|
||||
|
|
|
@ -253,10 +253,6 @@ case `(getopts '[-][123:xyz]' opt --xyz; echo 0$opt) 2>/dev/null` in
|
|||
The hierarchy can be rebuilt by \bpackage make\b.]
|
||||
[+contents\b [ \apackage\a ... ]]?List description and
|
||||
components for \apackage\a on the standard output.]
|
||||
[+copyright\b [ \apackage\a ... ]]?List the general copyright
|
||||
notice(s) for \apackage\a on the standard output. Note that
|
||||
individual components in \apackage\a may contain additional or
|
||||
replacement notices.]
|
||||
[+export\b [ \avariable\a ...]]?List \aname\a=\avalue\a for
|
||||
\avariable\a, one per line. If the \bonly\b attribute is
|
||||
specified then only the variable values are listed. If no
|
||||
|
@ -497,15 +493,6 @@ case `(getopts '[-][123:xyz]' opt --xyz; echo 0$opt) 2>/dev/null` in
|
|||
that contain the package name, package components, references to other
|
||||
packages, and a short package description. *\b.pkg\b files are used by
|
||||
\bpackage write\b to generate new source and binary packages.]
|
||||
[+?\b$PACKAGEROOT/lib/package/\b\agroup\a\b.lic\b files contain license
|
||||
information that is used by the \bAST\b \bproto\b(1) and \bnmake\b(1)
|
||||
commands to generate source and binary license strings. \agroup\a is
|
||||
determined by the first \b:PACKAGE:\b operator name listed in the
|
||||
component \bnmake\b makefile. \agroup\a\b.lic\b files are part of the
|
||||
licensing documentation. Each component may have its own \bLICENSE\b file
|
||||
that overrides the \agroup\a\b.lic\b file. The full text of the licenses
|
||||
are in the \b$PACKAGEROOT/lib/package/LICENSES\b and
|
||||
\b$INSTALLROOT/lib/package/LICENSES\b directories.]
|
||||
[+?A few files are generated in \b$PACKAGEROOT/lib/package/gen\b and
|
||||
\b$INSTALLROOT/lib/package/gen\b. \apackage\a\b.ver\b contains one line
|
||||
consisting of \apackage version release\a \b1\b for the most recent
|
||||
|
@ -635,7 +622,7 @@ do case $# in
|
|||
0) set host type ;;
|
||||
esac
|
||||
case $1 in
|
||||
admin|clean|clobber|contents|copyright|export|host|install|license|list|make|read|regress|release|remove|results|setup|test|update|use|verify|view|write|TEST)
|
||||
admin|clean|clobber|contents|export|host|install|license|list|make|read|regress|release|remove|results|setup|test|update|use|verify|view|write|TEST)
|
||||
action=$1
|
||||
shift
|
||||
break
|
||||
|
@ -849,15 +836,6 @@ are ${bB}ast${eB} ${Mnmake} makefiles that contain the package name, package com
|
|||
references to other packages, and a short package description. *${bB}.pkg${eB} files
|
||||
are used by ${bF}package write${eF} to generate new source and binary packages.
|
||||
${bP}
|
||||
${bB}\$PACKAGEROOT/lib/package/${eB}${bI}GROUP${eI}${bB}.lic${eB} files contain license information that
|
||||
is used by the ${bB}ast${eB} ${Mproto} and ${Mnmake} commands to generate source and
|
||||
binary license strings. ${bI}GROUP${eI} is determined by the first ${bB}:PACKAGE:${eB} operator
|
||||
name listed in the component ${bB}nmake${eB} makefile. ${bI}GROUP${eI}${bB}.lic${eB} files are part of the
|
||||
licensing documentation. Each component may have its own ${bB}LICENSE${eB} file that
|
||||
overrides the ${bI}GROUP${eI}${bB}.lic${eB} file. The full text of the licenses are in the
|
||||
${bB}\$PACKAGEROOT/lib/package/LICENSES${eB} and ${bB}\$INSTALLROOT/lib/package/LICENSES${eB}
|
||||
directories.
|
||||
${bP}
|
||||
A few files are generated in ${bB}\$PACKAGEROOT/lib/package/gen${eB} and
|
||||
${bB}\$INSTALLROOT/lib/package/gen${eB}. ${bI}PACKAGE${eI}${bB}.ver${eB} contains one line consisting of${bX}
|
||||
${bI}PACKAGE VERSION RELEASE${eI} 1${eX}
|
||||
|
@ -1073,10 +1051,6 @@ ${bT}(5)${bD}Read all unread package archive(s):${bX}
|
|||
contents [ package ... ]
|
||||
List description and components for PACKAGE on the standard
|
||||
output.
|
||||
copyright [ package ... ]
|
||||
List the general copyright notice(s) for PACKAGE on the
|
||||
standard output. Note that individual components in PACKAGE
|
||||
may contain additional or replacement notices.
|
||||
export [ VARIABLE ... ]
|
||||
List NAME=VALUE for each VARIABLE, one per line. If the
|
||||
\"only\" attribute is specified then only the variable
|
||||
|
@ -4289,26 +4263,6 @@ get() # host path [ file size ]
|
|||
esac
|
||||
}
|
||||
|
||||
# generate copyright notice
|
||||
|
||||
copyright()
|
||||
{
|
||||
if test -f $1.lic
|
||||
then echo $1 package general copyright notice
|
||||
echo
|
||||
proto -c'#' -p -s -l $1.lic -o type=verbose,author='*' /dev/null
|
||||
return 0
|
||||
fi
|
||||
case $1 in
|
||||
*-*) eval `echo '' $1 | sed 's/\([^-]*\)-\(.*\)/__j__="\1" __i__="\2"/'`
|
||||
if copyright $__i__ || copyright $__j__
|
||||
then return 0
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
return 1
|
||||
}
|
||||
|
||||
# run remote make on host
|
||||
|
||||
remote() # host no-exec-background
|
||||
|
@ -5240,32 +5194,6 @@ contents|list)
|
|||
esac
|
||||
;;
|
||||
|
||||
copyright)
|
||||
# all work in $PACKAGESRC
|
||||
|
||||
cd $PACKAGESRC
|
||||
|
||||
# generate the package list
|
||||
|
||||
set '' $target $package
|
||||
shift
|
||||
argc=$#
|
||||
case $# in
|
||||
0) set '' `echo *.lic | sed 's,\.lic,,g'`
|
||||
shift
|
||||
case $1 in
|
||||
'*') echo $command: $action: no packages >&2
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
esac
|
||||
checkaout proto || exit
|
||||
for i
|
||||
do copyright $i
|
||||
done
|
||||
;;
|
||||
|
||||
export) case $INSTALLROOT in
|
||||
$PACKAGEROOT)
|
||||
INSTALLROOT=$INSTALLROOT/arch/$HOSTTYPE
|
||||
|
|
2540
src/cmd/INIT/proto.c
2540
src/cmd/INIT/proto.c
File diff suppressed because it is too large
Load diff
|
@ -19,8 +19,6 @@ setv CCFLAGS ${-debug-symbols?1?${mam_cc_DEBUG} -D_BLD_DEBUG?${mam_cc_OPTIMIZE}?
|
|||
setv CCLDFLAGS ${-strip-symbols?1?${mam_cc_LD_STRIP}??}
|
||||
setv IFFEFLAGS
|
||||
setv LDFLAGS
|
||||
make ${PACKAGEROOT}/lib/package/ast.lic
|
||||
done ${PACKAGEROOT}/lib/package/ast.lic
|
||||
make .INIT
|
||||
make ${PACKAGE_ast_INCLUDE}/cmdlist.h
|
||||
make ${PACKAGE_ast_INCLUDE}/prototyped.h implicit
|
||||
|
|
|
@ -22,8 +22,6 @@ setv COTEMP $$
|
|||
setv IFFEFLAGS
|
||||
setv LDFLAGS
|
||||
setv SH_DICT \"libshell\"
|
||||
make ${PACKAGEROOT}/lib/package/ast.lic
|
||||
done ${PACKAGEROOT}/lib/package/ast.lic
|
||||
make install
|
||||
make ksh
|
||||
make SHOPT.sh implicit
|
||||
|
@ -1510,7 +1508,7 @@ make install
|
|||
make ${PACKAGE_ast_INCLUDE}/nval.h
|
||||
prev ${PACKAGE_ast_INCLUDE}
|
||||
prev include/nval.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1982,author=dgk' include/nval.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s include/nval.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${PACKAGE_ast_INCLUDE}/nval.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${PACKAGE_ast_INCLUDE}/nval.h
|
||||
|
@ -1518,7 +1516,7 @@ make install
|
|||
done ${PACKAGE_ast_INCLUDE}/nval.h generated
|
||||
make ${PACKAGE_ast_INCLUDE}/shell.h
|
||||
prev include/shell.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1982,author=dgk' include/shell.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s include/shell.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${PACKAGE_ast_INCLUDE}/shell.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${PACKAGE_ast_INCLUDE}/shell.h
|
||||
|
@ -1526,7 +1524,7 @@ make install
|
|||
done ${PACKAGE_ast_INCLUDE}/shell.h generated
|
||||
make ${PACKAGE_ast_INCLUDE}/history.h
|
||||
prev include/history.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1982,author=dgk' include/history.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s include/history.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${PACKAGE_ast_INCLUDE}/history.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${PACKAGE_ast_INCLUDE}/history.h
|
||||
|
|
|
@ -19,8 +19,6 @@ setv CCLDFLAGS ${-strip-symbols?1?${mam_cc_LD_STRIP}??}
|
|||
setv COTEMP $$
|
||||
setv IFFEFLAGS
|
||||
setv LDFLAGS
|
||||
make ${PACKAGEROOT}/lib/package/ast.lic
|
||||
done ${PACKAGEROOT}/lib/package/ast.lic
|
||||
make install
|
||||
make ast
|
||||
make libast.a archive
|
||||
|
@ -999,7 +997,7 @@ make install
|
|||
make port/lc.tab
|
||||
done port/lc.tab
|
||||
exec - ./lcgen ${COTEMP}.1 ${COTEMP}.2 < port/lc.tab
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' ${COTEMP}.1 > ${COTEMP}.3
|
||||
exec - proto -p -s ${COTEMP}.1 > ${COTEMP}.3
|
||||
exec - rm -f ${COTEMP}.1
|
||||
exec - if cmp 2>/dev/null -s ${COTEMP}.3 lc.h
|
||||
exec - then rm ${COTEMP}.3
|
||||
|
@ -5559,14 +5557,6 @@ make install
|
|||
prev port/astdynamic.c
|
||||
exec - ${CC} ${mam_cc_FLAGS} ${KSH_RELFLAGS} ${CCFLAGS} -I. -Icomp -Iport -Isfio -Iinclude -Istd -I${INSTALLROOT}/include -D_PACKAGE_ast -c port/astdynamic.c
|
||||
done astdynamic.o generated
|
||||
make astlicense.o
|
||||
make port/astlicense.c
|
||||
prev include/ast.h implicit
|
||||
done port/astlicense.c
|
||||
meta astlicense.o %.c>%.o port/astlicense.c astlicense
|
||||
prev port/astlicense.c
|
||||
exec - ${CC} ${mam_cc_FLAGS} ${KSH_RELFLAGS} ${CCFLAGS} -I. -Icomp -Iinclude -Istd -D_PACKAGE_ast -c port/astlicense.c
|
||||
done astlicense.o generated
|
||||
make astquery.o
|
||||
make port/astquery.c
|
||||
prev include/error.h implicit
|
||||
|
@ -6101,7 +6091,7 @@ make install
|
|||
exec - ${AR} rc libast.a strntonll.o strntol.o strntoll.o strntoul.o strntoull.o strcasecmp.o strncasecmp.o strerror.o mktemp.o tmpnam.o fsync.o execlp.o execve.o execvp.o execvpe.o spawnveg.o vfork.o killpg.o hsearch.o tsearch.o getlogin.o putenv.o setenv.o unsetenv.o lstat.o statvfs.o eaccess.o gross.o omitted.o readlink.o symlink.o getpgrp.o setpgid.o setsid.o waitpid.o creat64.o fcntl.o open.o atexit.o getdents.o getwd.o dup2.o errno.o getpreroot.o ispreroot.o realopen.o setpreroot.o getgroups.o mount.o system.o iblocks.o modedata.o tmdata.o memfatal.o sfkeyprintf.o sfdcdio.o sfdcdos.o sfdcfilter.o sfdcseekable.o sfdcslow.o sfdcsubstr.o sfdctee.o sfdcunion.o sfdcmore.o sfdcprefix.o wc.o wc2utf8.o basename.o closelog.o dirname.o fmtmsglib.o fnmatch.o ftw.o getdate.o getsubopt.o glob.o nftw.o openlog.o re_comp.o resolvepath.o realpath.o regcmp.o regexp.o setlogmask.o strftime.o strptime.o swab.o syslog.o tempnam.o wordexp.o mktime.o regalloc.o regclass.o regcoll.o regcomp.o regcache.o regdecomp.o regerror.o regexec.o regfatal.o reginit.o
|
||||
exec - ${AR} rc libast.a regnexec.o regsubcomp.o regsubexec.o regsub.o regrecord.o regrexec.o regstat.o dtclose.o dtdisc.o dthash.o dtlist.o dtmethod.o dtopen.o dtstat.o dtstrhash.o dttree.o dtuser.o dtview.o dtwalk.o dtnew.o dtcomp.o sfclose.o sfclrlock.o sfdisc.o sfdlen.o sfexcept.o sfgetl.o sfgetu.o sfcvt.o sfecvt.o sffcvt.o sfextern.o sffilbuf.o sfflsbuf.o sfprints.o sfgetd.o sfgetr.o sfllen.o sfmode.o sfmove.o sfnew.o sfpkrd.o sfnotify.o sfnputc.o sfopen.o sfpeek.o sfpoll.o sfpool.o sfpopen.o sfprintf.o sfputd.o sfputl.o sfputr.o sfputu.o sfrd.o sfread.o sfreserve.o sfscanf.o sfseek.o sfset.o sfsetbuf.o sfsetfd.o sfsize.o sfsk.o sfstack.o sfstrtod.o sfsync.o sfswap.o sftable.o sftell.o sftmp.o sfungetc.o sfvprintf.o sfvscanf.o sfwr.o sfwrite.o sfpurge.o sfraise.o sfwalk.o sfgetm.o sfmutex.o sfputm.o sfresize.o _sfclrerr.o _sfeof.o _sferror.o _sffileno.o _sfopen.o _sfstacked.o _sfvalue.o _sfgetc.o _sfgetl.o _sfgetl2.o _sfgetu.o _sfgetu2.o _sfdlen.o _sfllen.o _sfslen.o _sfulen.o _sfputc.o _sfputd.o _sfputl.o _sfputm.o
|
||||
exec - ${AR} rc libast.a _sfputu.o clearerr.o fclose.o fdopen.o feof.o ferror.o fflush.o fgetc.o fgetpos.o fgets.o fileno.o fopen.o fprintf.o fpurge.o fputc.o fputs.o fread.o freopen.o fscanf.o fseek.o fseeko.o fsetpos.o ftell.o ftello.o fwrite.o flockfile.o ftrylockfile.o funlockfile.o getc.o getchar.o getw.o pclose.o popen.o printf.o putc.o putchar.o puts.o putw.o rewind.o scanf.o setbuf.o setbuffer.o setlinebuf.o setvbuf.o snprintf.o sprintf.o sscanf.o asprintf.o vasprintf.o tmpfile.o ungetc.o vfprintf.o vfscanf.o vprintf.o vscanf.o vsnprintf.o vsprintf.o vsscanf.o _doprnt.o _doscan.o _filbuf.o _flsbuf.o _stdfun.o _stdopen.o _stdprintf.o _stdscanf.o _stdsprnt.o _stdvbuf.o _stdvsnprnt.o _stdvsprnt.o _stdvsscn.o fgetwc.o fwprintf.o putwchar.o vfwscanf.o wprintf.o fgetws.o fwscanf.o swprintf.o vswprintf.o wscanf.o fputwc.o getwc.o swscanf.o vswscanf.o fputws.o getwchar.o ungetwc.o vwprintf.o fwide.o putwc.o vfwprintf.o vwscanf.o stdio_c99.o fcloseall.o fmemopen.o getdelim.o getline.o frexp.o frexpl.o astcopy.o
|
||||
exec - ${AR} rc libast.a astconf.o astdynamic.o astlicense.o astquery.o astwinsize.o conftab.o aststatic.o getopt.o getoptl.o aso.o asolock.o asometh.o asorelax.o aso-sem.o aso-fcntl.o vmbest.o vmclear.o vmclose.o vmdcheap.o vmdebug.o vmdisc.o vmexit.o vmlast.o vmopen.o vmpool.o vmprivate.o vmprofile.o vmregion.o vmsegment.o vmset.o vmstat.o vmstrdup.o vmtrace.o vmwalk.o vmmopen.o malloc.o vmgetmem.o a64l.o acosh.o asinh.o atanh.o cbrt.o crypt.o erf.o err.o exp.o exp__E.o expm1.o gamma.o getpass.o lgamma.o log.o log1p.o log__L.o rand48.o random.o rcmd.o rint.o support.o sfstrtmp.o
|
||||
exec - ${AR} rc libast.a astconf.o astdynamic.o astquery.o astwinsize.o conftab.o aststatic.o getopt.o getoptl.o aso.o asolock.o asometh.o asorelax.o aso-sem.o aso-fcntl.o vmbest.o vmclear.o vmclose.o vmdcheap.o vmdebug.o vmdisc.o vmexit.o vmlast.o vmopen.o vmpool.o vmprivate.o vmprofile.o vmregion.o vmsegment.o vmset.o vmstat.o vmstrdup.o vmtrace.o vmwalk.o vmmopen.o malloc.o vmgetmem.o a64l.o acosh.o asinh.o atanh.o cbrt.o crypt.o erf.o err.o exp.o exp__E.o expm1.o gamma.o getpass.o lgamma.o log.o log1p.o log__L.o rand48.o random.o rcmd.o rint.o support.o sfstrtmp.o
|
||||
exec - (ranlib libast.a) >/dev/null 2>&1 || true
|
||||
done libast.a generated
|
||||
done ast virtual
|
||||
|
@ -6431,7 +6421,7 @@ make install
|
|||
make ${INSTALLROOT}/include/ast/ast_common.h
|
||||
prev ${INSTALLROOT}/include/ast
|
||||
prev ast_common.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' ast_common.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s ast_common.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/ast_common.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/ast_common.h
|
||||
|
@ -6439,7 +6429,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/ast_common.h generated
|
||||
make ${INSTALLROOT}/include/ast/ast.h
|
||||
prev include/ast.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' include/ast.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s include/ast.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/ast.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/ast.h
|
||||
|
@ -6447,7 +6437,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/ast.h generated
|
||||
make ${INSTALLROOT}/include/ast/ast_dir.h
|
||||
prev include/ast_dir.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' include/ast_dir.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s include/ast_dir.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/ast_dir.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/ast_dir.h
|
||||
|
@ -6455,7 +6445,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/ast_dir.h generated
|
||||
make ${INSTALLROOT}/include/ast/ast_getopt.h
|
||||
prev include/ast_getopt.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' include/ast_getopt.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s include/ast_getopt.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/ast_getopt.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/ast_getopt.h
|
||||
|
@ -6463,7 +6453,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/ast_getopt.h generated
|
||||
make ${INSTALLROOT}/include/ast/ast_std.h
|
||||
prev include/ast_std.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' include/ast_std.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s include/ast_std.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/ast_std.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/ast_std.h
|
||||
|
@ -6471,7 +6461,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/ast_std.h generated
|
||||
make ${INSTALLROOT}/include/ast/ast_namval.h
|
||||
prev ast_namval.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' ast_namval.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s ast_namval.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/ast_namval.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/ast_namval.h
|
||||
|
@ -6479,7 +6469,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/ast_namval.h generated
|
||||
make ${INSTALLROOT}/include/ast/ast_windows.h
|
||||
prev include/ast_windows.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' include/ast_windows.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s include/ast_windows.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/ast_windows.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/ast_windows.h
|
||||
|
@ -6487,7 +6477,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/ast_windows.h generated
|
||||
make ${INSTALLROOT}/include/ast/ccode.h
|
||||
prev include/ccode.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' include/ccode.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s include/ccode.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/ccode.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/ccode.h
|
||||
|
@ -6495,7 +6485,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/ccode.h generated
|
||||
make ${INSTALLROOT}/include/ast/cdt.h
|
||||
prev include/cdt.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' include/cdt.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s include/cdt.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/cdt.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/cdt.h
|
||||
|
@ -6503,7 +6493,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/cdt.h generated
|
||||
make ${INSTALLROOT}/include/ast/cdtlib.h
|
||||
prev cdt/cdtlib.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' cdt/cdtlib.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s cdt/cdtlib.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/cdtlib.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/cdtlib.h
|
||||
|
@ -6511,7 +6501,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/cdtlib.h generated
|
||||
make ${INSTALLROOT}/include/ast/cmdarg.h
|
||||
prev include/cmdarg.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' include/cmdarg.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s include/cmdarg.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/cmdarg.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/cmdarg.h
|
||||
|
@ -6519,7 +6509,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/cmdarg.h generated
|
||||
make ${INSTALLROOT}/include/ast/debug.h
|
||||
prev include/debug.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' include/debug.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s include/debug.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/debug.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/debug.h
|
||||
|
@ -6527,7 +6517,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/debug.h generated
|
||||
make ${INSTALLROOT}/include/ast/dt.h
|
||||
prev include/dt.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' include/dt.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s include/dt.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/dt.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/dt.h
|
||||
|
@ -6535,7 +6525,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/dt.h generated
|
||||
make ${INSTALLROOT}/include/ast/error.h
|
||||
prev include/error.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' include/error.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s include/error.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/error.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/error.h
|
||||
|
@ -6543,7 +6533,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/error.h generated
|
||||
make ${INSTALLROOT}/include/ast/find.h
|
||||
prev include/find.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' include/find.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s include/find.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/find.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/find.h
|
||||
|
@ -6551,7 +6541,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/find.h generated
|
||||
make ${INSTALLROOT}/include/ast/ftw.h
|
||||
prev comp/ftw.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' comp/ftw.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s comp/ftw.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/ftw.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/ftw.h
|
||||
|
@ -6559,7 +6549,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/ftw.h generated
|
||||
make ${INSTALLROOT}/include/ast/ftwalk.h
|
||||
prev include/ftwalk.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' include/ftwalk.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s include/ftwalk.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/ftwalk.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/ftwalk.h
|
||||
|
@ -6567,7 +6557,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/ftwalk.h generated
|
||||
make ${INSTALLROOT}/include/ast/fts.h
|
||||
prev include/fts.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' include/fts.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s include/fts.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/fts.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/fts.h
|
||||
|
@ -6575,7 +6565,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/fts.h generated
|
||||
make ${INSTALLROOT}/include/ast/getopt.h
|
||||
prev comp/getopt.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' comp/getopt.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s comp/getopt.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/getopt.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/getopt.h
|
||||
|
@ -6583,7 +6573,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/getopt.h generated
|
||||
make ${INSTALLROOT}/include/ast/glob.h
|
||||
prev include/glob.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' include/glob.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s include/glob.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/glob.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/glob.h
|
||||
|
@ -6591,7 +6581,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/glob.h generated
|
||||
make ${INSTALLROOT}/include/ast/hash.h
|
||||
prev include/hash.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' include/hash.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s include/hash.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/hash.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/hash.h
|
||||
|
@ -6599,7 +6589,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/hash.h generated
|
||||
make ${INSTALLROOT}/include/ast/hashkey.h
|
||||
prev include/hashkey.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' include/hashkey.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s include/hashkey.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/hashkey.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/hashkey.h
|
||||
|
@ -6607,7 +6597,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/hashkey.h generated
|
||||
make ${INSTALLROOT}/include/ast/hashpart.h
|
||||
prev include/hashpart.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' include/hashpart.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s include/hashpart.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/hashpart.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/hashpart.h
|
||||
|
@ -6615,7 +6605,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/hashpart.h generated
|
||||
make ${INSTALLROOT}/include/ast/ip6.h
|
||||
prev include/ip6.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' include/ip6.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s include/ip6.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/ip6.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/ip6.h
|
||||
|
@ -6623,7 +6613,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/ip6.h generated
|
||||
make ${INSTALLROOT}/include/ast/lc.h
|
||||
prev lc.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' lc.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s lc.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/lc.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/lc.h
|
||||
|
@ -6631,7 +6621,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/lc.h generated
|
||||
make ${INSTALLROOT}/include/ast/ls.h
|
||||
prev include/ls.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' include/ls.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s include/ls.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/ls.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/ls.h
|
||||
|
@ -6639,7 +6629,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/ls.h generated
|
||||
make ${INSTALLROOT}/include/ast/magic.h
|
||||
prev include/magic.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' include/magic.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s include/magic.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/magic.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/magic.h
|
||||
|
@ -6647,7 +6637,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/magic.h generated
|
||||
make ${INSTALLROOT}/include/ast/mc.h
|
||||
prev include/mc.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' include/mc.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s include/mc.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/mc.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/mc.h
|
||||
|
@ -6655,7 +6645,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/mc.h generated
|
||||
make ${INSTALLROOT}/include/ast/mime.h
|
||||
prev include/mime.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' include/mime.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s include/mime.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/mime.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/mime.h
|
||||
|
@ -6663,7 +6653,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/mime.h generated
|
||||
make ${INSTALLROOT}/include/ast/mnt.h
|
||||
prev include/mnt.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' include/mnt.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s include/mnt.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/mnt.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/mnt.h
|
||||
|
@ -6671,7 +6661,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/mnt.h generated
|
||||
make ${INSTALLROOT}/include/ast/modecanon.h
|
||||
prev include/modecanon.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' include/modecanon.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s include/modecanon.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/modecanon.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/modecanon.h
|
||||
|
@ -6679,7 +6669,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/modecanon.h generated
|
||||
make ${INSTALLROOT}/include/ast/modex.h
|
||||
prev include/modex.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' include/modex.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s include/modex.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/modex.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/modex.h
|
||||
|
@ -6687,7 +6677,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/modex.h generated
|
||||
make ${INSTALLROOT}/include/ast/namval.h
|
||||
prev include/namval.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' include/namval.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s include/namval.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/namval.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/namval.h
|
||||
|
@ -6695,7 +6685,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/namval.h generated
|
||||
make ${INSTALLROOT}/include/ast/option.h
|
||||
prev include/option.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' include/option.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s include/option.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/option.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/option.h
|
||||
|
@ -6703,7 +6693,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/option.h generated
|
||||
make ${INSTALLROOT}/include/ast/proc.h
|
||||
prev include/proc.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' include/proc.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s include/proc.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/proc.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/proc.h
|
||||
|
@ -6711,7 +6701,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/proc.h generated
|
||||
make ${INSTALLROOT}/include/ast/re_comp.h
|
||||
prev comp/re_comp.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' comp/re_comp.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s comp/re_comp.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/re_comp.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/re_comp.h
|
||||
|
@ -6719,7 +6709,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/re_comp.h generated
|
||||
make ${INSTALLROOT}/include/ast/recfmt.h
|
||||
prev include/recfmt.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' include/recfmt.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s include/recfmt.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/recfmt.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/recfmt.h
|
||||
|
@ -6727,7 +6717,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/recfmt.h generated
|
||||
make ${INSTALLROOT}/include/ast/regex.h
|
||||
prev include/regex.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' include/regex.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s include/regex.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/regex.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/regex.h
|
||||
|
@ -6735,7 +6725,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/regex.h generated
|
||||
make ${INSTALLROOT}/include/ast/regexp.h
|
||||
prev comp/regexp.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' comp/regexp.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s comp/regexp.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/regexp.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/regexp.h
|
||||
|
@ -6743,7 +6733,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/regexp.h generated
|
||||
make ${INSTALLROOT}/include/ast/sfio.h
|
||||
prev include/sfio.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' include/sfio.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s include/sfio.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/sfio.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/sfio.h
|
||||
|
@ -6751,7 +6741,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/sfio.h generated
|
||||
make ${INSTALLROOT}/include/ast/sfio_s.h
|
||||
prev include/sfio_s.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' include/sfio_s.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s include/sfio_s.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/sfio_s.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/sfio_s.h
|
||||
|
@ -6759,7 +6749,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/sfio_s.h generated
|
||||
make ${INSTALLROOT}/include/ast/sfio_t.h
|
||||
prev include/sfio_t.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' include/sfio_t.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s include/sfio_t.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/sfio_t.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/sfio_t.h
|
||||
|
@ -6767,7 +6757,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/sfio_t.h generated
|
||||
make ${INSTALLROOT}/include/ast/sfdisc.h
|
||||
prev include/sfdisc.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' include/sfdisc.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s include/sfdisc.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/sfdisc.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/sfdisc.h
|
||||
|
@ -6775,7 +6765,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/sfdisc.h generated
|
||||
make ${INSTALLROOT}/include/ast/shcmd.h
|
||||
prev include/shcmd.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' include/shcmd.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s include/shcmd.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/shcmd.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/shcmd.h
|
||||
|
@ -6783,7 +6773,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/shcmd.h generated
|
||||
make ${INSTALLROOT}/include/ast/stack.h
|
||||
prev include/stack.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' include/stack.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s include/stack.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/stack.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/stack.h
|
||||
|
@ -6791,7 +6781,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/stack.h generated
|
||||
make ${INSTALLROOT}/include/ast/stak.h
|
||||
prev include/stak.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' include/stak.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s include/stak.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/stak.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/stak.h
|
||||
|
@ -6799,7 +6789,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/stak.h generated
|
||||
make ${INSTALLROOT}/include/ast/stk.h
|
||||
prev include/stk.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' include/stk.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s include/stk.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/stk.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/stk.h
|
||||
|
@ -6807,7 +6797,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/stk.h generated
|
||||
make ${INSTALLROOT}/include/ast/swap.h
|
||||
prev include/swap.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' include/swap.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s include/swap.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/swap.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/swap.h
|
||||
|
@ -6816,7 +6806,7 @@ make install
|
|||
make ${INSTALLROOT}/include/ast/tar.h
|
||||
make include/tar.h
|
||||
done include/tar.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' include/tar.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s include/tar.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/tar.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/tar.h
|
||||
|
@ -6824,7 +6814,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/tar.h generated
|
||||
make ${INSTALLROOT}/include/ast/times.h
|
||||
prev include/times.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' include/times.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s include/times.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/times.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/times.h
|
||||
|
@ -6832,7 +6822,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/times.h generated
|
||||
make ${INSTALLROOT}/include/ast/tm.h
|
||||
prev include/tm.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' include/tm.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s include/tm.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/tm.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/tm.h
|
||||
|
@ -6840,7 +6830,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/tm.h generated
|
||||
make ${INSTALLROOT}/include/ast/tok.h
|
||||
prev include/tok.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' include/tok.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s include/tok.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/tok.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/tok.h
|
||||
|
@ -6849,7 +6839,7 @@ make install
|
|||
make ${INSTALLROOT}/include/ast/usage.h
|
||||
make include/usage.h
|
||||
done include/usage.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' include/usage.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s include/usage.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/usage.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/usage.h
|
||||
|
@ -6858,7 +6848,7 @@ make install
|
|||
make ${INSTALLROOT}/include/ast/vdb.h
|
||||
make include/vdb.h
|
||||
done include/vdb.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' include/vdb.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s include/vdb.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/vdb.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/vdb.h
|
||||
|
@ -6866,7 +6856,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/vdb.h generated
|
||||
make ${INSTALLROOT}/include/ast/vecargs.h
|
||||
prev include/vecargs.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' include/vecargs.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s include/vecargs.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/vecargs.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/vecargs.h
|
||||
|
@ -6874,7 +6864,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/vecargs.h generated
|
||||
make ${INSTALLROOT}/include/ast/vmalloc.h
|
||||
prev include/vmalloc.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' include/vmalloc.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s include/vmalloc.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/vmalloc.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/vmalloc.h
|
||||
|
@ -6882,7 +6872,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/vmalloc.h generated
|
||||
make ${INSTALLROOT}/include/ast/wait.h
|
||||
prev include/wait.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' include/wait.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s include/wait.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/wait.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/wait.h
|
||||
|
@ -6890,7 +6880,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/wait.h generated
|
||||
make ${INSTALLROOT}/include/ast/wordexp.h
|
||||
prev comp/wordexp.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' comp/wordexp.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s comp/wordexp.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/wordexp.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/wordexp.h
|
||||
|
@ -6898,7 +6888,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/wordexp.h generated
|
||||
make ${INSTALLROOT}/include/ast/bytesex.h
|
||||
prev std/bytesex.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' std/bytesex.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s std/bytesex.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/bytesex.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/bytesex.h
|
||||
|
@ -6906,7 +6896,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/bytesex.h generated
|
||||
make ${INSTALLROOT}/include/ast/endian.h
|
||||
prev std/endian.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' std/endian.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s std/endian.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/endian.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/endian.h
|
||||
|
@ -6914,7 +6904,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/endian.h generated
|
||||
make ${INSTALLROOT}/include/ast/fnmatch.h
|
||||
prev comp/fnmatch.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' comp/fnmatch.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s comp/fnmatch.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/fnmatch.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/fnmatch.h
|
||||
|
@ -6924,7 +6914,7 @@ make install
|
|||
make include/magicid.h
|
||||
prev ast_common.h implicit
|
||||
done include/magicid.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' include/magicid.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s include/magicid.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/magicid.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/magicid.h
|
||||
|
@ -6932,7 +6922,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/magicid.h generated
|
||||
make ${INSTALLROOT}/include/ast/fnv.h
|
||||
prev include/fnv.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' include/fnv.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s include/fnv.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/fnv.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/fnv.h
|
||||
|
@ -6940,7 +6930,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/fnv.h generated
|
||||
make ${INSTALLROOT}/include/ast/aso.h
|
||||
prev include/aso.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' include/aso.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s include/aso.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/aso.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/aso.h
|
||||
|
@ -6948,7 +6938,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/aso.h generated
|
||||
make ${INSTALLROOT}/include/ast/dirent.h
|
||||
prev std/dirent.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' std/dirent.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s std/dirent.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/dirent.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/dirent.h
|
||||
|
@ -6956,7 +6946,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/dirent.h generated
|
||||
make ${INSTALLROOT}/include/ast/iconv.h
|
||||
prev std/iconv.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' std/iconv.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s std/iconv.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/iconv.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/iconv.h
|
||||
|
@ -6964,7 +6954,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/iconv.h generated
|
||||
make ${INSTALLROOT}/include/ast/nl_types.h
|
||||
prev std/nl_types.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' std/nl_types.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s std/nl_types.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/nl_types.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/nl_types.h
|
||||
|
@ -6972,7 +6962,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/nl_types.h generated
|
||||
make ${INSTALLROOT}/include/ast/stdio.h
|
||||
prev std/stdio.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' std/stdio.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s std/stdio.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/stdio.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/stdio.h
|
||||
|
@ -6980,7 +6970,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/stdio.h generated
|
||||
make ${INSTALLROOT}/include/ast/wchar.h
|
||||
prev std/wchar.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' std/wchar.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s std/wchar.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/wchar.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/wchar.h
|
||||
|
@ -6988,7 +6978,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/wchar.h generated
|
||||
make ${INSTALLROOT}/include/ast/wctype.h
|
||||
prev std/wctype.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' std/wctype.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s std/wctype.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/wctype.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/wctype.h
|
||||
|
@ -6996,7 +6986,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/wctype.h generated
|
||||
make ${INSTALLROOT}/include/ast/align.h
|
||||
prev align.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' align.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s align.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/align.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/align.h
|
||||
|
@ -7004,7 +6994,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/align.h generated
|
||||
make ${INSTALLROOT}/include/ast/preroot.h
|
||||
prev preroot.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' preroot.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s preroot.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/preroot.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/preroot.h
|
||||
|
@ -7012,7 +7002,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/preroot.h generated
|
||||
make ${INSTALLROOT}/include/ast/sig.h
|
||||
prev sig.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' sig.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s sig.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/sig.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/sig.h
|
||||
|
@ -7020,7 +7010,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/sig.h generated
|
||||
make ${INSTALLROOT}/include/ast/tmx.h
|
||||
prev tmx.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' tmx.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s tmx.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/tmx.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/tmx.h
|
||||
|
@ -7028,7 +7018,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/tmx.h generated
|
||||
make ${INSTALLROOT}/include/ast/tv.h
|
||||
prev tv.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' tv.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s tv.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/tv.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/tv.h
|
||||
|
@ -7036,7 +7026,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/tv.h generated
|
||||
make ${INSTALLROOT}/include/ast/ast_api.h
|
||||
prev ast_api.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' ast_api.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s ast_api.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/ast_api.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/ast_api.h
|
||||
|
@ -7044,7 +7034,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/ast_api.h generated
|
||||
make ${INSTALLROOT}/include/ast/ast_botch.h
|
||||
prev ast_botch.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' ast_botch.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s ast_botch.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/ast_botch.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/ast_botch.h
|
||||
|
@ -7052,7 +7042,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/ast_botch.h generated
|
||||
make ${INSTALLROOT}/include/ast/ast_ccode.h
|
||||
prev ast_ccode.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' ast_ccode.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s ast_ccode.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/ast_ccode.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/ast_ccode.h
|
||||
|
@ -7060,7 +7050,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/ast_ccode.h generated
|
||||
make ${INSTALLROOT}/include/ast/ast_fcntl.h
|
||||
prev ast_fcntl.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' ast_fcntl.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s ast_fcntl.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/ast_fcntl.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/ast_fcntl.h
|
||||
|
@ -7072,7 +7062,7 @@ make install
|
|||
exec - cmp 2>/dev/null -s FEATURE/float ast_float.h || { rm -f ast_float.h; silent test -d . || mkdir .; ${STDCP} FEATURE/float ast_float.h; }
|
||||
prev ast_common.h implicit
|
||||
done ast_float.h generated
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' ast_float.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s ast_float.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/ast_float.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/ast_float.h
|
||||
|
@ -7080,7 +7070,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/ast_float.h generated
|
||||
make ${INSTALLROOT}/include/ast/ast_fs.h
|
||||
prev ast_fs.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' ast_fs.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s ast_fs.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/ast_fs.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/ast_fs.h
|
||||
|
@ -7088,7 +7078,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/ast_fs.h generated
|
||||
make ${INSTALLROOT}/include/ast/ast_lib.h
|
||||
prev ast_lib.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' ast_lib.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s ast_lib.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/ast_lib.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/ast_lib.h
|
||||
|
@ -7096,7 +7086,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/ast_lib.h generated
|
||||
make ${INSTALLROOT}/include/ast/ast_map.h
|
||||
prev ast_map.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' ast_map.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s ast_map.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/ast_map.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/ast_map.h
|
||||
|
@ -7104,7 +7094,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/ast_map.h generated
|
||||
make ${INSTALLROOT}/include/ast/ast_mmap.h
|
||||
prev ast_mmap.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' ast_mmap.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s ast_mmap.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/ast_mmap.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/ast_mmap.h
|
||||
|
@ -7112,7 +7102,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/ast_mmap.h generated
|
||||
make ${INSTALLROOT}/include/ast/ast_mode.h
|
||||
prev ast_mode.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' ast_mode.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s ast_mode.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/ast_mode.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/ast_mode.h
|
||||
|
@ -7129,7 +7119,7 @@ make install
|
|||
done FEATURE/ndbm generated
|
||||
exec - cmp 2>/dev/null -s FEATURE/ndbm ast_ndbm.h || { rm -f ast_ndbm.h; silent test -d . || mkdir .; ${STDCP} FEATURE/ndbm ast_ndbm.h; }
|
||||
done ast_ndbm.h generated
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' ast_ndbm.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s ast_ndbm.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/ast_ndbm.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/ast_ndbm.h
|
||||
|
@ -7137,7 +7127,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/ast_ndbm.h generated
|
||||
make ${INSTALLROOT}/include/ast/ast_param.h
|
||||
prev ast_param.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' ast_param.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s ast_param.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/ast_param.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/ast_param.h
|
||||
|
@ -7145,7 +7135,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/ast_param.h generated
|
||||
make ${INSTALLROOT}/include/ast/ast_sys.h
|
||||
prev ast_sys.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' ast_sys.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s ast_sys.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/ast_sys.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/ast_sys.h
|
||||
|
@ -7153,7 +7143,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/ast_sys.h generated
|
||||
make ${INSTALLROOT}/include/ast/ast_time.h
|
||||
prev ast_time.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' ast_time.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s ast_time.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/ast_time.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/ast_time.h
|
||||
|
@ -7161,7 +7151,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/ast_time.h generated
|
||||
make ${INSTALLROOT}/include/ast/ast_tty.h
|
||||
prev ast_tty.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' ast_tty.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s ast_tty.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/ast_tty.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/ast_tty.h
|
||||
|
@ -7169,7 +7159,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/ast_tty.h generated
|
||||
make ${INSTALLROOT}/include/ast/ast_vfork.h
|
||||
prev ast_vfork.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' ast_vfork.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s ast_vfork.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/ast_vfork.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/ast_vfork.h
|
||||
|
@ -7177,7 +7167,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/ast_vfork.h generated
|
||||
make ${INSTALLROOT}/include/ast/ast_wait.h
|
||||
prev ast_wait.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' ast_wait.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s ast_wait.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/ast_wait.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/ast_wait.h
|
||||
|
@ -7185,7 +7175,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/ast_wait.h generated
|
||||
make ${INSTALLROOT}/include/ast/ast_limits.h
|
||||
prev ast_limits.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' ast_limits.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s ast_limits.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/ast_limits.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/ast_limits.h
|
||||
|
@ -7193,7 +7183,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/ast_limits.h generated
|
||||
make ${INSTALLROOT}/include/ast/ast_standards.h
|
||||
prev ast_standards.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' ast_standards.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s ast_standards.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/ast_standards.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/ast_standards.h
|
||||
|
@ -7209,7 +7199,7 @@ make install
|
|||
done FEATURE/sizeof generated
|
||||
exec - cmp 2>/dev/null -s FEATURE/sizeof ast_sizeof.h || { rm -f ast_sizeof.h; silent test -d . || mkdir .; ${STDCP} FEATURE/sizeof ast_sizeof.h; }
|
||||
done ast_sizeof.h generated
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' ast_sizeof.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s ast_sizeof.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/ast_sizeof.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/ast_sizeof.h
|
||||
|
@ -7217,7 +7207,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/ast_sizeof.h generated
|
||||
make ${INSTALLROOT}/include/ast/ast_dirent.h
|
||||
prev ast_dirent.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' ast_dirent.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s ast_dirent.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/ast_dirent.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/ast_dirent.h
|
||||
|
@ -7225,7 +7215,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/ast_dirent.h generated
|
||||
make ${INSTALLROOT}/include/ast/ast_iconv.h
|
||||
prev ast_iconv.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' ast_iconv.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s ast_iconv.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/ast_iconv.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/ast_iconv.h
|
||||
|
@ -7233,7 +7223,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/ast_iconv.h generated
|
||||
make ${INSTALLROOT}/include/ast/ast_nl_types.h
|
||||
prev ast_nl_types.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' ast_nl_types.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s ast_nl_types.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/ast_nl_types.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/ast_nl_types.h
|
||||
|
@ -7241,7 +7231,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/ast_nl_types.h generated
|
||||
make ${INSTALLROOT}/include/ast/ast_stdio.h
|
||||
prev ast_stdio.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' ast_stdio.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s ast_stdio.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/ast_stdio.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/ast_stdio.h
|
||||
|
@ -7249,7 +7239,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/ast_stdio.h generated
|
||||
make ${INSTALLROOT}/include/ast/ast_wchar.h
|
||||
prev ast_wchar.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' ast_wchar.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s ast_wchar.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/ast_wchar.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/ast_wchar.h
|
||||
|
@ -7257,7 +7247,7 @@ make install
|
|||
done ${INSTALLROOT}/include/ast/ast_wchar.h generated
|
||||
make ${INSTALLROOT}/include/ast/ast_wctype.h
|
||||
prev ast_wctype.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' ast_wctype.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s ast_wctype.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/ast_wctype.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/ast_wctype.h
|
||||
|
@ -7277,14 +7267,14 @@ make install
|
|||
prev comp/fmtmsg.h
|
||||
prev ast_lib.h
|
||||
exec - case ${mam_cc_HOSTTYPE} in
|
||||
exec - win32.*)proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' comp/fmtmsg.h > 1.${COTEMP}.x
|
||||
exec - win32.*)proto -p -s comp/fmtmsg.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/fmtmsg.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/fmtmsg.h
|
||||
exec - fi
|
||||
exec - ;;
|
||||
exec - *) silent grep -l 'define[ ][ ]*_[hl][di][rb]_fmtmsg' ast_lib.h > /dev/null || {
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' comp/fmtmsg.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s comp/fmtmsg.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/fmtmsg.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/fmtmsg.h
|
||||
|
@ -7295,14 +7285,14 @@ make install
|
|||
prev comp/libgen.h
|
||||
prev ast_lib.h
|
||||
exec - case ${mam_cc_HOSTTYPE} in
|
||||
exec - win32.*)proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' comp/libgen.h > 1.${COTEMP}.x
|
||||
exec - win32.*)proto -p -s comp/libgen.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/libgen.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/libgen.h
|
||||
exec - fi
|
||||
exec - ;;
|
||||
exec - *) silent grep -l 'define[ ][ ]*_[hl][di][rb]_libgen' ast_lib.h > /dev/null || {
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' comp/libgen.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s comp/libgen.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/libgen.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/libgen.h
|
||||
|
@ -7313,14 +7303,14 @@ make install
|
|||
prev comp/syslog.h
|
||||
prev ast_lib.h
|
||||
exec - case ${mam_cc_HOSTTYPE} in
|
||||
exec - win32.*)proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' comp/syslog.h > 1.${COTEMP}.x
|
||||
exec - win32.*)proto -p -s comp/syslog.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/syslog.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/syslog.h
|
||||
exec - fi
|
||||
exec - ;;
|
||||
exec - *) silent grep -l 'define[ ][ ]*_[hl][di][rb]_syslog' ast_lib.h > /dev/null || {
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1985,author=gsf+dgk+kpv' comp/syslog.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s comp/syslog.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${INSTALLROOT}/include/ast/syslog.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${INSTALLROOT}/include/ast/syslog.h
|
||||
|
|
|
@ -280,7 +280,6 @@ extern char* astconf(const char*, const char*, const char*);
|
|||
extern Ast_confdisc_f astconfdisc(Ast_confdisc_f);
|
||||
extern void astconflist(Sfio_t*, const char*, int, const char*);
|
||||
extern off_t astcopy(int, int, off_t);
|
||||
extern int astlicense(char*, int, char*, char*, int, int, int);
|
||||
extern int astquery(int, const char*, ...);
|
||||
extern void astwinsize(int, int*, int*);
|
||||
#if _lib_sysconf
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -19,8 +19,6 @@ setv CCFLAGS ${-debug-symbols?1?${mam_cc_DEBUG} -D_BLD_DEBUG?${mam_cc_OPTIMIZE}?
|
|||
setv COTEMP $$
|
||||
setv IFFEFLAGS
|
||||
setv LDFLAGS ""
|
||||
make ${PACKAGEROOT}/lib/package/ast.lic
|
||||
done ${PACKAGEROOT}/lib/package/ast.lic
|
||||
make install
|
||||
make cmd
|
||||
make libcmd.a archive
|
||||
|
@ -788,7 +786,7 @@ make install
|
|||
make ${PACKAGE_ast_INCLUDE}/cmd.h
|
||||
prev ${PACKAGE_ast_INCLUDE}
|
||||
prev cmd.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1992,author=gsf+dgk' cmd.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s cmd.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${PACKAGE_ast_INCLUDE}/cmd.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${PACKAGE_ast_INCLUDE}/cmd.h
|
||||
|
@ -796,7 +794,7 @@ make install
|
|||
done ${PACKAGE_ast_INCLUDE}/cmd.h generated
|
||||
make ${PACKAGE_ast_INCLUDE}/cmdext.h
|
||||
prev cmdext.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1992,author=gsf+dgk' cmdext.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s cmdext.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${PACKAGE_ast_INCLUDE}/cmdext.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${PACKAGE_ast_INCLUDE}/cmdext.h
|
||||
|
@ -872,7 +870,7 @@ make install
|
|||
exec - else mv 1.${COTEMP}.h cmdlist.h
|
||||
exec - fi
|
||||
done cmdlist.h generated
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1992,author=gsf+dgk' cmdlist.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s cmdlist.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${PACKAGE_ast_INCLUDE}/cmdlist.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${PACKAGE_ast_INCLUDE}/cmdlist.h
|
||||
|
|
|
@ -19,8 +19,6 @@ setv CCFLAGS ${-debug-symbols?1?${mam_cc_DEBUG} -D_BLD_DEBUG?${mam_cc_OPTIMIZE}?
|
|||
setv COTEMP $$
|
||||
setv IFFEFLAGS
|
||||
setv LDFLAGS
|
||||
make ${PACKAGEROOT}/lib/package/ast.lic
|
||||
done ${PACKAGEROOT}/lib/package/ast.lic
|
||||
make install
|
||||
make dll
|
||||
make libdll.a archive
|
||||
|
@ -296,7 +294,7 @@ make install
|
|||
make ${PACKAGE_ast_INCLUDE}/dlldefs.h
|
||||
prev ${PACKAGE_ast_INCLUDE}
|
||||
prev dlldefs.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1997,author=gsf' dlldefs.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s dlldefs.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${PACKAGE_ast_INCLUDE}/dlldefs.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${PACKAGE_ast_INCLUDE}/dlldefs.h
|
||||
|
|
|
@ -19,8 +19,6 @@ setv CCFLAGS ${-debug-symbols?1?${mam_cc_DEBUG} -D_BLD_DEBUG?${mam_cc_OPTIMIZE}?
|
|||
setv COTEMP $$
|
||||
setv IFFEFLAGS
|
||||
setv LDFLAGS
|
||||
make ${PACKAGEROOT}/lib/package/ast.lic
|
||||
done ${PACKAGEROOT}/lib/package/ast.lic
|
||||
make install
|
||||
make sum
|
||||
make libsum.a archive
|
||||
|
@ -221,7 +219,7 @@ make install
|
|||
make ${PACKAGE_ast_INCLUDE}/sum.h
|
||||
prev ${PACKAGE_ast_INCLUDE}
|
||||
prev sum.h
|
||||
exec - proto -p -s -l ${PACKAGEROOT}/lib/package/ast.lic '-o since=1996,author=gsf' sum.h > 1.${COTEMP}.x
|
||||
exec - proto -p -s sum.h > 1.${COTEMP}.x
|
||||
exec - if cmp 2>/dev/null -s ${PACKAGE_ast_INCLUDE}/sum.h 1.${COTEMP}.x
|
||||
exec - then rm -f 1.${COTEMP}.x
|
||||
exec - else mv 1.${COTEMP}.x ${PACKAGE_ast_INCLUDE}/sum.h
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue