#!/bin/sh # usage: ifchange target temporary unset timestamp if [ "$1" = --timestamp ]; then timestamp=yes shift fi target="$1" temp="$2" if [ "$temp" = - ]; then temp="tmpdata$$.tmp~" cat > "$temp" || exit $? trap 'rm -f "$temp"' 0 fi if cmp "$target" "$temp" >/dev/null 2>&1; then echo "$target unchanged" rm -f "$temp" else echo "$target updated" mv -f "$temp" "$target" fi if [ $timestamp ]; then touch `dirname "$target"`/.time.`basename "$target"` fi >
The Ruby Programming Language
summaryrefslogtreecommitdiff
path: root/missing
AgeCommit message (Expand)Author
2016-08-20rubystubnobu
2016-07-21* missing/strl{cat,cpy}.c: Update latest upstream files.hsbt
2016-06-29Use LONG_LONGnobu
2016-06-04des_tables.c: generation rulenobu
2016-06-04crypt.h: remove initializednobu
2016-06-02crypt.c: suppress warningsnobu
2016-06-02crypt.c: fix syntax error on mswinnobu
2016-06-01crypt.c: unused functionsnobu
2016-06-01crypt.h: get rid of conflictnobu
2016-06-01use system cryptnobu
2016-06-01des_tables.cnobu
2016-06-01crypt_r.c: fix out of bounds accessnobu
2016-06-01crypt_r.c: DES tablesnobu
2016-06-01crypt_r.c: remove castsnobu
2016-06-01crypt_r.c: adjust stylenobu
2016-06-01use crypt_rnobu
2016-06-01* missing/crypt.c (des_setkey): void function never returns any value.usa
2016-06-01separate crypt.hnobu
2016-06-01add crypt_rnobu
2016-05-31crypt.c: fix size macrosnobu
2016-05-31crypt.c: protoizenobu
2016-05-31crypt.c: constifynobu
2016-04-06lgamma_r.c: fix at -0.0nobu
2016-01-10missing.h: remove explicit_bzero_by_memset_snobu
2015-12-02explicit_bzero.c: fix typosnobu
2015-12-02explicit_bzero.c: fix commentsnobu
2015-12-02undef for tha case missing.h defines it as macronaruse
2015-12-01missing/explicit_bzero.c (explicit_bzero): fixup r52839normal
2015-12-01* missing/explicit_bzero.c: add ruby_explicit_bzero_hook_unusedkosaki
2015-12-01explicit_bzero.c: needs windows.hnobu
2015-12-01missing.h: explicit_bzero by memset_snobu
2015-12-01configure.in: FUNC_UNOPTIMIZEDnobu
2015-12-01* missing/explicit_bzero.c: add a few comment.kosaki
2015-12-01fix r52806kosaki
2015-11-30missing/explicit_bzero.c: Fixup r52806normal
2015-10-18* ChangeLog: Good-bye OS/2.kosaki
2014-10-08missing/setproctitle.c: Avoid invalidating argv[1], argv[2], etc. until the f...odaira
2014-05-18* missing/nextafter.c: Include ruby/missing.h.akr
2014-05-18* configure.in: Check nextafter() availability.akr
2013-05-19fix typos. Patch by k_takata.ktsj
2013-04-23* missing/isnan.c (isnan): Don't define if isnan() macro is defined.akr
2012-12-28* configure.in: check for the whether crt_externs.h is present when compilingcharliesome