- Timestamp:
- Feb 6, 2010 2:33:55 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
stable/BSPsplit/coin.m4
r1465 r1466 3493 3493 3494 3494 m4_tolower(coin_has_$1)=notGiven 3495 coin_have_project_dir=no 3495 3496 3496 3497 # check if user wants to skip project in any case … … 3510 3511 if test $PACKAGE_TARNAME = m4_tolower($1); then 3511 3512 m4_tolower(coin_has_$1)=. 3513 coin_have_project_dir=yes 3512 3514 fi 3513 3515 … … 3539 3541 # let's assume that when installing into $prefix, then the user may have installed some other coin projects there before, so it's worth to have a look into there 3540 3542 if test -d "$prefix"; then 3541 PKG_CONFIG_PATH="$prefix/lib/ $2/pkgconfig:$PKG_CONFIG_PATH"3543 PKG_CONFIG_PATH="$prefix/lib/pkgconfig:$PKG_CONFIG_PATH" 3542 3544 fi 3543 3545 … … 3548 3550 AC_MSG_ERROR([argument for --with-coin-instdir not a directory]) 3549 3551 fi 3550 PKG_CONFIG_PATH="$withval/lib/ $2/pkgconfig:$PKG_CONFIG_PATH"3552 PKG_CONFIG_PATH="$withval/lib/pkgconfig:$PKG_CONFIG_PATH" 3551 3553 ],[]) 3552 3554 … … 3563 3565 if test "$m4_tolower(coin_has_$1)" = notGiven; then 3564 3566 if test -d $srcdir/$2/$1; then 3565 coin_pkg_is_here=no3566 3567 m4_ifvaln([$3], 3567 3568 [for i in $srcdir/$2/$1/$3; do 3568 3569 if test -r $i; then 3569 coin_ pkg_is_here=yes3570 coin_have_project_dir=yes 3570 3571 fi 3571 3572 done], 3572 [ coin_ pkg_is_here=yes ])3573 if test $coin_ pkg_is_here= yes; then3573 [ coin_have_project_dir=yes ]) 3574 if test $coin_have_project_dir = yes; then 3574 3575 m4_tolower(coin_has_$1)=$2/$1 3575 3576 fi … … 3580 3581 3581 3582 AC_MSG_CHECKING(whether project $1 need to be configured) 3582 if test "$m4_tolower(coin_has_$1)" != skipping && 3583 test "$m4_tolower(coin_has_$1)" != notGiven && 3584 test "$m4_tolower(coin_has_$1)" != installed; then 3583 if test "$coin_have_project_dir" = yes ; then 3585 3584 3586 3585 if test -r $srcdir/$2/$1/configure; then
Note: See TracChangeset
for help on using the changeset viewer.