Changeset 621 for trunk/configure.in


Ignore:
Timestamp:
06/17/13 21:25:11 (11 years ago)
Author:
bas
Message:

added support for trac installations in a virtual environment, eg:

  • configure --virtualenv=/data/virtualenvs/trac
  • set/override it with email2trac --virtualenv=/data/virtualenv/trac_1.2

Updated release version to 2.7

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/configure.in

    r574 r621  
    1515AC_SUBST(install_user)
    1616AC_SUBST(sysconfdir)
     17AC_SUBST(virtualenv)
    1718
    1819#DEBUG=0
     
    6970)dnl           
    7071
     72# We can specify a default virtual env path for trac
     73#
     74AC_ARG_WITH(virtualenv,
     75[
     76  --with-virtualenv=directory    Specify the default virtualenv path to use for trac,
     77                          default=""],
     78
     79  [case "${withval}" in
     80        *) virtualenv="${withval}" ;;
     81  esac],
     82
     83  [virtualenv=""]
     84)dnl           
     85
    7186dnl ##### Path to email2trac.conf
    7287dnl This ugly kludge to get the sysconfdir path is needed because
Note: See TracChangeset for help on using the changeset viewer.