comparison acinclude.m4 @ 407:06820523d770

Fix and update copyright year
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 02 Jun 2006 13:13:04 +0000
parents fcf4f13d73a0
children 60782f6c2bc8
comparison
equal deleted inserted replaced
406:d61581d203d6 407:06820523d770
1 dnl *** These m4-macros are ripped from XSIDPLAY v1.6.5's acinclude.m4 1 dnl *** These m4-macros are ripped from XSIDPLAY v1.6.5's acinclude.m4
2 dnl *** (C) Copyright 2002 Michael Schwendt, licensed under GNU GPL v2. 2 dnl *** (C) Copyright 2002 Michael Schwendt, licensed under GNU GPL v2.
3 dnl *** Updated for new automake/autoconf plus namespace and other 3 dnl *** Updated for new automake/autoconf plus namespace and other
4 dnl *** minor fixes and changes by Matti 'ccr' Hämäläinen (C) 2003 TNSP 4 dnl *** minor fixes and changes by Matti 'ccr' Hämäläinen (C) 2003-2006 TNSP
5 5
6 dnl ------------------------------------------------------------------------- 6 dnl -------------------------------------------------------------------------
7 dnl Try to find a file (or one of more files in a list of dirs). 7 dnl Try to find a file (or one of more files in a list of dirs).
8 dnl ------------------------------------------------------------------------- 8 dnl -------------------------------------------------------------------------
9 9
11 [ 11 [
12 $3="" 12 $3=""
13 for i in $2; do 13 for i in $2; do
14 for j in $1; do 14 for j in $1; do
15 if test -r "$i/$j"; then 15 if test -r "$i/$j"; then
16 $3=$i 16 $3="$i"
17 break 2 17 break 2
18 fi 18 fi
19 done 19 done
20 done 20 done
21 ]) 21 ])