| 1 |
|
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 |
|
|---|
| 19 |
|
|---|
| 20 |
|
|---|
| 21 |
|
|---|
| 22 |
|
|---|
| 23 |
|
|---|
| 24 |
|
|---|
| 25 |
|
|---|
| 26 |
|
|---|
| 27 |
|
|---|
| 28 |
|
|---|
| 29 |
|
|---|
| 30 |
|
|---|
| 31 |
|
|---|
| 32 |
|
|---|
| 33 |
|
|---|
| 34 |
|
|---|
| 35 |
|
|---|
| 36 |
AC_DEFUN([_TWEEK_PATH_SETUP], |
|---|
| 37 |
[ |
|---|
| 38 |
|
|---|
| 39 |
AC_ARG_WITH(tweek, |
|---|
| 40 |
[ --with-tweek=<PATH> Directory where Tweek is |
|---|
| 41 |
installed [No default]], |
|---|
| 42 |
tweek_config_prefix="$withval", tweek_config_prefix="") |
|---|
| 43 |
AC_ARG_WITH(tweek-exec-prefix, |
|---|
| 44 |
[ --with-tweek-exec-prefix=<PATH> |
|---|
| 45 |
Exec prefix where Tweek is |
|---|
| 46 |
installed (optional) [No default]], |
|---|
| 47 |
tweek_config_exec_prefix="$withval", |
|---|
| 48 |
tweek_config_exec_prefix="") |
|---|
| 49 |
|
|---|
| 50 |
if test "x$tweek_config_exec_prefix" != "x" ; then |
|---|
| 51 |
tweek_config_args="$tweek_config_args --exec-prefix=$tweek_config_exec_prefix" |
|---|
| 52 |
|
|---|
| 53 |
if test x${TWEEK_CONFIG+set} != xset ; then |
|---|
| 54 |
TWEEK_CONFIG="$tweek_config_exec_prefix/bin/tweek-config" |
|---|
| 55 |
fi |
|---|
| 56 |
fi |
|---|
| 57 |
|
|---|
| 58 |
if test "x$tweek_config_prefix" != "x" ; then |
|---|
| 59 |
tweek_config_args="$tweek_config_args --prefix=$tweek_config_prefix" |
|---|
| 60 |
|
|---|
| 61 |
if test x${TWEEK_CONFIG+set} != xset ; then |
|---|
| 62 |
TWEEK_CONFIG="$tweek_config_prefix/bin/tweek-config" |
|---|
| 63 |
fi |
|---|
| 64 |
fi |
|---|
| 65 |
|
|---|
| 66 |
if test "x$TWEEK_BASE_DIR" != "x" ; then |
|---|
| 67 |
tweek_config_args="$tweek_config_args --prefix=$TWEEK_BASE_DIR" |
|---|
| 68 |
|
|---|
| 69 |
if test x${TWEEK_CONFIG+set} != xset ; then |
|---|
| 70 |
TWEEK_CONFIG="$TWEEK_BASE_DIR/bin/tweek-config" |
|---|
| 71 |
fi |
|---|
| 72 |
fi |
|---|
| 73 |
|
|---|
| 74 |
AC_PATH_PROG(TWEEK_CONFIG, tweek-config, no) |
|---|
| 75 |
|
|---|
| 76 |
|
|---|
| 77 |
if ! (eval $TWEEK_CONFIG --cxxflags >/dev/null 2>&1) 2>&1 ; then |
|---|
| 78 |
TWEEK_CONFIG='no' |
|---|
| 79 |
echo "*** The tweek-config script installed by Tweek could not be found" |
|---|
| 80 |
echo "*** If Tweek was installed in PREFIX, make sure PREFIX/bin is in" |
|---|
| 81 |
echo "*** your path, or set the TWEEK_CONFIG environment variable to the" |
|---|
| 82 |
echo "*** full path to tweek-config." |
|---|
| 83 |
fi |
|---|
| 84 |
]) |
|---|
| 85 |
|
|---|
| 86 |
|
|---|
| 87 |
|
|---|
| 88 |
|
|---|
| 89 |
|
|---|
| 90 |
AC_DEFUN([_TWEEK_VERSION_CHECK], |
|---|
| 91 |
[ |
|---|
| 92 |
DPP_PREREQ([2.0.1]) |
|---|
| 93 |
|
|---|
| 94 |
if test "x$TWEEK_CONFIG" = "x" ; then |
|---|
| 95 |
_TWEEK_PATH_SETUP() |
|---|
| 96 |
fi |
|---|
| 97 |
|
|---|
| 98 |
if test "x$TWEEK_CONFIG" = "xno" ; then |
|---|
| 99 |
ifelse([$3], , :, [$3]) |
|---|
| 100 |
else |
|---|
| 101 |
TWEEK_VERSION=`$TWEEK_CONFIG --version` |
|---|
| 102 |
|
|---|
| 103 |
min_tweek_version=ifelse([$1], ,0.0.1,[$1]) |
|---|
| 104 |
DPP_VERSION_CHECK_MSG_NO_CACHE([Tweek], [$TWEEK_VERSION], |
|---|
| 105 |
[$min_tweek_version], [$2], [$3]) |
|---|
| 106 |
fi |
|---|
| 107 |
|
|---|
| 108 |
AC_SUBST(TWEEK_VERSION) |
|---|
| 109 |
]) |
|---|
| 110 |
|
|---|
| 111 |
|
|---|
| 112 |
|
|---|
| 113 |
|
|---|
| 114 |
|
|---|
| 115 |
|
|---|
| 116 |
|
|---|
| 117 |
|
|---|
| 118 |
|
|---|
| 119 |
|
|---|
| 120 |
|
|---|
| 121 |
|
|---|
| 122 |
|
|---|
| 123 |
|
|---|
| 124 |
|
|---|
| 125 |
|
|---|
| 126 |
|
|---|
| 127 |
|
|---|
| 128 |
|
|---|
| 129 |
|
|---|
| 130 |
|
|---|
| 131 |
|
|---|
| 132 |
|
|---|
| 133 |
|
|---|
| 134 |
|
|---|
| 135 |
|
|---|
| 136 |
|
|---|
| 137 |
|
|---|
| 138 |
|
|---|
| 139 |
AC_DEFUN([TWEEK_PATH_CXX], |
|---|
| 140 |
[ |
|---|
| 141 |
if test "x$TWEEK_CONFIG" = "x" ; then |
|---|
| 142 |
_TWEEK_PATH_SETUP() |
|---|
| 143 |
fi |
|---|
| 144 |
|
|---|
| 145 |
TWEEK_CXXFLAGS="" |
|---|
| 146 |
TWEEK_CXXFLAGS_MIN="" |
|---|
| 147 |
TWEEK_INCLUDES="" |
|---|
| 148 |
TWEEK_INCLUDES_MIN="" |
|---|
| 149 |
TWEEK_LIBS_LD="" |
|---|
| 150 |
TWEEK_LIBS_LD_MIN="" |
|---|
| 151 |
TWEEK_LIBS_STATIC_LD="" |
|---|
| 152 |
TWEEK_LIBS_STATIC_LD_MIN="" |
|---|
| 153 |
TWEEK_LIBS_CC="" |
|---|
| 154 |
TWEEK_LIBS_CC_MIN="" |
|---|
| 155 |
TWEEK_LIBS_STATIC_CC="" |
|---|
| 156 |
TWEEK_LIBS_STATIC_CC_MIN="" |
|---|
| 157 |
TWEEK_PROF_LIBS_LD="" |
|---|
| 158 |
TWEEK_PROF_LIBS_LD_MIN="" |
|---|
| 159 |
TWEEK_PROF_LIBS_STATIC_LD="" |
|---|
| 160 |
TWEEK_PROF_LIBS_STATIC_LD_MIN="" |
|---|
| 161 |
TWEEK_PROF_LIBS_CC="" |
|---|
| 162 |
TWEEK_PROF_LIBS_CC_MIN="" |
|---|
| 163 |
TWEEK_PROF_LIBS_STATIC_CC="" |
|---|
| 164 |
TWEEK_PROF_LIBS_STATIC_CC_MIN="" |
|---|
| 165 |
TWEEK_CXX_IDL="" |
|---|
| 166 |
TWEEK_CXX_IDL_OPTS="" |
|---|
| 167 |
TWEEK_CXX_IDL_GENDIR_OPT="" |
|---|
| 168 |
TWEEK_CXX_IDL_INCFLAG="" |
|---|
| 169 |
|
|---|
| 170 |
if test "x$TWEEK_CONFIG" = "xno" ; then |
|---|
| 171 |
ifelse([$3], , :, [$3]) |
|---|
| 172 |
else |
|---|
| 173 |
AC_MSG_CHECKING([whether Tweek C++ API is available]) |
|---|
| 174 |
has_cxx=`$TWEEK_CONFIG --too-much-pressure` |
|---|
| 175 |
|
|---|
| 176 |
if test "x$has_cxx" = "xY" ; then |
|---|
| 177 |
AC_MSG_RESULT([yes]) |
|---|
| 178 |
if test "x$TWEEK_VERSION" = "x" ; then |
|---|
| 179 |
_TWEEK_VERSION_CHECK($1, [tweek_version_okay='yes'], |
|---|
| 180 |
[tweek_version_okay='no' |
|---|
| 181 |
$3]) |
|---|
| 182 |
fi |
|---|
| 183 |
|
|---|
| 184 |
if test "x$tweek_version_okay" = "xyes" ; then |
|---|
| 185 |
TWEEK_CXXFLAGS=`$TWEEK_CONFIG $tweek_config_args --cxxflags $ABI` |
|---|
| 186 |
TWEEK_INCLUDES=`$TWEEK_CONFIG $tweek_config_args --includes` |
|---|
| 187 |
TWEEK_EXTRA_LIBS_CC=`$TWEEK_CONFIG $tweek_config_args --extra-libs $ABI` |
|---|
| 188 |
TWEEK_EXTRA_LIBS_LD=`$TWEEK_CONFIG $tweek_config_args --extra-libs $ABI --linker` |
|---|
| 189 |
TWEEK_LIBS_CC=`$TWEEK_CONFIG $tweek_config_args --libs $ABI` |
|---|
| 190 |
TWEEK_LIBS_LD=`$TWEEK_CONFIG $tweek_config_args --libs $ABI --linker` |
|---|
| 191 |
TWEEK_PROF_LIBS_CC=`$TWEEK_CONFIG $tweek_config_args --libs $ABI --profiled` |
|---|
| 192 |
TWEEK_PROF_LIBS_LD=`$TWEEK_CONFIG $tweek_config_args --libs $ABI --linker --profiled` |
|---|
| 193 |
TWEEK_LIBS_STATIC_CC=`$TWEEK_CONFIG $tweek_config_args --libs $ABI --static` |
|---|
| 194 |
TWEEK_LIBS_STATIC_LD=`$TWEEK_CONFIG $tweek_config_args --libs $ABI --linker --static` |
|---|
| 195 |
TWEEK_PROF_LIBS_STATIC_CC=`$TWEEK_CONFIG $tweek_config_args --libs $ABI --static --profiled` |
|---|
| 196 |
TWEEK_PROF_LIBS_STATIC_LD=`$TWEEK_CONFIG $tweek_config_args --libs $ABI --linker --static --profiled` |
|---|
| 197 |
|
|---|
| 198 |
TWEEK_CXX_IDL="`$TWEEK_CONFIG $tweek_config_args --idl cxx`" |
|---|
| 199 |
TWEEK_CXX_IDL_OPTS="`$TWEEK_CONFIG $tweek_config_args --idlflags cxx`" |
|---|
| 200 |
TWEEK_CXX_IDL_GENDIR_OPT="`$TWEEK_CONFIG $tweek_config_args --idlgendir cxx`" |
|---|
| 201 |
TWEEK_CXX_IDL_INCFLAG="`$TWEEK_CONFIG $tweek_config_args --idlincflag cxx`" |
|---|
| 202 |
|
|---|
| 203 |
TWEEK_CXXFLAGS_MIN=`$TWEEK_CONFIG $tweek_config_args --cxxflags $ABI --min` |
|---|
| 204 |
TWEEK_INCLUDES_MIN=`$TWEEK_CONFIG $tweek_config_args --includes --min` |
|---|
| 205 |
TWEEK_EXTRA_LIBS_CC_MIN=`$TWEEK_CONFIG $tweek_config_args --extra-libs $ABI --min` |
|---|
| 206 |
TWEEK_EXTRA_LIBS_LD_MIN=`$TWEEK_CONFIG $tweek_config_args --extra-libs $ABI --linker --min` |
|---|
| 207 |
TWEEK_LIBS_CC_MIN="`$TWEEK_CONFIG $tweek_config_args --libs $ABI --min`" |
|---|
| 208 |
TWEEK_LIBS_LD_MIN="`$TWEEK_CONFIG $tweek_config_args --libs $ABI --linker --min`" |
|---|
| 209 |
TWEEK_PROF_LIBS_CC_MIN="`$TWEEK_CONFIG $tweek_config_args --libs $ABI --min --profiled`" |
|---|
| 210 |
TWEEK_PROF_LIBS_LD_MIN="`$TWEEK_CONFIG $tweek_config_args --libs $ABI --linker --min --profiled`" |
|---|
| 211 |
TWEEK_LIBS_STATIC_CC_MIN="`$TWEEK_CONFIG $tweek_config_args --libs $ABI --static --min`" |
|---|
| 212 |
TWEEK_LIBS_STATIC_LD_MIN="`$TWEEK_CONFIG $tweek_config_args --libs $ABI --linker --static --min`" |
|---|
| 213 |
TWEEK_PROF_LIBS_STATIC_CC_MIN="`$TWEEK_CONFIG $tweek_config_args --libs $ABI --static --min --profiled`" |
|---|
| 214 |
TWEEK_PROF_LIBS_STATIC_LD_MIN="`$TWEEK_CONFIG $tweek_config_args --libs $ABI --linker --static --min --profiled`" |
|---|
| 215 |
|
|---|
| 216 |
ifelse([$2], , :, [$2]) |
|---|
| 217 |
fi |
|---|
| 218 |
else |
|---|
| 219 |
AC_MSG_RESULT([no]) |
|---|
| 220 |
ifelse([$3], , :, [$3]) |
|---|
| 221 |
fi |
|---|
| 222 |
fi |
|---|
| 223 |
|
|---|
| 224 |
AC_SUBST([TWEEK_CXXFLAGS]) |
|---|
| 225 |
AC_SUBST([TWEEK_LIBS_CC]) |
|---|
| 226 |
AC_SUBST([TWEEK_LIBS_LD]) |
|---|
| 227 |
AC_SUBST([TWEEK_PROF_LIBS_CC]) |
|---|
| 228 |
AC_SUBST([TWEEK_PROF_LIBS_LD]) |
|---|
| 229 |
AC_SUBST([TWEEK_LIBS_STATIC_LD]) |
|---|
| 230 |
AC_SUBST([TWEEK_LIBS_STATIC_CC]) |
|---|
| 231 |
AC_SUBST([TWEEK_PROF_LIBS_STATIC_LD]) |
|---|
| 232 |
AC_SUBST([TWEEK_PROF_LIBS_STATIC_CC]) |
|---|
| 233 |
|
|---|
| 234 |
AC_SUBST([TWEEK_CXX_IDL]) |
|---|
| 235 |
AC_SUBST([TWEEK_CXX_IDL_OPTS]) |
|---|
| 236 |
AC_SUBST([TWEEK_CXX_IDL_GENDIR_OPT]) |
|---|
| 237 |
AC_SUBST([TWEEK_CXX_IDL_INCFLAG]) |
|---|
| 238 |
|
|---|
| 239 |
AC_SUBST([TWEEK_CXXFLAGS_MIN]) |
|---|
| 240 |
AC_SUBST([TWEEK_INCLUDES_MIN]) |
|---|
| 241 |
AC_SUBST([TWEEK_LIBS_CC_MIN]) |
|---|
| 242 |
AC_SUBST([TWEEK_LIBS_LD_MIN]) |
|---|
| 243 |
AC_SUBST([TWEEK_PROF_LIBS_CC_MIN]) |
|---|
| 244 |
AC_SUBST([TWEEK_PROF_LIBS_LD_MIN]) |
|---|
| 245 |
AC_SUBST([TWEEK_LIBS_STATIC_CC_MIN]) |
|---|
| 246 |
AC_SUBST([TWEEK_LIBS_STATIC_LD_MIN]) |
|---|
| 247 |
AC_SUBST([TWEEK_PROF_LIBS_STATIC_CC_MIN]) |
|---|
| 248 |
AC_SUBST([TWEEK_PROF_LIBS_STATIC_LD_MIN]) |
|---|
| 249 |
]) |
|---|
| 250 |
|
|---|
| 251 |
|
|---|
| 252 |
|
|---|
| 253 |
|
|---|
| 254 |
|
|---|
| 255 |
|
|---|
| 256 |
|
|---|
| 257 |
|
|---|
| 258 |
|
|---|
| 259 |
|
|---|
| 260 |
|
|---|
| 261 |
AC_DEFUN([TWEEK_PATH_JAVA], |
|---|
| 262 |
[ |
|---|
| 263 |
if test "x$TWEEK_CONFIG" = "x" ; then |
|---|
| 264 |
_TWEEK_PATH_SETUP() |
|---|
| 265 |
fi |
|---|
| 266 |
|
|---|
| 267 |
TWEEK_JAVA_IDL='' |
|---|
| 268 |
TWEEK_JAVA_IDL_OPTS='' |
|---|
| 269 |
TWEEK_JAVA_IDL_GENDIR_OPT='' |
|---|
| 270 |
TWEEK_JAVA_IDL_INCFLAG='' |
|---|
| 271 |
TWEEK_JARS='' |
|---|
| 272 |
TWEEK_EXT_JARS='' |
|---|
| 273 |
|
|---|
| 274 |
if test "x$TWEEK_CONFIG" = "xno" ; then |
|---|
| 275 |
ifelse([$3], , :, [$3]) |
|---|
| 276 |
else |
|---|
| 277 |
AC_MSG_CHECKING([whether Tweek Java API is available]) |
|---|
| 278 |
has_java=`$TWEEK_CONFIG --is-jittery` |
|---|
| 279 |
|
|---|
| 280 |
if test "x$has_java" = "xY" ; then |
|---|
| 281 |
AC_MSG_RESULT([yes]) |
|---|
| 282 |
if test "x$TWEEK_VERSION" = "x" ; then |
|---|
| 283 |
_TWEEK_VERSION_CHECK($1, [tweek_version_okay='yes'], |
|---|
| 284 |
[tweek_version_okay='no' |
|---|
| 285 |
$3]) |
|---|
| 286 |
fi |
|---|
| 287 |
|
|---|
| 288 |
if test "x$tweek_version_okay" = "xyes" ; then |
|---|
| 289 |
TWEEK_JAVA_IDL="`$TWEEK_CONFIG $tweek_config_args --idl java`" |
|---|
| 290 |
TWEEK_JAVA_IDL_OPTS="`$TWEEK_CONFIG $tweek_config_args --idlflags java`" |
|---|
| 291 |
TWEEK_JAVA_IDL_GENDIR_OPT="`$TWEEK_CONFIG $tweek_config_args --idlgendir java`" |
|---|
| 292 |
TWEEK_JAVA_IDL_INCFLAG="`$TWEEK_CONFIG $tweek_config_args --idlincflag java`" |
|---|
| 293 |
TWEEK_JARS="`$TWEEK_CONFIG $tweek_config_args --jars`" |
|---|
| 294 |
TWEEK_EXT_JARS="`$TWEEK_CONFIG $tweek_config_args --ext-jars`" |
|---|
| 295 |
|
|---|
| 296 |
ifelse([$2], , :, [$2]) |
|---|
| 297 |
fi |
|---|
| 298 |
else |
|---|
| 299 |
AC_MSG_RESULT([no]) |
|---|
| 300 |
ifelse([$3], , :, [$3]) |
|---|
| 301 |
fi |
|---|
| 302 |
fi |
|---|
| 303 |
|
|---|
| 304 |
AC_SUBST([TWEEK_JAVA_IDL]) |
|---|
| 305 |
AC_SUBST([TWEEK_JAVA_IDL_OPTS]) |
|---|
| 306 |
AC_SUBST([TWEEK_JAVA_IDL_GENDIR_OPT]) |
|---|
| 307 |
AC_SUBST([TWEEK_JAVA_IDL_INCFLAG]) |
|---|
| 308 |
AC_SUBST([TWEEK_JARS]) |
|---|
| 309 |
AC_SUBST([TWEEK_EXT_JARS]) |
|---|
| 310 |
]) |
|---|
| 311 |
|
|---|
| 312 |
|
|---|
| 313 |
|
|---|
| 314 |
|
|---|
| 315 |
|
|---|
| 316 |
|
|---|
| 317 |
|
|---|
| 318 |
|
|---|
| 319 |
|
|---|
| 320 |
|
|---|
| 321 |
AC_DEFUN([TWEEK_PATH_PYTHON], |
|---|
| 322 |
[ |
|---|
| 323 |
if test "x$TWEEK_CONFIG" = "x" ; then |
|---|
| 324 |
_TWEEK_PATH_SETUP() |
|---|
| 325 |
fi |
|---|
| 326 |
|
|---|
| 327 |
TWEEK_PYTHON_IDL='' |
|---|
| 328 |
TWEEK_PYTHON_IDL_OPTS='' |
|---|
| 329 |
TWEEK_PYTHON_IDL_GENDIR_OPT='' |
|---|
| 330 |
TWEEK_PYTHON_IDL_INCFLAG='' |
|---|
| 331 |
|
|---|
| 332 |
if test "x$TWEEK_CONFIG" = "xno" ; then |
|---|
| 333 |
ifelse([$3], , :, [$3]) |
|---|
| 334 |
else |
|---|
| 335 |
AC_MSG_CHECKING([whether Tweek Python API is available]) |
|---|
| 336 |
has_java=`$TWEEK_CONFIG --is-jittery` |
|---|
| 337 |
|
|---|
| 338 |
if test "x$has_java" = "xY" ; then |
|---|
| 339 |
AC_MSG_RESULT([yes]) |
|---|
| 340 |
if test "x$TWEEK_VERSION" = "x" ; then |
|---|
| 341 |
_TWEEK_VERSION_CHECK($1, [tweek_version_okay='yes'], |
|---|
| 342 |
[tweek_version_okay='no' |
|---|
| 343 |
$3]) |
|---|
| 344 |
fi |
|---|
| 345 |
|
|---|
| 346 |
if test "x$tweek_version_okay" = "xyes" ; then |
|---|
| 347 |
TWEEK_PYTHON_IDL="`$TWEEK_CONFIG $tweek_config_args --idl java`" |
|---|
| 348 |
TWEEK_PYTHON_IDL_OPTS="`$TWEEK_CONFIG $tweek_config_args --idlflags java`" |
|---|
| 349 |
TWEEK_PYTHON_IDL_GENDIR_OPT="`$TWEEK_CONFIG $tweek_config_args --idlgendir java`" |
|---|
| 350 |
TWEEK_PYTHON_IDL_INCFLAG="`$TWEEK_CONFIG $tweek_config_args --idlincflag java`" |
|---|
| 351 |
TWEEK_JARS="`$TWEEK_CONFIG $tweek_config_args --jars`" |
|---|
| 352 |
TWEEK_EXT_JARS="`$TWEEK_CONFIG $tweek_config_args --ext-jars`" |
|---|
| 353 |
|
|---|
| 354 |
ifelse([$2], , :, [$2]) |
|---|
| 355 |
fi |
|---|
| 356 |
else |
|---|
| 357 |
AC_MSG_RESULT([no]) |
|---|
| 358 |
ifelse([$3], , :, [$3]) |
|---|
| 359 |
fi |
|---|
| 360 |
fi |
|---|
| 361 |
|
|---|
| 362 |
AC_SUBST([TWEEK_PYTHON_IDL]) |
|---|
| 363 |
AC_SUBST([TWEEK_PYTHON_IDL_OPTS]) |
|---|
| 364 |
AC_SUBST([TWEEK_PYTHON_IDL_GENDIR_OPT]) |
|---|
| 365 |
AC_SUBST([TWEEK_PYTHON_IDL_INCFLAG]) |
|---|
| 366 |
]) |
|---|
| 367 |
|
|---|
| 368 |
|
|---|
| 369 |
|
|---|
| 370 |
|
|---|
| 371 |
|
|---|
| 372 |
|
|---|
| 373 |
|
|---|
| 374 |
|
|---|
| 375 |
|
|---|
| 376 |
|
|---|
| 377 |
|
|---|
| 378 |
|
|---|
| 379 |
|
|---|
| 380 |
|
|---|
| 381 |
|
|---|
| 382 |
|
|---|
| 383 |
|
|---|
| 384 |
|
|---|
| 385 |
|
|---|
| 386 |
|
|---|
| 387 |
|
|---|
| 388 |
|
|---|
| 389 |
|
|---|
| 390 |
|
|---|
| 391 |
|
|---|
| 392 |
|
|---|
| 393 |
|
|---|
| 394 |
|
|---|
| 395 |
|
|---|
| 396 |
|
|---|
| 397 |
AC_DEFUN([TWEEK_PATH], |
|---|
| 398 |
[ |
|---|
| 399 |
TWEEK_PATH_CXX($1, [tweek_have_cxx='yes'], $3) |
|---|
| 400 |
|
|---|
| 401 |
if test "x$tweek_have_cxx" = "xyes" ; then |
|---|
| 402 |
TWEEK_PATH_JAVA($1, $2, $3) |
|---|
| 403 |
TWEEK_PATH_PYTHON($1, $2, $3) |
|---|
| 404 |
fi |
|---|
| 405 |
]) |
|---|