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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 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 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 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 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725
|
#------------------------------------------------------------------------
# TDOM_ENABLE_DTD --
#
# Allows the building with DTD support
#
# Arguments:
# None
#
# Results:
#
# Adds the following arguments to configure:
# --enable-dtd=yes|no
#
# Defines the following vars:
#
# Sets the following vars:
#
#------------------------------------------------------------------------
AC_DEFUN(TDOM_ENABLE_DTD, [
AC_MSG_CHECKING([whether to enable dtd support])
AC_ARG_ENABLE(dtd,
AC_HELP_STRING([--enable-dtd],
[build with dtd support (default: on)]),
[tcl_ok=$enableval], [tcl_ok=yes])
if test "${enable_dtd+set}" = set; then
enableval="$enable_dtd"
tcl_ok=$enableval
else
tcl_ok=yes
fi
if test "$tcl_ok" = "yes" ; then
AC_MSG_RESULT([yes])
AC_DEFINE(XML_DTD)
else
AC_MSG_RESULT([no])
fi
])
#------------------------------------------------------------------------
# TDOM_ENABLE_NS --
#
# Allows the building with namespace support
#
# Arguments:
# None
#
# Results:
#
# Adds the following arguments to configure:
# --enable-ns=yes|no
#
# Defines the following vars:
#
# Sets the following vars:
#
#------------------------------------------------------------------------
AC_DEFUN(TDOM_ENABLE_NS, [
AC_MSG_CHECKING([whether to enable namespace support])
AC_ARG_ENABLE(ns,
AC_HELP_STRING([--enable-ns],
[build with XML namespace support (default: on)]),
[tcl_ok=$enableval], [tcl_ok=yes])
if test "${enable_ns+set}" = set; then
enableval="$enable_ns"
tcl_ok=$enableval
else
tcl_ok=yes
fi
if test "$tcl_ok" = "yes" ; then
AC_MSG_RESULT([yes])
AC_DEFINE(XML_NS)
else
AC_MSG_RESULT([no])
fi
])
#------------------------------------------------------------------------
# TDOM_ENABLE_UNKNOWN --
#
# Allows the building with (or without) the custom unknown command
#
# Arguments:
# none
#
# Results:
#
# Adds the following arguments to configure:
# --enable-unknown=yes|no
#
# Defines the following vars:
#
# Sets the following vars:
#
#------------------------------------------------------------------------
AC_DEFUN(TDOM_ENABLE_UNKNOWN, [
AC_MSG_CHECKING([whether to enable built-in unknown command])
AC_ARG_ENABLE(ucmd,
AC_HELP_STRING([--enable-unknown],
[enable built-in unknown command (default: off)]),
[tcl_ok=$enableval], [tcl_ok=no])
if test "${enable_unknown+set}" = set; then
enableval="$enable_unknown"
tcl_ok=$enableval
else
tcl_ok=no
fi
if test "$tcl_ok" = "no" ; then
AC_MSG_RESULT([no])
AC_DEFINE(TDOM_NO_UNKNOWN_CMD)
else
AC_MSG_RESULT([yes])
fi
])
#------------------------------------------------------------------------
# TDOM_ENABLE_TDOMALLOC --
#
# Allows the building with tDOMs block allocator for nodes
#
# Arguments:
# none
#
# Results:
#
# Adds the following arguments to configure:
# --enable-tdomalloc=yes|no
#
# Defines the following vars:
#
# Sets the following vars:
#
#------------------------------------------------------------------------
AC_DEFUN(TDOM_ENABLE_TDOMALLOC, [
AC_MSG_CHECKING([whether to enable tDOMs block allocator])
AC_ARG_ENABLE(tdomalloc,
AC_HELP_STRING([--enable-tdomalloc],
[build with the tDOM allocator (default: off)]),
[tcl_ok=$enableval], [tcl_ok=no])
if test "${enable_tdomalloc+set}" = set; then
enableval="$enable_tdomalloc"
tcl_ok=$enableval
else
tcl_ok=no
fi
if test "$tcl_ok" = "yes" ; then
AC_MSG_RESULT([yes])
TEA_ADD_SOURCES([generic/domalloc.c])
else
AC_MSG_RESULT([no])
AC_DEFINE(USE_NORMAL_ALLOCATOR)
fi
])
#------------------------------------------------------------------------
# TDOM_ENABLE_LESS_NS --
#
# Building with lower limit of different XML namespace declarations
# per document.
#
# Arguments:
# None
#
# Results:
#
# Adds the following arguments to configure:
# --enable-lessns=yes|no
#
# Defines the following vars:
#
# Sets the following vars:
#
#------------------------------------------------------------------------
AC_DEFUN(TDOM_ENABLE_LESS_NS, [
AC_MSG_CHECKING([whether to enable lower limit for XML ns declarations per document])
AC_ARG_ENABLE(lessns,
AC_HELP_STRING([--enable-lessns],
[build with lower limit for XML ns declarations (default: off)]),
[tcl_ok=$enableval], [tcl_ok=no])
if test "${enable_lessns+set}" = set; then
enableval="$enable_lessns"
tcl_ok=$enableval
else
tcl_ok=no
fi
if test "$tcl_ok" = "yes" ; then
AC_MSG_RESULT([yes])
AC_DEFINE(TDOM_LESS_NS)
else
AC_MSG_RESULT([no])
fi
])
#------------------------------------------------------------------------
# TDOM_ENABLE_SCHEMA --
#
# Building with validation features.
#
# Arguments:
# None
#
# Results:
#
# Adds the following arguments to configure:
# --enable-validation=yes|no
#
# Defines the following vars:
#
# Sets the following vars:
#
#------------------------------------------------------------------------
AC_DEFUN(TDOM_ENABLE_SCHEMA, [
AC_MSG_CHECKING([whether to enable valiation features])
AC_ARG_ENABLE(schema,
AC_HELP_STRING([--enable-schema],
[build with valiation features (default: on)]),
[tcl_ok=$enableval], [tcl_ok=yes])
if test "${enable_schema+set}" = set; then
enableval="$enable_schema"
tcl_ok=$enableval
else
tcl_ok=yes
fi
if test "$tcl_ok" = "no" ; then
AC_MSG_RESULT([no])
AC_DEFINE(TDOM_NO_SCHEMA)
else
AC_MSG_RESULT([yes])
fi
])
#------------------------------------------------------------------------
# TDOM_ENABLE_HTML5 --
#
# Building with gumbo support for HTML5 parsing (dom parse -html5)
#
# Arguments:
# None
#
# Results:
#
# Adds the following arguments to configure:
# --enable-html5=yes|no
#
# Defines the following vars:
#
# Sets the following vars:
#
#------------------------------------------------------------------------
AC_DEFUN(TDOM_ENABLE_HTML5, [
AC_PATH_TOOL([PKG_CONFIG],[pkg-config])
AC_MSG_CHECKING([whether to enable support for HTML5 parsing (using gumbo)])
AC_ARG_ENABLE(html5,
AC_HELP_STRING([--enable-html5],
[build with HTML5 parsing support (default: off)]),
[tcl_ok=$enableval], [tcl_ok=no])
if test "${enable_html5+set}" = set; then
enableval="$enable_html5"
tcl_ok=$enableval
else
tcl_ok=no
fi
HTML5_LIBS=""
HTML5_INCLUDES=""
if test "$tcl_ok" = "yes" ; then
# Check if pkg-config is available
if test "x$PKG_CONFIG" = x; then
tcl_ok=no
AC_MSG_ERROR([cannot find pkg-config needed for --enable-html5.])
fi
fi
if test "$tcl_ok" = "yes" ; then
HAVEGUMBO=`$PKG_CONFIG --exists gumbo && echo "1"`
if test "$HAVEGUMBO" = "1" ; then
AC_MSG_RESULT([yes])
AC_DEFINE(TDOM_HAVE_GUMBO)
if test "${TEA_PLATFORM}" = "windows" ; then
HTML5_LIBS="-Wl,-Bstatic `$PKG_CONFIG --static --libs gumbo` -Wl,-Bdynamic"
else
HTML5_LIBS="`$PKG_CONFIG --libs gumbo`"
fi
HTML5_INCLUDES="`$PKG_CONFIG --cflags gumbo`"
else
AC_MSG_ERROR([The required lib gumbo not found])
fi
else
AC_MSG_RESULT([no])
fi
])
#------------------------------------------------------------------------
# TDOM_PATH_AOLSERVER
#
# Allows the building with support for AOLserver
#
# Arguments:
# none
#
# Results:
#
# Adds the following arguments to configure:
# --with-aolserver=...
#
# Defines the following vars:
# AOL_DIR Full path to the directory containing AOLserver distro
#
# Sets the following vars:
# NS_AOLSERVER
#------------------------------------------------------------------------
AC_DEFUN(TDOM_PATH_AOLSERVER, [
AC_MSG_CHECKING([for AOLserver configuration])
AC_ARG_WITH(aol,
AC_HELP_STRING([--with-aolserver],
[directory with AOLserver distribution]),
with_aolserver=${withval})
AC_CACHE_VAL(ac_cv_c_aolserver,[
if test x"${with_aolserver}" != x ; then
if test -f "${with_aolserver}/include/ns.h" ; then
ac_cv_c_aolserver=`(cd ${with_aolserver}; pwd)`
else
AC_MSG_ERROR([${with_aolserver} directory doesn't contain ns.h])
fi
fi
])
if test x"${ac_cv_c_aolserver}" = x ; then
AC_MSG_RESULT([none found])
else
AOL_DIR=${ac_cv_c_aolserver}
AOL_INCLUDES="-I\"${AOL_DIR}/include\""
if test "`uname -s`" = Darwin ; then
aollibs=`ls ${AOL_DIR}/lib/libns* 2>/dev/null`
if test x"$aollibs" != x ; then
AOL_LIBS="-L\"${AOL_DIR}/lib\" -lnsd -lnsthread"
fi
fi
AC_MSG_RESULT([found AOLserver in $AOL_DIR])
AC_DEFINE(NS_AOLSERVER)
AC_DEFINE(USE_NORMAL_ALLOCATOR)
fi
])
#------------------------------------------------------------------------
# TDOM_PATH_EXPAT
#
# Allows the building against a shared, system-wide expat library In
# doubt, it falls back to the bundled expat copy
#
# Arguments:
# none
#
# Results:
#
# Adds the following arguments to configure:
# --with-expat=...
#
# Defines the following vars:
#
# Sets the following vars:
#
#------------------------------------------------------------------------
AC_DEFUN(TDOM_PATH_EXPAT, [
AC_MSG_CHECKING([for expat])
AC_ARG_WITH(expat,
AC_HELP_STRING([--with-expat],
[directory with expat installation]), , [with_expat=no])
AC_CACHE_VAL(ac_cv_c_expat,[
case $with_expat in
no) ;;
yes)
for f in /usr/local /usr; do
if test -f "$f/include/expat.h" ; then
ac_cv_c_expat=`(cd $f; pwd)`
break
fi
done
;;
*)
if test -f "$with_expat/include/expat.h"; then
ac_cv_c_expat=`(cd $with_expat; pwd)`
else
AC_MSG_ERROR([${with_expat} directory doesn't contain expat.h])
fi
esac
])
if test x"${ac_cv_c_expat}" = x ; then
AC_MSG_RESULT([Using bundled expat distribution])
TEA_ADD_SOURCES([expat/xmlrole.c \
expat/xmltok.c \
expat/xmlparse.c])
TEA_ADD_INCLUDES([-I${srcdir}/expat])
AC_DEFINE([XML_POOR_ENTROPY], 1,
[Define to use poor entropy in lack of better source.])
else
AC_MSG_RESULT([Using shared expat found in ${ac_cv_c_expat}])
TEA_ADD_INCLUDES(-I${ac_cv_c_expat}/include)
TEA_ADD_LIBS([-lexpat])
fi
])
#------------------------------------------------------------------------
# TDOM_EXPAT_ENTROPY
#
# Only useful if building with the included expat. Allows to
# determine the source of entropy used by the lib. If the argument
# is something else then the default "auto", this argument value
# will be a #define. Use XML_POOR_ENTROPY to fall back to the old
# expat hash table salting. The default is to determine the best
# available source and to use this.
#
# Arguments:
# none
#
# Results:
#
# Adds the following arguments to configure:
# --with-entropy=...
#
# Defines the following vars:
#
# Sets the following vars:
#
#------------------------------------------------------------------------
AC_DEFUN(TDOM_EXPAT_ENTROPY, [
AC_MSG_NOTICE([checking which source of entropy to use])
AC_ARG_WITH(entropy,
AC_HELP_STRING([--with-entropy],
[source of entropy to use]), , [with_entropy=auto])
case $with_entropy in
no)
AC_DEFINE([XML_POOR_ENTROPY], 1,
[Define to use poor entropy.])
;;
auto)
AC_MSG_CHECKING([for arc4random_buf (BSD or libbsd)])
AC_LINK_IFELSE([AC_LANG_SOURCE([
#include <stdlib.h> /* for arc4random_buf on BSD, for NULL */
#if defined(HAVE_LIBBSD)
# include <bsd/stdlib.h>
#endif
int main() {
arc4random_buf(NULL, 0U);
return 0;
}
])], [
AC_DEFINE([HAVE_ARC4RANDOM_BUF], [1],
[`arc4random_buf' function.])
AC_MSG_RESULT([yes])
], [
AC_MSG_RESULT([no])
AC_MSG_CHECKING([for arc4random (BSD, macOS or libbsd)])
AC_LINK_IFELSE([AC_LANG_SOURCE([
#if defined(HAVE_LIBBSD)
# include <bsd/stdlib.h>
#else
# include <stdlib.h>
#endif
int main() {
arc4random();
return 0;
}
])], [
AC_DEFINE([HAVE_ARC4RANDOM], [1],
[`arc4random' function.])
AC_MSG_RESULT([yes])
], [
AC_MSG_RESULT([no])
])
])
AC_MSG_CHECKING([for getrandom (Linux 3.17+, glibc 2.25+)])
AC_LINK_IFELSE([AC_LANG_SOURCE([
#include <stdlib.h> /* for NULL */
#include <sys/random.h>
int main() {
return getrandom(NULL, 0U, 0U);
}
])], [
AC_DEFINE([HAVE_GETRANDOM], [1],
[`getrandom' function.])
AC_MSG_RESULT([yes])
], [
AC_MSG_RESULT([no])
AC_MSG_CHECKING([for syscall SYS_getrandom (Linux 3.17+)])
AC_LINK_IFELSE([AC_LANG_SOURCE([
#include <stdlib.h> /* for NULL */
#include <unistd.h> /* for syscall */
#include <sys/syscall.h> /* for SYS_getrandom */
int main() {
syscall(SYS_getrandom, NULL, 0, 0);
return 0;
}
])], [
AC_DEFINE([HAVE_SYSCALL_GETRANDOM], [1],
[`syscall' and `SYS_getrandom'.])
AC_MSG_RESULT([yes])
], [
AC_MSG_RESULT([no])
])
])
AC_DEFINE([XML_DEV_URANDOM], 1,
[include code reading entropy from `/dev/urandom'.])
AC_DEFINE([XML_POOR_ENTROPY], 1,
[Define to use poor entropy in lack of better source.])
;;
HAVE_GETRANDOM)
AC_DEFINE([HAVE_GETRANDOM], 1,
[Linux + glibc >=2.25])
;;
HAVE_SYSCALL_GETRANDOM)
AC_DEFINE([HAVE_SYSCALL_GETRANDOM], 1,
[Linux + glibc <2.25])
;;
HAVE_ARC4RANDOM_BUF)
AC_DEFINE([HAVE_ARC4RANDOM_BUF], 1,
[BSD / macOS >=10.7])
;;
HAVE_ARC4RANDOM)
AC_DEFINE([HAVE_ARC4RANDOM], 1,
[BSD / macOS <10.7])
;;
XML_DEV_URANDOM)
AC_DEFINE([XML_DEV_URANDOM], 1,
[Linux / BSD / macOS (/dev/urandom).])
;;
XML_POOR_ENTROPY)
AC_DEFINE([XML_POOR_ENTROPY], 1,
[Define to use poor entropy in lack of better source.])
;;
*)
AC_MSG_ERROR([${with_entropy} not known.])
esac
])
#------------------------------------------------------------------------
# TDOM_PATH_CONFIG --
#
# Locate the tdomConfig.sh file
#
# Arguments:
# None
#
# Results:
#
# Adds the following arguments to configure:
# --with-tdom=...
#
# Defines the following vars:
# TDOM_BIN_DIR Full path to the directory with tdomConfig.sh
#------------------------------------------------------------------------
AC_DEFUN(TDOM_PATH_CONFIG, [
if test x"${no_tdom}" = x ; then
AC_MSG_CHECKING([for tDOM configuration])
AC_ARG_WITH(tdom,
AC_HELP_STRING([--with-tdom],
[directory containing tDOM configuration (tdomConfig.sh)]),
with_tdomconfig=${withval})
no_tdom=true
if test "${TEA_PLATFORM}" = "windows" ; then
tdom_bindir=win
else
tdom_bindir=unix
fi
AC_CACHE_VAL(ac_cv_c_tdomconfig,[
# First check to see if --with-tdom was specified.
if test x"${with_tdomconfig}" != x ; then
if test -f "${with_tdomconfig}/tdomConfig.sh" ; then
ac_cv_c_tdomconfig=`(cd ${with_tdomconfig}; pwd)`
else
AC_MSG_ERROR([${with_tdomconfig} directory doesn't contain tdomConfig.sh])
fi
fi
# Then check for a sibling installation
if test x"${ac_cv_c_tdomconfig}" = x ; then
for i in \
../tdom `ls -dr ../tdom-* 2>/dev/null` \
../../tdom `ls -dr ../../tdom-* 2>/dev/null` \
../../../tdom `ls -dr ../../../tdom-* 2>/dev/null` ; do
if test -f "$i/$tdom_bindir/tdomConfig.sh" ; then
ac_cv_c_tdomconfig=`(cd $i/$tdom_bindir; pwd)`
fi
done
fi
# Then check if tnc/tdom are compilied in the source tree
if test x"${ac_cv_c_tdomconfig}" = x ; then
if test -f "../../$tdom_bindir/tdomConfig.sh" ; then
ac_cv_c_tdomconfig=`(cd ../../$tdom_bindir; pwd)`
fi
fi
# Check in a few common install locations
if test x"${ac_cv_c_tdomconfig}" = x ; then
for i in \
`ls -d ${prefix}/lib 2>/dev/null` \
`ls -d /usr/local/lib 2>/dev/null` ; do
if test -f "$i/tdomConfig.sh" ; then
ac_cv_c_tdomconfig=`(cd $i; pwd)`
fi
done
fi
# Check in a few other private locations
if test x"${ac_cv_c_tdomconfig}" = x ; then
for i in \
${srcdir}/../tdom \
`ls -dr ${srcdir}/../tdom[[0-9]].[[0-9]]* 2>/dev/null` ; do
if test -f "$i/$tdom_bindir/tdomConfig.sh" ; then
ac_cv_c_tdomconfig=`(cd $i/$tdom_bindir; pwd)`
fi
done
fi
])
if test x"${ac_cv_c_tdomconfig}" = x ; then
TDOM_BIN_DIR="# no tDOM configuration file found"
AC_MSG_WARN(Can't find tDOM configuration definitions)
exit 0
else
no_tdom=
TDOM_BIN_DIR=${ac_cv_c_tdomconfig}
AC_MSG_RESULT(found $TDOM_BIN_DIR/tdomConfig.sh)
fi
fi
])
#------------------------------------------------------------------------
# TDOM_LOAD_CONFIG --
#
# Load the tdomConfig.sh file
#
# Arguments:
#
# Requires the following vars to be set:
# TDOM_BIN_DIR
#
# Defines the following vars:
#
# Sets the following vars:
#
#------------------------------------------------------------------------
AC_DEFUN(TDOM_LOAD_CONFIG, [
AC_MSG_CHECKING([for existence of $TDOM_BIN_DIR/tdomConfig.sh])
if test -f "$TDOM_BIN_DIR/tdomConfig.sh" ; then
AC_MSG_RESULT([loading])
. $TDOM_BIN_DIR/tdomConfig.sh
else
AC_MSG_RESULT([file not found])
fi
if test -f "${TDOM_BIN_DIR}/Makefile" ; then
TDOM_STUB_LIB_SPEC=${TDOM_BUILD_STUB_LIB_SPEC}
fi
AC_SUBST(TDOM_VERSION)
AC_SUBST(TDOM_STUB_LIB_SPEC)
AC_SUBST(TDOM_SRC_DIR)
])
#------------------------------------------------------------------------
# TDOM_EXPORT_CONFIG --
#
# Define the data to insert into the ${PACKAGE_NAME}Config.sh file
#
# Arguments:
# None
#
# Results:
# Subst the following vars:
#
#------------------------------------------------------------------------
AC_DEFUN(TDOM_EXPORT_CONFIG, [
#--------------------------------------------------------------------
# These are for ${PACKAGE_NAME}Config.sh
#--------------------------------------------------------------------
# pkglibdir must be a fully qualified path and (not ${exec_prefix}/lib)
eval pkglibdir="[$]{libdir}/${PACKAGE_NAME}${PACKAGE_VERSION}"
if test "${TCL_LIB_VERSIONS_OK}" = "ok"; then
eval PKG_STUB_LIB_FLAG="-l${PACKAGE_NAME}stub${PACKAGE_VERSION}"
else
eval PKG_STUB_LIB_FLAG="-l${PACKAGE_NAME}stub`echo ${PACKAGE_VERSION} | tr -d .`"
fi
PKG_BUILD_STUB_LIB_SPEC="-L`pwd` ${PKG_STUB_LIB_FLAG}"
PKG_STUB_LIB_SPEC="-L${pkglibdir} ${PKG_STUB_LIB_FLAG}"
PKG_BUILD_STUB_LIB_PATH="`pwd`/[$]{PKG_STUB_LIB_FILE}"
PKG_STUB_LIB_PATH="${pkglibdir}/[$]{PKG_STUB_LIB_FILE}"
AC_SUBST(PKG_BUILD_STUB_LIB_SPEC)
AC_SUBST(PKG_STUB_LIB_SPEC)
AC_SUBST(PKG_BUILD_STUB_LIB_PATH)
AC_SUBST(PKG_STUB_LIB_PATH)
])
# Local Variables:
# mode: autoconf
# End:
# EOF
|