Branch: Tag:

2004-02-26

2004-02-26 17:52:29 by Henrik Grubbström (Grubba) <grubba@grubba.org>

Moved the default location for the bundle directory one level closer to the root.

Rev: src/configure.in:1.773

1: - AC_REVISION("$Id: configure.in,v 1.772 2004/02/26 17:17:05 grubba Exp $") + AC_REVISION("$Id: configure.in,v 1.773 2004/02/26 17:52:29 grubba Exp $")   AC_INIT(interpret.c)   AC_CONFIG_HEADER(machine.h)   
1182:    [with_static_linking=yes])   AC_ARG_WITH(bundles,    MY_DESCR([--without-bundles], -  [do not enable bundled libraries])) - if test \! "$with_bundles" = "$no"; -a -d "$srcdir/bundles/."; then +  [do not enable bundled libraries]), +  [with_bundles=yes]) + if test "$with_bundles" = "no"; then :; else +  if test -d "$with_bundles/."; then +  # The user has specified a bundle directory. Use it. +  pike_bundle_dir="$with_bundles" +  export pike_bundle_dir +  elif test -d "$srcdir/../bundles/."; then    # We have a bundle directory; enable them if needed. -  pike_bundle_dir="$srcdir/bundles" +  pike_bundle_dir=`cd "$srcdir/../bundles" && pwd`    export pike_bundle_dir -  +  fi    if test -d bundles || mkdir bundles; then    LDFLAGS="$LDFLAGS -L`pwd`/bundles/lib"    CPPFLAGS="$CPPFLAGS -I`pwd`/bundles/include"