xref: /aosp_15_r20/external/libpng/scripts/autoconf/ltsugar.m4 (revision a67afe4df73cf47866eedc69947994b8ff839aba)
1*a67afe4dSAndroid Build Coastguard Worker# ltsugar.m4 -- libtool m4 base layer.                         -*-Autoconf-*-
2*a67afe4dSAndroid Build Coastguard Worker#
3*a67afe4dSAndroid Build Coastguard Worker# Copyright (C) 2004-2005, 2007-2008, 2011-2019, 2021-2022 Free Software
4*a67afe4dSAndroid Build Coastguard Worker# Foundation, Inc.
5*a67afe4dSAndroid Build Coastguard Worker# Written by Gary V. Vaughan, 2004
6*a67afe4dSAndroid Build Coastguard Worker#
7*a67afe4dSAndroid Build Coastguard Worker# This file is free software; the Free Software Foundation gives
8*a67afe4dSAndroid Build Coastguard Worker# unlimited permission to copy and/or distribute it, with or without
9*a67afe4dSAndroid Build Coastguard Worker# modifications, as long as this notice is preserved.
10*a67afe4dSAndroid Build Coastguard Worker
11*a67afe4dSAndroid Build Coastguard Worker# serial 6 ltsugar.m4
12*a67afe4dSAndroid Build Coastguard Worker
13*a67afe4dSAndroid Build Coastguard Worker# This is to help aclocal find these macros, as it can't see m4_define.
14*a67afe4dSAndroid Build Coastguard WorkerAC_DEFUN([LTSUGAR_VERSION], [m4_if([0.1])])
15*a67afe4dSAndroid Build Coastguard Worker
16*a67afe4dSAndroid Build Coastguard Worker
17*a67afe4dSAndroid Build Coastguard Worker# lt_join(SEP, ARG1, [ARG2...])
18*a67afe4dSAndroid Build Coastguard Worker# -----------------------------
19*a67afe4dSAndroid Build Coastguard Worker# Produce ARG1SEPARG2...SEPARGn, omitting [] arguments and their
20*a67afe4dSAndroid Build Coastguard Worker# associated separator.
21*a67afe4dSAndroid Build Coastguard Worker# Needed until we can rely on m4_join from Autoconf 2.62, since all earlier
22*a67afe4dSAndroid Build Coastguard Worker# versions in m4sugar had bugs.
23*a67afe4dSAndroid Build Coastguard Workerm4_define([lt_join],
24*a67afe4dSAndroid Build Coastguard Worker[m4_if([$#], [1], [],
25*a67afe4dSAndroid Build Coastguard Worker       [$#], [2], [[$2]],
26*a67afe4dSAndroid Build Coastguard Worker       [m4_if([$2], [], [], [[$2]_])$0([$1], m4_shift(m4_shift($@)))])])
27*a67afe4dSAndroid Build Coastguard Workerm4_define([_lt_join],
28*a67afe4dSAndroid Build Coastguard Worker[m4_if([$#$2], [2], [],
29*a67afe4dSAndroid Build Coastguard Worker       [m4_if([$2], [], [], [[$1$2]])$0([$1], m4_shift(m4_shift($@)))])])
30*a67afe4dSAndroid Build Coastguard Worker
31*a67afe4dSAndroid Build Coastguard Worker
32*a67afe4dSAndroid Build Coastguard Worker# lt_car(LIST)
33*a67afe4dSAndroid Build Coastguard Worker# lt_cdr(LIST)
34*a67afe4dSAndroid Build Coastguard Worker# ------------
35*a67afe4dSAndroid Build Coastguard Worker# Manipulate m4 lists.
36*a67afe4dSAndroid Build Coastguard Worker# These macros are necessary as long as will still need to support
37*a67afe4dSAndroid Build Coastguard Worker# Autoconf-2.59, which quotes differently.
38*a67afe4dSAndroid Build Coastguard Workerm4_define([lt_car], [[$1]])
39*a67afe4dSAndroid Build Coastguard Workerm4_define([lt_cdr],
40*a67afe4dSAndroid Build Coastguard Worker[m4_if([$#], 0, [m4_fatal([$0: cannot be called without arguments])],
41*a67afe4dSAndroid Build Coastguard Worker       [$#], 1, [],
42*a67afe4dSAndroid Build Coastguard Worker       [m4_dquote(m4_shift($@))])])
43*a67afe4dSAndroid Build Coastguard Workerm4_define([lt_unquote], $1)
44*a67afe4dSAndroid Build Coastguard Worker
45*a67afe4dSAndroid Build Coastguard Worker
46*a67afe4dSAndroid Build Coastguard Worker# lt_append(MACRO-NAME, STRING, [SEPARATOR])
47*a67afe4dSAndroid Build Coastguard Worker# ------------------------------------------
48*a67afe4dSAndroid Build Coastguard Worker# Redefine MACRO-NAME to hold its former content plus 'SEPARATOR''STRING'.
49*a67afe4dSAndroid Build Coastguard Worker# Note that neither SEPARATOR nor STRING are expanded; they are appended
50*a67afe4dSAndroid Build Coastguard Worker# to MACRO-NAME as is (leaving the expansion for when MACRO-NAME is invoked).
51*a67afe4dSAndroid Build Coastguard Worker# No SEPARATOR is output if MACRO-NAME was previously undefined (different
52*a67afe4dSAndroid Build Coastguard Worker# than defined and empty).
53*a67afe4dSAndroid Build Coastguard Worker#
54*a67afe4dSAndroid Build Coastguard Worker# This macro is needed until we can rely on Autoconf 2.62, since earlier
55*a67afe4dSAndroid Build Coastguard Worker# versions of m4sugar mistakenly expanded SEPARATOR but not STRING.
56*a67afe4dSAndroid Build Coastguard Workerm4_define([lt_append],
57*a67afe4dSAndroid Build Coastguard Worker[m4_define([$1],
58*a67afe4dSAndroid Build Coastguard Worker	   m4_ifdef([$1], [m4_defn([$1])[$3]])[$2])])
59*a67afe4dSAndroid Build Coastguard Worker
60*a67afe4dSAndroid Build Coastguard Worker
61*a67afe4dSAndroid Build Coastguard Worker
62*a67afe4dSAndroid Build Coastguard Worker# lt_combine(SEP, PREFIX-LIST, INFIX, SUFFIX1, [SUFFIX2...])
63*a67afe4dSAndroid Build Coastguard Worker# ----------------------------------------------------------
64*a67afe4dSAndroid Build Coastguard Worker# Produce a SEP delimited list of all paired combinations of elements of
65*a67afe4dSAndroid Build Coastguard Worker# PREFIX-LIST with SUFFIX1 through SUFFIXn.  Each element of the list
66*a67afe4dSAndroid Build Coastguard Worker# has the form PREFIXmINFIXSUFFIXn.
67*a67afe4dSAndroid Build Coastguard Worker# Needed until we can rely on m4_combine added in Autoconf 2.62.
68*a67afe4dSAndroid Build Coastguard Workerm4_define([lt_combine],
69*a67afe4dSAndroid Build Coastguard Worker[m4_if(m4_eval([$# > 3]), [1],
70*a67afe4dSAndroid Build Coastguard Worker       [m4_pushdef([_Lt_sep], [m4_define([_Lt_sep], m4_defn([lt_car]))])]]dnl
71*a67afe4dSAndroid Build Coastguard Worker[[m4_foreach([_Lt_prefix], [$2],
72*a67afe4dSAndroid Build Coastguard Worker	     [m4_foreach([_Lt_suffix],
73*a67afe4dSAndroid Build Coastguard Worker		]m4_dquote(m4_dquote(m4_shift(m4_shift(m4_shift($@)))))[,
74*a67afe4dSAndroid Build Coastguard Worker	[_Lt_sep([$1])[]m4_defn([_Lt_prefix])[$3]m4_defn([_Lt_suffix])])])])])
75*a67afe4dSAndroid Build Coastguard Worker
76*a67afe4dSAndroid Build Coastguard Worker
77*a67afe4dSAndroid Build Coastguard Worker# lt_if_append_uniq(MACRO-NAME, VARNAME, [SEPARATOR], [UNIQ], [NOT-UNIQ])
78*a67afe4dSAndroid Build Coastguard Worker# -----------------------------------------------------------------------
79*a67afe4dSAndroid Build Coastguard Worker# Iff MACRO-NAME does not yet contain VARNAME, then append it (delimited
80*a67afe4dSAndroid Build Coastguard Worker# by SEPARATOR if supplied) and expand UNIQ, else NOT-UNIQ.
81*a67afe4dSAndroid Build Coastguard Workerm4_define([lt_if_append_uniq],
82*a67afe4dSAndroid Build Coastguard Worker[m4_ifdef([$1],
83*a67afe4dSAndroid Build Coastguard Worker	  [m4_if(m4_index([$3]m4_defn([$1])[$3], [$3$2$3]), [-1],
84*a67afe4dSAndroid Build Coastguard Worker		 [lt_append([$1], [$2], [$3])$4],
85*a67afe4dSAndroid Build Coastguard Worker		 [$5])],
86*a67afe4dSAndroid Build Coastguard Worker	  [lt_append([$1], [$2], [$3])$4])])
87*a67afe4dSAndroid Build Coastguard Worker
88*a67afe4dSAndroid Build Coastguard Worker
89*a67afe4dSAndroid Build Coastguard Worker# lt_dict_add(DICT, KEY, VALUE)
90*a67afe4dSAndroid Build Coastguard Worker# -----------------------------
91*a67afe4dSAndroid Build Coastguard Workerm4_define([lt_dict_add],
92*a67afe4dSAndroid Build Coastguard Worker[m4_define([$1($2)], [$3])])
93*a67afe4dSAndroid Build Coastguard Worker
94*a67afe4dSAndroid Build Coastguard Worker
95*a67afe4dSAndroid Build Coastguard Worker# lt_dict_add_subkey(DICT, KEY, SUBKEY, VALUE)
96*a67afe4dSAndroid Build Coastguard Worker# --------------------------------------------
97*a67afe4dSAndroid Build Coastguard Workerm4_define([lt_dict_add_subkey],
98*a67afe4dSAndroid Build Coastguard Worker[m4_define([$1($2:$3)], [$4])])
99*a67afe4dSAndroid Build Coastguard Worker
100*a67afe4dSAndroid Build Coastguard Worker
101*a67afe4dSAndroid Build Coastguard Worker# lt_dict_fetch(DICT, KEY, [SUBKEY])
102*a67afe4dSAndroid Build Coastguard Worker# ----------------------------------
103*a67afe4dSAndroid Build Coastguard Workerm4_define([lt_dict_fetch],
104*a67afe4dSAndroid Build Coastguard Worker[m4_ifval([$3],
105*a67afe4dSAndroid Build Coastguard Worker	m4_ifdef([$1($2:$3)], [m4_defn([$1($2:$3)])]),
106*a67afe4dSAndroid Build Coastguard Worker    m4_ifdef([$1($2)], [m4_defn([$1($2)])]))])
107*a67afe4dSAndroid Build Coastguard Worker
108*a67afe4dSAndroid Build Coastguard Worker
109*a67afe4dSAndroid Build Coastguard Worker# lt_if_dict_fetch(DICT, KEY, [SUBKEY], VALUE, IF-TRUE, [IF-FALSE])
110*a67afe4dSAndroid Build Coastguard Worker# -----------------------------------------------------------------
111*a67afe4dSAndroid Build Coastguard Workerm4_define([lt_if_dict_fetch],
112*a67afe4dSAndroid Build Coastguard Worker[m4_if(lt_dict_fetch([$1], [$2], [$3]), [$4],
113*a67afe4dSAndroid Build Coastguard Worker	[$5],
114*a67afe4dSAndroid Build Coastguard Worker    [$6])])
115*a67afe4dSAndroid Build Coastguard Worker
116*a67afe4dSAndroid Build Coastguard Worker
117*a67afe4dSAndroid Build Coastguard Worker# lt_dict_filter(DICT, [SUBKEY], VALUE, [SEPARATOR], KEY, [...])
118*a67afe4dSAndroid Build Coastguard Worker# --------------------------------------------------------------
119*a67afe4dSAndroid Build Coastguard Workerm4_define([lt_dict_filter],
120*a67afe4dSAndroid Build Coastguard Worker[m4_if([$5], [], [],
121*a67afe4dSAndroid Build Coastguard Worker  [lt_join(m4_quote(m4_default([$4], [[, ]])),
122*a67afe4dSAndroid Build Coastguard Worker           lt_unquote(m4_split(m4_normalize(m4_foreach(_Lt_key, lt_car([m4_shiftn(4, $@)]),
123*a67afe4dSAndroid Build Coastguard Worker		      [lt_if_dict_fetch([$1], _Lt_key, [$2], [$3], [_Lt_key ])])))))])[]dnl
124*a67afe4dSAndroid Build Coastguard Worker])
125