Changeset 3938 for trunk/base


Ignore:
Timestamp:
Nov 13, 2003, 3:18:25 PM (20 years ago)
Author:
fkr
Message:

Bug:
Submitted by:
Reviewed by:
Approved by:
Obtained from:

regen.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/base/configure

    r3677 r3938  
    313313
    314314ac_default_prefix=/opt/local
    315 ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS build build_cpu build_vendor build_os host host_cpu host_vendor host_os target target_cpu target_vendor target_os CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA SET_MAKE MTREE subdirs REPLACEMENT_PROGS CPP EGREP MD5_LIBS PORTCONFIGDIR DSTUSR DSTGRP TCL_VERSION TCL_BIN_DIR TCL_SRC_DIR TCL_LIB_FILE TCL_LIB_FLAG TCL_LIB_SPEC TCL_STUB_LIB_FILE TCL_STUB_LIB_FLAG TCL_STUB_LIB_SPEC TCL_INCLUDES TCLSH TCL_PACKAGE_DIR INCLUDES CFLAGS_DEBUG CFLAGS_OPTIMIZE TCL_DEFS STLIB_LD SHLIB_LD SHLIB_CFLAGS SHLIB_LDFLAGS SHLIB_SUFFIX TCL_CC prefix_expanded PORTCONFIGDIR_EXPANDED localstatedir_expanded LIBOBJS LTLIBOBJS'
     315ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS build build_cpu build_vendor build_os host host_cpu host_vendor host_os target target_cpu target_vendor target_os CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA SET_MAKE MTREE subdirs REPLACEMENT_PROGS CPP EGREP MD5_LIBS DPORTSDIR PORTCONFIGDIR DSTUSR DSTGRP TCL_VERSION TCL_BIN_DIR TCL_SRC_DIR TCL_LIB_FILE TCL_LIB_FLAG TCL_LIB_SPEC TCL_STUB_LIB_FILE TCL_STUB_LIB_FLAG TCL_STUB_LIB_SPEC TCL_INCLUDES TCLSH TCL_PACKAGE_DIR INCLUDES CFLAGS_DEBUG CFLAGS_OPTIMIZE TCL_DEFS STLIB_LD SHLIB_LD SHLIB_CFLAGS SHLIB_LDFLAGS SHLIB_SUFFIX TCL_CC prefix_expanded PORTCONFIGDIR_EXPANDED localstatedir_expanded LIBOBJS LTLIBOBJS'
    316316ac_subst_files=''
    317317
     
    856856  --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes]
    857857  --without-PACKAGE       do not use PACKAGE (same as --with-PACKAGE=no)
     858  --with-dports-dir=DIR   Specify alternate dports directory
    858859  --with-install-user=USER
    859860                          Specify user ownership of installed files
     
    33543355
    33553356
     3357# set default dports-directory
     3358DPORTS_DIR_DEFAULT=`pwd | sed -e "s/base/dports/"`
     3359
    33563360# Check for paths
     3361
     3362
     3363
     3364
     3365
     3366# Check whether --with-dports-dir or --without-dports-dir was given.
     3367if test "${with_dports_dir+set}" = set; then
     3368  withval="$with_dports_dir"
     3369   dportsdir="$withval"
     3370fi;
     3371
     3372
     3373        echo "$as_me:$LINENO: checking for dports tree" >&5
     3374echo $ECHO_N "checking for dports tree... $ECHO_C" >&6
     3375        if test "x$dportsdir" != "x" ; then
     3376          if test -d "$dportsdir" -a -e "$dportsdir/PortIndex" ; then
     3377                :
     3378          else
     3379                { { echo "$as_me:$LINENO: error: $dportsdir not a valid dports tree" >&5
     3380echo "$as_me: error: $dportsdir not a valid dports tree" >&2;}
     3381   { (exit 1); exit 1; }; }
     3382          fi
     3383        else
     3384                                if test "x$DPORTS_DIR_DEFAULT" != "x" ; then
     3385                  if test -d "$DPORTS_DIR_DEFAULT" -a -e "$DPORTS_DIR_DEFAULT/PortIndex" ; then
     3386                        dportsdir=$DPORTS_DIR_DEFAULT
     3387                  fi
     3388                fi
     3389        fi
     3390
     3391        if test "x$dportsdir" != "x" ; then
     3392                echo "$as_me:$LINENO: result: $dportsdir" >&5
     3393echo "${ECHO_T}$dportsdir" >&6
     3394                DPORTSDIR="$dportsdir"
     3395
     3396        else
     3397                { echo "$as_me:$LINENO: WARNING: No dports tree found" >&5
     3398echo "$as_me: WARNING: No dports tree found" >&2;}
     3399        fi
     3400
    33573401
    33583402
     
    61846228s,@EGREP@,$EGREP,;t t
    61856229s,@MD5_LIBS@,$MD5_LIBS,;t t
     6230s,@DPORTSDIR@,$DPORTSDIR,;t t
    61866231s,@PORTCONFIGDIR@,$PORTCONFIGDIR,;t t
    61876232s,@DSTUSR@,$DSTUSR,;t t
Note: See TracChangeset for help on using the changeset viewer.