1# Copyright (c) 1999-2015, International Business Machines Corporation and 2# others. All Rights Reserved. 3 4# moved here from ../../acinclude.m4 5 6# ICU_CONDITIONAL - similar example taken from Automake 1.4 7AC_DEFUN([ICU_CONDITIONAL], 8[AC_SUBST($1_TRUE) 9AC_SUBST(U_HAVE_$1) 10if $2; then 11 $1_TRUE= 12 U_HAVE_$1=1 13else 14 $1_TRUE='#' 15 U_HAVE_$1=0 16fi]) 17