Changeset 356ffbb in git


Ignore:
Timestamp:
Oct 18, 2010, 8:29:25 PM (14 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
a04c5ec2b888d58e53a0701c12400ddca144d53e
Parents:
31213a49ff089c3dd0d405455d48f47071ff242a
git-author:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2010-10-18 20:29:25+02:00
git-committer:
Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 11:55:34+01:00
Message:
fix: resource -> resources
more of global config/make
File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure

    r31213a4 r356ffbb  
    11#! /bin/sh
    22
    3 # Guess values for system-dependent variables and create Makefiles.
    4 # Generated automatically using autoconf version 2.13
    5 # Copyright (C) 1992, 93, 94, 95, 96 Free Software Foundation, Inc.
    6 #
    7 # This configure script is free software; the Free Software Foundation
    8 # gives unlimited permission to copy, distribute and modify it.
    9 
    10 # Defaults:
    11 ac_help=
    12 ac_default_prefix=/usr/local
    13 # Any additions from configure.in:
    14 ac_default_prefix=`pwd`
    15 ac_help="$ac_help
    16 \
    17   --with-tmpdir=DIR       use DIR as temporary directory"
    18 ac_help="$ac_help
    19 \
    20   --enable-PACKAGE        configure and/or build PACKAGE
    21   --disable-PACKAGE       do not configure and/or build PACKAGE
    22    where PACKAGE can be:
    23      omalloc               omalloc memory managment"
    24 ac_help="$ac_help
    25 \
    26      gmp                  Gnu Multiple Precision package"
    27 ac_help="$ac_help
    28 \
    29      MP                   Multi Protocol library"
    30 ac_help="$ac_help
    31 \
    32      factory              polynomial factorization library"
    33 ac_help="$ac_help
    34 \
    35      libfac               char set and modp poly factorization library"
    36 ac_help="$ac_help
    37 \
    38      sgroup               numerical semigroup computations"
    39 ac_help="$ac_help
    40 \
    41      Singular             CAS for Polynomial Computations"
    42 ac_help="$ac_help
    43 \
    44      IntegerProgramming   IntegerProgramming"
    45 ac_help="$ac_help
    46 \
    47      Plural               Plural"
    48 ac_help="$ac_help
    49 \
    50      Texinfo              Texinfo for info, texi2dvi, makeinfo"
    51 ac_help="$ac_help
    52 \
    53      Texi2html            Texinfo to HTML converter"
    54 ac_help="$ac_help
    55 \
    56      doc                  Singular documentation"
    57 ac_help="$ac_help
    58 \
    59      emacs                emacs completion files"
    60 ac_help="$ac_help
    61 \
    62   --with-PACKAGE          use PACKAGE, provide dependent functionality
    63   --without-PACKAGE       do not use PACKAGE, disable dependent functionality
    64    where PACKAGE can be:
    65      MP                   Multi Protocol library"
    66 ac_help="$ac_help
    67 \
    68      factory              polynomial factorization library"
    69 ac_help="$ac_help
    70 \
    71      libfac               char set and modp poly factorization library"
    72 ac_help="$ac_help
    73 \
    74   --with-apint=PACKAGE    use PACKAGE for arbitary integer arithmetic
    75                           where PACKAGE can be gmp
    76 All additional --enable and --with options are passed to subsequent calls
    77 to configure of the packages to be built. See also configure --help in
    78 these packages (resp. subdirs). "
     3#PACKAGES="omalloc ntl factory libfac misc resources reporter coeffs polys"
     4PACKAGES="omalloc xalloc misc reporter resources coeffs polys"
     5_PWD="$(pwd)"
     6_TOP_ARGS="$@"
     7_ARGS0="--prefix=$_PWD"
     8#_ARGS0="--libdir=$(pwd)/lib --includedir=$(pwd)/include"
     9for d in $PACKAGES
    7910
    8011# Initialize some variables set by options.
     
    489420for ac_arg
    490421do
    491   case "$ac_arg" in
    492   -no-create | --no-create | --no-creat | --no-crea | --no-cre \
    493   | --no-cr | --no-c) ;;
    494   -no-recursion | --no-recursion | --no-recursio | --no-recursi \
    495   | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) ;;
    496   *" "*|*"      "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?]*)
    497   ac_configure_args="$ac_configure_args '$ac_arg'" ;;
    498   *) ac_configure_args="$ac_configure_args $ac_arg" ;;
    499   esac
     422  echo "----------------------------------"
     423  echo $d
     424  echo "=================================="
     425  {
     426    cd $d || exit 1;
     427    _ARGS="$_ARGS0 $_TOP_ARGS";
     428    if [ -e ./configure ]; then
     429      echo "./configure $_ARGS" && ./configure $_ARGS || exit 1;
     430    fi
     431    cd ..;
     432   } || exit 1
    500433done
    501434
Note: See TracChangeset for help on using the changeset viewer.